forked from mapbox/node-zipfile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 969 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
34
35
{
"name" : "zipfile",
"version" : "0.3.1",
"main" : "./lib/index.js",
"description" : "C++ library for handling zipfiles in node",
"keywords" : ["zipfile", "uncompress", "unzip", "zlib"],
"url" : "http://github.com/springmeyer/node-zipfile",
"repositories" : [
{
"type" : "git",
"url" : "git://github.com/springmeyer/node-zipfile.git"
}
],
"author" : "Dane Springmeyer <[email protected]>",
"contributors" : [],
"licenses" : ["BSD"],
"dependencies" : {},
"devDependencies": {
"mocha": "*",
"mkdirp": "~0.3.0",
"jshint" : "~0.5.x"
},
"bin" : {
"unzip.js" : "./bin/unzip.js"
},
"directories" : {
"examples" : "examples",
"src": "src"
},
"engines" : { "node": ">=0.6.0 <0.7" },
"scripts" : {
"install" : "node-waf configure build",
"test" : "make test"
}
}