forked from outsideris/citizen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 1.97 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "citizen",
"version": "0.3.3",
"private": true,
"bin": {
"citizen": "./bin/citizen"
},
"scripts": {
"start": "node ./bin/citizen server",
"dev": "set SECRETS_PATH=./test.json&&nodemon ./bin/citizen server",
"lint": "eslint .",
"test:unit": "mocha --exit **/*.spec.js",
"test:integration": "mocha --exit -t 10000 --require test/download-terraform.js test/**/*.spec.js",
"test": "npm run test:unit && npm run test:integration",
"clean": "rimraf dist",
"prebuild": "npm run clean",
"build": "pkg . --out-path dist --targets node14-linux-x64,node14-macos-x64,node14-win-x64"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.3.0",
"@evops/hcl-terraform-parser": "^1.0.0",
"body-parser": "^1.19.0",
"colors": "^1.4.0",
"commander": "^7.0.0",
"cors": "^2.8.5",
"debug": "^4.3.1",
"express": "^4.17.1",
"glob-gitignore": "^1.0.14",
"globby": "^11.0.2",
"gpg": "^0.6.0",
"helmet": "^4.4.0",
"jten": "^0.2.0",
"listr": "^0.14.2",
"lodash": "^4.17.20",
"mkdirp": "^1.0.4",
"mongoose": "^5.11.12",
"morgan": "^1.10.0",
"multiparty": "^4.2.2",
"nedb": "^1.8.0",
"pino": "^6.11.0",
"recursive-readdir": "^2.2.1",
"request": "^2.88.2",
"rimraf": "^3.0.2",
"saslprep": "^1.0.3",
"semver": "^7.3.4",
"semver-sort": "^0.0.4",
"tar": "^6.1.0",
"tmp": "0.2.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^7.18.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha": "^8.0.0",
"get-port": "^5.1.1",
"mocha": "^8.2.1",
"ngrok": "^3.4.0",
"nock": "^13.0.5",
"nodemon": "^2.0.7",
"pkg": "^4.4.9",
"supertest": "^6.1.3",
"unzipper": "^0.10.11"
},
"pkg": {
"assets": [
"views/**/*"
]
},
"citizen": {
"terraformVersions": [
"0.11.14",
"0.12.30",
"0.13.6",
"0.14.4"
]
}
}