-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.28 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
{
"name": "get-ip-from-request",
"version": "2.0.2",
"description": "get ip client from request and validate ip (v4/v6)",
"source": "./lib/index.js",
"main": "./lib/index.js",
"module": "./lib/index.mjs",
"exports": {
".": {
"require": "./lib/index.js",
"node": "./lib/index.mjs",
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
}
},
"files": [
"lib/index.js",
"lib/index.mjs",
"lib/index.d.ts"
],
"type": "commonjs",
"types": "./lib/index.d.ts",
"engines": {
"node": ">=20"
},
"scripts": {
"bench": "node benchmark/index.js",
"test": "node tests/index.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/benevolarX/get-ip-from-request.git"
},
"keywords": [
"ip",
"request",
"ipv4",
"ipv6",
"regex",
"client",
"address",
"headers",
"validate",
"es2022",
"get",
"from",
"req"
],
"author": "victor-auffret",
"license": "MIT",
"bugs": {
"url": "https://github.com/benevolarX/get-ip-from-request/issues"
},
"homepage": "https://github.com/benevolarX/get-ip-from-request#readme",
"devDependencies": {
"@types/node": "^22.10.1",
"benchmark": "^2.1.4",
"microtime": "^3.1.1",
"tape": "^5.9.0"
}
}