-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.53 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
{
"name": "node-ipdox",
"version": "1.1.4",
"description": "node-ipdox is a Node.js library for GeoIP lookup, leveraging various free GeoIP APIs. It provides a unified response format and incorporates local caching to minimize duplicate requests.",
"author": "Mikel Calvo <contact@mikecalvo.net> (www.mikelcalvo.net)",
"keywords": [
"geoip",
"ip lookup",
"ipdoxxing",
"ipdox",
"ip",
"ip address",
"ip address lookup",
"cli",
"geolocation"
],
"license": "ISC",
"readmeFilename": "README.md",
"homepage": "https://github.com/MikelCalvo/ipdox#readme",
"bugs": {
"url": "https://github.com/MikelCalvo/ipdox/issues"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"ipdox": "./dist/cli.js",
"node-ipdox": "./dist/cli.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.js"
}
},
"files": ["dist"],
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"test:integration": "RUN_INTEGRATION=1 vitest run src/integration/ipdox.providers.int.test.ts",
"format": "prettier --write \"**/*.ts\" \"**/*.js\" \"**/*.json\" --ignore-path .prettierignore",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MikelCalvo/node-ipdox.git"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"dependencies": {
"axios": "1.16.1",
"lru-cache": "^11.3.6"
},
"devDependencies": {
"@types/node": "25.8.0",
"prettier": "3.8.3",
"typescript": "^6.0.3",
"vitest": "4.1.6"
}
}