-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.17 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
{
"name": "distributed-dig",
"version": "1.8.9",
"description": "A utility which makes DNS lookup requests across multiple DNS resolvers and collates the results.",
"main": "distributed-dig.js",
"scripts": {
"test": "node distributed-dig.js www.asos.com"
},
"private": false,
"preferGlobal": true,
"bin": {
"ddig": "./distributed-dig.js"
},
"engines": {
"node": ">=10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MarkSMurphy/distributed-dig.git"
},
"keywords": [
"dns",
"resolution",
"distributed",
"lookup",
"IP",
"resolve",
"resolver",
"domain",
"fqdn",
"cli",
"address",
"edns",
"ddig"
],
"author": "Mark Murphy",
"license": "MIT",
"bugs": {
"url": "https://github.com/MarkSMurphy/distributed-dig/issues"
},
"homepage": "https://github.com/MarkSMurphy/distributed-dig#readme",
"dependencies": {
"chalk": "^4.1.1",
"columnify": "^1.6.0",
"debug": "^4.3.3",
"is-ip": "^3.1.0",
"is-valid-domain": "^0.1.6",
"native-dns-multisocket": "^0.7.0",
"pretty-error": "^3.0.4",
"valid-url": "^1.0.9",
"yargs": "^16.2.0"
}
}