forked from apostrophecms/sanitize-html
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 995 Bytes
/
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
{
"name": "sanitize-html",
"version": "1.14.1",
"description": "Clean up user-submitted HTML, preserving whitelisted elements and whitelisted attributes on a per-element basis",
"main": "index.js",
"scripts": {
"build": "browserify index.js > dist/sanitize-html.js --standalone 'sanitizeHtml'",
"minify": "npm run build && uglifyjs dist/sanitize-html.js > dist/sanitize-html.min.js",
"test": "mocha test/test.js test/stream_test.js",
"prebuild": "npm run test && rm -rf dist && mkdir dist"
},
"repository": {
"type": "git",
"url": "https://github.com/punkave/sanitize-html.git"
},
"keywords": [
"html",
"parser",
"sanitizer",
"html",
"sanitizer",
"apostrophe"
],
"author": "P'unk Avenue LLC",
"license": "MIT",
"dependencies": {
"htmlparser2": "^3.9.0",
"regexp-quote": "0.0.0",
"xtend": "^4.0.0"
},
"devDependencies": {
"browserify": "^13.0.1",
"mocha": "^2.5.3",
"uglify-js": "^2.6.2"
}
}