-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
45 lines (45 loc) · 1008 Bytes
/
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
{
"name": "proxy-express",
"author": "John Hofrichter <https://github.com/johnhof>",
"description": "Request proxying middleware for express",
"version": "2.0.1",
"repository": "git://github.com/johnhof/proxy-express",
"main": "lib/proxy.js",
"keywords": [
"proxy",
"express",
"proxy-express",
"forward",
"passthrough"
],
"engines": {
"node": ">=4.4.0"
},
"dependencies": {
"async": "^0.9.x",
"lodash": "2.4.x",
"request": "^2.53.x",
"colors": "~1.0.3"
},
"scripts": {
"test": "mocha",
"coverage": "istanbul cover _mocha --report html -- -R spec "
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/johnhof/proxy-express/blob/master/LICENSE-MIT"
}
],
"devDependencies": {
"body-parser": "^1.12.0",
"chai": "1.10.x",
"express": "^4.12.x",
"istanbul": "^0.4.2",
"mocha": "2.4.x",
"qs": "^2.3.3",
"should": "1.1.x",
"supertest": "^0.15.0",
"url": "^0.10.3"
}
}