forked from kuno/GeoIP
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.53 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
{
"name":"geoip",
"description":"GeoIP binding for node",
"version":"0.4.11-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]>"
],
"devDependencies": {
"mocha": "~1.7.0",
"chai": "~1.3.0"
},
"repository":
{
"type":"git",
"url":"git://github.com/kuno/GeoIP.git"
},
"keywords":["geoip", "geolocation"],
"bugs":
{
"mail":"[email protected]",
"url":"http://github.com/kuno/GeoIP/issues"
},
"main":"index.js",
"directory":
{ "src":"./src",
"test":"./test",
"misc":"./misc",
"sample":"./sample",
"benchmark":"./benchmark"
},
"engine":{"node": "~0.8.0", "npm": "1"},
"scripts":{
"build": "node-gyp clean configure build",
"test": "./bootstrap.sh && ./node_modules/.bin/mocha ./test/*.mocha.js"
},
"licences":
[
{
"type":"LGPL2.1",
"url": "http://www.gnu.org/licenses/lgpl-2.1.txt"
}
]
}