forked from chaijs/chai-as-promised
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.35 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
{
"name": "chai-as-promised",
"description": "Extends Chai with assertions about promises.",
"keywords": [
"chai",
"testing",
"assertions",
"promises",
"promises-aplus"
],
"version": "5.1.0",
"author": "Domenic Denicola <[email protected]> (https://domenic.me)",
"license": "WTFPL",
"repository": "domenic/chai-as-promised",
"main": "./lib/chai-as-promised.js",
"files": [
"lib"
],
"scripts": {
"test": "npm run test-plugin && npm run test-intercompatibility",
"test-plugin": "mocha",
"test-intercompatibility": "mocha test-intercompatibility --opts test-intercompatibility/mocha.opts",
"test-browser-q": "coffee ./test/browser/runner.coffee q",
"test-browser-when": "coffee ./test/browser/runner.coffee when",
"lint": "jshint ./lib",
"cover": "istanbul cover node_modules/mocha/bin/_mocha && opener ./coverage/lcov-report/lib/chai-as-promised.js.html"
},
"peerDependencies": {
"chai": ">= 2.1.2 < 4"
},
"devDependencies": {
"chai": "^3.0.0",
"coffee-script": "1.9.0",
"istanbul": "0.3.5",
"ecstatic": "0.5.8",
"glob": "^4.3.5",
"jshint": "^2.6.0",
"mocha": "^1.21.5",
"opener": "^1.4.0",
"q": "^1.1.2",
"underscore": "1.7.0"
}
}