2020-04-23 12:57:44 -04:00
|
|
|
{
|
|
|
|
|
"name": "setup-terraform",
|
2022-04-18 09:53:12 -04:00
|
|
|
"version": "2.0.0",
|
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",
|
2021-05-13 16:11:00 -07:00
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
|
|
|
|
"url": "https://github.com/hashicorp/setup-terraform.git"
|
|
|
|
|
},
|
2020-04-23 12:57:44 -04:00
|
|
|
"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",
|
2021-05-13 16:11:00 -07:00
|
|
|
"postinstall": "cd wrapper && npm install",
|
|
|
|
|
"prepare": "husky install"
|
2020-04-23 12:57:44 -04:00
|
|
|
},
|
|
|
|
|
"keywords": [],
|
|
|
|
|
"author": "",
|
|
|
|
|
"dependencies": {
|
2022-05-18 09:19:53 -04:00
|
|
|
"@actions/core": "^1.8.2",
|
2022-05-18 09:07:26 -04:00
|
|
|
"@actions/github": "^5.0.3",
|
2022-03-30 12:49:39 -04:00
|
|
|
"@actions/io": "^1.1.2",
|
2022-05-18 09:46:09 -04:00
|
|
|
"@actions/tool-cache": "^2.0.1",
|
2022-03-30 12:36:25 -04:00
|
|
|
"@hashicorp/js-releases": "^1.5.1"
|
2020-04-23 12:57:44 -04:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2022-06-07 11:21:59 +00:00
|
|
|
"@vercel/ncc": "0.34.0",
|
2022-05-18 09:03:45 -04:00
|
|
|
"husky": "^8.0.1",
|
2022-07-04 18:01:26 +00:00
|
|
|
"jest": "^28.1.2",
|
2022-06-20 18:01:03 +00:00
|
|
|
"nock": "^13.2.7",
|
2022-03-04 10:53:57 -05:00
|
|
|
"semistandard": "^16.0.1"
|
2020-04-23 12:57:44 -04:00
|
|
|
},
|
|
|
|
|
"jest": {
|
|
|
|
|
"testPathIgnorePatterns": [
|
|
|
|
|
"<rootDir>/dist/",
|
|
|
|
|
"<rootDir>/node_modules/",
|
|
|
|
|
"<rootDir>/wrapper/"
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"semistandard": {
|
|
|
|
|
"ignore": [
|
|
|
|
|
"dist/**",
|
|
|
|
|
"wrapper/**"
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
}
|