forked from maorhayoun/express-request-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.54 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.54 KB
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
{
"name": "express-request-proxy",
"version": "1.2.0",
"description": "Intelligent http proxy Express middleware",
"main": "index.js",
"scripts": {
"test": "mocha --reporter spec --bail --check-leaks test/",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/",
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"
},
"repository": {
"type": "git",
"url": "https://github.com/4front/express-request-proxy"
},
"keywords": [
"4front",
"express",
"middleware",
"request",
"api",
"proxy"
],
"author": "David Von Lehman (https://github.com/dvonlehman)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/4front/express-request-proxy/issues"
},
"homepage": "https://github.com/4front/express-request-proxy",
"dependencies": {
"async": "^1.4.0",
"body-parser": "^1.12.0",
"camel-case": "^1.1.1",
"debug": "^2.1.1",
"lodash": "^3.0.1",
"lru-cache": "^2.5.0",
"path-to-regexp": "^1.1.1",
"request": "^2.53.0",
"simple-errors": "^1.0.0",
"through2": "^2.0.0",
"type-is": "^1.6.6",
"url-join": "0.0.1"
},
"devDependencies": {
"compression": "^1.6.0",
"dash-assert": "^1.0.2",
"eslint": "^1.9.0",
"eslint-config-4front": "^1.0.1",
"express": "^4.11.1",
"istanbul": "^0.3.5",
"memory-cache-stream": "^1.0.4",
"mocha": "^2.1.0",
"shortid": "^2.1.3",
"sinon": "^1.15.4",
"supertest": "^1.0.1"
}
}