forked from sinonjs/sinon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.21 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "sinon",
"description": "JavaScript test spies, stubs and mocks.",
"version": "1.15.4",
"homepage": "http://sinonjs.org/",
"author": "Christian Johansen",
"repository": {
"type": "git",
"url": "http://github.com/cjohansen/Sinon.JS.git"
},
"bugs": {
"mail": "christian@cjohansen.no",
"url": "http://github.com/cjohansen/Sinon.JS/issues"
},
"license": "BSD-3-Clause",
"scripts": {
"ci-test": "npm run lint && ./scripts/ci-test.sh",
"test": "./scripts/ci-test.sh",
"lint": "$(npm bin)/eslint .",
"prepublish": "./build",
"eslint-pre-commit": "./scripts/eslint-pre-commit"
},
"pre-commit": [
"eslint-pre-commit"
],
"dependencies": {
"formatio": "1.1.1",
"util": ">=0.10.3 <1",
"lolex": "1.1.0",
"samsam": "1.1.2"
},
"devDependencies": {
"buster": "0.7.18",
"buster-istanbul": "0.1.13",
"eslint": "0.24.0",
"eslint-config-defaults": "^2.1.0",
"jscs": "1.13.1",
"lolex": "^1.2.2",
"pre-commit": "1.0.10"
},
"files": [
"lib",
"pkg",
"AUTHORS",
"CONTRIBUTING.md",
"Changelog.txt",
"LICENSE",
"README.md"
],
"main": "./lib/sinon.js",
"engines": {
"node": ">=0.1.103"
}
}