forked from sysgears/mochapack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
13867 lines (12462 loc) · 467 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 file is generated by running "yarn install" inside your project.
# Manual changes might be lost - proceed with caution!
__metadata:
version: 4
cacheKey: 7c0
"@babel/cli@npm:^7.0.0":
version: 7.8.4
resolution: "@babel/cli@npm:7.8.4"
dependencies:
chokidar: ^2.1.8
commander: ^4.0.1
convert-source-map: ^1.1.0
fs-readdir-recursive: ^1.1.0
glob: ^7.0.0
lodash: ^4.17.13
make-dir: ^2.1.0
slash: ^2.0.0
source-map: ^0.5.0
peerDependencies:
"@babel/core": ^7.0.0-0
dependenciesMeta:
chokidar:
optional: true
bin:
babel: ./bin/babel.js
babel-external-helpers: ./bin/babel-external-helpers.js
checksum: 48324ee62d9c0cabbb26b4d206f9c2bbcc6133185c031c218a9c24f65bf5c80710852b41920955da6d321b263799cc890e2f2465db1df34dec761fe4e24c7edc
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/code-frame@npm:7.8.3"
dependencies:
"@babel/highlight": ^7.8.3
checksum: b25b28112837a8c8466ec0263280005e009fd19cf0ed9432c8d2b90a183144ba947970a86793cb931e4aa08443ba59716f9953c93491039f6609d795b5fdebad
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.8.6, @babel/compat-data@npm:^7.9.0":
version: 7.9.0
resolution: "@babel/compat-data@npm:7.9.0"
dependencies:
browserslist: ^4.9.1
invariant: ^2.2.4
semver: ^5.5.0
checksum: 2c79ec28e9a90143db8d77b5e740f7ef47ebf4842d96a25c16d708564d0f8cf1c0d9ca7f56c50e11e60b5c4ac50700652226208efa01393cb3418bf815b5c46c
languageName: node
linkType: hard
"@babel/core@npm:^7.0.0":
version: 7.9.0
resolution: "@babel/core@npm:7.9.0"
dependencies:
"@babel/code-frame": ^7.8.3
"@babel/generator": ^7.9.0
"@babel/helper-module-transforms": ^7.9.0
"@babel/helpers": ^7.9.0
"@babel/parser": ^7.9.0
"@babel/template": ^7.8.6
"@babel/traverse": ^7.9.0
"@babel/types": ^7.9.0
convert-source-map: ^1.7.0
debug: ^4.1.0
gensync: ^1.0.0-beta.1
json5: ^2.1.2
lodash: ^4.17.13
resolve: ^1.3.2
semver: ^5.4.1
source-map: ^0.5.0
checksum: 8220ebf15298255a8aeb04b2e01b45b749a5131e3ab1b327bf4dc19c889d3fa340ad14691cce14ec42173b5e8cad51e548745f68be9b67cdb82467c463efebf0
languageName: node
linkType: hard
"@babel/generator@npm:^7.4.0, @babel/generator@npm:^7.9.0, @babel/generator@npm:^7.9.5":
version: 7.9.5
resolution: "@babel/generator@npm:7.9.5"
dependencies:
"@babel/types": ^7.9.5
jsesc: ^2.5.1
lodash: ^4.17.13
source-map: ^0.5.0
checksum: 9eef1923fc7490793a7739a655fa996c46f71f22e62d1f10790a095949ab3294428845541172075bd67beef3b39a86d128fa6c23f0a090bd882d3a8155e6f836
languageName: node
linkType: hard
"@babel/helper-annotate-as-pure@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/helper-annotate-as-pure@npm:7.8.3"
dependencies:
"@babel/types": ^7.8.3
checksum: 01f04f4ee42b11018c3e0bd2dce31989d328e7ff4b52833422f78edbb2ceb2cb860398baac3624a47d5001db23e36117fbb37c534ce76a723c1f5c4752813c22
languageName: node
linkType: hard
"@babel/helper-builder-binary-assignment-operator-visitor@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/helper-builder-binary-assignment-operator-visitor@npm:7.8.3"
dependencies:
"@babel/helper-explode-assignable-expression": ^7.8.3
"@babel/types": ^7.8.3
checksum: 7baa1ad38714c0bd77d9431e23766ace93cb0e7277aff0b33b8ca7d042a4c7aaa423b7d9778c01f7e8b115d6841a3da9ca9f2967d122a7470c9b39b1bee86d92
languageName: node
linkType: hard
"@babel/helper-compilation-targets@npm:^7.8.7":
version: 7.8.7
resolution: "@babel/helper-compilation-targets@npm:7.8.7"
dependencies:
"@babel/compat-data": ^7.8.6
browserslist: ^4.9.1
invariant: ^2.2.4
levenary: ^1.1.1
semver: ^5.5.0
peerDependencies:
"@babel/core": ^7.0.0
checksum: 324462abfe7ca8b35d93319981d21631733c5af90650e32c0d0107389f6cd828eca04dae523b35c296f3d98d90775da5c3149a00d07114410c2353313df3d643
languageName: node
linkType: hard
"@babel/helper-create-class-features-plugin@npm:^7.8.3":
version: 7.9.5
resolution: "@babel/helper-create-class-features-plugin@npm:7.9.5"
dependencies:
"@babel/helper-function-name": ^7.9.5
"@babel/helper-member-expression-to-functions": ^7.8.3
"@babel/helper-optimise-call-expression": ^7.8.3
"@babel/helper-plugin-utils": ^7.8.3
"@babel/helper-replace-supers": ^7.8.6
"@babel/helper-split-export-declaration": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0
checksum: e61b65a54844fcae2677d05a748ad2279879dfd77cfff4feeb47a8396cedc16a48038b788b20825d2b75b40ab46a1859a885b8b6e584e492ef3d734bba8ee495
languageName: node
linkType: hard
"@babel/helper-create-regexp-features-plugin@npm:^7.8.3, @babel/helper-create-regexp-features-plugin@npm:^7.8.8":
version: 7.8.8
resolution: "@babel/helper-create-regexp-features-plugin@npm:7.8.8"
dependencies:
"@babel/helper-annotate-as-pure": ^7.8.3
"@babel/helper-regex": ^7.8.3
regexpu-core: ^4.7.0
peerDependencies:
"@babel/core": ^7.0.0
checksum: 093f9ae64333f504329eb576c014db0c7403fe4e1fcd08e34d9c678432e91584ad1e2c7b0efefc8ff758e7bf0baa61be6e48751691102e452732503b142ac4fe
languageName: node
linkType: hard
"@babel/helper-define-map@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/helper-define-map@npm:7.8.3"
dependencies:
"@babel/helper-function-name": ^7.8.3
"@babel/types": ^7.8.3
lodash: ^4.17.13
checksum: 0dadfe591fecad8eba79d8078eff30b5e79d7140f68e946ece0defa335ec9bced5674898149b9480658c3c836a0ebf1c118961697f522303b48610c9385d5ba5
languageName: node
linkType: hard
"@babel/helper-explode-assignable-expression@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/helper-explode-assignable-expression@npm:7.8.3"
dependencies:
"@babel/traverse": ^7.8.3
"@babel/types": ^7.8.3
checksum: 6eec45eff4790102b105c811c98a0b4528656a749bc8398f3fc0b5336f63a553c9e358a0b5915d67ac3a240536b93735cb01c7c17340a8dc6f9c2c919ddb1ea8
languageName: node
linkType: hard
"@babel/helper-function-name@npm:^7.8.3, @babel/helper-function-name@npm:^7.9.5":
version: 7.9.5
resolution: "@babel/helper-function-name@npm:7.9.5"
dependencies:
"@babel/helper-get-function-arity": ^7.8.3
"@babel/template": ^7.8.3
"@babel/types": ^7.9.5
checksum: c46072002ec799887c156cc4a698358f331b2c4d63850f3aa26dbbdb0ff62384a24325557105c020ae9a48135848be2c3e672c30f9088c5443ba2dcbb472160a
languageName: node
linkType: hard
"@babel/helper-get-function-arity@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/helper-get-function-arity@npm:7.8.3"
dependencies:
"@babel/types": ^7.8.3
checksum: 4d2da1d88e86866bb767173d96b92682e82cfb4691ad72fe379d28fc164e522adf5db289bff7a5f664b5cddedcf2a744065d6fc4757760c6c1bdf3652800288c
languageName: node
linkType: hard
"@babel/helper-hoist-variables@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/helper-hoist-variables@npm:7.8.3"
dependencies:
"@babel/types": ^7.8.3
checksum: 0c927d79dc9c3bdb27ebfd129d52c195490051880ce73dc2e53f51c2126526ad068ede533854c86eb3c7be670fe91c7f9e7ac58c99fffe3142cb6ee2e88c7909
languageName: node
linkType: hard
"@babel/helper-member-expression-to-functions@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/helper-member-expression-to-functions@npm:7.8.3"
dependencies:
"@babel/types": ^7.8.3
checksum: d52d62a94eb53107786f394c724dcb516e2dda0da897b666d8ea0fab2c4499d9c34c60142b0b36e06ea363706516b4e21c5f792b4fd40ae54592d55ee2a26ba5
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^7.0.0-beta.49, @babel/helper-module-imports@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/helper-module-imports@npm:7.8.3"
dependencies:
"@babel/types": ^7.8.3
checksum: cff3fc22fb035e9354f70f9ec7ca36fbf618ebb4d9980a5ba8bfa0b502467d0737e725dd2d94e7ba0c58948b08de198dc7c89978d6905b8883109079541f0584
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.9.0":
version: 7.9.0
resolution: "@babel/helper-module-transforms@npm:7.9.0"
dependencies:
"@babel/helper-module-imports": ^7.8.3
"@babel/helper-replace-supers": ^7.8.6
"@babel/helper-simple-access": ^7.8.3
"@babel/helper-split-export-declaration": ^7.8.3
"@babel/template": ^7.8.6
"@babel/types": ^7.9.0
lodash: ^4.17.13
checksum: 4758cc4379e6f8471eb35e59dfdd449496fe75a9b29ce9dbfd0ba276a012b44a0872790f29f5f258a21ad1174065cc93f52a8f933182f9e1b11aef7d114f9b6d
languageName: node
linkType: hard
"@babel/helper-optimise-call-expression@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/helper-optimise-call-expression@npm:7.8.3"
dependencies:
"@babel/types": ^7.8.3
checksum: 867605c024a54ad44feb9e6e6f3c9682dc6d9ce0d1c9a2d43803805a66f298dbca9042e60e01c028060a8da496e8c27593edc6de45fe86b5320ae246ff45c0ef
languageName: node
linkType: hard
"@babel/helper-plugin-utils@npm:^7.0.0, @babel/helper-plugin-utils@npm:^7.8.0, @babel/helper-plugin-utils@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/helper-plugin-utils@npm:7.8.3"
checksum: b1054e7d6bf31c93edd5cbb405b09987713e4475713e746ef330df1732bf7e3cbe0e6c90926cd0dabee4d233693f6194e7ddd3afa1d55f335d545a6b668758a8
languageName: node
linkType: hard
"@babel/helper-regex@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/helper-regex@npm:7.8.3"
dependencies:
lodash: ^4.17.13
checksum: 9058e5e0cc41b3f9258748623532c05a32790f1831cbce7a138873dd6181da4ac465389a5861ce0f4fc4f8c49337fe79600ee9f36f69cf0251f9a36fa6ec3a5c
languageName: node
linkType: hard
"@babel/helper-remap-async-to-generator@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/helper-remap-async-to-generator@npm:7.8.3"
dependencies:
"@babel/helper-annotate-as-pure": ^7.8.3
"@babel/helper-wrap-function": ^7.8.3
"@babel/template": ^7.8.3
"@babel/traverse": ^7.8.3
"@babel/types": ^7.8.3
checksum: 58700af901c24479e6ed893452809f727d7df2b4606fad6d8e3e952de1109ea7a64098c3668d2cff313c68810bd10a445ad617fb3ea908229f42d33f2e52540a
languageName: node
linkType: hard
"@babel/helper-replace-supers@npm:^7.8.3, @babel/helper-replace-supers@npm:^7.8.6":
version: 7.8.6
resolution: "@babel/helper-replace-supers@npm:7.8.6"
dependencies:
"@babel/helper-member-expression-to-functions": ^7.8.3
"@babel/helper-optimise-call-expression": ^7.8.3
"@babel/traverse": ^7.8.6
"@babel/types": ^7.8.6
checksum: dd5ec6cc20a0760f95ca9de63c72e7cda62678e42da1637ad799efbdbb9515b09a21b96890b379b729d4f846e11f48ea1deac191223285e3c93d952fd891b83b
languageName: node
linkType: hard
"@babel/helper-simple-access@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/helper-simple-access@npm:7.8.3"
dependencies:
"@babel/template": ^7.8.3
"@babel/types": ^7.8.3
checksum: ddf2bcb6a9e8ff91a1a061840de4d9fcd4a1c55528551c1ba6bf4169fe9838bedd734ac402e341001e86b1f8da81aecdb58ea4f01ba32bd1f6bb0de270f60250
languageName: node
linkType: hard
"@babel/helper-split-export-declaration@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/helper-split-export-declaration@npm:7.8.3"
dependencies:
"@babel/types": ^7.8.3
checksum: a25a162321451221a0c84762e1c6fe22c1408b163fb8c732b3966cd84659e5f131c2ec4337f6c3ca01a5bebe5d9ecc49e320435ab7bd1823b445e048fc17f9ce
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.9.0, @babel/helper-validator-identifier@npm:^7.9.5":
version: 7.9.5
resolution: "@babel/helper-validator-identifier@npm:7.9.5"
checksum: 5f2f8a66c31861ac302b30a7abc0ace1829ed39a6838e3e0001289e844a17357c533ae75e946d4984be6f5140753d50a963e2e3d66f45c515a92a08f7b5ca06d
languageName: node
linkType: hard
"@babel/helper-wrap-function@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/helper-wrap-function@npm:7.8.3"
dependencies:
"@babel/helper-function-name": ^7.8.3
"@babel/template": ^7.8.3
"@babel/traverse": ^7.8.3
"@babel/types": ^7.8.3
checksum: accedbb80735820cc6b93488ce9114f1fd94d67aefdf3a7d93a191e7ed6eac20cde7854442fb1d6e6e8482fd67441bc02898a7eda75772733daa6c0124d1b533
languageName: node
linkType: hard
"@babel/helpers@npm:^7.9.0":
version: 7.9.2
resolution: "@babel/helpers@npm:7.9.2"
dependencies:
"@babel/template": ^7.8.3
"@babel/traverse": ^7.9.0
"@babel/types": ^7.9.0
checksum: 29dde83218aee8fe7406442d64ad43f00783cb5e5d113757d09ac31551d4bf334d63ab1304bef81e92ff02d2eb6c8f536b5a2d943021f2fddad784acd4021d05
languageName: node
linkType: hard
"@babel/highlight@npm:^7.8.3":
version: 7.9.0
resolution: "@babel/highlight@npm:7.9.0"
dependencies:
"@babel/helper-validator-identifier": ^7.9.0
chalk: ^2.0.0
js-tokens: ^4.0.0
checksum: 835b0af757651b17b0bb35b1f37b0b4e2ef4e4483c16418e452e77b6452573da1a4ab8f4439c1db2504e8601483155176c464c8a0631773de01baf5fb27bdfc2
languageName: node
linkType: hard
"@babel/parser@npm:^7.0.0, @babel/parser@npm:^7.4.3, @babel/parser@npm:^7.8.6, @babel/parser@npm:^7.9.0":
version: 7.9.4
resolution: "@babel/parser@npm:7.9.4"
bin:
parser: ./bin/babel-parser.js
checksum: 43f6f63ba9ffd8c029ce8871dfde79f3fcd4ea103509f3cfca4f8c6dcd6a093f155872521a8d4bf543c4454b5d18ab78e0fef3263cb17d59f05a9cc5bfeaaa67
languageName: node
linkType: hard
"@babel/plugin-proposal-async-generator-functions@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-proposal-async-generator-functions@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
"@babel/helper-remap-async-to-generator": ^7.8.3
"@babel/plugin-syntax-async-generators": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 3862fab140e04ba0b529ea6b04ec6b1b656403510fedf173d3dd172ab0b034296e9eadac134516ee961bd711494d8a03b27dffd60c215f84069780245fa40021
languageName: node
linkType: hard
"@babel/plugin-proposal-class-properties@npm:^7.0.0":
version: 7.8.3
resolution: "@babel/plugin-proposal-class-properties@npm:7.8.3"
dependencies:
"@babel/helper-create-class-features-plugin": ^7.8.3
"@babel/helper-plugin-utils": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: ef528e32c79026ee41a3e178c159d9a4b872bf86cb4937e42701dfcdafaa124491ed430b85cae8249bff2684e18185db033397d23e57fecf7ef7f2c3dc352e9b
languageName: node
linkType: hard
"@babel/plugin-proposal-decorators@npm:^7.0.0":
version: 7.8.3
resolution: "@babel/plugin-proposal-decorators@npm:7.8.3"
dependencies:
"@babel/helper-create-class-features-plugin": ^7.8.3
"@babel/helper-plugin-utils": ^7.8.3
"@babel/plugin-syntax-decorators": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: e4392d53e5d1f0df28cc14f361e13c402e6d5e91fbab811da62268b63c9d9eddf46191a07f095e55425f3ccbe9061a2e12dee802ba5658fd2ec12f2a3663ce58
languageName: node
linkType: hard
"@babel/plugin-proposal-dynamic-import@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-proposal-dynamic-import@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
"@babel/plugin-syntax-dynamic-import": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 1b9790c7e53f4702521f6de613283b300bc3acff1cf56b65e9afcb6099cc996e2fdbe211dbf8e5e62fa30e089a42e8c147f4f9d0b7cb72909af65474d2346082
languageName: node
linkType: hard
"@babel/plugin-proposal-json-strings@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-proposal-json-strings@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
"@babel/plugin-syntax-json-strings": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2dbea7146ec80000e037a708f65e0d6749a746fa09cc0095c90365259f119fd2edc4527a45fe93520afbff53121935e63a8f6a89d3226cc8c2fd81549cc6fe88
languageName: node
linkType: hard
"@babel/plugin-proposal-nullish-coalescing-operator@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-proposal-nullish-coalescing-operator@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
"@babel/plugin-syntax-nullish-coalescing-operator": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 871e9a0b86e92054843ac4420d2166ad67eeeab23385985c0071eb1ff895e173108b40a2c89ef67f4adcab2fe60ad32bd1f8015ac059a2d3c982ff23080fcdf4
languageName: node
linkType: hard
"@babel/plugin-proposal-numeric-separator@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-proposal-numeric-separator@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
"@babel/plugin-syntax-numeric-separator": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: dfc6ebd2718fd02859ad541f68167968261e0b1b8a1a12491bf7f8a0a2e04ef3633694898f4c71741d8f4740bcbe07f5a5022b1198c58f1a13d2b84591c8624c
languageName: node
linkType: hard
"@babel/plugin-proposal-object-rest-spread@npm:^7.0.0, @babel/plugin-proposal-object-rest-spread@npm:^7.9.5":
version: 7.9.5
resolution: "@babel/plugin-proposal-object-rest-spread@npm:7.9.5"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
"@babel/plugin-syntax-object-rest-spread": ^7.8.0
"@babel/plugin-transform-parameters": ^7.9.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 3394f47d931c066e4298975f8fd9cfea49306c3475ee0413834f1ade61cf9cec8ed6d22f2813cbfddaeae888d426676c8df0aedddc0caa0fdc480fcd95130003
languageName: node
linkType: hard
"@babel/plugin-proposal-optional-catch-binding@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-proposal-optional-catch-binding@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
"@babel/plugin-syntax-optional-catch-binding": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: da4a1e392264a28da07246f864b238ea8a9bfa8a796e1652d285ca517f82d04fc3e1679b71f6dafef4da2056bdf320ca5f000c9fc5517c20d8970470d2d4b78a
languageName: node
linkType: hard
"@babel/plugin-proposal-optional-chaining@npm:^7.9.0":
version: 7.9.0
resolution: "@babel/plugin-proposal-optional-chaining@npm:7.9.0"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
"@babel/plugin-syntax-optional-chaining": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 0464df4847883659315e1ca0b57c5e502ddbdd1d7760850c0db608cc8ab7d0ca4c179baf23d044d08cc4f16418a939300673dd24fd70d9a791762af2dfbaff28
languageName: node
linkType: hard
"@babel/plugin-proposal-unicode-property-regex@npm:^7.4.4, @babel/plugin-proposal-unicode-property-regex@npm:^7.8.3":
version: 7.8.8
resolution: "@babel/plugin-proposal-unicode-property-regex@npm:7.8.8"
dependencies:
"@babel/helper-create-regexp-features-plugin": ^7.8.8
"@babel/helper-plugin-utils": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: ba6a7c73f14a351947fdf1a8c3793e23a107274ba0b354d442db23b042c18c95b430320459a9640c19dc30fe1aa19d835353fd681959fc6e90cb3c14a6ec8283
languageName: node
linkType: hard
"@babel/plugin-syntax-async-generators@npm:^7.8.0":
version: 7.8.4
resolution: "@babel/plugin-syntax-async-generators@npm:7.8.4"
dependencies:
"@babel/helper-plugin-utils": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: d811d9d365170b1f2ae7b7f73ad5607523405801a1c8291063b1d4f7f7a5ff06fb87c75cf46a5408d94b4749dd7565c04627fee450d7b127d1b0985734af76b7
languageName: node
linkType: hard
"@babel/plugin-syntax-decorators@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-decorators@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2894df70e4b081af215187c0587e22fe09d33df3841367f9e6e4672f067d91f8d583129b5617d50e9910eb9b7c09b86a2ffbcf9b2221283434b51b1e53dc306f
languageName: node
linkType: hard
"@babel/plugin-syntax-dynamic-import@npm:^7.8.0":
version: 7.8.3
resolution: "@babel/plugin-syntax-dynamic-import@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: ad0a8ee743b5c3b353ca8c1ff3b7e3ca4a072f4249ebb01072e9adfbf18ad621eef981df64a2abee6056769e209d5833a6b5a4e8c65c8dd817b3a4dc59813207
languageName: node
linkType: hard
"@babel/plugin-syntax-json-strings@npm:^7.8.0":
version: 7.8.3
resolution: "@babel/plugin-syntax-json-strings@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 7ab3a2332ff51b8b788ffd32d9fc54096e06cea2cf5daf99b16c64cb151bbb044b0aa68733cde0db77550851644cd2545ae896d9cd0cbb329a58dc5b2704eccd
languageName: node
linkType: hard
"@babel/plugin-syntax-nullish-coalescing-operator@npm:^7.8.0":
version: 7.8.3
resolution: "@babel/plugin-syntax-nullish-coalescing-operator@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: cc177ec41a2f0d74d45cc3a5dd614ca9e84c9e9e6db65051e553bbaf34906b755eee470066b438c89076f03b2da2908b1506ee7e06345b4de393663124243b73
languageName: node
linkType: hard
"@babel/plugin-syntax-numeric-separator@npm:^7.8.0, @babel/plugin-syntax-numeric-separator@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-numeric-separator@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: c38f5d45078c381a5af9c0448896a1d36388c45069b682d70f09faf83251a9dd9776ae1f7a5a116f6df94565c0326ca57c8068444f930307613a4d8c3be740ae
languageName: node
linkType: hard
"@babel/plugin-syntax-object-rest-spread@npm:^7.8.0":
version: 7.8.3
resolution: "@babel/plugin-syntax-object-rest-spread@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 7bfcc6c76f06c715bb942272bf53b2fbc38d6c98364abda9f67cbacc11b0ed5fcb2b4f0921705283197f9950609daa6f2dfa364081b34fadb91e3961e9961aab
languageName: node
linkType: hard
"@babel/plugin-syntax-optional-catch-binding@npm:^7.8.0":
version: 7.8.3
resolution: "@babel/plugin-syntax-optional-catch-binding@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: d5ea1feac965c94632b43a70e96e515af76204d258183aeebeb9ec7c187933f923b6ec29a7f22e7043742b1a529f3cef3a45b6b18b235f115077397c2051dd7e
languageName: node
linkType: hard
"@babel/plugin-syntax-optional-chaining@npm:^7.8.0":
version: 7.8.3
resolution: "@babel/plugin-syntax-optional-chaining@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 1c926f483df6892b008ca82b2f8fe41c26c38e26e77b6df936deee13547a199403c93e70fe5a9498b5859cb02b0ad0c8ed72b2379fa39ecdadfc76e17cd7d3d4
languageName: node
linkType: hard
"@babel/plugin-syntax-top-level-await@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-top-level-await@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 107723228cb753bdda62552bc5d0543448a983f7afc8fd616dfc52d4fdbe43225f0e7bc62773ee29212135454e69a7c00098fff4b64cf1e8655ab05d12788502
languageName: node
linkType: hard
"@babel/plugin-syntax-typescript@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-typescript@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 40151d5cf1a8d4f59444043ad9725bcaa6220601035076c9c1bb5a95117f35a260aacdbb2bd5f3cc6b1e82934b1a884ec8886851834d4ffa67bb45fb9cc58974
languageName: node
linkType: hard
"@babel/plugin-transform-arrow-functions@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-transform-arrow-functions@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 01f19b63ec73cd8f7816e8ec8c8deb4b0b8e38abc27ed8a2244cff3a999ff46d3c1168c52bde35cfb5b6498da878e58b44fe4c490304c5c01d8e31327f239122
languageName: node
linkType: hard
"@babel/plugin-transform-async-to-generator@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-transform-async-to-generator@npm:7.8.3"
dependencies:
"@babel/helper-module-imports": ^7.8.3
"@babel/helper-plugin-utils": ^7.8.3
"@babel/helper-remap-async-to-generator": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 45f5aed399b01b8ffdee72895ff30baff01451f6bb27e973b4dc75ee71204ae0f9fd75050cc32fce0166775d6653ac70de0b7c9635f03f8b324bea7c9f009309
languageName: node
linkType: hard
"@babel/plugin-transform-block-scoped-functions@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-transform-block-scoped-functions@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 0634e17a0250aef1e93e0ca4a29ec13040c4123448e8adaa53d0c1f0f96e1619ca2ac1136211117d75ef24f163693327b729a81372614ba5f3caa92dffd258aa
languageName: node
linkType: hard
"@babel/plugin-transform-block-scoping@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-transform-block-scoping@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
lodash: ^4.17.13
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 06fbddd748eefa71bdc22dbaebb27f2e95560088831904e669c65c35cd2470f5a8617b15b2afb0816ad202896480c67604f63155847ff7fbd0c5716fcae9b01d
languageName: node
linkType: hard
"@babel/plugin-transform-classes@npm:^7.9.5":
version: 7.9.5
resolution: "@babel/plugin-transform-classes@npm:7.9.5"
dependencies:
"@babel/helper-annotate-as-pure": ^7.8.3
"@babel/helper-define-map": ^7.8.3
"@babel/helper-function-name": ^7.9.5
"@babel/helper-optimise-call-expression": ^7.8.3
"@babel/helper-plugin-utils": ^7.8.3
"@babel/helper-replace-supers": ^7.8.6
"@babel/helper-split-export-declaration": ^7.8.3
globals: ^11.1.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2a646bd2d385d4b4b0edef8f4e72226a0f7eee338ae8aa1b4e226041be485ada593c726c1d36a81d84e2db23f1469be90b148f97c81a638d60382132c0c93d4f
languageName: node
linkType: hard
"@babel/plugin-transform-computed-properties@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-transform-computed-properties@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 6dcc7cc046e40b0cc455c61561e4811f7424bec396fa2db40e1b1dbd08fe595659f97513a3a339c83e6aea49e39ea4bd83033f6e3a6e745c4dd08e24c49ce681
languageName: node
linkType: hard
"@babel/plugin-transform-destructuring@npm:^7.9.5":
version: 7.9.5
resolution: "@babel/plugin-transform-destructuring@npm:7.9.5"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2a27b87508525a48042be126a0a7b2af35c64dbcd3dd168b7698cdd5c541b86f36aaf521d66c92e00b824485a9042acab90b17a2e4cf49f1863d18b6d4b696ac
languageName: node
linkType: hard
"@babel/plugin-transform-dotall-regex@npm:^7.4.4, @babel/plugin-transform-dotall-regex@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-transform-dotall-regex@npm:7.8.3"
dependencies:
"@babel/helper-create-regexp-features-plugin": ^7.8.3
"@babel/helper-plugin-utils": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: cbe5994859413c6c9187f08a4620311ddb359a6fdf3da44a2e031be7e949d414478c945ee4b746830faa9ec66097197ec3fdfde537bd8601d052afcd2f2efa9d
languageName: node
linkType: hard
"@babel/plugin-transform-duplicate-keys@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-transform-duplicate-keys@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 534667495b3b6d00c1e7730eca0cdfb9f935dee5db8f0bf01d8905d21da133afeaa62cddffaa4f7cc49e12a6d0790646602c796f0182695fe4fd488664ad5275
languageName: node
linkType: hard
"@babel/plugin-transform-exponentiation-operator@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-transform-exponentiation-operator@npm:7.8.3"
dependencies:
"@babel/helper-builder-binary-assignment-operator-visitor": ^7.8.3
"@babel/helper-plugin-utils": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: a01a2fce40bbf2ed66c7addc7c344b1fe604f82493a475b2c059b0d46f26a58e8afc4e6de7aba06f1675ed8f05001e0995176c29d0f99146f02e7342cadafaa2
languageName: node
linkType: hard
"@babel/plugin-transform-for-of@npm:^7.9.0":
version: 7.9.0
resolution: "@babel/plugin-transform-for-of@npm:7.9.0"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 01a0579d9ca5ec5958e3bfa4e9f6412161febb4c8c20fa407fea1e29cba6014843e79f29d41df4a7c4fc3a18a983f23c3d190ecc333694a7b9da9f9c2c2995a8
languageName: node
linkType: hard
"@babel/plugin-transform-function-name@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-transform-function-name@npm:7.8.3"
dependencies:
"@babel/helper-function-name": ^7.8.3
"@babel/helper-plugin-utils": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 326ffd9e21c4fd0df4ac6ed7ed7e05f4e46f0dd56d9f2e3a0b154d36cf72f87ac1236ea28aaaad30709081029c5cf0b6654ca69e819122f65284d3763c5625de
languageName: node
linkType: hard
"@babel/plugin-transform-literals@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-transform-literals@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 74d6b908a000a69dc61047c87e2998df56c25f7ec1de8d5d92dfc10814e49b5166aae1708addcb2412fb8f592cc5785424dda6650b09dd6b6d2a4bcd08ff86d2
languageName: node
linkType: hard
"@babel/plugin-transform-member-expression-literals@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-transform-member-expression-literals@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: cddccf0a51bf6944cb6d540eb8384dfcc53251a9e7319f19725b70c47076041edfac9f4d210ce8a601c1ed5272efe1e47a148df314fff4e121b4d02ed4a48934
languageName: node
linkType: hard
"@babel/plugin-transform-modules-amd@npm:^7.9.0":
version: 7.9.0
resolution: "@babel/plugin-transform-modules-amd@npm:7.9.0"
dependencies:
"@babel/helper-module-transforms": ^7.9.0
"@babel/helper-plugin-utils": ^7.8.3
babel-plugin-dynamic-import-node: ^2.3.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 35ed6179df4c1febf361f19bbd760acd2446985a1b1024d06f3b44287fae87f723bc7be5fe3a1d564b80a6270486add6705488643390de13620edab05108d04a
languageName: node
linkType: hard
"@babel/plugin-transform-modules-commonjs@npm:^7.9.0":
version: 7.9.0
resolution: "@babel/plugin-transform-modules-commonjs@npm:7.9.0"
dependencies:
"@babel/helper-module-transforms": ^7.9.0
"@babel/helper-plugin-utils": ^7.8.3
"@babel/helper-simple-access": ^7.8.3
babel-plugin-dynamic-import-node: ^2.3.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 4d8ebd736d52f05cda2fb38b8a1a3d17232cac95708d47e23e01f3d8b420d4464bc03444d9a54d5912b505babae1449609ed3c9edb86ea049e228a93b5f0b334
languageName: node
linkType: hard
"@babel/plugin-transform-modules-systemjs@npm:^7.9.0":
version: 7.9.0
resolution: "@babel/plugin-transform-modules-systemjs@npm:7.9.0"
dependencies:
"@babel/helper-hoist-variables": ^7.8.3
"@babel/helper-module-transforms": ^7.9.0
"@babel/helper-plugin-utils": ^7.8.3
babel-plugin-dynamic-import-node: ^2.3.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 0bfd6fe55d34ccf0bc2692c0f43bf79c7db761f55f61fbe6a94b64ab33ab1bca11559a0089b43e919f6e70687b9c1dc8f84cb1e7c6314d4f9822364a7521b475
languageName: node
linkType: hard
"@babel/plugin-transform-modules-umd@npm:^7.9.0":
version: 7.9.0
resolution: "@babel/plugin-transform-modules-umd@npm:7.9.0"
dependencies:
"@babel/helper-module-transforms": ^7.9.0
"@babel/helper-plugin-utils": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2cd650eb42d48619540cc7ebbd75be37904ddd0ab6f46d93fb76f89017793f00f2e48be1095dd7aa7be1d95672fddb14d8f5e4c6214f9c343ba4081c54472bbb
languageName: node
linkType: hard
"@babel/plugin-transform-named-capturing-groups-regex@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-transform-named-capturing-groups-regex@npm:7.8.3"
dependencies:
"@babel/helper-create-regexp-features-plugin": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0
checksum: d1a166870ac391452aaac3fa72c610ec44834d74e77648ee13ef03288a1f686803054f37cea5559408c9ecd6bfe76a10b9950eba30073c7f92e118bfb80a0a60
languageName: node
linkType: hard
"@babel/plugin-transform-new-target@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-transform-new-target@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 6e106b87e4402a1236698efa4f9bb0a4a5013200a5edca9b046016044f4937ef132aadd662304bd723dd0837a155a10660017d488798ca4abf956a5035bde6aa
languageName: node
linkType: hard
"@babel/plugin-transform-object-super@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-transform-object-super@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
"@babel/helper-replace-supers": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: dd7c5dfd7a5538b4b4375f642f0aaa01327615614b460531fe00e074eda10515b09e3ccf7ff050b3f44cda4cdd7839863f54b8d0269c63947e573bcd2f53f63e
languageName: node
linkType: hard
"@babel/plugin-transform-parameters@npm:^7.9.5":
version: 7.9.5
resolution: "@babel/plugin-transform-parameters@npm:7.9.5"
dependencies:
"@babel/helper-get-function-arity": ^7.8.3
"@babel/helper-plugin-utils": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 0ec5d7a6ced531943c62d8915e38aaa5169d979e6979942c8c7dcdc9fe12eb0b168d14751bd8d3382f63a3d40fd2667959fdbe3b51068a88b07f5254a8aa5ffd
languageName: node
linkType: hard
"@babel/plugin-transform-property-literals@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-transform-property-literals@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 375dfa7b1b0a42bb994f6daff8328fbb4864038507d3642a116af919d90938f077b6c612823bab252d64cc9ec6f149e43c35f0ad0a0d88d7304186a1879bf321
languageName: node
linkType: hard
"@babel/plugin-transform-regenerator@npm:^7.8.7":
version: 7.8.7
resolution: "@babel/plugin-transform-regenerator@npm:7.8.7"
dependencies:
regenerator-transform: ^0.14.2
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 02b3dea6d11fb2b6e697c65100b3582285ce045d6dd3962125594b309c3b76071ef1b84589eed94e5d60934043d3dc4818e2c9124b7b33b56be980252db08959
languageName: node
linkType: hard
"@babel/plugin-transform-reserved-words@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-transform-reserved-words@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 53efc218c878a88fd14f37584d7f69b92d5482fdaf4a1f88eaecff55f308c65032f58a4a8af1b174606d0b76c5792a524262c22bab0379c62264b715d808c46d
languageName: node
linkType: hard
"@babel/plugin-transform-runtime@npm:^7.0.0":
version: 7.9.0
resolution: "@babel/plugin-transform-runtime@npm:7.9.0"
dependencies:
"@babel/helper-module-imports": ^7.8.3
"@babel/helper-plugin-utils": ^7.8.3
resolve: ^1.8.1
semver: ^5.5.1
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: b1cb5c42aede266d7a4f88474e3f6fc6e61a03daae16da71123bba7c8be2556b18b764366ae8f7b81f7c3867c801c4b597fd9c7f0b1eaf8b03626cf821f614e7
languageName: node
linkType: hard
"@babel/plugin-transform-shorthand-properties@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-transform-shorthand-properties@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 13e688cc4f8984e3aced780389488eb07adae89022be75806210cf095fbe3022d3f41c3ab85859009b0c61e3bd7c554d01287a6d49bdea97acc185a4355a0da7
languageName: node
linkType: hard
"@babel/plugin-transform-spread@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-transform-spread@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: bfd9d66a3737bac8bd3fefcae26b3aa6d9a1617b5ad78299f9507a15709261733891ef36072abd6efe38ba03a99094e514f7ebd01e6b93954d92a12b0c8ba726
languageName: node
linkType: hard
"@babel/plugin-transform-sticky-regex@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-transform-sticky-regex@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
"@babel/helper-regex": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 879457c88045fbd67db0140a4e8a048c7d248d0351554a43ee376d36754cc2ed109a9a3e0136da8ce8b202eab3e559e6c1f9e1fd4c89d4800b93577c48255436
languageName: node
linkType: hard
"@babel/plugin-transform-template-literals@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-transform-template-literals@npm:7.8.3"
dependencies:
"@babel/helper-annotate-as-pure": ^7.8.3
"@babel/helper-plugin-utils": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: f95a02e578fe4c36d47a697589df97e0d847e26e11ddc464ad875ee068266b82aa37b0fe6b1b9c429e5eb9236fc98309f4f10cbff166e9395cd5fcf0f9ded980
languageName: node
linkType: hard
"@babel/plugin-transform-typeof-symbol@npm:^7.8.4":
version: 7.8.4
resolution: "@babel/plugin-transform-typeof-symbol@npm:7.8.4"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 5effc0b095a4ba7d179a291ce4f87554200cf031d819e8971d7e13341ba57d72324d1c7c76d862515e505d9772227f90426700542f1609233038d3eda7583f0d
languageName: node
linkType: hard
"@babel/plugin-transform-typescript@npm:^7.9.0":
version: 7.9.4
resolution: "@babel/plugin-transform-typescript@npm:7.9.4"
dependencies:
"@babel/helper-create-class-features-plugin": ^7.8.3
"@babel/helper-plugin-utils": ^7.8.3
"@babel/plugin-syntax-typescript": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: b722f5b376406313728158ced4e9e074f184e6fff242d90a8a8bfc2fadaf265b4b09d2d39ebb6c16b336454a57e782d2a47f2aa9deeba3959ba61435f972c94e
languageName: node
linkType: hard
"@babel/plugin-transform-unicode-regex@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-transform-unicode-regex@npm:7.8.3"
dependencies:
"@babel/helper-create-regexp-features-plugin": ^7.8.3
"@babel/helper-plugin-utils": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0