-
-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathpackage.json
73 lines (73 loc) · 1.63 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
73
{
"name": "maxmind",
"version": "0.0.0-development",
"homepage": "https://github.com/runk/node-maxmind",
"description": "IP lookup using Maxmind databases",
"keywords": [
"maxmind",
"mmdb",
"geo",
"geoip",
"geoip2",
"geobase",
"geo lookup",
"ip base",
"geocode",
"timezone",
"asn",
"geo lookup",
"ip lookup"
],
"author": "Dmitry Shirokov <deadrunk@gmail.com>",
"contributors": [
"Thomas Birke @quafzi <quafzi@netextreme.de>",
"Afzaal Ameer @afzaalace",
"Andrew N Golovkov @AndorCS",
"Gregory Oschwald @oschwald",
"Mariano Facundo Scigliano @MarianoFacundoArch"
],
"dependencies": {
"mmdb-lib": "2.1.1",
"tiny-lru": "11.2.11"
},
"devDependencies": {
"@types/ip6addr": "0.2.6",
"@types/jest": "29.5.14",
"@types/netmask": "2.0.5",
"@types/node": "22.10.3",
"@types/sinon": "17.0.3",
"ip-address": "10.0.1",
"ip6addr": "0.2.5",
"jest": "29.7.0",
"prettier": "3.4.2",
"semantic-release": "24.2.0",
"sinon": "19.0.2",
"ts-jest": "29.2.5",
"typescript": "5.7.2"
},
"repository": {
"type": "git",
"url": "https://github.com/runk/node-maxmind.git"
},
"bugs": {
"mail": "deadrunk@gmail.com",
"url": "http://github.com/runk/node-maxmind/issues"
},
"files": [
"lib"
],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"engines": {
"node": ">=12",
"npm": ">=6"
},
"license": "MIT",
"scripts": {
"build": "rm -rf lib/* && tsc",
"format": "prettier --write .",
"prepublish": "npm run build",
"semantic-release": "semantic-release",
"test": "jest"
}
}