-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
43 lines (43 loc) · 953 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
37
38
39
40
41
42
43
{
"name": "resanitize",
"author": "Dan MacTough <danmactough@gmail.com>",
"description": "Regular expression-based HTML sanitizer and ad remover, geared toward RSS feed descriptions",
"version": "0.3.0",
"keywords": [
"sanitize",
"html",
"regexp",
"security"
],
"homepage": "http://github.com/danmactough/node-resanitize",
"repository": {
"type": "git",
"url": "git://github.com/danmactough/node-resanitize.git"
},
"bugs": {
"url": "http://github.com/danmactough/node-resanitize/issues"
},
"main": "./resanitize.js",
"engines": {
"node": ">= 0.6.0"
},
"dependencies": {
"validator": "~1.5.1"
},
"devDependencies": {
"mocha": "~1.13.0"
},
"licenses": [
{
"type": "MIT",
"url": "https://raw.github.com/danmactough/node-resanitize/master/LICENSE"
}
],
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha"
},
"license": "MIT"
}