mirror of
https://github.com/hashicorp/setup-terraform.git
synced 2025-12-16 08:32:34 +00:00
48 lines
1.2 KiB
JSON
48 lines
1.2 KiB
JSON
{
|
|
"name": "setup-terraform",
|
|
"version": "1.3.0",
|
|
"description": "Setup Terraform CLI for GitHub Actions",
|
|
"license": "MPL-2.0",
|
|
"publisher": "hashicorp",
|
|
"main": "index.js",
|
|
"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",
|
|
"postinstall": "cd wrapper && npm install"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"dependencies": {
|
|
"@actions/core": "^1.2.6",
|
|
"@actions/github": "^4.0.0",
|
|
"@actions/io": "^1.0.2",
|
|
"@actions/tool-cache": "^1.6.1",
|
|
"@hashicorp/js-releases": "^1.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@vercel/ncc": "^0.25.1",
|
|
"husky": "^4.3.0",
|
|
"jest": "^26.6.3",
|
|
"nock": "^13.0.5",
|
|
"semistandard": "^16.0.0"
|
|
},
|
|
"jest": {
|
|
"testPathIgnorePatterns": [
|
|
"<rootDir>/dist/",
|
|
"<rootDir>/node_modules/",
|
|
"<rootDir>/wrapper/"
|
|
]
|
|
},
|
|
"semistandard": {
|
|
"ignore": [
|
|
"dist/**",
|
|
"wrapper/**"
|
|
]
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "npm run build && git add dist/"
|
|
}
|
|
}
|
|
}
|