forked from archiverjs/node-archiver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1023 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
36
37
38
39
40
41
42
43
44
45
46
{
"name": "archiver",
"version": "0.4.3",
"description": "Creates Archives (ZIP) via Node Streams.",
"homepage": "https://github.com/ctalkington/node-archiver",
"author": {
"name": "Chris Talkington",
"url": "http://christalkington.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/ctalkington/node-archiver.git"
},
"bugs": {
"url": "https://github.com/ctalkington/node-archiver/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/ctalkington/node-archiver/blob/master/LICENSE-MIT"
}
],
"main": "lib/archiver.js",
"engines": {
"node": ">= 0.6.3"
},
"scripts": {
"test": "nodeunit test/simple",
"bench": "node benchmark/simple/pack-zip.js"
},
"dependencies": {
"readable-stream": "~1.0.2"
},
"devDependencies": {
"nodeunit": "~0.7.4",
"rimraf": "~2.1.4",
"mkdirp": "~0.3.5",
"stream-bench": "~0.1.2"
},
"keywords": [
"archive",
"archiver",
"zip",
"tar"
]
}