This repository has been archived by the owner on Jul 15, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 137
/
package.json
77 lines (77 loc) · 1.86 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "xss-filters",
"version": "1.2.7",
"licenses": [
{
"type": "BSD",
"url": "https://github.com/yahoo/xss-filters/blob/master/LICENSE"
}
],
"description": "Secure XSS Filters - Just sufficient output filtering to prevent XSS!",
"author": "Adonis Fung <adon@yahoo-inc.com>, Nera Liu <neraliu@gmail.com>, and Albert Yu <yukinying@gmail.com>",
"contributors": [
{
"name": "Adonis Fung",
"email": "adon@yahoo-inc.com"
},
{
"name": "Nera Liu",
"email": "neraliu@gmail.com"
},
{
"name": "Albert Yu",
"email": "yukinying@gmail.com"
}
],
"main": "src/xss-filters.js",
"scripts": {
"test": "grunt test",
"hint": "grunt jshint",
"docs": "grunt docs",
"clean": "grunt clean",
"build": "grunt"
},
"keywords": [
"xss",
"output filter",
"sanitize",
"sanitise",
"escape",
"encode",
"filter",
"context-aware",
"context-sensitive",
"security",
"yahoo"
],
"devDependencies": {
"expect.js": "^0.3.1",
"grunt": "^1.0.1",
"grunt-browserify": "^5.0.0",
"grunt-cli": "^1.2.0",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-jshint": "^1.0.0",
"grunt-contrib-uglify": "^2.0.0",
"grunt-jsdoc": "^2.1.0",
"grunt-karma": "^2.0.0",
"grunt-mocha-istanbul": "^5.0.2",
"ink-docstrap": "^1.3.0",
"istanbul": "^0.4.5",
"karma": "^1.3.0",
"karma-chrome-launcher": "^2.0.0",
"karma-firefox-launcher": "^1.0.0",
"karma-ie-launcher": "^1.0.0",
"karma-mocha": "^1.1.1",
"karma-sauce-launcher": "^1.0.0",
"mocha": "^3.0.2"
},
"bugs": {
"url": "https://github.com/yahoo/xss-filters/issues"
},
"homepage": "https://github.com/yahoo/xss-filters",
"repository": {
"type": "git",
"url": "https://github.com/yahoo/xss-filters.git"
}
}