-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.21 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
{
"name": "setup-terraform",
"version": "1.3.2",
"description": "Setup Volterra CLI for GitHub Actions",
"license": "MPL-2.0",
"publisher": "SOME_COMPANY",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/clhain/setup-volterra.git"
},
"scripts": {
"test": "cd wrapper && npm test && cd .. && semistandard --env jest && jest --coverage --verbose true",
"lint": "cd wrapper && npm run lint && cd .. && semistandard --env jest --fix",
"build": "cd wrapper && npm run build && cd .. && ncc build index.js --out dist",
"postinstall": "cd wrapper && npm install",
"prepare": "husky install"
},
"keywords": [],
"author": "",
"dependencies": {
"@actions/core": "^1.2.7",
"@actions/github": "^4.0.0",
"@actions/io": "^1.1.1",
"@actions/tool-cache": "^1.7.1",
"gunzip-file": "^0.1.1"
},
"devDependencies": {
"@vercel/ncc": "^0.33.0",
"husky": "^6.0.0",
"jest": "^27.4.3",
"semistandard": "^16.0.0"
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/dist/",
"<rootDir>/node_modules/",
"<rootDir>/wrapper/"
]
},
"semistandard": {
"ignore": [
"dist/**",
"wrapper/**"
]
}
}