This repository has been archived by the owner on Sep 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
65 lines (65 loc) · 1.45 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
{
"name": "DOMSanitizer",
"description": "JavaScript client side WAF module for sanitizing",
"version": "0.1.0",
"homepage": "http://www.github.com/ptresearch/DOMSanitizer",
"author": {
"name": "Positive Technologies Application Firewall Research Team",
"email": "[email protected]"
},
"license": "Apache-2.0",
"maintainers": [
{
"name": "Denis Kolegov",
"email": "[email protected]"
},
{
"name": "Arseny Reutov",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/ptresearch/DOMSanitizer.git"
},
"bugs": {
"url": "https://github.com/ptresearch/DOMSanitizer/issues"
},
"main": "dist/sanitizer.js",
"scripts": {
"lint": "eslint src/*.js test/**/*.js",
"build": "grunt build",
"test": "grunt test"
},
"pre-commit": [
"lint"
],
"devDependencies": {
"eslint": "^3.9.0",
"grunt": "~0.4.5",
"grunt-casper": "^0.4.2",
"grunt-cli": "^0.1.13",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-connect": "^0.11.2",
"grunt-eslint": "^18.1.0",
"grunt-html-build": "^0.5.2",
"grunt-jsvalidate": "^0.2.2",
"path": "^0.12.7",
"pre-commit": "^1.1.3"
},
"keywords": [
"waf",
"detection",
"xss",
"security",
"sanitizer",
"sanitize",
"filter",
"validation"
],
"dependencies": {
"acorn": "3.3.0",
"dompurify": "0.8.2"
}
}