UNPKG

dohjs

Version:

DNS over HTTPS lookups from web apps

55 lines (54 loc) 1.26 kB
{ "name": "dohjs", "version": "0.3.3", "description": "DNS over HTTPS lookups from web apps", "main": "lib/index.js", "dependencies": { "argparse": "^1.0.10", "base32-encode": "^1.1.1", "browserify": "^16.5.0", "dns-packet": "^5.2.1", "glob-parent": "^5.1.2", "ws": "^7.4.6" }, "devDependencies": { "jest": "^26.6.3", "jsdoc-to-markdown": "^5.0.3", "terser": "^4.6.3" }, "scripts": { "test": "./test.sh", "start": "npx live-server", "prestart": "npm run build", "build": "npm run dohjs", "prepare": "npm run build", "docs": "jsdoc2md lib/index.js > docs/README.md", "dohjs": "browserify lib/index.js --standalone doh -o dist/doh.js && npx terser dist/doh.js --compress --mangle --output=dist/doh.min.js" }, "repository": { "type": "git", "url": "https://github.com/byu-imaal/dohjs.git" }, "keywords": [ "DNS", "DoH", "DNS over HTTPS" ], "author": "", "license": "GPL-3.0+", "bugs": { "url": "https://github.com/byu-imaal/dohjs/issues" }, "homepage": "https://github.com/byu-imaal/dohjs#readme", "bin": { "dohjs": "./bin/doh.js" }, "files": [ "dist/", "lib/", "bin/", "docs/", "examples/", "test.sh" ] }