dompurify 3.3.1 → 3.3.3

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/package.json CHANGED
@@ -7,7 +7,7 @@
7
7
  "commit-amend-build": "scripts/commit-amend-build.sh",
8
8
  "prebuild": "rimraf dist/**",
9
9
  "dev": "cross-env NODE_ENV=development BABEL_ENV=rollup rollup -w -c -o dist/purify.js",
10
- "build": "run-s build:types build:rollup build:fix-types build:cleanup",
10
+ "build": "npm run build:types && npm run build:rollup && npm run build:fix-types && npm run build:cleanup",
11
11
  "build:types": "tsc --outDir dist/types --declaration --emitDeclarationOnly",
12
12
  "build:rollup": "rollup -c",
13
13
  "build:fix-types": "node ./scripts/fix-types.js",
@@ -97,6 +97,13 @@
97
97
  "VERSION"
98
98
  ]
99
99
  },
100
+ "devEngines": {
101
+ "runtime": {
102
+ "name": "node",
103
+ "version": ">=20",
104
+ "onFail": "warn"
105
+ }
106
+ },
100
107
  "optionalDependencies": {
101
108
  "@types/trusted-types": "^2.0.7"
102
109
  },
@@ -120,15 +127,13 @@
120
127
  "karma-firefox-launcher": "^2.1.2",
121
128
  "karma-qunit": "^4.1.2",
122
129
  "karma-rollup-preprocessor": "^7.0.8",
123
- "lodash.sample": "^4.2.1",
124
130
  "minimist": "^1.2.6",
125
- "npm-run-all": "^4.1.5",
126
131
  "pre-commit": "^1.2.2",
127
132
  "prettier": "^2.5.1",
128
133
  "qunit": "^2.4.1",
129
134
  "qunit-tap": "^1.5.0",
130
135
  "rimraf": "^3.0.2",
131
- "rollup": "^3.29.5",
136
+ "rollup": "^3.30.0",
132
137
  "rollup-plugin-dts": "^6.1.1",
133
138
  "rollup-plugin-includepaths": "^0.2.4",
134
139
  "rollup-plugin-typescript2": "^0.36.0",
@@ -141,7 +146,7 @@
141
146
  },
142
147
  "name": "dompurify",
143
148
  "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.",
144
- "version": "3.3.1",
149
+ "version": "3.3.3",
145
150
  "directories": {
146
151
  "test": "test"
147
152
  },