forked from borchero/terraform-plan-comment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.22 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
43
{
"name": "terraform-plan-comment",
"version": "0.0.0",
"main": "dist/index.js",
"scripts": {
"build": "tsc --noEmit && tsup",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"prettier": "prettier -w .",
"test": "jest",
"test:fixtures": "bash tests/fixtures/generate.sh && GENERATE_FIXTURE=1 jest tests/e2e.test.ts"
},
"keywords": [],
"author": "Oliver Borchert",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"semver": "^7.6.3",
"zod": "^3.23.4"
},
"devDependencies": {
"@octokit/webhooks-schemas": "^7.5.0",
"@octokit/webhooks-types": "^7.5.0",
"@types/jest": "^29.5.12",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"eslint": "8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "16.6.2",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.4",
"tsup": "^8.2.3",
"typescript": "^5.5.4"
}
}