-
Notifications
You must be signed in to change notification settings - Fork 102
/
package.json
72 lines (72 loc) · 1.69 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "request-ip",
"version": "3.3.0",
"description": "A small Node.js module to retrieve the request's IP address",
"keywords": [
"request ip",
"ip",
"address",
"request",
"proxy",
"client",
"header",
"X-Client-IP",
"X-Forwarded-For",
"CF-Connecting-IP",
"Fastly-Client-IP",
"True-Client-IP",
"X-Real-IP",
"X-Cluster-Client-IP",
"X-Forwarded",
"Forwarded-For",
"connection.remoteAddress",
"connection.socket.remoteAddress",
"req.info.remoteAddress",
"middleware",
"ipv4",
"ipv6",
"fastify",
"x-appengine-user-ip",
"cloudflare",
"Cf-Pseudo-IPv4"
],
"homepage": "https://github.com/pbojinov/request-ip",
"bugs": {
"url": "https://github.com/pbojinov/request-ip/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/pbojinov/request-ip.git"
},
"license": "MIT",
"author": "Petar Bojinov <[email protected]>",
"contributors": [
{
"name": "Jon Peck",
"email": "[email protected]"
}
],
"files": [
"lib"
],
"main": "./lib/index.js",
"scripts": {
"build": "babel src --out-dir lib",
"changelog": "github_changelog_generator -u pbojinov -p request-ip",
"coverage": "jest && cat ./coverage/lcov.info | coveralls",
"test": "jest"
},
"prettier": "@shopify/prettier-config",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@shopify/eslint-plugin": "^41.3.0",
"@shopify/prettier-config": "^1.1.2",
"babel-jest": "^29.3.1",
"coveralls": "^3.0.2",
"eslint": "^8.16.0",
"jest": "^29.3.1",
"request": "^2.54.0"
}
}