-
Notifications
You must be signed in to change notification settings - Fork 107
/
package.json
53 lines (53 loc) · 1.18 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
{
"name": "sinon-chai",
"type": "module",
"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": "0.0.0-development",
"author": "Domenic Denicola <[email protected]> (https://domenic.me/)",
"contributors": [
"Simon de Lang <[email protected]>"
],
"license": "(BSD-2-Clause OR WTFPL)",
"repository": {
"type": "git",
"url": "git+https://github.com/chaijs/sinon-chai.git"
},
"main": "./lib/sinon-chai.js",
"exports": {
".": "./lib/sinon-chai.js"
},
"files": [
"lib"
],
"scripts": {
"test": "c8 mocha",
"test-ci": "npm install && npm install chai@$CHAI_VERSION && npm install sinon@$SINON_VERSION && npm test",
"lint": "eslint .",
"format": "prettier --write lib"
},
"peerDependencies": {
"chai": "^5.0.0",
"sinon": ">=4.0.0"
},
"devDependencies": {
"@eslint/js": "^9.7.0",
"c8": "^10.1.2",
"chai": "^5.0.0",
"eslint": "^8.57.0",
"mocha": "^10.7.0",
"prettier": "^3.3.3",
"sinon": "^9.0.0"
}
}