-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
56 lines (56 loc) · 1.59 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
{
"name": "express-request-proxy",
"version": "2.2.2",
"description": "Intelligent http proxy Express middleware",
"main": "index.js",
"scripts": {
"test": "mocha --reporter spec --bail --exit --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 --exit --check-leaks test/",
"lint": "eslint --cache ./lib index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/dvonlehman/express-request-proxy"
},
"keywords": [
"express",
"middleware",
"request",
"api",
"proxy"
],
"author": "David Von Lehman (https://github.com/dvonlehman)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/dvonlehman/express-request-proxy/issues"
},
"homepage": "https://github.com/dvonlehman/express-request-proxy",
"dependencies": {
"async": "^2.6.1",
"body-parser": "^1.18.3",
"camel-case": "^3.0.0",
"debug": "^3.1.0",
"lodash": "^4.17.10",
"lru-cache": "^4.1.3",
"path-to-regexp": "^1.1.1",
"request": "^2.87.0",
"simple-errors": "^1.0.1",
"through2": "^2.0.3",
"type-is": "^1.6.16",
"url-join": "4.0.0"
},
"devDependencies": {
"compression": "^1.7.2",
"coveralls": "^3.0.2",
"dash-assert": "^1.3.1",
"eslint": "^4.19.1",
"express": "^4.16.3",
"istanbul": "^0.4.5",
"memory-cache-stream": "^1.2.0",
"mocha": "^5.2.0",
"shortid": "^2.2.8",
"sinon": "^5.0.10",
"supertest": "^3.1.0"
}
}