1 |
3a515b92
|
cagy
|
{
|
2 |
|
|
"name": "proxy-addr",
|
3 |
|
|
"description": "Determine address of proxied request",
|
4 |
|
|
"version": "2.0.6",
|
5 |
|
|
"author": "Douglas Christopher Wilson <doug@somethingdoug.com>",
|
6 |
|
|
"license": "MIT",
|
7 |
|
|
"keywords": [
|
8 |
|
|
"ip",
|
9 |
|
|
"proxy",
|
10 |
|
|
"x-forwarded-for"
|
11 |
|
|
],
|
12 |
|
|
"repository": "jshttp/proxy-addr",
|
13 |
|
|
"dependencies": {
|
14 |
|
|
"forwarded": "~0.1.2",
|
15 |
|
|
"ipaddr.js": "1.9.1"
|
16 |
|
|
},
|
17 |
|
|
"devDependencies": {
|
18 |
|
|
"benchmark": "2.1.4",
|
19 |
|
|
"beautify-benchmark": "0.2.4",
|
20 |
|
|
"deep-equal": "1.0.1",
|
21 |
|
|
"eslint": "6.8.0",
|
22 |
|
|
"eslint-config-standard": "14.1.0",
|
23 |
|
|
"eslint-plugin-import": "2.20.1",
|
24 |
|
|
"eslint-plugin-markdown": "1.0.1",
|
25 |
|
|
"eslint-plugin-node": "11.0.0",
|
26 |
|
|
"eslint-plugin-promise": "4.2.1",
|
27 |
|
|
"eslint-plugin-standard": "4.0.1",
|
28 |
|
|
"mocha": "7.0.1",
|
29 |
|
|
"nyc": "15.0.0"
|
30 |
|
|
},
|
31 |
|
|
"files": [
|
32 |
|
|
"LICENSE",
|
33 |
|
|
"HISTORY.md",
|
34 |
|
|
"README.md",
|
35 |
|
|
"index.js"
|
36 |
|
|
],
|
37 |
|
|
"engines": {
|
38 |
|
|
"node": ">= 0.10"
|
39 |
|
|
},
|
40 |
|
|
"scripts": {
|
41 |
|
|
"bench": "node benchmark/index.js",
|
42 |
|
|
"lint": "eslint --plugin markdown --ext js,md .",
|
43 |
|
|
"test": "mocha --reporter spec --bail --check-leaks test/",
|
44 |
|
|
"test-cov": "nyc --reporter=text npm test",
|
45 |
|
|
"test-travis": "nyc --reporter=html --reporter=text npm test"
|
46 |
|
|
}
|
47 |
|
|
}
|