-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
33 lines (33 loc) · 895 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
32
33
{
"name" : "vow-fs",
"version" : "0.3.6",
"description" : "File I/O by Vow",
"homepage" : "https://github.com/dfilatov/vow-fs",
"keywords" : ["vow", "promise", "file system"],
"author" : "Dmitry Filatov <[email protected]>",
"contributors" : [{
"name" : "Dmitry Filatov",
"email" : "[email protected]"
}],
"repository": {
"type" : "git",
"url" : "https://github.com/dfilatov/vow-fs.git"
},
"dependencies": {
"uuid" : "^2.0.2",
"vow" : "^0.4.7",
"vow-queue" : "^0.4.1",
"glob" : "^7.0.5"
},
"devDependencies": {
"nodeunit" : "",
"istanbul" : ""
},
"main" : "lib/fs",
"files" : ["lib"],
"engines" : { "node" : ">= 0.6.0" },
"license": "MIT",
"scripts" : {
"test" : "istanbul test test/runner.js"
}
}