@gr2m/net-interceptor
Version:
Intercept and mock outgoing network TCP/TLS connections
76 lines (75 loc) • 1.81 kB
JSON
{
"name": "@gr2m/net-interceptor",
"publishConfig": {
"access": "public"
},
"version": "1.0.0",
"type": "module",
"licenses": [
{
"type": "LAGPL",
"url": "https://github.com/gr2m/node-net-interceptor/blob/master/LICENSE.md"
}
],
"description": "Intercept and mock outgoing network TCP/TLS connections",
"author": "Gregor Martynus (https://github.com/gr2m)",
"contributors": [
{
"name": "Andri Möll",
"email": "andri@dot.ee",
"url": "http://themoll.com"
}
],
"keywords": [
"net",
"intercept",
"interception",
"network",
"socket",
"tcp",
"tls",
"test"
],
"repository": "github:gr2m/node-net-interceptor",
"exports": "./index.js",
"scripts": {
"test": "npm run test:code && npm run test:tsc && npm run test:tsd && npm run lint",
"test:code": "c8 --100 uvu",
"test:tsc": "tsc --allowJs --noEmit --esModuleInterop --skipLibCheck --lib es2020 index.js",
"test:tsd": "tsd",
"test:workspaces": "npm test --workspaces --if-present",
"lint": "prettier --check \"*.{js,json,ts,md}\" \".github/**/*.yml\"",
"lint:fix": "prettier --write \"*.{js,json,ts,md}\" \".github/**/*.yml\"",
"coverage": "c8 report --reporter html",
"postcoverage": "open-cli coverage/index.html"
},
"devDependencies": {
"@types/node": "^16.11.11",
"c8": "^7.10.0",
"open-cli": "^7.0.1",
"prettier": "^2.5.0",
"sinon": "^12.0.1",
"tsd": "^0.19.0",
"typescript": "^4.5.2",
"uvu": "^0.5.2"
},
"engines": {
"node": ">= 14"
},
"release": {
"branches": [
"+([0-9]).x",
"main",
"next",
{
"name": "beta",
"prerelease": true
}
]
},
"renovate": {
"extends": [
"github>gr2m/.github"
]
}
}