forked from outsideris/citizen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.92 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
{
"name": "citizen",
"version": "0.4.0",
"private": true,
"bin": {
"citizen": "./bin/citizen"
},
"scripts": {
"start": "node ./bin/citizen server",
"dev": "nodemon ./bin/citizen server",
"lint": "eslint .",
"test:unit": "mocha --exit {lib,routes,storages,stores}/**/**/*.spec.js",
"test:integration": "mocha --exit -t 15000 --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.29.0",
"@evops/hcl-terraform-parser": "^1.0.0",
"body-parser": "^1.19.0",
"chalk": "^4.1.2",
"commander": "^8.1.0",
"debug": "^4.3.2",
"express": "^4.17.1",
"form-data": "^4.0.0",
"glob-gitignore": "^1.0.14",
"globby": "^12.0.2",
"got": "^11.8.2",
"helmet": "^4.6.0",
"jten": "^0.2.0",
"lodash": "^4.17.20",
"mkdirp": "^1.0.4",
"mongoose": "^6.0.4",
"morgan": "^1.10.0",
"multiparty": "^4.2.2",
"nedb": "^1.8.0",
"ora": "^6.0.0",
"pino": "^6.13.2",
"recursive-readdir": "^2.2.1",
"semver": "^7.3.4",
"tar": "^6.1.11",
"tmp": "0.2.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"adm-zip": "^0.5.5",
"chai": "^4.3.4",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-mocha": "^9.0.0",
"get-port": "^5.1.1",
"mocha": "^9.1.1",
"ngrok": "^4.2.2",
"nock": "^13.1.3",
"nodemon": "^2.0.7",
"pkg": "^5.3.1",
"rimraf": "^3.0.2",
"supertest": "^6.1.3",
"unzipper": "^0.10.11"
},
"pkg": {
"assets": [
"views/**/*"
]
},
"citizen": {
"terraformVersions": [
"0.11.14",
"0.12.30",
"0.13.6",
"0.14.7"
]
}
}