-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
55 lines (55 loc) · 1.24 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
{
"name": "geo-from-ip",
"version": "2.1.0",
"description": "Get geolocation 🌐 information about an IP address 📲",
"main": "lib/geo-from-ip.js",
"scripts": {
"postinstall": "node lib/update.js",
"postinstall-debug": "DEBUG=geo-from-ip:* node lib/update.js",
"test": "DEBUG=geo-from-ip:* jest --collectCoverage"
},
"repository": {
"type": "git",
"url": "https://github.com/VikramTiwari/geo-from-ip.git"
},
"keywords": [
"geo",
"ip",
"update",
"mmdb",
"geo from ip",
"ip to geo",
"GeoIP2 Lite",
"GeoIP2",
"maxmind db reader",
"maxmind db",
"maxmind",
"maxmind",
"auto update"
],
"author": "Vikram Tiwari <[email protected]> (vikramtiwari.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/VikramTiwari/geo-from-ip/issues"
},
"engines": {
"node": ">=12"
},
"prettier": {
"printWidth": 80,
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all"
},
"homepage": "https://github.com/VikramTiwari/geo-from-ip",
"dependencies": {
"debug": "^4.3.1",
"maxmind-db-reader": "^0.2.1",
"node-fetch": "^2.6.0",
"targz": "^1.0.1"
},
"devDependencies": {
"jest": "^26.6.3"
}
}