setup-terraform/package.json

49 lines
1.2 KiB
JSON
Raw Normal View History

2020-04-23 12:57:44 -04:00
{
"name": "setup-terraform",
2020-12-09 12:27:44 -08:00
"version": "1.3.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"
2020-04-23 12:57:44 -04:00
},
"keywords": [],
"author": "",
"dependencies": {
"@actions/core": "^1.2.7",
"@actions/github": "^5.0.0",
"@actions/io": "^1.1.0",
"@actions/tool-cache": "^1.6.1",
"@hashicorp/js-releases": "^1.5.0"
2020-04-23 12:57:44 -04:00
},
"devDependencies": {
"@vercel/ncc": "0.33.3",
"husky": "^7.0.1",
"jest": "^27.5.1",
"nock": "^13.2.4",
"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/**"
]
}
}