-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.63 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
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "sinon-called-sequence",
"version": "2.0.0",
"description": "Patch sinon to provide methods that allows to check spy invocation with called before/after sequence of spies",
"keywords": [
"sinon",
"called before",
"called before sequence",
"called immediately before",
"called immediately before sequence",
"called after",
"called after sequence",
"called immediately after",
"called immediately after sequence"
],
"main": "index.js",
"engines": {
"node": ">= 6",
"npm": ">= 3.8.6"
},
"license": "MIT",
"author": {
"name": "Alexey Kucherenko",
"url": "https://github.com/killmenot"
},
"homepage": "https://github.com/killmenot/sinon-called-sequence#readme",
"repository": {
"type": "git",
"url": "git@github.com:killmenot/sinon-called-sequence.git"
},
"bugs": {
"url": "https://github.com/killmenot/sinon-called-sequence/issues"
},
"scripts": {
"lint": "jshint lib test",
"test": "mocha",
"coverage": "nyc --reporter=html --reporter=text mocha",
"coverage-travis": "npm install && npm install sinon@$SINON_VERSION && npm run coverage",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"nyc": {
"all": true,
"include": [
"lib/**/*.js"
],
"exclude": [
"test/**/*.js"
]
},
"pre-commit": [
"lint",
"test"
],
"devDependencies": {
"coveralls": "^3.0.2",
"jshint": "^2.9.6",
"mocha": "^5.2.0",
"nyc": "^13.0.1",
"pre-commit": "^1.2.2",
"should": "^13.2.3",
"should-sinon": "0.0.6",
"sinon": "^6.3.4"
},
"peerDependencies": {
"sinon": ">=5"
}
}