-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 985 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 985 Bytes
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
{
"name": "whois-server-list",
"version": "1.0.0",
"description": "Complete JSON list of WHOIS servers for all TLDs - Auto-synced with IANA Root Zone Database",
"type": "module",
"main": "whois_servers.json",
"scripts": {
"sync": "node sync-iana.js",
"sync:dry-run": "node sync-iana.js --dry-run"
},
"keywords": [
"whois",
"whois-server",
"whois-servers",
"tld",
"gtld",
"cctld",
"domain",
"dns",
"iana",
"whois-list",
"whois-database",
"domain-lookup",
"registry",
"json"
],
"author": "Simple Bytes LLC",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/simplebytes-com/whois-server-list.git"
},
"homepage": "https://github.com/simplebytes-com/whois-server-list#readme",
"bugs": {
"url": "https://github.com/simplebytes-com/whois-server-list/issues"
},
"dependencies": {
"node-fetch": "^3.3.2"
},
"engines": {
"node": ">=18.0.0"
}
}