punchbuggy
Version:
Punch holes with confidence!
54 lines (53 loc) • 1.3 kB
JSON
{
"name": "punchbuggy",
"version": "0.0.4",
"description": "Punch holes with confidence!",
"main": "lib/index.js",
"bin": "bin/index.js",
"repository": {
"type": "git",
"url": "https://github.com/zbo14/punchbuggy"
},
"scripts": {
"server:build": "bash scripts/build-server.sh",
"lint": "eslint bin/* lib/*",
"cert:generate": "bash scripts/generate-cert.sh",
"server:logs": "bash scripts/logs-server.sh",
"server:start": "bash scripts/start-server.sh",
"server:stop": "bash scripts/stop-server.sh",
"test": "NODE_ENV=test nyc mocha --recursive --exit"
},
"keywords": [
"NAT",
"UDP",
"hole punching",
"networking",
"p2p",
"peer-to-peer"
],
"author": "Zachary Balder",
"license": "MIT",
"devDependencies": {
"@sinonjs/fake-timers": "^7.0.5",
"eslint": "^7.24.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"mocha": "^8.3.2",
"nyc": "^15.1.0"
},
"nyc": {
"check-coverage": true,
"per-file": true,
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100,
"reporter": [
"html",
"text"
]
}
}