isomorphic-dompurify 0.15.0 → 0.16.0

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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Isomorphic DOMPurify
2
2
  [![npm version](https://badge.fury.io/js/isomorphic-dompurify.svg)](https://badge.fury.io/js/isomorphic-dompurify)
3
- [![Build Status](https://travis-ci.org/kkomelin/isomorphic-dompurify.svg?branch=master)](https://travis-ci.org/kkomelin/isomorphic-dompurify)
3
+ [![Build Status](https://travis-ci.com/kkomelin/isomorphic-dompurify.svg?branch=master)](https://travis-ci.com/kkomelin/isomorphic-dompurify)
4
4
  [![Bundlephobia Minified Size](https://badgen.net/bundlephobia/min/isomorphic-dompurify)](https://bundlephobia.com/result?p=isomorphic-dompurify)
5
5
 
6
6
  The library makes it possible to seamlessly use [DOMPurify](https://github.com/cure53/DOMPurify) on server and client in the same way.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "isomorphic-dompurify",
3
- "version": "0.15.0",
3
+ "version": "0.16.0",
4
4
  "description": "Makes it possible to use DOMPurify on server and client in the same way.",
5
5
  "keywords": [
6
6
  "dompurify",
@@ -29,13 +29,13 @@
29
29
  "browser": "browser.js",
30
30
  "main": "index.js",
31
31
  "dependencies": {
32
- "@types/dompurify": "^2.2.3",
33
- "dompurify": "^2.3.0",
34
- "jsdom": "^16.6.0"
32
+ "@types/dompurify": "^2.3.1",
33
+ "dompurify": "^2.3.3",
34
+ "jsdom": "^18.0.0"
35
35
  },
36
36
  "types": "index.d.ts",
37
37
  "devDependencies": {
38
- "jest": "^27.0.6",
39
- "terser": "^5.7.1"
38
+ "jest": "^27.3.1",
39
+ "terser": "^5.9.0"
40
40
  }
41
41
  }