forked from orangewise/s3-zip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1 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
{
"name": "s3-zip",
"version": "3.1.0",
"description": "Download selected files from an Amazon S3 bucket as a zip file.",
"main": "s3-zip.js",
"scripts": {
"test": "standard && tap --cov test/test*.js",
"coverage": "npm test -- --cov --coverage-report=lcov"
},
"repository": {
"type": "git",
"url": "https://github.com/orangewise/s3-zip.git"
},
"keywords": [
"amazon",
"aws",
"S3",
"zip",
"files"
],
"author": "Ronald Luitwieler",
"license": "MIT",
"bugs": {
"url": "https://github.com/orangewise/s3-zip/issues"
},
"homepage": "https://github.com/orangewise/s3-zip#readme",
"dependencies": {
"archiver": "^3.0.0",
"s3-files": "^2.0.0"
},
"devDependencies": {
"archiver-zip-encryptable": "^1.0.2",
"child_process": "^1.0.2",
"concat-stream": "^2.0.0",
"proxyquire": "^2.1.0",
"sinon": "^7.2.7",
"standard": "^12.0.1",
"stream-array": "^1.1.2",
"tap": "^13.1.2",
"tar": "^4.0.2",
"yauzl": "^2.9.1"
}
}