-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 838 Bytes
/
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
{
"name": "terraform2md",
"version": "0.1.4",
"description": "Generate the Markdown from a terraform.tfstate file.",
"author": "Bryan LOT <[email protected]>",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/shambarick/terraform2md.git"
},
"bugs": {
"url": "https://github.com/shambarick/terraform2md/issues"
},
"files": [
"index.js",
"terraform2md.js",
"lib",
"bin",
"templates"
],
"main": "index.js",
"bin": "./bin/terraform2md",
"scripts": {
"lint": "jshint . --exclude node_modules",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"terraform",
"tfstate",
"generator",
"markdown"
],
"dependencies": {
"commander": "^2.9.0",
"json2md": "^1.5.2",
"lodash": "^4.15.0"
},
"license": "MIT"
}