forked from outsideris/citizen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.57 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
{
"name": "citizen",
"version": "0.3.2",
"private": true,
"bin": {
"citizen": "./bin/citizen"
},
"scripts": {
"start": "node ./bin/citizen server",
"dev": "nodemon ./bin/citizen server",
"lint": "eslint .",
"test": "mocha --exit --recursive -t 20000 $(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": {
"aws-sdk": "^2.387.0",
"body-parser": "^1.18.2",
"colors": "^1.3.3",
"commander": "^2.19.0",
"debug": "^4.1.1",
"express": "^4.16.4",
"glob-gitignore": "^1.0.10",
"globby": "^8.0.2",
"gopher-hcl": "^0.1.0",
"helmet": "^3.14.0",
"jten": "^0.2.0",
"listr": "^0.14.2",
"lodash": "^4.17.11",
"mkdirp": "^0.5.1",
"morgan": "^1.9.1",
"multiparty": "^4.2.1",
"nedb": "^1.8.0",
"pino": "^5.10.6",
"recursive-readdir": "^2.2.1",
"request": "^2.88.0",
"rimraf": "^2.6.3",
"semver": "^5.6.0",
"tar": "^4.4.6",
"tmp": "0.0.33",
"uuid": "^3.3.2"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.12.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-mocha": "^5.2.1",
"get-port": "^4.1.0",
"mocha": "^5.0.4",
"ngrok": "^3.1.0",
"nock": "^10.0.6",
"nodemon": "^1.18.9",
"pkg": "^4.3.7",
"supertest": "^3.3.0",
"unzipper": "^0.9.7"
},
"pkg": {
"assets": [
"views/**/*"
]
}
}