-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
43 lines (43 loc) · 976 Bytes
/
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
{
"name": "terratag-action",
"version": "1.0.0",
"description": "Run Terratag CLI for GitHub Actions",
"license": "MIT",
"publisher": "env0",
"main": "index.js",
"scripts": {
"start": "npm run build && node dist/index.js",
"build": "ncc build index.ts --out dist",
"test": "npx jest",
"style": "npx prettier --write *.ts lib/*.ts"
},
"keywords": [],
"author": "",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^4.0.0",
"@actions/io": "^1.0.2",
"@actions/tool-cache": "^1.6.1",
"axios": "^0.21.2"
},
"devDependencies": {
"@types/jest": "^26.0.19",
"@vercel/ncc": "^0.25.1",
"husky": "^4.3.6",
"jest": "^26.6.3",
"nock": "^13.0.5",
"semistandard": "^16.0.0",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
},
"semistandard": {
"ignore": [
"dist/**"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run build && git add dist/"
}
}
}