-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 754 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 754 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
{
"name": "safe-html",
"version": "1.0.0",
"description": "A whitelist-based HTML santizier based on the HTML5-conformant parse5 parser",
"main": "safe-html.js",
"scripts": {
"test": "mocha tests.js"
},
"repository": {
"type": "git",
"url": "https://github.com/almost/safe-html.git"
},
"keywords": [
"html",
"parser",
"santitizer",
"html5"
],
"author": "Thomas Parslow <tom@almostobsolete.net>",
"license": "MIT",
"bugs": {
"url": "https://github.com/almost/safe-html.git/issues"
},
"homepage": "https://github.com/almost/safe-html.git",
"dependencies": {
"parse5": "^1.4.1",
"underscore": "^1.8.3"
},
"devDependencies": {
"expect.js": "^0.3.1",
"mocha": "^2.2.1"
}
}