2020-04-23 12:57:44 -04:00
|
|
|
{
|
|
|
|
|
"name": "setup-terraform",
|
2022-10-12 08:35:43 -04:00
|
|
|
"version": "2.0.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",
|
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",
|
2022-12-22 07:51:35 -08:00
|
|
|
"prepare": "husky install",
|
|
|
|
|
"format-check": "echo \"unimplemented for actions/reusable-workflows basic-validation\""
|
2020-04-23 12:57:44 -04:00
|
|
|
},
|
|
|
|
|
"keywords": [],
|
|
|
|
|
"author": "",
|
|
|
|
|
"dependencies": {
|
2022-10-04 08:07:39 +00:00
|
|
|
"@actions/core": "^1.10.0",
|
2022-10-03 18:01:31 +00:00
|
|
|
"@actions/github": "^5.1.1",
|
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-09-16 11:29:12 -04:00
|
|
|
"@hashicorp/js-releases": "^1.6.1"
|
2020-04-23 12:57:44 -04:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2023-02-09 10:05:39 -05:00
|
|
|
"@vercel/ncc": "^0.36.1",
|
|
|
|
|
"husky": "^8.0.3",
|
|
|
|
|
"jest": "^29.4.1",
|
|
|
|
|
"nock": "^13.3.0",
|
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/**"
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
}
|