-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 991 Bytes
/
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
{
"name": "node-geolite2",
"version": "0.1.7",
"description": "This is the pure Node API for reading country and city information from geolite2 database file based on node-maxmind-db",
"homepage": "https://github.com/zj8487/node-geolite2",
"author": "zj8487 <[email protected]> (https://github.com/zj8487)",
"repository": {
"type": "git",
"url": "https://github.com/zj8487/node-geolite2.git"
},
"files": [
"LICENSE", "README.md", "data", "index.js", "package.json", "scripts"
],
"license": "MIT",
"keywords": [
"node-geolite2",
"maxmind",
"geoip",
"geoip2"
],
"dependencies": {
"maxmind-db-reader": "^0.2.0"
},
"devDependencies": {
"mocha": "^2.1.0",
"should": "^5.0.0"
},
"engine": {
"node": ">=0.8.0",
"npm": "1"
},
"scripts": {
"test": "make test",
"postinstall" : "node scripts/gunzip.js"
},
"bugs": {
"url": "https://github.com/zj8487/node-geolite2/issues"
},
"main": "index.js"
}