forked from outsideris/citizen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.62 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
{
"name": "citizen",
"version": "1.0.0",
"private": true,
"bin": {
"citizen": "./bin/citizen"
},
"scripts": {
"start": "node ./bin/citizen server",
"dev": "nodemon ./bin/citizen server",
"lint": "eslint .",
"test": "mocha --exit -t 10000 $(find . -name '*.spec.js' -not -path './node_modules/*')",
"clean": "rimraf dist",
"prebuild": "npm run clean",
"build": "pkg . --out-path dist --targets node10-linux-x64,node10-macos-x64,node10-win-x64"
},
"dependencies": {
"@evops/hcl-terraform-parser": "^1.0.0",
"aws-sdk": "^2.787.0",
"body-parser": "^1.19.0",
"colors": "^1.4.0",
"commander": "^6.2.0",
"debug": "^4.2.0",
"express": "^4.17.1",
"glob-gitignore": "^1.0.14",
"globby": "^11.0.1",
"gpg": "^0.6.0",
"helmet": "^4.2.0",
"jten": "^0.2.0",
"listr": "^0.14.2",
"lodash": "^4.17.20",
"mkdirp": "^1.0.4",
"mongoose": "^5.10.13",
"morgan": "^1.10.0",
"multiparty": "^4.2.2",
"nedb": "^1.8.0",
"pino": "^6.7.0",
"recursive-readdir": "^2.2.1",
"request": "^2.88.2",
"rimraf": "^3.0.2",
"semver": "^7.3.2",
"tar": "^6.0.5",
"tmp": "0.2.1",
"uuid": "^8.3.1"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^7.13.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.3.0",
"nock": "^13.0.4",
"nodemon": "^2.0.6",
"pkg": "^4.4.9",
"supertest": "^6.0.1",
"unzipper": "^0.10.11"
},
"pkg": {
"assets": [
"views/**/*"
]
}
}