forked from terraform-linters/setup-tflint
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.78 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.78 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "setup-tflint-action",
"version": "2.1.0",
"description": "Install and setup TFLint executable",
"main": "index.js",
"engines": {
"node": ">=24.0.0"
},
"type": "module",
"scripts": {
"lint": "eslint",
"build": "ncc build wrapper/tflint.js --out wrapper/dist && ncc build index.js -o dist --no-source-map-register && ncc build post.js -o dist/post --no-source-map-register",
"test": "NODE_OPTIONS=--experimental-vm-modules jest"
},
"lint-staged": {
"*.js": [
"eslint --fix"
],
"*.ts": [
"eslint --fix"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/terraform-linters/setup-tflint-action.git"
},
"keywords": [
"GitHub",
"Actions",
"TFLint",
"Terraform"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/terraform-linters/setup-tflint-action/issues"
},
"homepage": "https://github.com/terraform-linters/setup-tflint-action#readme",
"dependencies": {
"@actions/cache": "^6.0.0",
"@actions/core": "^3.0.0",
"@actions/exec": "^3.0.0",
"@actions/glob": "^0.6.1",
"@actions/io": "^3.0.2",
"@actions/tool-cache": "^4.0.0",
"@octokit/rest": "^22.0.1",
"process": "^0.11.10"
},
"devDependencies": {
"@babel/eslint-parser": "^7.28.6",
"@eslint/compat": "^2.0.0",
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^9.39.1",
"@vercel/ncc": "^0.38.4",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.15.0",
"eslint-plugin-jsdoc": "^62.8.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-security": "^3.0.1",
"globals": "^17.4.0",
"jest": "^30.3.0",
"prettier": "^3.8.1"
}
}