forked from geoip-lite/node-geoip
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
53 lines (53 loc) · 1.09 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
{
"name": "geoip-country",
"version": "5.0.202501242341",
"description": "Quick country lookup from IP address",
"keywords": [
"geo",
"geoip",
"ip",
"ipv4",
"ipv6",
"geolookup",
"maxmind",
"geolite",
"country"
],
"homepage": "https://github.com/sapics/geoip-country",
"author": "sapics (https://github.com/sapics)",
"files": [
"lib/",
"data/",
"scripts/",
"LICENSE",
"EULA"
],
"main": "lib/geoip.js",
"repository": {
"type": "git",
"url": "git://github.com/sapics/geoip-country.git"
},
"engines": {
"node": ">=10.20.0"
},
"scripts": {
"test": "nodeunit --reporter=minimal test/tests.js",
"updatedb": "node scripts/updatedb.js",
"updatedb-debug": "node scripts/updatedb.js debug"
},
"dependencies": {
"async": "^2.6.4",
"countries-list": "^3.1.1",
"ip-address": "^6.4.0",
"yauzl": "^2.10.0"
},
"config": {
"update": true
},
"devDependencies": {
"dayjs": "^1.11.13",
"geoip-lite": "^1.4.10",
"nodeunit-x": "^0.16.0"
},
"license": "MaxMind GeoLite2 License"
}