-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 839 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 839 Bytes
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
{
"name": "mmdb-reader",
"version": "1.2.0",
"description": "Read IP data from MaxMind DB files",
"main": "index.js",
"scripts": {
"test": "eslint . && mocha test/geoip-test.js test/reader-test.js test/api-test.js && node --max-old-space-size=32 --expose-gc test/memory-test.js"
},
"repository": {
"type": "git",
"url": "git://github.com/gosquared/mmdb-reader.git"
},
"keywords": [
"geoip",
"geoip2",
"maxmind",
"mmdb"
],
"author": "JT <jt@gosquared.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gosquared/mmdb-reader/issues"
},
"homepage": "https://github.com/gosquared/mmdb-reader",
"devDependencies": {
"eslint": "^1.10.3",
"mocha": "^2.2.5",
"sinon": "4.0.0"
},
"dependencies": {
"big-integer": "^1.5.4",
"hashlru": "^2.0.0"
}
}