-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.19 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
{
"name": "geo-ip-service",
"version": "0.1.1",
"description": "GeoIP middleware to provide ip based info leveraging maxmind Geo City databases",
"main": "index.js",
"files": [
"index.js",
"src",
"scripts"
],
"type": "module",
"scripts": {
"lint": "standard --fix",
"test": "ava --serial",
"c8": "c8 ava --serial && c8 report --reporter=html && open coverage/index.html",
"report:html": "nyc report --reporter=html",
"postinstall": "node scripts/postinstall.js"
},
"keywords": [
"geoip",
"maxmind",
"ipinfo",
"anti-fraud"
],
"author": "Aranđel Šarenac <[email protected]>",
"homepage": "https://github.com/big-kahuna-burger/geo-ip-service",
"repository": {
"url": "git+https://github.com/big-kahuna-burger/geo-ip-service.git"
},
"license": "ISC",
"devDependencies": {
"ava": "^5.3.1",
"c8": "^8.0.1",
"express": "^4.18.2",
"koa": "^2.14.2",
"koa-router": "^12.0.1",
"nock": "^13.3.8",
"standard": "^17.1.0",
"supertest": "^6.3.3"
},
"dependencies": {
"concat-stream": "^2.0.0",
"desm": "^1.3.0",
"maxmind": "^4.3.17",
"tar-fs": "^3.0.4",
"tiny-lru": "^11.2.5"
}
}