setup-terraform/package.json

41 lines
1.1 KiB
JSON
Raw Normal View History

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",
"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": "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",
"format-check": "echo \"unimplemented for actions/reusable-workflows basic-validation\""
2020-04-23 12:57:44 -04:00
},
"keywords": [],
"author": "",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.1",
"@actions/io": "^1.1.3",
"@actions/tool-cache": "^2.0.2",
"@hashicorp/js-releases": "^1.7.5",
"semver": "^7.7.2"
2020-04-23 12:57:44 -04:00
},
"devDependencies": {
"@vercel/ncc": "^0.38.3",
"jest": "^30.1.3",
"nock": "^14.0.10",
"semistandard": "^17.0.0"
2020-04-23 12:57:44 -04:00
},
"semistandard": {
"ignore": [
"**/dist/**"
2020-04-23 12:57:44 -04:00
]
}
}