-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.11 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"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
}
}