setup-terraform/wrapper/package.json

30 lines
666 B
JSON
Raw Normal View History

2020-04-23 12:57:44 -04:00
{
"name": "terraform.js",
"version": "0.0.1",
2020-04-23 12:57:44 -04:00
"description": "JavaScript wrapper for terraform binary",
"license": "MPL-2.0",
"publisher": "hashicorp",
2020-04-23 12:57:44 -04:00
"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"
2020-04-23 12:57:44 -04:00
},
"devDependencies": {
"@vercel/ncc": "0.33.3",
"jest": "^27.5.1",
"semistandard": "^16.0.1"
2020-04-23 12:57:44 -04:00
},
"semistandard": {
"ignore": [
"dist/**"
]
}
}