-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
58 lines (58 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
{
"name": "mmdb-lib",
"version": "0.0.0-development",
"homepage": "https://github.com/runk/mmdb-lib",
"description": "Maxmind DB (MMDB) Library",
"keywords": [
"maxmind",
"mmdb",
"geo",
"geoip",
"geoip2"
],
"author": "Dmitry Shirokov <[email protected]>",
"contributors": [
"William Storey @horgh",
"Uman Shahzad @UmanShahzad"
],
"devDependencies": {
"@types/ip-address": "7.0.0",
"@types/mocha": "^10.0.1",
"@types/node": "22.10.3",
"@types/sinon": "17.0.3",
"ip-address": "10.0.1",
"mocha": "^11.0.0",
"prettier": "^3.0.0",
"semantic-release": "^24.0.0",
"sinon": "19.0.2",
"ts-node": "^10.4.0",
"typescript": "5.7.2"
},
"repository": {
"type": "git",
"url": "https://github.com/runk/mmdb-lib.git"
},
"bugs": {
"mail": "[email protected]",
"url": "http://github.com/runk/mmdb-lib/issues"
},
"files": [
"lib"
],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"engines": {
"node": ">=10",
"npm": ">=6"
},
"license": "MIT",
"scripts": {
"build": "rm -rf lib/* && tsc",
"typecheck": "tsc --noEmit",
"test": "mocha",
"test-imports": "node test/imports/commonjs.js && node test/imports/esm.mjs && ts-node test/imports/typescript.ts",
"format": "prettier --write src",
"prepublish": "npm run build",
"semantic-release": "semantic-release"
}
}