forked from mapbox/node-zipfile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.12 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
{
"name": "zipfile",
"version": "0.5.12",
"main": "./lib/index.js",
"description": "C++ library for handling zipfiles in node",
"keywords": [
"zipfile",
"uncompress",
"unzip",
"zlib"
],
"url": "http://github.com/mapbox/node-zipfile",
"repository": {
"type": "git",
"url": "git://github.com/mapbox/node-zipfile.git"
},
"author": "Dane Springmeyer <dane@dbsgeo.com>",
"contributors": [],
"licenses": [
"BSD"
],
"dependencies": {
"nan": "~2.10.0",
"node-pre-gyp": "~0.10.2"
},
"devDependencies": {
"@mapbox/cloudfriend": "^1.9.1",
"aws-sdk": "^2.266.1",
"d3-queue": "^3.0.7",
"mkdirp": "~0.5.1",
"mocha": "~5.2.0"
},
"bin": {
"unzip.js": "./bin/unzip.js"
},
"scripts": {
"test": "mocha -R spec",
"install": "node-pre-gyp install --fallback-to-build"
},
"binary": {
"module_name": "zipfile",
"module_path": "./lib/binding/{node_abi}-{platform}-{arch}",
"host": "https://mapbox-node-binary.s3.amazonaws.com",
"remote_path": "./{name}/v{version}/{toolset}/",
"package_name": "{node_abi}-{platform}-{arch}.tar.gz"
}
}