-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.4 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
42
{
"name": "delete-cfn-stacks-action",
"version": "0.0.0",
"description": "github workflow action to delete aws CloudFormation stacks",
"main": "dist/index.js",
"repository": "https://github.com/shiftcode/delete-cfn-stacks-action.git",
"author": "Simon Mumenthaler <[email protected]>",
"private": true,
"type": "module",
"scripts": {
"build": "ncc build ./src/index.ts -o ./dist",
"build:watch": "ncc build ./src/index.ts -o ./dist --watch",
"lint": "eslint --fix src/*.ts",
"precommit": "npm run lint && npm run build && git add dist/index.js",
"prettier": "prettier --write src/*.ts",
"prepare": "husky install",
"run:local": "npm run build && INPUT_STACKNAMEPREFIX='bag-covid19' node ./dist/index.js"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^6.0.0",
"@shiftcode/branch-utilities": "^2.0.1",
"@aws-sdk/client-cloudformation": "^3.499.0",
"tslib": "^2.5.0"
},
"devDependencies": {
"@commitlint/cli": "^17.5.0",
"@commitlint/config-conventional": "^17.4.4",
"@commitlint/prompt-cli": "^17.5.0",
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"@vercel/ncc": "^0.36.1",
"eslint": "^8.36.0",
"husky": "^8.0.0",
"prettier": "^2.8.6",
"typescript": "^5.0.2"
},
"engines": {
"node": ">=20.11.0"
}
}