forked from jsonmaur/xss-clean
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.43 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
{
"name": "xss-clean",
"version": "0.1.1",
"description": "middleware to sanitize user input",
"author": "Jason Maurer",
"license": "MIT",
"homepage": "https://github.com/jsonmaur/xss-clean#readme",
"repository": {
"type": "git",
"url": "https://github.com/jsonmaur/xss-clean"
},
"keywords": [
"express",
"restify",
"connect",
"middleware",
"xss",
"sanitize",
"sanitization",
"input",
"clean",
"cross",
"site",
"scripting",
"security",
"protect"
],
"files": [
"lib/",
"README.md"
],
"main": "lib/index.js",
"scripts": {
"lint": "exlint src test",
"pretest": "rm -rf .nyc_output coverage && npm run lint",
"test": "cross-env NODE_ENV=testing nyc ava -a",
"posttest": "nyc report -r=lcov",
"coveralls": "cat coverage/lcov.info | coveralls",
"build": "rm -rf lib && babel src -d lib -s --no-comments",
"prepublish": "npm run build"
},
"devDependencies": {
"ava": "0.14.0",
"babel-cli": "6.5.1",
"babel-preset-es2015": "6.5.0",
"babel-register": "6.7.2",
"coveralls": "2.11.6",
"cross-env": "1.0.7",
"exlint": "0.1.0",
"nyc": "6.4.0"
},
"dependencies": {
"xss-filters": "1.2.6"
},
"babel": {
"presets": [
"es2015"
]
},
"ava": {
"require": [
"babel-register"
]
},
"nyc": {
"require": [
"babel-register"
],
"include": [
"src"
]
}
}