forked from antelle/node-stream-zip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 810 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": "node-stream-zip",
"version": "1.7.0",
"description": "node.js library for reading and extraction of ZIP archives",
"keywords": [
"zip",
"archive",
"unzip",
"stream"
],
"homepage": "https://github.com/antelle/node-stream-zip",
"author": "Antelle <[email protected]> (https://github.com/antelle)",
"bugs": {
"email": "[email protected]",
"url": "https://github.com/antelle/node-stream-zip/issues"
},
"license": "MIT",
"files": [
"node_stream_zip.js"
],
"scripts": {
"test": "nodeunit test/tests.js"
},
"main": "node_stream_zip.js",
"repository": {
"type": "git",
"url": "https://github.com/antelle/node-stream-zip.git"
},
"engines": {
"node": ">=0.10.0"
},
"devDependencies": {
"nodeunit": "^0.9.1"
}
}