代码覆盖率测试

This commit is contained in:
Zongmin Lei
2014-02-19 15:45:00 +08:00
parent 131c2b379c
commit af60643087
2 changed files with 34 additions and 11 deletions

4
.gitignore vendored
View File

@@ -14,4 +14,6 @@ results
node_modules
npm-debug.log
benchmark/result*.html
benchmark/result*.html
coverage.html

View File

@@ -1,21 +1,42 @@
{
"name": "xss",
"main": "./lib/index.js",
"version": "0.1.2",
"description": "XSS攻击代码过滤 Remove XSS attack vectors from user-supplied HTML",
"author": "leizongmin <leizongmin@gmail.com> (http://ucdok.com)",
"name": "xss",
"main": "./lib/index.js",
"version": "0.1.2",
"description": "XSS攻击代码过滤 Remove XSS attack vectors from user-supplied HTML",
"author": "leizongmin <leizongmin@gmail.com> (http://ucdok.com)",
"contributors": [
{
"name": "Zongmin Lei",
"email": "leizongmin@gmail.com"
}
],
"repository": {
"type": "git",
"url": "git://github.com/leizongmin/js-xss.git"
"url": "git://github.com/leizongmin/js-xss.git"
},
"engines": {
"node": ">= 0.6.0"
"node": ">= 0.6.0"
},
"devDependencies": {
"mocha": ">= 1.2"
"mocha": "1.8.2",
"blanket": "1.1.5",
"browserify": "*",
"uglify-js": "*"
},
"scripts": {
"test": "mocha -t 5000"
"blanket": {
"pattern": "xss/lib"
},
"test": "mocha --require blanket -R html-cov > coverage.html -t 5000"
},
"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": [
@@ -30,4 +51,4 @@
"filter",
"validator"
]
}
}