forked from bower/decompress-zip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.09 KB
/
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
47
48
49
50
51
52
53
54
55
{
"name": "decompress-zip",
"version": "0.3.2",
"description": "Extract files from a ZIP archive",
"main": "lib/decompress-zip.js",
"scripts": {
"test": "grunt test"
},
"bin": "bin/decompress-zip",
"repository": "bower/decompress-zip",
"engines": {
"node": ">=0.10.0"
},
"keywords": [
"zip",
"unzip",
"tar",
"untar",
"compress",
"decompress",
"archive",
"extract",
"zlib"
],
"author": "Bower",
"license": "MIT",
"dependencies": {
"binary": "^0.3.0",
"graceful-fs": "^4.1.3",
"mkpath": "^0.1.0",
"nopt": "^3.0.1",
"q": "^1.1.2",
"readable-stream": "^1.1.8",
"touch": "0.0.3"
},
"devDependencies": {
"archiver": "^0.13.1",
"chai": "^1.10.0",
"coveralls": "^2.11.2",
"fs-jetpack": "^0.5.3",
"grunt": "^0.4.1",
"grunt-cli": "^0.1.13",
"grunt-contrib-jshint": "^0.11.0",
"grunt-contrib-watch": "^0.6.1",
"grunt-exec": "^0.4.2",
"grunt-simple-mocha": "^0.4.0",
"istanbul": "^0.3.5",
"mocha": "^2.1.0",
"tmp": "0.0.24"
},
"files": [
"bin",
"lib"
]
}