-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 900 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
{
"name" : "vow-node",
"version" : "0.3.0",
"description" : "Extension for Vow to work with nodejs-style callbacks",
"homepage" : "https://github.com/dfilatov/vow-node",
"keywords" : ["vow", "nodejs", "callback", "promise", "promisify"],
"author" : "Dmitry Filatov <[email protected]>",
"contributors" : [{
"name" : "Dmitry Filatov",
"email" : "[email protected]"
}],
"repository":{
"type" : "git",
"url" : "http://github.com/dfilatov/vow-node.git"
},
"dependencies": {},
"peerDependencies" : {
"vow": "0.4.x"
},
"devDependencies": {
"vow": "0.4.x",
"nodeunit" : "",
"istanbul" : ""
},
"main" : "lib/vow-node",
"engines" : { "node" : ">= 0.4.0" },
"scripts" : {
"test" : "./node_modules/istanbul/lib/cli.js test test/utils/runner.js"
}
}