@recursive-robot/react-jsx-parser 1.30.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,187 @@
1
+ {
2
+ "author": "Troy Alford",
3
+ "bugs": "https://github.com/RecursiveRobot/react-jsx-parser/issues",
4
+ "description": "A React component which can parse JSX and output rendered React Components",
5
+ "files": [
6
+ "dist/"
7
+ ],
8
+ "keywords": [
9
+ "react",
10
+ "jsx"
11
+ ],
12
+ "license": "MIT",
13
+ "main": "dist/umd/react-jsx-parser.min.js",
14
+ "types": "dist/index.d.ts",
15
+ "name": "@recursive-robot/react-jsx-parser",
16
+ "repository": "RecursiveRobot/react-jsx-parser",
17
+ "version": "1.30.0",
18
+ "dependencies": {
19
+ "@types/jsdom": "^16.2.6",
20
+ "acorn": "^8.0.5",
21
+ "acorn-jsx": "^5.3.1",
22
+ "browserslist": "^4.14.5",
23
+ "core-js": "^3.8.3"
24
+ },
25
+ "devDependencies": {
26
+ "@babel/core": "^7.12.13",
27
+ "@babel/plugin-proposal-class-properties": "^7.12.13",
28
+ "@babel/plugin-transform-typescript": "^7.12.13",
29
+ "@babel/preset-env": "^7.12.13",
30
+ "@babel/preset-react": "^7.12.13",
31
+ "@babel/preset-typescript": "^7.12.13",
32
+ "@babel/runtime-corejs3": "^7.12.13",
33
+ "@types/acorn": "^4.0.5",
34
+ "@types/enzyme": "^3.10.8",
35
+ "@types/jest": "^26.0.20",
36
+ "@typescript-eslint/eslint-plugin": "^4.14.2",
37
+ "@typescript-eslint/parser": "^4.14.2",
38
+ "babel-core": "^7.0.0-bridge.0",
39
+ "babel-jest": "^26.6.3",
40
+ "babel-loader": "^8.2.2",
41
+ "concurrently": "^5.3.0",
42
+ "cross-env": "^7.0.3",
43
+ "enzyme": "^3.11.0",
44
+ "enzyme-adapter-react-16": "^1.15.6",
45
+ "eslint": "^7.19.0",
46
+ "eslint-config-airbnb": "^18.2.1",
47
+ "eslint-plugin-import": "^2.22.1",
48
+ "eslint-plugin-jsx-a11y": "^6.4.1",
49
+ "eslint-plugin-react": "^7.22.0",
50
+ "eslint-plugin-react-hooks": "^4.2.0",
51
+ "jest": "^26.6.3",
52
+ "jest-cli": "^26.6.3",
53
+ "mkdirp": "^1.0.4",
54
+ "postinstall-postinstall": "^2.1.0",
55
+ "react": "^16",
56
+ "react-dom": "^16",
57
+ "source-map-explorer": "^2.5.2",
58
+ "terser-webpack-plugin": "^5.1.1",
59
+ "typescript": "^4.1.3",
60
+ "webpack": "^5.21.2",
61
+ "webpack-cli": "^4.5.0",
62
+ "webpack-dev-server": "^3.11.2"
63
+ },
64
+ "optionalDependencies": {
65
+ "@types/react": "^17.0.1",
66
+ "@types/react-dom": "^17.0.0"
67
+ },
68
+ "peerDependencies": {
69
+ "react": ">=17",
70
+ "react-dom": ">=17"
71
+ },
72
+ "resolutions": {
73
+ "@types/react": "^17.0.1",
74
+ "@types/react-dom": "^17.0.0",
75
+ "browserslist": "^4.14.5",
76
+ "extend": "^3.0.2",
77
+ "merge": "^1.2.1"
78
+ },
79
+ "scripts": {
80
+ "build": "npx patch-package && yarn types && cross-env NODE_ENV=production webpack",
81
+ "develop": "NODE_ENV=production concurrently -n build,ts,demo -c green,cyan,yellow \"yarn webpack --watch\" \"yarn types --watch\" \"yarn webpack serve --config ./webpack.demo.js\"",
82
+ "lint": "yarn eslint --ext .js,.ts,.tsx source/",
83
+ "postinstall": "npx patch-package",
84
+ "prebuild": "",
85
+ "sourcemap": "yarn build && source-map-explorer ./dist/es5/react-jsx-parser.min.js",
86
+ "test": "yarn lint && jest",
87
+ "types": "tsc -p ./tsconfig.json -d --emitDeclarationOnly"
88
+ },
89
+ "contributors": [
90
+ {
91
+ "name": "akucheruk-vareger",
92
+ "url": "https://github.com/akucheruk-vareger"
93
+ },
94
+ {
95
+ "name": "Alexander Sakhaev",
96
+ "url": "https://github.com/alsakhaev"
97
+ },
98
+ {
99
+ "name": "Anatolii Kucheruk",
100
+ "url": "https://github.com/anatollix"
101
+ },
102
+ {
103
+ "name": "Arunoda Susiripala",
104
+ "url": "https://github.com/arunoda"
105
+ },
106
+ {
107
+ "name": "chunminglu",
108
+ "url": "https://github.com/chunminglu"
109
+ },
110
+ {
111
+ "name": "Daniel Lee",
112
+ "url": "https://github.com/dan-lee"
113
+ },
114
+ {
115
+ "name": "Jean-Louis Dinh",
116
+ "url": "https://github.com/jldinh"
117
+ },
118
+ {
119
+ "name": "Jeff Wells",
120
+ "url": "https://github.com/jeffmwells"
121
+ },
122
+ {
123
+ "name": "Joe Duncan",
124
+ "url": "https://github.com/joeduncan"
125
+ },
126
+ {
127
+ "name": "Jonathan R Wickens",
128
+ "url": "https://github.com/jwickens"
129
+ },
130
+ {
131
+ "name": "Kevin Ho",
132
+ "url": "https://github.com/hokevins"
133
+ },
134
+ {
135
+ "name": "Kim Jeker",
136
+ "url": "https://github.com/kije"
137
+ },
138
+ {
139
+ "name": "Knut Sveidqvist",
140
+ "url": "https://github.com/knsv"
141
+ },
142
+ {
143
+ "name": "Levi Schuck",
144
+ "url": "https://github.com/LeviSchuck"
145
+ },
146
+ {
147
+ "name": "Lukas Klein",
148
+ "url": "https://github.com/lukasklein"
149
+ },
150
+ {
151
+ "name": "Mathieu Jouhet",
152
+ "url": "https://github.com/daformat"
153
+ },
154
+ {
155
+ "name": "Matthias Geisler",
156
+ "url": "https://github.com/BitPogo"
157
+ },
158
+ {
159
+ "name": "Moritz Schwörer",
160
+ "url": "https://github.com/mosch"
161
+ },
162
+ {
163
+ "name": "Pranab Gupta",
164
+ "url": "https://github.com/Pranab16"
165
+ },
166
+ {
167
+ "name": "Sandro",
168
+ "url": "https://github.com/saendu"
169
+ },
170
+ {
171
+ "name": "Tim Kindberg",
172
+ "url": "https://github.com/timkindberg"
173
+ },
174
+ {
175
+ "name": "Tim Suchanek",
176
+ "url": "https://github.com/timsuchanek"
177
+ },
178
+ {
179
+ "name": "Tomasz Kopacki",
180
+ "url": "https://github.com/tk-o"
181
+ },
182
+ {
183
+ "name": "tschicke-brown",
184
+ "url": "https://github.com/tschicke-brown"
185
+ }
186
+ ]
187
+ }