dompurify 2.3.5 → 2.3.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +10 -7
- package/dist/purify.cjs.js +435 -267
- package/dist/purify.cjs.js.map +1 -1
- package/dist/purify.es.js +436 -268
- package/dist/purify.es.js.map +1 -1
- package/dist/purify.js +437 -269
- package/dist/purify.js.map +1 -1
- package/dist/purify.min.js +2 -2
- package/dist/purify.min.js.map +1 -1
- package/package.json +18 -24
package/package.json
CHANGED
|
@@ -61,48 +61,42 @@
|
|
|
61
61
|
]
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
|
-
"@babel/
|
|
65
|
-
"babel-
|
|
66
|
-
"babel
|
|
64
|
+
"@babel/core": "^7.17.8",
|
|
65
|
+
"@babel/preset-env": "^7.16.11",
|
|
66
|
+
"@rollup/plugin-babel": "^5.3.1",
|
|
67
|
+
"@rollup/plugin-commonjs": "^21.0.3",
|
|
68
|
+
"@rollup/plugin-node-resolve": "^13.1.3",
|
|
69
|
+
"@rollup/plugin-replace": "^4.0.0",
|
|
67
70
|
"cross-env": "^7.0.3",
|
|
68
|
-
"eslint-config-prettier": "^8.
|
|
69
|
-
"eslint-plugin-prettier": "^
|
|
70
|
-
"he": "^1.2.0",
|
|
71
|
+
"eslint-config-prettier": "^8.5.0",
|
|
72
|
+
"eslint-plugin-prettier": "^4.0.0",
|
|
71
73
|
"jquery": "^3.6.0",
|
|
72
|
-
"jsdom": "
|
|
73
|
-
"karma": "^
|
|
74
|
+
"jsdom": "^19.0.0",
|
|
75
|
+
"karma": "^6.3.17",
|
|
74
76
|
"karma-browserstack-launcher": "^1.5.1",
|
|
75
77
|
"karma-chrome-launcher": "^3.1.0",
|
|
76
78
|
"karma-firefox-launcher": "^2.1.2",
|
|
77
|
-
"karma-
|
|
78
|
-
"karma-
|
|
79
|
-
"karma-json-fixtures-preprocessor": "0.0.6",
|
|
80
|
-
"karma-qunit": "^1.0.0",
|
|
81
|
-
"karma-rollup-preprocessor": "^5.0.2",
|
|
79
|
+
"karma-qunit": "^4.1.2",
|
|
80
|
+
"karma-rollup-preprocessor": "^7.0.8",
|
|
82
81
|
"lodash.sample": "^4.2.1",
|
|
83
|
-
"minimist": "^1.2.
|
|
82
|
+
"minimist": "^1.2.6",
|
|
84
83
|
"npm-run-all": "^4.1.5",
|
|
85
84
|
"pre-commit": "^1.2.2",
|
|
86
|
-
"prettier": "^2.
|
|
87
|
-
"qunit
|
|
85
|
+
"prettier": "^2.5.1",
|
|
86
|
+
"qunit": "^2.4.1",
|
|
88
87
|
"qunit-tap": "^1.5.0",
|
|
89
|
-
"qunitjs": "^1.23.1",
|
|
90
88
|
"rimraf": "^3.0.2",
|
|
91
|
-
"rollup": "^
|
|
92
|
-
"rollup-plugin-babel": "^3.0.3",
|
|
93
|
-
"rollup-plugin-commonjs": "^8.4.1",
|
|
89
|
+
"rollup": "^2.70.1",
|
|
94
90
|
"rollup-plugin-includepaths": "^0.2.3",
|
|
95
|
-
"rollup-plugin-node-resolve": "^3.4.0",
|
|
96
|
-
"rollup-plugin-replace": "^2.2.0",
|
|
97
91
|
"rollup-plugin-terser": "^7.0.2",
|
|
98
|
-
"xo": "^0.
|
|
92
|
+
"xo": "^0.48.0"
|
|
99
93
|
},
|
|
100
94
|
"resolutions": {
|
|
101
95
|
"natives": "1.1.6"
|
|
102
96
|
},
|
|
103
97
|
"name": "dompurify",
|
|
104
98
|
"description": "DOMPurify is a DOM-only, super-fast, uber-tolerant XSS sanitizer for HTML, MathML and SVG. It's written in JavaScript and works in all modern browsers (Safari, Opera (15+), Internet Explorer (10+), Firefox and Chrome - as well as almost anything else using Blink or WebKit). DOMPurify is written by security people who have vast background in web attacks and XSS. Fear not.",
|
|
105
|
-
"version": "2.3.
|
|
99
|
+
"version": "2.3.8",
|
|
106
100
|
"directories": {
|
|
107
101
|
"test": "test"
|
|
108
102
|
},
|