-
Notifications
You must be signed in to change notification settings - Fork 35
/
package-lock.json
6277 lines (6277 loc) · 252 KB
/
package-lock.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"name": "learning-hub-demo",
"version": "2.0.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"@babel/code-frame": {
"version": "7.16.0",
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.0.tgz",
"integrity": "sha512-IF4EOMEV+bfYwOmNxGzSnjR2EmQod7f1UXOpZM3l4i4o4QNwzjtJAu/HxdjHq0aYBvdqMuQEY1eg0nqW9ZPORA==",
"requires": {
"@babel/highlight": "^7.16.0"
}
},
"@babel/generator": {
"version": "7.16.5",
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.16.5.tgz",
"integrity": "sha512-kIvCdjZqcdKqoDbVVdt5R99icaRtrtYhYK/xux5qiWCBmfdvEYMFZ68QCrpE5cbFM1JsuArUNs1ZkuKtTtUcZA==",
"requires": {
"@babel/types": "^7.16.0",
"jsesc": "^2.5.1",
"source-map": "^0.5.0"
},
"dependencies": {
"source-map": {
"version": "0.5.7",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
"integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w="
}
}
},
"@babel/helper-annotate-as-pure": {
"version": "7.16.0",
"resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.0.tgz",
"integrity": "sha512-ItmYF9vR4zA8cByDocY05o0LGUkp1zhbTQOH1NFyl5xXEqlTJQCEJjieriw+aFpxo16swMxUnUiKS7a/r4vtHg==",
"requires": {
"@babel/types": "^7.16.0"
}
},
"@babel/helper-environment-visitor": {
"version": "7.16.5",
"resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.16.5.tgz",
"integrity": "sha512-ODQyc5AnxmZWm/R2W7fzhamOk1ey8gSguo5SGvF0zcB3uUzRpTRmM/jmLSm9bDMyPlvbyJ+PwPEK0BWIoZ9wjg==",
"requires": {
"@babel/types": "^7.16.0"
}
},
"@babel/helper-function-name": {
"version": "7.16.0",
"resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.16.0.tgz",
"integrity": "sha512-BZh4mEk1xi2h4HFjWUXRQX5AEx4rvaZxHgax9gcjdLWdkjsY7MKt5p0otjsg5noXw+pB+clMCjw+aEVYADMjog==",
"requires": {
"@babel/helper-get-function-arity": "^7.16.0",
"@babel/template": "^7.16.0",
"@babel/types": "^7.16.0"
}
},
"@babel/helper-get-function-arity": {
"version": "7.16.0",
"resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.0.tgz",
"integrity": "sha512-ASCquNcywC1NkYh/z7Cgp3w31YW8aojjYIlNg4VeJiHkqyP4AzIvr4qx7pYDb4/s8YcsZWqqOSxgkvjUz1kpDQ==",
"requires": {
"@babel/types": "^7.16.0"
}
},
"@babel/helper-hoist-variables": {
"version": "7.16.0",
"resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.0.tgz",
"integrity": "sha512-1AZlpazjUR0EQZQv3sgRNfM9mEVWPK3M6vlalczA+EECcPz3XPh6VplbErL5UoMpChhSck5wAJHthlj1bYpcmg==",
"requires": {
"@babel/types": "^7.16.0"
}
},
"@babel/helper-module-imports": {
"version": "7.16.0",
"resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.16.0.tgz",
"integrity": "sha512-kkH7sWzKPq0xt3H1n+ghb4xEMP8k0U7XV3kkB+ZGy69kDk2ySFW1qPi06sjKzFY3t1j6XbJSqr4mF9L7CYVyhg==",
"requires": {
"@babel/types": "^7.16.0"
}
},
"@babel/helper-plugin-utils": {
"version": "7.16.5",
"resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.5.tgz",
"integrity": "sha512-59KHWHXxVA9K4HNF4sbHCf+eJeFe0Te/ZFGqBT4OjXhrwvA04sGfaEGsVTdsjoszq0YTP49RC9UKe5g8uN2RwQ=="
},
"@babel/helper-split-export-declaration": {
"version": "7.16.0",
"resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.0.tgz",
"integrity": "sha512-0YMMRpuDFNGTHNRiiqJX19GjNXA4H0E8jZ2ibccfSxaCogbm3am5WN/2nQNj0YnQwGWM1J06GOcQ2qnh3+0paw==",
"requires": {
"@babel/types": "^7.16.0"
}
},
"@babel/helper-validator-identifier": {
"version": "7.15.7",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.15.7.tgz",
"integrity": "sha512-K4JvCtQqad9OY2+yTU8w+E82ywk/fe+ELNlt1G8z3bVGlZfn/hOcQQsUhGhW/N+tb3fxK800wLtKOE/aM0m72w=="
},
"@babel/highlight": {
"version": "7.16.0",
"resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.0.tgz",
"integrity": "sha512-t8MH41kUQylBtu2+4IQA3atqevA2lRgqA2wyVB/YiWmsDSuylZZuXOUy9ric30hfzauEFfdsuk/eXTRrGrfd0g==",
"requires": {
"@babel/helper-validator-identifier": "^7.15.7",
"chalk": "^2.0.0",
"js-tokens": "^4.0.0"
},
"dependencies": {
"ansi-styles": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
"integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
"requires": {
"color-convert": "^1.9.0"
}
},
"chalk": {
"version": "2.4.2",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
"integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
"requires": {
"ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5",
"supports-color": "^5.3.0"
}
},
"color-convert": {
"version": "1.9.3",
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
"integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
"requires": {
"color-name": "1.1.3"
}
},
"color-name": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
"integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU="
}
}
},
"@babel/parser": {
"version": "7.16.6",
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.16.6.tgz",
"integrity": "sha512-Gr86ujcNuPDnNOY8mi383Hvi8IYrJVJYuf3XcuBM/Dgd+bINn/7tHqsj+tKkoreMbmGsFLsltI/JJd8fOFWGDQ=="
},
"@babel/plugin-syntax-jsx": {
"version": "7.14.5",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.14.5.tgz",
"integrity": "sha512-ohuFIsOMXJnbOMRfX7/w7LocdR6R7whhuRD4ax8IipLcLPlZGJKkBxgHp++U4N/vKyU16/YDQr2f5seajD3jIw==",
"requires": {
"@babel/helper-plugin-utils": "^7.14.5"
}
},
"@babel/runtime": {
"version": "7.16.5",
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.5.tgz",
"integrity": "sha512-TXWihFIS3Pyv5hzR7j6ihmeLkZfrXGxAr5UfSl8CHf+6q/wpiYDkUau0czckpYG8QmnCIuPpdLtuA9VmuGGyMA==",
"requires": {
"regenerator-runtime": "^0.13.4"
}
},
"@babel/template": {
"version": "7.16.0",
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.16.0.tgz",
"integrity": "sha512-MnZdpFD/ZdYhXwiunMqqgyZyucaYsbL0IrjoGjaVhGilz+x8YB++kRfygSOIj1yOtWKPlx7NBp+9I1RQSgsd5A==",
"requires": {
"@babel/code-frame": "^7.16.0",
"@babel/parser": "^7.16.0",
"@babel/types": "^7.16.0"
}
},
"@babel/traverse": {
"version": "7.16.5",
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.16.5.tgz",
"integrity": "sha512-FOCODAzqUMROikDYLYxl4nmwiLlu85rNqBML/A5hKRVXG2LV8d0iMqgPzdYTcIpjZEBB7D6UDU9vxRZiriASdQ==",
"requires": {
"@babel/code-frame": "^7.16.0",
"@babel/generator": "^7.16.5",
"@babel/helper-environment-visitor": "^7.16.5",
"@babel/helper-function-name": "^7.16.0",
"@babel/helper-hoist-variables": "^7.16.0",
"@babel/helper-split-export-declaration": "^7.16.0",
"@babel/parser": "^7.16.5",
"@babel/types": "^7.16.0",
"debug": "^4.1.0",
"globals": "^11.1.0"
}
},
"@babel/types": {
"version": "7.16.0",
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.16.0.tgz",
"integrity": "sha512-PJgg/k3SdLsGb3hhisFvtLOw5ts113klrpLuIPtCJIU+BB24fqq6lf8RWqKJEjzqXR9AEH1rIb5XTqwBHB+kQg==",
"requires": {
"@babel/helper-validator-identifier": "^7.15.7",
"to-fast-properties": "^2.0.0"
}
},
"@codemirror/autocomplete": {
"version": "0.18.8",
"resolved": "https://registry.npmjs.org/@codemirror/autocomplete/-/autocomplete-0.18.8.tgz",
"integrity": "sha512-Va1Q763Vu/rVmIazru/ZnO2kkWVq6SlmMEjeD0qmxLAypyP6j/QNdpmaPDI1qb/+Mb9VFZBbac6a0aLTTi8qxQ==",
"requires": {
"@codemirror/language": "^0.18.0",
"@codemirror/state": "^0.18.0",
"@codemirror/text": "^0.18.0",
"@codemirror/tooltip": "^0.18.4",
"@codemirror/view": "^0.18.0",
"lezer-tree": "^0.13.0"
},
"dependencies": {
"@codemirror/view": {
"version": "0.18.19",
"resolved": "https://registry.npmjs.org/@codemirror/view/-/view-0.18.19.tgz",
"integrity": "sha512-TmazVl8H3L+aYwlNb8xk6qADRb8KiYOO047pz51R4mGCg4Ja2siSjXktZgUvklsyWbUY7h9q+oAf4piH+mQZTw==",
"requires": {
"@codemirror/rangeset": "^0.18.2",
"@codemirror/state": "^0.18.0",
"@codemirror/text": "^0.18.1",
"style-mod": "^4.0.0",
"w3c-keyname": "^2.2.4"
}
}
}
},
"@codemirror/basic-setup": {
"version": "0.18.2",
"resolved": "https://registry.npmjs.org/@codemirror/basic-setup/-/basic-setup-0.18.2.tgz",
"integrity": "sha512-4UNFQ4jhU7wKxJH23AJcZW6Ho54VXUpmbtFnN5amIdtGci4ZLvci4M7JKgKFraHmKfDIYQnSzN8d8ohXR7CRhw==",
"requires": {
"@codemirror/autocomplete": "^0.18.0",
"@codemirror/closebrackets": "^0.18.0",
"@codemirror/commands": "^0.18.0",
"@codemirror/comment": "^0.18.0",
"@codemirror/fold": "^0.18.0",
"@codemirror/gutter": "^0.18.3",
"@codemirror/highlight": "^0.18.0",
"@codemirror/history": "^0.18.0",
"@codemirror/language": "^0.18.0",
"@codemirror/lint": "^0.18.0",
"@codemirror/matchbrackets": "^0.18.0",
"@codemirror/rectangular-selection": "^0.18.0",
"@codemirror/search": "^0.18.0",
"@codemirror/state": "^0.18.0",
"@codemirror/view": "^0.18.0"
},
"dependencies": {
"@codemirror/view": {
"version": "0.18.19",
"resolved": "https://registry.npmjs.org/@codemirror/view/-/view-0.18.19.tgz",
"integrity": "sha512-TmazVl8H3L+aYwlNb8xk6qADRb8KiYOO047pz51R4mGCg4Ja2siSjXktZgUvklsyWbUY7h9q+oAf4piH+mQZTw==",
"requires": {
"@codemirror/rangeset": "^0.18.2",
"@codemirror/state": "^0.18.0",
"@codemirror/text": "^0.18.1",
"style-mod": "^4.0.0",
"w3c-keyname": "^2.2.4"
}
}
}
},
"@codemirror/closebrackets": {
"version": "0.18.0",
"resolved": "https://registry.npmjs.org/@codemirror/closebrackets/-/closebrackets-0.18.0.tgz",
"integrity": "sha512-O1RAgUkzF4nq/B8IyXenZKZ1rJi2Mc7I6y4IhWhELiTnjyQy7YdAthTsJ40mNr8kZ6gRbasYe3K7TraITElZJA==",
"requires": {
"@codemirror/language": "^0.18.0",
"@codemirror/rangeset": "^0.18.0",
"@codemirror/state": "^0.18.0",
"@codemirror/text": "^0.18.0",
"@codemirror/view": "^0.18.0"
},
"dependencies": {
"@codemirror/view": {
"version": "0.18.19",
"resolved": "https://registry.npmjs.org/@codemirror/view/-/view-0.18.19.tgz",
"integrity": "sha512-TmazVl8H3L+aYwlNb8xk6qADRb8KiYOO047pz51R4mGCg4Ja2siSjXktZgUvklsyWbUY7h9q+oAf4piH+mQZTw==",
"requires": {
"@codemirror/rangeset": "^0.18.2",
"@codemirror/state": "^0.18.0",
"@codemirror/text": "^0.18.1",
"style-mod": "^4.0.0",
"w3c-keyname": "^2.2.4"
}
}
}
},
"@codemirror/commands": {
"version": "0.18.3",
"resolved": "https://registry.npmjs.org/@codemirror/commands/-/commands-0.18.3.tgz",
"integrity": "sha512-nHYDG13qOirioXTAKmjl10W2L0eZ1ftvmTwvUTNY27UWVBPFSpk5zDXP3WqJ0mgMhQ4AOFLJaTjJEO3hmPComg==",
"requires": {
"@codemirror/language": "^0.18.0",
"@codemirror/matchbrackets": "^0.18.0",
"@codemirror/state": "^0.18.0",
"@codemirror/text": "^0.18.0",
"@codemirror/view": "^0.18.0",
"lezer-tree": "^0.13.0"
},
"dependencies": {
"@codemirror/view": {
"version": "0.18.19",
"resolved": "https://registry.npmjs.org/@codemirror/view/-/view-0.18.19.tgz",
"integrity": "sha512-TmazVl8H3L+aYwlNb8xk6qADRb8KiYOO047pz51R4mGCg4Ja2siSjXktZgUvklsyWbUY7h9q+oAf4piH+mQZTw==",
"requires": {
"@codemirror/rangeset": "^0.18.2",
"@codemirror/state": "^0.18.0",
"@codemirror/text": "^0.18.1",
"style-mod": "^4.0.0",
"w3c-keyname": "^2.2.4"
}
}
}
},
"@codemirror/comment": {
"version": "0.18.1",
"resolved": "https://registry.npmjs.org/@codemirror/comment/-/comment-0.18.1.tgz",
"integrity": "sha512-Inhqs0F24WE28Fcp1dBZghwixBGv1HDwY9MjE0d5tpMY/IPGI6uT30fGyHAXrir6hUqk7eJRkO4UYnODGOnoIA==",
"requires": {
"@codemirror/state": "^0.18.0",
"@codemirror/text": "^0.18.0",
"@codemirror/view": "^0.18.0"
},
"dependencies": {
"@codemirror/view": {
"version": "0.18.19",
"resolved": "https://registry.npmjs.org/@codemirror/view/-/view-0.18.19.tgz",
"integrity": "sha512-TmazVl8H3L+aYwlNb8xk6qADRb8KiYOO047pz51R4mGCg4Ja2siSjXktZgUvklsyWbUY7h9q+oAf4piH+mQZTw==",
"requires": {
"@codemirror/rangeset": "^0.18.2",
"@codemirror/state": "^0.18.0",
"@codemirror/text": "^0.18.1",
"style-mod": "^4.0.0",
"w3c-keyname": "^2.2.4"
}
}
}
},
"@codemirror/fold": {
"version": "0.18.2",
"resolved": "https://registry.npmjs.org/@codemirror/fold/-/fold-0.18.2.tgz",
"integrity": "sha512-kkQ+stpUbOAU0ASPP9NW5uLLhe5LVC46m47zJUnWDlsT9rS5NZW6NDiWzrDlN8dWQT8fePzkMA174BG4tr2GJw==",
"requires": {
"@codemirror/gutter": "^0.18.0",
"@codemirror/language": "^0.18.0",
"@codemirror/rangeset": "^0.18.0",
"@codemirror/state": "^0.18.0",
"@codemirror/view": "^0.18.0"
},
"dependencies": {
"@codemirror/view": {
"version": "0.18.19",
"resolved": "https://registry.npmjs.org/@codemirror/view/-/view-0.18.19.tgz",
"integrity": "sha512-TmazVl8H3L+aYwlNb8xk6qADRb8KiYOO047pz51R4mGCg4Ja2siSjXktZgUvklsyWbUY7h9q+oAf4piH+mQZTw==",
"requires": {
"@codemirror/rangeset": "^0.18.2",
"@codemirror/state": "^0.18.0",
"@codemirror/text": "^0.18.1",
"style-mod": "^4.0.0",
"w3c-keyname": "^2.2.4"
}
}
}
},
"@codemirror/gutter": {
"version": "0.18.4",
"resolved": "https://registry.npmjs.org/@codemirror/gutter/-/gutter-0.18.4.tgz",
"integrity": "sha512-Sf2IWshMi9zwVVqpGmd2NRplY0qfrE2IiBEII9n2gB9M8hgIMg5GCyhdnsUDsOm0gcSut65W62vV7/DfYJHQCA==",
"requires": {
"@codemirror/rangeset": "^0.18.3",
"@codemirror/state": "^0.18.0",
"@codemirror/view": "^0.18.0"
},
"dependencies": {
"@codemirror/view": {
"version": "0.18.19",
"resolved": "https://registry.npmjs.org/@codemirror/view/-/view-0.18.19.tgz",
"integrity": "sha512-TmazVl8H3L+aYwlNb8xk6qADRb8KiYOO047pz51R4mGCg4Ja2siSjXktZgUvklsyWbUY7h9q+oAf4piH+mQZTw==",
"requires": {
"@codemirror/rangeset": "^0.18.2",
"@codemirror/state": "^0.18.0",
"@codemirror/text": "^0.18.1",
"style-mod": "^4.0.0",
"w3c-keyname": "^2.2.4"
}
}
}
},
"@codemirror/highlight": {
"version": "0.18.4",
"resolved": "https://registry.npmjs.org/@codemirror/highlight/-/highlight-0.18.4.tgz",
"integrity": "sha512-3azJntqWrShOIq/0kVcdMc9k7ACL0LQErgK+A6aWXmCj5Mx0gShq+Iajy8AMQ2zB0v3nhCBgFaniL1LLD5m5hQ==",
"requires": {
"@codemirror/language": "^0.18.0",
"@codemirror/rangeset": "^0.18.0",
"@codemirror/state": "^0.18.0",
"@codemirror/view": "^0.18.0",
"lezer-tree": "^0.13.0",
"style-mod": "^4.0.0"
},
"dependencies": {
"@codemirror/view": {
"version": "0.18.19",
"resolved": "https://registry.npmjs.org/@codemirror/view/-/view-0.18.19.tgz",
"integrity": "sha512-TmazVl8H3L+aYwlNb8xk6qADRb8KiYOO047pz51R4mGCg4Ja2siSjXktZgUvklsyWbUY7h9q+oAf4piH+mQZTw==",
"requires": {
"@codemirror/rangeset": "^0.18.2",
"@codemirror/state": "^0.18.0",
"@codemirror/text": "^0.18.1",
"style-mod": "^4.0.0",
"w3c-keyname": "^2.2.4"
}
}
}
},
"@codemirror/history": {
"version": "0.18.1",
"resolved": "https://registry.npmjs.org/@codemirror/history/-/history-0.18.1.tgz",
"integrity": "sha512-Aad3p4zs6UYKCUMXYjh7cvPK0ajuL+rMib9yBZ61w81LLl6OkM31Xrn9J6CLJmPxCwP3OJFiqBmNSBQ05oIsTw==",
"requires": {
"@codemirror/state": "^0.18.3",
"@codemirror/view": "^0.18.0"
},
"dependencies": {
"@codemirror/view": {
"version": "0.18.19",
"resolved": "https://registry.npmjs.org/@codemirror/view/-/view-0.18.19.tgz",
"integrity": "sha512-TmazVl8H3L+aYwlNb8xk6qADRb8KiYOO047pz51R4mGCg4Ja2siSjXktZgUvklsyWbUY7h9q+oAf4piH+mQZTw==",
"requires": {
"@codemirror/rangeset": "^0.18.2",
"@codemirror/state": "^0.18.0",
"@codemirror/text": "^0.18.1",
"style-mod": "^4.0.0",
"w3c-keyname": "^2.2.4"
}
}
}
},
"@codemirror/lang-css": {
"version": "0.18.0",
"resolved": "https://registry.npmjs.org/@codemirror/lang-css/-/lang-css-0.18.0.tgz",
"integrity": "sha512-kkU4Ug387eJoCTDDkMbXrcPBMiJ0lFWbvDaFHIuJtrMgDXJzSQ/ehx6Ife5PUBfuLU/x1JQUBdmXhW1TJzfHug==",
"requires": {
"@codemirror/autocomplete": "^0.18.0",
"@codemirror/highlight": "^0.18.0",
"@codemirror/language": "^0.18.0",
"@codemirror/state": "^0.18.0",
"lezer-css": "^0.13.0"
}
},
"@codemirror/lang-html": {
"version": "0.18.1",
"resolved": "https://registry.npmjs.org/@codemirror/lang-html/-/lang-html-0.18.1.tgz",
"integrity": "sha512-NF/QkSiGiDQGF99x/gcr1oybLQRqspQ+N8HH1SSihkKjmrQBOi7yZ4jUHAmmDEU43ujDqueGZfdqg0WhyOx2CA==",
"requires": {
"@codemirror/autocomplete": "^0.18.0",
"@codemirror/highlight": "^0.18.0",
"@codemirror/lang-css": "^0.18.0",
"@codemirror/lang-javascript": "^0.18.0",
"@codemirror/language": "^0.18.0",
"@codemirror/state": "^0.18.0",
"lezer-html": "^0.13.5",
"lezer-tree": "^0.13.0"
},
"dependencies": {
"@codemirror/lang-javascript": {
"version": "0.18.0",
"resolved": "https://registry.npmjs.org/@codemirror/lang-javascript/-/lang-javascript-0.18.0.tgz",
"integrity": "sha512-4KOkwXED9v39c17pIWoy+WKrNAYaKnAR/RRF8QZIqpuYjnMwGTe7GxMKKdq7E557fGzCVr7m34Qy7Gkhr5B41g==",
"requires": {
"@codemirror/autocomplete": "^0.18.0",
"@codemirror/highlight": "^0.18.0",
"@codemirror/language": "^0.18.0",
"@codemirror/lint": "^0.18.0",
"@codemirror/state": "^0.18.0",
"@codemirror/view": "^0.18.0",
"lezer-javascript": "^0.13.0"
}
},
"@codemirror/view": {
"version": "0.18.19",
"resolved": "https://registry.npmjs.org/@codemirror/view/-/view-0.18.19.tgz",
"integrity": "sha512-TmazVl8H3L+aYwlNb8xk6qADRb8KiYOO047pz51R4mGCg4Ja2siSjXktZgUvklsyWbUY7h9q+oAf4piH+mQZTw==",
"requires": {
"@codemirror/rangeset": "^0.18.2",
"@codemirror/state": "^0.18.0",
"@codemirror/text": "^0.18.1",
"style-mod": "^4.0.0",
"w3c-keyname": "^2.2.4"
}
}
}
},
"@codemirror/lang-markdown": {
"version": "0.18.4",
"resolved": "https://registry.npmjs.org/@codemirror/lang-markdown/-/lang-markdown-0.18.4.tgz",
"integrity": "sha512-2f9frJehGlcUjbaZ17Nmsukrob/wT371sxIlXq71RVlZSyt6D665LcKXWMqHmUdg11BeuMU/A7eRfmUed984pQ==",
"requires": {
"@codemirror/highlight": "^0.18.4",
"@codemirror/lang-html": "^0.18.0",
"@codemirror/language": "^0.18.1",
"@codemirror/state": "^0.18.0",
"@codemirror/view": "^0.18.0",
"lezer-markdown": "^0.14.3",
"lezer-tree": "^0.13.0"
},
"dependencies": {
"@codemirror/view": {
"version": "0.18.19",
"resolved": "https://registry.npmjs.org/@codemirror/view/-/view-0.18.19.tgz",
"integrity": "sha512-TmazVl8H3L+aYwlNb8xk6qADRb8KiYOO047pz51R4mGCg4Ja2siSjXktZgUvklsyWbUY7h9q+oAf4piH+mQZTw==",
"requires": {
"@codemirror/rangeset": "^0.18.2",
"@codemirror/state": "^0.18.0",
"@codemirror/text": "^0.18.1",
"style-mod": "^4.0.0",
"w3c-keyname": "^2.2.4"
}
}
}
},
"@codemirror/language": {
"version": "0.18.2",
"resolved": "https://registry.npmjs.org/@codemirror/language/-/language-0.18.2.tgz",
"integrity": "sha512-2Kz0Xyfvt1Ex2KfTUcYZ3IBxpnFCqHaJijwZknGBT7JXv9dwbOPs9SfPfL4oxVuDIHZx8JTPfoV3LTTJrm8M3Q==",
"requires": {
"@codemirror/state": "^0.18.0",
"@codemirror/text": "^0.18.0",
"@codemirror/view": "^0.18.0",
"lezer": "^0.13.4",
"lezer-tree": "^0.13.0"
},
"dependencies": {
"@codemirror/view": {
"version": "0.18.19",
"resolved": "https://registry.npmjs.org/@codemirror/view/-/view-0.18.19.tgz",
"integrity": "sha512-TmazVl8H3L+aYwlNb8xk6qADRb8KiYOO047pz51R4mGCg4Ja2siSjXktZgUvklsyWbUY7h9q+oAf4piH+mQZTw==",
"requires": {
"@codemirror/rangeset": "^0.18.2",
"@codemirror/state": "^0.18.0",
"@codemirror/text": "^0.18.1",
"style-mod": "^4.0.0",
"w3c-keyname": "^2.2.4"
}
}
}
},
"@codemirror/lint": {
"version": "0.18.6",
"resolved": "https://registry.npmjs.org/@codemirror/lint/-/lint-0.18.6.tgz",
"integrity": "sha512-juE05YyDoLp9WCcR0hQagphOCIZ0r4WRocRFu9tbFwsMjfuForjn4m+wsLSDaDgp2Z9secMyOSGDpBNtVwM9lQ==",
"requires": {
"@codemirror/panel": "^0.18.1",
"@codemirror/state": "^0.18.0",
"@codemirror/tooltip": "^0.18.4",
"@codemirror/view": "^0.18.0",
"crelt": "^1.0.5"
},
"dependencies": {
"@codemirror/view": {
"version": "0.18.19",
"resolved": "https://registry.npmjs.org/@codemirror/view/-/view-0.18.19.tgz",
"integrity": "sha512-TmazVl8H3L+aYwlNb8xk6qADRb8KiYOO047pz51R4mGCg4Ja2siSjXktZgUvklsyWbUY7h9q+oAf4piH+mQZTw==",
"requires": {
"@codemirror/rangeset": "^0.18.2",
"@codemirror/state": "^0.18.0",
"@codemirror/text": "^0.18.1",
"style-mod": "^4.0.0",
"w3c-keyname": "^2.2.4"
}
}
}
},
"@codemirror/matchbrackets": {
"version": "0.18.0",
"resolved": "https://registry.npmjs.org/@codemirror/matchbrackets/-/matchbrackets-0.18.0.tgz",
"integrity": "sha512-dPDopnZVkD54sSYdmQbyQbPdiuIA83p7XxX6Hp1ScEkOjukwCiFXiA/84x10FUTsQpUYp8bDzm7gwII119bGIw==",
"requires": {
"@codemirror/language": "^0.18.0",
"@codemirror/state": "^0.18.0",
"@codemirror/view": "^0.18.0",
"lezer-tree": "^0.13.0"
},
"dependencies": {
"@codemirror/view": {
"version": "0.18.19",
"resolved": "https://registry.npmjs.org/@codemirror/view/-/view-0.18.19.tgz",
"integrity": "sha512-TmazVl8H3L+aYwlNb8xk6qADRb8KiYOO047pz51R4mGCg4Ja2siSjXktZgUvklsyWbUY7h9q+oAf4piH+mQZTw==",
"requires": {
"@codemirror/rangeset": "^0.18.2",
"@codemirror/state": "^0.18.0",
"@codemirror/text": "^0.18.1",
"style-mod": "^4.0.0",
"w3c-keyname": "^2.2.4"
}
}
}
},
"@codemirror/panel": {
"version": "0.18.2",
"resolved": "https://registry.npmjs.org/@codemirror/panel/-/panel-0.18.2.tgz",
"integrity": "sha512-ea/g2aAKtfmie1kD7C8GDutD/5u+uzRJr/varUiAbHKr1sAdjtz5xYvC3GBAMYMan1GOh0vD5zP1yEupJl3b3Q==",
"requires": {
"@codemirror/state": "^0.18.0",
"@codemirror/view": "^0.18.0"
},
"dependencies": {
"@codemirror/view": {
"version": "0.18.19",
"resolved": "https://registry.npmjs.org/@codemirror/view/-/view-0.18.19.tgz",
"integrity": "sha512-TmazVl8H3L+aYwlNb8xk6qADRb8KiYOO047pz51R4mGCg4Ja2siSjXktZgUvklsyWbUY7h9q+oAf4piH+mQZTw==",
"requires": {
"@codemirror/rangeset": "^0.18.2",
"@codemirror/state": "^0.18.0",
"@codemirror/text": "^0.18.1",
"style-mod": "^4.0.0",
"w3c-keyname": "^2.2.4"
}
}
}
},
"@codemirror/rangeset": {
"version": "0.18.5",
"resolved": "https://registry.npmjs.org/@codemirror/rangeset/-/rangeset-0.18.5.tgz",
"integrity": "sha512-gvYniNeEbGRp74MM8EQ+0tylK85pVody4r4N5bs94msPwHQSKFkEmosl8tVmS0Z4e8gRtlB37m8/cWoRiuSz5Q==",
"requires": {
"@codemirror/state": "^0.18.0"
}
},
"@codemirror/rectangular-selection": {
"version": "0.18.1",
"resolved": "https://registry.npmjs.org/@codemirror/rectangular-selection/-/rectangular-selection-0.18.1.tgz",
"integrity": "sha512-WpdIo6wyxamncvSZQEO1xsZArRnE5/NtNGnuLCjYUkW5JepdYtEJzIE9czaJqxVGrCBs//Lv58CbGX77/1GAoA==",
"requires": {
"@codemirror/state": "^0.18.0",
"@codemirror/text": "^0.18.1",
"@codemirror/view": "^0.18.18"
},
"dependencies": {
"@codemirror/view": {
"version": "0.18.19",
"resolved": "https://registry.npmjs.org/@codemirror/view/-/view-0.18.19.tgz",
"integrity": "sha512-TmazVl8H3L+aYwlNb8xk6qADRb8KiYOO047pz51R4mGCg4Ja2siSjXktZgUvklsyWbUY7h9q+oAf4piH+mQZTw==",
"requires": {
"@codemirror/rangeset": "^0.18.2",
"@codemirror/state": "^0.18.0",
"@codemirror/text": "^0.18.1",
"style-mod": "^4.0.0",
"w3c-keyname": "^2.2.4"
}
}
}
},
"@codemirror/search": {
"version": "0.18.4",
"resolved": "https://registry.npmjs.org/@codemirror/search/-/search-0.18.4.tgz",
"integrity": "sha512-3chVkMPzl+pTUSqtimTicebhti4SLpvkj03pQx2aPZScXxIiYuDk4cLdIJK9omjmO1+oycRKbOrqvG7iZJJwMg==",
"requires": {
"@codemirror/panel": "^0.18.1",
"@codemirror/rangeset": "^0.18.0",
"@codemirror/state": "^0.18.6",
"@codemirror/text": "^0.18.0",
"@codemirror/view": "^0.18.0",
"crelt": "^1.0.5"
},
"dependencies": {
"@codemirror/view": {
"version": "0.18.19",
"resolved": "https://registry.npmjs.org/@codemirror/view/-/view-0.18.19.tgz",
"integrity": "sha512-TmazVl8H3L+aYwlNb8xk6qADRb8KiYOO047pz51R4mGCg4Ja2siSjXktZgUvklsyWbUY7h9q+oAf4piH+mQZTw==",
"requires": {
"@codemirror/rangeset": "^0.18.2",
"@codemirror/state": "^0.18.0",
"@codemirror/text": "^0.18.1",
"style-mod": "^4.0.0",
"w3c-keyname": "^2.2.4"
}
}
}
},
"@codemirror/state": {
"version": "0.18.7",
"resolved": "https://registry.npmjs.org/@codemirror/state/-/state-0.18.7.tgz",
"integrity": "sha512-cVyTiAC9vv90NKmGOfNtBjyIem3BqKui1L5Hfcxurp8K9votQj2oH9COcgWPnQ2Xs64yC70tEuTt9DF1pj5PFQ==",
"requires": {
"@codemirror/text": "^0.18.0"
}
},
"@codemirror/text": {
"version": "0.18.1",
"resolved": "https://registry.npmjs.org/@codemirror/text/-/text-0.18.1.tgz",
"integrity": "sha512-vjXs6mi1F418kucTPlFvnCt9glKnjtYssdXb8mm1oaY/F5O+tgGVepm9Z8F7AKWCQvW8Bns1D3uLz/DOIEywIw=="
},
"@codemirror/theme-one-dark": {
"version": "0.18.1",
"resolved": "https://registry.npmjs.org/@codemirror/theme-one-dark/-/theme-one-dark-0.18.1.tgz",
"integrity": "sha512-0XRfWYDfwUlPlN8yrO7bDB+EuHFqUNhTJwgp2iIixZWejuZQK0NxKmjuhkiGsEz25w7toM12uUsNJ5mo7iFQcA==",
"requires": {
"@codemirror/highlight": "^0.18.0",
"@codemirror/state": "^0.18.0",
"@codemirror/view": "^0.18.0"
},
"dependencies": {
"@codemirror/view": {
"version": "0.18.19",
"resolved": "https://registry.npmjs.org/@codemirror/view/-/view-0.18.19.tgz",
"integrity": "sha512-TmazVl8H3L+aYwlNb8xk6qADRb8KiYOO047pz51R4mGCg4Ja2siSjXktZgUvklsyWbUY7h9q+oAf4piH+mQZTw==",
"requires": {
"@codemirror/rangeset": "^0.18.2",
"@codemirror/state": "^0.18.0",
"@codemirror/text": "^0.18.1",
"style-mod": "^4.0.0",
"w3c-keyname": "^2.2.4"
}
}
}
},
"@codemirror/tooltip": {
"version": "0.18.4",
"resolved": "https://registry.npmjs.org/@codemirror/tooltip/-/tooltip-0.18.4.tgz",
"integrity": "sha512-LDlDOSEfjoG24uapLN7exK3Z3JchYFKUwWqo1x/9YdlAkmD1ik7cMSQZboCquP1uJVcXhtbpKmaO6vENGVaarg==",
"requires": {
"@codemirror/state": "^0.18.0",
"@codemirror/view": "^0.18.0"
},
"dependencies": {
"@codemirror/view": {
"version": "0.18.19",
"resolved": "https://registry.npmjs.org/@codemirror/view/-/view-0.18.19.tgz",
"integrity": "sha512-TmazVl8H3L+aYwlNb8xk6qADRb8KiYOO047pz51R4mGCg4Ja2siSjXktZgUvklsyWbUY7h9q+oAf4piH+mQZTw==",
"requires": {
"@codemirror/rangeset": "^0.18.2",
"@codemirror/state": "^0.18.0",
"@codemirror/text": "^0.18.1",
"style-mod": "^4.0.0",
"w3c-keyname": "^2.2.4"
}
}
}
},
"@commitlint/cli": {
"version": "13.2.1",
"resolved": "https://registry.npmjs.org/@commitlint/cli/-/cli-13.2.1.tgz",
"integrity": "sha512-JGzYk2ay5JkRS5w+FLQzr0u/Kih52ds4HPpa3vnwVOQN8Q+S1VYr8Nk/6kRm6uNYsAcC1nejtuDxRdLcLh/9TA==",
"dev": true,
"requires": {
"@commitlint/format": "^13.2.0",
"@commitlint/lint": "^13.2.0",
"@commitlint/load": "^13.2.1",
"@commitlint/read": "^13.2.0",
"@commitlint/types": "^13.2.0",
"lodash": "^4.17.19",
"resolve-from": "5.0.0",
"resolve-global": "1.0.0",
"yargs": "^17.0.0"
}
},
"@commitlint/config-conventional": {
"version": "13.2.0",
"resolved": "https://registry.npmjs.org/@commitlint/config-conventional/-/config-conventional-13.2.0.tgz",
"integrity": "sha512-7u7DdOiF+3qSdDlbQGfpvCH8DCQdLFvnI2+VucYmmV7E92iD6t9PBj+UjIoSQCaMAzYp27Vkall78AkcXBh6Xw==",
"dev": true,
"requires": {
"conventional-changelog-conventionalcommits": "^4.3.1"
}
},
"@commitlint/ensure": {
"version": "13.2.0",
"resolved": "https://registry.npmjs.org/@commitlint/ensure/-/ensure-13.2.0.tgz",
"integrity": "sha512-rqhT62RehdLTRBu8OrPHnRCCd/7RmHEE4TiTlT4BLlr5ls5jlZhecOQWJ8np872uCNirrJ5NFjnjYYdbkNoW9Q==",
"dev": true,
"requires": {
"@commitlint/types": "^13.2.0",
"lodash": "^4.17.19"
}
},
"@commitlint/execute-rule": {
"version": "13.2.0",
"resolved": "https://registry.npmjs.org/@commitlint/execute-rule/-/execute-rule-13.2.0.tgz",
"integrity": "sha512-6nPwpN0hwTYmsH3WM4hCdN+NrMopgRIuQ0aqZa+jnwMoS/g6ljliQNYfL+m5WO306BaIu1W3yYpbW5aI8gEr0g==",
"dev": true
},
"@commitlint/format": {
"version": "13.2.0",
"resolved": "https://registry.npmjs.org/@commitlint/format/-/format-13.2.0.tgz",
"integrity": "sha512-yNBQJe6YFhM1pJAta4LvzQxccSKof6axJH7ALYjuhQqfT8AKlad7Y/2SuJ07ioyreNIqwOTuF2UfU8yJ7JzEIQ==",
"dev": true,
"requires": {
"@commitlint/types": "^13.2.0",
"chalk": "^4.0.0"
}
},
"@commitlint/is-ignored": {
"version": "13.2.0",
"resolved": "https://registry.npmjs.org/@commitlint/is-ignored/-/is-ignored-13.2.0.tgz",
"integrity": "sha512-onnx4WctHFPPkHGFFAZBIWRSaNwuhixIIfbwPhcZ6IewwQX5n4jpjwM1GokA7vhlOnQ57W7AavbKUGjzIVtnRQ==",
"dev": true,
"requires": {
"@commitlint/types": "^13.2.0",
"semver": "7.3.5"
}
},
"@commitlint/lint": {
"version": "13.2.0",
"resolved": "https://registry.npmjs.org/@commitlint/lint/-/lint-13.2.0.tgz",
"integrity": "sha512-5XYkh0e9ehHjA7BxAHFpjPgr1qqbFY8OFG1wpBiAhycbYBtJnQmculA2wcwqTM40YCUBqEvWFdq86jTG8fbkMw==",
"dev": true,
"requires": {
"@commitlint/is-ignored": "^13.2.0",
"@commitlint/parse": "^13.2.0",
"@commitlint/rules": "^13.2.0",
"@commitlint/types": "^13.2.0"
}
},
"@commitlint/load": {
"version": "13.2.1",
"resolved": "https://registry.npmjs.org/@commitlint/load/-/load-13.2.1.tgz",
"integrity": "sha512-qlaJkj0hfa9gtWRfCfbgFBTK3GYQRmjZhba4l9mUu4wV9lEZ4ICFlrLtd/8kaLXf/8xbrPhkAPkVFOAqM0YwUQ==",
"dev": true,
"requires": {
"@commitlint/execute-rule": "^13.2.0",
"@commitlint/resolve-extends": "^13.2.0",
"@commitlint/types": "^13.2.0",
"@endemolshinegroup/cosmiconfig-typescript-loader": "^3.0.2",
"chalk": "^4.0.0",
"cosmiconfig": "^7.0.0",
"lodash": "^4.17.19",
"resolve-from": "^5.0.0",
"typescript": "^4.4.3"
}
},
"@commitlint/message": {
"version": "13.2.0",
"resolved": "https://registry.npmjs.org/@commitlint/message/-/message-13.2.0.tgz",
"integrity": "sha512-+LlErJj2F2AC86xJb33VJIvSt25xqSF1I0b0GApSgoUtQBeJhx4SxIj1BLvGcLVmbRmbgTzAFq/QylwLId7EhA==",
"dev": true
},
"@commitlint/parse": {
"version": "13.2.0",
"resolved": "https://registry.npmjs.org/@commitlint/parse/-/parse-13.2.0.tgz",
"integrity": "sha512-AtfKSQJQADbDhW+kuC5PxOyBANsYCuuJlZRZ2PYslOz2rvWwZ93zt+nKjM4g7C9ETbz0uq4r7/EoOsTJ2nJqfQ==",
"dev": true,
"requires": {
"@commitlint/types": "^13.2.0",
"conventional-changelog-angular": "^5.0.11",
"conventional-commits-parser": "^3.2.2"
}
},
"@commitlint/read": {
"version": "13.2.0",
"resolved": "https://registry.npmjs.org/@commitlint/read/-/read-13.2.0.tgz",
"integrity": "sha512-7db5e1Bn3re6hQN0SqygTMF/QX6/MQauoJn3wJiUHE93lvwO6aFQxT3qAlYeyBPwfWsmDz/uSH454jtrSsv3Uw==",
"dev": true,
"requires": {
"@commitlint/top-level": "^13.2.0",
"@commitlint/types": "^13.2.0",
"fs-extra": "^10.0.0",
"git-raw-commits": "^2.0.0"
}
},
"@commitlint/resolve-extends": {
"version": "13.2.0",
"resolved": "https://registry.npmjs.org/@commitlint/resolve-extends/-/resolve-extends-13.2.0.tgz",
"integrity": "sha512-HLCMkqMKtvl1yYLZ1Pm0UpFvd0kYjsm1meLOGZ7VkOd9G/XX+Fr1S2G5AT2zeiDw7WUVYK8lGVMNa319bnV+aw==",
"dev": true,
"requires": {
"import-fresh": "^3.0.0",
"lodash": "^4.17.19",
"resolve-from": "^5.0.0",
"resolve-global": "^1.0.0"
}
},
"@commitlint/rules": {
"version": "13.2.0",
"resolved": "https://registry.npmjs.org/@commitlint/rules/-/rules-13.2.0.tgz",
"integrity": "sha512-O3A9S7blOzvHfzrJrUQe9JxdtGy154ol/GXHwvd8WfMJ10y5ryBB4b6+0YZ1XhItWzrEASOfOKbD++EdLV90dQ==",
"dev": true,
"requires": {
"@commitlint/ensure": "^13.2.0",
"@commitlint/message": "^13.2.0",
"@commitlint/to-lines": "^13.2.0",
"@commitlint/types": "^13.2.0",
"execa": "^5.0.0"
}
},
"@commitlint/to-lines": {
"version": "13.2.0",
"resolved": "https://registry.npmjs.org/@commitlint/to-lines/-/to-lines-13.2.0.tgz",
"integrity": "sha512-ZfWZix2y/CzewReCrj5g0nKOEfj5HW9eBMDrqjJJMPApve00CWv0tYrFCGXuGlv244lW4uvWJt6J/0HLRWsfyg==",
"dev": true
},
"@commitlint/top-level": {
"version": "13.2.0",
"resolved": "https://registry.npmjs.org/@commitlint/top-level/-/top-level-13.2.0.tgz",
"integrity": "sha512-knBvWYbIq6VV6VPHrVeDsxDiJq4Zq6cv5NIYU3iesKAsmK2KlLfsZPa+Ig96Y4AqAPU3zNJwjHxYkz9qxdBbfA==",
"dev": true,
"requires": {
"find-up": "^5.0.0"
},
"dependencies": {
"find-up": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
"integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
"dev": true,
"requires": {
"locate-path": "^6.0.0",
"path-exists": "^4.0.0"
}
},
"locate-path": {
"version": "6.0.0",
"resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
"integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
"dev": true,
"requires": {
"p-locate": "^5.0.0"
}
},
"p-locate": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
"integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
"dev": true,
"requires": {
"p-limit": "^3.0.2"
}
}
}
},
"@commitlint/types": {
"version": "13.2.0",
"resolved": "https://registry.npmjs.org/@commitlint/types/-/types-13.2.0.tgz",
"integrity": "sha512-RRVHEqmk1qn/dIaSQhvuca6k/6Z54G+r/KyimZ8gnAFielGiGUpsFRhIY3qhd5rXClVxDaa3nlcyTWckSccotQ==",
"dev": true,
"requires": {
"chalk": "^4.0.0"
}
},
"@emotion/cache": {
"version": "11.7.1",
"resolved": "https://registry.npmjs.org/@emotion/cache/-/cache-11.7.1.tgz",
"integrity": "sha512-r65Zy4Iljb8oyjtLeCuBH8Qjiy107dOYC6SJq7g7GV5UCQWMObY4SJDPGFjiiVpPrOJ2hmJOoBiYTC7hwx9E2A==",
"requires": {
"@emotion/memoize": "^0.7.4",
"@emotion/sheet": "^1.1.0",
"@emotion/utils": "^1.0.0",
"@emotion/weak-memoize": "^0.2.5",
"stylis": "4.0.13"
},
"dependencies": {
"stylis": {
"version": "4.0.13",
"resolved": "https://registry.npmjs.org/stylis/-/stylis-4.0.13.tgz",
"integrity": "sha512-xGPXiFVl4YED9Jh7Euv2V220mriG9u4B2TA6Ybjc1catrstKD2PpIdU3U0RKpkVBC2EhmL/F0sPCr9vrFTNRag=="
}
}
},
"@emotion/hash": {
"version": "0.8.0",
"resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.8.0.tgz",
"integrity": "sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow=="
},
"@emotion/is-prop-valid": {
"version": "0.8.8",
"resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz",
"integrity": "sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==",
"requires": {
"@emotion/memoize": "0.7.4"
},
"dependencies": {
"@emotion/memoize": {
"version": "0.7.4",
"resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.4.tgz",
"integrity": "sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw=="
}
}
},
"@emotion/memoize": {
"version": "0.7.5",
"resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.5.tgz",
"integrity": "sha512-igX9a37DR2ZPGYtV6suZ6whr8pTFtyHL3K/oLUotxpSVO2ASaprmAe2Dkq7tBo7CRY7MMDrAa9nuQP9/YG8FxQ=="
},
"@emotion/react": {
"version": "11.7.1",
"resolved": "https://registry.npmjs.org/@emotion/react/-/react-11.7.1.tgz",
"integrity": "sha512-DV2Xe3yhkF1yT4uAUoJcYL1AmrnO5SVsdfvu+fBuS7IbByDeTVx9+wFmvx9Idzv7/78+9Mgx2Hcmr7Fex3tIyw==",
"requires": {
"@babel/runtime": "^7.13.10",
"@emotion/cache": "^11.7.1",
"@emotion/serialize": "^1.0.2",
"@emotion/sheet": "^1.1.0",
"@emotion/utils": "^1.0.0",
"@emotion/weak-memoize": "^0.2.5",
"hoist-non-react-statics": "^3.3.1"
}
},
"@emotion/serialize": {
"version": "1.0.2",