-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 884 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
39
{
"name": "terrafactor",
"version": "0.2.1",
"bin": {
"terrafactor": "src/index.js"
},
"description": "Refactors terraform code generated by terraformer",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"test": "jest",
"test:coverage": "jest --coverage",
"test:integration": "sh ./test_integration.sh"
},
"author": "Souradeep Nanda",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Ghost---Shadow/terrafactor.git"
},
"devDependencies": {
"eslint": "^6.5.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"jest": "^24.9.0"
},
"dependencies": {
"escape-string-regexp": "2.0.0",
"flat": "5.0.0",
"lodash": "4.17.15",
"yargs": "15.0.2"
},
"keywords": [
"cloud",
"terraform",
"hcl",
"terraformer"
]
}