@phelian/react-body-highlighter 2.0.5
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/LICENSE +21 -0
- package/README.md +119 -0
- package/dist/assets/index.d.ts +10 -0
- package/dist/component/Model.d.ts +23 -0
- package/dist/component/metadata.d.ts +60 -0
- package/dist/constants/index.d.ts +6 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +8 -0
- package/dist/react-body-highlighter.cjs.development.js +442 -0
- package/dist/react-body-highlighter.cjs.development.js.map +1 -0
- package/dist/react-body-highlighter.cjs.production.min.js +2 -0
- package/dist/react-body-highlighter.cjs.production.min.js.map +1 -0
- package/dist/react-body-highlighter.esm.js +436 -0
- package/dist/react-body-highlighter.esm.js.map +1 -0
- package/dist/utils/index.d.ts +10 -0
- package/package.json +706 -0
- package/src/assets/index.ts +424 -0
- package/src/component/Model.tsx +72 -0
- package/src/component/metadata.ts +69 -0
- package/src/constants/index.ts +32 -0
- package/src/index.ts +2 -0
- package/src/utils/index.ts +42 -0
package/package.json
ADDED
|
@@ -0,0 +1,706 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "2.0.5",
|
|
3
|
+
"license": "MIT",
|
|
4
|
+
"main": "dist/index.js",
|
|
5
|
+
"typings": "dist/index.d.ts",
|
|
6
|
+
"files": [
|
|
7
|
+
"dist",
|
|
8
|
+
"src"
|
|
9
|
+
],
|
|
10
|
+
"engines": {
|
|
11
|
+
"node": ">=10"
|
|
12
|
+
},
|
|
13
|
+
"scripts": {
|
|
14
|
+
"start": "tsdx watch",
|
|
15
|
+
"build": "tsdx build",
|
|
16
|
+
"test": "tsdx test --passWithNoTests",
|
|
17
|
+
"lint": "tsdx lint --fix",
|
|
18
|
+
"prepare": "tsdx build"
|
|
19
|
+
},
|
|
20
|
+
"peerDependencies": {
|
|
21
|
+
"react": ">=16"
|
|
22
|
+
},
|
|
23
|
+
"husky": {
|
|
24
|
+
"hooks": {
|
|
25
|
+
"pre-commit": "tsdx lint"
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
"prettier": {
|
|
29
|
+
"printWidth": 120,
|
|
30
|
+
"semi": true,
|
|
31
|
+
"singleQuote": true,
|
|
32
|
+
"trailingComma": "es5"
|
|
33
|
+
},
|
|
34
|
+
"name": "@phelian/react-body-highlighter",
|
|
35
|
+
"author": "phelian",
|
|
36
|
+
"description": "React.js component for highlighting muscles on a body model with male and female variants",
|
|
37
|
+
"repository": {
|
|
38
|
+
"type": "git",
|
|
39
|
+
"url": "git+https://github.com/phelian/react-body-highlighter.git"
|
|
40
|
+
},
|
|
41
|
+
"homepage": "https://github.com/phelian/react-body-highlighter",
|
|
42
|
+
"keywords": [
|
|
43
|
+
"react",
|
|
44
|
+
"muscle",
|
|
45
|
+
"muscles",
|
|
46
|
+
"body",
|
|
47
|
+
"model",
|
|
48
|
+
"highlighter",
|
|
49
|
+
"highlight",
|
|
50
|
+
"color",
|
|
51
|
+
"svg",
|
|
52
|
+
"fitness",
|
|
53
|
+
"exercise",
|
|
54
|
+
"workout"
|
|
55
|
+
],
|
|
56
|
+
"module": "dist/react-body-highlighter.esm.js",
|
|
57
|
+
"devDependencies": {
|
|
58
|
+
"@types/react": "^16.14.20",
|
|
59
|
+
"@types/react-dom": "^16.9.14",
|
|
60
|
+
"husky": "^4.3.8",
|
|
61
|
+
"react": "^16.14.0",
|
|
62
|
+
"react-dom": "^16.14.0",
|
|
63
|
+
"tsdx": "^0.14.1",
|
|
64
|
+
"tslib": "^2.3.1",
|
|
65
|
+
"typescript": "^3.9.10"
|
|
66
|
+
},
|
|
67
|
+
"directories": {
|
|
68
|
+
"example": "example",
|
|
69
|
+
"test": "test"
|
|
70
|
+
},
|
|
71
|
+
"dependencies": {
|
|
72
|
+
"abab": "^2.0.6",
|
|
73
|
+
"acorn": "^7.4.1",
|
|
74
|
+
"acorn-globals": "^4.3.4",
|
|
75
|
+
"acorn-jsx": "^5.3.2",
|
|
76
|
+
"acorn-walk": "^6.2.0",
|
|
77
|
+
"ajv": "^6.12.6",
|
|
78
|
+
"ansi-colors": "^4.1.3",
|
|
79
|
+
"ansi-escapes": "^4.3.2",
|
|
80
|
+
"ansi-regex": "^5.0.1",
|
|
81
|
+
"ansi-styles": "^4.3.0",
|
|
82
|
+
"anymatch": "^3.1.3",
|
|
83
|
+
"argparse": "^1.0.10",
|
|
84
|
+
"aria-query": "^5.3.2",
|
|
85
|
+
"arr-diff": "^4.0.0",
|
|
86
|
+
"arr-flatten": "^1.1.0",
|
|
87
|
+
"arr-union": "^3.1.0",
|
|
88
|
+
"array-buffer-byte-length": "^1.0.2",
|
|
89
|
+
"array-equal": "^1.0.2",
|
|
90
|
+
"array-includes": "^3.1.9",
|
|
91
|
+
"array-unique": "^0.3.2",
|
|
92
|
+
"array.prototype.findlast": "^1.2.5",
|
|
93
|
+
"array.prototype.findlastindex": "^1.2.6",
|
|
94
|
+
"array.prototype.flat": "^1.3.3",
|
|
95
|
+
"array.prototype.flatmap": "^1.3.3",
|
|
96
|
+
"array.prototype.tosorted": "^1.1.4",
|
|
97
|
+
"arraybuffer.prototype.slice": "^1.0.4",
|
|
98
|
+
"asn1": "^0.2.6",
|
|
99
|
+
"assert-plus": "^1.0.0",
|
|
100
|
+
"assign-symbols": "^1.0.0",
|
|
101
|
+
"ast-types-flow": "^0.0.8",
|
|
102
|
+
"astral-regex": "^1.0.0",
|
|
103
|
+
"async-function": "^1.0.0",
|
|
104
|
+
"asynckit": "^0.4.0",
|
|
105
|
+
"asyncro": "^3.0.0",
|
|
106
|
+
"at-least-node": "^1.0.0",
|
|
107
|
+
"atob": "^2.1.2",
|
|
108
|
+
"available-typed-arrays": "^1.0.7",
|
|
109
|
+
"aws-sign2": "^0.7.0",
|
|
110
|
+
"aws4": "^1.13.2",
|
|
111
|
+
"axe-core": "^4.11.1",
|
|
112
|
+
"axobject-query": "^4.1.0",
|
|
113
|
+
"babel-eslint": "^10.1.0",
|
|
114
|
+
"babel-jest": "^25.5.1",
|
|
115
|
+
"babel-plugin-annotate-pure-calls": "^0.4.0",
|
|
116
|
+
"babel-plugin-dev-expression": "^0.2.3",
|
|
117
|
+
"babel-plugin-istanbul": "^6.1.1",
|
|
118
|
+
"babel-plugin-jest-hoist": "^25.5.0",
|
|
119
|
+
"babel-plugin-macros": "^2.8.0",
|
|
120
|
+
"babel-plugin-polyfill-corejs2": "^0.4.14",
|
|
121
|
+
"babel-plugin-polyfill-corejs3": "^0.13.0",
|
|
122
|
+
"babel-plugin-polyfill-regenerator": "^0.0.4",
|
|
123
|
+
"babel-plugin-transform-rename-import": "^2.3.0",
|
|
124
|
+
"babel-preset-current-node-syntax": "^0.1.4",
|
|
125
|
+
"babel-preset-jest": "^25.5.0",
|
|
126
|
+
"balanced-match": "^1.0.2",
|
|
127
|
+
"base": "^0.11.2",
|
|
128
|
+
"baseline-browser-mapping": "^2.9.15",
|
|
129
|
+
"bcrypt-pbkdf": "^1.0.2",
|
|
130
|
+
"brace-expansion": "^1.1.12",
|
|
131
|
+
"braces": "^3.0.3",
|
|
132
|
+
"browser-process-hrtime": "^1.0.0",
|
|
133
|
+
"browser-resolve": "^1.11.3",
|
|
134
|
+
"browserslist": "^4.28.1",
|
|
135
|
+
"bs-logger": "^0.2.6",
|
|
136
|
+
"bser": "^2.1.1",
|
|
137
|
+
"buffer-from": "^1.1.2",
|
|
138
|
+
"builtin-modules": "^3.3.0",
|
|
139
|
+
"cache-base": "^1.0.1",
|
|
140
|
+
"call-bind": "^1.0.8",
|
|
141
|
+
"call-bind-apply-helpers": "^1.0.2",
|
|
142
|
+
"call-bound": "^1.0.4",
|
|
143
|
+
"callsites": "^3.1.0",
|
|
144
|
+
"camelcase": "^5.3.1",
|
|
145
|
+
"caniuse-lite": "^1.0.30001765",
|
|
146
|
+
"capture-exit": "^2.0.0",
|
|
147
|
+
"caseless": "^0.12.0",
|
|
148
|
+
"chalk": "^3.0.0",
|
|
149
|
+
"chardet": "^0.7.0",
|
|
150
|
+
"ci-info": "^2.0.0",
|
|
151
|
+
"class-utils": "^0.3.6",
|
|
152
|
+
"cli-cursor": "^3.1.0",
|
|
153
|
+
"cli-spinners": "^1.3.1",
|
|
154
|
+
"cli-width": "^3.0.0",
|
|
155
|
+
"cliui": "^6.0.0",
|
|
156
|
+
"clone": "^1.0.4",
|
|
157
|
+
"co": "^4.6.0",
|
|
158
|
+
"collect-v8-coverage": "^1.0.3",
|
|
159
|
+
"collection-visit": "^1.0.0",
|
|
160
|
+
"color-convert": "^2.0.1",
|
|
161
|
+
"color-name": "^1.1.4",
|
|
162
|
+
"combined-stream": "^1.0.8",
|
|
163
|
+
"commander": "^2.20.3",
|
|
164
|
+
"commondir": "^1.0.1",
|
|
165
|
+
"compare-versions": "^3.6.0",
|
|
166
|
+
"component-emitter": "^1.3.1",
|
|
167
|
+
"concat-map": "^0.0.1",
|
|
168
|
+
"confusing-browser-globals": "^1.0.11",
|
|
169
|
+
"convert-source-map": "^1.9.0",
|
|
170
|
+
"copy-descriptor": "^0.1.1",
|
|
171
|
+
"core-js-compat": "^3.47.0",
|
|
172
|
+
"core-util-is": "^1.0.2",
|
|
173
|
+
"cosmiconfig": "^7.1.0",
|
|
174
|
+
"cross-spawn": "^6.0.6",
|
|
175
|
+
"cssom": "^0.4.4",
|
|
176
|
+
"cssstyle": "^2.3.0",
|
|
177
|
+
"csstype": "^3.2.3",
|
|
178
|
+
"damerau-levenshtein": "^1.0.8",
|
|
179
|
+
"dashdash": "^1.14.1",
|
|
180
|
+
"data-urls": "^1.1.0",
|
|
181
|
+
"data-view-buffer": "^1.0.2",
|
|
182
|
+
"data-view-byte-length": "^1.0.2",
|
|
183
|
+
"data-view-byte-offset": "^1.0.1",
|
|
184
|
+
"debug": "^4.4.3",
|
|
185
|
+
"decamelize": "^1.2.0",
|
|
186
|
+
"decode-uri-component": "^0.2.2",
|
|
187
|
+
"deep-is": "^0.1.4",
|
|
188
|
+
"deepmerge": "^4.3.1",
|
|
189
|
+
"defaults": "^1.0.4",
|
|
190
|
+
"define-data-property": "^1.1.4",
|
|
191
|
+
"define-properties": "^1.2.1",
|
|
192
|
+
"define-property": "^0.2.5",
|
|
193
|
+
"delayed-stream": "^1.0.0",
|
|
194
|
+
"detect-newline": "^3.1.0",
|
|
195
|
+
"diff-sequences": "^25.2.6",
|
|
196
|
+
"doctrine": "^2.1.0",
|
|
197
|
+
"domexception": "^1.0.1",
|
|
198
|
+
"dunder-proto": "^1.0.1",
|
|
199
|
+
"ecc-jsbn": "^0.1.2",
|
|
200
|
+
"electron-to-chromium": "^1.5.267",
|
|
201
|
+
"emoji-regex": "^8.0.0",
|
|
202
|
+
"end-of-stream": "^1.4.5",
|
|
203
|
+
"enquirer": "^2.4.1",
|
|
204
|
+
"error-ex": "^1.3.4",
|
|
205
|
+
"es-abstract": "^1.24.1",
|
|
206
|
+
"es-define-property": "^1.0.1",
|
|
207
|
+
"es-errors": "^1.3.0",
|
|
208
|
+
"es-iterator-helpers": "^1.2.2",
|
|
209
|
+
"es-object-atoms": "^1.1.1",
|
|
210
|
+
"es-set-tostringtag": "^2.1.0",
|
|
211
|
+
"es-shim-unscopables": "^1.1.0",
|
|
212
|
+
"es-to-primitive": "^1.3.0",
|
|
213
|
+
"escalade": "^3.2.0",
|
|
214
|
+
"escape-string-regexp": "^1.0.5",
|
|
215
|
+
"escodegen": "^1.14.3",
|
|
216
|
+
"eslint": "^6.8.0",
|
|
217
|
+
"eslint-config-prettier": "^6.15.0",
|
|
218
|
+
"eslint-config-react-app": "^5.2.1",
|
|
219
|
+
"eslint-import-resolver-node": "^0.3.9",
|
|
220
|
+
"eslint-module-utils": "^2.12.1",
|
|
221
|
+
"eslint-plugin-flowtype": "^3.13.0",
|
|
222
|
+
"eslint-plugin-import": "^2.32.0",
|
|
223
|
+
"eslint-plugin-jsx-a11y": "^6.10.2",
|
|
224
|
+
"eslint-plugin-prettier": "^3.4.1",
|
|
225
|
+
"eslint-plugin-react": "^7.37.5",
|
|
226
|
+
"eslint-plugin-react-hooks": "^2.5.1",
|
|
227
|
+
"eslint-scope": "^5.1.1",
|
|
228
|
+
"eslint-utils": "^1.4.3",
|
|
229
|
+
"eslint-visitor-keys": "^1.3.0",
|
|
230
|
+
"espree": "^6.2.1",
|
|
231
|
+
"esprima": "^4.0.1",
|
|
232
|
+
"esquery": "^1.7.0",
|
|
233
|
+
"esrecurse": "^4.3.0",
|
|
234
|
+
"estraverse": "^5.3.0",
|
|
235
|
+
"estree-walker": "^1.0.1",
|
|
236
|
+
"esutils": "^2.0.3",
|
|
237
|
+
"exec-sh": "^0.3.6",
|
|
238
|
+
"execa": "^4.1.0",
|
|
239
|
+
"exit": "^0.1.2",
|
|
240
|
+
"expand-brackets": "^2.1.4",
|
|
241
|
+
"expect": "^25.5.0",
|
|
242
|
+
"extend": "^3.0.2",
|
|
243
|
+
"extend-shallow": "^2.0.1",
|
|
244
|
+
"external-editor": "^3.1.0",
|
|
245
|
+
"extglob": "^2.0.4",
|
|
246
|
+
"extsprintf": "^1.3.0",
|
|
247
|
+
"fast-deep-equal": "^3.1.3",
|
|
248
|
+
"fast-diff": "^1.3.0",
|
|
249
|
+
"fast-json-stable-stringify": "^2.1.0",
|
|
250
|
+
"fast-levenshtein": "^2.0.6",
|
|
251
|
+
"fb-watchman": "^2.0.2",
|
|
252
|
+
"figures": "^3.2.0",
|
|
253
|
+
"file-entry-cache": "^5.0.1",
|
|
254
|
+
"fill-range": "^7.1.1",
|
|
255
|
+
"find-cache-dir": "^3.3.2",
|
|
256
|
+
"find-up": "^4.1.0",
|
|
257
|
+
"find-versions": "^4.0.0",
|
|
258
|
+
"flat-cache": "^2.0.1",
|
|
259
|
+
"flatted": "^2.0.2",
|
|
260
|
+
"for-each": "^0.3.5",
|
|
261
|
+
"for-in": "^1.0.2",
|
|
262
|
+
"forever-agent": "^0.6.1",
|
|
263
|
+
"form-data": "^2.3.3",
|
|
264
|
+
"fragment-cache": "^0.2.1",
|
|
265
|
+
"fs-extra": "^9.1.0",
|
|
266
|
+
"fs.realpath": "^1.0.0",
|
|
267
|
+
"fsevents": "^2.3.3",
|
|
268
|
+
"function-bind": "^1.1.2",
|
|
269
|
+
"function.prototype.name": "^1.1.8",
|
|
270
|
+
"functional-red-black-tree": "^1.0.1",
|
|
271
|
+
"functions-have-names": "^1.2.3",
|
|
272
|
+
"generator-function": "^2.0.1",
|
|
273
|
+
"gensync": "^1.0.0-beta.2",
|
|
274
|
+
"get-caller-file": "^2.0.5",
|
|
275
|
+
"get-intrinsic": "^1.3.0",
|
|
276
|
+
"get-package-type": "^0.1.0",
|
|
277
|
+
"get-proto": "^1.0.1",
|
|
278
|
+
"get-stdin": "^6.0.0",
|
|
279
|
+
"get-stream": "^5.2.0",
|
|
280
|
+
"get-symbol-description": "^1.1.0",
|
|
281
|
+
"get-value": "^2.0.6",
|
|
282
|
+
"getpass": "^0.1.7",
|
|
283
|
+
"glob": "^7.2.3",
|
|
284
|
+
"glob-parent": "^5.1.2",
|
|
285
|
+
"globals": "^12.4.0",
|
|
286
|
+
"globalthis": "^1.0.4",
|
|
287
|
+
"globalyzer": "^0.1.0",
|
|
288
|
+
"globrex": "^0.1.2",
|
|
289
|
+
"gopd": "^1.2.0",
|
|
290
|
+
"graceful-fs": "^4.2.11",
|
|
291
|
+
"growly": "^1.3.0",
|
|
292
|
+
"har-schema": "^2.0.0",
|
|
293
|
+
"har-validator": "^5.1.5",
|
|
294
|
+
"has-bigints": "^1.1.0",
|
|
295
|
+
"has-flag": "^3.0.0",
|
|
296
|
+
"has-property-descriptors": "^1.0.2",
|
|
297
|
+
"has-proto": "^1.2.0",
|
|
298
|
+
"has-symbols": "^1.1.0",
|
|
299
|
+
"has-tostringtag": "^1.0.2",
|
|
300
|
+
"has-value": "^1.0.0",
|
|
301
|
+
"has-values": "^1.0.0",
|
|
302
|
+
"hasown": "^2.0.2",
|
|
303
|
+
"hosted-git-info": "^2.8.9",
|
|
304
|
+
"html-encoding-sniffer": "^1.0.2",
|
|
305
|
+
"html-escaper": "^2.0.2",
|
|
306
|
+
"http-signature": "^1.2.0",
|
|
307
|
+
"human-signals": "^1.1.1",
|
|
308
|
+
"humanize-duration": "^3.33.2",
|
|
309
|
+
"iconv-lite": "^0.4.24",
|
|
310
|
+
"ignore": "^4.0.6",
|
|
311
|
+
"import-fresh": "^3.3.1",
|
|
312
|
+
"import-local": "^3.2.0",
|
|
313
|
+
"imurmurhash": "^0.1.4",
|
|
314
|
+
"inflight": "^1.0.6",
|
|
315
|
+
"inherits": "^2.0.4",
|
|
316
|
+
"inquirer": "^7.3.3",
|
|
317
|
+
"internal-slot": "^1.1.0",
|
|
318
|
+
"interpret": "^1.4.0",
|
|
319
|
+
"ip-regex": "^2.1.0",
|
|
320
|
+
"is-accessor-descriptor": "^1.0.1",
|
|
321
|
+
"is-array-buffer": "^3.0.5",
|
|
322
|
+
"is-arrayish": "^0.2.1",
|
|
323
|
+
"is-async-function": "^2.1.1",
|
|
324
|
+
"is-bigint": "^1.1.0",
|
|
325
|
+
"is-boolean-object": "^1.2.2",
|
|
326
|
+
"is-buffer": "^1.1.6",
|
|
327
|
+
"is-callable": "^1.2.7",
|
|
328
|
+
"is-ci": "^2.0.0",
|
|
329
|
+
"is-core-module": "^2.16.1",
|
|
330
|
+
"is-data-descriptor": "^1.0.1",
|
|
331
|
+
"is-data-view": "^1.0.2",
|
|
332
|
+
"is-date-object": "^1.1.0",
|
|
333
|
+
"is-descriptor": "^1.0.3",
|
|
334
|
+
"is-docker": "^2.2.1",
|
|
335
|
+
"is-extendable": "^0.1.1",
|
|
336
|
+
"is-extglob": "^2.1.1",
|
|
337
|
+
"is-finalizationregistry": "^1.1.1",
|
|
338
|
+
"is-fullwidth-code-point": "^2.0.0",
|
|
339
|
+
"is-generator-fn": "^2.1.0",
|
|
340
|
+
"is-generator-function": "^1.1.2",
|
|
341
|
+
"is-glob": "^4.0.3",
|
|
342
|
+
"is-interactive": "^1.0.0",
|
|
343
|
+
"is-map": "^2.0.3",
|
|
344
|
+
"is-module": "^1.0.0",
|
|
345
|
+
"is-negative-zero": "^2.0.3",
|
|
346
|
+
"is-number": "^3.0.0",
|
|
347
|
+
"is-number-object": "^1.1.1",
|
|
348
|
+
"is-plain-object": "^2.0.4",
|
|
349
|
+
"is-reference": "^1.2.1",
|
|
350
|
+
"is-regex": "^1.2.1",
|
|
351
|
+
"is-set": "^2.0.3",
|
|
352
|
+
"is-shared-array-buffer": "^1.0.4",
|
|
353
|
+
"is-stream": "^2.0.1",
|
|
354
|
+
"is-string": "^1.1.1",
|
|
355
|
+
"is-symbol": "^1.1.1",
|
|
356
|
+
"is-typed-array": "^1.1.15",
|
|
357
|
+
"is-typedarray": "^1.0.0",
|
|
358
|
+
"is-weakmap": "^2.0.2",
|
|
359
|
+
"is-weakref": "^1.1.1",
|
|
360
|
+
"is-weakset": "^2.0.4",
|
|
361
|
+
"is-windows": "^1.0.2",
|
|
362
|
+
"is-wsl": "^2.2.0",
|
|
363
|
+
"isarray": "^2.0.5",
|
|
364
|
+
"isexe": "^2.0.0",
|
|
365
|
+
"isobject": "^3.0.1",
|
|
366
|
+
"isstream": "^0.1.2",
|
|
367
|
+
"istanbul-lib-coverage": "^3.2.2",
|
|
368
|
+
"istanbul-lib-instrument": "^4.0.3",
|
|
369
|
+
"istanbul-lib-report": "^3.0.1",
|
|
370
|
+
"istanbul-lib-source-maps": "^4.0.1",
|
|
371
|
+
"istanbul-reports": "^3.2.0",
|
|
372
|
+
"iterator.prototype": "^1.1.5",
|
|
373
|
+
"jest": "^25.5.4",
|
|
374
|
+
"jest-changed-files": "^25.5.0",
|
|
375
|
+
"jest-cli": "^25.5.4",
|
|
376
|
+
"jest-config": "^25.5.4",
|
|
377
|
+
"jest-diff": "^25.5.0",
|
|
378
|
+
"jest-docblock": "^25.3.0",
|
|
379
|
+
"jest-each": "^25.5.0",
|
|
380
|
+
"jest-environment-jsdom": "^25.5.0",
|
|
381
|
+
"jest-environment-node": "^25.5.0",
|
|
382
|
+
"jest-get-type": "^25.2.6",
|
|
383
|
+
"jest-haste-map": "^25.5.1",
|
|
384
|
+
"jest-jasmine2": "^25.5.4",
|
|
385
|
+
"jest-leak-detector": "^25.5.0",
|
|
386
|
+
"jest-matcher-utils": "^25.5.0",
|
|
387
|
+
"jest-message-util": "^25.5.0",
|
|
388
|
+
"jest-mock": "^25.5.0",
|
|
389
|
+
"jest-pnp-resolver": "^1.2.3",
|
|
390
|
+
"jest-regex-util": "^25.2.6",
|
|
391
|
+
"jest-resolve": "^25.5.1",
|
|
392
|
+
"jest-resolve-dependencies": "^25.5.4",
|
|
393
|
+
"jest-runner": "^25.5.4",
|
|
394
|
+
"jest-runtime": "^25.5.4",
|
|
395
|
+
"jest-serializer": "^25.5.0",
|
|
396
|
+
"jest-snapshot": "^25.5.1",
|
|
397
|
+
"jest-util": "^25.5.0",
|
|
398
|
+
"jest-validate": "^25.5.0",
|
|
399
|
+
"jest-watch-typeahead": "^0.5.0",
|
|
400
|
+
"jest-watcher": "^25.5.0",
|
|
401
|
+
"jest-worker": "^25.5.0",
|
|
402
|
+
"jpjs": "^1.2.1",
|
|
403
|
+
"js-tokens": "^4.0.0",
|
|
404
|
+
"js-yaml": "^3.14.2",
|
|
405
|
+
"jsbn": "^0.1.1",
|
|
406
|
+
"jsdom": "^15.2.1",
|
|
407
|
+
"jsesc": "^3.1.0",
|
|
408
|
+
"json-parse-even-better-errors": "^2.3.1",
|
|
409
|
+
"json-schema": "^0.4.0",
|
|
410
|
+
"json-schema-traverse": "^0.4.1",
|
|
411
|
+
"json-stable-stringify-without-jsonify": "^1.0.1",
|
|
412
|
+
"json-stringify-safe": "^5.0.1",
|
|
413
|
+
"json5": "^2.2.3",
|
|
414
|
+
"jsonfile": "^6.2.0",
|
|
415
|
+
"jsprim": "^1.4.2",
|
|
416
|
+
"jsx-ast-utils": "^3.3.5",
|
|
417
|
+
"kind-of": "^3.2.2",
|
|
418
|
+
"kleur": "^3.0.3",
|
|
419
|
+
"language-subtag-registry": "^0.3.23",
|
|
420
|
+
"language-tags": "^1.0.9",
|
|
421
|
+
"leven": "^3.1.0",
|
|
422
|
+
"levn": "^0.3.0",
|
|
423
|
+
"lines-and-columns": "^1.2.4",
|
|
424
|
+
"locate-path": "^5.0.0",
|
|
425
|
+
"lodash": "^4.17.21",
|
|
426
|
+
"lodash.debounce": "^4.0.8",
|
|
427
|
+
"lodash.memoize": "^4.1.2",
|
|
428
|
+
"lodash.merge": "^4.6.2",
|
|
429
|
+
"lodash.sortby": "^4.7.0",
|
|
430
|
+
"log-symbols": "^3.0.0",
|
|
431
|
+
"log-update": "^2.3.0",
|
|
432
|
+
"lolex": "^5.1.2",
|
|
433
|
+
"loose-envify": "^1.4.0",
|
|
434
|
+
"lower-case": "^2.0.2",
|
|
435
|
+
"lru-cache": "^5.1.1",
|
|
436
|
+
"magic-string": "^0.25.9",
|
|
437
|
+
"make-dir": "^3.1.0",
|
|
438
|
+
"make-error": "^1.3.6",
|
|
439
|
+
"makeerror": "^1.0.12",
|
|
440
|
+
"map-cache": "^0.2.2",
|
|
441
|
+
"map-visit": "^1.0.0",
|
|
442
|
+
"math-intrinsics": "^1.1.0",
|
|
443
|
+
"merge-stream": "^2.0.0",
|
|
444
|
+
"micromatch": "^4.0.8",
|
|
445
|
+
"mime-db": "^1.52.0",
|
|
446
|
+
"mime-types": "^2.1.35",
|
|
447
|
+
"mimic-fn": "^2.1.0",
|
|
448
|
+
"minimatch": "^3.1.2",
|
|
449
|
+
"minimist": "^1.2.8",
|
|
450
|
+
"mixin-deep": "^1.3.2",
|
|
451
|
+
"mkdirp": "^0.5.6",
|
|
452
|
+
"mri": "^1.2.0",
|
|
453
|
+
"ms": "^2.1.3",
|
|
454
|
+
"mute-stream": "^0.0.8",
|
|
455
|
+
"nanomatch": "^1.2.13",
|
|
456
|
+
"natural-compare": "^1.4.0",
|
|
457
|
+
"nice-try": "^1.0.5",
|
|
458
|
+
"no-case": "^3.0.4",
|
|
459
|
+
"node-int64": "^0.4.0",
|
|
460
|
+
"node-notifier": "^6.0.0",
|
|
461
|
+
"node-releases": "^2.0.27",
|
|
462
|
+
"normalize-package-data": "^2.5.0",
|
|
463
|
+
"normalize-path": "^3.0.0",
|
|
464
|
+
"npm-run-path": "^4.0.1",
|
|
465
|
+
"nwsapi": "^2.2.23",
|
|
466
|
+
"oauth-sign": "^0.9.0",
|
|
467
|
+
"object-assign": "^4.1.1",
|
|
468
|
+
"object-copy": "^0.1.0",
|
|
469
|
+
"object-inspect": "^1.13.4",
|
|
470
|
+
"object-keys": "^1.1.1",
|
|
471
|
+
"object-visit": "^1.0.1",
|
|
472
|
+
"object.assign": "^4.1.7",
|
|
473
|
+
"object.entries": "^1.1.9",
|
|
474
|
+
"object.fromentries": "^2.0.8",
|
|
475
|
+
"object.groupby": "^1.0.3",
|
|
476
|
+
"object.pick": "^1.3.0",
|
|
477
|
+
"object.values": "^1.2.1",
|
|
478
|
+
"once": "^1.4.0",
|
|
479
|
+
"onetime": "^5.1.2",
|
|
480
|
+
"opencollective-postinstall": "^2.0.3",
|
|
481
|
+
"optionator": "^0.8.3",
|
|
482
|
+
"ora": "^4.1.1",
|
|
483
|
+
"os-tmpdir": "^1.0.2",
|
|
484
|
+
"own-keys": "^1.0.1",
|
|
485
|
+
"p-each-series": "^2.2.0",
|
|
486
|
+
"p-finally": "^2.0.1",
|
|
487
|
+
"p-limit": "^2.3.0",
|
|
488
|
+
"p-locate": "^4.1.0",
|
|
489
|
+
"p-try": "^2.2.0",
|
|
490
|
+
"parent-module": "^1.0.1",
|
|
491
|
+
"parse-json": "^5.2.0",
|
|
492
|
+
"parse5": "^5.1.0",
|
|
493
|
+
"pascal-case": "^3.1.2",
|
|
494
|
+
"pascalcase": "^0.1.1",
|
|
495
|
+
"path-exists": "^4.0.0",
|
|
496
|
+
"path-is-absolute": "^1.0.1",
|
|
497
|
+
"path-key": "^2.0.1",
|
|
498
|
+
"path-parse": "^1.0.7",
|
|
499
|
+
"path-type": "^4.0.0",
|
|
500
|
+
"performance-now": "^2.1.0",
|
|
501
|
+
"picocolors": "^1.1.1",
|
|
502
|
+
"picomatch": "^2.3.1",
|
|
503
|
+
"pirates": "^4.0.7",
|
|
504
|
+
"pkg-dir": "^4.2.0",
|
|
505
|
+
"please-upgrade-node": "^3.2.0",
|
|
506
|
+
"pn": "^1.1.0",
|
|
507
|
+
"posix-character-classes": "^0.1.1",
|
|
508
|
+
"possible-typed-array-names": "^1.1.0",
|
|
509
|
+
"prelude-ls": "^1.1.2",
|
|
510
|
+
"prettier": "^1.19.1",
|
|
511
|
+
"prettier-linter-helpers": "^1.0.1",
|
|
512
|
+
"pretty-format": "^25.5.0",
|
|
513
|
+
"progress": "^2.0.3",
|
|
514
|
+
"progress-estimator": "^0.2.2",
|
|
515
|
+
"prompts": "^2.4.2",
|
|
516
|
+
"prop-types": "^15.8.1",
|
|
517
|
+
"psl": "^1.15.0",
|
|
518
|
+
"pump": "^3.0.3",
|
|
519
|
+
"punycode": "^2.3.1",
|
|
520
|
+
"qs": "^6.5.3",
|
|
521
|
+
"randombytes": "^2.1.0",
|
|
522
|
+
"react-is": "^16.13.1",
|
|
523
|
+
"read-pkg": "^5.2.0",
|
|
524
|
+
"read-pkg-up": "^7.0.1",
|
|
525
|
+
"realpath-native": "^2.0.0",
|
|
526
|
+
"rechoir": "^0.6.2",
|
|
527
|
+
"reflect.getprototypeof": "^1.0.10",
|
|
528
|
+
"regenerate": "^1.4.2",
|
|
529
|
+
"regenerate-unicode-properties": "^10.2.2",
|
|
530
|
+
"regenerator-runtime": "^0.13.11",
|
|
531
|
+
"regex-not": "^1.0.2",
|
|
532
|
+
"regexp.prototype.flags": "^1.5.4",
|
|
533
|
+
"regexpp": "^2.0.1",
|
|
534
|
+
"regexpu-core": "^6.4.0",
|
|
535
|
+
"regjsgen": "^0.8.0",
|
|
536
|
+
"regjsparser": "^0.13.0",
|
|
537
|
+
"remove-trailing-separator": "^1.1.0",
|
|
538
|
+
"repeat-element": "^1.1.4",
|
|
539
|
+
"repeat-string": "^1.6.1",
|
|
540
|
+
"request": "^2.88.2",
|
|
541
|
+
"request-promise-core": "^1.1.4",
|
|
542
|
+
"request-promise-native": "^1.0.9",
|
|
543
|
+
"require-directory": "^2.1.1",
|
|
544
|
+
"require-main-filename": "^2.0.0",
|
|
545
|
+
"resolve": "^1.22.11",
|
|
546
|
+
"resolve-cwd": "^3.0.0",
|
|
547
|
+
"resolve-from": "^5.0.0",
|
|
548
|
+
"resolve-url": "^0.2.1",
|
|
549
|
+
"restore-cursor": "^3.1.0",
|
|
550
|
+
"ret": "^0.1.15",
|
|
551
|
+
"rimraf": "^3.0.2",
|
|
552
|
+
"rollup": "^1.32.1",
|
|
553
|
+
"rollup-plugin-sourcemaps": "^0.6.3",
|
|
554
|
+
"rollup-plugin-terser": "^5.3.1",
|
|
555
|
+
"rollup-plugin-typescript2": "^0.27.3",
|
|
556
|
+
"rollup-pluginutils": "^2.8.2",
|
|
557
|
+
"rsvp": "^4.8.5",
|
|
558
|
+
"run-async": "^2.4.1",
|
|
559
|
+
"rxjs": "^6.6.7",
|
|
560
|
+
"sade": "^1.8.1",
|
|
561
|
+
"safe-array-concat": "^1.1.3",
|
|
562
|
+
"safe-buffer": "^5.2.1",
|
|
563
|
+
"safe-push-apply": "^1.0.0",
|
|
564
|
+
"safe-regex": "^1.1.0",
|
|
565
|
+
"safe-regex-test": "^1.1.0",
|
|
566
|
+
"safer-buffer": "^2.1.2",
|
|
567
|
+
"sane": "^4.1.0",
|
|
568
|
+
"saxes": "^3.1.11",
|
|
569
|
+
"scheduler": "^0.19.1",
|
|
570
|
+
"semver": "^6.3.1",
|
|
571
|
+
"semver-compare": "^1.0.0",
|
|
572
|
+
"semver-regex": "^3.1.4",
|
|
573
|
+
"serialize-javascript": "^4.0.0",
|
|
574
|
+
"set-blocking": "^2.0.0",
|
|
575
|
+
"set-function-length": "^1.2.2",
|
|
576
|
+
"set-function-name": "^2.0.2",
|
|
577
|
+
"set-proto": "^1.0.0",
|
|
578
|
+
"set-value": "^2.0.1",
|
|
579
|
+
"shebang-command": "^1.2.0",
|
|
580
|
+
"shebang-regex": "^1.0.0",
|
|
581
|
+
"shelljs": "^0.8.5",
|
|
582
|
+
"shellwords": "^0.1.1",
|
|
583
|
+
"side-channel": "^1.1.0",
|
|
584
|
+
"side-channel-list": "^1.0.0",
|
|
585
|
+
"side-channel-map": "^1.0.1",
|
|
586
|
+
"side-channel-weakmap": "^1.0.2",
|
|
587
|
+
"signal-exit": "^3.0.7",
|
|
588
|
+
"sisteransi": "^1.0.5",
|
|
589
|
+
"slash": "^3.0.0",
|
|
590
|
+
"slice-ansi": "^2.1.0",
|
|
591
|
+
"snapdragon": "^0.8.2",
|
|
592
|
+
"snapdragon-node": "^2.1.1",
|
|
593
|
+
"snapdragon-util": "^3.0.1",
|
|
594
|
+
"source-map": "^0.6.1",
|
|
595
|
+
"source-map-resolve": "^0.6.0",
|
|
596
|
+
"source-map-support": "^0.5.21",
|
|
597
|
+
"source-map-url": "^0.4.1",
|
|
598
|
+
"sourcemap-codec": "^1.4.8",
|
|
599
|
+
"spdx-correct": "^3.2.0",
|
|
600
|
+
"spdx-exceptions": "^2.5.0",
|
|
601
|
+
"spdx-expression-parse": "^3.0.1",
|
|
602
|
+
"spdx-license-ids": "^3.0.22",
|
|
603
|
+
"split-string": "^3.1.0",
|
|
604
|
+
"sprintf-js": "^1.0.3",
|
|
605
|
+
"sshpk": "^1.18.0",
|
|
606
|
+
"stack-utils": "^1.0.5",
|
|
607
|
+
"static-extend": "^0.1.2",
|
|
608
|
+
"stealthy-require": "^1.1.1",
|
|
609
|
+
"stop-iteration-iterator": "^1.1.0",
|
|
610
|
+
"string-length": "^3.1.0",
|
|
611
|
+
"string-width": "^4.2.3",
|
|
612
|
+
"string.prototype.includes": "^2.0.1",
|
|
613
|
+
"string.prototype.matchall": "^4.0.12",
|
|
614
|
+
"string.prototype.repeat": "^1.0.0",
|
|
615
|
+
"string.prototype.trim": "^1.2.10",
|
|
616
|
+
"string.prototype.trimend": "^1.0.9",
|
|
617
|
+
"string.prototype.trimstart": "^1.0.8",
|
|
618
|
+
"strip-ansi": "^6.0.1",
|
|
619
|
+
"strip-bom": "^3.0.0",
|
|
620
|
+
"strip-eof": "^1.0.0",
|
|
621
|
+
"strip-final-newline": "^2.0.0",
|
|
622
|
+
"strip-json-comments": "^3.1.1",
|
|
623
|
+
"supports-color": "^7.2.0",
|
|
624
|
+
"supports-hyperlinks": "^2.3.0",
|
|
625
|
+
"supports-preserve-symlinks-flag": "^1.0.0",
|
|
626
|
+
"symbol-tree": "^3.2.4",
|
|
627
|
+
"table": "^5.4.6",
|
|
628
|
+
"terminal-link": "^2.1.1",
|
|
629
|
+
"terser": "^4.8.1",
|
|
630
|
+
"test-exclude": "^6.0.0",
|
|
631
|
+
"text-table": "^0.2.0",
|
|
632
|
+
"throat": "^5.0.0",
|
|
633
|
+
"through": "^2.3.8",
|
|
634
|
+
"tiny-glob": "^0.2.9",
|
|
635
|
+
"tmp": "^0.0.33",
|
|
636
|
+
"tmpl": "^1.0.5",
|
|
637
|
+
"to-object-path": "^0.3.0",
|
|
638
|
+
"to-regex": "^3.0.2",
|
|
639
|
+
"to-regex-range": "^5.0.1",
|
|
640
|
+
"tough-cookie": "^2.5.0",
|
|
641
|
+
"tr46": "^1.0.1",
|
|
642
|
+
"ts-jest": "^25.5.1",
|
|
643
|
+
"tsconfig-paths": "^3.15.0",
|
|
644
|
+
"tsutils": "^3.21.0",
|
|
645
|
+
"tunnel-agent": "^0.6.0",
|
|
646
|
+
"tweetnacl": "^0.14.5",
|
|
647
|
+
"type-check": "^0.3.2",
|
|
648
|
+
"type-detect": "^4.0.8",
|
|
649
|
+
"type-fest": "^0.8.1",
|
|
650
|
+
"typed-array-buffer": "^1.0.3",
|
|
651
|
+
"typed-array-byte-length": "^1.0.3",
|
|
652
|
+
"typed-array-byte-offset": "^1.0.4",
|
|
653
|
+
"typed-array-length": "^1.0.7",
|
|
654
|
+
"typedarray-to-buffer": "^3.1.5",
|
|
655
|
+
"unbox-primitive": "^1.1.0",
|
|
656
|
+
"undici-types": "^7.16.0",
|
|
657
|
+
"unicode-canonical-property-names-ecmascript": "^2.0.1",
|
|
658
|
+
"unicode-match-property-ecmascript": "^2.0.0",
|
|
659
|
+
"unicode-match-property-value-ecmascript": "^2.2.1",
|
|
660
|
+
"unicode-property-aliases-ecmascript": "^2.2.0",
|
|
661
|
+
"union-value": "^1.0.1",
|
|
662
|
+
"universalify": "^2.0.1",
|
|
663
|
+
"unset-value": "^1.0.0",
|
|
664
|
+
"update-browserslist-db": "^1.2.3",
|
|
665
|
+
"uri-js": "^4.4.1",
|
|
666
|
+
"urix": "^0.1.0",
|
|
667
|
+
"use": "^3.1.1",
|
|
668
|
+
"uuid": "^3.4.0",
|
|
669
|
+
"v8-compile-cache": "^2.4.0",
|
|
670
|
+
"v8-to-istanbul": "^4.1.4",
|
|
671
|
+
"validate-npm-package-license": "^3.0.4",
|
|
672
|
+
"verror": "^1.10.0",
|
|
673
|
+
"w3c-hr-time": "^1.0.2",
|
|
674
|
+
"w3c-xmlserializer": "^1.1.2",
|
|
675
|
+
"walker": "^1.0.8",
|
|
676
|
+
"wcwidth": "^1.0.1",
|
|
677
|
+
"webidl-conversions": "^4.0.2",
|
|
678
|
+
"whatwg-encoding": "^1.0.5",
|
|
679
|
+
"whatwg-mimetype": "^2.3.0",
|
|
680
|
+
"whatwg-url": "^7.1.0",
|
|
681
|
+
"which": "^1.3.1",
|
|
682
|
+
"which-boxed-primitive": "^1.1.1",
|
|
683
|
+
"which-builtin-type": "^1.2.1",
|
|
684
|
+
"which-collection": "^1.0.2",
|
|
685
|
+
"which-module": "^2.0.1",
|
|
686
|
+
"which-pm-runs": "^1.1.0",
|
|
687
|
+
"which-typed-array": "^1.1.20",
|
|
688
|
+
"word-wrap": "^1.2.5",
|
|
689
|
+
"wrap-ansi": "^3.0.1",
|
|
690
|
+
"wrappy": "^1.0.2",
|
|
691
|
+
"write": "^1.0.3",
|
|
692
|
+
"write-file-atomic": "^3.0.3",
|
|
693
|
+
"ws": "^7.5.10",
|
|
694
|
+
"xml-name-validator": "^3.0.0",
|
|
695
|
+
"xmlchars": "^2.2.0",
|
|
696
|
+
"y18n": "^4.0.3",
|
|
697
|
+
"yallist": "^3.1.1",
|
|
698
|
+
"yaml": "^1.10.2",
|
|
699
|
+
"yargs": "^15.4.1",
|
|
700
|
+
"yargs-parser": "^18.1.3",
|
|
701
|
+
"yocto-queue": "^0.1.0"
|
|
702
|
+
},
|
|
703
|
+
"bugs": {
|
|
704
|
+
"url": "https://github.com/phelian/react-body-highlighter/issues"
|
|
705
|
+
}
|
|
706
|
+
}
|