Files
js-xss/package.json

65 lines
1.3 KiB
JSON
Raw Normal View History

2012-09-18 23:31:45 +08:00
{
2014-02-19 15:45:00 +08:00
"name": "xss",
"main": "./lib/index.js",
2015-08-18 18:34:30 +08:00
"version": "0.2.7",
2014-02-20 10:50:44 +08:00
"description": "Sanitize untrusted HTML (to prevent XSS) with a configuration specified by a Whitelist. 根据白名单过滤HTML(防止XSS攻击)",
2014-02-19 15:45:00 +08:00
"author": "leizongmin <leizongmin@gmail.com> (http://ucdok.com)",
"contributors": [
{
"name": "Zongmin Lei",
"email": "leizongmin@gmail.com"
}
],
2012-09-18 23:31:45 +08:00
"repository": {
"type": "git",
2014-02-19 15:45:00 +08:00
"url": "git://github.com/leizongmin/js-xss.git"
2012-09-18 23:31:45 +08:00
},
"engines": {
2015-11-18 10:55:12 +08:00
"node": ">= 0.10"
2012-09-18 23:31:45 +08:00
},
2014-03-03 18:35:54 +08:00
"dependencies": {
2015-11-18 10:28:37 +08:00
"commander": "^2.9.0",
2015-05-24 23:35:42 +08:00
"cssfilter": "0.0.5"
2014-03-03 18:35:54 +08:00
},
2012-09-18 23:31:45 +08:00
"devDependencies": {
2015-11-18 10:28:37 +08:00
"blanket": "^1.2.0",
"browserify": "^12.0.1",
"mocha": "^2.3.4",
"uglify-js": "^2.6.1"
2015-05-06 11:09:32 +08:00
},
2014-03-03 18:35:54 +08:00
"bin": {
"xss": "./bin/xss"
},
2012-09-18 23:31:45 +08:00
"scripts": {
2014-02-19 15:45:00 +08:00
"blanket": {
"pattern": "xss/lib"
},
2015-11-18 10:28:37 +08:00
"test": "./node_modules/mocha/bin/mocha -t 5000"
2014-02-19 15:45:00 +08:00
},
"licenses": [
{
"type": "MIT",
"url": "https://raw.github.com/leizongmin/js-xss/master/MIT-License"
}
],
"bugs": {
"url": "https://github.com/leizongmin/js-xss/issues"
},
"homepage": "https://github.com/leizongmin/js-xss",
"keywords": [
"sanitization",
"xss",
"sanitize",
"sanitisation",
"input",
"security",
"escape",
"encode",
"filter",
2014-02-20 10:22:51 +08:00
"validator",
"html",
2014-02-20 10:50:44 +08:00
"injection",
"whitelist"
]
2015-04-13 13:24:31 +08:00
}