forked from fingerfoodstudios/express-sanitize-escape
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.07 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
{
"name": "express-sanitize-escape",
"description": "Express middleware for the sanitizer module using Caja's HTML Sanitizer and HTML escape using htmlencode.",
"version": "1.1.0",
"author": "Justin Hamade <justin@fingerfoodstudios.com>",
"homepage": "https://github.com/fingerfoodstudios/express-sanitize-esacpe",
"bugs": {
"email": "justin@fingerfoodstudios.com",
"url": "https://github.com/fingerfoodstudios/express-sanitize-escape/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/fingerfoodstudios/express-sanitize-escape.git"
},
"license": "MIT",
"main": "./index.js",
"scripts": {
"test": "node node_modules/mocha/bin/mocha"
},
"engines": {
"node": "*"
},
"dependencies": {
"htmlencode": "0.0.4",
"lodash": "^4.17.11",
"sanitizer": "0.1.3"
},
"keywords": [
"express",
"sanitize",
"sanitization",
"xss"
],
"devDependencies": {
"body-parser": "^1.15.0",
"chai": "^3.5.0",
"connect": "^3.1.1",
"express": "^4.13.4",
"mocha": "^2.4.5",
"supertest": "^1.2.0"
}
}