-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathyarn.lock
13382 lines (12028 loc) · 452 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.12.1
resolution: "@babel/cli@npm:7.12.1"
dependencies:
"@nicolo-ribaudo/chokidar-2": ^2.1.8
chokidar: ^3.4.0
commander: ^4.0.1
convert-source-map: ^1.1.0
fs-readdir-recursive: ^1.1.0
glob: ^7.0.0
lodash: ^4.17.19
make-dir: ^2.1.0
slash: ^2.0.0
source-map: ^0.5.0
peerDependencies:
"@babel/core": ^7.0.0-0
dependenciesMeta:
"@nicolo-ribaudo/chokidar-2":
optional: true
chokidar:
optional: true
bin:
babel: ./bin/babel.js
babel-external-helpers: ./bin/babel-external-helpers.js
checksum: 4d6f6d68bf202c28fcad6f2e7f6f234c958bc133b31dbc910216145b546a41f9fca4134019376e93bb34997eab2b09301324376b76d7e4310a87cd2dbebe1d6a
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/code-frame@npm:7.10.4"
dependencies:
"@babel/highlight": ^7.10.4
checksum: 8daafeac1293f6c8a12a60ee672d4cec00061f05cb334db6e944ab5269b36f44814bb88b11a9602dd48ef386d66022b841a64758d06a0f04b281135d9c3b5f8f
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/compat-data@npm:7.12.1"
checksum: fce932b23ea04c1d584894c4dce4a12cb2068d4fd7ad2c42f58e0768ee8d674bf06f540df7079723cdaaa8803669f234f979c0e9e563cfec31947600cba0ac8b
languageName: node
linkType: hard
"@babel/core@npm:^7.0.0":
version: 7.12.3
resolution: "@babel/core@npm:7.12.3"
dependencies:
"@babel/code-frame": ^7.10.4
"@babel/generator": ^7.12.1
"@babel/helper-module-transforms": ^7.12.1
"@babel/helpers": ^7.12.1
"@babel/parser": ^7.12.3
"@babel/template": ^7.10.4
"@babel/traverse": ^7.12.1
"@babel/types": ^7.12.1
convert-source-map: ^1.7.0
debug: ^4.1.0
gensync: ^1.0.0-beta.1
json5: ^2.1.2
lodash: ^4.17.19
resolve: ^1.3.2
semver: ^5.4.1
source-map: ^0.5.0
checksum: a0d3a943963433e8900e37e8bfbde64894aee44b1a944b84ac6844e679022612930e8b887e04661177e25f45c99a58e1fa9c67445a9f78c46568c1220826bb63
languageName: node
linkType: hard
"@babel/generator@npm:^7.12.1, @babel/generator@npm:^7.4.0":
version: 7.12.1
resolution: "@babel/generator@npm:7.12.1"
dependencies:
"@babel/types": ^7.12.1
jsesc: ^2.5.1
source-map: ^0.5.0
checksum: 5a9ec802ec8172140c3da9ab9e10d75545f0c5980e800b943178e49fafb0596f96e17d185635b2a9bac6d0b8a67071afb278c4045026bab53a4835abd588f99c
languageName: node
linkType: hard
"@babel/helper-annotate-as-pure@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-annotate-as-pure@npm:7.10.4"
dependencies:
"@babel/types": ^7.10.4
checksum: 317197b034d6488b52de1f6eeb5cb976fa31012b9e8d47ea9ad7b7220cabdb8944c6875b764a29bfa8171f5c15a1796354e17a8f12ae7765699f9f394741fe2c
languageName: node
linkType: hard
"@babel/helper-builder-binary-assignment-operator-visitor@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-builder-binary-assignment-operator-visitor@npm:7.10.4"
dependencies:
"@babel/helper-explode-assignable-expression": ^7.10.4
"@babel/types": ^7.10.4
checksum: 5b72585b2c7d6a45b57afc494b9bd76e581006e0b84becbf7e591bc9fa8949fbc49a4af90dc9c601be0b0b8b982c73e0947dce9a477fee946471e19d66791631
languageName: node
linkType: hard
"@babel/helper-compilation-targets@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/helper-compilation-targets@npm:7.12.1"
dependencies:
"@babel/compat-data": ^7.12.1
"@babel/helper-validator-option": ^7.12.1
browserslist: ^4.12.0
semver: ^5.5.0
peerDependencies:
"@babel/core": ^7.0.0
checksum: 2783ddd0ac6f2d500757a7b6b4fc68a1af2a760e06f1047a9a6bb0ab42f1b6caa34ffaf78e967a2b1a7b17532d3e5b38ada19f8e08d00ae833d832af56c0b8d1
languageName: node
linkType: hard
"@babel/helper-create-class-features-plugin@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/helper-create-class-features-plugin@npm:7.12.1"
dependencies:
"@babel/helper-function-name": ^7.10.4
"@babel/helper-member-expression-to-functions": ^7.12.1
"@babel/helper-optimise-call-expression": ^7.10.4
"@babel/helper-replace-supers": ^7.12.1
"@babel/helper-split-export-declaration": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0
checksum: 549e2e3226fc15109c557f0d56724dcedef67c4f5091b0ff3339eb3ba6670ae8ff60986aa8a203e770521803ca67cc5a3a0270b45e0b79ba36e0c0f00d5ea4e4
languageName: node
linkType: hard
"@babel/helper-create-regexp-features-plugin@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/helper-create-regexp-features-plugin@npm:7.12.1"
dependencies:
"@babel/helper-annotate-as-pure": ^7.10.4
"@babel/helper-regex": ^7.10.4
regexpu-core: ^4.7.1
peerDependencies:
"@babel/core": ^7.0.0
checksum: 88d0ad223577423540c8217fe3c90c7f29638b2b78ca953c2d0ec946fad56d8b5613006e9b6cb6532bce81e39e62f5451f65e589eba03908c9479346df445c5f
languageName: node
linkType: hard
"@babel/helper-define-map@npm:^7.10.4":
version: 7.10.5
resolution: "@babel/helper-define-map@npm:7.10.5"
dependencies:
"@babel/helper-function-name": ^7.10.4
"@babel/types": ^7.10.5
lodash: ^4.17.19
checksum: 2464d87e5cbb9db7a9a6d7f028f83497945ec330a1799b2f6107e09a79b4d74aab90670757ad12415560c3c5fc218dc625c3cdc8a584353fc5f775b279f811b7
languageName: node
linkType: hard
"@babel/helper-explode-assignable-expression@npm:^7.10.4":
version: 7.12.1
resolution: "@babel/helper-explode-assignable-expression@npm:7.12.1"
dependencies:
"@babel/types": ^7.12.1
checksum: f2135dc0e836e608cf706c1a035f5037a9ebaa84c860c60408941972ac9092eee5fccec7049d98a571a727afa01f0c2c27d865c9dc7253f890da34fdea9fb290
languageName: node
linkType: hard
"@babel/helper-function-name@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-function-name@npm:7.10.4"
dependencies:
"@babel/helper-get-function-arity": ^7.10.4
"@babel/template": ^7.10.4
"@babel/types": ^7.10.4
checksum: ff98e59abbb3e01e2dd61134b4e62d8ef198932c1c3d890d7e1d3035631146147735d4d08ccdc0c19430919f0bb653924d58de976c03d5a60dd777e6b68284ef
languageName: node
linkType: hard
"@babel/helper-get-function-arity@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-get-function-arity@npm:7.10.4"
dependencies:
"@babel/types": ^7.10.4
checksum: 186790e90e7cd101e7e53c4ef9cfc1e4a5712ab9eb6c36fb8b56ebe6d5b32e53e5fec0e1eb9a9b3214f65f361ccacd9de768a0169f9c86dabff8614e3aee128c
languageName: node
linkType: hard
"@babel/helper-hoist-variables@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-hoist-variables@npm:7.10.4"
dependencies:
"@babel/types": ^7.10.4
checksum: 04067e2a3721f4a813a1f888816418b608be09792f7a0fe2c98a8fc8c7d8665883fe8faec9c36018f45e67bf180ce00da0b5dc1ebcff8cc1a8bb5acf571e838d
languageName: node
linkType: hard
"@babel/helper-member-expression-to-functions@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/helper-member-expression-to-functions@npm:7.12.1"
dependencies:
"@babel/types": ^7.12.1
checksum: edf217dc5bc6d344ad7b255d02fce3c3aa7fef0320de25538020b30f54da7e5a3ce998e75be06d7edecc3c03a9179637b59c2dd42b1552ed8ad2413dc11e0a69
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^7.0.0-beta.49, @babel/helper-module-imports@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/helper-module-imports@npm:7.12.1"
dependencies:
"@babel/types": ^7.12.1
checksum: 2907a7c63aea45dcf322c9187518ee5af8ee52d2296c3e6c66be0c72f6108bbc0637c5025a33b1657313ee2cee2c7fc4edd6f2d8b912f7f627d30334b7de8d5e
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/helper-module-transforms@npm:7.12.1"
dependencies:
"@babel/helper-module-imports": ^7.12.1
"@babel/helper-replace-supers": ^7.12.1
"@babel/helper-simple-access": ^7.12.1
"@babel/helper-split-export-declaration": ^7.11.0
"@babel/helper-validator-identifier": ^7.10.4
"@babel/template": ^7.10.4
"@babel/traverse": ^7.12.1
"@babel/types": ^7.12.1
lodash: ^4.17.19
checksum: 95b1089fc22fa8db3e9f09c96ab70ace85b04394e520c3554215cdf8b08e0b5de01ed5fa055ab1639d79851cd82b7912d2047eaf2610402a9fc6678f109f8ed0
languageName: node
linkType: hard
"@babel/helper-optimise-call-expression@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-optimise-call-expression@npm:7.10.4"
dependencies:
"@babel/types": ^7.10.4
checksum: 0d37c6ae1c17dd8bc7f0b5463c29299a32db9299b883576abfd2c25198ca833171fecaf90efb8bfbebf0fa71c5ad6f93c8e000e40534f800585144e6b2d7bb88
languageName: node
linkType: hard
"@babel/helper-plugin-utils@npm:^7.0.0, @babel/helper-plugin-utils@npm:^7.10.4, @babel/helper-plugin-utils@npm:^7.8.0, @babel/helper-plugin-utils@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/helper-plugin-utils@npm:7.10.4"
checksum: 887795f869cef2be87b9007dd625d1cefa5a18f2f37075919d85ed6ba36035cd31b8a7995bfc583711b9d9c61201340f5df2ed5599b03263e50ff6ac27fcb775
languageName: node
linkType: hard
"@babel/helper-regex@npm:^7.10.4":
version: 7.10.5
resolution: "@babel/helper-regex@npm:7.10.5"
dependencies:
lodash: ^4.17.19
checksum: b788a57cbb9995449a6659917d23bb2ddcd00225533631cf584710e86d24aa4f01e8262900e94c2ad6faa275b3a61ccb0710ece8b5865c59df97bfd6ffb131ad
languageName: node
linkType: hard
"@babel/helper-remap-async-to-generator@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/helper-remap-async-to-generator@npm:7.12.1"
dependencies:
"@babel/helper-annotate-as-pure": ^7.10.4
"@babel/helper-wrap-function": ^7.10.4
"@babel/types": ^7.12.1
checksum: 6fcc7986728253c105071348c97d6bdc4add20c55b3e84a6ad15904bc5f2e1e3b9c40adf597200783b1359846963d082d93df6b56a5a74022eb2f9c3ddd5d7a5
languageName: node
linkType: hard
"@babel/helper-replace-supers@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/helper-replace-supers@npm:7.12.1"
dependencies:
"@babel/helper-member-expression-to-functions": ^7.12.1
"@babel/helper-optimise-call-expression": ^7.10.4
"@babel/traverse": ^7.12.1
"@babel/types": ^7.12.1
checksum: 1308da243ed9a4ecc1dcc25fa4531e517467eacea26a7bb93629bf3c36b245452774e1cac7f8f1db5cf5bd8b9d808c4dbcdb1578fee035ac51461b520c8b56a2
languageName: node
linkType: hard
"@babel/helper-simple-access@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/helper-simple-access@npm:7.12.1"
dependencies:
"@babel/types": ^7.12.1
checksum: cbcccf4832c85d18b2c7afea1375635861a1e8ecf60c85abf38133ca34581e330880b60fc69dd7a468daeb992a82c1e481c641d863405e26ebb91d0ece0fca2f
languageName: node
linkType: hard
"@babel/helper-skip-transparent-expression-wrappers@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/helper-skip-transparent-expression-wrappers@npm:7.12.1"
dependencies:
"@babel/types": ^7.12.1
checksum: acee761b6333469cc8a191cba1b49bb4e0aabca25a24490add506fd29c41cdddc59a887f2f730b5354977b044aad336b110a773be467ca6e576505a8572f5304
languageName: node
linkType: hard
"@babel/helper-split-export-declaration@npm:^7.10.4, @babel/helper-split-export-declaration@npm:^7.11.0":
version: 7.11.0
resolution: "@babel/helper-split-export-declaration@npm:7.11.0"
dependencies:
"@babel/types": ^7.11.0
checksum: 37e86e5da2b45928f9a0c9bcde2c9912953c3f68653c543a969150a19f45849117ffff944dbf0359cf3db83d9a665936b72297650e540baccff2e32d9f5957cd
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-validator-identifier@npm:7.10.4"
checksum: a234c6c25b94ae696e7e72f98c2fc58c44893648cda58b55232bd921695ebd61083a4840cf9413d6989a882189451c95f8deb96231f468b7dfcacd8b7367bad9
languageName: node
linkType: hard
"@babel/helper-validator-option@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/helper-validator-option@npm:7.12.1"
checksum: ec0e97d31e016301e40b643538d49c8971f64906ed9b3132e02d932c9717d4ffb401ed98b476f38e251096b7c2d5dbbcd7e1f2a9f6d4b62cf58b9913afe6640d
languageName: node
linkType: hard
"@babel/helper-wrap-function@npm:^7.10.4":
version: 7.12.3
resolution: "@babel/helper-wrap-function@npm:7.12.3"
dependencies:
"@babel/helper-function-name": ^7.10.4
"@babel/template": ^7.10.4
"@babel/traverse": ^7.10.4
"@babel/types": ^7.10.4
checksum: 3db046db056efb60e7d756261ce2273d926defb0375fda9b37de871a799e3e8bd6ece72ed9323c37f5f5e4143af91fae2365b53e0715fc79a4813bc84f0b6466
languageName: node
linkType: hard
"@babel/helpers@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/helpers@npm:7.12.1"
dependencies:
"@babel/template": ^7.10.4
"@babel/traverse": ^7.12.1
"@babel/types": ^7.12.1
checksum: 58e91f73cf14bcc6989fe9f9fc38e04be74d7a92ab1efc5735f4e89d3175e883dfc9b45b6b8f7c38d121500457432d7791c97166e61df9f7fef83a5709800942
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: 8452c912a72580b7abccc654abf4d26685a50fbbd2e27b63082808c1961fafcde9c83f4fa74171294d2b92eea42bcbe848d2b695007e29e1d35b784591592833
languageName: node
linkType: hard
"@babel/parser@npm:^7.0.0, @babel/parser@npm:^7.10.4, @babel/parser@npm:^7.12.1, @babel/parser@npm:^7.12.3, @babel/parser@npm:^7.4.3":
version: 7.12.3
resolution: "@babel/parser@npm:7.12.3"
bin:
parser: ./bin/babel-parser.js
checksum: e5ba49116c5a6a78c70fe8fd97425d8d646812df9e2f31fb8e67964e24b38663ff266661bccb44b0d8e81cebb0e0b887edecb865741bde64b2083e517f5bbf2f
languageName: node
linkType: hard
"@babel/plugin-proposal-async-generator-functions@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-proposal-async-generator-functions@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
"@babel/helper-remap-async-to-generator": ^7.12.1
"@babel/plugin-syntax-async-generators": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 4862a3c23aac616f6ab5ff3adc537b842e595434925192e5d0966c2444746c89579c62881c0b3d934d7eb8cd01449f993b65ed66e297728a802dab2184fe48e6
languageName: node
linkType: hard
"@babel/plugin-proposal-class-properties@npm:^7.0.0, @babel/plugin-proposal-class-properties@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-proposal-class-properties@npm:7.12.1"
dependencies:
"@babel/helper-create-class-features-plugin": ^7.12.1
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 8236faa031ae1595de849ccbff76b6c22768985c91a67172ab13aa64d7927f2ba8cfa9487248f5d56696b8ab1264e546dd39dedc4e78605f5fb37b5dc12226da
languageName: node
linkType: hard
"@babel/plugin-proposal-decorators@npm:^7.0.0":
version: 7.12.1
resolution: "@babel/plugin-proposal-decorators@npm:7.12.1"
dependencies:
"@babel/helper-create-class-features-plugin": ^7.12.1
"@babel/helper-plugin-utils": ^7.10.4
"@babel/plugin-syntax-decorators": ^7.12.1
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 5656decee448a26b67f9967435ccf3f8d7bcbe45673eed7d4b0a0da2438dbd442efb598a808906faea04ab6e94df6f2d8c9eda03b9d0ceb577f8e29d5396cffb
languageName: node
linkType: hard
"@babel/plugin-proposal-dynamic-import@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-proposal-dynamic-import@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
"@babel/plugin-syntax-dynamic-import": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: d33de2291bb5cf686fddb73e755d5b2ea7f113c13b43686cd456ac99a647fe80af39d65e9d9c53e948e8a91f8e0d79a75fa0cb03a76f6b307c2ecb1ce558335c
languageName: node
linkType: hard
"@babel/plugin-proposal-export-namespace-from@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-proposal-export-namespace-from@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
"@babel/plugin-syntax-export-namespace-from": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: b94aa80eaf80c09769e200e76f0ac4008d1008b86b8acce244c47fc80f567458f38596a57d173a2769e0c87cdb6b6fb9507efae299275673bf0b37624a4fe59e
languageName: node
linkType: hard
"@babel/plugin-proposal-json-strings@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-proposal-json-strings@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
"@babel/plugin-syntax-json-strings": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 3feca9639cf1d71acde95a9c3a893a3f29516d3885561946a568f573eaa35ebcb032761655612783a6bcd1c1ace29039b735a75b44e8a590e95fcf92ece2fea1
languageName: node
linkType: hard
"@babel/plugin-proposal-logical-assignment-operators@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-proposal-logical-assignment-operators@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
"@babel/plugin-syntax-logical-assignment-operators": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 0102cf7e9e165408bf125da7757d149d69287a34a118e3040f4bc8580b69b765502abc77a449759a03525af8b4f6a7ba52b6b63c292bcedf53cf34662355e8fa
languageName: node
linkType: hard
"@babel/plugin-proposal-nullish-coalescing-operator@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-proposal-nullish-coalescing-operator@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
"@babel/plugin-syntax-nullish-coalescing-operator": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 636ad88c82536ca0a3a263a0df0216d0d38f2c3c8525ce7fb48ca2ac94098680d383c1881582d44426ec7bd7402c50ff3fd2fccb91ab5d9cc863d57797ea49c6
languageName: node
linkType: hard
"@babel/plugin-proposal-numeric-separator@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-proposal-numeric-separator@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
"@babel/plugin-syntax-numeric-separator": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 9f8b4526a1d4090cd88f504369db30a3aa9a8702a0882f70a143d65d033af3fa6d6e960065da7086401bfaee70b666fcbc79cfd3b601670c123bfe6a3f427ba2
languageName: node
linkType: hard
"@babel/plugin-proposal-object-rest-spread@npm:^7.0.0, @babel/plugin-proposal-object-rest-spread@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-proposal-object-rest-spread@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
"@babel/plugin-syntax-object-rest-spread": ^7.8.0
"@babel/plugin-transform-parameters": ^7.12.1
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 788bd610878b4d57b7650ed11e6052d5d9cce1a675213f59280836e8d365f47ca00a5a5584dd08661689de75a369ce3793f63e4d999ca6d19279d7eb853dbaab
languageName: node
linkType: hard
"@babel/plugin-proposal-optional-catch-binding@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-proposal-optional-catch-binding@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
"@babel/plugin-syntax-optional-catch-binding": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: f1d63cf8e5682e2b96b44dc8dd1bc6fe405042c9bced70f8475d6b9d452a2d499fe33162136551fd270226086408e5822b73d4ad29a9e85053a2ede679969a66
languageName: node
linkType: hard
"@babel/plugin-proposal-optional-chaining@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-proposal-optional-chaining@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
"@babel/helper-skip-transparent-expression-wrappers": ^7.12.1
"@babel/plugin-syntax-optional-chaining": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: cbecfb9a9ec730c3e83a2bf076611f82b4e92bb64d31ed260b9d835368b83b8b73dbee8e01af754fa9e4b5320341c65af52e068871ac21fb7dd2216398d25e93
languageName: node
linkType: hard
"@babel/plugin-proposal-private-methods@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-proposal-private-methods@npm:7.12.1"
dependencies:
"@babel/helper-create-class-features-plugin": ^7.12.1
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 355418c3c2c01b943061ee75d336b265fb3360b50669d510e35bdf594a55ee599e78b24a73363f56e2aa9718c9a808921e6455a7c32e2a05fb65a976f800b141
languageName: node
linkType: hard
"@babel/plugin-proposal-unicode-property-regex@npm:^7.12.1, @babel/plugin-proposal-unicode-property-regex@npm:^7.4.4":
version: 7.12.1
resolution: "@babel/plugin-proposal-unicode-property-regex@npm:7.12.1"
dependencies:
"@babel/helper-create-regexp-features-plugin": ^7.12.1
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 92b1bf6591e337b9b52320e1ce157ef0a0d6db9e224a7ad8b2be469c662a5fb35494ac5ff53be5dabbfb72efa03bd9ee7fec13ad14e6f3626027e877c3da00c7
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-class-properties@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-syntax-class-properties@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: ea226357ebfa7d10796f2abf27eab354c357d680cedd2e025e58c05eba189740c05a541976df99dd9dcb3e09f93242142f10aa1ca389906bb5b1085e312bde35
languageName: node
linkType: hard
"@babel/plugin-syntax-decorators@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-syntax-decorators@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: aaaed5d0652c7f0e55a912807f9a8734c8d82e2657177eba7a24d6b2da13e66411aba803221de1c52ab2cf3a4e881e4e11b6a0ae50f452e3c5d35e6abe3d77e9
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-export-namespace-from@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-export-namespace-from@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: ac06b3ff3710c11eb5bcb90e9585a9f3a30669ed825a3194e62007e1d2b6bb49be7d581f204137f47f3378371383db0961ffacfdf50ae3d99cc1ff2255ddd376
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-logical-assignment-operators@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-syntax-logical-assignment-operators@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 4bcaceb2c8fef263d87549b1a781dc3bd6c78809608173e4f9f3eec486257326c0ca95d6df686e1fe9660f8dd847332efd7385321511f0f664dce987356ba30f
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.10.4":
version: 7.10.4
resolution: "@babel/plugin-syntax-numeric-separator@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: a4f01ef23d35c1fa0a57f4ee69d4b680dfbaf8e359b17cb193642d694069cf8074c2d3220683848146ad39e12943c8ecef5627cf6f1771000fe6c85d4a520175
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.12.1":
version: 7.12.1
resolution: "@babel/plugin-syntax-top-level-await@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 85bee0ef2b1cd72541b0cc79306ce8e11d953a5dc29faffd0006797af7f88a5f18d50dcb0ebb422da9e8dd4d67f6758eae4dd2b37da6b7231906546f7109264a
languageName: node
linkType: hard
"@babel/plugin-syntax-typescript@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-syntax-typescript@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: e24779c8f75162cd37e15016b934075d6d8bde9eb6f763b10a11d48d6e530ddbf9819b353d74aa9519cc3988edd1b5097842f2c5fb6793b25112e03ca961c24f
languageName: node
linkType: hard
"@babel/plugin-transform-arrow-functions@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-transform-arrow-functions@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: e1300b8da7624fcea8a6f20afbff9f07260aa7f9854d9dc98c5ac7b87988dc3e5e6002bda322d408631be9677f8d498676a0cfff1c97822ca755724fea5c9c04
languageName: node
linkType: hard
"@babel/plugin-transform-async-to-generator@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-transform-async-to-generator@npm:7.12.1"
dependencies:
"@babel/helper-module-imports": ^7.12.1
"@babel/helper-plugin-utils": ^7.10.4
"@babel/helper-remap-async-to-generator": ^7.12.1
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 79a7f934863d41d95ef996ba939a9e747e4038b64bd1280dda286f7ad998d2a20f3bd9b5d63e6beb4c1268ea6fd933961f973ef3230fd23461921fabc6154877
languageName: node
linkType: hard
"@babel/plugin-transform-block-scoped-functions@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-transform-block-scoped-functions@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: aae7bc1baa6e936e0009e7ce766314431e5268437735b00a4098c718e4c0d1d905c5d78796872055b2997bf93ca8bbb32e8b5d6f72755da503eb459ea8ecd8bb
languageName: node
linkType: hard
"@babel/plugin-transform-block-scoping@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-transform-block-scoping@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 330fe9bd445a7cc67cf2d3a3902a901c321d4d52f454af383291ce93940f4cd6049b96517456730e0d8299bae84d96e6b3ae544057f1a89bf04a65a1ac5fc7e0
languageName: node
linkType: hard
"@babel/plugin-transform-classes@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-transform-classes@npm:7.12.1"
dependencies:
"@babel/helper-annotate-as-pure": ^7.10.4
"@babel/helper-define-map": ^7.10.4
"@babel/helper-function-name": ^7.10.4
"@babel/helper-optimise-call-expression": ^7.10.4
"@babel/helper-plugin-utils": ^7.10.4
"@babel/helper-replace-supers": ^7.12.1
"@babel/helper-split-export-declaration": ^7.10.4
globals: ^11.1.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: fdce67f68e139203bab756042b2df4b8728d8ae8ec0c1751e5a7417c1f939e2435c97829cabe0009880a7ce779057118ea50b9726c89b0075f01e4ca33641b3f
languageName: node
linkType: hard
"@babel/plugin-transform-computed-properties@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-transform-computed-properties@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 4ecc09bc9c9bd88989b91ce9807497f420a6cf27ce73180c7f1f9bd7d8ee4f35e2d0dde5b95d58c29883391496682f534ee30bd8cedcb0adb7f919941a68c65d
languageName: node
linkType: hard
"@babel/plugin-transform-destructuring@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-transform-destructuring@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 9203cff17c256a40cd086d59634fb80cce0a4901cf4f84a8a54aa6b6f7a1223e0037cc161e2e58881ca7d199f835c2edeed31343d904d6e27e36873693d2869c
languageName: node
linkType: hard
"@babel/plugin-transform-dotall-regex@npm:^7.12.1, @babel/plugin-transform-dotall-regex@npm:^7.4.4":
version: 7.12.1
resolution: "@babel/plugin-transform-dotall-regex@npm:7.12.1"
dependencies:
"@babel/helper-create-regexp-features-plugin": ^7.12.1
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: ba535b2e07cda201ea3bbba623777598db0b2d9028089c793d2603beb94a9f93b29ada464b8cd99d0dd9a34ef159f0fce1bf53b984ff8152d29b7c15047e8bfc
languageName: node
linkType: hard
"@babel/plugin-transform-duplicate-keys@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-transform-duplicate-keys@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 86c1f753ff5eb0c4bd777e400f99a2250fd1daaa1dbd2947580e878eb8746d2e566aaa3cf24d3f17d586c07d8ffba41416691ae4772c10641434b6472953d1c4
languageName: node
linkType: hard
"@babel/plugin-transform-exponentiation-operator@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-transform-exponentiation-operator@npm:7.12.1"
dependencies:
"@babel/helper-builder-binary-assignment-operator-visitor": ^7.10.4
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 484ffc8497b40d63e2cf51fbfbf2e59d569df797f437339d60a238da0dd63cac844034a11a5feefda06b070f4d2027f0137110128bb52a5800a21c2a520b6c4b
languageName: node
linkType: hard
"@babel/plugin-transform-for-of@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-transform-for-of@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: c82dd6d81583c2d8d66568cf3f03dea1facc4e11b7b01c78ac410ea91b39a9d46babc421a31efe03d303a05a106acc366a5d5f10b5ebc801bbc53029026e4bd8
languageName: node
linkType: hard
"@babel/plugin-transform-function-name@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-transform-function-name@npm:7.12.1"
dependencies:
"@babel/helper-function-name": ^7.10.4
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 8cbfed2791445fc6ebf93465865b60da6cc7ad8b344d8767754671d55cbb16b8a49d2122120f765b65a74a01304f6316328452e13c0367c546a2df6ec8371ca7
languageName: node
linkType: hard
"@babel/plugin-transform-literals@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-transform-literals@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 65b2f26961d559ef22a27ed3f290ebff55846847347302af2cc6f1de1136604a3fbdaa4821534d9c75eba9e1c38822cb15ff5a6170fc1e4a3dc8a46c17fdb4fe
languageName: node
linkType: hard
"@babel/plugin-transform-member-expression-literals@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-transform-member-expression-literals@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 264dae822141aec94ac4761575bb2783e27448a4704a8344481659350e4ac0c32db9c037fc2fa9aa8b20906f8b3f140a34005f32118487f22a5898534c4db53a
languageName: node
linkType: hard
"@babel/plugin-transform-modules-amd@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-transform-modules-amd@npm:7.12.1"
dependencies:
"@babel/helper-module-transforms": ^7.12.1
"@babel/helper-plugin-utils": ^7.10.4
babel-plugin-dynamic-import-node: ^2.3.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 96d572c67307af6007d2d48366c39441baae7266828938e83194b62fd992b406191f666eb0a0b4f7e6ee047e18c6df99a8f0e7ec682037f43690597439d5545d
languageName: node
linkType: hard
"@babel/plugin-transform-modules-commonjs@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-transform-modules-commonjs@npm:7.12.1"
dependencies:
"@babel/helper-module-transforms": ^7.12.1
"@babel/helper-plugin-utils": ^7.10.4
"@babel/helper-simple-access": ^7.12.1
babel-plugin-dynamic-import-node: ^2.3.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 56727b40e191d5f00b791c77650f830dbb64fbe76999805f39eeecfa1c1a068530558ae6f9433e72d4c8d783e2346f99a04ea78c5af591016904d3aa26418fa5
languageName: node
linkType: hard
"@babel/plugin-transform-modules-systemjs@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-transform-modules-systemjs@npm:7.12.1"
dependencies:
"@babel/helper-hoist-variables": ^7.10.4
"@babel/helper-module-transforms": ^7.12.1
"@babel/helper-plugin-utils": ^7.10.4
"@babel/helper-validator-identifier": ^7.10.4
babel-plugin-dynamic-import-node: ^2.3.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: df84392fa0147d41e9d66537c2881182e0ed8e048b66e4f70a1651d986cc22ebe8ea9d6e7c171c2b416d219fa9902db5d6ecfedc40aa2a07bc75675e4f127ac1
languageName: node
linkType: hard
"@babel/plugin-transform-modules-umd@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-transform-modules-umd@npm:7.12.1"
dependencies:
"@babel/helper-module-transforms": ^7.12.1
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: ccf15a0a2696aa97077b9a0679d936a3fa9ac7ca359bbb8ad90010e1008c16095cd111130887f1525989fe44e2fbf5419c484d93b98a3c041ba2912a103468a5
languageName: node
linkType: hard
"@babel/plugin-transform-named-capturing-groups-regex@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-transform-named-capturing-groups-regex@npm:7.12.1"
dependencies:
"@babel/helper-create-regexp-features-plugin": ^7.12.1
peerDependencies:
"@babel/core": ^7.0.0
checksum: bde757e6bd4dc2346253967cf66fb87b4432e867a653a3e73e24c18b8a11d27e4fcaab805921872502ad7d2372330bb8f70929f417d39a697c54cee9740d4fef
languageName: node
linkType: hard
"@babel/plugin-transform-new-target@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-transform-new-target@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 5f56d79dce1e5b6b718dc8fc36bb194ef76b0fbe9b1115003644d77f6ac4d58f2686d1a6bfd8524b57b2eaea9c9b61b5cfdfb962f6ad3491a3f05baffe933d1e
languageName: node
linkType: hard
"@babel/plugin-transform-object-super@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-transform-object-super@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
"@babel/helper-replace-supers": ^7.12.1
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: be22ea85af84308bc149a17b04de12fcf5ff8c48bff68241732424d833886e885b05742c82e853f913df61ff26fae1a177c2e5925d1fbbec946a7064decfce44
languageName: node
linkType: hard
"@babel/plugin-transform-parameters@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-transform-parameters@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 01082874ea9dd0a652adb0a8e92f8c99f2163e8335481b155b2b0057041c1489069f0bde07b79e77b70f16af4ace4d1ef20d17c84021086ad32114c0ca8491e4
languageName: node
linkType: hard
"@babel/plugin-transform-property-literals@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-transform-property-literals@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: d70788856d65ed15a6edae291f9ac12810356d0a915ee0cb688491632b09dbc15ba836e0382d9ee2da2f3cc9077ff970419489565daa25ef5119cff422e84898
languageName: node
linkType: hard
"@babel/plugin-transform-regenerator@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-transform-regenerator@npm:7.12.1"
dependencies:
regenerator-transform: ^0.14.2
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 541b6419e979ad2e07cf24c7ab13a19da4a2f491248ea034da69322686892484334563e747c45ebabbec09561fdb127b7e8244a775cf98beef02d07e06802bbf
languageName: node
linkType: hard
"@babel/plugin-transform-reserved-words@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-transform-reserved-words@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: ebe9e0600d153cf596b62c412dd0d0b078df7a7b455b2ce1ffc15443ebb7082e2c0b70387785e0cce50a90c261735c6123288765e84179462b8a1d02725822f7
languageName: node
linkType: hard
"@babel/plugin-transform-runtime@npm:^7.0.0":
version: 7.12.1
resolution: "@babel/plugin-transform-runtime@npm:7.12.1"
dependencies:
"@babel/helper-module-imports": ^7.12.1
"@babel/helper-plugin-utils": ^7.10.4
resolve: ^1.8.1
semver: ^5.5.1
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: f1b46c39f8668d6e3e61897b6a774e3083475d8988e6cc9e39a4429edeac488424e71324f59e6b0185db6122c46a56f74be7e30f76bc11e2b49736e708d8e6fb
languageName: node
linkType: hard