-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.4 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
56
{
"name": "s3-bucket-downloader",
"version": "1.1.9",
"description": "This downloads file from a single bucket, multiple buckets or all of the buckets if no bucket name specified",
"preferGlobal": true,
"scripts": {
"s3-bucket-downloader": "node bin/s3-bucket-download.js",
"start": "node bin/s3-bucket-download.js",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"repository": {
"type": "git",
"url": "https://github.com/open-devs/S3-Bucket-Download.git"
},
"main": "lib/download.js",
"module": "lib/download.js",
"unpkg": "lib/download.js",
"bin": {
"s3": "bin/s3-bucket-download.js",
"s3-downloader": "bin/s3-bucket-download.js",
"s3-bucket-downloader": "bin/s3-bucket-download.js"
},
"keywords": [
"s3",
"download",
"bucket",
"aws",
"sync",
"aws-sdk",
"aws-cli",
"downloader",
"bucket",
"automatic"
],
"author": "open devs ([email protected])",
"contributors": [
"Mihir Kumar (mikr13)",
"Alok Raj (alok722)"
],
"license": "MIT",
"private": false,
"bugs": {
"url": "https://github.com/open-devs/s3-bucket-download/issues"
},
"homepage": "https://github.com/open-devs/s3-bucket-download#readme",
"dependencies": {
"cfonts": "^2.10.0",
"minimist": "^1.2.5",
"prompt": "^1.2.0"
},
"devDependencies": {
"snyk": "^1.742.0"
},
"snyk": true
}