-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
43 lines (43 loc) · 1.05 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
{
"name": "freewhois",
"version": "1.3.2",
"description": "A node client that uses the iana RDAP DNS database to lookup WHOIS information for free",
"main": "index.js",
"scripts": {
"whois": "node bin/index.js",
"update-tlds": "node update-tlds.js",
"test": "mocha"
},
"bin": {
"freewhois": "./bin/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joshterrill/freewhois.git"
},
"keywords": [
"whois",
"dns",
"free whois",
"dns lookup",
"reverse lookup",
"reverse dns",
"ip lookup",
"reverse ip",
"ip address lookup",
"domain whois",
"domain lookup"
],
"author": "Josh Terrill",
"license": "MIT",
"bugs": {
"url": "https://github.com/joshterrill/freewhois/issues"
},
"homepage": "https://github.com/joshterrill/freewhois#readme",
"dependencies": {
"axios": "^1.7.2"
},
"devDependencies": {
"mocha": "^8.1.3"
}
}