forked from onramper/fast-geoip
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 842 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
{
"name": "doc999tor-fast-geoip",
"version": "1.1.277",
"description": "Fork of a faster & low-memory replacement for geoip-lite, a node library that maps IPs to geographical information",
"directories": {
"test": "tests"
},
"scripts": {
"build": "tsc",
"generate": "python processGeoIpCsv.py",
"test": "node tests/lookup.test.js"
},
"keywords": [
"geoip",
"geolocation",
"ip"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Doc999tor/fast-geoip.git"
},
"author": "doc999tor",
"license": "MIT",
"files": [
"data/*",
"build/index.js",
"build/index.d.ts",
"build/utils.js",
"build/params.js"
],
"main": "build/index.js",
"types": "build/index.d.ts",
"devDependencies": {
"@types/node": "^18.7.23",
"typescript": "^4.8.3"
}
}