dig.js/package.json

50 lines
1.1 KiB
JSON
Raw Normal View History

2017-02-17 19:07:02 -07:00
{
"name": "dig.js",
2018-03-20 20:12:32 -06:00
"version": "1.3.9",
2017-02-17 19:07:02 -07:00
"description": "Create and capture DNS and mDNS query and response packets to disk as binary and/or JSON. Options are similar to the Unix `dig` command.",
"main": "index.js",
2017-10-28 22:02:40 -06:00
"homepage": "https://git.coolaj86.com/coolaj86/dig.js",
2017-02-23 17:42:26 -07:00
"bin": {
2017-10-02 12:49:20 -06:00
"dig.js": "./bin/dig.js"
2017-02-23 17:42:26 -07:00
},
2017-02-17 19:07:02 -07:00
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
2017-10-28 22:02:27 -06:00
"url": "git://git.coolaj86.com:coolaj86/dig.js.git"
2017-02-17 19:07:02 -07:00
},
"keywords": [
2017-03-30 19:29:01 -06:00
"mdig",
"multicast",
"debugging",
"debug",
"cli",
"command",
"line",
2017-02-17 19:07:02 -07:00
"dig",
"dns",
"mdns",
2017-10-02 16:43:58 -06:00
"dns0x20",
"0x20",
2017-02-17 19:07:02 -07:00
"lint",
"capture",
"create",
"bin",
"binary",
"json"
],
2017-10-27 23:41:34 -06:00
"author": "AJ ONeal <coolaj86@gmail.com> (https://coolaj86.com/)",
2017-02-23 16:55:24 -07:00
"license": "(MIT OR Apache-2.0)",
2017-02-25 13:16:07 -07:00
"bugs": {
2017-10-27 23:41:34 -06:00
"url": "https://git.coolaj86.com/coolaj86/dig.js/issues"
2017-02-25 13:16:07 -07:00
},
2017-02-23 16:55:24 -07:00
"dependencies": {
2017-02-23 18:22:16 -07:00
"cli": "^1.0.1",
2017-10-27 23:41:34 -06:00
"dns-suite": "git+https://git.coolaj86.com/coolaj86/dns-suite.js#v1.2"
2017-09-25 18:14:27 -06:00
},
"optionalDependencies": {
2017-10-27 23:41:34 -06:00
"hexdump.js": "git+https://git.coolaj86.com/coolaj86/hexdump.js#v1.0.4"
2017-02-23 16:55:24 -07:00
}
2017-02-17 19:07:02 -07:00
}