-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
64 lines (64 loc) · 1.38 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
56
57
58
59
60
61
62
63
64
{
"name": "perfect-express-sanitizer",
"version": "2.0.2",
"description": "a complete package to control user input data to prevent Cross Site Scripting (XSS) ,Sql injection and no Sql injection attack",
"main": "index.js",
"scripts": {
"test": "npx mocha ./test/*.js"
},
"author": {
"name": "pariazar",
"email": "[email protected]",
"url": "https://github.com/pariazar"
},
"bugs": {
"url": "https://github.com/pariazar/perfect-express-sanitizer/issues"
},
"engines": {
"node": ">4.0"
},
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://opensource.org/licenses/MIT"
}
],
"homepage": "https://github.com/pariazar/perfect-express-sanitizer",
"contributors": [
{
"name": "pariazar",
"email": "[email protected]",
"url": "https://github.com/pariazar"
}
],
"repository": {
"type": "git",
"url": "https://github.com/pariazar/perfect-express-sanitizer"
},
"dependencies": {
"body-parser": "^1.20.0",
"express": "^4.18.1",
"sanitize-html": "^2.7.0",
"supertest": "^6.2.4"
},
"devDependencies": {
"chai": "^4.3.6",
"mocha": "^10.0.0"
},
"keywords": [
"sanitizer",
"express",
"sql",
"nosql",
"injection",
"sqlinjection",
"nosqlinjection",
"security",
"expressjs",
"xss",
"filter",
"text",
"input"
]
}