-
Notifications
You must be signed in to change notification settings - Fork 129
/
package.json
78 lines (78 loc) · 2 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "geoip",
"description": "GeoIP binding for node",
"version": "0.6.2-dev",
"homepage": "http://github.com/kuno/GeoIP",
"author": "Guan 'kuno' Qing <neokuno at Gmail dot com>",
"contributors": [
"Vladimir Dronnikov <dronnikov@gmail.com>",
"Konstantin Käfer <github@kkaefer.com>",
"Joe Vennix <joevennix@gmail.com>",
"artems <tema.semenov@gmail.com>",
"Sven Steinheißer <sven.steinheisser@googlemail.com>",
"James Taylor <jt@gosquared.com>",
"Robert Schultz <robert@cosmicrealms.com>",
"Tim Oxley <secoif@gmail.com>",
"sajal <sajal@turbobytes.com>",
"Chris O'Hara <cohara87@gmail.com>",
"James Taylor <jt@gosquared.com>",
"Christopher Holt <cwholt@gmail.com>",
"Nicolas Fouché <nicolas.fouche@gmail.com>",
"Benjamin Byholm <bbyholm@abo.fi>",
"Bernhard Valenti <bernhard@kargo.com>",
"Pawel Maciejewski <fragphace@gmail.com>",
"Ilya Furman <smashlong@gmail.com>",
"William Cummings <will@wpc.io>",
"Nicolas Fouché <nicolas.fouche@gmail.com>",
"Rémy Coutable <remy@rymai.me>",
"Ilkka Myller <ilkka@myller.com>",
"Dan Kang <dann.kang@gmail.com>"
],
"dependencies": {
"bindings": "~1.2.1",
"debug": "~2.2.0",
"is-object": "~1.0.1",
"nan": "~2.1.0",
"pangyp": "~2.3.0"
},
"devDependencies": {
"chai": "~3.2.0",
"mocha": "~2.2.5",
"random-ip": "0.0.1",
"semver": "~5.0.1"
},
"repository": {
"type": "git",
"url": "git://github.com/kuno/GeoIP.git"
},
"keywords": [
"geoip",
"geolocation"
],
"bugs": {
"mail": "neokuno@gmail.com",
"url": "http://github.com/kuno/GeoIP/issues"
},
"license": "LGPL-2.1",
"main": "index.js",
"directory": {
"src": "./src",
"lib": "./lib",
"test": "./test",
"misc": "./misc",
"sample": "./sample",
"benchmark": "./benchmark"
},
"os": [
"linux",
"darwin"
],
"engines": {
"node": ">=0.10.0",
"npm": ">=1"
},
"scripts": {
"build": "make rebuild",
"test": "make test"
}
}