-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
20639 lines (18599 loc) · 703 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: 6
cacheKey: 8
"@ant-design/colors@npm:^3.1.0":
version: 3.2.2
resolution: "@ant-design/colors@npm:3.2.2"
dependencies:
tinycolor2: ^1.4.1
checksum: 6af3b744ef8d3f79345f910a13d4321961ccc56ff34f76af8f2f0cbf16d8a83b12cf67d142645852588a50d68a34147d0fbffef0a2bb163dec524d692f68cb7f
languageName: node
linkType: hard
"@ant-design/create-react-context@npm:^0.2.4":
version: 0.2.5
resolution: "@ant-design/create-react-context@npm:0.2.5"
dependencies:
gud: ^1.0.0
warning: ^4.0.3
peerDependencies:
prop-types: ^15.0.0
react: ^0.14.0 || ^15.0.0 || ^16.0.0
checksum: 899c1b47ca68059672f70417dee282ed6e7a72417e1a5a16930319efff7d300ef6f60a9e0d9c8ab229231c4dd8570a18d6cec0856aacbbfcf2f9725199f84fb1
languageName: node
linkType: hard
"@ant-design/icons-react@npm:~2.0.1":
version: 2.0.1
resolution: "@ant-design/icons-react@npm:2.0.1"
dependencies:
"@ant-design/colors": ^3.1.0
babel-runtime: ^6.26.0
peerDependencies:
"@ant-design/icons": ^2.0.0
react: 16.x
checksum: e4f7dfd764de9e1d126a9701ae5ad46d15703ee90ae28407f2d523b62cbf6a647f4fe4dff34bdbb2bc185458d07105f06eec7d9a67941945eda9f664f9f249fc
languageName: node
linkType: hard
"@ant-design/icons@npm:~2.1.1":
version: 2.1.1
resolution: "@ant-design/icons@npm:2.1.1"
checksum: 327948a42f46ea3447704a1d5625cf8b96dce3a073d0362d58ee2ea376801a67496ca7bc31b2f9805fea7aa6c021a5453a9fa55c3388e92cb7c40b879df4b0a0
languageName: node
linkType: hard
"@babel/cli@npm:^7.6.2":
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: 9199fccf952901da716ea6ecd2b9518cff1301adf9f830a15e7ee9e293d902131ad695ccb186ead935825677498a515c630b4d0224daad94cbed793d21e17209
languageName: node
linkType: hard
"@babel/code-frame@npm:7.0.0":
version: 7.0.0
resolution: "@babel/code-frame@npm:7.0.0"
dependencies:
"@babel/highlight": ^7.0.0
checksum: 0483e67fea3ee5930c163c7dc729a2a5250afab49d0b52e187dfdb7b6382e256fa269e3b3f7af0d55cce27f145c79112934a9d2b8854dd3953c8337a61c0c619
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.0.0-beta.35, @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: 5f3172b0c8d5db625fb88c9f6ab909cb164645152176dfa14c927c19c0774c41fa9ba494cb19cb5d152a414bd6732c41eae708f9f635e02a4ed0889ac239fe4c
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.8.6":
version: 7.8.6
resolution: "@babel/compat-data@npm:7.8.6"
dependencies:
browserslist: ^4.8.5
invariant: ^2.2.4
semver: ^5.5.0
checksum: 06402cd3fe9327f104f0ef24d28f5005f182853ae69b4e502cc920d2e6c0a46c9c575c6068b66fc0579f099b4adea44858fe35f2babb068f465aabe10293b826
languageName: node
linkType: hard
"@babel/core@npm:7.1.0":
version: 7.1.0
resolution: "@babel/core@npm:7.1.0"
dependencies:
"@babel/code-frame": ^7.0.0
"@babel/generator": ^7.0.0
"@babel/helpers": ^7.1.0
"@babel/parser": ^7.1.0
"@babel/template": ^7.1.0
"@babel/traverse": ^7.1.0
"@babel/types": ^7.0.0
convert-source-map: ^1.1.0
debug: ^3.1.0
json5: ^0.5.0
lodash: ^4.17.10
resolve: ^1.3.2
semver: ^5.4.1
source-map: ^0.5.0
checksum: e165c65de28222829e8eb8fbb3b8d1a1726cd1a3d43c9533c6c548210f183753c6152663fc0971a5283af9e5b2b31c4eb1862cf792c4e0a2fcedea179395380f
languageName: node
linkType: hard
"@babel/core@npm:7.2.2":
version: 7.2.2
resolution: "@babel/core@npm:7.2.2"
dependencies:
"@babel/code-frame": ^7.0.0
"@babel/generator": ^7.2.2
"@babel/helpers": ^7.2.0
"@babel/parser": ^7.2.2
"@babel/template": ^7.2.2
"@babel/traverse": ^7.2.2
"@babel/types": ^7.2.2
convert-source-map: ^1.1.0
debug: ^4.1.0
json5: ^2.1.0
lodash: ^4.17.10
resolve: ^1.3.2
semver: ^5.4.1
source-map: ^0.5.0
checksum: 5694032727a05386d78e6417603106b8f090da61767e11b05d89a3323019a05c27c344ff3ad3260c396aa6fb685606e8a7fd3390286785a7a1e638668f7ae7d0
languageName: node
linkType: hard
"@babel/core@npm:^7.4.5":
version: 7.8.6
resolution: "@babel/core@npm:7.8.6"
dependencies:
"@babel/code-frame": ^7.8.3
"@babel/generator": ^7.8.6
"@babel/helpers": ^7.8.4
"@babel/parser": ^7.8.6
"@babel/template": ^7.8.6
"@babel/traverse": ^7.8.6
"@babel/types": ^7.8.6
convert-source-map: ^1.7.0
debug: ^4.1.0
gensync: ^1.0.0-beta.1
json5: ^2.1.0
lodash: ^4.17.13
resolve: ^1.3.2
semver: ^5.4.1
source-map: ^0.5.0
checksum: 68c3b20adcb45e19f70c759ea75c69b1cdbed3d392b7e6f65a4f70bd8e52181f79a02c4517bddab6550f2e55e73a7a8455ba15aaf0ebdc00632b8d997c5a29f1
languageName: node
linkType: hard
"@babel/generator@npm:^7.0.0, @babel/generator@npm:^7.2.2, @babel/generator@npm:^7.8.6":
version: 7.8.6
resolution: "@babel/generator@npm:7.8.6"
dependencies:
"@babel/types": ^7.8.6
jsesc: ^2.5.1
lodash: ^4.17.13
source-map: ^0.5.0
checksum: 288fecb43915130c926e5b977213137f208901b8360879e952ec4467716b472cebffc776ab15735094fc0bbf6083e544f0c3b53315f43f734fe862ec554725b5
languageName: node
linkType: hard
"@babel/helper-annotate-as-pure@npm:^7.0.0, @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: 173e415a7873ac233fc12efd88ba26b087936af37f94e897c1b934e8b645870e65cfb8a602e7d0f78817f2f3bc01e47b9bf388aa34a665841dde9699dec36295
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: d60b967db5dc49ee7f275bec0c562588eed3cdfc9e6e79e1209e1f3d70e4f20d5c36c83317059ce59c1dc9a5eff2cbf0aa5cfa9bbcbc8247263f9fa759a1c5c5
languageName: node
linkType: hard
"@babel/helper-builder-react-jsx@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/helper-builder-react-jsx@npm:7.8.3"
dependencies:
"@babel/types": ^7.8.3
esutils: ^2.0.0
checksum: b60e5c9ecc72c6d1542a9f87def87c07768c5351cea0088e0d764e2da5c35be6bbdedaa37244b097eac7196be64bd85ded1fcc0bae6e15b7d6f21ec42b921a6e
languageName: node
linkType: hard
"@babel/helper-call-delegate@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/helper-call-delegate@npm:7.8.3"
dependencies:
"@babel/helper-hoist-variables": ^7.8.3
"@babel/traverse": ^7.8.3
"@babel/types": ^7.8.3
checksum: fe98cedef9c326739ede972743059e7dead4570de8baecf694671fd4ea807bcbeafa3b5a4b71b0ac9b2e47d54ff3458780f51c9cf604587bb35d3792d0147130
languageName: node
linkType: hard
"@babel/helper-compilation-targets@npm:^7.8.6":
version: 7.8.6
resolution: "@babel/helper-compilation-targets@npm:7.8.6"
dependencies:
"@babel/compat-data": ^7.8.6
browserslist: ^4.8.5
invariant: ^2.2.4
levenary: ^1.1.1
semver: ^5.5.0
peerDependencies:
"@babel/core": ^7.0.0
checksum: 63f0be73a1b1da8d7bcd6ebe6e2901c10533d5e9a961eef5341f81d43912b57869aa55a5ea99f7cd37710365c92d26a926b1b176469b7bbb8f83d29d5973638e
languageName: node
linkType: hard
"@babel/helper-create-class-features-plugin@npm:^7.3.0, @babel/helper-create-class-features-plugin@npm:^7.8.3":
version: 7.8.6
resolution: "@babel/helper-create-class-features-plugin@npm:7.8.6"
dependencies:
"@babel/helper-function-name": ^7.8.3
"@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: fb7014385307e2280570fae61ab6e45eb263a82a637f7b2c7890e92355658fad5244279a360835076161c006db91f59b118fa1bc716595ae26efe6a4a80631a2
languageName: node
linkType: hard
"@babel/helper-create-regexp-features-plugin@npm:^7.8.3":
version: 7.8.6
resolution: "@babel/helper-create-regexp-features-plugin@npm:7.8.6"
dependencies:
"@babel/helper-annotate-as-pure": ^7.8.3
"@babel/helper-regex": ^7.8.3
regexpu-core: ^4.6.0
peerDependencies:
"@babel/core": ^7.0.0
checksum: 3fda96d592cb8a1d51f62d6ce4a8714b2e6791eef6df9c45827a832fad33049a7a56f66f1c84d65e34b905c6b84ca372caa998cd89a38d0076e8e8a8128c5d4c
languageName: node
linkType: hard
"@babel/helper-define-map@npm:^7.1.0, @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: 5702efd78c168ecb8bbab199da0901ab828736d683b601344e6596b357678cedb2a37e65a13d9af1d5ee938e47872e020a25ed0db84585b8af189bca660cf994
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: 26222404be637f918e43ccbd9c7343bf2823fe26c8b2d1b020dfe650aeb7fce530d40b74850c0b85328451c7cae55ad61204406cdd29880342ca1df0fa44d6c7
languageName: node
linkType: hard
"@babel/helper-function-name@npm:^7.1.0, @babel/helper-function-name@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/helper-function-name@npm:7.8.3"
dependencies:
"@babel/helper-get-function-arity": ^7.8.3
"@babel/template": ^7.8.3
"@babel/types": ^7.8.3
checksum: 894aacdc06dae92900a35c3b2b6fc92be3476fa366b9e2f75cc34c21f80c9b3d49532604851c8b385d6e06b3c421d41c295ac260256659600893cb71020f49c4
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: f36d939bc565576f47c546ee636a37d0597ebdde30182db974cf47b27d4ee3a72a53233e45bdb57dac306ff5b03a2083d9d2fa8291d95d93bfe4f6213a6901e2
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: 617631de75e27522dd6b6db243c70d265baf8852a8fcc2ec33cb31d7faaa859494c5f4d07490daa7331699229b960dd1e8084fd31ba6fecd61f0130718bd8341
languageName: node
linkType: hard
"@babel/helper-member-expression-to-functions@npm:^7.0.0, @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: 4215e47fc1b133f4d127fb291f7bc064524ccfc5caa128806127a3b17be6004aec5649875fe2607f4f7345a45a73488dfc78533f3b4ebcfbe3a0cb1df37fe1b1
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^7.0.0, @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: 252c039695b512938b91acf7720372e789cded85fae273647994fb7964f9b948ab24fe0d3f807e724110e97f0041e02854590b17304dd7a5c8d667795f45abb9
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.8.3":
version: 7.8.6
resolution: "@babel/helper-module-transforms@npm:7.8.6"
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.8.6
lodash: ^4.17.13
checksum: bab02b9f389e3d91294a228f9ff4f0b3334bbdd588e27330851125fb92e991991e5b1983ac2268f2e1abf3a8bfe56cc52e14623b7a241e1b2eec87c2255fd318
languageName: node
linkType: hard
"@babel/helper-optimise-call-expression@npm:^7.0.0, @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: f4cda9efe2835066654ff8b8d6f4fe5c4c9d9067aa8e977ad140f31545916d27d7af6e4a9f59f6d5b05dd710918adcb8ac0544644f7ab4c5269a183a0ce09f27
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: c81ed4d3c5670c28921b1598ff97f676d8ee848afb8dc643be095bd1b289e7ee5ea9a3bb15c0dcf6ce9b30a53ef71ec4863a678734be3cfef69fed430516882a
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: 601260117fa8cd6d75b371a6597534d0a48d97f336853a43f171e64c167247b6a6271e50a7e4ff802a044f83ce3810144c3c8c9eba9b8aedd45a537bbfe3985a
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: 58e20e0e2b83eebb893f62ecb85b0cf9f934a7ac9a84a5b7ec7c3a2c8d8fb996996cd2f1c40c16664b219838a5370234026527824605c40aa8ae7a5052f4c1b5
languageName: node
linkType: hard
"@babel/helper-replace-supers@npm:^7.1.0, @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: 9b2df962827f01c05f5ee6f814633b8ad86a4c34b82005131157698b8fb189a818b765a428f9dc7fb02198dfde94c9907915ca4a959633dc9ea04c3fe4d1fc4f
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: b2fa1b442ebfdac88fae7f5f6924a757ec33b071ac3c691a23059d5a75775e6e4971320f02e75c1b6ee00421bc20b5256bd7d3679f987c12457257afb8655d07
languageName: node
linkType: hard
"@babel/helper-split-export-declaration@npm:^7.0.0, @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: a8b5ce6d309002ef85f1514346f3929653c7319f40d98b7d56014a26b7c8b7517cabca12007c71bda513d0f1a0b7548afe9646ee269cbad2b7e7e43455fa0eef
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: 734cab9559ca6c98992ca5d4f657eddfd68ebccfa5d26aa148d3ec6df2e0217d87f8c407aa9d703b11bc493f5b7bd4f39fdafdf5f6abad122c20e46239ce707a
languageName: node
linkType: hard
"@babel/helpers@npm:^7.1.0, @babel/helpers@npm:^7.2.0, @babel/helpers@npm:^7.8.4":
version: 7.8.4
resolution: "@babel/helpers@npm:7.8.4"
dependencies:
"@babel/template": ^7.8.3
"@babel/traverse": ^7.8.4
"@babel/types": ^7.8.3
checksum: 9deb8d3af09d49970b599ff64dfb834846e34f612ef2effc06d3ad643c7c6f3011b0b98d1a57f8ef572dbd6ffe32a2a6a1e378d3d891057fdaae3e8c06e0ee40
languageName: node
linkType: hard
"@babel/highlight@npm:^7.0.0, @babel/highlight@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/highlight@npm:7.8.3"
dependencies:
chalk: ^2.0.0
esutils: ^2.0.2
js-tokens: ^4.0.0
checksum: 25e5d54b6c3ef83891af01988e50bf17dc785739c48cf66456c5c274203c39ab68c95b387018fc1b37c8feb199c1f489dae266ee44e45e36fd8a30e21e2822fa
languageName: node
linkType: hard
"@babel/parser@npm:^7.0.0, @babel/parser@npm:^7.1.0, @babel/parser@npm:^7.1.3, @babel/parser@npm:^7.2.2, @babel/parser@npm:^7.8.6":
version: 7.8.6
resolution: "@babel/parser@npm:7.8.6"
bin:
parser: ./bin/babel-parser.js
checksum: a2a74d9934b0af331f974715ddfe3639c5325c9305d6bb21a4763c502268d9d4ad4b0a2604abe89058900d00568db224383317da4ee9755a1351dfc67b85dbdd
languageName: node
linkType: hard
"@babel/plugin-proposal-async-generator-functions@npm:^7.1.0, @babel/plugin-proposal-async-generator-functions@npm:^7.2.0, @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: 26d888fb129daea848d3175fe2e2736614e07371511bd0fdf9c4996d372dd8743df90763ddf3d762c119ea412a206346d860aaa74a7b9c9c9a1557b481d03974
languageName: node
linkType: hard
"@babel/plugin-proposal-class-properties@npm:7.1.0":
version: 7.1.0
resolution: "@babel/plugin-proposal-class-properties@npm:7.1.0"
dependencies:
"@babel/helper-function-name": ^7.1.0
"@babel/helper-member-expression-to-functions": ^7.0.0
"@babel/helper-optimise-call-expression": ^7.0.0
"@babel/helper-plugin-utils": ^7.0.0
"@babel/helper-replace-supers": ^7.1.0
"@babel/plugin-syntax-class-properties": ^7.0.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 1e7a12b467cb1911515f20805526874960b91c45c8b111394c550fdb50f90df70fed13445141f8e723f1dd34f5aad17dd003c8bf5c0ef8313881a7e9d1d2192a
languageName: node
linkType: hard
"@babel/plugin-proposal-class-properties@npm:7.3.0":
version: 7.3.0
resolution: "@babel/plugin-proposal-class-properties@npm:7.3.0"
dependencies:
"@babel/helper-create-class-features-plugin": ^7.3.0
"@babel/helper-plugin-utils": ^7.0.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 06018dcdb14bdd48d68ec4d21e54a261b8f1ec9605ed4f09a427fb509199010844f1ff47fcfc88c757648503cf19672006f655409f795433a24f72d77cdb36d1
languageName: node
linkType: hard
"@babel/plugin-proposal-class-properties@npm:^7.2.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: 5ac3435b0393b09162234f8e4c56c6321f038d205af447563f8389e7ed447904c4cdedf958e6a5ed092692fcc2eff980913efff19589c0969dd9846be4710867
languageName: node
linkType: hard
"@babel/plugin-proposal-decorators@npm:7.1.2":
version: 7.1.2
resolution: "@babel/plugin-proposal-decorators@npm:7.1.2"
dependencies:
"@babel/helper-plugin-utils": ^7.0.0
"@babel/helper-replace-supers": ^7.1.0
"@babel/helper-split-export-declaration": ^7.0.0
"@babel/plugin-syntax-decorators": ^7.1.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 290a5196a01663b119ca5517a4d4532b3ff00f28aeb4e63dd3a5dfd7996cc8952505724e2bcc002d0b2ca579fe20cfa891d253bcc4a1e5e1f0d2a04ee48fb8e9
languageName: node
linkType: hard
"@babel/plugin-proposal-decorators@npm:7.3.0":
version: 7.3.0
resolution: "@babel/plugin-proposal-decorators@npm:7.3.0"
dependencies:
"@babel/helper-create-class-features-plugin": ^7.3.0
"@babel/helper-plugin-utils": ^7.0.0
"@babel/plugin-syntax-decorators": ^7.2.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: bfa92c2f0c3f776382ee94160775213a1b552e99cdc3856355e6ecebd985684bb827be0364c6858c83629b39b6dda51953418fc3ad16878fbfa09d66010230b1
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: 7fe2797c3d9ca6330a680795875cf4a43e2a298132357461deb890c8a819a401c2b8fa5c88d4607c7047b672746555d43e30a53428956ed75194772c5ba61dbe
languageName: node
linkType: hard
"@babel/plugin-proposal-json-strings@npm:^7.0.0, @babel/plugin-proposal-json-strings@npm:^7.2.0, @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: 8d5676d00ac92ad562e791a523d14386185a1113f19dbaa8fd0df5eb490adef3f54f503b3104d6f6c2772b0052ef2b7358a2b1789decb28f80f277acf9ac0e15
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: 36a87fa8f0ca709f66671ebd1af3f865fd1798e59cbf57f8db71cf69ef15ee8cf21ec54833b34c5e77b8a5a60d5b4e9ae949c00fec8eb320d5bc299bfcc3eae1
languageName: node
linkType: hard
"@babel/plugin-proposal-object-rest-spread@npm:7.0.0":
version: 7.0.0
resolution: "@babel/plugin-proposal-object-rest-spread@npm:7.0.0"
dependencies:
"@babel/helper-plugin-utils": ^7.0.0
"@babel/plugin-syntax-object-rest-spread": ^7.0.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: b08ebf3452fccdf0c1fc47c935878bbec5f231e0f93a047f9465e9c8949e2b4bb398a65d353dc04be03cc6c7303edd8f8980790506851404af583df2b937aaf7
languageName: node
linkType: hard
"@babel/plugin-proposal-object-rest-spread@npm:7.3.2":
version: 7.3.2
resolution: "@babel/plugin-proposal-object-rest-spread@npm:7.3.2"
dependencies:
"@babel/helper-plugin-utils": ^7.0.0
"@babel/plugin-syntax-object-rest-spread": ^7.2.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: ebd9457e1ca9a66651010cb5610b804fb8bec64cd975298f9c3adad312924af2980ea429bfe36697e54de10d74a9179ad2336045f3ca99845560994888ad8c1a
languageName: node
linkType: hard
"@babel/plugin-proposal-object-rest-spread@npm:^7.0.0, @babel/plugin-proposal-object-rest-spread@npm:^7.3.1, @babel/plugin-proposal-object-rest-spread@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-proposal-object-rest-spread@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
"@babel/plugin-syntax-object-rest-spread": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 002f50e44f126e0324c75a3042976cc81ef4da51d0132298ac667fb45e9cb4843721d0176ff9ebc66c5fb10e1da646aa521402791c0c39764c77d8e04efdc452
languageName: node
linkType: hard
"@babel/plugin-proposal-optional-catch-binding@npm:^7.0.0, @babel/plugin-proposal-optional-catch-binding@npm:^7.2.0, @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: 9e9dfb3f9cf6c410a90239ed8249a161792b0ea94372371be74adaaa65e99ce5978e7585702583c8d49f58a95da7ad86a486b804997020ffdadfa58c1d41df19
languageName: node
linkType: hard
"@babel/plugin-proposal-optional-chaining@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-proposal-optional-chaining@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
"@babel/plugin-syntax-optional-chaining": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: bb0f0be14da342e63faa2d33b578131f1bc6c72dfa2c0b8b73a14cd16b054b0369fb3fffe2fc9964c4314211f92fbbf8bc0f047445db32a443540b76d3dd0453
languageName: node
linkType: hard
"@babel/plugin-proposal-unicode-property-regex@npm:^7.0.0, @babel/plugin-proposal-unicode-property-regex@npm:^7.2.0, @babel/plugin-proposal-unicode-property-regex@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-proposal-unicode-property-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: 08e7dbfabaff531aaa9e91276cf722cf5af449abb81a834012a67c1176b6369e0dfea5191e6973e454fedfd9d761250b7a6411a338dbb706da244ff4d4bd78ad
languageName: node
linkType: hard
"@babel/plugin-syntax-async-generators@npm:^7.0.0, @babel/plugin-syntax-async-generators@npm:^7.2.0, @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: 7ed1c1d9b9e5b64ef028ea5e755c0be2d4e5e4e3d6cf7df757b9a8c4cfa4193d268176d0f1f7fbecdda6fe722885c7fda681f480f3741d8a2d26854736f05367
languageName: node
linkType: hard
"@babel/plugin-syntax-class-properties@npm:^7.0.0":
version: 7.8.3
resolution: "@babel/plugin-syntax-class-properties@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 06c97e75f36db723482b729267cfe8728ebb765f30d2f5b0fd79acf72256f2204d5be8cf7fa973b9912e87563d673a9093c3ab84bb5e3f5c6fef66c087e2c52a
languageName: node
linkType: hard
"@babel/plugin-syntax-decorators@npm:^7.1.0, @babel/plugin-syntax-decorators@npm:^7.2.0":
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: 2dcf14d158b0a84bb659b166e36e8614453f4d46676eb8049ebeb85adf7ec0a6354019b4f36f6db7d03f1861ef77a12916725cd56e9d18ebfe6903372517e672
languageName: node
linkType: hard
"@babel/plugin-syntax-dynamic-import@npm:7.0.0":
version: 7.0.0
resolution: "@babel/plugin-syntax-dynamic-import@npm:7.0.0"
dependencies:
"@babel/helper-plugin-utils": ^7.0.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 65a050c9ebc031cc4d85319dd7ccdd57cd6c70c69534430345467865ff1266c94f80d34eae52bcd91632ca21a6db2e9e158adb91b029100fb0330aba5e62b288
languageName: node
linkType: hard
"@babel/plugin-syntax-dynamic-import@npm:7.2.0":
version: 7.2.0
resolution: "@babel/plugin-syntax-dynamic-import@npm:7.2.0"
dependencies:
"@babel/helper-plugin-utils": ^7.0.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: c944b6b697f8c4f5e4d660bd6daa64bfeb82c3f43e006b625ebed728ec1071b9b291390d005da2d69bc2e40b0f9920e8935bfa0100cbd1ceca795dbfaca6e3bd
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: ce307af83cf433d4ec42932329fad25fa73138ab39c7436882ea28742e1c0066626d224e0ad2988724c82644e41601cef607b36194f695cb78a1fcdc959637bd
languageName: node
linkType: hard
"@babel/plugin-syntax-flow@npm:^7.0.0, @babel/plugin-syntax-flow@npm:^7.2.0, @babel/plugin-syntax-flow@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-flow@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 13e8e9a0af4df0b3cb7f4babdc87c26eeeeb1570b2e8998d4787ce97a61c2bb6bbd5b385c29b766e2a256380ffc84bcf29bce3f2461fb488a1c74dfd2760d6db
languageName: node
linkType: hard
"@babel/plugin-syntax-json-strings@npm:^7.2.0, @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: bf5aea1f3188c9a507e16efe030efb996853ca3cadd6512c51db7233cc58f3ac89ff8c6bdfb01d30843b161cfe7d321e1bf28da82f7ab8d7e6bc5464666f354a
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: f6b818d8a2908fa90a0284ec940043fcf5bdfc58a6651890438f97077989a4baa8445b76990be3ff2a8b333947e8fa09326fdc2db9e9071995eeaa5afe517572
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: 87aca4918916020d1fedba54c0e232de408df2644a425d153be368313fdde40d96088feed6c4e5ab72aac89be5d07fef2ddf329a15109c5eb65df006bf2580d1
languageName: node
linkType: hard
"@babel/plugin-syntax-object-rest-spread@npm:^7.0.0, @babel/plugin-syntax-object-rest-spread@npm:^7.2.0, @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: fddcf581a57f77e80eb6b981b10658421bc321ba5f0a5b754118c6a92a5448f12a0c336f77b8abf734841e102e5126d69110a306eadb03ca3e1547cab31f5cbf
languageName: node
linkType: hard
"@babel/plugin-syntax-optional-catch-binding@npm:^7.0.0, @babel/plugin-syntax-optional-catch-binding@npm:^7.2.0, @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: 910d90e72bc90ea1ce698e89c1027fed8845212d5ab588e35ef91f13b93143845f94e2539d831dc8d8ededc14ec02f04f7bd6a8179edd43a326c784e7ed7f0b9
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: eef94d53a1453361553c1f98b68d17782861a04a392840341bc91780838dd4e695209c783631cf0de14c635758beafb6a3a65399846ffa4386bff90639347f30
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: edd56be6a4f6534561c2cc299700f9d148e5d645c9be4de1ccbb1e10c9c2d6e37ee565aed34dd66ac6c991430b5be0ecc3295187540c9aaed7151d2cc44323ce
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: a04400542a2affdb2d11e5eb1a795e0b759e3b1047aef87e6bdf31e6684b1e4806b3b50d377784b5cf6e027fe3201fbb2aabbb9d868daac8e3fe32382db93219
languageName: node
linkType: hard
"@babel/plugin-transform-arrow-functions@npm:^7.0.0, @babel/plugin-transform-arrow-functions@npm:^7.2.0, @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: 3c919224bc31ad957979a7ebe652dfa43fb8621c12fa21e033225eb28a15d05a39a5be961c3f4d24a15428662cd6bc7b0b88e268e7a4538968846f9ac12480ae
languageName: node
linkType: hard
"@babel/plugin-transform-async-to-generator@npm:^7.1.0, @babel/plugin-transform-async-to-generator@npm:^7.2.0, @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: 1061dc1ce6dc81bb16fd507d4b8e7485eb04117dfce44513b5595d1e71f75d24b7958a2aa249094b10e90b1b0c6015968eae463b4b73c0677dbd71bde58f1837
languageName: node
linkType: hard
"@babel/plugin-transform-block-scoped-functions@npm:^7.0.0, @babel/plugin-transform-block-scoped-functions@npm:^7.2.0, @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: 331a663120a7388859dc727e9e3cb1c16a9523eab5c4c82e69398ad3804ce86173b78dace88aa732d791f672814a71d02d3d58623ff7036980110a90df6e9050
languageName: node
linkType: hard
"@babel/plugin-transform-block-scoping@npm:^7.0.0, @babel/plugin-transform-block-scoping@npm:^7.2.0, @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: 097f45609bca7f2989c5dd40e00156e2137daa128b0630bf456e485b19922c8433e1b798f0bc6b13571627ade8b894d3d13447754e1ef00d2abeffe3d0d7aa29
languageName: node
linkType: hard
"@babel/plugin-transform-classes@npm:7.1.0":
version: 7.1.0
resolution: "@babel/plugin-transform-classes@npm:7.1.0"
dependencies:
"@babel/helper-annotate-as-pure": ^7.0.0
"@babel/helper-define-map": ^7.1.0
"@babel/helper-function-name": ^7.1.0
"@babel/helper-optimise-call-expression": ^7.0.0
"@babel/helper-plugin-utils": ^7.0.0
"@babel/helper-replace-supers": ^7.1.0
"@babel/helper-split-export-declaration": ^7.0.0
globals: ^11.1.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: f63a837fdd08f3d070c2a724b196268c59d632d93c138dbda60bc7faddf8408d48a436f4a37a2240855f463c41bcfa8f31c9c933503409224ad82b37e217291b
languageName: node
linkType: hard
"@babel/plugin-transform-classes@npm:7.2.2":
version: 7.2.2
resolution: "@babel/plugin-transform-classes@npm:7.2.2"
dependencies:
"@babel/helper-annotate-as-pure": ^7.0.0
"@babel/helper-define-map": ^7.1.0
"@babel/helper-function-name": ^7.1.0
"@babel/helper-optimise-call-expression": ^7.0.0
"@babel/helper-plugin-utils": ^7.0.0
"@babel/helper-replace-supers": ^7.1.0
"@babel/helper-split-export-declaration": ^7.0.0
globals: ^11.1.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: ca92be86506917f64e1620ce8f350063c5aea6f051d027ad371348f88c2579f7e64b794acf0ef66d67b3bb6c44e9b6eaa70c4c5aa23455188f94edd301c687b6
languageName: node
linkType: hard
"@babel/plugin-transform-classes@npm:^7.1.0, @babel/plugin-transform-classes@npm:^7.2.0, @babel/plugin-transform-classes@npm:^7.8.6":
version: 7.8.6
resolution: "@babel/plugin-transform-classes@npm:7.8.6"
dependencies:
"@babel/helper-annotate-as-pure": ^7.8.3
"@babel/helper-define-map": ^7.8.3
"@babel/helper-function-name": ^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
globals: ^11.1.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 19e67a73cdde6cdea56d9ac7e29db8bcefd2586201c0d3d73aa082d99d733c83055295cd526819cb386886183930fe4ba3afbbebd34d1dc1d8752d98c4f0297f
languageName: node
linkType: hard
"@babel/plugin-transform-computed-properties@npm:^7.0.0, @babel/plugin-transform-computed-properties@npm:^7.2.0, @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: 2f3b9497d0695de84b6d249ca890557ce94816823ff27fe6ad83ba94bcd1f3dfff0e8012dca32dd7bb2596133c447ca275b26f0dc61b0b29689cb8c53b40f383
languageName: node
linkType: hard
"@babel/plugin-transform-destructuring@npm:7.0.0":
version: 7.0.0
resolution: "@babel/plugin-transform-destructuring@npm:7.0.0"
dependencies:
"@babel/helper-plugin-utils": ^7.0.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 0f2c72345eb0b22533dd78f22635a4f50181a577cd180e29024b1f8e6dff91e4ab9db1d4a3847f92645f5fdaa28aa2a2883d9a9262ed21282d3b11caf50e7875
languageName: node
linkType: hard
"@babel/plugin-transform-destructuring@npm:7.3.2":
version: 7.3.2
resolution: "@babel/plugin-transform-destructuring@npm:7.3.2"
dependencies:
"@babel/helper-plugin-utils": ^7.0.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: a51dc8c1323a299296c2eb2de3a3e6b96fc33094a19266a38bec49cf55cd3a6644d7f9e1b280a82492d911c95f438e7be923648ff8ea8dd32488c4512372cf87
languageName: node
linkType: hard
"@babel/plugin-transform-destructuring@npm:^7.0.0, @babel/plugin-transform-destructuring@npm:^7.2.0, @babel/plugin-transform-destructuring@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-transform-destructuring@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: bf6b4464fde86a75b8af4f995f99094e8647f43e378942652c377bbb9c77871e9cf1a8d1630da39e171f3d7e54dd3312c5263784b00c396913d1df3227270e24
languageName: node
linkType: hard
"@babel/plugin-transform-dotall-regex@npm:^7.0.0, @babel/plugin-transform-dotall-regex@npm:^7.2.0, @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: 187ff4bfd29791d39a14cdafc53e2649479918d2cea04235e5baf64ded8d934f9f17015d34fe2889a25c22b262e06fd7a622a0d02040acd87a9b1926556a7aa7
languageName: node
linkType: hard
"@babel/plugin-transform-duplicate-keys@npm:^7.0.0, @babel/plugin-transform-duplicate-keys@npm:^7.2.0, @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: 61af53e4d4cbfbbcadf8449ce24b8a0ff9823d9376277139a438ed496bd82cd931e1332f943e0c42c230dbbb321193d1a62ea5e195ecac4582b332acd1bd81bd
languageName: node
linkType: hard
"@babel/plugin-transform-exponentiation-operator@npm:^7.1.0, @babel/plugin-transform-exponentiation-operator@npm:^7.2.0, @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: 2584825aba3b49d5e7b9f7d25fb41796a3f2045fc0859d43e60549c13414db9725956d3825fa483bcb9263a375ff7163a49e2199909954f3cd402e35e582db85
languageName: node
linkType: hard
"@babel/plugin-transform-flow-strip-types@npm:7.0.0":
version: 7.0.0
resolution: "@babel/plugin-transform-flow-strip-types@npm:7.0.0"
dependencies:
"@babel/helper-plugin-utils": ^7.0.0
"@babel/plugin-syntax-flow": ^7.0.0