forked from DrPaulBrewer/zip-bucket
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.24 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.24 KB
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": "zip-bucket",
"version": "1.0.0",
"description": "zips files in a Google Cloud Storage [tm] bucket",
"main": "index.js",
"bin": "bin.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "./node_modules/.bin/mocha --reporter spec --slow 50 --timeout 240000",
"cover": "node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- --slow 50 --timeout 240000 -R spec test/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DrPaulBrewer/zip-bucket.git"
},
"keywords": [
"zip",
"cloud-storage"
],
"author": "drpaulbrewer@eaftc.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/DrPaulBrewer/zip-bucket/issues"
},
"homepage": "https://github.com/DrPaulBrewer/zip-bucket#readme",
"dependencies": {
"archiver": "^3.0.0",
"commander": "^2.19.0",
"promise-retry": "^1.1.1",
"tiny-async-pool": "^1.0.4"
},
"devDependencies": {
"@google-cloud/storage": "^2.0.0",
"assert": "^1.4.1",
"command-promise": "^2.0.1",
"coveralls": "^3.0.2",
"istanbul": "^0.4.5",
"mocha": "^5.0.0",
"pipe-to-storage": "^0.9.3",
"should": "^13.2.3",
"verify-bucket-md5": "^0.4.1",
"verify-fsdir-md5": "^0.2.1"
}
}