-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyarn.lock
10870 lines (9765 loc) · 378 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: 3
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.5.5":
version: 7.5.5
resolution: "@babel/code-frame@npm:7.5.5"
dependencies:
"@babel/highlight": "npm:^7.0.0"
checksum: 5e2efff7d68baedf70bb12f89f2177bbb214044ab8a40f3a6cc2dcb0db9dba24bf2ad1031426b46c100235de03fe0303f1c4ff86fff3ad3ccefb8eff94bcb843
languageName: node
linkType: hard
"@babel/core@npm:^7.1.0, @babel/core@npm:^7.5.5":
version: 7.5.5
resolution: "@babel/core@npm:7.5.5"
dependencies:
"@babel/code-frame": "npm:^7.5.5"
"@babel/generator": "npm:^7.5.5"
"@babel/helpers": "npm:^7.5.5"
"@babel/parser": "npm:^7.5.5"
"@babel/template": "npm:^7.4.4"
"@babel/traverse": "npm:^7.5.5"
"@babel/types": "npm:^7.5.5"
convert-source-map: "npm:^1.1.0"
debug: "npm:^4.1.0"
json5: "npm:^2.1.0"
lodash: "npm:^4.17.13"
resolve: "npm:^1.3.2"
semver: "npm:^5.4.1"
source-map: "npm:^0.5.0"
checksum: 3c8fccef0c482b6a3a13b52e3f8f46a8da2ac938550e3b460f7db30a0dab3007fb9ae9c09e9723aa1eaec9cc3a3f46f34d58402e31b2190fd1f7c94352d67be0
languageName: node
linkType: hard
"@babel/generator@npm:^7.4.0, @babel/generator@npm:^7.5.5":
version: 7.5.5
resolution: "@babel/generator@npm:7.5.5"
dependencies:
"@babel/types": "npm:^7.5.5"
jsesc: "npm:^2.5.1"
lodash: "npm:^4.17.13"
source-map: "npm:^0.5.0"
trim-right: "npm:^1.0.1"
checksum: 6c8846cf167083bff094c03a84ef1dce02032b726b71270395837d7288921f1adc671c3d572513cdff22736f9c686f5b53a9c058f1ad4b5d9523e78f1edb95c7
languageName: node
linkType: hard
"@babel/helper-annotate-as-pure@npm:^7.0.0":
version: 7.0.0
resolution: "@babel/helper-annotate-as-pure@npm:7.0.0"
dependencies:
"@babel/types": "npm:^7.0.0"
checksum: 7d302a539f2a11046e2de5198dc213ddf7eb5f081697afcc1a064bb17930bf4b3543e8f25c52f0acac5096753297c773c775d2e45e83d0d85edda604485b604b
languageName: node
linkType: hard
"@babel/helper-builder-binary-assignment-operator-visitor@npm:^7.1.0":
version: 7.1.0
resolution: "@babel/helper-builder-binary-assignment-operator-visitor@npm:7.1.0"
dependencies:
"@babel/helper-explode-assignable-expression": "npm:^7.1.0"
"@babel/types": "npm:^7.0.0"
checksum: 66c73af76979f24a6158f560d11e6b24a7450f644c9530dea6f0e82c0e87e76d335ff38dd9397abba5ab27f30a079b416792e615233d54254d318e36b0b513a2
languageName: node
linkType: hard
"@babel/helper-call-delegate@npm:^7.4.4":
version: 7.4.4
resolution: "@babel/helper-call-delegate@npm:7.4.4"
dependencies:
"@babel/helper-hoist-variables": "npm:^7.4.4"
"@babel/traverse": "npm:^7.4.4"
"@babel/types": "npm:^7.4.4"
checksum: 4994d56e56dabda778151a13f72887084cb1715904dd4b975b826d67e38e3e3e87f1ebec3e07cdd9c1f1affc0b293a71fdaf4ee8e8fe6880d8cde664164b8445
languageName: node
linkType: hard
"@babel/helper-define-map@npm:^7.5.5":
version: 7.5.5
resolution: "@babel/helper-define-map@npm:7.5.5"
dependencies:
"@babel/helper-function-name": "npm:^7.1.0"
"@babel/types": "npm:^7.5.5"
lodash: "npm:^4.17.13"
checksum: 5b71cf58cd3f2d3a73346bf8280c14b77ef10318a90d501957456b3dae4a301413f7bfd2940a77f55c01ae4b40f21d35cc56b88b8f42380904028a4e5609e2f3
languageName: node
linkType: hard
"@babel/helper-explode-assignable-expression@npm:^7.1.0":
version: 7.1.0
resolution: "@babel/helper-explode-assignable-expression@npm:7.1.0"
dependencies:
"@babel/traverse": "npm:^7.1.0"
"@babel/types": "npm:^7.0.0"
checksum: e0ba6234371d50ad97ebbb9e3787c19dfd5361e67f4c02a53a2a1406734a80cda61160bb56c2a8f9b0dc12a9ea2df0070d6fd82bee1405572a82ee57d4a44d97
languageName: node
linkType: hard
"@babel/helper-function-name@npm:^7.1.0":
version: 7.1.0
resolution: "@babel/helper-function-name@npm:7.1.0"
dependencies:
"@babel/helper-get-function-arity": "npm:^7.0.0"
"@babel/template": "npm:^7.1.0"
"@babel/types": "npm:^7.0.0"
checksum: a284f886b48b2f946f650e52959bf51ba821d6120c1d97b6f2b22edc8736b9faba27002ebe8fc876d7cbf98a685b1e9149a6f71c8bc6d51ce0c8f22239cf24ea
languageName: node
linkType: hard
"@babel/helper-get-function-arity@npm:^7.0.0":
version: 7.0.0
resolution: "@babel/helper-get-function-arity@npm:7.0.0"
dependencies:
"@babel/types": "npm:^7.0.0"
checksum: 83c0ada3301bc838e191a6bce03edf2c289e81356d5b00149e8dc3a74ae96b91e777eae7af7cee390f8cf8a4dc902342ddcb668f6d872f28d1541c014f8129a6
languageName: node
linkType: hard
"@babel/helper-hoist-variables@npm:^7.4.4":
version: 7.4.4
resolution: "@babel/helper-hoist-variables@npm:7.4.4"
dependencies:
"@babel/types": "npm:^7.4.4"
checksum: 2ec9e2214fc6fa42996346ed04bdf5c40b4b4115f405a58054a09dd93b2b45e4962ad655fb31b73bcf2cefda78d96b98b70872965953b4a37fb806519052c148
languageName: node
linkType: hard
"@babel/helper-member-expression-to-functions@npm:^7.5.5":
version: 7.5.5
resolution: "@babel/helper-member-expression-to-functions@npm:7.5.5"
dependencies:
"@babel/types": "npm:^7.5.5"
checksum: 7b5cc049a2549612451cb5cdf85b09f5110d48dc79f032d29a5586e7948f0a7ddd6131cf1e8e9be282665667dc61a37b73c40bd2023ecb269111a565fc524d0c
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^7.0.0":
version: 7.0.0
resolution: "@babel/helper-module-imports@npm:7.0.0"
dependencies:
"@babel/types": "npm:^7.0.0"
checksum: e2555076fc7215042feb287537b098d97eb937e465d2b144da8c78abf2c71684bab563384966cf479300a79bf4743a19cff29337b70ad4123534f911ebee35e6
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.1.0, @babel/helper-module-transforms@npm:^7.4.4":
version: 7.5.5
resolution: "@babel/helper-module-transforms@npm:7.5.5"
dependencies:
"@babel/helper-module-imports": "npm:^7.0.0"
"@babel/helper-simple-access": "npm:^7.1.0"
"@babel/helper-split-export-declaration": "npm:^7.4.4"
"@babel/template": "npm:^7.4.4"
"@babel/types": "npm:^7.5.5"
lodash: "npm:^4.17.13"
checksum: 66c2a1a955d03d7e43a8b8d7bd0555ed7e9cb67ec9b97404a5fdc3724f45ab56be279be1a9824d1711fe88e6f2dab962b78d09292479ec95458468cd1bf3b843
languageName: node
linkType: hard
"@babel/helper-optimise-call-expression@npm:^7.0.0":
version: 7.0.0
resolution: "@babel/helper-optimise-call-expression@npm:7.0.0"
dependencies:
"@babel/types": "npm:^7.0.0"
checksum: 71a38b82688699acfcd2cab2d39bc4d4b9dd5221f6e510b4f07116c584a2f8a14c22fcf6d7cb7de89c081db5d5b91a8c770df45f7b09ddb8fb7f6730ec08ea65
languageName: node
linkType: hard
"@babel/helper-plugin-utils@npm:^7.0.0":
version: 7.0.0
resolution: "@babel/helper-plugin-utils@npm:7.0.0"
checksum: 6bf7e9c2b050ecc31b549d026dc1a6665cbdf5168bd4007d2e0cd09c9c517cb0eb6f5f71d9882dc444a0b2c77177c41a83ca016f2b34902d25631dee0fa54a0f
languageName: node
linkType: hard
"@babel/helper-regex@npm:^7.0.0, @babel/helper-regex@npm:^7.4.4":
version: 7.5.5
resolution: "@babel/helper-regex@npm:7.5.5"
dependencies:
lodash: "npm:^4.17.13"
checksum: 8b6a09e7919f39e9e838f764853afc930bfd35e4277255154d2eb95debf5caf37e642eea7d2f1d91a74996fdc08574f0a9a92377e6d60de68c36d9d3b5d7999c
languageName: node
linkType: hard
"@babel/helper-remap-async-to-generator@npm:^7.1.0":
version: 7.1.0
resolution: "@babel/helper-remap-async-to-generator@npm:7.1.0"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^7.0.0"
"@babel/helper-wrap-function": "npm:^7.1.0"
"@babel/template": "npm:^7.1.0"
"@babel/traverse": "npm:^7.1.0"
"@babel/types": "npm:^7.0.0"
checksum: 1d053e118d2dfdfe5088e7cdd330143add69ced6405c0b6767efeb914fb5aab409845b66587afe71eb07fd07768fae6f9d55e0a1311958be5fbebfa72e19a15c
languageName: node
linkType: hard
"@babel/helper-replace-supers@npm:^7.5.5":
version: 7.5.5
resolution: "@babel/helper-replace-supers@npm:7.5.5"
dependencies:
"@babel/helper-member-expression-to-functions": "npm:^7.5.5"
"@babel/helper-optimise-call-expression": "npm:^7.0.0"
"@babel/traverse": "npm:^7.5.5"
"@babel/types": "npm:^7.5.5"
checksum: 2ed57296fcb8cfc0ade1f082cc0f95765bbe93f69edcc1e8a7546067bbe9f046b1437a4995b7733d32df5cda1cd7795a84fada32856d12fff58ae1b6ed71d9c5
languageName: node
linkType: hard
"@babel/helper-simple-access@npm:^7.1.0":
version: 7.1.0
resolution: "@babel/helper-simple-access@npm:7.1.0"
dependencies:
"@babel/template": "npm:^7.1.0"
"@babel/types": "npm:^7.0.0"
checksum: 5f7bcaf217577e67b995a897c6a6788f7b4ffaf51b254310a6c04e1acf06996d0ba847b2e6d9e16699bde2d319f8c463cb2ba911b49f1e2a383142cc473fd7ca
languageName: node
linkType: hard
"@babel/helper-split-export-declaration@npm:^7.4.4":
version: 7.4.4
resolution: "@babel/helper-split-export-declaration@npm:7.4.4"
dependencies:
"@babel/types": "npm:^7.4.4"
checksum: e10756148473fabed03360f9ba48fe96bd48e8b0faf79cd532d997af9ba6de046af67eb052d692540a88b88844e13cd83bc8126f4caf7e9c8b759ef34c871af4
languageName: node
linkType: hard
"@babel/helper-wrap-function@npm:^7.1.0":
version: 7.2.0
resolution: "@babel/helper-wrap-function@npm:7.2.0"
dependencies:
"@babel/helper-function-name": "npm:^7.1.0"
"@babel/template": "npm:^7.1.0"
"@babel/traverse": "npm:^7.1.0"
"@babel/types": "npm:^7.2.0"
checksum: bc50e8470d3eef19db4ab50091912cdbb05563d5cf05fc47a99576d179df254fc0943bfe24d0ec7e04662d53563c99464d512510e5a53ba75469a4a1e1d21d2b
languageName: node
linkType: hard
"@babel/helpers@npm:^7.5.5":
version: 7.5.5
resolution: "@babel/helpers@npm:7.5.5"
dependencies:
"@babel/template": "npm:^7.4.4"
"@babel/traverse": "npm:^7.5.5"
"@babel/types": "npm:^7.5.5"
checksum: d6bd2c5463bc1646c502cc2bddce511dcae5f31169d1fd11db6060cef2a5e4ee0885486549af6fb2c241e593eb2a0298f0a74670d4f6c7a30f0e1a89ceb051b7
languageName: node
linkType: hard
"@babel/highlight@npm:^7.0.0":
version: 7.5.0
resolution: "@babel/highlight@npm:7.5.0"
dependencies:
chalk: "npm:^2.0.0"
esutils: "npm:^2.0.2"
js-tokens: "npm:^4.0.0"
checksum: 45e7d2fd95fd31b06f196c9d82b6f6daa565dc14c65fa9138e4f2570cb8c46e2205d9f9ecc6157ffc47f3d82e316bd967989e74be9726d88707349feb4f74b1a
languageName: node
linkType: hard
"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.4.3, @babel/parser@npm:^7.4.4, @babel/parser@npm:^7.5.5":
version: 7.5.5
resolution: "@babel/parser@npm:7.5.5"
bin:
parser: ./bin/babel-parser.js
checksum: fd21fb2f88718855e98d885fc23b1314a1e42de06fd1982032774e173f82ad8ffbb1d3b799e7b470204b57129dc3c4063829ee1d7639ca4f7da4a844ba4e73ea
languageName: node
linkType: hard
"@babel/plugin-proposal-async-generator-functions@npm:^7.2.0":
version: 7.2.0
resolution: "@babel/plugin-proposal-async-generator-functions@npm:7.2.0"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.0.0"
"@babel/helper-remap-async-to-generator": "npm:^7.1.0"
"@babel/plugin-syntax-async-generators": "npm:^7.2.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 9c338a2d4ce8784b2dc3430416be771ee127a027f24b9e4d7c1713a87ba9d593766848f69bb86d4777bff185c8162ea0475f58ebd94d548c8abb11bbbb95209f
languageName: node
linkType: hard
"@babel/plugin-proposal-dynamic-import@npm:^7.5.0":
version: 7.5.0
resolution: "@babel/plugin-proposal-dynamic-import@npm:7.5.0"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.0.0"
"@babel/plugin-syntax-dynamic-import": "npm:^7.2.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 0ff35926d949e11be26cea46087f263244c5122bd5c81d3193af30be1db0d81a8df6c5918a680bca950024d115ae39fb8c1e3d925df1bf15dec207ae57b39d9d
languageName: node
linkType: hard
"@babel/plugin-proposal-json-strings@npm:^7.2.0":
version: 7.2.0
resolution: "@babel/plugin-proposal-json-strings@npm:7.2.0"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.0.0"
"@babel/plugin-syntax-json-strings": "npm:^7.2.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 564d58f49aca0958ae1530e3f7f7b248531eead6a9dc659f0fdb3258fd496b55cdf2f07a01c9ef91fe5613e048a4e647e11bddf708f4c6963a6915ca0890a960
languageName: node
linkType: hard
"@babel/plugin-proposal-object-rest-spread@npm:^7.5.5":
version: 7.5.5
resolution: "@babel/plugin-proposal-object-rest-spread@npm:7.5.5"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.0.0"
"@babel/plugin-syntax-object-rest-spread": "npm:^7.2.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: e908b02cee0cf081d20bbdc0e1cfdd360540b197ae3785752ccfa5a2d5fdaad77f25c697e8b058b94a5f467a9254e208eaf83d03e8b4c113b3b9b30683501628
languageName: node
linkType: hard
"@babel/plugin-proposal-optional-catch-binding@npm:^7.2.0":
version: 7.2.0
resolution: "@babel/plugin-proposal-optional-catch-binding@npm:7.2.0"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.0.0"
"@babel/plugin-syntax-optional-catch-binding": "npm:^7.2.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 7d0c25119e4b67c057f55a899d058e04eb7e4bb14b47e11faab62e25c0fdfce436a14787ae886933e57a42fb98d11368ad81ac2cf0ab3621efc51871756ffc25
languageName: node
linkType: hard
"@babel/plugin-proposal-unicode-property-regex@npm:^7.4.4":
version: 7.4.4
resolution: "@babel/plugin-proposal-unicode-property-regex@npm:7.4.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.0.0"
"@babel/helper-regex": "npm:^7.4.4"
regexpu-core: "npm:^4.5.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: d655a9b2f57f84c010c7281c38932729a35c61d3fca32072279c69ab103bfff05ceca4c3a119b1933191a0d5981f3e64b14c94231286a84949cfc1416b388df4
languageName: node
linkType: hard
"@babel/plugin-syntax-async-generators@npm:^7.2.0":
version: 7.2.0
resolution: "@babel/plugin-syntax-async-generators@npm:7.2.0"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.0.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: e834ba99de38b0b108a56834af7ded60124bc0aa5514f000e778cea12e0a7bdad14b4424b9a626e0988a0046c18d2a05c18a363f18b909d36376c84c7ab19994
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": "npm:^7.0.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: ca8cafa29693ef6ad199f6a6f4be5c8df71fb6bd2c61209ea48e10d5eed4425da5adc066375d597f290b4f25b15e0c24b5cff4dd343ff9590d05c7a9b1345eec
languageName: node
linkType: hard
"@babel/plugin-syntax-json-strings@npm:^7.2.0":
version: 7.2.0
resolution: "@babel/plugin-syntax-json-strings@npm:7.2.0"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.0.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 7cd83bddf5e16f0fb151bbfb118d91f6cc4ae29de369e9d15fa31df336b4fdc37b213e1ed7d7f541934d0dd0afc7c4dca0d4d6b10fe54b65e26038aa3a2d9aef
languageName: node
linkType: hard
"@babel/plugin-syntax-object-rest-spread@npm:^7.0.0, @babel/plugin-syntax-object-rest-spread@npm:^7.2.0":
version: 7.2.0
resolution: "@babel/plugin-syntax-object-rest-spread@npm:7.2.0"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.0.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 48137497b3175d227c5979cf25d7d9b0e4d623cddbbf49153fd6535b30755a224a14955586fd399f2141126a5b664018e71af2458516dc3b3be521b01c97f796
languageName: node
linkType: hard
"@babel/plugin-syntax-optional-catch-binding@npm:^7.2.0":
version: 7.2.0
resolution: "@babel/plugin-syntax-optional-catch-binding@npm:7.2.0"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.0.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: e3cee0cd71861d4ccfc7f9751b8ae72aac4d1adeb85e845ab7fdf5747638d078404485f50ad23f444abc17f0107e2eee38f32cee39850bed8beaf6b7361d4e1f
languageName: node
linkType: hard
"@babel/plugin-transform-arrow-functions@npm:^7.2.0":
version: 7.2.0
resolution: "@babel/plugin-transform-arrow-functions@npm:7.2.0"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.0.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 1f1ac48f6bcd7ed93ecaa4febc6ab682caeb979c81293f22933a563dc649f021c36b705c32acca3d41e0595b4c549c8948b45f878cc67bdc9ff8fffbfa7bd982
languageName: node
linkType: hard
"@babel/plugin-transform-async-to-generator@npm:^7.5.0":
version: 7.5.0
resolution: "@babel/plugin-transform-async-to-generator@npm:7.5.0"
dependencies:
"@babel/helper-module-imports": "npm:^7.0.0"
"@babel/helper-plugin-utils": "npm:^7.0.0"
"@babel/helper-remap-async-to-generator": "npm:^7.1.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 20a3774ba835c722bd7049391e444353120f8c6d7a4c595d7f2c03407da8a255f19f469eace0d0f4cadef657b13cc0db6362aef870ecef8824132003d0abbc6e
languageName: node
linkType: hard
"@babel/plugin-transform-block-scoped-functions@npm:^7.2.0":
version: 7.2.0
resolution: "@babel/plugin-transform-block-scoped-functions@npm:7.2.0"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.0.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 4b0c95721bd985b5596297d11d309ff1be122ef897798fbf3c04711633a56ea82ca15b2617fbcbae7c7380f05654087df4649f2fe11968d38413547c276fd5b4
languageName: node
linkType: hard
"@babel/plugin-transform-block-scoping@npm:^7.5.5":
version: 7.5.5
resolution: "@babel/plugin-transform-block-scoping@npm:7.5.5"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.0.0"
lodash: "npm:^4.17.13"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2c91566b30f62462022a04aacf220f0f39f2c8bcd0b0138f250165948d70a29d2430bca9d210ce1158ac1870ea6fac7861216e675c32394108beca6633c531d8
languageName: node
linkType: hard
"@babel/plugin-transform-classes@npm:^7.5.5":
version: 7.5.5
resolution: "@babel/plugin-transform-classes@npm:7.5.5"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^7.0.0"
"@babel/helper-define-map": "npm:^7.5.5"
"@babel/helper-function-name": "npm:^7.1.0"
"@babel/helper-optimise-call-expression": "npm:^7.0.0"
"@babel/helper-plugin-utils": "npm:^7.0.0"
"@babel/helper-replace-supers": "npm:^7.5.5"
"@babel/helper-split-export-declaration": "npm:^7.4.4"
globals: "npm:^11.1.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 56495db36bdc10b174bdd03411a6f88de49cb565b21ab8369bef9340701f0a3cd30620c3b1a3c762ed8750bd9e17164ef28db629e6ace046f322c9a00c843da8
languageName: node
linkType: hard
"@babel/plugin-transform-computed-properties@npm:^7.2.0":
version: 7.2.0
resolution: "@babel/plugin-transform-computed-properties@npm:7.2.0"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.0.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 31df38d209a8e5bb1ef32a0d4c8e00d9e9e43704af7ed9baa09bf20532af0047a619f3418386460e1200523a89d815ba6c32de24cd30369e026a56f7d83b6d23
languageName: node
linkType: hard
"@babel/plugin-transform-destructuring@npm:^7.5.0":
version: 7.5.0
resolution: "@babel/plugin-transform-destructuring@npm:7.5.0"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.0.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 68cd0ffd34a62b3e376387795626875e9fd86578053a1f49b1b2c3f9b97db2c3ac47cf7a534d2d4da64e5e48294d2d408b2a07c34c8128a35b1aad4ebbed8c8a
languageName: node
linkType: hard
"@babel/plugin-transform-dotall-regex@npm:^7.4.4":
version: 7.4.4
resolution: "@babel/plugin-transform-dotall-regex@npm:7.4.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.0.0"
"@babel/helper-regex": "npm:^7.4.4"
regexpu-core: "npm:^4.5.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: a1053a94a2d666581f1c7020ec9cad832efa28756ee987402e5c9f0e57f90af74406f1d3a01af41852a941cb61e0e08adb1c7fa050e920e355284a4c6eb35ffb
languageName: node
linkType: hard
"@babel/plugin-transform-duplicate-keys@npm:^7.5.0":
version: 7.5.0
resolution: "@babel/plugin-transform-duplicate-keys@npm:7.5.0"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.0.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: cbf17226aa0864acba0643bf8e27450aae73cad3734987f99ab3c9def1c22e2bd6ff87ebbb321d5a2c85c54c110be601586029ee2a01539d01f402a714dd275a
languageName: node
linkType: hard
"@babel/plugin-transform-exponentiation-operator@npm:^7.2.0":
version: 7.2.0
resolution: "@babel/plugin-transform-exponentiation-operator@npm:7.2.0"
dependencies:
"@babel/helper-builder-binary-assignment-operator-visitor": "npm:^7.1.0"
"@babel/helper-plugin-utils": "npm:^7.0.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: b258dac4bed77f8dc0421599f4ec2dae038443c1bdcfeb4d1b5dd5a29cc008cd0792f7948e9cf48dc80f5aaebf5cc49e62f4f0510f29481b6156a8a50abecabf
languageName: node
linkType: hard
"@babel/plugin-transform-for-of@npm:^7.4.4":
version: 7.4.4
resolution: "@babel/plugin-transform-for-of@npm:7.4.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.0.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: f7ca696ed0b263231c250cee9a0309ae541d572c9c5b48c480ddb99a34914937dfa5c3d74c1930b419884b65e4ee915bbbb76b7009abf69fd121621991ee8167
languageName: node
linkType: hard
"@babel/plugin-transform-function-name@npm:^7.4.4":
version: 7.4.4
resolution: "@babel/plugin-transform-function-name@npm:7.4.4"
dependencies:
"@babel/helper-function-name": "npm:^7.1.0"
"@babel/helper-plugin-utils": "npm:^7.0.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2e44c63a9311de177f2e922301ec5f92132aa8d3ed9a06ca03133468c82c3d5e365e4f2824eb1f462a0d6672d480b3ee011451c0f4d863fcae599868a4f91fe4
languageName: node
linkType: hard
"@babel/plugin-transform-literals@npm:^7.2.0":
version: 7.2.0
resolution: "@babel/plugin-transform-literals@npm:7.2.0"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.0.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: f91585a2ee28280a62a453728c312721057e08daa076bf555e8fb4c401c63ac7f4bfa4b031b4bf05860974d9aae7ac6d8bd4ed7e03eebea3d30b19e8c84a31d7
languageName: node
linkType: hard
"@babel/plugin-transform-member-expression-literals@npm:^7.2.0":
version: 7.2.0
resolution: "@babel/plugin-transform-member-expression-literals@npm:7.2.0"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.0.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 111df2e5dad15980c526b90312eb363b11eb82dfb897a9421dc5885474d0adc826fdb72146c58231e3bddaad0d7c54bfb343c4d376a5d70fc548d38e7627d854
languageName: node
linkType: hard
"@babel/plugin-transform-modules-amd@npm:^7.5.0":
version: 7.5.0
resolution: "@babel/plugin-transform-modules-amd@npm:7.5.0"
dependencies:
"@babel/helper-module-transforms": "npm:^7.1.0"
"@babel/helper-plugin-utils": "npm:^7.0.0"
babel-plugin-dynamic-import-node: "npm:^2.3.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 415d01a0ba687e39fd368180c5c905d6268bc2819f1b1036266852d6675c8899135d7e944ff8a67241e520f50c3b04961dd24597ff2ce1f8bf1dc9e0cffd305e
languageName: node
linkType: hard
"@babel/plugin-transform-modules-commonjs@npm:^7.5.0":
version: 7.5.0
resolution: "@babel/plugin-transform-modules-commonjs@npm:7.5.0"
dependencies:
"@babel/helper-module-transforms": "npm:^7.4.4"
"@babel/helper-plugin-utils": "npm:^7.0.0"
"@babel/helper-simple-access": "npm:^7.1.0"
babel-plugin-dynamic-import-node: "npm:^2.3.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 483a9a4f8876b7c0243aeeeac845cfd344b76cb16befcd120ecfce5df55e259b1a0a6adc6a30762d378a626071e68df6f178e4539fb640fa1a2007d1753683f2
languageName: node
linkType: hard
"@babel/plugin-transform-modules-systemjs@npm:^7.5.0":
version: 7.5.0
resolution: "@babel/plugin-transform-modules-systemjs@npm:7.5.0"
dependencies:
"@babel/helper-hoist-variables": "npm:^7.4.4"
"@babel/helper-plugin-utils": "npm:^7.0.0"
babel-plugin-dynamic-import-node: "npm:^2.3.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: ce9ce5d0722394a20cb109a42028d440ffd5bff9c2c0ab8251a1eda93417fffdd2ad813a7d7e7a82d017bef08c54de5c6809d75d4f42b32c1563ad19501bce13
languageName: node
linkType: hard
"@babel/plugin-transform-modules-umd@npm:^7.2.0":
version: 7.2.0
resolution: "@babel/plugin-transform-modules-umd@npm:7.2.0"
dependencies:
"@babel/helper-module-transforms": "npm:^7.1.0"
"@babel/helper-plugin-utils": "npm:^7.0.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: bce708c3752e7d7eecbdc0024de2a5970d3103cec3f11a11588aa1898ff4aa72804823f13eee9c63a9c6c7bceb8e1ccb92b4492bbe7a1b9e7c696ec5a1fecbd1
languageName: node
linkType: hard
"@babel/plugin-transform-named-capturing-groups-regex@npm:^7.4.5":
version: 7.4.5
resolution: "@babel/plugin-transform-named-capturing-groups-regex@npm:7.4.5"
dependencies:
regexp-tree: "npm:^0.1.6"
peerDependencies:
"@babel/core": ^7.0.0
checksum: c786d0a62838aca15e2b556159a0b0608508e153f81b37b652a94f2c9fc495de081759538dee448230bcff94db5f7ce08a9609d107bbf92501e3b159c0762fb1
languageName: node
linkType: hard
"@babel/plugin-transform-new-target@npm:^7.4.4":
version: 7.4.4
resolution: "@babel/plugin-transform-new-target@npm:7.4.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.0.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: d82973e1494409d6e14b885aff6b44f75a760e6642869066dfbd20c8adc14e967fec99c02c09da0f8fbd724271f8157224502ee72e710eff3c0336ed79fe6eac
languageName: node
linkType: hard
"@babel/plugin-transform-object-super@npm:^7.5.5":
version: 7.5.5
resolution: "@babel/plugin-transform-object-super@npm:7.5.5"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.0.0"
"@babel/helper-replace-supers": "npm:^7.5.5"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 1b8f4ed4ed4d35a01b6429d9f7cc48ec89625bfab52ef22dc33b72b36d23707503bb1512921480de6ef12726fa79ac6bc45c3eaba774db8a78857af45bc1fac1
languageName: node
linkType: hard
"@babel/plugin-transform-parameters@npm:^7.4.4":
version: 7.4.4
resolution: "@babel/plugin-transform-parameters@npm:7.4.4"
dependencies:
"@babel/helper-call-delegate": "npm:^7.4.4"
"@babel/helper-get-function-arity": "npm:^7.0.0"
"@babel/helper-plugin-utils": "npm:^7.0.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 5785cbde286340fe5dd791a17961009a20493af1647f468e23bc404f5a274d7861d2f2fbb6aa38b58a0551fd92b1846098df76c3e7dfd080923e66fff7bd6771
languageName: node
linkType: hard
"@babel/plugin-transform-property-literals@npm:^7.2.0":
version: 7.2.0
resolution: "@babel/plugin-transform-property-literals@npm:7.2.0"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.0.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 83cbff3dbffd57d5b2a0a7ad7075e29a569f95e78a821153988afadfbceda146052d2543b990c0100fa114fb3126b1006229087efaf278874ef2ecd0463a75cb
languageName: node
linkType: hard
"@babel/plugin-transform-regenerator@npm:^7.4.5":
version: 7.4.5
resolution: "@babel/plugin-transform-regenerator@npm:7.4.5"
dependencies:
regenerator-transform: "npm:^0.14.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 4139c3fc7205d96ae39245b784e0098347fbf87882006c6065579f2cca4b0a513670833e942984ba0d0944233bbfb3599dedaa191946e91b5b8f3fbd78e859ab
languageName: node
linkType: hard
"@babel/plugin-transform-reserved-words@npm:^7.2.0":
version: 7.2.0
resolution: "@babel/plugin-transform-reserved-words@npm:7.2.0"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.0.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 17a501d9ec6f00431927699b373871f1b0baa3aad0df29f7a920e8151e69b1a81e5ca1bfada78f1a6e99e1c3134d791fe89b24c43b6c50a76c5e344ca9c62b94
languageName: node
linkType: hard
"@babel/plugin-transform-shorthand-properties@npm:^7.2.0":
version: 7.2.0
resolution: "@babel/plugin-transform-shorthand-properties@npm:7.2.0"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.0.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 403efc16cdacfd589e60651e8e4c0c24fa61d18a19460ebc99ac16332012b9a537eff022e4ec148d8c54b6b89a19a5113dd01e996f4b11fdc3a12425fd714617
languageName: node
linkType: hard
"@babel/plugin-transform-spread@npm:^7.2.0":
version: 7.2.2
resolution: "@babel/plugin-transform-spread@npm:7.2.2"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.0.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 52e463275b9b57f81652eff524ee0157bed14c1fdb0db2fda78a286c93d7a12c115fcd1f913471a906673107c8acfd9ee7c06a80a774bf35ec5bd6ba2e051805
languageName: node
linkType: hard
"@babel/plugin-transform-sticky-regex@npm:^7.2.0":
version: 7.2.0
resolution: "@babel/plugin-transform-sticky-regex@npm:7.2.0"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.0.0"
"@babel/helper-regex": "npm:^7.0.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: d51387bb5eb0b5e09273fcffe1c2b1a41a9e06b20204827bae9491ccd5983f58424ff07490331274af6b7c05ebe48459af70aa7f3fd73c6e07e6ffbefd3c4edb
languageName: node
linkType: hard
"@babel/plugin-transform-template-literals@npm:^7.4.4":
version: 7.4.4
resolution: "@babel/plugin-transform-template-literals@npm:7.4.4"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^7.0.0"
"@babel/helper-plugin-utils": "npm:^7.0.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 88db6ad9df2d63a9bc3d378a029a1d6c868797401c2669c61cbf64feaa6fa24ab13bbab70d4f45ca01181ac08fc5228af07189b6f407bae2a860beced2c8e34b
languageName: node
linkType: hard
"@babel/plugin-transform-typeof-symbol@npm:^7.2.0":
version: 7.2.0
resolution: "@babel/plugin-transform-typeof-symbol@npm:7.2.0"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.0.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2c9044cb4a88ba8c3d5d526894f8bb70ec4c102cf1d2483af17ec6a56da0c6325c8456663aee9e779b9b85707193b17ec5f30843e2ced612e6881b9afe9be42a
languageName: node
linkType: hard
"@babel/plugin-transform-unicode-regex@npm:^7.4.4":
version: 7.4.4
resolution: "@babel/plugin-transform-unicode-regex@npm:7.4.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.0.0"
"@babel/helper-regex": "npm:^7.4.4"
regexpu-core: "npm:^4.5.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: b325af7b5298cebcd370aeb6cf3272e9d6c3376faaf750089bda8ac5121ff0a858147a96480bdb2564e793cb40750ab8f125fdce8bf15bf831de31206856da86
languageName: node
linkType: hard
"@babel/preset-env@npm:^7.5.5":
version: 7.5.5
resolution: "@babel/preset-env@npm:7.5.5"
dependencies:
"@babel/helper-module-imports": "npm:^7.0.0"
"@babel/helper-plugin-utils": "npm:^7.0.0"
"@babel/plugin-proposal-async-generator-functions": "npm:^7.2.0"
"@babel/plugin-proposal-dynamic-import": "npm:^7.5.0"
"@babel/plugin-proposal-json-strings": "npm:^7.2.0"
"@babel/plugin-proposal-object-rest-spread": "npm:^7.5.5"
"@babel/plugin-proposal-optional-catch-binding": "npm:^7.2.0"
"@babel/plugin-proposal-unicode-property-regex": "npm:^7.4.4"
"@babel/plugin-syntax-async-generators": "npm:^7.2.0"
"@babel/plugin-syntax-dynamic-import": "npm:^7.2.0"
"@babel/plugin-syntax-json-strings": "npm:^7.2.0"
"@babel/plugin-syntax-object-rest-spread": "npm:^7.2.0"
"@babel/plugin-syntax-optional-catch-binding": "npm:^7.2.0"
"@babel/plugin-transform-arrow-functions": "npm:^7.2.0"
"@babel/plugin-transform-async-to-generator": "npm:^7.5.0"
"@babel/plugin-transform-block-scoped-functions": "npm:^7.2.0"
"@babel/plugin-transform-block-scoping": "npm:^7.5.5"
"@babel/plugin-transform-classes": "npm:^7.5.5"
"@babel/plugin-transform-computed-properties": "npm:^7.2.0"
"@babel/plugin-transform-destructuring": "npm:^7.5.0"
"@babel/plugin-transform-dotall-regex": "npm:^7.4.4"
"@babel/plugin-transform-duplicate-keys": "npm:^7.5.0"
"@babel/plugin-transform-exponentiation-operator": "npm:^7.2.0"
"@babel/plugin-transform-for-of": "npm:^7.4.4"
"@babel/plugin-transform-function-name": "npm:^7.4.4"
"@babel/plugin-transform-literals": "npm:^7.2.0"
"@babel/plugin-transform-member-expression-literals": "npm:^7.2.0"
"@babel/plugin-transform-modules-amd": "npm:^7.5.0"
"@babel/plugin-transform-modules-commonjs": "npm:^7.5.0"
"@babel/plugin-transform-modules-systemjs": "npm:^7.5.0"
"@babel/plugin-transform-modules-umd": "npm:^7.2.0"
"@babel/plugin-transform-named-capturing-groups-regex": "npm:^7.4.5"
"@babel/plugin-transform-new-target": "npm:^7.4.4"
"@babel/plugin-transform-object-super": "npm:^7.5.5"
"@babel/plugin-transform-parameters": "npm:^7.4.4"
"@babel/plugin-transform-property-literals": "npm:^7.2.0"
"@babel/plugin-transform-regenerator": "npm:^7.4.5"
"@babel/plugin-transform-reserved-words": "npm:^7.2.0"
"@babel/plugin-transform-shorthand-properties": "npm:^7.2.0"
"@babel/plugin-transform-spread": "npm:^7.2.0"
"@babel/plugin-transform-sticky-regex": "npm:^7.2.0"
"@babel/plugin-transform-template-literals": "npm:^7.4.4"
"@babel/plugin-transform-typeof-symbol": "npm:^7.2.0"
"@babel/plugin-transform-unicode-regex": "npm:^7.4.4"
"@babel/types": "npm:^7.5.5"
browserslist: "npm:^4.6.0"
core-js-compat: "npm:^3.1.1"
invariant: "npm:^2.2.2"
js-levenshtein: "npm:^1.1.3"
semver: "npm:^5.5.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 120e8190dbcc91022081fa14e2100fe9935a668361001a7332eed132944046e3f130cd49b917ef25fdc8cfb37b9fd6e9008300ae9c2ba05f809bcb6cf641a57d
languageName: node
linkType: hard
"@babel/template@npm:^7.1.0, @babel/template@npm:^7.4.0, @babel/template@npm:^7.4.4":
version: 7.4.4
resolution: "@babel/template@npm:7.4.4"
dependencies:
"@babel/code-frame": "npm:^7.0.0"
"@babel/parser": "npm:^7.4.4"
"@babel/types": "npm:^7.4.4"
checksum: 9a45a720f233d7398c8c5a59715becfdda48e9e06e68faf1248a4f2b147e6bf3f3c53a493097ad7bb713d74e7d26c7349a6d3c7e6364f25a239e8db35fc9be80
languageName: node
linkType: hard
"@babel/traverse@npm:^7.1.0, @babel/traverse@npm:^7.4.3, @babel/traverse@npm:^7.4.4, @babel/traverse@npm:^7.5.5":
version: 7.5.5
resolution: "@babel/traverse@npm:7.5.5"
dependencies:
"@babel/code-frame": "npm:^7.5.5"
"@babel/generator": "npm:^7.5.5"
"@babel/helper-function-name": "npm:^7.1.0"
"@babel/helper-split-export-declaration": "npm:^7.4.4"
"@babel/parser": "npm:^7.5.5"
"@babel/types": "npm:^7.5.5"
debug: "npm:^4.1.0"
globals: "npm:^11.1.0"
lodash: "npm:^4.17.13"
checksum: 4b50ae92e73191a791c78deea814af521daa2cbc63ce1499fee1d71fa08d7546f27f68fa205f614e6ae334d78ef015aaf62d319a888f710076428adeb0707def
languageName: node
linkType: hard
"@babel/types@npm:^7.0.0, @babel/types@npm:^7.2.0, @babel/types@npm:^7.3.0, @babel/types@npm:^7.4.0, @babel/types@npm:^7.4.4, @babel/types@npm:^7.5.5":
version: 7.5.5
resolution: "@babel/types@npm:7.5.5"
dependencies:
esutils: "npm:^2.0.2"
lodash: "npm:^4.17.13"
to-fast-properties: "npm:^2.0.0"
checksum: 7874354e3906ade708b9db53b9ddc24ca327f422f364548727149eeea28cb29373c316154e54d8a5b6a236bc638d10d3946456fca59fd26b4d9b76563457ae93
languageName: node
linkType: hard
"@cnakazawa/watch@npm:^1.0.3":
version: 1.0.3
resolution: "@cnakazawa/watch@npm:1.0.3"
dependencies:
exec-sh: "npm:^0.3.2"
minimist: "npm:^1.2.0"
bin:
watch: ./cli.js
checksum: c54c3eee8c1116297c940f039d2936fff32126161d65d2b4c0ade734813e24d99ad5922843b8ee482f903fb3590521ca283bdbb96c674ad7fc5b017e15bd22bf
languageName: node
linkType: hard
"@jest/console@npm:^24.7.1, @jest/console@npm:^24.9.0":
version: 24.9.0
resolution: "@jest/console@npm:24.9.0"
dependencies:
"@jest/source-map": "npm:^24.9.0"
chalk: "npm:^2.0.1"
slash: "npm:^2.0.0"
checksum: 9ee584a0b7400da532904da0bd7424e0b94eda704282dda49b293c22c91fe7ecb0f36f7ad6194ac4bccb0fb8b438d69d61da918c02df983b9af10d41a808ef01
languageName: node
linkType: hard
"@jest/core@npm:^24.9.0":
version: 24.9.0
resolution: "@jest/core@npm:24.9.0"
dependencies:
"@jest/console": "npm:^24.7.1"
"@jest/reporters": "npm:^24.9.0"
"@jest/test-result": "npm:^24.9.0"
"@jest/transform": "npm:^24.9.0"
"@jest/types": "npm:^24.9.0"
ansi-escapes: "npm:^3.0.0"
chalk: "npm:^2.0.1"
exit: "npm:^0.1.2"
graceful-fs: "npm:^4.1.15"
jest-changed-files: "npm:^24.9.0"
jest-config: "npm:^24.9.0"
jest-haste-map: "npm:^24.9.0"
jest-message-util: "npm:^24.9.0"
jest-regex-util: "npm:^24.3.0"
jest-resolve: "npm:^24.9.0"
jest-resolve-dependencies: "npm:^24.9.0"
jest-runner: "npm:^24.9.0"
jest-runtime: "npm:^24.9.0"
jest-snapshot: "npm:^24.9.0"
jest-util: "npm:^24.9.0"
jest-validate: "npm:^24.9.0"
jest-watcher: "npm:^24.9.0"
micromatch: "npm:^3.1.10"
p-each-series: "npm:^1.0.0"
realpath-native: "npm:^1.1.0"
rimraf: "npm:^2.5.4"
slash: "npm:^2.0.0"
strip-ansi: "npm:^5.0.0"
checksum: a33335c224988235bb6cd8f6be5f6c0bbfba550d613b48b150f584122ce95f6b49005d6306684c0213bf2792c6d2aec5411d556a5d8994964fa6579d9802c0de
languageName: node
linkType: hard
"@jest/environment@npm:^24.9.0":
version: 24.9.0
resolution: "@jest/environment@npm:24.9.0"
dependencies:
"@jest/fake-timers": "npm:^24.9.0"
"@jest/transform": "npm:^24.9.0"
"@jest/types": "npm:^24.9.0"
jest-mock: "npm:^24.9.0"
checksum: f7e1d9564b5cb34d9310cf612024d7aa2d2a91b6ed7fca864378d790b3f3e99b5193c2737f193ed15b1a0cf3178ab428b5c817318b8cd4eda8c814c48799dfc6
languageName: node
linkType: hard
"@jest/fake-timers@npm:^24.9.0":
version: 24.9.0
resolution: "@jest/fake-timers@npm:24.9.0"
dependencies:
"@jest/types": "npm:^24.9.0"
jest-message-util: "npm:^24.9.0"
jest-mock: "npm:^24.9.0"
checksum: 94c2ada792977a71e366a702b5a9116ea00405555e658bdc5a65d2e0521f3f26180f4940441b68a5a5c43adc271f04af4bbb685f294d21626315f5012a41f962
languageName: node
linkType: hard
"@jest/reporters@npm:^24.9.0":
version: 24.9.0
resolution: "@jest/reporters@npm:24.9.0"
dependencies:
"@jest/environment": "npm:^24.9.0"
"@jest/test-result": "npm:^24.9.0"
"@jest/transform": "npm:^24.9.0"
"@jest/types": "npm:^24.9.0"
chalk: "npm:^2.0.1"
exit: "npm:^0.1.2"
glob: "npm:^7.1.2"
istanbul-lib-coverage: "npm:^2.0.2"
istanbul-lib-instrument: "npm:^3.0.1"
istanbul-lib-report: "npm:^2.0.4"
istanbul-lib-source-maps: "npm:^3.0.1"
istanbul-reports: "npm:^2.2.6"
jest-haste-map: "npm:^24.9.0"
jest-resolve: "npm:^24.9.0"
jest-runtime: "npm:^24.9.0"
jest-util: "npm:^24.9.0"
jest-worker: "npm:^24.6.0"
node-notifier: "npm:^5.4.2"
slash: "npm:^2.0.0"
source-map: "npm:^0.6.0"
string-length: "npm:^2.0.0"
checksum: 747c0276eae8abb9735a88c0b67df1fa24bd46ec52b2d446e236a4f691738a2497d9c52b4ede925b934f3eee130c643a893283dda0db4c3ad66d972f0dea129a
languageName: node
linkType: hard
"@jest/source-map@npm:^24.3.0, @jest/source-map@npm:^24.9.0":
version: 24.9.0
resolution: "@jest/source-map@npm:24.9.0"
dependencies:
callsites: "npm:^3.0.0"
graceful-fs: "npm:^4.1.15"
source-map: "npm:^0.6.0"
checksum: bda54802c6fe672687b86b530a876b3bb27a3bff639aa04c2217413c8128d4091478f04ef9cab34a8697e649f89455951e7455077dfc9f5d30493fe24b84c612
languageName: node
linkType: hard
"@jest/test-result@npm:^24.9.0":
version: 24.9.0
resolution: "@jest/test-result@npm:24.9.0"
dependencies:
"@jest/console": "npm:^24.9.0"
"@jest/types": "npm:^24.9.0"