Merge branch 'master' into v1.3

This commit is contained in:
AJ ONeal 2017-10-27 23:50:55 -06:00
commit 7bba8f18e9
2 changed files with 14 additions and 9 deletions

View File

@ -1,7 +1,12 @@
dig.js dig.js
====== ======
| [dns-suite](https://git.daplie.com/Daplie/dns-suite) | **dig.js** | [digd.js](https://git.daplie.com/Daplie/digd.js) | | [dns-suite](https://git.coolaj86.com/coolaj86/dns-suite)
| **dig.js**
| [digd.js](https://git.coolaj86.com/coolaj86/digd.js)
|
Sponsored by [Daplie](https://daplie.com).
Create and capture DNS and mDNS query and response packets to disk as binary and/or JSON. 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. Supports dns0x20 security checking. Options are similar to the Unix `dig` command. Supports dns0x20 security checking.
@ -13,12 +18,12 @@ Install
```bash ```bash
# Install the latest of v1.x # Install the latest of v1.x
npm install -g 'git+https://git.daplie.com/Daplie/dig.js.git#v1' npm install -g 'git+https://git.coolaj86.com/coolaj86/dig.js.git#v1'
``` ```
```bash ```bash
# Install exactly v1.0.0 # Install exactly v1.0.0
npm install -g 'git+https://git.daplie.com/Daplie/dig.js.git#v1.0.0' npm install -g 'git+https://git.coolaj86.com/coolaj86/dig.js.git#v1.0.0'
``` ```
### without git ### without git

View File

@ -11,7 +11,7 @@
}, },
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git@git.daplie.com:Daplie/dig.js.git" "url": "https://git.coolaj86.com/coolaj86/dig.js.git"
}, },
"keywords": [ "keywords": [
"mdig", "mdig",
@ -33,17 +33,17 @@
"binary", "binary",
"json" "json"
], ],
"author": "AJ ONeal <aj@daplie.com> (https://daplie.com/)", "author": "AJ ONeal <coolaj86@gmail.com> (https://coolaj86.com/)",
"license": "(MIT OR Apache-2.0)", "license": "(MIT OR Apache-2.0)",
"bugs": { "bugs": {
"url": "https://git.daplie.com/Daplie/dig.js/issues" "url": "https://git.coolaj86.com/coolaj86/dig.js/issues"
}, },
"homepage": "https://git.daplie.com/Daplie/dig.js", "homepage": "https://git.coolaj86.com/coolaj86/dig.js",
"dependencies": { "dependencies": {
"cli": "^1.0.1", "cli": "^1.0.1",
"dns-suite": "git+https://git.daplie.com/Daplie/dns-suite#v1.2" "dns-suite": "git+https://git.coolaj86.com/coolaj86/dns-suite.js#v1.2"
}, },
"optionalDependencies": { "optionalDependencies": {
"hexdump.js": "git+https://git.daplie.com/Daplie/hexdump.js#v1.0.4" "hexdump.js": "git+https://git.coolaj86.com/coolaj86/hexdump.js#v1.0.4"
} }
} }