forked from gmfx/express-sanitizer
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1008 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 1008 Bytes
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
{
"name": "express-sanitized",
"description": "Express middleware for the sanitizer module using Caja's HTML Sanitizer.",
"version": "1.0.0",
"author": "Patrick Hogan <patrick@callinize.com>",
"homepage": "https://github.com/askhogan/express-sanitized",
"bugs": {
"email": "patrick@callinize.com",
"url": "https://github.com/askhogan/express-sanitized/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/askhogan/express-sanitized.git"
},
"license": "MIT",
"main": "./index.js",
"scripts": {
"test": "mocha"
},
"engines": {
"node": "*"
},
"dependencies": {
"sanitizer": "0.1.3",
"underscore": "1.9.1"
},
"keywords": [
"express",
"sanitize",
"sanitization",
"xss"
],
"devDependencies": {
"assert": "^2.0.0",
"body-parser": "^1.17.2",
"connect": "^3.6.2",
"expect": "^24.8.0",
"express": "^4.17.1",
"mocha": "^6.2.0",
"node-mocks-http": "^1.7.6",
"supertest": "^4.0.2"
}
}