2020-04-23 12:57:44 -04:00
|
|
|
{
|
|
|
|
|
"name": "setup-terraform",
|
2024-08-19 16:10:00 +00:00
|
|
|
"version": "3.1.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": {
|
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": {
|
2024-10-07 16:01:28 -04:00
|
|
|
"@actions/core": "^1.11.1",
|
2023-02-09 10:36:54 -05:00
|
|
|
"@actions/exec": "^1.1.1",
|
2025-05-13 08:30:26 -04:00
|
|
|
"@actions/github": "^6.0.1",
|
2025-11-04 10:27:01 +01:00
|
|
|
"@actions/io": "^2.0.0",
|
2025-01-24 11:04:02 -05:00
|
|
|
"@actions/tool-cache": "^2.0.2",
|
2025-05-19 15:30:01 -04:00
|
|
|
"@hashicorp/js-releases": "^1.7.5",
|
2025-10-22 14:54:59 +02:00
|
|
|
"semver": "^7.7.3"
|
2020-04-23 12:57:44 -04:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2025-09-23 16:24:03 -04:00
|
|
|
"@vercel/ncc": "^0.38.4",
|
2025-10-07 12:35:14 +02:00
|
|
|
"jest": "^30.2.0",
|
2025-08-25 17:51:07 -04:00
|
|
|
"nock": "^14.0.10",
|
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
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
}
|