forked from dfilatov/vow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 872 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
{
"name" : "vow",
"version" : "0.3.9",
"description" : "Promises/A+ proposal compatible promises library",
"homepage" : "https://github.com/dfilatov/jspromise",
"keywords" : ["nodejs", "browser", "async", "promise", "a+"],
"author" : "Dmitry Filatov <[email protected]>",
"contributors" : [{
"name" : "Dmitry Filatov",
"email" : "[email protected]"
}],
"repository":{
"type" : "git",
"url" : "http://github.com/dfilatov/jspromise.git"
},
"dependencies": {},
"devDependencies": {
"nodeunit" : "",
"istanbul" : "",
"uglify-js" : "1.3.4",
"promises-aplus-tests": "1.0.0"
},
"main" : "lib/vow",
"engines" : { "node" : ">= 0.4.0" },
"scripts" : {
"test" : "./node_modules/istanbul/lib/cli.js test test/utils/runner.js"
}
}