isomorphic-dompurify
Version:
Makes it possible to use DOMPurify on server and client in the same way.
43 lines (42 loc) • 913 B
JSON
{
"name": "isomorphic-dompurify",
"version": "0.23.0",
"description": "Makes it possible to use DOMPurify on server and client in the same way.",
"keywords": [
"security",
"dompurify",
"xss-filter",
"xss",
"isomorphic",
"wrapper",
"universal",
"ssr",
"html-escape"
],
"scripts": {
"test": "jest",
"build": "terser src/index.js --compress --mangle --module -o index.js"
},
"bugs": {
"url": "https://github.com/kkomelin/isomorphic-dompurify/issues"
},
"files": [
"index.js",
"index.d.ts",
"browser.js"
],
"license": "MIT",
"repository": "kkomelin/isomorphic-dompurify",
"browser": "browser.js",
"main": "index.js",
"dependencies": {
"@types/dompurify": "^2.3.4",
"dompurify": "^2.4.0",
"jsdom": "^20.0.1"
},
"types": "index.d.ts",
"devDependencies": {
"jest": "^29.1.2",
"terser": "^5.15.1"
}
}