代码覆盖率测试
This commit is contained in:
4
.gitignore
vendored
4
.gitignore
vendored
@@ -14,4 +14,6 @@ results
|
||||
node_modules
|
||||
npm-debug.log
|
||||
|
||||
benchmark/result*.html
|
||||
benchmark/result*.html
|
||||
|
||||
coverage.html
|
||||
41
package.json
41
package.json
@@ -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"
|
||||
]
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user