-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.02 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": "koa-geo-ip",
"version": "0.3.0",
"description": "Uses ip to append geolocation using MaxMind DB files",
"main": "lib/index.js",
"files": [
"lib"
],
"bin": {
"geoip": "bin/geoip"
},
"scripts": {
"geoip": "./bin/geoip",
"test": "echo \"Error: no test specified\" && exit 1"
},
"config": {
"geodb": "/.db/geo/country.mmdb"
},
"author": "Matt Styles",
"repository": {
"type": "git",
"url": "git://github.com/mattstyles/koa-geo-ip.git"
},
"keywords": [
"koa",
"middleware",
"geoip",
"geolocation",
"ip",
"mmdb",
"maxmind",
"GeoIP2"
],
"engine": {
"node": ">=0.11.0"
},
"license": "WTFPL",
"devDependencies": {
"co": "^4.3.1",
"koa": "^0.17.0",
"minimist": "^1.1.0",
"mkdirp": "^0.5.0",
"node-progress": "^0.1.0",
"progress": "^1.1.8",
"request": "^2.53.0",
"superagent": "^0.21.0"
},
"dependencies": {
"lodash.defaults": "^3.0.0",
"maxmind-db-reader": "^0.2.0",
"osenv": "^0.1.0"
}
}