2020-04-23 12:57:44 -04:00
|
|
|
{
|
|
|
|
|
"name": "setup-terraform",
|
2024-05-07 13:54:10 +00:00
|
|
|
"version": "3.1.1",
|
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": {
|
2023-02-09 10:36:54 -05:00
|
|
|
"test": "semistandard --env jest && jest --coverage",
|
|
|
|
|
"lint": "semistandard --env jest --fix",
|
|
|
|
|
"build": "ncc build wrapper/terraform.js --out wrapper/dist && ncc build index.js --out dist",
|
2022-12-22 07:51:35 -08:00
|
|
|
"format-check": "echo \"unimplemented for actions/reusable-workflows basic-validation\""
|
2020-04-23 12:57:44 -04:00
|
|
|
},
|
|
|
|
|
"keywords": [],
|
|
|
|
|
"author": "",
|
|
|
|
|
"dependencies": {
|
2023-09-12 06:50:46 -04:00
|
|
|
"@actions/core": "^1.10.1",
|
2023-02-09 10:36:54 -05:00
|
|
|
"@actions/exec": "^1.1.1",
|
2023-10-27 09:05:58 -04:00
|
|
|
"@actions/github": "^6.0.0",
|
2023-03-22 13:28:27 -04:00
|
|
|
"@actions/io": "^1.1.3",
|
2022-05-18 09:46:09 -04:00
|
|
|
"@actions/tool-cache": "^2.0.1",
|
2024-04-23 10:01:38 -04:00
|
|
|
"@hashicorp/js-releases": "^1.7.2",
|
|
|
|
|
"semver": "^7.6.0"
|
2020-04-23 12:57:44 -04:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2023-10-24 07:49:26 +01:00
|
|
|
"@vercel/ncc": "^0.38.1",
|
2023-09-18 15:56:06 -04:00
|
|
|
"jest": "^29.7.0",
|
2024-03-05 06:32:54 +00:00
|
|
|
"nock": "^13.5.4",
|
2023-09-12 07:01:17 -04:00
|
|
|
"semistandard": "^17.0.0"
|
2020-04-23 12:57:44 -04:00
|
|
|
},
|
|
|
|
|
"semistandard": {
|
|
|
|
|
"ignore": [
|
2023-02-09 10:36:54 -05:00
|
|
|
"**/dist/**"
|
2020-04-23 12:57:44 -04:00
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
}
|