forked from nozaq/terraform-aws-remote-state-s3-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.66 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
{
"name": "terraform-aws-terraform-backend",
"version": "0.0.0",
"author": {
"name": "escapace",
"email": "[email protected]"
},
"bugs": "https://github.com/escapace/terraform-aws-terraform-backend/issues",
"devDependencies": {
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@ls-lint/ls-lint": "2.2.3",
"eslint": "9.13.0",
"eslint-config-escapace": "5.2.3",
"lefthook": "1.8.1",
"prettier": "3.3.3",
"prettier-config-escapace": "1.2.1",
"syncpack": "13.0.0"
},
"engines": {
"pnpm": ">=9.11.0",
"terraform": ">=1.9.8",
"tflint": ">=0.53.0",
"trivy": ">=0.56.2"
},
"homepage": "https://github.com/escapace/terraform-aws-terraform-backend#readme",
"license": "Apache-2.0",
"private": true,
"repository": "escapace/terraform-aws-terraform-backend",
"scripts": {
"docs": "terraform-docs . && prettier --write README.md",
"format": "syncpack format && eslint --no-warn-ignored --fix && prettier -uw . && terraform fmt -recursive",
"lint": "pnpm run ls-lint && eslint && pnpm run tflint && pnpm run trivy",
"ls-lint": "ls-lint --config .ls-lint.yaml",
"pack": "pnpm-pack workspace --no-build --pack-destination lib/context.tgz",
"prepare": "lefthook install && terraform init -backend=false -upgrade && tflint --init",
"syncpack": "syncpack fix-mismatches && syncpack set-semver-ranges && syncpack format",
"tflint": "tflint --recursive --chdir .",
"trivy": "trivy fs --scanners misconfig --include-dev-deps --skip-dirs '.terraform/**' --skip-dirs 'examples' .",
"typecheck": "terraform validate"
},
"sideEffects": false,
"type": "module"
}