forked from ip2location/ip2location-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.71 KB
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
63
64
65
66
67
68
69
{
"name": "ip2ldb-reader",
"version": "5.0.1",
"description": "Reader for IP2Location databases",
"type": "module",
"main": "./lib/index.cjs",
"exports": {
"require": "./lib/index.cjs",
"import": "./lib/index.mjs"
},
"scripts": {
"build": "npm run check-types && npm run lint && npm run compile && publint",
"clean": "rimraf lib",
"cli": "node lib/cli.mjs",
"cli:debug": "tsx src/cli.ts",
"compile": "tsdown",
"compile:debug": "tsdown --env.dev true",
"check-types": "tsc --noEmit && tsc --noEmit -p tests",
"format": "prettier --write .",
"lint": "eslint .",
"prepare": "npm run compile",
"test": "vitest"
},
"engines": {
"node": ">= 20.19.0"
},
"files": [
"/lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mdmower/ip2ldb-reader.git"
},
"keywords": [
"ip2location",
"geolocation"
],
"author": "Matt Mower <mdmower@cmphys.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mdmower/ip2ldb-reader/issues"
},
"homepage": "https://github.com/mdmower/ip2ldb-reader#readme",
"allowScripts": {
"esbuild": true
},
"dependencies": {
"csv-parse": "^7.0.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^20.19.43",
"@vitest/eslint-plugin": "^1.6.21",
"eslint": "^10.6.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsdoc": "^63.0.12",
"eslint-plugin-prettier": "^5.5.6",
"globals": "^17.7.0",
"jiti": "^2.7.0",
"prettier": "^3.9.4",
"publint": "^0.3.21",
"rimraf": "^6.1.3",
"tsdown": "^0.22.3",
"tsx": "^4.23.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.63.0",
"vitest": "^4.1.10"
}
}