forked from faazshift/terraform-npm
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.32 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "@smburrows/terraform-npm",
"version": "1.5.4",
"description": "An NPM executable package for HashiCorp's Terraform.",
"homepage": "https://github.com/SMBurrows/terraform-npm",
"repository": "https://github.com/SMBurrows/terraform-npm",
"bugs": {
"url": "https://github.com/SMBurrows/terraform-npm/issues",
"email": "[email protected]"
},
"author": "Steven Burrows",
"license": "AAL",
"private": false,
"os": [
"!aix"
],
"cpu": [
"!mips",
"!mipsel",
"!ppc",
"!ppc64",
"!s390",
"!s390x"
],
"keywords": [
"terraform",
"hashicorp",
"infrastructure",
"automation",
"infrastructure-as-code",
"executable"
],
"scripts": {
"start": "cd src && node terraform-wrapper",
"prettier": "prettier --write src/**/*.js scripts/**/*.js tests/**/*.js",
"pub": "yarn publish --no-git-tag-version --strict-semver",
"prepub": "yarn prepublishOnly",
"prepublishOnly": "yarn prettier && pkgfiles",
"postinstall": "node src/install-terraform",
"test": "./tests/runner.sh",
"test-global": "./tests/global-runner.sh"
},
"bin": {
"terraform": "./src/terraform-wrapper.js"
},
"dependencies": {
"progress": "^2.0.0",
"yauzl": "^2.9.1"
},
"devDependencies": {
"pkgfiles": "^2.3.2",
"prettier": "^1.12.1"
}
}