forked from leizongmin/js-css-filter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.21 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
{
"name": "cssfilter",
"version": "0.0.11",
"description": "Sanitize untrusted CSS with a configuration specified by a Whitelist. 根据白名单过滤CSS",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"test": "istanbul cover _mocha --report lcovonly -- -t 5000 -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"build": "./build",
"prepublish": "npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/leizongmin/js-css-filter.git"
},
"keywords": [
"sanitization",
"xss",
"sanitize",
"sanitisation",
"input",
"security",
"escape",
"encode",
"filter",
"validator",
"html",
"css",
"injection",
"whitelist"
],
"author": "Zongmin Lei <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/leizongmin/js-css-filter/issues"
},
"homepage": "https://github.com/leizongmin/js-css-filter",
"devDependencies": {
"blanket": "^1.1.6",
"browserify": "^13.1.1",
"coveralls": "^2.11.14",
"istanbul": "^0.4.5",
"mocha": "^3.1.2",
"should": "^11.1.1",
"uglify-js": "^2.7.4"
}
}