├── .eslintrc.json ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── bin └── hdig.js ├── lib ├── hdns.js ├── resolvconf.js └── stub.js ├── package.json └── test └── .gitkeep /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handshake-org/hdns/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | node_modules/ 3 | npm-debug.log 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handshake-org/hdns/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handshake-org/hdns/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handshake-org/hdns/HEAD/README.md -------------------------------------------------------------------------------- /bin/hdig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handshake-org/hdns/HEAD/bin/hdig.js -------------------------------------------------------------------------------- /lib/hdns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handshake-org/hdns/HEAD/lib/hdns.js -------------------------------------------------------------------------------- /lib/resolvconf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handshake-org/hdns/HEAD/lib/resolvconf.js -------------------------------------------------------------------------------- /lib/stub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handshake-org/hdns/HEAD/lib/stub.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handshake-org/hdns/HEAD/package.json -------------------------------------------------------------------------------- /test/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------