forked from chaijs/chai-as-promised
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 963 Bytes
/
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
{
"name": "chai-as-promised",
"description": "Extends Chai with assertions about promises.",
"keywords": [
"chai",
"chai-plugin",
"browser",
"async",
"testing",
"assertions",
"promises",
"promises-aplus"
],
"version": "7.1.1",
"author": "Domenic Denicola <[email protected]> (https://domenic.me)",
"license": "(MIT OR WTFPL)",
"repository": "domenic/chai-as-promised",
"main": "./lib/chai-as-promised.js",
"files": [
"lib"
],
"scripts": {
"test": "mocha",
"test-travis": "npm install chai@$CHAI_VERSION && npm test",
"lint": "eslint .",
"cover": "istanbul cover node_modules/mocha/bin/_mocha && opener ./coverage/lcov-report/lib/chai-as-promised.js.html"
},
"dependencies": {
"check-error": "^1.0.2"
},
"peerDependencies": {
"chai": ">= 2.1.2 < 5"
},
"devDependencies": {
"chai": "^4.0.2",
"eslint": "^3.19.0",
"istanbul": "0.4.5",
"mocha": "^3.4.2"
}
}