-
-
Notifications
You must be signed in to change notification settings - Fork 76
/
yarn.lock
9844 lines (8852 loc) · 335 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: 7
"@ampproject/toolbox-core@npm:2.7.4, @ampproject/toolbox-core@npm:^2.7.1-alpha.0":
version: 2.7.4
resolution: "@ampproject/toolbox-core@npm:2.7.4"
dependencies:
cross-fetch: 3.0.6
lru-cache: 6.0.0
checksum: 0d215bbbcf7c17d45f7330ed8dbe7ee78e27a7f2d506eea3bef9c97c0be2ee07c5d8244c578af080334db740738420b472e72309b69729c9b5c79c71082a0bb0
languageName: node
linkType: hard
"@ampproject/toolbox-core@npm:^2.3.0":
version: 2.3.0
resolution: "@ampproject/toolbox-core@npm:2.3.0"
dependencies:
cross-fetch: 3.0.4
checksum: a65c61f81e96f54339a2d0e7ac784caba2fb40242e44c9a2b0798f042ec81fdaf0773027e092333bc38271d6a6a4659835ff0bd79675550ed19811c79c4d81a3
languageName: node
linkType: hard
"@ampproject/toolbox-optimizer@npm:2.3.1":
version: 2.3.1
resolution: "@ampproject/toolbox-optimizer@npm:2.3.1"
dependencies:
"@ampproject/toolbox-core": ^2.3.0
"@ampproject/toolbox-runtime-version": ^2.3.1
"@ampproject/toolbox-script-csp": ^2.3.0
"@ampproject/toolbox-validator-rules": ^2.3.0
cssnano: 4.1.10
domhandler: 3.0.0
domutils: 2.0.0
htmlparser2: 4.1.0
normalize-html-whitespace: 1.0.0
postcss-safe-parser: 4.0.2
terser: 4.6.13
peerDependenciesMeta:
jimp:
optional: true
lru-cache:
optional: true
probe-image-size:
optional: true
checksum: 5ccf6590fd70e3dc0a42e86a4ebcc20c59ab65d7563e047a73a7167a1b07379d5c61ecf32b6370e81947793f86596dbe0393296c7de51dc77b65f5ceec77ed15
languageName: node
linkType: hard
"@ampproject/toolbox-optimizer@npm:2.7.1-alpha.0":
version: 2.7.1-alpha.0
resolution: "@ampproject/toolbox-optimizer@npm:2.7.1-alpha.0"
dependencies:
"@ampproject/toolbox-core": ^2.7.1-alpha.0
"@ampproject/toolbox-runtime-version": ^2.7.1-alpha.0
"@ampproject/toolbox-script-csp": ^2.5.4
"@ampproject/toolbox-validator-rules": ^2.7.1-alpha.0
abort-controller: 3.0.0
cross-fetch: 3.0.6
cssnano-simple: 1.2.1
dom-serializer: 1.1.0
domhandler: 3.3.0
domutils: 2.4.2
htmlparser2: 5.0.1
https-proxy-agent: 5.0.0
lru-cache: 6.0.0
node-fetch: 2.6.1
normalize-html-whitespace: 1.0.0
postcss: 7.0.32
postcss-safe-parser: 4.0.2
terser: 5.5.1
peerDependenciesMeta:
jimp:
optional: true
probe-image-size:
optional: true
checksum: b82887a0b7e96ca5679103b70873465b73984dd32b547c2f999e3c614c51609cb9db78bf310a13975b3ef685cb54b892dbf9977b1d5e2a198ccfd559ca419741
languageName: node
linkType: hard
"@ampproject/toolbox-runtime-version@npm:^2.3.1":
version: 2.3.1
resolution: "@ampproject/toolbox-runtime-version@npm:2.3.1"
dependencies:
"@ampproject/toolbox-core": ^2.3.0
checksum: 5d6ec2ec0d5a9047c894c2a5bfb5ebbd21f502899bdc400a79df7088cefcd181f8683f96da34f4d140fdbfc515b0fe74310a432196a693c9a9695e9bc31875c0
languageName: node
linkType: hard
"@ampproject/toolbox-runtime-version@npm:^2.7.1-alpha.0":
version: 2.7.4
resolution: "@ampproject/toolbox-runtime-version@npm:2.7.4"
dependencies:
"@ampproject/toolbox-core": 2.7.4
checksum: e07513cc6dd40b028634c630a93f4166d9a26d62c485a975706422d15e2f54269d9da0a999bcaf90f60811f58dea376f3ed841fc4dafb683940b10c4d98c1936
languageName: node
linkType: hard
"@ampproject/toolbox-script-csp@npm:^2.3.0":
version: 2.3.0
resolution: "@ampproject/toolbox-script-csp@npm:2.3.0"
checksum: e51a12d50aa497a56048790a22e1bfc784d777e0e8b3f384f010ac668f6047583bf52db03ce123c5b38d211ed1d99c88483cdada29ed1fcf473e73378b0805bc
languageName: node
linkType: hard
"@ampproject/toolbox-script-csp@npm:^2.5.4":
version: 2.5.4
resolution: "@ampproject/toolbox-script-csp@npm:2.5.4"
checksum: fcafb38682da3f645fa2b85eeee704b49609e13144af52ae079c593cb5be3de25019e7f8a03f7fb1b959816d471743b5ed4d923a40bf8f46220e2409ae9b030e
languageName: node
linkType: hard
"@ampproject/toolbox-validator-rules@npm:^2.3.0":
version: 2.3.0
resolution: "@ampproject/toolbox-validator-rules@npm:2.3.0"
dependencies:
cross-fetch: 3.0.4
checksum: 57ad134d2b3b7464601ee27995abaaf3a688da9534c727fd4abbf773cf5fef9fef0dffef2dea03517c9bb03188812ca65206506472d0dcb81a566ff60dba9231
languageName: node
linkType: hard
"@ampproject/toolbox-validator-rules@npm:^2.7.1-alpha.0":
version: 2.7.4
resolution: "@ampproject/toolbox-validator-rules@npm:2.7.4"
dependencies:
cross-fetch: 3.0.6
checksum: 53c7765b3b6208147bac0980033eff7d719552487e9dd207eb5a8f09dee3acc33f377f652131f534c739cd4f1eb7a8f5d157f37130fa03a46c57d9c9caa59b6e
languageName: node
linkType: hard
"@babel/code-frame@npm:7.12.11":
version: 7.12.11
resolution: "@babel/code-frame@npm:7.12.11"
dependencies:
"@babel/highlight": ^7.10.4
checksum: 033d3fb3bf911929c0d904282ee69d1197c8d8ae9c6492aaab09e530bca8c463b11c190185dfda79866556facb5bb4c8dc0b4b32b553d021987fcc28c8dd9c6c
languageName: node
linkType: hard
"@babel/code-frame@npm:7.8.3, @babel/code-frame@npm:^7.5.5, @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: 0552a3e3667ad5af3bbffd537a7d177f321af3ff416522a9e9c7c671b9fc5d7f5eb6847e676e8de7a7362819e9670d9fe684e95d1c98adad0c0a0763c096955e
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.9.6":
version: 7.9.6
resolution: "@babel/compat-data@npm:7.9.6"
dependencies:
browserslist: ^4.11.1
invariant: ^2.2.4
semver: ^5.5.0
checksum: 2063b92c99c4ac1c4ffe7659e30b075cb4d7a665310e037e374982b5b0a46f8cf64dd0097d94420709345adc294071237d434d4e991cfdd66feb5ec950b8b734
languageName: node
linkType: hard
"@babel/core@npm:7.7.7":
version: 7.7.7
resolution: "@babel/core@npm:7.7.7"
dependencies:
"@babel/code-frame": ^7.5.5
"@babel/generator": ^7.7.7
"@babel/helpers": ^7.7.4
"@babel/parser": ^7.7.7
"@babel/template": ^7.7.4
"@babel/traverse": ^7.7.4
"@babel/types": ^7.7.4
convert-source-map: ^1.7.0
debug: ^4.1.0
json5: ^2.1.0
lodash: ^4.17.13
resolve: ^1.3.2
semver: ^5.4.1
source-map: ^0.5.0
checksum: fdd52c4cda51469e3ebd75788579b3c5728c7ae8680232cc935b1fc93e2a45fa40d112323c5e0efd5d0ba8a8c3d317a1b1b025685ef8ae0575cdc8eb0da61363
languageName: node
linkType: hard
"@babel/generator@npm:^7.7.7, @babel/generator@npm:^7.9.6":
version: 7.9.6
resolution: "@babel/generator@npm:7.9.6"
dependencies:
"@babel/types": ^7.9.6
jsesc: ^2.5.1
lodash: ^4.17.13
source-map: ^0.5.0
checksum: b90d4cb82aaf3a054eaa70179c591dd205204d1dba9db2806fa50aacada236a046e3efd0e0a37ea15da35ee49834155c1b0091c0c8c288520eec2c401c78af31
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: 594212a764dc72bbcb1afea1f3a08481693049d19de80a86e0fe4affb3dc112def836ee9bc45eecc5ca34d0ec44db345c9ae2c477209dc92e1c8bb4914a06a8a
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: e6729cf99bad9095ebd43deffd5f2d26646a500f7356aafab7e9f5a58a99956782e6220579ac014e972925882d84c026fb06625cdd66fc935eb513af282d98cd
languageName: node
linkType: hard
"@babel/helper-builder-react-jsx-experimental@npm:^7.9.0":
version: 7.9.5
resolution: "@babel/helper-builder-react-jsx-experimental@npm:7.9.5"
dependencies:
"@babel/helper-annotate-as-pure": ^7.8.3
"@babel/helper-module-imports": ^7.8.3
"@babel/types": ^7.9.5
checksum: 26ed0e1466097b543aac193c16fb6226aa24526acb54ca6bbe5c641852f2e87fb5dcd8c1d67d6612efff1a8b1da9db69dbcf78b11a276b3a98592635bc1f81db
languageName: node
linkType: hard
"@babel/helper-builder-react-jsx@npm:^7.9.0":
version: 7.9.0
resolution: "@babel/helper-builder-react-jsx@npm:7.9.0"
dependencies:
"@babel/helper-annotate-as-pure": ^7.8.3
"@babel/types": ^7.9.0
checksum: 3c1b38de180ecaa415fa90c23ebc49fb611a72b8cef88cf2d7754cede305869aea6b11742b69444c1a58bf2f9614d9ac674d90f061ba39acd24a54150b55bd57
languageName: node
linkType: hard
"@babel/helper-compilation-targets@npm:^7.9.6":
version: 7.9.6
resolution: "@babel/helper-compilation-targets@npm:7.9.6"
dependencies:
"@babel/compat-data": ^7.9.6
browserslist: ^4.11.1
invariant: ^2.2.4
levenary: ^1.1.1
semver: ^5.5.0
peerDependencies:
"@babel/core": ^7.0.0
checksum: 5fb16b4fc2438c55a41712a107c0338944de7fb9d9c20db59b87fffe95b48cee82a968ac154be76d3492301cbd4c8003ca746c062917c181d76cac6004e536a1
languageName: node
linkType: hard
"@babel/helper-create-class-features-plugin@npm:^7.8.3, @babel/helper-create-class-features-plugin@npm:^7.9.6":
version: 7.9.6
resolution: "@babel/helper-create-class-features-plugin@npm:7.9.6"
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.9.6
"@babel/helper-split-export-declaration": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0
checksum: bdd3f0e26846db4efd890ba0ac273102c5947c68619f15fd69cad09a78d535c6cad53057b63d73561beefc9d708aaa5ffceabaac21405126948cfca3fe2abf1a
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: f288ada304dfe48e6090f16520f1e9258f2db1b13234a6e5329eadaf231c9b7c071a303fdd4014db952b89c02d748929ccd6de3d59844b010bf46c27b5a02c53
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: 3a570d152ab5c3710c5bd48eadbb3d5c31f0bb74fb569f0dd5081e301613f3adb0daf3d6dc7e0597cc760f833fe66c80e2c1c3c9a8fc6083135d705f4e53e933
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: e6cab12b350c74f3317bca6eafd5eea18773a3d413629a12073670d3472ef14943759a4112ff3762e91dd125b053f498e3071d31f3f69cd6ba3a90b6b47cda9f
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: 6d5a6f645bd37347f133a69eff3f7078b471e0a73b608c5a0107b58f05fd4f7d7f7344f7713a757db43bc3ce71b5e8aa9f12bc9f2f1fb34b14f33b267958b0ad
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: 173ce64f2bc357ca6deb6c639c02fc3842b9c88750501decfe1fa3b7cfe449280f1ced0b7d754a9bf338e7227300af3b28a3447d60048dfceb6405c017b0b84b
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: b5a95ca28dfc44d2bafbc9c9e4e39a592988113eaa14dcf218832e8480388ec857cd06b0816316de5add6951d844b3de1d5ecfb2d5c4bdd9f04cd52e6c9761fa
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: 75dc46c0f64d21985fe62f39c67673fea925815f7576a6a83eec70ec50c0baa969d672df1bee6d0d65cea4c0fd11bcfcebfe1f3642ec57009bf3d3195034ba18
languageName: node
linkType: hard
"@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: 48a64ca882aa5fcbd8969ae57f10ff44d68c45507675199f8c6d750e4695524072dbd00102155b89106a6f06ca466ad8a607475eded156471d45d5014ce410d7
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: a667ba69306ede8dc1a710f0d5e08fa1f7ef15677c489153f0a6b26b97e4f31557392c884ad72c6f7024ab2953c2aba3851a20d7594265090ea986a9ef93c725
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: db54d15185bbe12affcc013db3f8e556490f3ad82e2a56ee9e927056a10adc37c8d1cd6c6db4900bb45ae557e572f571089f276001ea34308b775b1ad7dabf19
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: 56f09626f24511aadd36a96aacd8658274ededc2e94f5e85bb6e51c9e6ad72eb1dd9f9a28a4ee5a8691de7601cf2a8e63ce235db01dda8964779940281f2787f
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: b36d0111bc99e4b8c2e6d338bd2c321f51eeb281dcf3763cbfbb8d91cfe7da8cf8df0dc6ee7892848abb1794eeae8650275b8787de62d51f62cbde02a8d1cbad
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: 50f71e309d45f1c8f30e7228cef7e406d9d15cf2af63d875e114e1fb8fe4229c508340809b6d479159424b78c8f66b5a670358ea6ce387f1a30f8a332bfd25b7
languageName: node
linkType: hard
"@babel/helper-replace-supers@npm:^7.8.3, @babel/helper-replace-supers@npm:^7.8.6, @babel/helper-replace-supers@npm:^7.9.6":
version: 7.9.6
resolution: "@babel/helper-replace-supers@npm:7.9.6"
dependencies:
"@babel/helper-member-expression-to-functions": ^7.8.3
"@babel/helper-optimise-call-expression": ^7.8.3
"@babel/traverse": ^7.9.6
"@babel/types": ^7.9.6
checksum: 1b08944da1b7dd4969c4350407fc9566918381dde4964f407c8ec37fa4f5bc6ed39b346a8517cc07afb3b8cf1fb2fdf3bb6d3b33a5a247ba102ebd0e90e0a203
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: 1cdd8a6710e97238d15f1200881b86366b2f0b10c3c04c726b4092919afd1fdba9dd43fad8648a5e565c10fdb9654a9885ae1679526128aca7cf6e746ad458f3
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: dd72c412171315f1952f30a7a71a237fb4f1b11edfc4ae8945db905f000e945f6c7a791d166a5c3fb90dd8336bbf9891091bd7f139eaf7ea4dfb30c54c888eb1
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.10.4":
version: 7.12.11
resolution: "@babel/helper-validator-identifier@npm:7.12.11"
checksum: 18de432203264b501db2690b53370a4289dc56084f5a2c66de624b159ee28b8abaeb402b2b7584296d9261645d91ddb6bfd21125d3ffd9bf02e9262e77baf3d2
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: f4dd825c0b959d2b634a7b8397f826e6b69d0a0213686ed3a0fc1ed42d278e374d821dc036dffc3a27223b8465eb62a6c30363f5e20427f29c6b6f8bef456ca3
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: ab1956051d3a731d8e2fe5fbc493aaf8581f6681ffbf654239b0370e37873a5fbc670a0f949a4062aef6630cf8e782ca87761c254af32bdf14f51ef192c7320d
languageName: node
linkType: hard
"@babel/helpers@npm:^7.7.4":
version: 7.9.6
resolution: "@babel/helpers@npm:7.9.6"
dependencies:
"@babel/template": ^7.8.3
"@babel/traverse": ^7.9.6
"@babel/types": ^7.9.6
checksum: 1ffe25b91f63553a40fbe1ba80de8963683a45dc5a3760ee039253555798cc446d438e6fca1fefbe2b8969269653c210daff11b391e26fe4b977e5e54bf3cc77
languageName: node
linkType: hard
"@babel/highlight@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/highlight@npm:7.10.4"
dependencies:
"@babel/helper-validator-identifier": ^7.10.4
chalk: ^2.0.0
js-tokens: ^4.0.0
checksum: c167b938af9797e7630dd922398ceb1a079469085b9c0a7274f093f9f2b1ef9f0a5efec89592e81cbab7c87a537d32c238cea97d288b7af9a0d26b2bceb7a439
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: 9887f2fe93b10b53bffb70cccd22dff179a10230985c67dbcf8f27a536714777b8ed68548181af80f132125e8ff7464362b73081ed1510899b5040734a91e202
languageName: node
linkType: hard
"@babel/parser@npm:^7.7.7, @babel/parser@npm:^7.8.6, @babel/parser@npm:^7.9.6":
version: 7.9.6
resolution: "@babel/parser@npm:7.9.6"
bin:
parser: ./bin/babel-parser.js
checksum: 95ece64d01b30eb29964a6c678844b8bb3d9e2289f956467c58c9bed68c52a9b09f500b98d8488d0df636b4d062c5abe0a9611d27d6761d278e4c3208e4295c4
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: 4844ede310563e7f030c58217b0b33bb96d17a698b689f5d3b5fbca9245802061afe68dd025a9ea5d243765c180f470c1a2e145afd3c274ac20b318c763027c3
languageName: node
linkType: hard
"@babel/plugin-proposal-class-properties@npm:7.8.3":
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: 09072d267cd00c89057cab37817b2bc8dd397e56f849a63596aa40dc0962b4daedb2c1fc0b8f7b842baffe0042b21a1758f3b9c53e1bfcc9345b7db3336220aa
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: 7dacffad8c9027589c038bd5d58eae5ed1786623312485411a6c11d168c2ba8b96ab6638344c08b48c9aa224fe7013f9371cf9baf0ccf4591b3516440517dc1e
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: d77c14cf01d41440345ed963fafd16a7da3df8f1ba778780672fa7cbd730e1114a88dbc4c1411ee3dcb29a2fc8565081c9ad2f887f04b4c124e10842986c88fe
languageName: node
linkType: hard
"@babel/plugin-proposal-nullish-coalescing-operator@npm:7.8.3, @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: 99b6683ae81309453ae55b2a8681e02de52efc7c5cdf30342cb0585ad4a2ef07d1a7781cfa6c4b0b7329538e11576263a5f217043b56ab15980e3ae9007738db
languageName: node
linkType: hard
"@babel/plugin-proposal-numeric-separator@npm:7.8.3, @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: 8ab823d0d2d20e6439787fbb2c1b52e634fccf414e92268914b482edfb5d863cb9b85a0b2e37f0956efb20d968335420afe0b7d31197c9f84faaf9af3c65fd74
languageName: node
linkType: hard
"@babel/plugin-proposal-object-rest-spread@npm:7.9.6, @babel/plugin-proposal-object-rest-spread@npm:^7.9.6":
version: 7.9.6
resolution: "@babel/plugin-proposal-object-rest-spread@npm:7.9.6"
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: 7e5b19c48723bb42ae61a7ac60547e52e31de229dc0855afb92a817d7ea5f81a7153f116d742e783fab0b6f322ccddba846d13aa718b5eb2692a4f15f2a0c755
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: 6241b347b611e91f436022649def5f08359608db5b9b133c4d32ab8ac1e5d693bd95799e6bfd9dac4f641f561ca9f65f424f7813ffaddf33b88878bfe2714107
languageName: node
linkType: hard
"@babel/plugin-proposal-optional-chaining@npm:7.9.0, @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: 88c2000597877a1bae264aa7fb3529225123772d4680b4468032ebcbc170b7fe3f2d3028712cfad2180af147a2bfdb50ad36d191a7753b05ef7f502c66b48e70
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: f7aa13afc1d93f3e825ae63e94b1d8b28d2a517d2200c76310b462e8463a776067c44ded826651e23a971489a8f20df6335b3da4fe06aaec01f1cae8fc0b7e5b
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: 39685944ffe342981afb1fe3af824305e94ee249b1841c78c1112f93d256d3d405902ac146ab3bad8c243710f081621f9fbf53c62474800d398293c99521c8ef
languageName: node
linkType: hard
"@babel/plugin-syntax-bigint@npm:7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-bigint@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 8c9b610377af48e1d8ec0d5ad5eec5e462fbc775b20f367e0ebc2656b98b4cc73a952e8b5ab8641e6de0d04923f3843dd73ce00a71ef5cac9940822ff776c8ec
languageName: node
linkType: hard
"@babel/plugin-syntax-dynamic-import@npm:7.8.3, @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: 134a6f37feac0e6d55f8188232e11798ccf699b02d50a4daf9c040f52a22ee32923a6a979443ecc865f4014937ffe67ac11b81aa5668b6792238c647314f41c9
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: 1a7dabf0a4b264cb235966c4256aad131567eba20e41de731fa9127d371454a2f702e27fd7bedac65efb0df847e5cece7bcb5507a931604d1c2ecb7390adaa1f
languageName: node
linkType: hard
"@babel/plugin-syntax-jsx@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-jsx@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 461a8bc58f90b6f0bb2ec8545671b17621aadfe2c0423af06b73299c6be63c35324c9905dc12c6671cacdc5798f9137cdabb69ab0c041973142bab26322fa4e1
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: 4ba03753759a2d9783b792c060147a20f474f76c42edf77cbf89c6669f9f22ffb3cbba4facdd8ce651129db6089a81feca1f7e42da75244eabedecba37bd20be
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: b12fb19d0cb795b26c2b7262ee6ca20effbd4556ec6aa1fa1fa579979c08541d2b2db33e3cae2a333f22460c6a36dd646af79a70a662b7fe22675cdbe6bc3001
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: db5dfb39faceddba8b80c586e331e17c3a1f79941f80eaa070b91fb920582bffe8bba46f6bebbdaf7c1f9b0bbe2a68493c28e1c9fb0ced864da739c0cd52ce43
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: f03d07526674ecdb3388e1d648ec250250968e13c037a7110e37d3eab0b82b07d6605332772afdf19f1831dfd3bdbbf0288a7d9097097d30b9548388ea693a07
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: 2a50685d023bc609b01a3fd7ed3af03bc36c575da8d02199ed51cb24e8e068f26a128a20486cd502abe9e1d4c02e0264b8a58f1a5143e1291ca3508a948ada97
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: db2f0ca5cba56605068f9d5c5d0b11cf2d77c66f85bcf4afe91c73395ac334364f27d7f3bd4a1a145c10a80c55cf11bb41269baf11fcebf3d349dd4010d9f7b3
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: 56807f1cf9db0002359d0cc92153f8f038436236fc424f50100dc7f24f420e77422d9054ab9622238aa869ef3fa28835c0432cd365c7e3f60ec7016f62ff7a99
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: 8389bb8d1beb83645fb68dece0d6f254c6b6e976d1c4e28dfe2cb18a9e24cd690403e8220a69f1c4ada060df948c098e2f86bfb8f3c17fde0f59f28cbf0e50c8
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: 51442df3b7169357f99296f08c1a712d3bd722c7a2c722b61b1e5b0515b3c4ba1a0cfc850186db98c0086cba61a910fec306e7bd3fa2819c15588d601639f4a0
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: 250fca457ca771043013f14b76788790546830b60f4b044e44fec2b93b0b8b51ed81232030624dfa74760f8d2eddebcb0035c067872701e63fd2361c727c2781
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: 95008d867dda564832fc8029d50d1d07126b74bbb25f5a1a39e9814c750c73d4bf2c07806e0effec0c35ed39ec009287261310067c0a8c4301ffbdad552ed087
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: 5aad038a1f07650c53ecea97bf31635b21d5e9db013a4ee7e3bc9903c3008641710dfbe2994e737b99bd8eab441d268f065ccb040f1e2fc19fd12cee6221fd4e
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: 9f480ca11bb97b9a4968699c0d8ac1d0af26014cbfe2375df471c5275d23f864156de6ef353a64711689f3aa9459a3d3db71b5c72f9faff602305770975684ba
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: cc5b55ad5214e2f57e592113049e0d6b57f4c18c6d4487560f03a3a7917fc70146a0f4e3ceac3d65c6a08d5da5a4bfe2969887a8e49c8f14f58136f1d2a7306d
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: e0b28ea6b224f3e00b81bd447f42aff82a2f6f3722ba5c9763e8cf3bc3994a55bd9a142fc68d83f41595d663528791d671d5bfc08637443fb13ee5296a7de73d
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: 1606142c396786b95ec353de211a4734d3e7f1d4bb4a1b2ebe5317438d23484658e547b206449cb6ad96b7955f6da3a27073c8df953658a201c3a57ce2fea65b
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: f68397ade893ea719c9d1c6b141f3e73d1b8be88225245ba1dc9d50a86a3cad2827bc4e1ed75b32950617fc9becba4b6d3b679e6162e8b100f2dd2cf6acf9dc4
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: 63d6eecfc84af7dbe5cc54f35557641e34d5ca12e54f30927f33d24707c9202efee0ecfdd0a9d74e277ed5555311e9de5e7dd63d2f55975b12163320ee981dc9
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: 29e7934c9f232c33586f28eab2c0cbf7a9c864a36ad1ef6283f572b6758d91915e8172514ce5a26063fa616c98733479e78c6a6ec510d92a8915752ba19e662c
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: 0bb20216e93eb78d6cc2b85451546902e3584b6f6249e4e4c8e63453b62e551af5454ef7bbe65811e5b37ff6e5b56a177da72283a36d11554132e4a881daa83f
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: 14c6d08cc193364ebcd3f76edf20fa22ce5a0f9689c2f16b5feb2a032f2ed42f71a083a13a0e525f4394ea8d4beb68dbd38cb6a80ccdac219e5bb70aaea8f839
languageName: node
linkType: hard
"@babel/plugin-transform-modules-amd@npm:^7.9.6":
version: 7.9.6
resolution: "@babel/plugin-transform-modules-amd@npm:7.9.6"
dependencies:
"@babel/helper-module-transforms": ^7.9.0
"@babel/helper-plugin-utils": ^7.8.3
babel-plugin-dynamic-import-node: ^2.3.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 86e934348bed3f982077565cba8c16ea76d24a692b3316c5b9d0d55dd607a9b10ea8ca6457dd52268c69ae4d03a97146c0a2698ca6fa897a3f42764a451c983e
languageName: node
linkType: hard
"@babel/plugin-transform-modules-commonjs@npm:7.9.6, @babel/plugin-transform-modules-commonjs@npm:^7.9.6":
version: 7.9.6
resolution: "@babel/plugin-transform-modules-commonjs@npm:7.9.6"
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.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 54da42be5669fd04ac57a1f543699c57906de16862184a5ac6f6f3a697f8c08e2db5d73afdcb55b9cc8bef26ce8e057cb7d71e7a418075dae433cc030a7f64ad
languageName: node
linkType: hard
"@babel/plugin-transform-modules-systemjs@npm:^7.9.6":
version: 7.9.6
resolution: "@babel/plugin-transform-modules-systemjs@npm:7.9.6"
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.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 784ede5250a0035e969ac34d74dd9e42010a013c3f5a586d7620bc78dfec1d4de127163422dd925c9252400f5bd3c6fad849a500c265b5c0c7679706edc94158
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: 4cb238a0d8999f0e000994cd312087ba8c7e2f99684fccaccea5dc12f4c3a646aa923ec13fbc3a656330925d086cb10bfec80e6753e8c24002982ad5a45d2812
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: ecd54239cc288bdb29c6194459323059c26e21248bac28398055e29e340a623c14fd69a94583886d47b2d062c043bb25d7f1aa00908addf4e5b7194b4aad91db
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: f51014eb823a81483316b2806ab54bef6ca069e5b9dd215ced713ef32cc31424454d040b4e852fd4dd3b00ffd3ea951458c387fe0b790577fa70e03370e94239
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: