@lxe/maxmind-db-reader
Version:
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).
68 lines (67 loc) • 1.77 kB
JSON
{
"name": "@lxe/maxmind-db-reader",
"version": "1.0.0",
"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": "pkloes@web.de"
},
{
"name": "Corné 'EaterOfCode' Oppelaar",
"email": "hello@eaterofco.de"
},
{
"name": "Rajesh Segu",
"email": "rajesh.segu@gmail.com"
},
{
"name": "Aleksey Smolenchuk",
"email": "lxe@lxe.co"
}
],
"repository": {
"type": "git",
"url": "https://github.com/lxe/node-maxmind-db"
},
"bin": {
"mmdb-geoip": "./repl"
},
"keywords": [
"Maxmind",
"Maxmind DB",
"Maxmind DB Reader",
"GeoIP2",
"GeoIP2 Lite"
],
"author": {
"name": "Patrick Klös",
"email": "pkloes@web.de"
},
"dependencies": {
"big-integer": ">=1.6.26",
"ip-address": "5.8.9"
},
"devDependencies": {
"istanbul": "^0.4.5",
"jshint": "2.9.5",
"path": "^0.12.7",
"scotch-tape": "0.2.1"
},
"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"
}
],
"engines": {
"node": ">=4.0"
}
}