UNPKG

knex-sql-injection-detector

Version:

A CLI tool to detect potential SQL injection risks in knex.js codebases by analyzing raw SQL query construction.

47 lines (46 loc) 1.02 kB
{ "name": "knex-sql-injection-detector", "version": "1.1.0", "description": "A CLI tool to detect potential SQL injection risks in knex.js codebases by analyzing raw SQL query construction.", "type": "module", "main": "cli.mjs", "scripts": { "test": "echo \"Error: no test specified\" && exit 1" }, "keywords": [ "knex", "sql", "injection", "detector", "security", "cli", "static-analysis", "lint", "javascript", "query", "analysis" ], "license": "Unlicense", "bin": { "knex-sql-injection-detector": "cli.mjs" }, "files": [ "cli.mjs", "README.md", "LICENSE" ], "repository": { "type": "git", "url": "https://github.com/konard/knex-sql-injection-detector.git" }, "bugs": { "url": "https://github.com/konard/knex-sql-injection-detector/issues" }, "dependencies": { "@babel/parser": "^7.27.4", "@babel/traverse": "^7.27.4", "glob": "^10.3.10", "p-limit": "^6.2.0", "yargs": "^17.7.2" } }