-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.05 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
{
"name": "@buzuli/s3",
"version": "4.4.3",
"description": "S3 CLI client",
"repository": "github:joeledwards/node-s3",
"bin": {
"s3": "bin/s3.js"
},
"files": [
"package.json",
"README.md",
"bin/*.js",
"commands/*.js",
"lib/**/*.js"
],
"scripts": {
"lint": "standard",
"lint:fix": "standard --fix",
"test": "tap ./test/*.test.js"
},
"keywords": [
"s3",
"aws",
"cli"
],
"author": "Joel Edwards <[email protected]>",
"license": "ISC",
"dependencies": {
"@buzuli/app": "^1.2.1",
"@buzuli/aws": "^4.5.1",
"@buzuli/color": "^2.3.2",
"@buzuli/json": "^2.1.0",
"@buzuli/meter": "^1.4.0",
"@buzuli/promised": "^1.0.0",
"@buzuli/throttle": "^2.0.2",
"@buzuli/url": "^1.0.1",
"cli-progress": "^3.12.0",
"durations": "^3.4.2",
"gunzip-maybe": "^1.4.2",
"inquirer": "^8.2.4",
"moment": "^2.29.3",
"pretty-bytes": "^5.5.0",
"ramda": "^0.28.0",
"yargs": "^17.5.1"
},
"devDependencies": {
"standard": "^17.0.0",
"tap": "^16.2.0"
}
}