2020-04-23 12:57:44 -04:00
|
|
|
{
|
|
|
|
|
"name": "setup-terraform",
|
2020-12-09 12:27:44 -08:00
|
|
|
"version": "1.3.2",
|
2020-04-23 12:57:44 -04:00
|
|
|
"description": "Setup Terraform CLI for GitHub Actions",
|
2020-10-30 13:07:27 -07:00
|
|
|
"license": "MPL-2.0",
|
|
|
|
|
"publisher": "hashicorp",
|
2020-04-23 12:57:44 -04:00
|
|
|
"main": "index.js",
|
|
|
|
|
"scripts": {
|
|
|
|
|
"test": "cd wrapper && npm test && cd .. && semistandard --env jest && jest --coverage",
|
|
|
|
|
"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"
|
|
|
|
|
},
|
|
|
|
|
"keywords": [],
|
|
|
|
|
"author": "",
|
|
|
|
|
"dependencies": {
|
2021-05-13 15:15:06 -07:00
|
|
|
"@actions/core": "^1.2.7",
|
2020-12-01 10:49:15 -08:00
|
|
|
"@actions/github": "^4.0.0",
|
2021-05-13 15:15:06 -07:00
|
|
|
"@actions/io": "^1.1.0",
|
2020-12-01 10:49:15 -08:00
|
|
|
"@actions/tool-cache": "^1.6.1",
|
2021-05-13 15:15:06 -07:00
|
|
|
"@hashicorp/js-releases": "^1.4.0"
|
2020-04-23 12:57:44 -04:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2021-05-13 15:15:06 -07:00
|
|
|
"@vercel/ncc": "^0.28.5",
|
2020-10-30 13:07:27 -07:00
|
|
|
"husky": "^4.3.0",
|
2020-12-01 10:49:15 -08:00
|
|
|
"jest": "^26.6.3",
|
2021-05-13 15:15:06 -07:00
|
|
|
"nock": "^13.0.11",
|
2020-12-01 10:49:15 -08:00
|
|
|
"semistandard": "^16.0.0"
|
2020-04-23 12:57:44 -04:00
|
|
|
},
|
|
|
|
|
"jest": {
|
|
|
|
|
"testPathIgnorePatterns": [
|
|
|
|
|
"<rootDir>/dist/",
|
|
|
|
|
"<rootDir>/node_modules/",
|
|
|
|
|
"<rootDir>/wrapper/"
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"semistandard": {
|
|
|
|
|
"ignore": [
|
|
|
|
|
"dist/**",
|
|
|
|
|
"wrapper/**"
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"husky": {
|
|
|
|
|
"hooks": {
|
|
|
|
|
"pre-commit": "npm run build && git add dist/"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|