forked from PaddeK/node-maxmind-db
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 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
{
"name": "maxmind-db-reader",
"version": "0.2.1",
"description": "This is the pure Node API for reading MaxMind DB files. MaxMind DB is a binary file format that stores data indexed by IP address subnets (IPv4 or IPv6).",
"main": "./index.js",
"contributors": [
{
"name": "Patrick Klös",
"email": "[email protected]"
},
{
"name": "Corné 'EaterOfCode' Oppelaar",
"email": "[email protected]"
},
{
"name": "Rajesh Segu",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/PaddeK/node-maxmind-db"
},
"bin": {
"mmdb-geoip": "./repl"
},
"keywords": [
"Maxmind",
"Maxmind DB",
"Maxmind DB Reader",
"GeoIP2",
"GeoIP2 Lite"
],
"author": {
"name": "Patrick Klös",
"email": "[email protected]"
},
"dependencies": {
"big-integer": ">=1.1.5",
"ip-address": "4.0.0"
},
"devDependencies": {
"istanbul": "^0.3.13",
"jshint": "2.4.2",
"path": "^0.11.14",
"scotch-tape": "0.2.0"
},
"scripts": {
"cover": "istanbul cover --report cobertura --print detail tape -- test/test.js",
"cover-html": "istanbul report html",
"fast-test": "tape test/test.js",
"test": "npm run cover -s"
},
"licenses": [
{
"type": "LGPL 2.1",
"url": "https://github.com/PaddeK/node-maxmind-db/blob/master/LICENSE"
}
],
"engine": {
"node": ">=0.8.0"
}
}