-
Notifications
You must be signed in to change notification settings - Fork 83
/
package.json
37 lines (37 loc) · 982 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
{
"name": "github-action-s3-deploy",
"version": "4.0.0",
"description": "Easily deploy a static website to AWS S3 and invalidate CloudFront distribution",
"main": "index.js",
"scripts": {
"start": "env-cmd node index.js",
"lint": "eslint *.js",
"prettier": "prettier --write \"*.{js,md,yml}\"",
"package": "ncc build index.js -o dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Reggionick/s3-deploy.git"
},
"keywords": [
"Actions",
"AWS S3",
"CloudFront"
],
"author": "Nicola Reggiani <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Reggionick/s3-deploy/issues"
},
"homepage": "https://github.com/Reggionick/s3-deploy#readme",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1"
},
"devDependencies": {
"@vercel/ncc": "^0.38.1",
"env-cmd": "^10.1.0",
"eslint": "^8.57.1",
"prettier": "3.3.2"
}
}