-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathyarn.lock
1335 lines (1158 loc) · 50.1 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 IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
# yarn lockfile v1
"@babel/runtime@^7.1.2":
"integrity" "sha512-8+3UMPBrjFa/6TtKi/7sehPKqfAm4g6K+YQjyyFOLUTxzOngcRZTlAVY8sc2CORJYqdHQY8gRPHmn+qo15rCBw=="
"resolved" "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.13.tgz"
"version" "7.12.13"
dependencies:
"regenerator-runtime" "^0.13.4"
"@blueprintjs/core@^3.22.2", "@blueprintjs/core@^3.38.2":
"integrity" "sha512-YOTZ8UkaKCjP/g8fm9e2py5/9TvAWHwhhDQAH30NV53FD5oBOjYu0+mUU1hRys9TrBflvA3cQn8EgHRP1y/K9A=="
"resolved" "https://registry.npmjs.org/@blueprintjs/core/-/core-3.38.2.tgz"
"version" "3.38.2"
dependencies:
"@blueprintjs/icons" "^3.24.0"
"@types/dom4" "^2.0.1"
"classnames" "^2.2"
"dom4" "^2.1.5"
"normalize.css" "^8.0.1"
"popper.js" "^1.16.1"
"react-lifecycles-compat" "^3.0.4"
"react-popper" "^1.3.7"
"react-transition-group" "^2.9.0"
"resize-observer-polyfill" "^1.5.1"
"tslib" "~1.13.0"
"@blueprintjs/icons@^3.24.0":
"integrity" "sha512-OvDDI5EUueS1Y3t594iS8LAGoHhLhYjC2GuN/01a85n+ASLSp0jf0/+uix2JeCOj41iTdRRCINbWuRwVQNNGPw=="
"resolved" "https://registry.npmjs.org/@blueprintjs/icons/-/icons-3.24.0.tgz"
"version" "3.24.0"
dependencies:
"classnames" "^2.2"
"tslib" "~1.13.0"
"@blueprintjs/select@^3.11.2":
"integrity" "sha512-TsDDn5Pp39Bazv1Spu8evALKpBjQ5j+5SOlCBuXokMWcFI99RekG5jI9fYQKsOlyvXGWxazMG/vsIuIf5tXKoA=="
"resolved" "https://registry.npmjs.org/@blueprintjs/select/-/select-3.15.4.tgz"
"version" "3.15.4"
dependencies:
"@blueprintjs/core" "^3.38.2"
"classnames" "^2.2"
"tslib" "~1.13.0"
"@fortawesome/fontawesome-free@^5.12.0":
"integrity" "sha512-7l/AX41m609L/EXI9EKH3Vs3v0iA8tKlIOGtw+kgcoanI7p+e4I4GYLqW3UXWiTnjSFymKSmTTPKYrivzbxxqA=="
"resolved" "https://registry.yarnpkg.com/@fortawesome/fontawesome-free/-/fontawesome-free-5.15.2.tgz"
"version" "5.15.2"
"@jupyterlab/application@^2.0.0":
"integrity" "sha512-pW/Cu+t3CYii52YncrbcRWSfAFTIlsDy8yMxgYqkG6TSsImca3Rix3o69jTu264Ct2UQzEWP4+6u2IqF5wziuw=="
"resolved" "https://registry.npmjs.org/@jupyterlab/application/-/application-2.2.6.tgz"
"version" "2.2.6"
dependencies:
"@fortawesome/fontawesome-free" "^5.12.0"
"@jupyterlab/apputils" "^2.2.6"
"@jupyterlab/coreutils" "^4.2.5"
"@jupyterlab/docregistry" "^2.2.4"
"@jupyterlab/rendermime" "^2.2.4"
"@jupyterlab/rendermime-interfaces" "^2.2.1"
"@jupyterlab/services" "^5.2.5"
"@jupyterlab/statedb" "^2.2.5"
"@jupyterlab/ui-components" "^2.2.4"
"@lumino/algorithm" "^1.2.3"
"@lumino/application" "^1.8.4"
"@lumino/commands" "^1.10.1"
"@lumino/coreutils" "^1.4.2"
"@lumino/disposable" "^1.3.5"
"@lumino/messaging" "^1.3.3"
"@lumino/polling" "^1.1.1"
"@lumino/properties" "^1.1.6"
"@lumino/signaling" "^1.3.5"
"@lumino/widgets" "^1.11.1"
"@jupyterlab/apputils@^2.0.0", "@jupyterlab/apputils@^2.2.6":
"integrity" "sha512-aWg0c6edfQC6b1sLFskirG+LqH1aGKnVGj7R7HR1loyOLVVq/HpZ9wkPZLCh8Gi1Wy4Tqvm2R46glmuu84W8xA=="
"resolved" "https://registry.npmjs.org/@jupyterlab/apputils/-/apputils-2.2.6.tgz"
"version" "2.2.6"
dependencies:
"@jupyterlab/coreutils" "^4.2.5"
"@jupyterlab/services" "^5.2.5"
"@jupyterlab/settingregistry" "^2.2.5"
"@jupyterlab/statedb" "^2.2.5"
"@jupyterlab/ui-components" "^2.2.4"
"@lumino/algorithm" "^1.2.3"
"@lumino/commands" "^1.10.1"
"@lumino/coreutils" "^1.4.2"
"@lumino/disposable" "^1.3.5"
"@lumino/domutils" "^1.1.7"
"@lumino/messaging" "^1.3.3"
"@lumino/properties" "^1.1.6"
"@lumino/signaling" "^1.3.5"
"@lumino/virtualdom" "^1.6.1"
"@lumino/widgets" "^1.11.1"
"@types/react" "~16.9.16"
"react" "~16.9.0"
"react-dom" "~16.9.0"
"sanitize-html" "~1.20.1"
"@jupyterlab/codeeditor@^2.2.5":
"integrity" "sha512-ktc5e/30aabx0GwFBiiNOimtBoDx+ZFWkHeKg1ylpHASGgdQt6Km3E+TQARzFWbwkShyc7WFJySK1ES/uimDVg=="
"resolved" "https://registry.npmjs.org/@jupyterlab/codeeditor/-/codeeditor-2.2.5.tgz"
"version" "2.2.5"
dependencies:
"@jupyterlab/coreutils" "^4.2.5"
"@jupyterlab/nbformat" "^2.2.5"
"@jupyterlab/observables" "^3.2.5"
"@jupyterlab/ui-components" "^2.2.4"
"@lumino/coreutils" "^1.4.2"
"@lumino/disposable" "^1.3.5"
"@lumino/dragdrop" "^1.5.1"
"@lumino/messaging" "^1.3.3"
"@lumino/signaling" "^1.3.5"
"@lumino/widgets" "^1.11.1"
"@jupyterlab/codemirror@^2.2.4":
"integrity" "sha512-arWSgzZxCyLSOGFQvplxnIRdWXJ+VD2skb9OX/Fa/uqknpeyMvGBX5RkaX+edCMjlRfytkWPKlxvMcPgeMVP/Q=="
"resolved" "https://registry.npmjs.org/@jupyterlab/codemirror/-/codemirror-2.2.4.tgz"
"version" "2.2.4"
dependencies:
"@jupyterlab/apputils" "^2.2.6"
"@jupyterlab/codeeditor" "^2.2.5"
"@jupyterlab/coreutils" "^4.2.5"
"@jupyterlab/nbformat" "^2.2.5"
"@jupyterlab/observables" "^3.2.5"
"@jupyterlab/statusbar" "^2.2.4"
"@lumino/algorithm" "^1.2.3"
"@lumino/commands" "^1.10.1"
"@lumino/coreutils" "^1.4.2"
"@lumino/disposable" "^1.3.5"
"@lumino/polling" "^1.1.1"
"@lumino/signaling" "^1.3.5"
"@lumino/widgets" "^1.11.1"
"codemirror" "~5.53.2"
"react" "~16.9.0"
"@jupyterlab/coreutils@^4.2.5":
"integrity" "sha512-dkU9aD10vthsDulq1o5CEgIu0pe84v2Krxvfu3m4EYC+pSJmGHsxc3wmnb8MQocPiMJFB79brm6zJaXiy68uWA=="
"resolved" "https://registry.npmjs.org/@jupyterlab/coreutils/-/coreutils-4.2.5.tgz"
"version" "4.2.5"
dependencies:
"@lumino/coreutils" "^1.4.2"
"@lumino/disposable" "^1.3.5"
"@lumino/signaling" "^1.3.5"
"minimist" "~1.2.0"
"moment" "^2.24.0"
"path-posix" "~1.0.0"
"url-parse" "~1.4.7"
"@jupyterlab/docmanager@^2.2.4":
"integrity" "sha512-60xRy552l2g7qRpJ+qwVlT/J1isJZikf3g5U2e8qaBwabtb+6UcNGkwIGYr5NSYY8CqDZhtgDVrU/VTI3aOH+w=="
"resolved" "https://registry.npmjs.org/@jupyterlab/docmanager/-/docmanager-2.2.4.tgz"
"version" "2.2.4"
dependencies:
"@jupyterlab/apputils" "^2.2.6"
"@jupyterlab/coreutils" "^4.2.5"
"@jupyterlab/docregistry" "^2.2.4"
"@jupyterlab/services" "^5.2.5"
"@jupyterlab/statusbar" "^2.2.4"
"@lumino/algorithm" "^1.2.3"
"@lumino/coreutils" "^1.4.2"
"@lumino/disposable" "^1.3.5"
"@lumino/messaging" "^1.3.3"
"@lumino/properties" "^1.1.6"
"@lumino/signaling" "^1.3.5"
"@lumino/widgets" "^1.11.1"
"react" "~16.9.0"
"@jupyterlab/docregistry@^2.2.4":
"integrity" "sha512-xmwptfXKr7QkpnNOaLVB/PIWaoZ8JpRCY/cKwQSXq42wkpY7D4iCJyX0iGsPqapJHYOq6g0BnQm195ETTYs/BQ=="
"resolved" "https://registry.npmjs.org/@jupyterlab/docregistry/-/docregistry-2.2.4.tgz"
"version" "2.2.4"
dependencies:
"@jupyterlab/apputils" "^2.2.6"
"@jupyterlab/codeeditor" "^2.2.5"
"@jupyterlab/codemirror" "^2.2.4"
"@jupyterlab/coreutils" "^4.2.5"
"@jupyterlab/observables" "^3.2.5"
"@jupyterlab/rendermime" "^2.2.4"
"@jupyterlab/rendermime-interfaces" "^2.2.1"
"@jupyterlab/services" "^5.2.5"
"@jupyterlab/ui-components" "^2.2.4"
"@lumino/algorithm" "^1.2.3"
"@lumino/coreutils" "^1.4.2"
"@lumino/disposable" "^1.3.5"
"@lumino/messaging" "^1.3.3"
"@lumino/signaling" "^1.3.5"
"@lumino/widgets" "^1.11.1"
"@jupyterlab/filebrowser@^2.0.0":
"integrity" "sha512-Ysem2dnxAZ1L6BX31idUHptMIFTCEvDqCkhHKsLF6nnEgZT4ZB5UvyDCu8oWMVVmnMTl6F72ky/qOHV0WOl9rg=="
"resolved" "https://registry.npmjs.org/@jupyterlab/filebrowser/-/filebrowser-2.2.5.tgz"
"version" "2.2.5"
dependencies:
"@jupyterlab/apputils" "^2.2.6"
"@jupyterlab/coreutils" "^4.2.5"
"@jupyterlab/docmanager" "^2.2.4"
"@jupyterlab/docregistry" "^2.2.4"
"@jupyterlab/services" "^5.2.5"
"@jupyterlab/statedb" "^2.2.5"
"@jupyterlab/statusbar" "^2.2.4"
"@jupyterlab/ui-components" "^2.2.4"
"@lumino/algorithm" "^1.2.3"
"@lumino/coreutils" "^1.4.2"
"@lumino/disposable" "^1.3.5"
"@lumino/domutils" "^1.1.7"
"@lumino/dragdrop" "^1.5.1"
"@lumino/messaging" "^1.3.3"
"@lumino/polling" "^1.1.1"
"@lumino/signaling" "^1.3.5"
"@lumino/widgets" "^1.11.1"
"react" "~16.9.0"
"@jupyterlab/mainmenu@^2.0.0":
"integrity" "sha512-5EvpMJ+XTeI8YH3vNldCl/epjk8sEvEvKusuifUc1xXLqhX0YpPRL0ebg4NknX2qgeFag94KfQnnGs+pEoWUbg=="
"resolved" "https://registry.npmjs.org/@jupyterlab/mainmenu/-/mainmenu-2.2.4.tgz"
"version" "2.2.4"
dependencies:
"@jupyterlab/apputils" "^2.2.6"
"@jupyterlab/services" "^5.2.5"
"@jupyterlab/ui-components" "^2.2.4"
"@lumino/algorithm" "^1.2.3"
"@lumino/commands" "^1.10.1"
"@lumino/coreutils" "^1.4.2"
"@lumino/disposable" "^1.3.5"
"@lumino/widgets" "^1.11.1"
"@jupyterlab/nbformat@^2.2.5":
"integrity" "sha512-NXxNDMB0n0GJS634KkqZBAS9tAFkkLubv2YfPkWLOjlYHWPclknQfMLWpjn2VTSdj7C+xk6qqsv4YLziRn5BPA=="
"resolved" "https://registry.npmjs.org/@jupyterlab/nbformat/-/nbformat-2.2.5.tgz"
"version" "2.2.5"
dependencies:
"@lumino/coreutils" "^1.4.2"
"@jupyterlab/observables@^3.2.5":
"integrity" "sha512-21y72DScc4EsfcPpVgm4VLUcUWi2AvHuBOtrjPpNxrvrl3hNqTVNOOtX1lEeqVOzdWEJAJ7jeEe96rTkY5tptQ=="
"resolved" "https://registry.npmjs.org/@jupyterlab/observables/-/observables-3.2.5.tgz"
"version" "3.2.5"
dependencies:
"@lumino/algorithm" "^1.2.3"
"@lumino/coreutils" "^1.4.2"
"@lumino/disposable" "^1.3.5"
"@lumino/messaging" "^1.3.3"
"@lumino/signaling" "^1.3.5"
"@jupyterlab/rendermime-interfaces@^2.2.1":
"integrity" "sha512-tjwt3dFfjguV3AeLKhIaCACzaTr2I6F34c4ArJ95WCCRx2DmrRMYFgppLlBo9rKa7BiYeQWZD/lYWvL+GnQZEA=="
"resolved" "https://registry.npmjs.org/@jupyterlab/rendermime-interfaces/-/rendermime-interfaces-2.2.1.tgz"
"version" "2.2.1"
dependencies:
"@lumino/coreutils" "^1.4.2"
"@lumino/widgets" "^1.11.1"
"@jupyterlab/rendermime@^2.2.4":
"integrity" "sha512-XhBsUQdyidYrNY71+TZUGJSg/mf3kM90lSwIw+DgHSJJz/BXO5bSyKP5XnTSeKYoz40Ko1PCyRyCmKpmI51J6A=="
"resolved" "https://registry.npmjs.org/@jupyterlab/rendermime/-/rendermime-2.2.4.tgz"
"version" "2.2.4"
dependencies:
"@jupyterlab/apputils" "^2.2.6"
"@jupyterlab/codemirror" "^2.2.4"
"@jupyterlab/coreutils" "^4.2.5"
"@jupyterlab/nbformat" "^2.2.5"
"@jupyterlab/observables" "^3.2.5"
"@jupyterlab/rendermime-interfaces" "^2.2.1"
"@jupyterlab/services" "^5.2.5"
"@lumino/algorithm" "^1.2.3"
"@lumino/coreutils" "^1.4.2"
"@lumino/messaging" "^1.3.3"
"@lumino/signaling" "^1.3.5"
"@lumino/widgets" "^1.11.1"
"lodash.escape" "^4.0.1"
"marked" "^0.8.0"
"@jupyterlab/services@^5.2.5":
"integrity" "sha512-vhWt+rbDUe3SRvv1GD1WOjsDNhDz2lg33xdsT/+WObZRqeQ9CgzUF2K8Zah9UaiyGmTM3tpUUCTIQ62hNi5wrA=="
"resolved" "https://registry.npmjs.org/@jupyterlab/services/-/services-5.2.5.tgz"
"version" "5.2.5"
dependencies:
"@jupyterlab/coreutils" "^4.2.5"
"@jupyterlab/nbformat" "^2.2.5"
"@jupyterlab/observables" "^3.2.5"
"@jupyterlab/settingregistry" "^2.2.5"
"@jupyterlab/statedb" "^2.2.5"
"@lumino/algorithm" "^1.2.3"
"@lumino/coreutils" "^1.4.2"
"@lumino/disposable" "^1.3.5"
"@lumino/polling" "^1.1.1"
"@lumino/signaling" "^1.3.5"
"node-fetch" "^2.6.0"
"ws" "^7.2.0"
"@jupyterlab/settingregistry@^2.2.5":
"integrity" "sha512-LoKa27F1WNmeMT168TYo+MgjsYsVawKCZbmU7OGQS6h6J5dx0xQBQvE38NkhCsjnPYyUv4tYmGIFyHQceCDDaA=="
"resolved" "https://registry.npmjs.org/@jupyterlab/settingregistry/-/settingregistry-2.2.5.tgz"
"version" "2.2.5"
dependencies:
"@jupyterlab/statedb" "^2.2.5"
"@lumino/commands" "^1.10.1"
"@lumino/coreutils" "^1.4.2"
"@lumino/disposable" "^1.3.5"
"@lumino/signaling" "^1.3.5"
"ajv" "^6.10.2"
"json5" "^2.1.1"
"@jupyterlab/statedb@^2.2.5":
"integrity" "sha512-+hW1bQ6+p18SNZvjM7hZMPv7odkLWkAp17qoRPtky3j+CFnZW7m49U0XA8QezjLBiX9QdHFYgoUhIZEmrKcPDg=="
"resolved" "https://registry.npmjs.org/@jupyterlab/statedb/-/statedb-2.2.5.tgz"
"version" "2.2.5"
dependencies:
"@lumino/commands" "^1.10.1"
"@lumino/coreutils" "^1.4.2"
"@lumino/disposable" "^1.3.5"
"@lumino/properties" "^1.1.6"
"@lumino/signaling" "^1.3.5"
"@jupyterlab/statusbar@^2.2.4":
"integrity" "sha512-Wyhd5EZYd5Zs4oAsnG1Dt57wE4jUajkGxwr4SSotXXzccmJOLiZsvmNxPuftcZJHqbisG7EweaZXVlKMnb3SsA=="
"resolved" "https://registry.npmjs.org/@jupyterlab/statusbar/-/statusbar-2.2.4.tgz"
"version" "2.2.4"
dependencies:
"@jupyterlab/apputils" "^2.2.6"
"@jupyterlab/codeeditor" "^2.2.5"
"@jupyterlab/coreutils" "^4.2.5"
"@jupyterlab/services" "^5.2.5"
"@jupyterlab/ui-components" "^2.2.4"
"@lumino/algorithm" "^1.2.3"
"@lumino/coreutils" "^1.4.2"
"@lumino/disposable" "^1.3.5"
"@lumino/messaging" "^1.3.3"
"@lumino/polling" "^1.1.1"
"@lumino/signaling" "^1.3.5"
"@lumino/widgets" "^1.11.1"
"csstype" "~2.6.9"
"react" "~16.9.0"
"typestyle" "^2.0.4"
"@jupyterlab/ui-components@^2.2.4":
"integrity" "sha512-8OqmlDIlf3OHrKqTGHLBbzY6gDyTGT91o5LSyLuOBhIF2TvPorBYnxWk883pO7n4rSVhZbafBb0U3Hl3X9uT3Q=="
"resolved" "https://registry.npmjs.org/@jupyterlab/ui-components/-/ui-components-2.2.4.tgz"
"version" "2.2.4"
dependencies:
"@blueprintjs/core" "^3.22.2"
"@blueprintjs/select" "^3.11.2"
"@jupyterlab/coreutils" "^4.2.5"
"@lumino/coreutils" "^1.4.2"
"@lumino/signaling" "^1.3.5"
"@lumino/virtualdom" "^1.6.1"
"@lumino/widgets" "^1.11.1"
"react" "~16.9.0"
"react-dom" "~16.9.0"
"typestyle" "^2.0.4"
"@lumino/algorithm@^1.2.3", "@lumino/algorithm@^1.3.3":
"integrity" "sha512-I2BkssbOSLq3rDjgAC3fzf/zAIwkRUnAh60MO0lYcaFdSGyI15w4K3gwZHGIO0p9cKEiNHLXKEODGmOjMLOQ3g=="
"resolved" "https://registry.yarnpkg.com/@lumino/algorithm/-/algorithm-1.3.3.tgz"
"version" "1.3.3"
"@lumino/application@^1.8.4":
"integrity" "sha512-W/12+UFk1oBdJ793L3NegQvt0T355k64fPmDVzPhM48TW8vM/0tDc+zBx1KShn52eRMTrVBDc2cG5t6C5/XF1w=="
"resolved" "https://registry.yarnpkg.com/@lumino/application/-/application-1.15.0.tgz"
"version" "1.15.0"
dependencies:
"@lumino/commands" "^1.12.0"
"@lumino/coreutils" "^1.5.3"
"@lumino/widgets" "^1.18.0"
"@lumino/collections@^1.3.3":
"integrity" "sha512-vN3GSV5INkgM6tMLd+WqTgaPnQNTY7L/aFUtTOC8TJQm+vg1eSmR4fNXsoGHM3uA85ctSJThvdZr5triu1Iajg=="
"resolved" "https://registry.yarnpkg.com/@lumino/collections/-/collections-1.3.3.tgz"
"version" "1.3.3"
dependencies:
"@lumino/algorithm" "^1.3.3"
"@lumino/commands@^1.10.1", "@lumino/commands@^1.12.0":
"integrity" "sha512-5TFlhDzZk1X8rCBjhh0HH3j6CcJ03mx2Pd/1rGa7MB5R+3+yYYk+gTlfHRqsxdehNRmiISaHRSrMnW8bynW7ZQ=="
"resolved" "https://registry.yarnpkg.com/@lumino/commands/-/commands-1.12.0.tgz"
"version" "1.12.0"
dependencies:
"@lumino/algorithm" "^1.3.3"
"@lumino/coreutils" "^1.5.3"
"@lumino/disposable" "^1.4.3"
"@lumino/domutils" "^1.2.3"
"@lumino/keyboard" "^1.2.3"
"@lumino/signaling" "^1.4.3"
"@lumino/virtualdom" "^1.8.0"
"@lumino/coreutils@^1.4.2", "@lumino/coreutils@^1.5.3":
"integrity" "sha512-G72jJ6sgOwAUuilz+cri7LpHIJxllK+qz+YZUC3fyyWHK7oRlZemcc43jZAVE+tagTdMxKYSQWNIVzM5lI8sWw=="
"resolved" "https://registry.yarnpkg.com/@lumino/coreutils/-/coreutils-1.5.3.tgz"
"version" "1.5.3"
"@lumino/disposable@^1.3.5", "@lumino/disposable@^1.4.3":
"integrity" "sha512-zKQ9N2AEGcYpG6PJkeMWQXvoXU9w1ocji78z+fboM/SmSgtOIVGeQt3fZeldymf0XrlOPpNXs1ZFg54yWUMnXA=="
"resolved" "https://registry.yarnpkg.com/@lumino/disposable/-/disposable-1.4.3.tgz"
"version" "1.4.3"
dependencies:
"@lumino/algorithm" "^1.3.3"
"@lumino/signaling" "^1.4.3"
"@lumino/domutils@^1.1.7", "@lumino/domutils@^1.2.3":
"integrity" "sha512-SEi8WZSy+DWMkL5CfAY78MHbi3x83AVmRFxjs9+A6qsFPde+Hr1I4DNtLsSDmfAWsobHHgBnjyNp2ZkQEq0IEA=="
"resolved" "https://registry.yarnpkg.com/@lumino/domutils/-/domutils-1.2.3.tgz"
"version" "1.2.3"
"@lumino/dragdrop@^1.5.1", "@lumino/dragdrop@^1.7.1":
"integrity" "sha512-IeSSOTmpqBSWz+EVsbGVeHe/KIaHaUsQXZ4BJCEbCKgNGHbqMfUOtlneiKq7rEhZGF4wYs7gWWjNhMVZbUGO9Q=="
"resolved" "https://registry.yarnpkg.com/@lumino/dragdrop/-/dragdrop-1.7.1.tgz"
"version" "1.7.1"
dependencies:
"@lumino/coreutils" "^1.5.3"
"@lumino/disposable" "^1.4.3"
"@lumino/keyboard@^1.2.3":
"integrity" "sha512-ibS0sz0VABeuJXx2JVSz36sUBMUOcQNCNPybVhwzN/GkJFs0dnDKluMu+3Px0tkB2y33bGPZU/RLZY1Xj/faEA=="
"resolved" "https://registry.yarnpkg.com/@lumino/keyboard/-/keyboard-1.2.3.tgz"
"version" "1.2.3"
"@lumino/messaging@^1.3.3", "@lumino/messaging@^1.4.3":
"integrity" "sha512-wa2Pj2KOuLNLS2n0wVBzUVFGbvjL1FLbuCOAUEYfN6xXVleqqtGGzd08uTF7ebu01KCO3VQ38+dkvoaM/C2qPw=="
"resolved" "https://registry.yarnpkg.com/@lumino/messaging/-/messaging-1.4.3.tgz"
"version" "1.4.3"
dependencies:
"@lumino/algorithm" "^1.3.3"
"@lumino/collections" "^1.3.3"
"@lumino/polling@^1.1.1":
"integrity" "sha512-uMRi6sPRnKW8m38WUY3qox1jxwzpvceafUbDJATCwyrZ48+YoY5Fxfmd9dqwioHS1aq9np5c6L35a9ZGuS0Maw=="
"resolved" "https://registry.yarnpkg.com/@lumino/polling/-/polling-1.3.3.tgz"
"version" "1.3.3"
dependencies:
"@lumino/coreutils" "^1.5.3"
"@lumino/disposable" "^1.4.3"
"@lumino/signaling" "^1.4.3"
"@lumino/properties@^1.1.6", "@lumino/properties@^1.2.3":
"integrity" "sha512-dbS9V/L+RpQoRjxHMAGh1JYoXaLA6F7xkVbg/vmYXqdXZ7DguO5C3Qteu9tNp7Z7Q31TqFWUCrniTI9UJiJCoQ=="
"resolved" "https://registry.yarnpkg.com/@lumino/properties/-/properties-1.2.3.tgz"
"version" "1.2.3"
"@lumino/signaling@^1.3.5", "@lumino/signaling@^1.4.3":
"integrity" "sha512-6clc8SMcH0tyKXIX31xw6sxjxJl5hj4YRd1DTHTS62cegQ0FkO8JjJeuv+Nc1pgTg6nEAf65aSOHpUdsFHDAvQ=="
"resolved" "https://registry.yarnpkg.com/@lumino/signaling/-/signaling-1.4.3.tgz"
"version" "1.4.3"
dependencies:
"@lumino/algorithm" "^1.3.3"
"@lumino/virtualdom@^1.6.1", "@lumino/virtualdom@^1.8.0":
"integrity" "sha512-X/1b8b7TxB9tb4+xQiS8oArcA/AK7NBZrsg2dzu/gHa3JC45R8nzQ+0tObD8Nd0gF/e9w9Ps9M62rLfefcbbKw=="
"resolved" "https://registry.yarnpkg.com/@lumino/virtualdom/-/virtualdom-1.8.0.tgz"
"version" "1.8.0"
dependencies:
"@lumino/algorithm" "^1.3.3"
"@lumino/widgets@^1.11.1", "@lumino/widgets@^1.18.0":
"integrity" "sha512-8i10njkGjctuXrbaoV2dRI2rVUaL7eA5djtHj36pX9cALwciEPHNecF6hoZXmQ4ODv6LTwhr87Uz8LT4Aan77A=="
"resolved" "https://registry.yarnpkg.com/@lumino/widgets/-/widgets-1.18.0.tgz"
"version" "1.18.0"
dependencies:
"@lumino/algorithm" "^1.3.3"
"@lumino/commands" "^1.12.0"
"@lumino/coreutils" "^1.5.3"
"@lumino/disposable" "^1.4.3"
"@lumino/domutils" "^1.2.3"
"@lumino/dragdrop" "^1.7.1"
"@lumino/keyboard" "^1.2.3"
"@lumino/messaging" "^1.4.3"
"@lumino/properties" "^1.2.3"
"@lumino/signaling" "^1.4.3"
"@lumino/virtualdom" "^1.8.0"
"@phosphor/algorithm@^1.2.0":
"resolved" "https://registry.yarnpkg.com/@phosphor/algorithm/-/algorithm-1.2.0.tgz"
"version" "1.2.0"
"@phosphor/collections@^1.2.0":
"resolved" "https://registry.yarnpkg.com/@phosphor/collections/-/collections-1.2.0.tgz"
"version" "1.2.0"
dependencies:
"@phosphor/algorithm" "^1.2.0"
"@phosphor/commands@^1.7.0":
"resolved" "https://registry.yarnpkg.com/@phosphor/commands/-/commands-1.7.0.tgz"
"version" "1.7.0"
dependencies:
"@phosphor/algorithm" "^1.2.0"
"@phosphor/coreutils" "^1.3.1"
"@phosphor/disposable" "^1.3.0"
"@phosphor/domutils" "^1.1.3"
"@phosphor/keyboard" "^1.1.3"
"@phosphor/signaling" "^1.3.0"
"@phosphor/coreutils@^1.3.0", "@phosphor/coreutils@^1.3.1":
"resolved" "https://registry.yarnpkg.com/@phosphor/coreutils/-/coreutils-1.3.1.tgz"
"version" "1.3.1"
"@phosphor/disposable@^1.3.0":
"resolved" "https://registry.yarnpkg.com/@phosphor/disposable/-/disposable-1.3.0.tgz"
"version" "1.3.0"
dependencies:
"@phosphor/algorithm" "^1.2.0"
"@phosphor/signaling" "^1.3.0"
"@phosphor/domutils@^1.1.3":
"resolved" "https://registry.yarnpkg.com/@phosphor/domutils/-/domutils-1.1.3.tgz"
"version" "1.1.3"
"@phosphor/dragdrop@^1.4.0":
"resolved" "https://registry.yarnpkg.com/@phosphor/dragdrop/-/dragdrop-1.4.0.tgz"
"version" "1.4.0"
dependencies:
"@phosphor/coreutils" "^1.3.1"
"@phosphor/disposable" "^1.3.0"
"@phosphor/keyboard@^1.1.3":
"resolved" "https://registry.yarnpkg.com/@phosphor/keyboard/-/keyboard-1.1.3.tgz"
"version" "1.1.3"
"@phosphor/messaging@^1.2.2", "@phosphor/messaging@^1.3.0":
"resolved" "https://registry.yarnpkg.com/@phosphor/messaging/-/messaging-1.3.0.tgz"
"version" "1.3.0"
dependencies:
"@phosphor/algorithm" "^1.2.0"
"@phosphor/collections" "^1.2.0"
"@phosphor/properties@^1.1.3":
"resolved" "https://registry.yarnpkg.com/@phosphor/properties/-/properties-1.1.3.tgz"
"version" "1.1.3"
"@phosphor/signaling@^1.3.0":
"resolved" "https://registry.yarnpkg.com/@phosphor/signaling/-/signaling-1.3.0.tgz"
"version" "1.3.0"
dependencies:
"@phosphor/algorithm" "^1.2.0"
"@phosphor/virtualdom@^1.2.0":
"resolved" "https://registry.yarnpkg.com/@phosphor/virtualdom/-/virtualdom-1.2.0.tgz"
"version" "1.2.0"
dependencies:
"@phosphor/algorithm" "^1.2.0"
"@phosphor/widgets@^1.7.0":
"resolved" "https://registry.yarnpkg.com/@phosphor/widgets/-/widgets-1.9.0.tgz"
"version" "1.9.0"
dependencies:
"@phosphor/algorithm" "^1.2.0"
"@phosphor/commands" "^1.7.0"
"@phosphor/coreutils" "^1.3.1"
"@phosphor/disposable" "^1.3.0"
"@phosphor/domutils" "^1.1.3"
"@phosphor/dragdrop" "^1.4.0"
"@phosphor/keyboard" "^1.1.3"
"@phosphor/messaging" "^1.3.0"
"@phosphor/properties" "^1.1.3"
"@phosphor/signaling" "^1.3.0"
"@phosphor/virtualdom" "^1.2.0"
"@types/dom4@^2.0.1":
"integrity" "sha512-kSkVAvWmMZiCYtvqjqQEwOmvKwcH+V4uiv3qPQ8pAh1Xl39xggGEo8gHUqV4waYGHezdFw0rKBR8Jt0CrQSDZA=="
"resolved" "https://registry.npmjs.org/@types/dom4/-/dom4-2.0.1.tgz"
"version" "2.0.1"
"@types/muicss@^0.9.1":
"resolved" "https://registry.yarnpkg.com/@types/muicss/-/muicss-0.9.1.tgz"
"version" "0.9.1"
dependencies:
"@types/react" "*"
"@types/node@^10.12.1":
"resolved" "https://registry.yarnpkg.com/@types/node/-/node-10.14.15.tgz"
"version" "10.14.15"
"@types/prop-types@*":
"resolved" "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.1.tgz"
"version" "15.7.1"
"@types/react@*", "@types/react@~16.9.16":
"integrity" "sha512-gIkl4J44G/qxbuC6r2Xh+D3CGZpJ+NdWTItAPmZbR5mUS+JQ8Zvzpl0ea5qT/ZT3ZNTUcDKUVqV3xBE8wv/DyQ=="
"resolved" "https://registry.npmjs.org/@types/react/-/react-16.9.56.tgz"
"version" "16.9.56"
dependencies:
"@types/prop-types" "*"
"csstype" "^3.0.2"
"ajv@^6.10.2":
"integrity" "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g=="
"resolved" "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz"
"version" "6.12.6"
dependencies:
"fast-deep-equal" "^3.1.1"
"fast-json-stable-stringify" "^2.0.0"
"json-schema-traverse" "^0.4.1"
"uri-js" "^4.2.2"
"ansi-styles@^3.2.1":
"integrity" "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA=="
"resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz"
"version" "3.2.1"
dependencies:
"color-convert" "^1.9.0"
"array-uniq@^1.0.2":
"integrity" "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY="
"resolved" "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz"
"version" "1.0.3"
"asap@~2.0.3":
"resolved" "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz"
"version" "2.0.6"
"balanced-match@^1.0.0":
"resolved" "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz"
"version" "1.0.0"
"brace-expansion@^1.1.7":
"resolved" "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz"
"version" "1.1.11"
dependencies:
"balanced-match" "^1.0.0"
"concat-map" "0.0.1"
"call-bind@^1.0.0", "call-bind@^1.0.2":
"integrity" "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA=="
"resolved" "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz"
"version" "1.0.2"
dependencies:
"function-bind" "^1.1.1"
"get-intrinsic" "^1.0.2"
"chalk@^2.4.1", "chalk@^2.4.2":
"integrity" "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ=="
"resolved" "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz"
"version" "2.4.2"
dependencies:
"ansi-styles" "^3.2.1"
"escape-string-regexp" "^1.0.5"
"supports-color" "^5.3.0"
"classnames@^2.2":
"integrity" "sha512-JR/iSQOSt+LQIWwrwEzJ9uk0xfN3mTVYMwt1Ir5mUcSN6pU+V4zQFFaJsclJbPuAUQH+yfWef6tm7l1quW3C8Q=="
"resolved" "https://registry.npmjs.org/classnames/-/classnames-2.2.6.tgz"
"version" "2.2.6"
"codemirror@~5.53.2":
"integrity" "sha512-wvSQKS4E+P8Fxn/AQ+tQtJnF1qH5UOlxtugFLpubEZ5jcdH2iXTVinb+Xc/4QjshuOxRm4fUsU2QPF1JJKiyXA=="
"resolved" "https://registry.npmjs.org/codemirror/-/codemirror-5.53.2.tgz"
"version" "5.53.2"
"color-convert@^1.9.0":
"integrity" "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg=="
"resolved" "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz"
"version" "1.9.3"
dependencies:
"color-name" "1.1.3"
"integrity" "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU="
"resolved" "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz"
"version" "1.1.3"
"resolved" "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz"
"version" "0.0.1"
"core-js@^1.0.0":
"resolved" "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz"
"version" "1.2.7"
"create-react-context@^0.3.0":
"integrity" "sha512-dNldIoSuNSvlTJ7slIKC/ZFGKexBMBrrcc+TTe1NdmROnaASuLPvqpwj9v4XS4uXZ8+YPu0sNmShX2rXI5LNsw=="
"resolved" "https://registry.npmjs.org/create-react-context/-/create-react-context-0.3.0.tgz"
"version" "0.3.0"
dependencies:
"gud" "^1.0.0"
"warning" "^4.0.3"
"csstype@^3.0.2":
"integrity" "sha512-+ZAmfyWMT7TiIlzdqJgjMb7S4f1beorDbWbsocyK4RaiqA5RTX3K14bnBWmmA9QEM0gRdsjyyrEmcyga8Zsxmw=="
"resolved" "https://registry.npmjs.org/csstype/-/csstype-3.0.6.tgz"
"version" "3.0.6"
"csstype@~2.6.9":
"integrity" "sha512-2mSc+VEpGPblzAxyeR+vZhJKgYg0Og0nnRi7pmRXFYYxSfnOnW8A5wwQb4n4cE2nIOzqKOAzLCaEX6aBmNEv8A=="
"resolved" "https://registry.npmjs.org/csstype/-/csstype-2.6.14.tgz"
"version" "2.6.14"
"integrity" "sha512-xz39Sb4+OaTsULgUERcCk+TJj8ylkL4aSVDQiX/ksxbELSqwkgt4d4RD7fovIdgJGSuNYqwZEiVjYY5l0ask+Q=="
"resolved" "https://registry.npmjs.org/csstype/-/csstype-2.6.9.tgz"
"version" "2.6.9"
"deep-equal@^1.1.1":
"integrity" "sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g=="
"resolved" "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.1.tgz"
"version" "1.1.1"
dependencies:
"is-arguments" "^1.0.4"
"is-date-object" "^1.0.1"
"is-regex" "^1.0.4"
"object-is" "^1.0.1"
"object-keys" "^1.1.1"
"regexp.prototype.flags" "^1.2.0"
"define-properties@^1.1.3":
"integrity" "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ=="
"resolved" "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz"
"version" "1.1.3"
dependencies:
"object-keys" "^1.0.12"
"dom-helpers@^3.4.0":
"integrity" "sha512-LnuPJ+dwqKDIyotW1VzmOZ5TONUN7CwkCR5hrgawTUbkBGYdeoNLZo6nNfGkCrjtE1nXXaj7iMMpDa8/d9WoIA=="
"resolved" "https://registry.npmjs.org/dom-helpers/-/dom-helpers-3.4.0.tgz"
"version" "3.4.0"
dependencies:
"@babel/runtime" "^7.1.2"
"dom-serializer@0":
"integrity" "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g=="
"resolved" "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz"
"version" "0.2.2"
dependencies:
"domelementtype" "^2.0.1"
"entities" "^2.0.0"
"dom4@^2.1.5":
"integrity" "sha512-JkCVGnN4ofKGbjf5Uvc8mmxaATIErKQKSgACdBXpsQ3fY6DlIpAyWfiBSrGkttATssbDCp3psiAKWXk5gmjycA=="
"resolved" "https://registry.npmjs.org/dom4/-/dom4-2.1.6.tgz"
"version" "2.1.6"
"domelementtype@^1.3.1", "domelementtype@1":
"integrity" "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w=="
"resolved" "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz"
"version" "1.3.1"
"domelementtype@^2.0.1":
"integrity" "sha512-LsTgx/L5VpD+Q8lmsXSHW2WpA+eBlZ9HPf3erD1IoPF00/3JKHZ3BknUVA2QGDNu69ZNmyFmCWBSO45XjYKC5w=="
"resolved" "https://registry.npmjs.org/domelementtype/-/domelementtype-2.1.0.tgz"
"version" "2.1.0"
"domhandler@^2.3.0":
"integrity" "sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA=="
"resolved" "https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz"
"version" "2.4.2"
dependencies:
"domelementtype" "1"
"domutils@^1.5.1":
"integrity" "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg=="
"resolved" "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz"
"version" "1.7.0"
dependencies:
"dom-serializer" "0"
"domelementtype" "1"
"encoding@^0.1.11":
"resolved" "https://registry.yarnpkg.com/encoding/-/encoding-0.1.12.tgz"
"version" "0.1.12"
dependencies:
"iconv-lite" "~0.4.13"
"entities@^1.1.1":
"integrity" "sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w=="
"resolved" "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz"
"version" "1.1.2"
"entities@^2.0.0":
"integrity" "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A=="
"resolved" "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz"
"version" "2.2.0"
"escape-string-regexp@^1.0.5":
"integrity" "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ="
"resolved" "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz"
"version" "1.0.5"
"fast-deep-equal@^3.1.1":
"integrity" "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="
"resolved" "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz"
"version" "3.1.3"
"fast-json-stable-stringify@^2.0.0":
"integrity" "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw=="
"resolved" "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz"
"version" "2.1.0"
"fbjs@^0.8.4":
"resolved" "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.17.tgz"
"version" "0.8.17"
dependencies:
"core-js" "^1.0.0"
"isomorphic-fetch" "^2.1.1"
"loose-envify" "^1.0.0"
"object-assign" "^4.1.0"
"promise" "^7.1.1"
"setimmediate" "^1.0.5"
"ua-parser-js" "^0.7.18"
"integrity" "sha512-vJujYSIyT30iDoaoeigNAxX4yB1RUrh+N2ZMhIElMr3BvCuGXOw7XNJMEEJkDUeamK2Rnb/IKFGKRKlTWIGRWA=="
"resolved" "https://registry.npmjs.org/free-style/-/free-style-3.1.0.tgz"
"version" "3.1.0"
"fs.realpath@^1.0.0":
"resolved" "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz"
"version" "1.0.0"
"function-bind@^1.1.1":
"integrity" "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A=="
"resolved" "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz"
"version" "1.1.1"
"get-intrinsic@^1.0.2":
"integrity" "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q=="
"resolved" "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz"
"version" "1.1.1"
dependencies:
"function-bind" "^1.1.1"
"has" "^1.0.3"
"has-symbols" "^1.0.1"
"glob@^7.1.3":
"resolved" "https://registry.yarnpkg.com/glob/-/glob-7.1.4.tgz"
"version" "7.1.4"
dependencies:
"fs.realpath" "^1.0.0"
"inflight" "^1.0.4"
"inherits" "2"
"minimatch" "^3.0.4"
"once" "^1.3.0"
"path-is-absolute" "^1.0.0"
"gud@^1.0.0":
"integrity" "sha512-zGEOVKFM5sVPPrYs7J5/hYEw2Pof8KCyOwyhG8sAF26mCAeUFAcYPu1mwB7hhpIP29zOIBaDqwuHdLp0jvZXjw=="
"resolved" "https://registry.npmjs.org/gud/-/gud-1.0.0.tgz"
"version" "1.0.0"
"has-flag@^3.0.0":
"integrity" "sha1-tdRU3CGZriJWmfNGfloH87lVuv0="
"resolved" "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz"
"version" "3.0.0"
"has-symbols@^1.0.1":
"integrity" "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg=="
"resolved" "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz"
"version" "1.0.1"
"has@^1.0.3":
"integrity" "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw=="
"resolved" "https://registry.npmjs.org/has/-/has-1.0.3.tgz"
"version" "1.0.3"
dependencies:
"function-bind" "^1.1.1"
"htmlparser2@^3.10.0":
"integrity" "sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ=="
"resolved" "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.10.1.tgz"
"version" "3.10.1"
dependencies:
"domelementtype" "^1.3.1"
"domhandler" "^2.3.0"
"domutils" "^1.5.1"
"entities" "^1.1.1"
"inherits" "^2.0.1"
"readable-stream" "^3.1.1"
"iconv-lite@~0.4.13":
"resolved" "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz"
"version" "0.4.24"
dependencies:
"safer-buffer" ">= 2.1.2 < 3"
"inflight@^1.0.4":
"resolved" "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz"
"version" "1.0.6"
dependencies:
"once" "^1.3.0"
"wrappy" "1"
"inherits@^2.0.1", "inherits@^2.0.3", "inherits@2":
"integrity" "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="
"resolved" "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz"
"version" "2.0.4"
"is-arguments@^1.0.4":
"integrity" "sha512-1Ij4lOMPl/xB5kBDn7I+b2ttPMKa8szhEIrXDuXQD/oe3HJLTLhqhgGspwgyGd6MOywBUqVvYicF72lkgDnIHg=="
"resolved" "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.0.tgz"
"version" "1.1.0"
dependencies:
"call-bind" "^1.0.0"
"is-date-object@^1.0.1":
"integrity" "sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g=="
"resolved" "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.2.tgz"
"version" "1.0.2"
"is-regex@^1.0.4":
"integrity" "sha512-axvdhb5pdhEVThqJzYXwMlVuZwC+FF2DpcOhTS+y/8jVq4trxyPgfcwIxIKiyeuLlSQYKkmUaPQJ8ZE4yNKXDg=="
"resolved" "https://registry.npmjs.org/is-regex/-/is-regex-1.1.2.tgz"
"version" "1.1.2"
dependencies:
"call-bind" "^1.0.2"
"has-symbols" "^1.0.1"
"is-stream@^1.0.1":
"resolved" "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz"
"version" "1.1.0"
"isomorphic-fetch@^2.1.1":
"resolved" "https://registry.yarnpkg.com/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz"
"version" "2.2.1"
dependencies:
"node-fetch" "^1.0.1"
"whatwg-fetch" ">=0.10.0"
"js-tokens@^3.0.0 || ^4.0.0":
"resolved" "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz"
"version" "4.0.0"
"json-schema-traverse@^0.4.1":
"integrity" "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="
"resolved" "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz"
"version" "0.4.1"
"json5@^2.1.1":
"integrity" "sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA=="
"resolved" "https://registry.npmjs.org/json5/-/json5-2.2.0.tgz"
"version" "2.2.0"
dependencies:
"minimist" "^1.2.5"
"lodash.clonedeep@^4.5.0":
"integrity" "sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8="
"resolved" "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz"
"version" "4.5.0"
"lodash.escape@^4.0.1":
"integrity" "sha1-yQRGkMIeBClL6qUXcS/e0fqI3pg="
"resolved" "https://registry.npmjs.org/lodash.escape/-/lodash.escape-4.0.1.tgz"
"version" "4.0.1"
"lodash.escaperegexp@^4.1.2":
"integrity" "sha1-ZHYsSGGAglGKw99Mz11YhtriA0c="
"resolved" "https://registry.npmjs.org/lodash.escaperegexp/-/lodash.escaperegexp-4.1.2.tgz"
"version" "4.1.2"
"lodash.isplainobject@^4.0.6":
"integrity" "sha1-fFJqUtibRcRcxpC4gWO+BJf1UMs="
"resolved" "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz"
"version" "4.0.6"
"lodash.isstring@^4.0.1":
"integrity" "sha1-1SfftUVuynzJu5XV2ur4i6VKVFE="
"resolved" "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz"
"version" "4.0.1"
"lodash.mergewith@^4.6.1":
"integrity" "sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ=="
"resolved" "https://registry.npmjs.org/lodash.mergewith/-/lodash.mergewith-4.6.2.tgz"
"version" "4.6.2"
"loose-envify@^1.0.0", "loose-envify@^1.1.0", "loose-envify@^1.4.0":
"resolved" "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz"
"version" "1.4.0"
dependencies:
"js-tokens" "^3.0.0 || ^4.0.0"
"marked@^0.8.0":
"integrity" "sha512-EGwzEeCcLniFX51DhTpmTom+dSA/MG/OBUDjnWtHbEnjAH180VzUeAw+oE4+Zv+CoYBWyRlYOTR0N8SO9R1PVw=="
"resolved" "https://registry.npmjs.org/marked/-/marked-0.8.2.tgz"
"version" "0.8.2"
"minimatch@^3.0.4":
"resolved" "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz"
"version" "3.0.4"
dependencies:
"brace-expansion" "^1.1.7"
"minimist@^1.2.5", "minimist@~1.2.0":
"integrity" "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw=="
"resolved" "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz"
"version" "1.2.5"
"moment@^2.24.0":
"integrity" "sha512-kHmoybcPV8Sqy59DwNDY3Jefr64lK/by/da0ViFcuA4DH0vQg5Q6Ze5VimxkfQNSC+Mls/Kx53s7TjP1RhFEDQ=="
"resolved" "https://registry.npmjs.org/moment/-/moment-2.29.1.tgz"
"version" "2.29.1"
"muicss@^0.10.2":
"integrity" "sha512-+SWmHooBhwTvdJnalMo1XWEgPWKwmoaMpfUujF/PyueYk4v04kxkqIbCAMT2HBCBFuVRT8Gx/vnb1XdHCS2U+Q=="
"resolved" "https://registry.npmjs.org/muicss/-/muicss-0.10.2.tgz"
"version" "0.10.2"
dependencies:
"react-addons-shallow-compare" "^15.6.2"
"node-fetch@^1.0.1":
"resolved" "https://registry.yarnpkg.com/node-fetch/-/node-fetch-1.7.3.tgz"
"version" "1.7.3"
dependencies:
"encoding" "^0.1.11"