-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
50 lines (50 loc) · 1.16 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
{
"name": "forwarder-http",
"version": "3.2.0",
"description": "A simple and configurable HTTP forwarder: streams incomming requests to a list of target servers",
"repository": {
"type": "git",
"url": "git+https://github.com/radiofrance/node-forwarder-http.git"
},
"keywords": [
"http",
"https",
"request",
"forward",
"utility",
"util",
"load-balancing",
"proxy"
],
"main": "index.js",
"engines": {
"node": ">=6.0.0"
},
"dependencies": {
"eventemitter3": "^3.0.0"
},
"devDependencies": {
"chai": "^4.0.0",
"eslint": "^4.9.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.0.0",
"mocha": "^4.0.0"
},
"scripts": {
"test": "eslint . && mocha"
},
"author": "Radio France <[email protected]>",
"contributors": [
"Rodolfo Ripado <[email protected]>"
],
"license": "CECILL-B",
"bugs": {
"url": "https://github.com/radiofrance/node-forwarder-http/issues"
},
"homepage": "https://github.com/radiofrance/node-forwarder-http#readme",
"directories": {
"example": "examples",
"test": "test"
}
}