-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.11 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
{
"name": "github-action-codedeploy",
"version": "1.0.0",
"description": "codedeploy github action",
"main": "lib/index.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"pack": "ncc build",
"test": "jest",
"all": "yarn install && yarn outdated || yarn build && yarn format && yarn lint && yarn run pack && yarn test"
},
"author": "Scott Hutchings",
"license": "Apache-2.0",
"dependencies": {
"@actions/core": "^1.10.1",
"@aws-sdk/client-codedeploy": "^3.658.1",
"@aws-sdk/client-iam": "^3.658.1",
"@aws-sdk/client-sts": "^3.658.1"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
"@types/jest": "^29.5.13",
"@types/node": "^20.16.8",
"@typescript-eslint/parser": "^8.7.0",
"@vercel/ncc": "^0.38.2",
"eslint": "^8.57.1",
"eslint-plugin-github": "^4.10.2",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"typescript": "^5.6.2"
}
}