mirror of
https://github.com/hashicorp/setup-terraform.git
synced 2025-12-16 08:32:34 +00:00
Reference: https://github.com/hashicorp/setup-terraform/pull/285 Reference: https://github.com/hashicorp/setup-terraform/pull/286 Reference: https://github.com/hashicorp/setup-terraform/pull/288 Reference: https://github.com/hashicorp/setup-terraform/pull/291 Reference: https://github.com/hashicorp/setup-terraform/pull/292 ```shell npm install '@vercel/ncc@0.36.1' npm install 'husky@8.0.3' npm install 'jest@29.4.1' npm install 'nock@13.3.0' pushd wrapper npm install '@vercel/ncc@0.36.1' npm install 'jest@29.4.1' npm audit fix # json5@1.0.2 security fix popd npm run build ```
29 lines
667 B
JSON
29 lines
667 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.10.0",
|
|
"@actions/exec": "^1.1.0",
|
|
"@actions/io": "^1.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"@vercel/ncc": "^0.36.1",
|
|
"jest": "^29.4.1",
|
|
"semistandard": "^16.0.1"
|
|
},
|
|
"semistandard": {
|
|
"ignore": [
|
|
"dist/**"
|
|
]
|
|
}
|
|
}
|