-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.25 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
{
"name": "@jahed/terraform",
"version": "1.11.0",
"description": "A wrapper which downloads and runs Terraform locally via npm.",
"author": "Jahed Ahmed <jahed.public@gmail.com> (https://jahed.dev)",
"license": "MIT",
"repository": "https://github.com/jahed/node-terraform",
"homepage": "https://github.com/jahed/node-terraform",
"bugs": "https://github.com/jahed/node-terraform/issues",
"funding": "https://jahed.dev/donate",
"keywords": [
"terraform",
"hashicorp",
"infrastructure",
"automation",
"executable",
"wrapper",
"pgp",
"download"
],
"main": "lib/terraform.js",
"bin": "bin/terraform.js",
"files": [
"bin",
"lib",
"hashicorp.asc"
],
"scripts": {
"lint": "prettier -c .",
"build": "rm -rf ./lib && tsc",
"test": "./tests/run.sh",
"version": "npm run build && npm run test"
},
"dependencies": {
"@jahed/promises": "^1.0.2",
"find-cache-dir": "^3.3.2",
"openpgp": "^5.11.2",
"yauzl": "^2.10.0"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.4",
"@types/find-cache-dir": "^3.2.1",
"@types/node": "^16.18.126",
"@types/yauzl": "^2.10.3",
"npm-check-updates": "^16.14.20",
"prettier": "^2.8.8",
"typescript": "4.9.x"
}
}