-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.66 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
{
"name": "setup-tflint-action",
"version": "6.2.2",
"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/step-security/setup-tflint.git"
},
"keywords": [
"GitHub",
"Actions",
"TFLint",
"Terraform"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/step-security/setup-tflint/issues"
},
"homepage": "https://github.com/step-security/setup-tflint#readme",
"dependencies": {
"@actions/cache": "^6.0.1",
"@actions/core": "^3.0.0",
"@actions/exec": "^3.0.0",
"@actions/glob": "^0.7.0",
"@actions/io": "^3.0.2",
"@actions/tool-cache": "^4.0.0",
"@octokit/rest": "^22.0.1",
"axios": "^1.13.6",
"process": "^0.11.10"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@vercel/ncc": "^0.38.4",
"eslint": "^10.4.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-jest": "^29.15.2",
"eslint-plugin-jsdoc": "^63.0.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-security": "^4.0.0",
"globals": "^17.5.0",
"jest": "^30.4.2",
"prettier": "^3.8.3"
}
}