@depup/react-draft-wysiwyg 1.15.0-depup.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.
package/package.json ADDED
@@ -0,0 +1,112 @@
1
+ {
2
+ "name": "@depup/react-draft-wysiwyg",
3
+ "version": "1.15.0-depup.0",
4
+ "description": "A wysiwyg on top of DraftJS. (with updated dependencies)",
5
+ "main": "dist/react-draft-wysiwyg.js",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/jpuri/react-draft-wysiwyg.git"
9
+ },
10
+ "author": "Jyoti Puri",
11
+ "devDependencies": {
12
+ "@babel/core": "^7.7.4",
13
+ "@babel/preset-env": "^7.7.4",
14
+ "@babel/preset-react": "^7.7.4",
15
+ "@babel/register": "^7.7.4",
16
+ "@storybook/react": "^5.2.8",
17
+ "autoprefixer": "^9.7.3",
18
+ "babel-eslint": "^10.0.3",
19
+ "babel-loader": "^8.0.6",
20
+ "babel-plugin-transform-flow-strip-types": "^6.22.0",
21
+ "chai": "^4.2.0",
22
+ "cross-env": "^6.0.3",
23
+ "css-loader": "^3.2.1",
24
+ "draft-js": "^0.11.2",
25
+ "draftjs-to-html": "^0.9.0",
26
+ "draftjs-to-markdown": "^0.6.0",
27
+ "embed-video": "^2.0.4",
28
+ "enzyme": "^3.10.0",
29
+ "enzyme-adapter-react-16": "^1.15.1",
30
+ "eslint": "^6.7.2",
31
+ "eslint-config-airbnb": "^18.0.1",
32
+ "eslint-plugin-import": "^2.18.2",
33
+ "eslint-plugin-jsx-a11y": "^6.2.3",
34
+ "eslint-plugin-mocha": "^6.2.2",
35
+ "eslint-plugin-react": "^7.17.0",
36
+ "file-loader": "^5.0.2",
37
+ "flow-bin": "^0.113.0",
38
+ "immutable": "^4.0.0-rc.12",
39
+ "jsdom": "^15.2.1",
40
+ "mini-css-extract-plugin": "^0.8.0",
41
+ "mocha": "^6.2.2",
42
+ "postcss-loader": "^3.0.0",
43
+ "precss": "^4.0.0",
44
+ "react": "^16.12.0",
45
+ "react-addons-test-utils": "^15.6.2",
46
+ "react-dom": "^16.12.0",
47
+ "react-test-renderer": "^16.12.0",
48
+ "rimraf": "^3.0.0",
49
+ "sinon": "^7.5.0",
50
+ "style-loader": "^1.0.1",
51
+ "uglifyjs-webpack-plugin": "^2.2.0",
52
+ "url-loader": "^3.0.0",
53
+ "webpack": "^4.41.2",
54
+ "webpack-bundle-analyzer": "^3.6.0",
55
+ "webpack-cli": "^3.3.10"
56
+ },
57
+ "dependencies": {
58
+ "classnames": "^2.5.1",
59
+ "draftjs-utils": "^0.10.2",
60
+ "html-to-draftjs": "^1.5.0",
61
+ "linkify-it": "^5.0.0",
62
+ "prop-types": "^15.8.1"
63
+ },
64
+ "peerDependencies": {
65
+ "draft-js": "^0.10.x || ^0.11.x",
66
+ "immutable": "3.x.x || 4.x.x",
67
+ "react": "0.13.x || 0.14.x || ^15.0.0-0 || 15.x.x || ^16.0.0-0 || ^16.x.x || ^17.x.x || ^18.x.x",
68
+ "react-dom": "0.13.x || 0.14.x || ^15.0.0-0 || 15.x.x || ^16.0.0-0 || ^16.x.x || ^17.x.x || ^18.x.x"
69
+ },
70
+ "scripts": {
71
+ "clean": "rimraf dist",
72
+ "build:webpack": "cross-env NODE_ENV=production webpack --mode production --config config/webpack.config.js",
73
+ "build": "npm run clean && npm run build:webpack",
74
+ "test": "cross-env BABEL_ENV=test mocha --require config/test-compiler.js config/test-setup.js src/**/*Test.js",
75
+ "lint": "eslint src",
76
+ "lintdocs": "eslint docs/src",
77
+ "flow": "flow; test $? -eq 0 -o $? -eq 2",
78
+ "check": "npm run lint && npm run flow",
79
+ "storybook": "start-storybook -p 6006",
80
+ "build-storybook": "build-storybook"
81
+ },
82
+ "license": "MIT",
83
+ "keywords": [
84
+ "react-draft-wysiwyg",
85
+ "depup",
86
+ "updated-dependencies",
87
+ "security",
88
+ "latest",
89
+ "patched"
90
+ ],
91
+ "depup": {
92
+ "changes": {
93
+ "classnames": {
94
+ "from": "^2.2.6",
95
+ "to": "^2.5.1"
96
+ },
97
+ "linkify-it": {
98
+ "from": "^2.2.0",
99
+ "to": "^5.0.0"
100
+ },
101
+ "prop-types": {
102
+ "from": "^15.7.2",
103
+ "to": "^15.8.1"
104
+ }
105
+ },
106
+ "depsUpdated": 3,
107
+ "originalPackage": "react-draft-wysiwyg",
108
+ "originalVersion": "1.15.0",
109
+ "processedAt": "2026-03-18T22:42:28.292Z",
110
+ "smokeTest": "failed"
111
+ }
112
+ }