forked from runk/node-maxmind
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.41 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.41 KB
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
{
"name": "maxmind",
"version": "2.2.0",
"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"
],
"author": "Dmitry Shirokov <deadrunk@gmail.com>",
"contributors": [
"Thomas Birke @quafzi <quafzi@netextreme.de>",
"Afzaal Ameer @afzaalace"
],
"dependencies": {
"big-integer": "^1.6.22",
"lru-cache": "^4.0.2"
},
"devDependencies": {
"eslint": "^2.13.1",
"github-publish-release": "^4.0.0",
"ip-address": "^5.8.8",
"istanbul": "^0.4.5",
"mocha": "^3.4.1",
"sinon": "^2.3.0"
},
"repository": {
"type": "git",
"url": "https://github.com/runk/node-maxmind.git"
},
"bugs": {
"mail": "deadrunk@gmail.com",
"url": "http://github.com/runk/node-maxmind/issues"
},
"main": "index.js",
"engines": {
"node": ">=0.8.0",
"npm": ">=1"
},
"license": "MIT",
"scripts": {
"benchmark": "node benchmark",
"coverage": "istanbul cover _mocha -- -R spec --timeout 5000 --recursive",
"coverage:check": "istanbul check-coverage",
"lint": "eslint -c .eslintrc .",
"release": "scripts/release",
"mocha": "mocha -R spec --recursive --bail",
"test": "npm run lint && npm run coverage && npm run coverage:check"
}
}