-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.23 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.23 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
{
"name": "aws-cloudformation-stack-status-checker",
"version": "2.0.0",
"private": true,
"description": "TypeScript template action",
"main": "lib/main.mjs",
"type": "module",
"scripts": {
"build": "tsc",
"lint-fix": "eslint src/**/*.mts --fix",
"lint": "eslint src/**/*.mts",
"package": "ncc build --source-map --license licenses.txt",
"all": "pnpm build && pnpm lint-fix && pnpm package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/poad/aws-cloudformation-stack-status-checker.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.11.1",
"@aws-sdk/client-cloudformation": "^3.863.0"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^5.2.2",
"@stylistic/eslint-plugin-js": "^4.4.1",
"@stylistic/eslint-plugin-plus": "^4.4.1",
"@stylistic/eslint-plugin-ts": "^4.4.1",
"@types/node": "^24.2.0",
"@vercel/ncc": "^0.38.3",
"eslint": "^9.32.0",
"eslint-plugin-github": "^6.0.0",
"js-yaml": "^4.1.0",
"pnpm": "^10.14.0",
"ts-jest": "^29.4.1",
"typescript": "^5.9.2",
"typescript-eslint": "^8.39.0"
},
"packageManager": "pnpm@10.14.0"
}