-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
2986 lines (2559 loc) · 117 KB
/
yarn.lock
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
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
# yarn lockfile v1
"@babel/code-frame@^7.10.4", "@babel/code-frame@^7.12.11", "@babel/code-frame@^7.12.13":
"integrity" "sha512-HV1Cm0Q3ZrpCR93tkWOYiuYIgLxZXZFVG2VgK+MBWjUqZTundupbfx2aXarXuw5Ko5aMcjtJgbSs4vUGBS5v6g=="
"resolved" "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.13.tgz"
"version" "7.12.13"
dependencies:
"@babel/highlight" "^7.12.13"
"@babel/compat-data@^7.13.0":
"integrity" "sha512-+c3G3S8n5ziRyfLybmgm9Y6KgoCni+s0hkV0I5bIpGWhu8uqEQo/VGnETY8YS6PFwedAoXOqfe4FhrvbtsLu+Q=="
"resolved" "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.13.5.tgz"
"version" "7.13.5"
"@babel/core@^7.0.0", "@babel/core@^7.0.0-0":
"integrity" "sha512-FzeKfFBG2rmFtGiiMdXZPFt/5R5DXubVi82uYhjGX4Msf+pgYQMCFIqFXZWs5vbIYbf14VeBIgdGI03CDOOM1w=="
"resolved" "https://registry.npmjs.org/@babel/core/-/core-7.13.1.tgz"
"version" "7.13.1"
dependencies:
"@babel/code-frame" "^7.12.13"
"@babel/generator" "^7.13.0"
"@babel/helper-compilation-targets" "^7.13.0"
"@babel/helper-module-transforms" "^7.13.0"
"@babel/helpers" "^7.13.0"
"@babel/parser" "^7.13.0"
"@babel/template" "^7.12.13"
"@babel/traverse" "^7.13.0"
"@babel/types" "^7.13.0"
"convert-source-map" "^1.7.0"
"debug" "^4.1.0"
"gensync" "^1.0.0-beta.2"
"json5" "^2.1.2"
"lodash" "^4.17.19"
"semver" "7.0.0"
"source-map" "^0.5.0"
"@babel/generator@^7.13.0":
"integrity" "sha512-zBZfgvBB/ywjx0Rgc2+BwoH/3H+lDtlgD4hBOpEv5LxRnYsm/753iRuLepqnYlynpjC3AdQxtxsoeHJoEEwOAw=="
"resolved" "https://registry.npmjs.org/@babel/generator/-/generator-7.13.0.tgz"
"version" "7.13.0"
dependencies:
"@babel/types" "^7.13.0"
"jsesc" "^2.5.1"
"source-map" "^0.5.0"
"@babel/helper-compilation-targets@^7.13.0":
"integrity" "sha512-SOWD0JK9+MMIhTQiUVd4ng8f3NXhPVQvTv7D3UN4wbp/6cAHnB2EmMaU1zZA2Hh1gwme+THBrVSqTFxHczTh0Q=="
"resolved" "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.13.0.tgz"
"version" "7.13.0"
dependencies:
"@babel/compat-data" "^7.13.0"
"@babel/helper-validator-option" "^7.12.17"
"browserslist" "^4.14.5"
"semver" "7.0.0"
"@babel/helper-function-name@^7.12.13":
"integrity" "sha512-TZvmPn0UOqmvi5G4vvw0qZTpVptGkB1GL61R6lKvrSdIxGm5Pky7Q3fpKiIkQCAtRCBUwB0PaThlx9vebCDSwA=="
"resolved" "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.12.13.tgz"
"version" "7.12.13"
dependencies:
"@babel/helper-get-function-arity" "^7.12.13"
"@babel/template" "^7.12.13"
"@babel/types" "^7.12.13"
"@babel/helper-get-function-arity@^7.12.13":
"integrity" "sha512-DjEVzQNz5LICkzN0REdpD5prGoidvbdYk1BVgRUOINaWJP2t6avB27X1guXK1kXNrX0WMfsrm1A/ZBthYuIMQg=="
"resolved" "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.13.tgz"
"version" "7.12.13"
dependencies:
"@babel/types" "^7.12.13"
"@babel/helper-member-expression-to-functions@^7.13.0":
"integrity" "sha512-yvRf8Ivk62JwisqV1rFRMxiSMDGnN6KH1/mDMmIrij4jztpQNRoHqqMG3U6apYbGRPJpgPalhva9Yd06HlUxJQ=="
"resolved" "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.13.0.tgz"
"version" "7.13.0"
dependencies:
"@babel/types" "^7.13.0"
"@babel/helper-module-imports@^7.12.13":
"integrity" "sha512-NGmfvRp9Rqxy0uHSSVP+SRIW1q31a7Ji10cLBcqSDUngGentY4FRiHOFZFE1CLU5eiL0oE8reH7Tg1y99TDM/g=="
"resolved" "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.13.tgz"
"version" "7.12.13"
dependencies:
"@babel/types" "^7.12.13"
"@babel/helper-module-transforms@^7.13.0":
"integrity" "sha512-Ls8/VBwH577+pw7Ku1QkUWIyRRNHpYlts7+qSqBBFCW3I8QteB9DxfcZ5YJpOwH6Ihe/wn8ch7fMGOP1OhEIvw=="
"resolved" "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.13.0.tgz"
"version" "7.13.0"
dependencies:
"@babel/helper-module-imports" "^7.12.13"
"@babel/helper-replace-supers" "^7.13.0"
"@babel/helper-simple-access" "^7.12.13"
"@babel/helper-split-export-declaration" "^7.12.13"
"@babel/helper-validator-identifier" "^7.12.11"
"@babel/template" "^7.12.13"
"@babel/traverse" "^7.13.0"
"@babel/types" "^7.13.0"
"lodash" "^4.17.19"
"@babel/helper-optimise-call-expression@^7.12.13":
"integrity" "sha512-BdWQhoVJkp6nVjB7nkFWcn43dkprYauqtk++Py2eaf/GRDFm5BxRqEIZCiHlZUGAVmtwKcsVL1dC68WmzeFmiA=="
"resolved" "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.13.tgz"
"version" "7.12.13"
dependencies:
"@babel/types" "^7.12.13"
"@babel/helper-plugin-utils@^7.12.13":
"integrity" "sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ=="
"resolved" "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz"
"version" "7.13.0"
"@babel/helper-replace-supers@^7.13.0":
"integrity" "sha512-Segd5me1+Pz+rmN/NFBOplMbZG3SqRJOBlY+mA0SxAv6rjj7zJqr1AVr3SfzUVTLCv7ZLU5FycOM/SBGuLPbZw=="
"resolved" "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.13.0.tgz"
"version" "7.13.0"
dependencies:
"@babel/helper-member-expression-to-functions" "^7.13.0"
"@babel/helper-optimise-call-expression" "^7.12.13"
"@babel/traverse" "^7.13.0"
"@babel/types" "^7.13.0"
"@babel/helper-simple-access@^7.12.13":
"integrity" "sha512-0ski5dyYIHEfwpWGx5GPWhH35j342JaflmCeQmsPWcrOQDtCN6C1zKAVRFVbK53lPW2c9TsuLLSUDf0tIGJ5hA=="
"resolved" "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.12.13.tgz"
"version" "7.12.13"
dependencies:
"@babel/types" "^7.12.13"
"@babel/helper-split-export-declaration@^7.12.13":
"integrity" "sha512-tCJDltF83htUtXx5NLcaDqRmknv652ZWCHyoTETf1CXYJdPC7nohZohjUgieXhv0hTJdRf2FjDueFehdNucpzg=="
"resolved" "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.13.tgz"
"version" "7.12.13"
dependencies:
"@babel/types" "^7.12.13"
"@babel/helper-validator-identifier@^7.12.11":
"integrity" "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw=="
"resolved" "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz"
"version" "7.12.11"
"@babel/helper-validator-option@^7.12.17":
"integrity" "sha512-TopkMDmLzq8ngChwRlyjR6raKD6gMSae4JdYDB8bByKreQgG0RBTuKe9LRxW3wFtUnjxOPRKBDwEH6Mg5KeDfw=="
"resolved" "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.12.17.tgz"
"version" "7.12.17"
"@babel/helpers@^7.13.0":
"integrity" "sha512-aan1MeFPxFacZeSz6Ld7YZo5aPuqnKlD7+HZY75xQsueczFccP9A7V05+oe0XpLwHK3oLorPe9eaAUljL7WEaQ=="
"resolved" "https://registry.npmjs.org/@babel/helpers/-/helpers-7.13.0.tgz"
"version" "7.13.0"
dependencies:
"@babel/template" "^7.12.13"
"@babel/traverse" "^7.13.0"
"@babel/types" "^7.13.0"
"@babel/highlight@^7.12.13":
"integrity" "sha512-kocDQvIbgMKlWxXe9fof3TQ+gkIPOUSEYhJjqUjvKMez3krV7vbzYCDq39Oj11UAVK7JqPVGQPlgE85dPNlQww=="
"resolved" "https://registry.npmjs.org/@babel/highlight/-/highlight-7.12.13.tgz"
"version" "7.12.13"
dependencies:
"@babel/helper-validator-identifier" "^7.12.11"
"chalk" "^2.0.0"
"js-tokens" "^4.0.0"
"@babel/parser@^7.12.13", "@babel/parser@^7.13.0":
"integrity" "sha512-uvoOulWHhI+0+1f9L4BoozY7U5cIkZ9PgJqvb041d6vypgUmtVPG4vmGm4pSggjl8BELzvHyUeJSUyEMY6b+qA=="
"resolved" "https://registry.npmjs.org/@babel/parser/-/parser-7.13.4.tgz"
"version" "7.13.4"
"@babel/plugin-syntax-class-properties@^7.10.0":
"integrity" "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz"
"version" "7.12.13"
dependencies:
"@babel/helper-plugin-utils" "^7.12.13"
"@babel/runtime-corejs3@^7.10.2":
"integrity" "sha512-W8GBjqrF1/zMrdus/epxngkjn5TGePhgAu1EJq8llEC2NmPsVipm6Emd39z/iPzyqwG2QUJXpy6qajHC5m6PGA=="
"resolved" "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.13.4.tgz"
"version" "7.13.4"
dependencies:
"core-js-pure" "^3.0.0"
"regenerator-runtime" "^0.13.4"
"@babel/runtime@^7.10.2", "@babel/runtime@^7.12.5", "@babel/runtime@^7.3.1", "@babel/runtime@^7.4.4", "@babel/runtime@^7.5.5", "@babel/runtime@^7.8.3", "@babel/runtime@^7.8.7":
"integrity" "sha512-pZLFG10nRL1hPF9J0/WdxjVuLEanSge8W3Ct+Kls9fNhD4vOi9bhuAU8DdNARvBE9GTg6UhQFcEIF1XhIZd9ZA=="
"resolved" "https://registry.npmjs.org/@babel/runtime/-/runtime-7.13.4.tgz"
"version" "7.13.4"
dependencies:
"regenerator-runtime" "^0.13.4"
"@babel/template@^7.12.13":
"integrity" "sha512-/7xxiGA57xMo/P2GVvdEumr8ONhFOhfgq2ihK3h1e6THqzTAkHbkXgB0xI9yeTfIUoH3+oAeHhqm/I43OTbbjA=="
"resolved" "https://registry.npmjs.org/@babel/template/-/template-7.12.13.tgz"
"version" "7.12.13"
dependencies:
"@babel/code-frame" "^7.12.13"
"@babel/parser" "^7.12.13"
"@babel/types" "^7.12.13"
"@babel/traverse@^7.13.0":
"integrity" "sha512-xys5xi5JEhzC3RzEmSGrs/b3pJW/o87SypZ+G/PhaE7uqVQNv/jlmVIBXuoh5atqQ434LfXV+sf23Oxj0bchJQ=="
"resolved" "https://registry.npmjs.org/@babel/traverse/-/traverse-7.13.0.tgz"
"version" "7.13.0"
dependencies:
"@babel/code-frame" "^7.12.13"
"@babel/generator" "^7.13.0"
"@babel/helper-function-name" "^7.12.13"
"@babel/helper-split-export-declaration" "^7.12.13"
"@babel/parser" "^7.13.0"
"@babel/types" "^7.13.0"
"debug" "^4.1.0"
"globals" "^11.1.0"
"lodash" "^4.17.19"
"@babel/types@^7.12.13", "@babel/types@^7.13.0":
"integrity" "sha512-hE+HE8rnG1Z6Wzo+MhaKE5lM5eMx71T4EHJgku2E3xIfaULhDcxiiRxUYgwX8qwP1BBSlag+TdGOt6JAidIZTA=="
"resolved" "https://registry.npmjs.org/@babel/types/-/types-7.13.0.tgz"
"version" "7.13.0"
dependencies:
"@babel/helper-validator-identifier" "^7.12.11"
"lodash" "^4.17.19"
"to-fast-properties" "^2.0.0"
"@emotion/hash@^0.8.0":
"integrity" "sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow=="
"resolved" "https://registry.npmjs.org/@emotion/hash/-/hash-0.8.0.tgz"
"version" "0.8.0"
"@jest/types@^26.6.2":
"integrity" "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ=="
"resolved" "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz"
"version" "26.6.2"
dependencies:
"@types/istanbul-lib-coverage" "^2.0.0"
"@types/istanbul-reports" "^3.0.0"
"@types/node" "*"
"@types/yargs" "^15.0.0"
"chalk" "^4.0.0"
"@material-ui/core@^4.0.0", "@material-ui/core@^4.11.3":
"integrity" "sha512-Adt40rGW6Uds+cAyk3pVgcErpzU/qxc7KBR94jFHBYretU4AtWZltYcNsbeMn9tXL86jjVL1kuGcIHsgLgFGRw=="
"resolved" "https://registry.npmjs.org/@material-ui/core/-/core-4.11.3.tgz"
"version" "4.11.3"
dependencies:
"@babel/runtime" "^7.4.4"
"@material-ui/styles" "^4.11.3"
"@material-ui/system" "^4.11.3"
"@material-ui/types" "^5.1.0"
"@material-ui/utils" "^4.11.2"
"@types/react-transition-group" "^4.2.0"
"clsx" "^1.0.4"
"hoist-non-react-statics" "^3.3.2"
"popper.js" "1.16.1-lts"
"prop-types" "^15.7.2"
"react-is" "^16.8.0 || ^17.0.0"
"react-transition-group" "^4.4.0"
"@material-ui/icons@^4.11.2":
"integrity" "sha512-fQNsKX2TxBmqIGJCSi3tGTO/gZ+eJgWmMJkgDiOfyNaunNaxcklJQFaFogYcFl0qFuaEz1qaXYXboa/bUXVSOQ=="
"resolved" "https://registry.npmjs.org/@material-ui/icons/-/icons-4.11.2.tgz"
"version" "4.11.2"
dependencies:
"@babel/runtime" "^7.4.4"
"@material-ui/styles@^4.11.3":
"integrity" "sha512-HzVzCG+PpgUGMUYEJ2rTEmQYeonGh41BYfILNFb/1ueqma+p1meSdu4RX6NjxYBMhf7k+jgfHFTTz+L1SXL/Zg=="
"resolved" "https://registry.npmjs.org/@material-ui/styles/-/styles-4.11.3.tgz"
"version" "4.11.3"
dependencies:
"@babel/runtime" "^7.4.4"
"@emotion/hash" "^0.8.0"
"@material-ui/types" "^5.1.0"
"@material-ui/utils" "^4.11.2"
"clsx" "^1.0.4"
"csstype" "^2.5.2"
"hoist-non-react-statics" "^3.3.2"
"jss" "^10.5.1"
"jss-plugin-camel-case" "^10.5.1"
"jss-plugin-default-unit" "^10.5.1"
"jss-plugin-global" "^10.5.1"
"jss-plugin-nested" "^10.5.1"
"jss-plugin-props-sort" "^10.5.1"
"jss-plugin-rule-value-function" "^10.5.1"
"jss-plugin-vendor-prefixer" "^10.5.1"
"prop-types" "^15.7.2"
"@material-ui/system@^4.11.3":
"integrity" "sha512-SY7otguNGol41Mu2Sg6KbBP1ZRFIbFLHGK81y4KYbsV2yIcaEPOmsCK6zwWlp+2yTV3J/VwT6oSBARtGIVdXPw=="
"resolved" "https://registry.npmjs.org/@material-ui/system/-/system-4.11.3.tgz"
"version" "4.11.3"
dependencies:
"@babel/runtime" "^7.4.4"
"@material-ui/utils" "^4.11.2"
"csstype" "^2.5.2"
"prop-types" "^15.7.2"
"@material-ui/types@^5.1.0":
"integrity" "sha512-7cqRjrY50b8QzRSYyhSpx4WRw2YuO0KKIGQEVk5J8uoz2BanawykgZGoWEqKm7pVIbzFDN0SpPcVV4IhOFkl8A=="
"resolved" "https://registry.npmjs.org/@material-ui/types/-/types-5.1.0.tgz"
"version" "5.1.0"
"@material-ui/utils@^4.11.2":
"integrity" "sha512-Uul8w38u+PICe2Fg2pDKCaIG7kOyhowZ9vjiC1FsVwPABTW8vPPKfF6OvxRq3IiBaI1faOJmgdvMG7rMJARBhA=="
"resolved" "https://registry.npmjs.org/@material-ui/utils/-/utils-4.11.2.tgz"
"version" "4.11.2"
dependencies:
"@babel/runtime" "^7.4.4"
"prop-types" "^15.7.2"
"react-is" "^16.8.0 || ^17.0.0"
"@nodelib/[email protected]":
"integrity" "sha512-33g3pMJk3bg5nXbL/+CY6I2eJDzZAni49PfJnL5fghPTggPvBd/pFNSgJsdAgWptuFu7qq/ERvOYFlhvsLTCKA=="
"resolved" "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.4.tgz"
"version" "2.1.4"
dependencies:
"@nodelib/fs.stat" "2.0.4"
"run-parallel" "^1.1.9"
"@nodelib/fs.stat@^2.0.2", "@nodelib/[email protected]":
"integrity" "sha512-IYlHJA0clt2+Vg7bccq+TzRdJvv19c2INqBSsoOLp1je7xjtr7J26+WXR72MCdvU9q1qTzIWDfhMf+DRvQJK4Q=="
"resolved" "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.4.tgz"
"version" "2.0.4"
"@nodelib/fs.walk@^1.2.3":
"integrity" "sha512-8Broas6vTtW4GIXTAHDoE32hnN2M5ykgCpWGbuXHQ15vEMqr23pB76e/GZcYsZCHALv50ktd24qhEyKr6wBtow=="
"resolved" "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.6.tgz"
"version" "1.2.6"
dependencies:
"@nodelib/fs.scandir" "2.1.4"
"fastq" "^1.6.0"
"@rollup/plugin-node-resolve@^11.0.1":
"integrity" "sha512-qHjNIKYt5pCcn+5RUBQxK8krhRvf1HnyVgUCcFFcweDS7fhkOLZeYh0mhHK6Ery8/bb9tvN/ubPzmfF0qjDCTA=="
"resolved" "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-11.2.0.tgz"
"version" "11.2.0"
dependencies:
"@rollup/pluginutils" "^3.1.0"
"@types/resolve" "1.17.1"
"builtin-modules" "^3.1.0"
"deepmerge" "^4.2.2"
"is-module" "^1.0.0"
"resolve" "^1.19.0"
"@rollup/pluginutils@^3.1.0":
"integrity" "sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg=="
"resolved" "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-3.1.0.tgz"
"version" "3.1.0"
dependencies:
"@types/estree" "0.0.39"
"estree-walker" "^1.0.1"
"picomatch" "^2.2.2"
"@snowpack/plugin-dotenv@^2.0.5":
"integrity" "sha512-y54lwYRDpTfDTU3uopHLND0DKIjjyWiYxhvOPfZvC4OpOd7UIRwMdSOd5XLZJPEBJ4BD38lDLiXh+ODfNDqhnQ=="
"resolved" "https://registry.npmjs.org/@snowpack/plugin-dotenv/-/plugin-dotenv-2.0.5.tgz"
"version" "2.0.5"
dependencies:
"dotenv" "^8.2.0"
"dotenv-expand" "^5.1.0"
"@snowpack/plugin-react-refresh@^2.4.0":
"integrity" "sha512-qz2BzdWa5DPK7teTRrh8/SY81mWt//NZmRUUzrQZS2I9d9St8GfSAbFgeJunpBCpPXW9QaaI7huNaoTx/+1/Ag=="
"resolved" "https://registry.npmjs.org/@snowpack/plugin-react-refresh/-/plugin-react-refresh-2.4.0.tgz"
"version" "2.4.0"
dependencies:
"@babel/core" "^7.0.0"
"@babel/plugin-syntax-class-properties" "^7.10.0"
"react-refresh" "^0.9.0"
"@snowpack/web-test-runner-plugin@^0.2.0":
"integrity" "sha512-NaltAArVffxcLGX1/aN03wG8cZAS/gd7LqoU9YaZkSv4a9ygA0UeMK03+GdtqekHnwZ1uyboNByNPpPrBAMMdQ=="
"resolved" "https://registry.npmjs.org/@snowpack/web-test-runner-plugin/-/web-test-runner-plugin-0.2.1.tgz"
"version" "0.2.1"
"@testing-library/dom@^7.28.1":
"integrity" "sha512-vzTsAXa439ptdvav/4lsKRcGpAQX7b6wBIqia7+iNzqGJ5zjswApxA6jDAsexrc6ue9krWcbh8o+LYkBXW+GCQ=="
"resolved" "https://registry.npmjs.org/@testing-library/dom/-/dom-7.29.6.tgz"
"version" "7.29.6"
dependencies:
"@babel/code-frame" "^7.10.4"
"@babel/runtime" "^7.12.5"
"@types/aria-query" "^4.2.0"
"aria-query" "^4.2.2"
"chalk" "^4.1.0"
"dom-accessibility-api" "^0.5.4"
"lz-string" "^1.4.4"
"pretty-format" "^26.6.2"
"@testing-library/react@^11.0.0":
"integrity" "sha512-yEx7oIa/UWLe2F2dqK0FtMF9sJWNXD+2PPtp39BvE0Kh9MJ9Kl0HrZAgEuhUJR+Lx8Di6Xz+rKwSdEPY2UV8ZQ=="
"resolved" "https://registry.npmjs.org/@testing-library/react/-/react-11.2.5.tgz"
"version" "11.2.5"
dependencies:
"@babel/runtime" "^7.12.5"
"@testing-library/dom" "^7.28.1"
"@types/accepts@*":
"integrity" "sha512-jOdnI/3qTpHABjM5cx1Hc0sKsPoYCp+DP/GJRGtDlPd7fiV9oXGGIcjW/ZOxLIvjGz8MA+uMZI9metHlgqbgwQ=="
"resolved" "https://registry.npmjs.org/@types/accepts/-/accepts-1.3.5.tgz"
"version" "1.3.5"
dependencies:
"@types/node" "*"
"@types/aria-query@^4.2.0":
"integrity" "sha512-S6oPal772qJZHoRZLFc/XoZW2gFvwXusYUmXPXkgxJLuEk2vOt7jc4Yo6z/vtI0EBkbPBVrJJ0B+prLIKiWqHg=="
"resolved" "https://registry.npmjs.org/@types/aria-query/-/aria-query-4.2.1.tgz"
"version" "4.2.1"
"@types/body-parser@*":
"integrity" "sha512-W98JrE0j2K78swW4ukqMleo8R7h/pFETjM2DQ90MF6XK2i4LO4W3gQ71Lt4w3bfm2EvVSyWHplECvB5sK22yFQ=="
"resolved" "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.0.tgz"
"version" "1.19.0"
dependencies:
"@types/connect" "*"
"@types/node" "*"
"@types/command-line-args@^5.0.0":
"integrity" "sha512-4eOPXyn5DmP64MCMF8ePDvdlvlzt2a+F8ZaVjqmh2yFCpGjc1kI3kGnCFYX9SCsGTjQcWIyVZ86IHCEyjy/MNg=="
"resolved" "https://registry.npmjs.org/@types/command-line-args/-/command-line-args-5.0.0.tgz"
"version" "5.0.0"
"@types/connect@*":
"integrity" "sha512-ePPA/JuI+X0vb+gSWlPKOY0NdNAie/rPUqX2GUPpbZwiKTkSPhjXWuee47E4MtE54QVzGCQMQkAL6JhV2E1+cQ=="
"resolved" "https://registry.npmjs.org/@types/connect/-/connect-3.4.34.tgz"
"version" "3.4.34"
dependencies:
"@types/node" "*"
"@types/content-disposition@*":
"integrity" "sha512-P1bffQfhD3O4LW0ioENXUhZ9OIa0Zn+P7M+pWgkCKaT53wVLSq0mrKksCID/FGHpFhRSxRGhgrQmfhRuzwtKdg=="
"resolved" "https://registry.npmjs.org/@types/content-disposition/-/content-disposition-0.5.3.tgz"
"version" "0.5.3"
"@types/cookies@*":
"integrity" "sha512-FK4U5Qyn7/Sc5ih233OuHO0qAkOpEcD/eG6584yEiLKizTFRny86qHLe/rej3HFQrkBuUjF4whFliAdODbVN/w=="
"resolved" "https://registry.npmjs.org/@types/cookies/-/cookies-0.7.6.tgz"
"version" "0.7.6"
dependencies:
"@types/connect" "*"
"@types/express" "*"
"@types/keygrip" "*"
"@types/node" "*"
"@types/[email protected]":
"integrity" "sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw=="
"resolved" "https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz"
"version" "0.0.39"
"@types/express-serve-static-core@^4.17.18":
"integrity" "sha512-m4JTwx5RUBNZvky/JJ8swEJPKFd8si08pPF2PfizYjGZOKr/svUWPcoUmLow6MmPzhasphB7gSTINY67xn3JNA=="
"resolved" "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.18.tgz"
"version" "4.17.18"
dependencies:
"@types/node" "*"
"@types/qs" "*"
"@types/range-parser" "*"
"@types/express@*":
"integrity" "sha512-no+R6rW60JEc59977wIxreQVsIEOAYwgCqldrA/vkpCnbD7MqTefO97lmoBe4WE0F156bC4uLSP1XHDOySnChg=="
"resolved" "https://registry.npmjs.org/@types/express/-/express-4.17.11.tgz"
"version" "4.17.11"
dependencies:
"@types/body-parser" "*"
"@types/express-serve-static-core" "^4.17.18"
"@types/qs" "*"
"@types/serve-static" "*"
"@types/hast@^2.0.0":
"integrity" "sha512-viwwrB+6xGzw+G1eWpF9geV3fnsDgXqHG+cqgiHrvQfDUW5hzhCyV7Sy3UJxhfRFBsgky2SSW33qi/YrIkjX5Q=="
"resolved" "https://registry.npmjs.org/@types/hast/-/hast-2.3.1.tgz"
"version" "2.3.1"
dependencies:
"@types/unist" "*"
"@types/http-assert@*":
"integrity" "sha512-PGAK759pxyfXE78NbKxyfRcWYA/KwW17X290cNev/qAsn9eQIxkH4shoNBafH37wewhDG/0p1cHPbK6+SzZjWQ=="
"resolved" "https://registry.npmjs.org/@types/http-assert/-/http-assert-1.5.1.tgz"
"version" "1.5.1"
"@types/http-errors@*":
"integrity" "sha512-2aoSC4UUbHDj2uCsCxcG/vRMXey/m17bC7UwitVm5hn22nI8O8Y9iDpA76Orc+DWkQ4zZrOKEshCqR/jSuXAHA=="
"resolved" "https://registry.npmjs.org/@types/http-errors/-/http-errors-1.8.0.tgz"
"version" "1.8.0"
"@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1":
"integrity" "sha512-sz7iLqvVUg1gIedBOvlkxPlc8/uVzyS5OwGz1cKjXzkl3FpL3al0crU8YGU1WoHkxn0Wxbw5tyi6hvzJKNzFsw=="
"resolved" "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz"
"version" "2.0.3"
"@types/istanbul-lib-report@*":
"integrity" "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg=="
"resolved" "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz"
"version" "3.0.0"
dependencies:
"@types/istanbul-lib-coverage" "*"
"@types/istanbul-reports@^3.0.0":
"integrity" "sha512-nwKNbvnwJ2/mndE9ItP/zc2TCzw6uuodnF4EHYWD+gCQDVBuRQL5UzbZD0/ezy1iKsFU2ZQiDqg4M9dN4+wZgA=="
"resolved" "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.0.tgz"
"version" "3.0.0"
dependencies:
"@types/istanbul-lib-report" "*"
"@types/keygrip@*":
"integrity" "sha512-GJhpTepz2udxGexqos8wgaBx4I/zWIDPh/KOGEwAqtuGDkOUJu5eFvwmdBX4AmB8Odsr+9pHCQqiAqDL/yKMKw=="
"resolved" "https://registry.npmjs.org/@types/keygrip/-/keygrip-1.0.2.tgz"
"version" "1.0.2"
"@types/koa-compose@*":
"integrity" "sha512-B8nG/OoE1ORZqCkBVsup/AKcvjdgoHnfi4pZMn5UwAPCbhk/96xyv284eBYW8JlQbQ7zDmnpFr68I/40mFoIBQ=="
"resolved" "https://registry.npmjs.org/@types/koa-compose/-/koa-compose-3.2.5.tgz"
"version" "3.2.5"
dependencies:
"@types/koa" "*"
"@types/koa@*", "@types/koa@^2.11.6":
"integrity" "sha512-hNs1Z2lX+R5sZroIy/WIGbPlH/719s/Nd5uIjSIAdHn9q+g7z6mxOnhwMjK1urE4/NUP0SOoYUOD4MnvD9FRNw=="
"resolved" "https://registry.npmjs.org/@types/koa/-/koa-2.13.0.tgz"
"version" "2.13.0"
dependencies:
"@types/accepts" "*"
"@types/content-disposition" "*"
"@types/cookies" "*"
"@types/http-assert" "*"
"@types/http-errors" "*"
"@types/keygrip" "*"
"@types/koa-compose" "*"
"@types/node" "*"
"@types/mime@^1":
"integrity" "sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw=="
"resolved" "https://registry.npmjs.org/@types/mime/-/mime-1.3.2.tgz"
"version" "1.3.2"
"@types/mocha@^8.2.0":
"integrity" "sha512-NysN+bNqj6E0Hv4CTGWSlPzMW6vTKjDpOteycDkV4IWBsO+PU48JonrPzV9ODjiI2XrjmA05KInLgF5ivZ/YGQ=="
"resolved" "https://registry.npmjs.org/@types/mocha/-/mocha-8.2.1.tgz"
"version" "8.2.1"
"@types/node@*":
"integrity" "sha512-vFHy/ezP5qI0rFgJ7aQnjDXwAMrG0KqqIH7tQG5PPv3BWBayOPIQNBjVc/P6hhdZfMx51REc6tfDNXHUio893g=="
"resolved" "https://registry.npmjs.org/@types/node/-/node-14.14.31.tgz"
"version" "14.14.31"
"@types/parse5@^5.0.3":
"integrity" "sha512-kUNnecmtkunAoQ3CnjmMkzNU/gtxG8guhi+Fk2U/kOpIKjIMKnXGp4IJCgQJrXSgMsWYimYG4TGjz/UzbGEBTw=="
"resolved" "https://registry.npmjs.org/@types/parse5/-/parse5-5.0.3.tgz"
"version" "5.0.3"
"@types/prop-types@*":
"integrity" "sha512-KfRL3PuHmqQLOG+2tGpRO26Ctg+Cq1E01D2DMriKEATHgWLfeNDmq9e29Q9WIky0dQ3NPkd1mzYH8Lm936Z9qw=="
"resolved" "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.3.tgz"
"version" "15.7.3"
"@types/qs@*":
"integrity" "sha512-/JHkVHtx/REVG0VVToGRGH2+23hsYLHdyG+GrvoUGlGAd0ErauXDyvHtRI/7H7mzLm+tBCKA7pfcpkQ1lf58iQ=="
"resolved" "https://registry.npmjs.org/@types/qs/-/qs-6.9.5.tgz"
"version" "6.9.5"
"@types/range-parser@*":
"integrity" "sha512-ewFXqrQHlFsgc09MK5jP5iR7vumV/BYayNC6PgJO2LPe8vrnNFyjQjSppfEngITi0qvfKtzFvgKymGheFM9UOA=="
"resolved" "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.3.tgz"
"version" "1.2.3"
"@types/react-transition-group@^4.2.0":
"integrity" "sha512-vIo69qKKcYoJ8wKCJjwSgCTM+z3chw3g18dkrDfVX665tMH7tmbDxEAnPdey4gTlwZz5QuHGzd+hul0OVZDqqQ=="
"resolved" "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.1.tgz"
"version" "4.4.1"
dependencies:
"@types/react" "*"
"@types/react@*", "@types/react@^16.8.6 || ^17.0.0":
"integrity" "sha512-Xt40xQsrkdvjn1EyWe1Bc0dJLcil/9x2vAuW7ya+PuQip4UYUaXyhzWmAbwRsdMgwOFHpfp7/FFZebDU6Y8VHA=="
"resolved" "https://registry.npmjs.org/@types/react/-/react-17.0.2.tgz"
"version" "17.0.2"
dependencies:
"@types/prop-types" "*"
"csstype" "^3.0.2"
"@types/[email protected]":
"integrity" "sha512-yy7HuzQhj0dhGpD8RLXSZWEkLsV9ibvxvi6EiJ3bkqLAO1RGo0WbkWQiwpRlSFymTJRz0d3k5LM3kkx8ArDbLw=="
"resolved" "https://registry.npmjs.org/@types/resolve/-/resolve-1.17.1.tgz"
"version" "1.17.1"
dependencies:
"@types/node" "*"
"@types/serve-static@*":
"integrity" "sha512-ZFqF6qa48XsPdjXV5Gsz0Zqmux2PerNd3a/ktL45mHpa19cuMi/cL8tcxdAx497yRh+QtYPuofjT9oWw9P7nkA=="
"resolved" "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.13.9.tgz"
"version" "1.13.9"
dependencies:
"@types/mime" "^1"
"@types/node" "*"
"@types/unist@*":
"integrity" "sha512-FvUupuM3rlRsRtCN+fDudtmytGO6iHJuuRKS1Ss0pG5z8oX0diNEw94UEL7hgDbpN94rgaK5R7sWm6RrSkZuAQ=="
"resolved" "https://registry.npmjs.org/@types/unist/-/unist-2.0.3.tgz"
"version" "2.0.3"
"@types/ws@^7.4.0":
"integrity" "sha512-Y29uQ3Uy+58bZrFLhX36hcI3Np37nqWE7ky5tjiDoy1GDZnIwVxS0CgF+s+1bXMzjKBFy+fqaRfb708iNzdinw=="
"resolved" "https://registry.npmjs.org/@types/ws/-/ws-7.4.0.tgz"
"version" "7.4.0"
dependencies:
"@types/node" "*"
"@types/yargs-parser@*":
"integrity" "sha512-37RSHht+gzzgYeobbG+KWryeAW8J33Nhr69cjTqSYymXVZEN9NbRYWoYlRtDhHKPVT1FyNKwaTPC1NynKZpzRA=="
"resolved" "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-20.2.0.tgz"
"version" "20.2.0"
"@types/yargs@^15.0.0":
"integrity" "sha512-kQ5JNTrbDv3Rp5X2n/iUu37IJBDU2gsZ5R/g1/KHOOEc5IKfUFjXT6DENPGduh08I/pamwtEq4oul7gUqKTQDQ=="
"resolved" "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.13.tgz"
"version" "15.0.13"
dependencies:
"@types/yargs-parser" "*"
"@types/yauzl@^2.9.1":
"integrity" "sha512-A1b8SU4D10uoPjwb0lnHmmu8wZhR9d+9o2PKBQT2jU5YPTKsxac6M2qGAdY7VcL+dHHhARVUDmeg0rOrcd9EjA=="
"resolved" "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.9.1.tgz"
"version" "2.9.1"
dependencies:
"@types/node" "*"
"@web/browser-logs@^0.2.0", "@web/browser-logs@^0.2.1":
"integrity" "sha512-nSfRl/+7XQOtXBBJ9FMdXAb1bzytud1LeJAJmBX4bsfMDDcfrr4vNhiX4OnQ5tBYsXoiQse8ZvwngFM2O6PD3A=="
"resolved" "https://registry.npmjs.org/@web/browser-logs/-/browser-logs-0.2.1.tgz"
"version" "0.2.1"
dependencies:
"errorstacks" "^2.2.0"
"@web/config-loader@^0.1.3":
"integrity" "sha512-XVKH79pk4d3EHRhofete8eAnqto1e8mCRAqPV00KLNFzCWSe8sWmLnqKCqkPNARC6nksMaGrATnA5sPDRllMpQ=="
"resolved" "https://registry.npmjs.org/@web/config-loader/-/config-loader-0.1.3.tgz"
"version" "0.1.3"
dependencies:
"semver" "^7.3.4"
"@web/dev-server-core@^0.3.3", "@web/dev-server-core@^0.3.6", "@web/dev-server-core@^0.3.7":
"integrity" "sha512-uJJMe8V2hLTM6EYrmlzldT7W5TH0L6Sn2DX1YvNT6fx+ztNDhDwH46RJwmDix3+fUqP9Th0iaZ/BJc45T76+Bw=="
"resolved" "https://registry.npmjs.org/@web/dev-server-core/-/dev-server-core-0.3.7.tgz"
"version" "0.3.7"
dependencies:
"@types/koa" "^2.11.6"
"@types/ws" "^7.4.0"
"@web/parse5-utils" "^1.2.0"
"chokidar" "^3.4.3"
"clone" "^2.1.2"
"es-module-lexer" "^0.3.26"
"get-stream" "^6.0.0"
"is-stream" "^2.0.0"
"isbinaryfile" "^4.0.6"
"koa" "^2.13.0"
"koa-etag" "^4.0.0"
"koa-send" "^5.0.1"
"koa-static" "^5.0.0"
"lru-cache" "^6.0.0"
"mime-types" "^2.1.27"
"parse5" "^6.0.1"
"picomatch" "^2.2.2"
"ws" "^7.4.2"
"@web/dev-server-rollup@^0.3.2":
"integrity" "sha512-c5ROnMAUrOJPXTQFFXZiOy0ta4Y5yXLA2QkD71htNhIcqeOI4yx6ueDtuFqovRxVI0qcWGk46UdfZ0UGT/9MIg=="
"resolved" "https://registry.npmjs.org/@web/dev-server-rollup/-/dev-server-rollup-0.3.2.tgz"
"version" "0.3.2"
dependencies:
"@web/dev-server-core" "^0.3.3"
"chalk" "^4.1.0"
"parse5" "^6.0.1"
"rollup" "^2.35.1"
"whatwg-url" "^8.4.0"
"@web/dev-server@^0.1.7":
"integrity" "sha512-HBxzKfRf2XENgTDgCRQ+dQ4F5TQFAMvsr5mB/KYBWKMJJ4PXHRYbfCFvhAgq6s2CrZzicGWp7VZpMHLEVjEqpQ=="
"resolved" "https://registry.npmjs.org/@web/dev-server/-/dev-server-0.1.8.tgz"
"version" "0.1.8"
dependencies:
"@babel/code-frame" "^7.12.11"
"@rollup/plugin-node-resolve" "^11.0.1"
"@types/command-line-args" "^5.0.0"
"@web/config-loader" "^0.1.3"
"@web/dev-server-core" "^0.3.7"
"@web/dev-server-rollup" "^0.3.2"
"camelcase" "^6.2.0"
"chalk" "^4.1.0"
"command-line-args" "^5.1.1"
"command-line-usage" "^6.1.1"
"debounce" "^1.2.0"
"deepmerge" "^4.2.2"
"ip" "^1.1.5"
"open" "^7.3.0"
"portfinder" "^1.0.28"
"@web/parse5-utils@^1.2.0":
"integrity" "sha512-FX5evV+qf5GjnNtvyHhuVKPVFqnSSECp0MnMtRLL63GV3aygiKe6B+Iqt6Xn0n1NsfKyh7zo2pw/rk0JtG2Vpw=="
"resolved" "https://registry.npmjs.org/@web/parse5-utils/-/parse5-utils-1.2.1.tgz"
"version" "1.2.1"
dependencies:
"@types/parse5" "^5.0.3"
"parse5" "^6.0.1"
"@web/test-runner-chrome@^0.9.4":
"integrity" "sha512-Ymfp0HqQvELFITdwhdicuzndLY5loePpbDj6teXKKNTILph0ExWl3R3NMPG7pD40pB84GGd9i8wkz9yvyN30Zg=="
"resolved" "https://registry.npmjs.org/@web/test-runner-chrome/-/test-runner-chrome-0.9.4.tgz"
"version" "0.9.4"
dependencies:
"@web/test-runner-core" "^0.10.8"
"@web/test-runner-coverage-v8" "^0.4.5"
"chrome-launcher" "^0.13.4"
"puppeteer-core" "^5.5.0"
"@web/test-runner-commands@^0.4.1":
"integrity" "sha512-y1U9+jucQ1ZB9YRgMFIjXTUSu/in54yt4Lf4GcY9fHoSyGVWDub085ARWipmagsD9SRN1QnIYTkMk+jRa/EiLQ=="
"resolved" "https://registry.npmjs.org/@web/test-runner-commands/-/test-runner-commands-0.4.1.tgz"
"version" "0.4.1"
dependencies:
"@web/test-runner-core" "^0.10.8"
"@web/test-runner-core@^0.10.11", "@web/test-runner-core@^0.10.8", "@web/test-runner-core@^0.10.9":
"integrity" "sha512-0V2eF58vtQgo4TR6jPEw53CRaT3lD+PlgjjDcnZb8rWp/1ZIt3QAnzNCeSsV4DsuABzE3eyUkIBNILLky541rw=="
"resolved" "https://registry.npmjs.org/@web/test-runner-core/-/test-runner-core-0.10.11.tgz"
"version" "0.10.11"
dependencies:
"@babel/code-frame" "^7.12.11"
"@web/browser-logs" "^0.2.1"
"@web/dev-server-core" "^0.3.6"
"chalk" "^4.1.0"
"chokidar" "^3.4.3"
"cli-cursor" "^3.1.0"
"co-body" "^6.1.0"
"convert-source-map" "^1.7.0"
"debounce" "^1.2.0"
"dependency-graph" "^0.10.0"
"globby" "^11.0.1"
"ip" "^1.1.5"
"istanbul-lib-coverage" "^3.0.0"
"istanbul-lib-report" "^3.0.0"
"istanbul-reports" "^3.0.2"
"log-update" "^4.0.0"
"open" "^7.3.0"
"picomatch" "^2.2.2"
"source-map" "^0.7.3"
"uuid" "^8.3.2"
"@web/test-runner-coverage-v8@^0.4.5":
"integrity" "sha512-Mt8hzLUZfMBrpFlo8PYIkM5H77XmnuiF2VrRXvLRRMBz6sZ+WqZmPT5fOznvTEoqOXh92XG9SsW+G0uV6HjdPQ=="
"resolved" "https://registry.npmjs.org/@web/test-runner-coverage-v8/-/test-runner-coverage-v8-0.4.6.tgz"
"version" "0.4.6"
dependencies:
"@web/test-runner-core" "^0.10.9"
"istanbul-lib-coverage" "^3.0.0"
"picomatch" "^2.2.2"
"v8-to-istanbul" "^7.1.0"
"@web/test-runner-mocha@^0.7.2":
"integrity" "sha512-UsaLvJ0k5Kb53WegF0J0pmKxCLdo6Nxl7GHYykO7m99Irz+jIGXV7VJP9/b8t+HH3fHyqB2Nmd5q9oxXwIJyNw=="
"resolved" "https://registry.npmjs.org/@web/test-runner-mocha/-/test-runner-mocha-0.7.2.tgz"
"version" "0.7.2"
dependencies:
"@types/mocha" "^8.2.0"
"@web/test-runner-core" "^0.10.8"
"@web/test-runner@^0.12.0", "@web/test-runner@>=0.10.0 <1.0.0":
"integrity" "sha512-v9VehhdoELkPs9u0XQrXu8BKzIRlx/U8F8YLsz8tV/bi8Mb7Riqvku0OdFu1P4vjf4NnElpx9J97/WBXURBwLg=="
"resolved" "https://registry.npmjs.org/@web/test-runner/-/test-runner-0.12.15.tgz"
"version" "0.12.15"
dependencies:
"@web/browser-logs" "^0.2.0"
"@web/config-loader" "^0.1.3"
"@web/dev-server" "^0.1.7"
"@web/test-runner-chrome" "^0.9.4"
"@web/test-runner-commands" "^0.4.1"
"@web/test-runner-core" "^0.10.11"
"@web/test-runner-mocha" "^0.7.2"
"camelcase" "^6.2.0"
"chalk" "^4.1.0"
"command-line-args" "^5.1.1"
"command-line-usage" "^6.1.1"
"convert-source-map" "^1.7.0"
"deepmerge" "^4.2.2"
"diff" "^5.0.0"
"globby" "^11.0.1"
"portfinder" "^1.0.28"
"source-map" "^0.7.3"
"accepts@^1.3.5":
"integrity" "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA=="
"resolved" "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz"
"version" "1.3.7"
dependencies:
"mime-types" "~2.1.24"
"negotiator" "0.6.2"
"agent-base@5":
"integrity" "sha512-TMeqbNl2fMW0nMjTEPOwe3J/PRFP4vqeoNuQMG0HlMrtm5QxKqdvAkZ1pRBQ/ulIyDD5Yq0nJ7YbdD8ey0TO3g=="
"resolved" "https://registry.npmjs.org/agent-base/-/agent-base-5.1.1.tgz"
"version" "5.1.1"
"ansi-escapes@^4.3.0":
"integrity" "sha512-JWF7ocqNrp8u9oqpgV+wH5ftbt+cfvv+PTjOvKLT3AdYly/LmORARfEVT1iyjwN+4MqE5UmVKoAdIBqeoCHgLA=="
"resolved" "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.1.tgz"
"version" "4.3.1"
dependencies:
"type-fest" "^0.11.0"
"ansi-regex@^5.0.0":
"integrity" "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg=="
"resolved" "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz"
"version" "5.0.0"
"ansi-styles@^3.2.1":
"integrity" "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA=="
"resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz"
"version" "3.2.1"
dependencies:
"color-convert" "^1.9.0"
"ansi-styles@^4.0.0":
"integrity" "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="
"resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz"
"version" "4.3.0"
dependencies:
"color-convert" "^2.0.1"
"ansi-styles@^4.1.0":
"integrity" "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="
"resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz"
"version" "4.3.0"
dependencies:
"color-convert" "^2.0.1"
"any-promise@^1.1.0":
"integrity" "sha1-q8av7tzqUugJzcA3au0845Y10X8="
"resolved" "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz"
"version" "1.3.0"
"anymatch@~3.1.1":
"integrity" "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg=="
"resolved" "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz"
"version" "3.1.1"
dependencies:
"normalize-path" "^3.0.0"
"picomatch" "^2.0.4"
"aria-query@^4.2.2":
"integrity" "sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA=="
"resolved" "https://registry.npmjs.org/aria-query/-/aria-query-4.2.2.tgz"
"version" "4.2.2"
dependencies:
"@babel/runtime" "^7.10.2"
"@babel/runtime-corejs3" "^7.10.2"
"array-back@^3.0.1":
"integrity" "sha512-TkuxA4UCOvxuDK6NZYXCalszEzj+TLszyASooky+i742l9TqsOdYCMJJupxRic61hwquNtppB3hgcuq9SVSH1Q=="
"resolved" "https://registry.npmjs.org/array-back/-/array-back-3.1.0.tgz"
"version" "3.1.0"
"array-back@^4.0.1":
"integrity" "sha512-Z/JnaVEXv+A9xabHzN43FiiiWEE7gPCRXMrVmRm00tWbjZRul1iHm7ECzlyNq1p4a4ATXz+G9FJ3GqGOkOV3fg=="
"resolved" "https://registry.npmjs.org/array-back/-/array-back-4.0.1.tgz"
"version" "4.0.1"
"array-union@^2.1.0":
"integrity" "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw=="
"resolved" "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz"
"version" "2.1.0"
"assertion-error@^1.1.0":
"integrity" "sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw=="
"resolved" "https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz"
"version" "1.1.0"
"astral-regex@^2.0.0":
"integrity" "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ=="
"resolved" "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz"
"version" "2.0.0"
"async@^2.6.2":
"integrity" "sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg=="
"resolved" "https://registry.npmjs.org/async/-/async-2.6.3.tgz"
"version" "2.6.3"
dependencies:
"lodash" "^4.17.14"
"balanced-match@^1.0.0":
"integrity" "sha1-ibTRmasr7kneFk6gK4nORi1xt2c="
"resolved" "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz"
"version" "1.0.0"
"base64-js@^1.3.1":
"integrity" "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA=="
"resolved" "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz"
"version" "1.5.1"
"big-integer@^1.6.7":
"integrity" "sha512-j51egjPa7/i+RdiRuJbPdJ2FIUYYPhvYLjzoYbcMMm62ooO6F94fETG4MTs46zPAF9Brs04OajboA/qTGuz78w=="
"resolved" "https://registry.npmjs.org/big-integer/-/big-integer-1.6.48.tgz"
"version" "1.6.48"
"binary-extensions@^2.0.0":
"integrity" "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA=="
"resolved" "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz"
"version" "2.2.0"
"bl@^4.0.3":
"integrity" "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w=="
"resolved" "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz"
"version" "4.1.0"
dependencies:
"buffer" "^5.5.0"
"inherits" "^2.0.4"
"readable-stream" "^3.4.0"
"bplist-parser@^0.1.0":
"integrity" "sha1-1g1dzCDLptx+HymbNdPh+V2vuuY="
"resolved" "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.1.1.tgz"
"version" "0.1.1"
dependencies:
"big-integer" "^1.6.7"
"brace-expansion@^1.1.7":
"integrity" "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA=="
"resolved" "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz"
"version" "1.1.11"
dependencies:
"balanced-match" "^1.0.0"
"concat-map" "0.0.1"
"braces@^3.0.1", "braces@~3.0.2":
"integrity" "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A=="
"resolved" "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz"
"version" "3.0.2"
dependencies:
"fill-range" "^7.0.1"
"browserslist@^4.14.5":
"integrity" "sha512-vIyhWmIkULaq04Gt93txdh+j02yX/JzlyhLYbV3YQCn/zvES3JnY7TifHHvvr1w5hTDluNKMkV05cs4vy8Q7sw=="
"resolved" "https://registry.npmjs.org/browserslist/-/browserslist-4.16.3.tgz"
"version" "4.16.3"
dependencies:
"caniuse-lite" "^1.0.30001181"
"colorette" "^1.2.1"
"electron-to-chromium" "^1.3.649"
"escalade" "^3.1.1"
"node-releases" "^1.1.70"
"buffer-crc32@~0.2.3":
"integrity" "sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI="
"resolved" "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz"
"version" "0.2.13"
"buffer@^5.2.1", "buffer@^5.5.0":
"integrity" "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ=="
"resolved" "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz"
"version" "5.7.1"
dependencies:
"base64-js" "^1.3.1"
"ieee754" "^1.1.13"
"builtin-modules@^3.1.0":
"integrity" "sha512-lGzLKcioL90C7wMczpkY0n/oART3MbBa8R9OFGE1rJxoVI86u4WAGfEk8Wjv10eKSyTHVGkSo3bvBylCEtk7LA=="
"resolved" "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.2.0.tgz"
"version" "3.2.0"
"integrity" "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg=="
"resolved" "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz"
"version" "3.1.0"
"cache-content-type@^1.0.0":
"integrity" "sha512-IKufZ1o4Ut42YUrZSo8+qnMTrFuKkvyoLXUywKz9GJ5BrhOFGhLdkx9sG4KAnVvbY6kEcSFjLQul+DVmBm2bgA=="
"resolved" "https://registry.npmjs.org/cache-content-type/-/cache-content-type-1.0.1.tgz"
"version" "1.0.1"
dependencies:
"mime-types" "^2.1.18"
"ylru" "^1.2.0"
"camelcase@^6.2.0":
"integrity" "sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg=="
"resolved" "https://registry.npmjs.org/camelcase/-/camelcase-6.2.0.tgz"
"version" "6.2.0"
"caniuse-lite@^1.0.30001181":
"integrity" "sha512-xJJqzyd+7GCJXkcoBiQ1GuxEiOBCLQ0aVW9HMekifZsAVGdj5eJ4mFB9fEhSHipq9IOk/QXFJUiIr9lZT+EsGw=="
"resolved" "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001191.tgz"
"version" "1.0.30001191"
"chai@^4.2.0":
"integrity" "sha512-/BFd2J30EcOwmdOgXvVsmM48l0Br0nmZPlO0uOW4XKh6kpsUumRXBgPV+IlaqFaqr9cYbeoZAM1Npx0i4A+aiA=="
"resolved" "https://registry.npmjs.org/chai/-/chai-4.3.0.tgz"
"version" "4.3.0"
dependencies:
"assertion-error" "^1.1.0"
"check-error" "^1.0.2"
"deep-eql" "^3.0.1"