-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.44 KB
/
package.json
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
{
"name": "@exortek/express-mongo-sanitize",
"version": "1.0.0",
"description": "A comprehensive Express middleware designed to protect your No(n)SQL queries from injection attacks by sanitizing request data. This middleware provides flexible sanitization options for request bodies, parameters, and query strings.",
"main": "index.js",
"type": "commonjs",
"types": "types/index.d.ts",
"scripts": {
"format": "prettier --write \"**/*.{js,ts,json}\"",
"test:tsd": "tsd",
"test:node": "node --test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ExorTek/express-mongo-sanitize.git"
},
"keywords": [
"express",
"mongodb",
"sanitize",
"mongoose",
"express-middleware",
"data-validation",
"input-sanitization",
"security",
"web-application",
"nodejs",
"typescript",
"middleware",
"api-security",
"query-sanitization",
"no-sql",
"mongodb-sanitizer"
],
"author": "ExorTek - https://github.com/ExorTek",
"license": "MIT",
"bugs": {
"url": "https://github.com/ExorTek/express-mongo-sanitize/issues"
},
"homepage": "https://github.com/ExorTek/express-mongo-sanitize#readme",
"publishConfig": {
"access": "public"
},
"packageManager": "[email protected]",
"devDependencies": {
"@types/express": "^5.0.0",
"express": "^4.21.1",
"prettier": "^3.3.3",
"tsd": "^0.31.2"
},
"files": [
"index.js",
"types/index.d.ts"
]
}