mock-dns-server
Version:
Create a mock DNS-over-TLS server based on [mock-tls-server](https://github.com/hildjj/mock-tls-server/).
44 lines (43 loc) • 1.14 kB
JSON
{
"name": "mock-dns-server",
"version": "0.0.3",
"decription": "Mock DNS-over-TLS server which doesn't use OS sockets",
"main": "lib/index.js",
"type": "module",
"keywords": [
"dns",
"tls",
"dns-over-tls"
],
"author": "Joe Hildebrand <joe-github@cursive.net>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hildjj/mock-dns-server.git"
},
"homepage": "https://github.com/hildjj/mock-dns-server#readme",
"bugs": {
"url": "https://github.com/hildjj/mock-dns-server/issues"
},
"scripts": {
"clean": "rimraf coverage docs lib",
"lint": "eslint .",
"pretest": "tsc --inlineSourceMap",
"test": "c8 node --test test/*.test.js",
"posttest": "npm run ts",
"docs": "typedoc",
"ts": "tsc",
"build": "npm run test && npm run lint && npm run docs && npm pack --dry-run"
},
"dependencies": {
"@cto.af/eslint-config": "4.1.6",
"dns-packet": "5.6.1",
"mock-tls-server": "1.0.1",
"nofilter": "5.0.0",
"typescript-eslint": "8.4.0"
},
"packageManager": "pnpm@9.9.0",
"engines": {
"node": ">=18.8"
}
}