forked from cds-snc/terraform-plan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1 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
{
"name": "terraform-plan",
"description": "A GitHub Action to run Terraform plan",
"version": "1.0.0",
"author": "Canadian Digital Service",
"license": "MIT",
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/index.js --source-map --license licenses.txt",
"format:check": "prettier --check src test",
"format:write": "prettier --write src test",
"lint": "eslint src test",
"policy": "./src/policy/build.sh",
"prepare": "husky install",
"pre-commit": "npm run policy && npm run format:write && npm run build",
"test": "jest"
},
"dependencies": {
"@actions/core": "^1.8.1",
"@actions/github": "^5.0.1",
"@open-policy-agent/opa-wasm": "^1.6.1",
"nunjucks": "^3.2.3"
},
"devDependencies": {
"@vercel/ncc": "0.36.1",
"eslint": "8.35.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-security": "1.7.1",
"husky": "8.0.3",
"jest": "29.4.3",
"jest-when": "3.5.2",
"mock-fs": "^5.2.0",
"prettier": "2.8.4"
}
}