setup-terraform/wrapper/package.json
dependabot[bot] b3a43c3034
Bump @actions/core from 1.6.0 to 1.9.1 in /wrapper (#236)
* Bump @actions/core from 1.6.0 to 1.9.1 in /wrapper

Bumps [@actions/core](https://github.com/actions/toolkit/tree/HEAD/packages/core) from 1.6.0 to 1.9.1.
- [Release notes](https://github.com/actions/toolkit/releases)
- [Changelog](https://github.com/actions/toolkit/blob/main/packages/core/RELEASES.md)
- [Commits](https://github.com/actions/toolkit/commits/HEAD/packages/core)

---
updated-dependencies:
- dependency-name: "@actions/core"
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: James Pogran <jpogran@outlook.com>
2022-09-16 11:53:05 -04:00

29 lines
665 B
JSON

{
"name": "terraform.js",
"version": "0.0.1",
"description": "JavaScript wrapper for terraform binary",
"license": "MPL-2.0",
"publisher": "hashicorp",
"main": "terraform.js",
"scripts": {
"test": "semistandard --env jest && jest --coverage",
"lint": "semistandard --env jest --fix",
"build": "ncc build terraform.js --out dist"
},
"author": "",
"dependencies": {
"@actions/core": "^1.9.1",
"@actions/exec": "^1.1.0",
"@actions/io": "^1.1.1"
},
"devDependencies": {
"@vercel/ncc": "0.33.3",
"jest": "^27.5.1",
"semistandard": "^16.0.1"
},
"semistandard": {
"ignore": [
"dist/**"
]
}
}