forked from primus/forwarded-for
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 953 Bytes
/
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
{
"name": "forwarded-for",
"version": "0.1.0",
"description": "Abstraction for retrieving ip address information from a Node.js connection. Searches for proxy headers before degrading req.address",
"main": "index.js",
"scripts": {
"test": "mocha --reporter spec --ui bdd test.js"
},
"repository": {
"type": "git",
"url": "git://github.com/primus/forwarded-for.git"
},
"keywords": [
"address",
"client ip",
"fastly",
"forwarded-for",
"ip",
"original ip",
"parser",
"ssl-terminator",
"x-forwarded-for",
"x-forwarded-proto",
"x-real-ip",
"z-forwarded-for",
"z-scaler",
"zscaler"
],
"author": "Arnout Kazemier",
"license": "MIT",
"bugs": {
"url": "https://github.com/primus/forwarded-for/issues"
},
"homepage": "https://github.com/primus/forwarded-for",
"devDependencies": {
"assume": "0.0.x",
"mocha": "1.21.x",
"pre-commit": "0.0.x"
}
}