forked from domenic/promise-tests
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (43 loc) · 1.19 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": "promise-tests",
"description": "A test suite for CommonJS Promises/A and related spec extensions",
"version": "2.1.2",
"author": "Domenic Denicola <[email protected]> (http://domenicdenicola.com)",
"license": "WTFPL",
"repository": {
"type": "git",
"url": "git://github.com/domenic/promise-tests.git"
},
"bugs": {
"url": "http://github.com/domenic/promise-tests/issues"
},
"main": "lib/programmaticRunner.js",
"bin": {
"promise-tests": "lib/cli.js"
},
"directories": {
"lib": "lib"
},
"scripts": {
"lint": "jshint lib"
},
"dependencies": {
"mocha": ">= 1.6.0",
"sinon": ">= 1.4.2",
"prompt": ">= 0.2.7",
"jquery-browserify": "*",
"promise-stream": "*",
"q": "*",
"when": "*",
"jsdom": ">= 0.2.18",
"read-stream": "*"
},
"devDependencies": {
"jshint": ">= 0.9.1"
},
"_dependencyComments": {
"jquery-browserify": "this is the most straightforward translation of jQuery on npm",
"jsdom": "for testing jQuery",
"read-stream": "for testing promise-stream"
}
}