-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
30 lines (30 loc) · 877 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
{
"name": "@aws-actions/amplify_deployment",
"version": "0.3.0",
"description": "GitHub action creates a deployment into an existing Amplify aplication.",
"main": "./dist/index.js",
"type": "module",
"scripts": {
"build": "ncc build -m ./src/index.js",
"lint": "eslint ./src/**/*.js --ignore-path .gitignore --fix",
"release": "yarn lint && lerna version --conventional-commits"
},
"author": "Luis Chacón",
"license": "Apache-2.0",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^4.0.0",
"aws-sdk": "^2.868.0",
"axios": "^0.21.1"
},
"devDependencies": {
"@typescript-eslint/parser": "^4.18.0",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"lerna": "^4.0.0",
"ncc": "^0.3.6",
"prettier": "^2.2.1",
"typescript": "^4.2.3"
}
}