-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.77 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.77 KB
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
43
44
45
46
47
{
"name": "delete-orphan-cfn-stacks-action",
"version": "0.0.0",
"description": "github workflow action to delete orphan aws CloudFormation stacks",
"main": "dist/index.js",
"repository": "https://github.com/shiftcode/delete-cfn-stacks-action.git",
"author": "Simon Mumenthaler <simon.mumenthaler@shiftcode.ch>",
"private": true,
"type": "module",
"scripts": {
"build": "ncc build ./src/index.ts -o ./dist",
"build:watch": "npm run build -- --watch",
"lint": "eslint --fix src/*.ts",
"precommit": "npm run lint && npm run format && npm run test && npm run build && git add dist/index.js",
"prepare": "husky",
"format": "prettier --write src/*.ts",
"test": "NODE_OPTIONS=\"--experimental-vm-modules --trace-warnings\" npx jest --passWithNoTests --no-cache",
"test:watch": "jest --silent --watch",
"run:local": "npm run build && GITHUB_REPOSITORY='shiftcode/uis-data-browser-backend' INPUT_STACKNAMEPREFIX='uis-data-browser-backend' INPUT_GITHUBTOKEN=$GITHUB_TOKEN DRY_MODE='true' INPUT_IGNORESTACKS='[]' node ./dist/index.js"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@shiftcode/branch-utilities": "^6.0.0",
"@aws-sdk/client-cloudformation": "^3.883.0",
"tslib": "^2.5.0"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@commitlint/prompt-cli": "^19.8.1",
"@types/node": "^24",
"@types/jest": "^29.5.0",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"@vercel/ncc": "^0.38.3",
"eslint": "^8.36.0",
"husky": "^9.1.7",
"jest": "^29.5.0",
"prettier": "^2.8.6",
"ts-jest": "^29.0.5",
"typescript": "^5.9.2"
},
"engines": {
"node": ">=24"
}
}