setup-terraform/package.json
dependabot[bot] fb95a4f961
Bump @hashicorp/js-releases from 1.4.0 to 1.5.0
Bumps [@hashicorp/js-releases](https://github.com/hashicorp/js-releases) from 1.4.0 to 1.5.0.
- [Release notes](https://github.com/hashicorp/js-releases/releases)
- [Changelog](https://github.com/hashicorp/js-releases/blob/main/CHANGELOG.md)
- [Commits](https://github.com/hashicorp/js-releases/compare/v1.4.0...v1.5.0)

---
updated-dependencies:
- dependency-name: "@hashicorp/js-releases"
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-03-04 15:54:45 +00:00

48 lines
1.2 KiB
JSON

{
"name": "setup-terraform",
"version": "1.3.2",
"description": "Setup Terraform CLI for GitHub Actions",
"license": "MPL-2.0",
"publisher": "hashicorp",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/hashicorp/setup-terraform.git"
},
"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",
"prepare": "husky install"
},
"keywords": [],
"author": "",
"dependencies": {
"@actions/core": "^1.2.7",
"@actions/github": "^4.0.0",
"@actions/io": "^1.1.0",
"@actions/tool-cache": "^1.6.1",
"@hashicorp/js-releases": "^1.5.0"
},
"devDependencies": {
"@vercel/ncc": "0.33.3",
"husky": "^7.0.1",
"jest": "^27.5.1",
"nock": "^13.2.4",
"semistandard": "^16.0.1"
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/dist/",
"<rootDir>/node_modules/",
"<rootDir>/wrapper/"
]
},
"semistandard": {
"ignore": [
"dist/**",
"wrapper/**"
]
}
}