-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
44 lines (44 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
{
"name": "zip-bucket",
"version": "2.0.0",
"description": "zips files in a Google Cloud Storage [tm] bucket",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "c8 mocha --reporter spec --slow 50 --timeout 240000",
"cover": "c8 cover 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": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/DrPaulBrewer/zip-bucket/issues"
},
"homepage": "https://github.com/DrPaulBrewer/zip-bucket#readme",
"dependencies": {
"archiver": "^5.3.1",
"commander": "^11.0.0",
"promise-retry": "^2.0.1",
"tiny-async-pool": "^2"
},
"devDependencies": {
"@google-cloud/storage": "^6.12.0",
"c8": "^8.0.1",
"command-promise": "^2.0.1",
"coveralls": "^3.1.1",
"mocha": "^10.2.0",
"pipe-to-storage": "^0.10.1",
"should": "^13.2.3",
"verify-bucket-md5": "^0.5.0",
"verify-fsdir-md5": "^0.2.1"
}
}