forked from chaijs/sinon-chai
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.06 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
{
"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.7.0",
"author": "Domenic Denicola <[email protected]> (https://domenic.me/)",
"contributors": [
"Simon de Lang <[email protected]>"
],
"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": "nyc --reporter=html mocha && opener ./coverage/sinon-chai.js.html"
},
"peerDependencies": {
"chai": "^4.0.0",
"sinon": ">=4.0.0"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.8.0",
"mocha": "^7.0.1",
"nyc": "^15.0.0",
"opener": "^1.5.1",
"sinon": "^9.0.0"
}
}