-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.17 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.17 KB
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
{
"name": "node-geoip2-api",
"version": "1.0.1",
"description": "Node.js Restify API for the MaxMind GeoIP2 databases",
"main": "index.js",
"dependencies": {
"diagnostics": "0.0.x",
"maxmind-db-reader": "0.2.x",
"restify": "2.8.x"
},
"devDependencies": {
"chai": "1.10.x",
"istanbul": "0.3.x",
"mocha": "2.0.x",
"mocha-lcov-reporter": "0.0.x",
"pre-commit": "0.0.x",
"sinon": "1.12.x",
"sinon-chai": "2.6.x"
},
"scripts": {
"test": "NODE_ENV=test mocha $(find test -name '*.test.js')",
"coverage": "NODE_ENV=test istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js || true && rm -rf ./coverage",
"start": "bin/server",
"setup": "bin/setup"
},
"repository": {
"type": "git",
"url": "git@github.com:observing/node-geoip2-api.git"
},
"keywords": [
"GeoIP2",
"MaxMind",
"mmdb",
"api",
"Node.js"
],
"author": "Martijn Swaagman",
"license": "MIT",
"bugs": {
"url": "https://github.com/observing/node-geoip2-api/issues"
},
"homepage": "https://github.com/observing/node-geoip2-api"
}