forked from OronNadiv/express-http-proxy-async
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 1.89 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 1.89 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "express-http-proxy-async",
"version": "1.0.0",
"description": "http proxy middleware for express",
"engines": {
"node": ">=4.0.0"
},
"engineStrict": true,
"main": "index.js",
"scripts": {
"test": "npm -s run mocha && npm run -s lint && npm run -s jscs",
"test:debug": "mocha debug -R spec test --recursive",
"mocha": "mocha -R spec test --recursive",
"lint": "jshint index.js test/*.js test/**/*js lib/*js app/**/*js ",
"jscs": "jscs index.js test/*.js test/**/*js lib/*js app/**/*js"
},
"repository": {
"type": "git",
"url": "git://github.com/OronNadiv/express-http-proxy-async.git"
},
"keywords": [
"express-http-proxy",
"express-http-proxy-async"
],
"author": {
"name": "Oron Nadiv",
"email": "oron@nadiv.us"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/OronNadiv/express-http-proxy-async/issues"
},
"devDependencies": {
"body-parser": "^1.17.2",
"chai": "^4.1.2",
"chance": "^1.0.12",
"cookie-parser": "^1.4.3",
"express": "^4.15.4",
"jscs": "^3.0.7",
"jshint": "^2.9.5",
"mocha": "^3.5.0",
"nock": "^9.0.27",
"supertest": "^3.0.0"
},
"dependencies": {
"debug": "^3.0.1",
"es6-promise": "^4.1.1",
"raw-body": "^2.3.0"
},
"contributors": [
{
"name": "Liam Bennett"
},
{
"name": "eldereal",
"url": "https://github.com/eldereal"
},
{
"name": "Saulius Menkevičius",
"url": "https://github.com/razzmatazz"
},
{
"name": "Jérémy Lal",
"email": "kapouer@melix.org"
},
{
"name": "Wei Gao",
"email": "jky239@gmail.com"
},
{
"name": "Nik Krimm",
"url": "https://github.com/monkpow"
},
{
"name": "villadora",
"email": "jky239@gmail.com"
},
{
"name": "Oron Nadiv",
"url": "https://github.com/OronNadiv"
}
]
}