forked from chaijs/sinon-chai
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.04 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
{
"name": "sinon-chai",
"description": "Extends Chai with assertions for the Sinon.JS mocking framework.",
"keywords": [
"chai",
"chai-plugin",
"browser",
"vendor",
"mocks-and-spies",
"sinon",
"testing",
"spies",
"stubs",
"mocks"
],
"version": "3.1.0",
"author": "Domenic Denicola <[email protected]> (https://domenic.me/)",
"license": "(BSD-2-Clause OR WTFPL)",
"repository": "domenic/sinon-chai",
"main": "./lib/sinon-chai.js",
"files": [
"lib"
],
"scripts": {
"test": "mocha",
"test-travis": "npm install && npm install chai@$CHAI_VERSION && npm install sinon@$SINON_VERSION && npm test",
"lint": "eslint .",
"cover": "istanbul cover node_modules/mocha/bin/_mocha && opener ./coverage/lcov-report/lib/sinon-chai.js.html"
},
"peerDependencies": {
"chai": "^4.0.0",
"sinon": ">=4.0.0 <6.0.0"
},
"devDependencies": {
"chai": "^4.1.0",
"eslint": "^3.19.0",
"istanbul": "~0.4.5",
"mocha": "^3.4.2",
"opener": "^1.4.3",
"sinon": "^5.0.0"
}
}