-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 985 Bytes
/
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
{
"name": "s3-deploy-tool",
"version": "1.0.0",
"description": "Simple tool for deploy static files for web site to s3 buckets",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rm -rf ./dist && tsc -p tsconfig.json"
},
"bin": "dist/cli.js",
"repository": {
"type": "git",
"url": "git+https://github.com/AlexEbenrode/s3-deploy-tool.git"
},
"keywords": [
"minio",
"s3",
"deploy"
],
"author": "AlexEbenrode",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/AlexEbenrode/s3-deploy-tool/issues"
},
"homepage": "https://github.com/AlexEbenrode/s3-deploy-tool#readme",
"dependencies": {
"mime": "^3.0.0",
"minio": "^7.1.1"
},
"devDependencies": {
"@types/mime": "^3.0.1",
"@types/minio": "^7.1.1",
"@types/node": "^20.4.4",
"npm": "^9.8.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}