bugwarden
Version:
BugWarden is an open-source Node.js module that guards your applications against bugs and errors. With integrated error handling and reporting, it ensures real-time monitoring of server-side issues, alerting you on services like Slack and email, helping y
52 lines (51 loc) • 1.52 kB
JSON
{
"name": "bugwarden",
"version": "3.0.1",
"description": "BugWarden is an open-source Node.js module that guards your applications against bugs and errors. With integrated error handling and reporting, it ensures real-time monitoring of server-side issues, alerting you on services like Slack and email, helping you maintain robust and reliable software.",
"main": "./dist/app.js",
"module": "./dist/app.mjs",
"types": "./dist/app.d.ts",
"scripts": {
"lint": "tsc",
"build": "tsup src/app.ts --format cjs,esm --dts",
"ci": "npm run lint && npm run build",
"release": "npm run lint && npm run build && changeset publish"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/Bugs-point/bug-warden.git"
},
"author": "bugs-point",
"license": "MIT",
"bugs": {
"url": "https://github.com/Bugs-point/bug-warden/issues"
},
"homepage": "https://github.com/Bugs-point/bug-warden#readme",
"dependencies": {
"express": "^4.18.2"
},
"keywords": [
"express-middleware",
"api-logging",
"error-logging",
"slack-notifications",
"http-status-codes",
"server-monitoring",
"developer-tools",
"nodejs",
"javascript",
"web-development",
"backend",
"debugging",
"error-handling",
"api-monitoring",
"real-time-alerts"
],
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@types/express": "^4.17.21",
"@types/node": "^20.10.6",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
}
}