mirror of
https://github.com/hashicorp/setup-terraform.git
synced 2025-12-13 07:02:35 +00:00
27 lines
611 B
JSON
27 lines
611 B
JSON
{
|
|
"name": "terraform.js",
|
|
"version": "0.0.0",
|
|
"description": "JavaScript wrapper for terraform binary",
|
|
"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.2.3",
|
|
"@actions/exec": "^1.0.3",
|
|
"@actions/io": "^1.0.2"
|
|
},
|
|
"devDependencies": {
|
|
"@zeit/ncc": "0.22.1",
|
|
"jest": "^25.4.0",
|
|
"semistandard": "^14.2.0"
|
|
},
|
|
"semistandard": {
|
|
"ignore": [
|
|
"dist/**"
|
|
]
|
|
}
|
|
}
|