forked from terraform-linters/setup-tflint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.34 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
44
45
46
47
48
49
50
51
52
53
{
"name": "setup-tflint-action",
"version": "2.0.0",
"description": "Install and setup TFLint executable Action",
"main": "index.js",
"scripts": {
"lint": "eslint --fix . src test",
"build": "ncc build index.js -o dist --no-source-map-register",
"test": "jest test"
},
"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/core": "^1.10.0",
"@actions/tool-cache": "^2.0.1",
"@octokit/rest": "^19.0.5"
},
"devDependencies": {
"@vercel/ncc": "^0.36.1",
"eslint": "^8.41.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jsdoc": "^46.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-security": "^1.7.1",
"jest": "^29.5.0",
"prettier": "^2.8.8"
}
}