-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
41 lines (41 loc) · 963 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
41
{
"name": "geolite2",
"version": "0.0.0-development",
"description": "Maxmind's GeoLite2 Free Databases",
"main": "index.js",
"keywords": [
"maxmind",
"mmdb",
"geo",
"geoip",
"geoip2",
"geobase",
"geo lookup"
],
"scripts": {
"postinstall": "node scripts/postinstall.js",
"test": "scripts/test",
"semantic-release": "semantic-release",
"format": "prettier --write .",
"format:check": "prettier --write ."
},
"repository": {
"type": "git",
"url": "https://github.com/runk/node-geolite2.git"
},
"author": "Dmitry Shirokov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/runk/node-geolite2/issues"
},
"homepage": "https://github.com/runk/node-geolite2#readme",
"dependencies": {
"node-fetch": "^2.7.0",
"tar": "^7.0.0"
},
"devDependencies": {
"mocha": "^10.0.0",
"prettier": "^3.0.0",
"semantic-release": "^24.0.0"
}
}