-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
41 lines (41 loc) · 1.13 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
{
"name": "node-geoip2-client",
"version": "1.0.7",
"description": "Node.js client for its Restify server counterpart node-geoip2-api",
"main": "index.js",
"dependencies": {
"diagnostics": "~1.1.0",
"request": "~2.78.0"
},
"devDependencies": {
"chai": "~3.5.0",
"istanbul": "~0.4.5",
"mocha": "~3.2.0",
"mocha-lcov-reporter": "~1.2.0",
"pre-commit": "~1.2.0",
"sinon": "~1.17.6",
"sinon-chai": "~2.8.0"
},
"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"
},
"repository": {
"type": "git",
"url": "[email protected]:observing/node-geoip2-client.git"
},
"keywords": [
"GeoIP2",
"MaxMind",
"mmdb",
"client",
"Node.js",
"api"
],
"author": "Martijn Swaagman",
"license": "MIT",
"bugs": {
"url": "https://github.com/observing/node-geoip2-client/issues"
},
"homepage": "https://github.com/observing/node-geoip2-client"
}