sql-query-safety-checker
Version:
🛡️ Comprehensive TypeScript library for SQL query security analysis with injection detection, risk assessment, and Express middleware integration
98 lines (97 loc) • 2.16 kB
JSON
{
"name": "sql-query-safety-checker",
"version": "1.1.9",
"description": "🛡️ Comprehensive TypeScript library for SQL query security analysis with injection detection, risk assessment, and Express middleware integration",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "bunup",
"dev": "bunup --watch",
"prepublishOnly": "bun run build",
"test": "bun test",
"format": "prettier --write ."
},
"keywords": [
"sql",
"security",
"injection",
"query",
"safety",
"checker",
"typescript",
"database",
"sql-injection",
"security-analysis",
"express-middleware",
"query-validation",
"cybersecurity",
"web-security",
"database-security",
"nodejs",
"typescript-library",
"risk-assessment",
"vulnerability-scanner",
"security-tools",
"penetration-testing",
"owasp",
"sql-parser",
"threat-detection"
],
"author": {
"name": "sametcn99",
"url": "https://sametcc.me"
},
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/sametcn99/sql-query-safety-checker.git"
},
"bugs": {
"url": "https://github.com/sametcn99/sql-query-safety-checker/issues"
},
"homepage": "https://github.com/sametcn99/sql-query-safety-checker#readme",
"devDependencies": {
"@types/bun": "latest",
"@types/express": "^4.17.21",
"@types/supertest": "^6.0.2",
"bunup": "^0.8.35",
"prettier": "3.5.3",
"supertest": "^7.0.0"
},
"peerDependencies": {
"typescript": "^5",
"express": "^5.1.0"
},
"engines": {
"node": ">=18"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/sametcn99"
},
"bunup": {
"entry": [
"index.ts"
],
"format": [
"esm",
"cjs"
],
"dts": true,
"outDir": "dist",
"target": "node",
"clean": true
}
}