-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.02 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
{
"name": "aws_presign_url_cli",
"version": "1.0.3",
"description": "cli to create presign URLs to Download or Upload files within an AWS S3 Bucket",
"main": "index.js",
"bin": {
"aws_presign_url_cli": "./bin/index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "ncc build -m ./src/index.js -o ./bin",
"publish": ""
},
"repository": {
"type": "git",
"url": "git+https://github.com/riosje/aws_presign_url_cli.git"
},
"keywords": [
"cli",
"aws",
"s3",
"awscli",
"presignurl",
"presign-url"
],
"dependencies": {
"@aws-sdk/client-s3": "^3.222.0",
"@aws-sdk/credential-providers": "^3.223.0",
"@aws-sdk/s3-request-presigner": "^3.222.0",
"commander": "^9.4.1"
},
"author": "@riosje",
"license": "MIT",
"bugs": {
"url": "https://github.com/riosje/aws_presign_url_cli/issues"
},
"homepage": "https://github.com/riosje/aws_presign_url_cli#readme",
"devDependencies": {
"@vercel/ncc": "^0.36.0"
}
}