-
Notifications
You must be signed in to change notification settings - Fork 6
/
yarn.lock
5474 lines (4732 loc) · 209 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.0.0", "@babel/code-frame@^7.14.5":
"integrity" "sha512-9pzDqyc6OLDaqe+zbACgFkb6fKMNG6CObKpnYXChRsvYGyEdc7CA2BaqeOM+vOtCS5ndmJicPJhKAwYRI6UfFw=="
"resolved" "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/highlight" "^7.14.5"
"@babel/compat-data@^7.14.5":
"integrity" "sha512-nS6dZaISCXJ3+518CWiBfEr//gHyMO02uDxBkXTKZDN5POruCnOZ1N4YBRZDCabwF8nZMWBpRxIicmXtBs+fvw=="
"resolved" "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.14.7.tgz"
"version" "7.14.7"
"@babel/core@^7.0.0", "@babel/core@^7.0.0-0", "@babel/core@^7.1.0", "@babel/core@^7.7.5":
"integrity" "sha512-gJnOEWSqTk96qG5BoIrl5bVtc23DCycmIePPYnamY9RboYdI4nFy5vAQMSl81O5K/W0sLDWfGysnOECC+KUUCA=="
"resolved" "https://registry.npmjs.org/@babel/core/-/core-7.14.6.tgz"
"version" "7.14.6"
dependencies:
"@babel/code-frame" "^7.14.5"
"@babel/generator" "^7.14.5"
"@babel/helper-compilation-targets" "^7.14.5"
"@babel/helper-module-transforms" "^7.14.5"
"@babel/helpers" "^7.14.6"
"@babel/parser" "^7.14.6"
"@babel/template" "^7.14.5"
"@babel/traverse" "^7.14.5"
"@babel/types" "^7.14.5"
"convert-source-map" "^1.7.0"
"debug" "^4.1.0"
"gensync" "^1.0.0-beta.2"
"json5" "^2.1.2"
"semver" "^6.3.0"
"source-map" "^0.5.0"
"@babel/generator@^7.14.5":
"integrity" "sha512-y3rlP+/G25OIX3mYKKIOlQRcqj7YgrvHxOLbVmyLJ9bPmi5ttvUmpydVjcFjZphOktWuA7ovbx91ECloWTfjIA=="
"resolved" "https://registry.npmjs.org/@babel/generator/-/generator-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/types" "^7.14.5"
"jsesc" "^2.5.1"
"source-map" "^0.5.0"
"@babel/helper-compilation-targets@^7.14.5":
"integrity" "sha512-v+QtZqXEiOnpO6EYvlImB6zCD2Lel06RzOPzmkz/D/XgQiUu3C/Jb1LOqSt/AIA34TYi/Q+KlT8vTQrgdxkbLw=="
"resolved" "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/compat-data" "^7.14.5"
"@babel/helper-validator-option" "^7.14.5"
"browserslist" "^4.16.6"
"semver" "^6.3.0"
"@babel/helper-function-name@^7.14.5":
"integrity" "sha512-Gjna0AsXWfFvrAuX+VKcN/aNNWonizBj39yGwUzVDVTlMYJMK2Wp6xdpy72mfArFq5uK+NOuexfzZlzI1z9+AQ=="
"resolved" "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/helper-get-function-arity" "^7.14.5"
"@babel/template" "^7.14.5"
"@babel/types" "^7.14.5"
"@babel/helper-get-function-arity@^7.14.5":
"integrity" "sha512-I1Db4Shst5lewOM4V+ZKJzQ0JGGaZ6VY1jYvMghRjqs6DWgxLCIyFt30GlnKkfUeFLpJt2vzbMVEXVSXlIFYUg=="
"resolved" "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/types" "^7.14.5"
"@babel/helper-hoist-variables@^7.14.5":
"integrity" "sha512-R1PXiz31Uc0Vxy4OEOm07x0oSjKAdPPCh3tPivn/Eo8cvz6gveAeuyUUPB21Hoiif0uoPQSSdhIPS3352nvdyQ=="
"resolved" "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/types" "^7.14.5"
"@babel/helper-member-expression-to-functions@^7.14.5":
"integrity" "sha512-TMUt4xKxJn6ccjcOW7c4hlwyJArizskAhoSTOCkA0uZ+KghIaci0Qg9R043kUMWI9mtQfgny+NQ5QATnZ+paaA=="
"resolved" "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.14.7.tgz"
"version" "7.14.7"
dependencies:
"@babel/types" "^7.14.5"
"@babel/helper-module-imports@^7.14.5":
"integrity" "sha512-SwrNHu5QWS84XlHwGYPDtCxcA0hrSlL2yhWYLgeOc0w7ccOl2qv4s/nARI0aYZW+bSwAL5CukeXA47B/1NKcnQ=="
"resolved" "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/types" "^7.14.5"
"@babel/helper-module-transforms@^7.14.5":
"integrity" "sha512-iXpX4KW8LVODuAieD7MzhNjmM6dzYY5tfRqT+R9HDXWl0jPn/djKmA+G9s/2C2T9zggw5tK1QNqZ70USfedOwA=="
"resolved" "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/helper-module-imports" "^7.14.5"
"@babel/helper-replace-supers" "^7.14.5"
"@babel/helper-simple-access" "^7.14.5"
"@babel/helper-split-export-declaration" "^7.14.5"
"@babel/helper-validator-identifier" "^7.14.5"
"@babel/template" "^7.14.5"
"@babel/traverse" "^7.14.5"
"@babel/types" "^7.14.5"
"@babel/helper-optimise-call-expression@^7.14.5":
"integrity" "sha512-IqiLIrODUOdnPU9/F8ib1Fx2ohlgDhxnIDU7OEVi+kAbEZcyiF7BLU8W6PfvPi9LzztjS7kcbzbmL7oG8kD6VA=="
"resolved" "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/types" "^7.14.5"
"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.8.0":
"integrity" "sha512-/37qQCE3K0vvZKwoK4XU/irIJQdIfCJuhU5eKnNxpFDsOkgFaUAwbv+RYw6eYgsC0E4hS7r5KqGULUogqui0fQ=="
"resolved" "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.14.5.tgz"
"version" "7.14.5"
"@babel/helper-replace-supers@^7.14.5":
"integrity" "sha512-3i1Qe9/8x/hCHINujn+iuHy+mMRLoc77b2nI9TB0zjH1hvn9qGlXjWlggdwUcju36PkPCy/lpM7LLUdcTyH4Ow=="
"resolved" "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/helper-member-expression-to-functions" "^7.14.5"
"@babel/helper-optimise-call-expression" "^7.14.5"
"@babel/traverse" "^7.14.5"
"@babel/types" "^7.14.5"
"@babel/helper-simple-access@^7.14.5":
"integrity" "sha512-nfBN9xvmCt6nrMZjfhkl7i0oTV3yxR4/FztsbOASyTvVcoYd0TRHh7eMLdlEcCqobydC0LAF3LtC92Iwxo0wyw=="
"resolved" "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/types" "^7.14.5"
"@babel/helper-split-export-declaration@^7.14.5":
"integrity" "sha512-hprxVPu6e5Kdp2puZUmvOGjaLv9TCe58E/Fl6hRq4YiVQxIcNvuq6uTM2r1mT/oPskuS9CgR+I94sqAYv0NGKA=="
"resolved" "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/types" "^7.14.5"
"@babel/helper-validator-identifier@^7.14.5":
"integrity" "sha512-5lsetuxCLilmVGyiLEfoHBRX8UCFD+1m2x3Rj97WrW3V7H3u4RWRXA4evMjImCsin2J2YT0QaVDGf+z8ondbAg=="
"resolved" "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.5.tgz"
"version" "7.14.5"
"@babel/helper-validator-option@^7.14.5":
"integrity" "sha512-OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow=="
"resolved" "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.14.5.tgz"
"version" "7.14.5"
"@babel/helpers@^7.14.6":
"integrity" "sha512-yesp1ENQBiLI+iYHSJdoZKUtRpfTlL1grDIX9NRlAVppljLw/4tTyYupIB7uIYmC3stW/imAv8EqaKaS/ibmeA=="
"resolved" "https://registry.npmjs.org/@babel/helpers/-/helpers-7.14.6.tgz"
"version" "7.14.6"
dependencies:
"@babel/template" "^7.14.5"
"@babel/traverse" "^7.14.5"
"@babel/types" "^7.14.5"
"@babel/highlight@^7.14.5":
"integrity" "sha512-qf9u2WFWVV0MppaL877j2dBtQIDgmidgjGk5VIMw3OadXvYaXn66U1BFlH2t4+t3i+8PhedppRv+i40ABzd+gg=="
"resolved" "https://registry.npmjs.org/@babel/highlight/-/highlight-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/helper-validator-identifier" "^7.14.5"
"chalk" "^2.0.0"
"js-tokens" "^4.0.0"
"@babel/parser@^7.1.0", "@babel/parser@^7.14.5", "@babel/parser@^7.14.6", "@babel/parser@^7.14.7":
"integrity" "sha512-X67Z5y+VBJuHB/RjwECp8kSl5uYi0BvRbNeWqkaJCVh+LiTPl19WBUfG627psSgp9rSf6ojuXghQM3ha6qHHdA=="
"resolved" "https://registry.npmjs.org/@babel/parser/-/parser-7.14.7.tgz"
"version" "7.14.7"
"@babel/plugin-syntax-async-generators@^7.8.4":
"integrity" "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz"
"version" "7.8.4"
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/plugin-syntax-bigint@^7.8.3":
"integrity" "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz"
"version" "7.8.3"
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/plugin-syntax-class-properties@^7.8.3":
"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/plugin-syntax-import-meta@^7.8.3":
"integrity" "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz"
"version" "7.10.4"
dependencies:
"@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-syntax-json-strings@^7.8.3":
"integrity" "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz"
"version" "7.8.3"
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/plugin-syntax-logical-assignment-operators@^7.8.3":
"integrity" "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz"
"version" "7.10.4"
dependencies:
"@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3":
"integrity" "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz"
"version" "7.8.3"
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/plugin-syntax-numeric-separator@^7.8.3":
"integrity" "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz"
"version" "7.10.4"
dependencies:
"@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-syntax-object-rest-spread@^7.8.3":
"integrity" "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz"
"version" "7.8.3"
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/plugin-syntax-optional-catch-binding@^7.8.3":
"integrity" "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz"
"version" "7.8.3"
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/plugin-syntax-optional-chaining@^7.8.3":
"integrity" "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz"
"version" "7.8.3"
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/runtime@^7.11.2":
"integrity" "sha512-TeWkU52so0mPtDcaCTxNBI/IHiz0pZgr8VEFqXFtZWpYD08ZB6FaSwVAS8MKRQAP3bYKiVjwysOJgMFY28o6Tw=="
"resolved" "https://registry.npmjs.org/@babel/runtime/-/runtime-7.11.2.tgz"
"version" "7.11.2"
dependencies:
"regenerator-runtime" "^0.13.4"
"@babel/template@^7.14.5", "@babel/template@^7.3.3":
"integrity" "sha512-6Z3Po85sfxRGachLULUhOmvAaOo7xCvqGQtxINai2mEGPFm6pQ4z5QInFnUrRpfoSV60BnjyF5F3c+15fxFV1g=="
"resolved" "https://registry.npmjs.org/@babel/template/-/template-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/code-frame" "^7.14.5"
"@babel/parser" "^7.14.5"
"@babel/types" "^7.14.5"
"@babel/traverse@^7.1.0", "@babel/traverse@^7.14.5":
"integrity" "sha512-9vDr5NzHu27wgwejuKL7kIOm4bwEtaPQ4Z6cpCmjSuaRqpH/7xc4qcGEscwMqlkwgcXl6MvqoAjZkQ24uSdIZQ=="
"resolved" "https://registry.npmjs.org/@babel/traverse/-/traverse-7.14.7.tgz"
"version" "7.14.7"
dependencies:
"@babel/code-frame" "^7.14.5"
"@babel/generator" "^7.14.5"
"@babel/helper-function-name" "^7.14.5"
"@babel/helper-hoist-variables" "^7.14.5"
"@babel/helper-split-export-declaration" "^7.14.5"
"@babel/parser" "^7.14.7"
"@babel/types" "^7.14.5"
"debug" "^4.1.0"
"globals" "^11.1.0"
"@babel/types@^7.0.0", "@babel/types@^7.11.5", "@babel/types@^7.14.5", "@babel/types@^7.3.0", "@babel/types@^7.3.3":
"integrity" "sha512-M/NzBpEL95I5Hh4dwhin5JlE7EzO5PHMAuzjxss3tiOBD46KfQvVedN/3jEPZvdRvtsK2222XfdHogNIttFgcg=="
"resolved" "https://registry.npmjs.org/@babel/types/-/types-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/helper-validator-identifier" "^7.14.5"
"to-fast-properties" "^2.0.0"
"@bcoe/v8-coverage@^0.2.3":
"integrity" "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw=="
"resolved" "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz"
"version" "0.2.3"
"@cnakazawa/watch@^1.0.3":
"integrity" "sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ=="
"resolved" "https://registry.npmjs.org/@cnakazawa/watch/-/watch-1.0.4.tgz"
"version" "1.0.4"
dependencies:
"exec-sh" "^0.3.2"
"minimist" "^1.2.0"
"@commitlint/cli@^11.0.0":
"integrity" "sha512-YWZWg1DuqqO5Zjh7vUOeSX76vm0FFyz4y0cpGMFhrhvUi5unc4IVfCXZ6337R9zxuBtmveiRuuhQqnRRer+13g=="
"resolved" "https://registry.npmjs.org/@commitlint/cli/-/cli-11.0.0.tgz"
"version" "11.0.0"
dependencies:
"@babel/runtime" "^7.11.2"
"@commitlint/format" "^11.0.0"
"@commitlint/lint" "^11.0.0"
"@commitlint/load" "^11.0.0"
"@commitlint/read" "^11.0.0"
"chalk" "4.1.0"
"core-js" "^3.6.1"
"get-stdin" "8.0.0"
"lodash" "^4.17.19"
"resolve-from" "5.0.0"
"resolve-global" "1.0.0"
"yargs" "^15.1.0"
"@commitlint/config-conventional@^11.0.0":
"integrity" "sha512-SNDRsb5gLuDd2PL83yCOQX6pE7gevC79UPFx+GLbLfw6jGnnbO9/tlL76MLD8MOViqGbo7ZicjChO9Gn+7tHhA=="
"resolved" "https://registry.npmjs.org/@commitlint/config-conventional/-/config-conventional-11.0.0.tgz"
"version" "11.0.0"
dependencies:
"conventional-changelog-conventionalcommits" "^4.3.1"
"@commitlint/ensure@^11.0.0":
"integrity" "sha512-/T4tjseSwlirKZdnx4AuICMNNlFvRyPQimbZIOYujp9DSO6XRtOy9NrmvWujwHsq9F5Wb80QWi4WMW6HMaENug=="
"resolved" "https://registry.npmjs.org/@commitlint/ensure/-/ensure-11.0.0.tgz"
"version" "11.0.0"
dependencies:
"@commitlint/types" "^11.0.0"
"lodash" "^4.17.19"
"@commitlint/execute-rule@^11.0.0":
"integrity" "sha512-g01p1g4BmYlZ2+tdotCavrMunnPFPhTzG1ZiLKTCYrooHRbmvqo42ZZn4QMStUEIcn+jfLb6BRZX3JzIwA1ezQ=="
"resolved" "https://registry.npmjs.org/@commitlint/execute-rule/-/execute-rule-11.0.0.tgz"
"version" "11.0.0"
"@commitlint/format@^11.0.0":
"integrity" "sha512-bpBLWmG0wfZH/svzqD1hsGTpm79TKJWcf6EXZllh2J/LSSYKxGlv967lpw0hNojme0sZd4a/97R3qA2QHWWSLg=="
"resolved" "https://registry.npmjs.org/@commitlint/format/-/format-11.0.0.tgz"
"version" "11.0.0"
dependencies:
"@commitlint/types" "^11.0.0"
"chalk" "^4.0.0"
"@commitlint/is-ignored@^11.0.0":
"integrity" "sha512-VLHOUBN+sOlkYC4tGuzE41yNPO2w09sQnOpfS+pSPnBFkNUUHawEuA44PLHtDvQgVuYrMAmSWFQpWabMoP5/Xg=="
"resolved" "https://registry.npmjs.org/@commitlint/is-ignored/-/is-ignored-11.0.0.tgz"
"version" "11.0.0"
dependencies:
"@commitlint/types" "^11.0.0"
"semver" "7.3.2"
"@commitlint/lint@^11.0.0":
"integrity" "sha512-Q8IIqGIHfwKr8ecVZyYh6NtXFmKw4YSEWEr2GJTB/fTZXgaOGtGFZDWOesCZllQ63f1s/oWJYtVv5RAEuwN8BQ=="
"resolved" "https://registry.npmjs.org/@commitlint/lint/-/lint-11.0.0.tgz"
"version" "11.0.0"
dependencies:
"@commitlint/is-ignored" "^11.0.0"
"@commitlint/parse" "^11.0.0"
"@commitlint/rules" "^11.0.0"
"@commitlint/types" "^11.0.0"
"@commitlint/load@^11.0.0":
"integrity" "sha512-t5ZBrtgvgCwPfxmG811FCp39/o3SJ7L+SNsxFL92OR4WQxPcu6c8taD0CG2lzOHGuRyuMxZ7ps3EbngT2WpiCg=="
"resolved" "https://registry.npmjs.org/@commitlint/load/-/load-11.0.0.tgz"
"version" "11.0.0"
dependencies:
"@commitlint/execute-rule" "^11.0.0"
"@commitlint/resolve-extends" "^11.0.0"
"@commitlint/types" "^11.0.0"
"chalk" "4.1.0"
"cosmiconfig" "^7.0.0"
"lodash" "^4.17.19"
"resolve-from" "^5.0.0"
"@commitlint/message@^11.0.0":
"integrity" "sha512-01ObK/18JL7PEIE3dBRtoMmU6S3ecPYDTQWWhcO+ErA3Ai0KDYqV5VWWEijdcVafNpdeUNrEMigRkxXHQLbyJA=="
"resolved" "https://registry.npmjs.org/@commitlint/message/-/message-11.0.0.tgz"
"version" "11.0.0"
"@commitlint/parse@^11.0.0":
"integrity" "sha512-DekKQAIYWAXIcyAZ6/PDBJylWJ1BROTfDIzr9PMVxZRxBPc1gW2TG8fLgjZfBP5mc0cuthPkVi91KQQKGri/7A=="
"resolved" "https://registry.npmjs.org/@commitlint/parse/-/parse-11.0.0.tgz"
"version" "11.0.0"
dependencies:
"conventional-changelog-angular" "^5.0.0"
"conventional-commits-parser" "^3.0.0"
"@commitlint/read@^11.0.0":
"integrity" "sha512-37V0V91GSv0aDzMzJioKpCoZw6l0shk7+tRG8RkW1GfZzUIytdg3XqJmM+IaIYpaop0m6BbZtfq+idzUwJnw7g=="
"resolved" "https://registry.npmjs.org/@commitlint/read/-/read-11.0.0.tgz"
"version" "11.0.0"
dependencies:
"@commitlint/top-level" "^11.0.0"
"fs-extra" "^9.0.0"
"git-raw-commits" "^2.0.0"
"@commitlint/resolve-extends@^11.0.0":
"integrity" "sha512-WinU6Uv6L7HDGLqn/To13KM1CWvZ09VHZqryqxXa1OY+EvJkfU734CwnOEeNlSCK7FVLrB4kmodLJtL1dkEpXw=="
"resolved" "https://registry.npmjs.org/@commitlint/resolve-extends/-/resolve-extends-11.0.0.tgz"
"version" "11.0.0"
dependencies:
"import-fresh" "^3.0.0"
"lodash" "^4.17.19"
"resolve-from" "^5.0.0"
"resolve-global" "^1.0.0"
"@commitlint/rules@^11.0.0":
"integrity" "sha512-2hD9y9Ep5ZfoNxDDPkQadd2jJeocrwC4vJ98I0g8pNYn/W8hS9+/FuNpolREHN8PhmexXbkjrwyQrWbuC0DVaA=="
"resolved" "https://registry.npmjs.org/@commitlint/rules/-/rules-11.0.0.tgz"
"version" "11.0.0"
dependencies:
"@commitlint/ensure" "^11.0.0"
"@commitlint/message" "^11.0.0"
"@commitlint/to-lines" "^11.0.0"
"@commitlint/types" "^11.0.0"
"@commitlint/to-lines@^11.0.0":
"integrity" "sha512-TIDTB0Y23jlCNubDROUVokbJk6860idYB5cZkLWcRS9tlb6YSoeLn1NLafPlrhhkkkZzTYnlKYzCVrBNVes1iw=="
"resolved" "https://registry.npmjs.org/@commitlint/to-lines/-/to-lines-11.0.0.tgz"
"version" "11.0.0"
"@commitlint/top-level@^11.0.0":
"integrity" "sha512-O0nFU8o+Ws+py5pfMQIuyxOtfR/kwtr5ybqTvR+C2lUPer2x6lnQU+OnfD7hPM+A+COIUZWx10mYQvkR3MmtAA=="
"resolved" "https://registry.npmjs.org/@commitlint/top-level/-/top-level-11.0.0.tgz"
"version" "11.0.0"
dependencies:
"find-up" "^5.0.0"
"@commitlint/types@^11.0.0":
"integrity" "sha512-VoNqai1vR5anRF5Tuh/+SWDFk7xi7oMwHrHrbm1BprYXjB2RJsWLhUrStMssDxEl5lW/z3EUdg8RvH/IUBccSQ=="
"resolved" "https://registry.npmjs.org/@commitlint/types/-/types-11.0.0.tgz"
"version" "11.0.0"
"@istanbuljs/load-nyc-config@^1.0.0":
"integrity" "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ=="
"resolved" "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz"
"version" "1.1.0"
dependencies:
"camelcase" "^5.3.1"
"find-up" "^4.1.0"
"get-package-type" "^0.1.0"
"js-yaml" "^3.13.1"
"resolve-from" "^5.0.0"
"@istanbuljs/schema@^0.1.2":
"integrity" "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA=="
"resolved" "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz"
"version" "0.1.3"
"@jest/console@^25.5.0":
"integrity" "sha512-T48kZa6MK1Y6k4b89sexwmSF4YLeZS/Udqg3Jj3jG/cHH+N/sLFCEoXEDMOKugJQ9FxPN1osxIknvKkxt6MKyw=="
"resolved" "https://registry.npmjs.org/@jest/console/-/console-25.5.0.tgz"
"version" "25.5.0"
dependencies:
"@jest/types" "^25.5.0"
"chalk" "^3.0.0"
"jest-message-util" "^25.5.0"
"jest-util" "^25.5.0"
"slash" "^3.0.0"
"@jest/core@^25.5.4":
"integrity" "sha512-3uSo7laYxF00Dg/DMgbn4xMJKmDdWvZnf89n8Xj/5/AeQ2dOQmn6b6Hkj/MleyzZWXpwv+WSdYWl4cLsy2JsoA=="
"resolved" "https://registry.npmjs.org/@jest/core/-/core-25.5.4.tgz"
"version" "25.5.4"
dependencies:
"@jest/console" "^25.5.0"
"@jest/reporters" "^25.5.1"
"@jest/test-result" "^25.5.0"
"@jest/transform" "^25.5.1"
"@jest/types" "^25.5.0"
"ansi-escapes" "^4.2.1"
"chalk" "^3.0.0"
"exit" "^0.1.2"
"graceful-fs" "^4.2.4"
"jest-changed-files" "^25.5.0"
"jest-config" "^25.5.4"
"jest-haste-map" "^25.5.1"
"jest-message-util" "^25.5.0"
"jest-regex-util" "^25.2.6"
"jest-resolve" "^25.5.1"
"jest-resolve-dependencies" "^25.5.4"
"jest-runner" "^25.5.4"
"jest-runtime" "^25.5.4"
"jest-snapshot" "^25.5.1"
"jest-util" "^25.5.0"
"jest-validate" "^25.5.0"
"jest-watcher" "^25.5.0"
"micromatch" "^4.0.2"
"p-each-series" "^2.1.0"
"realpath-native" "^2.0.0"
"rimraf" "^3.0.0"
"slash" "^3.0.0"
"strip-ansi" "^6.0.0"
"@jest/environment@^25.5.0":
"integrity" "sha512-U2VXPEqL07E/V7pSZMSQCvV5Ea4lqOlT+0ZFijl/i316cRMHvZ4qC+jBdryd+lmRetjQo0YIQr6cVPNxxK87mA=="
"resolved" "https://registry.npmjs.org/@jest/environment/-/environment-25.5.0.tgz"
"version" "25.5.0"
dependencies:
"@jest/fake-timers" "^25.5.0"
"@jest/types" "^25.5.0"
"jest-mock" "^25.5.0"
"@jest/fake-timers@^25.5.0":
"integrity" "sha512-9y2+uGnESw/oyOI3eww9yaxdZyHq7XvprfP/eeoCsjqKYts2yRlsHS/SgjPDV8FyMfn2nbMy8YzUk6nyvdLOpQ=="
"resolved" "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-25.5.0.tgz"
"version" "25.5.0"
dependencies:
"@jest/types" "^25.5.0"
"jest-message-util" "^25.5.0"
"jest-mock" "^25.5.0"
"jest-util" "^25.5.0"
"lolex" "^5.0.0"
"@jest/globals@^25.5.2":
"integrity" "sha512-AgAS/Ny7Q2RCIj5kZ+0MuKM1wbF0WMLxbCVl/GOMoCNbODRdJ541IxJ98xnZdVSZXivKpJlNPIWa3QmY0l4CXA=="
"resolved" "https://registry.npmjs.org/@jest/globals/-/globals-25.5.2.tgz"
"version" "25.5.2"
dependencies:
"@jest/environment" "^25.5.0"
"@jest/types" "^25.5.0"
"expect" "^25.5.0"
"@jest/reporters@^25.5.1":
"integrity" "sha512-3jbd8pPDTuhYJ7vqiHXbSwTJQNavczPs+f1kRprRDxETeE3u6srJ+f0NPuwvOmk+lmunZzPkYWIFZDLHQPkviw=="
"resolved" "https://registry.npmjs.org/@jest/reporters/-/reporters-25.5.1.tgz"
"version" "25.5.1"
dependencies:
"@bcoe/v8-coverage" "^0.2.3"
"@jest/console" "^25.5.0"
"@jest/test-result" "^25.5.0"
"@jest/transform" "^25.5.1"
"@jest/types" "^25.5.0"
"chalk" "^3.0.0"
"collect-v8-coverage" "^1.0.0"
"exit" "^0.1.2"
"glob" "^7.1.2"
"graceful-fs" "^4.2.4"
"istanbul-lib-coverage" "^3.0.0"
"istanbul-lib-instrument" "^4.0.0"
"istanbul-lib-report" "^3.0.0"
"istanbul-lib-source-maps" "^4.0.0"
"istanbul-reports" "^3.0.2"
"jest-haste-map" "^25.5.1"
"jest-resolve" "^25.5.1"
"jest-util" "^25.5.0"
"jest-worker" "^25.5.0"
"slash" "^3.0.0"
"source-map" "^0.6.0"
"string-length" "^3.1.0"
"terminal-link" "^2.0.0"
"v8-to-istanbul" "^4.1.3"
optionalDependencies:
"node-notifier" "^6.0.0"
"@jest/source-map@^25.5.0":
"integrity" "sha512-eIGx0xN12yVpMcPaVpjXPnn3N30QGJCJQSkEDUt9x1fI1Gdvb07Ml6K5iN2hG7NmMP6FDmtPEssE3z6doOYUwQ=="
"resolved" "https://registry.npmjs.org/@jest/source-map/-/source-map-25.5.0.tgz"
"version" "25.5.0"
dependencies:
"callsites" "^3.0.0"
"graceful-fs" "^4.2.4"
"source-map" "^0.6.0"
"@jest/test-result@^25.5.0":
"integrity" "sha512-oV+hPJgXN7IQf/fHWkcS99y0smKLU2czLBJ9WA0jHITLst58HpQMtzSYxzaBvYc6U5U6jfoMthqsUlUlbRXs0A=="
"resolved" "https://registry.npmjs.org/@jest/test-result/-/test-result-25.5.0.tgz"
"version" "25.5.0"
dependencies:
"@jest/console" "^25.5.0"
"@jest/types" "^25.5.0"
"@types/istanbul-lib-coverage" "^2.0.0"
"collect-v8-coverage" "^1.0.0"
"@jest/test-sequencer@^25.5.4":
"integrity" "sha512-pTJGEkSeg1EkCO2YWq6hbFvKNXk8ejqlxiOg1jBNLnWrgXOkdY6UmqZpwGFXNnRt9B8nO1uWMzLLZ4eCmhkPNA=="
"resolved" "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-25.5.4.tgz"
"version" "25.5.4"
dependencies:
"@jest/test-result" "^25.5.0"
"graceful-fs" "^4.2.4"
"jest-haste-map" "^25.5.1"
"jest-runner" "^25.5.4"
"jest-runtime" "^25.5.4"
"@jest/transform@^25.5.1":
"integrity" "sha512-Y8CEoVwXb4QwA6Y/9uDkn0Xfz0finGkieuV0xkdF9UtZGJeLukD5nLkaVrVsODB1ojRWlaoD0AJZpVHCSnJEvg=="
"resolved" "https://registry.npmjs.org/@jest/transform/-/transform-25.5.1.tgz"
"version" "25.5.1"
dependencies:
"@babel/core" "^7.1.0"
"@jest/types" "^25.5.0"
"babel-plugin-istanbul" "^6.0.0"
"chalk" "^3.0.0"
"convert-source-map" "^1.4.0"
"fast-json-stable-stringify" "^2.0.0"
"graceful-fs" "^4.2.4"
"jest-haste-map" "^25.5.1"
"jest-regex-util" "^25.2.6"
"jest-util" "^25.5.0"
"micromatch" "^4.0.2"
"pirates" "^4.0.1"
"realpath-native" "^2.0.0"
"slash" "^3.0.0"
"source-map" "^0.6.1"
"write-file-atomic" "^3.0.0"
"@jest/types@^25.5.0":
"integrity" "sha512-OXD0RgQ86Tu3MazKo8bnrkDRaDXXMGUqd+kTtLtK1Zb7CRzQcaSRPPPV37SvYTdevXEBVxe0HXylEjs8ibkmCw=="
"resolved" "https://registry.npmjs.org/@jest/types/-/types-25.5.0.tgz"
"version" "25.5.0"
dependencies:
"@types/istanbul-lib-coverage" "^2.0.0"
"@types/istanbul-reports" "^1.1.1"
"@types/yargs" "^15.0.0"
"chalk" "^3.0.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"
"@rollup/plugin-commonjs@^11.0.2":
"integrity" "sha512-Ycr12N3ZPN96Fw2STurD21jMqzKwL9QuFhms3SD7KKRK7oaXUsBU9Zt0jL/rOPHiPYisI21/rXGO3jr9BnLHUA=="
"resolved" "https://registry.npmjs.org/@rollup/plugin-commonjs/-/plugin-commonjs-11.1.0.tgz"
"version" "11.1.0"
dependencies:
"@rollup/pluginutils" "^3.0.8"
"commondir" "^1.0.1"
"estree-walker" "^1.0.1"
"glob" "^7.1.2"
"is-reference" "^1.1.2"
"magic-string" "^0.25.2"
"resolve" "^1.11.0"
"@rollup/plugin-node-resolve@^7.1.1":
"integrity" "sha512-RxtSL3XmdTAE2byxekYLnx+98kEUOrPHF/KRVjLH+DEIHy6kjIw7YINQzn+NXiH/NTrQLAwYs0GWB+csWygA9Q=="
"resolved" "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-7.1.3.tgz"
"version" "7.1.3"
dependencies:
"@rollup/pluginutils" "^3.0.8"
"@types/resolve" "0.0.8"
"builtin-modules" "^3.1.0"
"is-module" "^1.0.0"
"resolve" "^1.14.2"
"@rollup/pluginutils@^3.0.8":
"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"
"@sinonjs/commons@^1.7.0":
"integrity" "sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ=="
"resolved" "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.3.tgz"
"version" "1.8.3"
dependencies:
"type-detect" "4.0.8"
"@types/babel__core@^7.1.7":
"integrity" "sha512-zGZJzzBUVDo/eV6KgbE0f0ZI7dInEYvo12Rb70uNQDshC3SkRMb67ja0GgRHZgAX3Za6rhaWlvbDO8rrGyAb1g=="
"resolved" "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.14.tgz"
"version" "7.1.14"
dependencies:
"@babel/parser" "^7.1.0"
"@babel/types" "^7.0.0"
"@types/babel__generator" "*"
"@types/babel__template" "*"
"@types/babel__traverse" "*"
"@types/babel__generator@*":
"integrity" "sha512-MdSJnBjl+bdwkLskZ3NGFp9YcXGx5ggLpQQPqtgakVhsWK0hTtNYhjpZLlWQTviGTvF8at+Bvli3jV7faPdgeQ=="
"resolved" "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.2.tgz"
"version" "7.6.2"
dependencies:
"@babel/types" "^7.0.0"
"@types/babel__template@*":
"integrity" "sha512-NTPErx4/FiPCGScH7foPyr+/1Dkzkni+rHiYHHoTjvwou7AQzJkNeD60A9CXRy+ZEN2B1bggmkTMCDb+Mv5k+A=="
"resolved" "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.0.tgz"
"version" "7.4.0"
dependencies:
"@babel/parser" "^7.1.0"
"@babel/types" "^7.0.0"
"@types/babel__traverse@*", "@types/babel__traverse@^7.0.6":
"integrity" "sha512-Vs0hm0vPahPMYi9tDjtP66llufgO3ST16WXaSTtDGEl9cewAl3AibmxWw6TINOqHPT9z0uABKAYjT9jNSg4npw=="
"resolved" "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.11.1.tgz"
"version" "7.11.1"
dependencies:
"@babel/types" "^7.3.0"
"@types/color-name@^1.1.1":
"integrity" "sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ=="
"resolved" "https://registry.npmjs.org/@types/color-name/-/color-name-1.1.1.tgz"
"version" "1.1.1"
"@types/eslint-visitor-keys@^1.0.0":
"integrity" "sha512-OCutwjDZ4aFS6PB1UZ988C4YgwlBHJd6wCeQqaLdmadZ/7e+w79+hbMUFC1QXDNCmdyoRfAFdm0RypzwR+Qpag=="
"resolved" "https://registry.npmjs.org/@types/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz"
"version" "1.0.0"
"@types/estree@*", "@types/estree@0.0.39":
"integrity" "sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw=="
"resolved" "https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz"
"version" "0.0.39"
"@types/graceful-fs@^4.1.2":
"integrity" "sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw=="
"resolved" "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.5.tgz"
"version" "4.1.5"
dependencies:
"@types/node" "*"
"@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@^1.1.1":
"integrity" "sha512-P/W9yOX/3oPZSpaYOCQzGqgCQRXn0FFO/V8bWrCQs+wLmvVVxk6CRBXALEvNs9OHIatlnlFokfhuDo2ug01ciw=="
"resolved" "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-1.1.2.tgz"
"version" "1.1.2"
dependencies:
"@types/istanbul-lib-coverage" "*"
"@types/istanbul-lib-report" "*"
"@types/istanbul-reports@^3.0.0":
"integrity" "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw=="
"resolved" "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz"
"version" "3.0.1"
dependencies:
"@types/istanbul-lib-report" "*"
"@types/jest@^26.0.23":
"integrity" "sha512-ZHLmWMJ9jJ9PTiT58juykZpL7KjwJywFN3Rr2pTSkyQfydf/rk22yS7W8p5DaVUMQ2BQC7oYiU3FjbTM/mYrOA=="
"resolved" "https://registry.npmjs.org/@types/jest/-/jest-26.0.23.tgz"
"version" "26.0.23"
dependencies:
"jest-diff" "^26.0.0"
"pretty-format" "^26.0.0"
"@types/json-schema@^7.0.3":
"integrity" "sha512-3c+yGKvVP5Y9TYBEibGNR+kLtijnj7mYrXRg+WpFb2X9xm04g/DXYkfg4hmzJQosc9snFNUPkbYIhu+KAm6jJw=="
"resolved" "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.6.tgz"
"version" "7.0.6"
"@types/json5@^0.0.29":
"integrity" "sha1-7ihweulOEdK4J7y+UnC86n8+ce4="
"resolved" "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz"
"version" "0.0.29"
"@types/minimist@^1.2.0":
"integrity" "sha1-aaI6OtKcrwCX8G7aWbNh7i8GOfY="
"resolved" "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.0.tgz"
"version" "1.2.0"
"@types/node@*":
"integrity" "sha512-Wk7nG1JSaMfMpoMJDKUsWYugliB2Vy55pdjLpmLixeyMi7HizW2I/9QoxsPCkXl3dO+ZOVqPumKaDUv5zJu2uQ=="
"resolved" "https://registry.npmjs.org/@types/node/-/node-14.6.4.tgz"
"version" "14.6.4"
"@types/normalize-package-data@^2.4.0":
"integrity" "sha512-f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA=="
"resolved" "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.0.tgz"
"version" "2.4.0"
"@types/parse-json@^4.0.0":
"integrity" "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA=="
"resolved" "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz"
"version" "4.0.0"
"@types/prettier@^1.19.0":
"integrity" "sha512-5qOlnZscTn4xxM5MeGXAMOsIOIKIbh9e85zJWfBRVPlRMEVawzoPhINYbRGkBZCI8LxvBe7tJCdWiarA99OZfQ=="
"resolved" "https://registry.npmjs.org/@types/prettier/-/prettier-1.19.1.tgz"
"version" "1.19.1"
"@types/resolve@0.0.8":
"integrity" "sha512-auApPaJf3NPfe18hSoJkp8EbZzer2ISk7o8mCC3M9he/a04+gbMF97NkpD2S8riMGvm4BMRI59/SZQSaLTKpsQ=="
"resolved" "https://registry.npmjs.org/@types/resolve/-/resolve-0.0.8.tgz"
"version" "0.0.8"
dependencies:
"@types/node" "*"
"@types/stack-utils@^1.0.1":
"integrity" "sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw=="
"resolved" "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-1.0.1.tgz"
"version" "1.0.1"
"@types/yargs-parser@*":
"integrity" "sha512-FA/BWv8t8ZWJ+gEOnLLd8ygxH/2UFbAvgEonyfN6yWGLKc7zVjbpl2Y4CTjid9h2RfgPP6SEt6uHwEOply00yw=="
"resolved" "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-15.0.0.tgz"
"version" "15.0.0"
"@types/yargs@^15.0.0":
"integrity" "sha512-Dk/IDOPtOgubt/IaevIUbTgV7doaKkoorvOyYM2CMwuDyP89bekI7H4xLIwunNYiK9jhCkmc6pUrJk3cj2AB9w=="
"resolved" "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.5.tgz"
"version" "15.0.5"
dependencies:
"@types/yargs-parser" "*"
"@typescript-eslint/eslint-plugin@^2.24.0":
"integrity" "sha512-4zY3Z88rEE99+CNvTbXSyovv2z9PNOVffTWD2W8QF5s2prBQtwN2zadqERcrHpcR7O/+KMI3fcTAmUUhK/iQcQ=="
"resolved" "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-2.34.0.tgz"
"version" "2.34.0"
dependencies:
"@typescript-eslint/experimental-utils" "2.34.0"
"functional-red-black-tree" "^1.0.1"
"regexpp" "^3.0.0"
"tsutils" "^3.17.1"
"@typescript-eslint/experimental-utils@2.34.0":
"integrity" "sha512-eS6FTkq+wuMJ+sgtuNTtcqavWXqsflWcfBnlYhg/nS4aZ1leewkXGbvBhaapn1q6qf4M71bsR1tez5JTRMuqwA=="
"resolved" "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-2.34.0.tgz"
"version" "2.34.0"
dependencies:
"@types/json-schema" "^7.0.3"
"@typescript-eslint/typescript-estree" "2.34.0"
"eslint-scope" "^5.0.0"
"eslint-utils" "^2.0.0"
"@typescript-eslint/parser@^2.24.0":
"integrity" "sha512-03ilO0ucSD0EPTw2X4PntSIRFtDPWjrVq7C3/Z3VQHRC7+13YB55rcJI3Jt+YgeHbjUdJPcPa7b23rXCBokuyA=="
"resolved" "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-2.34.0.tgz"
"version" "2.34.0"
dependencies:
"@types/eslint-visitor-keys" "^1.0.0"
"@typescript-eslint/experimental-utils" "2.34.0"
"@typescript-eslint/typescript-estree" "2.34.0"
"eslint-visitor-keys" "^1.1.0"
"@typescript-eslint/typescript-estree@2.34.0":
"integrity" "sha512-OMAr+nJWKdlVM9LOqCqh3pQQPwxHAN7Du8DR6dmwCrAmxtiXQnhHJ6tBNtf+cggqfo51SG/FCwnKhXCIM7hnVg=="
"resolved" "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-2.34.0.tgz"
"version" "2.34.0"
dependencies:
"debug" "^4.1.1"
"eslint-visitor-keys" "^1.1.0"
"glob" "^7.1.6"
"is-glob" "^4.0.1"
"lodash" "^4.17.15"
"semver" "^7.3.2"
"tsutils" "^3.17.1"
"abab@^2.0.0":
"integrity" "sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q=="
"resolved" "https://registry.npmjs.org/abab/-/abab-2.0.5.tgz"
"version" "2.0.5"
"acorn-globals@^4.3.2":
"integrity" "sha512-clfQEh21R+D0leSbUdWf3OcfqyaCSAQ8Ryq00bofSekfr9W8u1jyYZo6ir0xu9Gtcf7BjcHJpnbZH7JOCpP60A=="
"resolved" "https://registry.npmjs.org/acorn-globals/-/acorn-globals-4.3.4.tgz"
"version" "4.3.4"
dependencies:
"acorn" "^6.0.1"
"acorn-walk" "^6.0.1"
"acorn-jsx@^5.2.0":
"integrity" "sha512-K0Ptm/47OKfQRpNQ2J/oIN/3QYiK6FwW+eJbILhsdxh2WTLdl+30o8aGdTbm5JbffpFFAg/g+zi1E+jvJha5ng=="
"resolved" "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.1.tgz"
"version" "5.3.1"
"acorn-walk@^6.0.1":
"integrity" "sha512-7evsyfH1cLOCdAzZAd43Cic04yKydNx0cF+7tiA19p1XnLLPU4dpCQOqpjqwokFe//vS0QqfqqjCS2JkiIs0cA=="
"resolved" "https://registry.npmjs.org/acorn-walk/-/acorn-walk-6.2.0.tgz"
"version" "6.2.0"
"acorn@^6.0.1":
"integrity" "sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ=="
"resolved" "https://registry.npmjs.org/acorn/-/acorn-6.4.2.tgz"
"version" "6.4.2"
"acorn@^7.1.0", "acorn@^7.1.1":
"integrity" "sha512-+G7P8jJmCHr+S+cLfQxygbWhXy+8YTVGzAkpEbcLo2mLoL7tij/VG41QSHACSf5QgYRhMZYHuNc6drJaO0Da+w=="
"resolved" "https://registry.npmjs.org/acorn/-/acorn-7.4.0.tgz"
"version" "7.4.0"
"ajv@^6.10.0", "ajv@^6.10.2", "ajv@^6.12.3":
"integrity" "sha512-eienB2c9qVQs2KWexhkrdMLVDoIQCz5KSeLxwg9Lzk4DOfBtIK9PQwwufcsn1jjGuf9WZmqPMbGxOzfcuphJCQ=="
"resolved" "https://registry.npmjs.org/ajv/-/ajv-6.12.4.tgz"
"version" "6.12.4"
dependencies:
"fast-deep-equal" "^3.1.1"
"fast-json-stable-stringify" "^2.0.0"
"json-schema-traverse" "^0.4.1"
"uri-js" "^4.2.2"
"ansi-escapes@^4.2.1":
"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@^4.1.0":
"integrity" "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg=="
"resolved" "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz"
"version" "4.1.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.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-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA=="
"resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz"
"version" "4.2.1"
dependencies:
"@types/color-name" "^1.1.1"
"color-convert" "^2.0.1"
"anymatch@^2.0.0":
"integrity" "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw=="
"resolved" "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz"
"version" "2.0.0"
dependencies:
"micromatch" "^3.1.4"
"normalize-path" "^2.1.1"
"anymatch@^3.0.3":
"integrity" "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg=="
"resolved" "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz"
"version" "3.1.2"
dependencies:
"normalize-path" "^3.0.0"
"picomatch" "^2.0.4"
"argparse@^1.0.7":
"integrity" "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg=="
"resolved" "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz"
"version" "1.0.10"
dependencies:
"sprintf-js" "~1.0.2"
"arr-diff@^4.0.0":
"integrity" "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA="
"resolved" "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz"
"version" "4.0.0"
"arr-flatten@^1.1.0":
"integrity" "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg=="
"resolved" "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz"
"version" "1.1.0"
"arr-union@^3.1.0":
"integrity" "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ="
"resolved" "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz"
"version" "3.1.0"
"array-equal@^1.0.0":
"integrity" "sha1-jCpe8kcv2ep0KwTHenUJO6J1fJM="
"resolved" "https://registry.npmjs.org/array-equal/-/array-equal-1.0.0.tgz"
"version" "1.0.0"
"array-ify@^1.0.0":
"integrity" "sha1-nlKHYrSpBmrRY6aWKjZEGOlibs4="
"resolved" "https://registry.npmjs.org/array-ify/-/array-ify-1.0.0.tgz"
"version" "1.0.0"
"array-includes@^3.1.1":
"integrity" "sha512-c2VXaCHl7zPsvpkFsw4nxvFie4fh1ur9bpcgsVkIjqn0H/Xwdg+7fv3n2r/isyS8EBj5b06M9kHyZuIr4El6WQ=="