-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
62 lines (62 loc) · 1.39 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "geolite2-redist",
"type": "module",
"version": "3.1.1",
"description": "Redistribution of Maxmind's GeoLite2 Free Databases (without License Key)",
"source": "src/index.ts",
"exports": {
"default": "./dist/index.js"
},
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/*",
"EULA",
"LICENSE",
"package.json",
"README.md"
],
"engines": {
"node": ">= 18.0.0"
},
"keywords": [
"maxmind",
"mmdb",
"geo",
"geoip",
"geoip2",
"geobase",
"geo lookup"
],
"scripts": {
"prepare": "husky",
"build": "tsc",
"make-docs": "typedoc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GitSquared/node-geolite2-redist.git"
},
"author": "Gabriel SAILLARD <gabriel@saillard.dev>",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/GitSquared/node-geolite2-redist/issues"
},
"homepage": "https://github.com/GitSquared/node-geolite2-redist#readme",
"dependencies": {
"got": "^14.4.1",
"rimraf": "^5.0.7",
"tar": "^7.4.0"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@types/node": "^20.14.9",
"@types/rimraf": "^3.0.2",
"@types/tar": "^6.1.13",
"husky": "^9.0.11",
"komit": "^1.0.5",
"typedoc": "^0.26.3",
"typescript": "^5.5.3"
}
}