-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
63 lines (63 loc) · 1.6 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
57
58
59
60
61
62
63
{
"name": "s3st",
"version": "1.1.0",
"description": "A command line utility that allows you to stream data from multiple S3 objects directly into your terminal",
"main": "src/index.js",
"bin": {
"s3st": "src/cli.js"
},
"files": [
"src/"
],
"engines": {
"node": ">=10"
},
"engineStrict": true,
"scripts": {
"test:lint": "eslint src",
"build": "scripts/build.sh $npm_package_version",
"test": "npm run test:lint",
"release:tag": "git tag $npm_package_version && git push --tags",
"package:publish": "scripts/publish-release.js $GITHUB_TOKEN lmammino/s3st $npm_package_version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lmammino/s3st.git"
},
"keywords": [
"Stream",
"Streams",
"AWS",
"S3",
"Bucket",
"List bucket",
"Object"
],
"author": "Luciano Mammino",
"license": "MIT",
"bugs": {
"url": "https://github.com/lmammino/s3st/issues"
},
"homepage": "https://github.com/lmammino/s3st#readme",
"dependencies": {
"aws-sdk": "^2.694.0",
"commander": "^5.1.0",
"pumpify": "^2.0.1",
"readable-stream": "^3.6.0",
"s3-list-bucket-stream": "^1.0.0",
"s3-object-content-stream": "^1.0.1"
},
"devDependencies": {
"acorn": "^7.3.1",
"eslint": "^7.2.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"nexe": "^3.3.2",
"request": "^2.88.2",
"request-promise": "^4.2.5",
"request-promise-core": "^1.1.3"
}
}