forked from promises-aplus/promises-tests
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 820 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
{
"name": "promises-aplus-tests",
"description": "Compliance test suite for Promises/A+",
"keywords": ["promises", "promises-aplus"],
"version": "2.1.2",
"implements": ["Promises/A+ 1.1.0"],
"author": "Domenic Denicola <[email protected]> (https://domenic.me)",
"license": "WTFPL",
"repository": "promises-aplus/promises-tests",
"main": "lib/programmaticRunner.js",
"bin": "lib/cli.js",
"files": [
"lib/"
],
"scripts": {
"lint": "jshint lib",
"test": "mocha",
"prepublish": "node ./scripts/generateTestFiles.js"
},
"dependencies": {
"mocha": "^2.5.3",
"sinon": "^1.10.3",
"underscore": "~1.8.3"
},
"devDependencies": {
"jshint": "^2.9.2"
},
"browser": {
"mocha": false
}
}