setup-terraform/package.json

50 lines
1.3 KiB
JSON
Raw Normal View History

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",
"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",
"prepare": "husky install",
"format-check": "echo \"unimplemented for actions/reusable-workflows basic-validation\""
2020-04-23 12:57:44 -04:00
},
"keywords": [],
"author": "",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@actions/io": "^1.1.2",
"@actions/tool-cache": "^2.0.1",
"@hashicorp/js-releases": "^1.6.1"
2020-04-23 12:57:44 -04:00
},
"devDependencies": {
"@vercel/ncc": "^0.36.1",
"husky": "^8.0.3",
"jest": "^29.4.1",
"nock": "^13.3.0",
"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/**"
]
}
}