-
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 <[email protected]>",
"Konstantin Käfer <[email protected]>",
"Joe Vennix <[email protected]>",
"artems <[email protected]>",
"Sven Steinheißer <[email protected]>",
"James Taylor <[email protected]>",
"Robert Schultz <[email protected]>",
"Tim Oxley <[email protected]>",
"sajal <[email protected]>",
"Chris O'Hara <[email protected]>",
"James Taylor <[email protected]>",
"Christopher Holt <[email protected]>",
"Nicolas Fouché <[email protected]>",
"Benjamin Byholm <[email protected]>",
"Bernhard Valenti <[email protected]>",
"Pawel Maciejewski <[email protected]>",
"Ilya Furman <[email protected]>",
"William Cummings <[email protected]>",
"Nicolas Fouché <[email protected]>",
"Rémy Coutable <[email protected]>",
"Ilkka Myller <[email protected]>",
"Dan Kang <[email protected]>"
],
"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": "[email protected]",
"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"
}
}