-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
64 lines (64 loc) · 1.42 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": "dev-gateway",
"version": "0.3.0",
"description": "Local development cluster with now path aliases syntax support. Allows running multiple microservices as one solid server.",
"main": "index.js",
"bin": "bin/dev-gateway",
"scripts": {
"lint": "xo",
"ava": "ava -v test/*.test.js",
"test": "xo && ava -v test/*test.js ",
"example": "cd test/example && ./../../bin/dev-gateway app.js -p 5000"
},
"file": [
"bin",
"lib",
"index.js"
],
"keywords": [
"gateway",
"proxy",
"path aliases",
"now"
],
"engines": {
"node": ">=6.9.0"
},
"author": "Dima Pavlovsky",
"license": "MIT",
"dependencies": {
"async-exit-hook": "^2.0.1",
"async-sleep": "^0.1.0",
"async-to-gen": "^1.3.2",
"commander": "^2.10.0",
"http-proxy": "^1.16.2",
"listen-port": "^1.0.1",
"lodash.clonedeep": "^4.5.0",
"lodash.compact": "^3.0.1",
"lodash.flatten": "^4.4.0",
"ps-tree": "^1.1.0",
"tree-kill": "^1.1.0",
"wildcard-match": "^1.0.0"
},
"xo": {
"space": 2,
"extends": "prettier",
"rules": {
"unicorn/no-process-exit": [
0
],
"import/no-unassigned-import": [
0
]
}
},
"devDependencies": {
"ava": "^0.24.0",
"eslint-config-prettier": "^2.0.0",
"get-port": "^3.0.0",
"micro": "^9.0.2",
"request": "^2.81.0",
"request-promise": "^4.2.0",
"xo": "^0.18.1"
}
}