forked from YahooArchive/html-purify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.3 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "html-purify",
"version": "1.1.0",
"licenses": [
{
"type": "BSD",
"url": "https://github.com/yahoo/html-purify/blob/master/LICENSE"
}
],
"author": "Aditya Mahendrakar",
"contributors": [
"Aditya Mahendrakar <[email protected]>",
"Nera Liu <[email protected]>",
"Adonis Fung <[email protected]>",
"Albert Yu <[email protected]>"
],
"description": "HTML5 Purifier",
"repository": {
"type": "git",
"url": "[email protected]:yahoo/html-purify.git"
},
"keywords": [
"xss",
"html5"
],
"scripts": {
"hint": "grunt jshint",
"build": "npm install; grunt",
"clean": "grunt clean",
"test": "grunt test"
},
"dependencies": {
"context-parser": "^2.0.1",
"xss-filters": "^1.2.6",
"css-js": "1.0.3"
},
"devDependencies": {
"expect.js": "^0.3.1",
"grunt": "^0.4.5",
"grunt-browserify": "^3.8.0",
"grunt-cli": "0.1.*",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-jshint": "^0.11.0",
"grunt-contrib-uglify": "^0.9.1",
"grunt-mocha-istanbul": "^2.3.0"
},
"main": "./src/html-purify.js",
"bugs": {
"url": "https://github.com/yahoo/html-purify/issues"
},
"homepage": "https://github.com/yahoo/html-purify",
"directories": {
"test": "tests"
},
"license": "BSD"
}