forked from jclo/jgeoip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.3 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
{
"name": "jgeoip",
"version": "0.2.1",
"description": "A light Javascript API for reading MaxMind DB files",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "istanbul cover -x ./test/main.js _mocha -- -R spec ./test/main.js",
"check-coverage": "istanbul check-coverage --statements 89 --branches 75 --functions 100 --lines 89",
"display-coverage": "opener ./coverage/lcov-report/index.html",
"report-coverage": "cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/jclo/jgeoip.git"
},
"keywords": [
"geolocation",
"geoip",
"geoip2",
"geoiplite2",
"maxmind",
"mmdb"
],
"author": {
"name": "jclo",
"email": "[email protected]",
"url": "http://www.mobilabs.fr/"
},
"contributors": [
"DmitryM <[email protected]> (http://mainlywrenches.co/)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/jclo/jgeoip/issues"
},
"homepage": "https://github.com/jclo/jgeoip",
"devDependencies": {
"chai": "3.5.0",
"coveralls": "2.11.9",
"ghooks": "1.2.1",
"istanbul": "0.4.3",
"mocha": "2.5.3",
"opener": "1.4.1"
},
"config": {
"ghooks": {
"pre-commit": "npm run test && npm run check-coverage"
}
}
}