-
Notifications
You must be signed in to change notification settings - Fork 3
/
package-lock.json
3357 lines (3357 loc) · 128 KB
/
package-lock.json
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
{
"name": "ijab",
"version": "3.05",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "ijab",
"version": "3.05",
"license": "BSD-3-Clause",
"dependencies": {
"@jupyterlab/application": "^2.0.0",
"@jupyterlab/apputils": "^2.0.0",
"@jupyterlab/filebrowser": "^2.0.0",
"@jupyterlab/mainmenu": "^2.0.0",
"@phosphor/coreutils": "^1.3.0",
"@phosphor/messaging": "^1.2.2",
"@phosphor/widgets": "^1.7.0",
"@types/muicss": "^0.9.1",
"muicss": "^0.10.2",
"react": "^16.9.0"
},
"devDependencies": {
"@types/node": "^10.12.1",
"rimraf": "^2.6.1",
"typescript": "3.5.3"
}
},
"node_modules/@babel/runtime": {
"version": "7.12.13",
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.13.tgz",
"integrity": "sha512-8+3UMPBrjFa/6TtKi/7sehPKqfAm4g6K+YQjyyFOLUTxzOngcRZTlAVY8sc2CORJYqdHQY8gRPHmn+qo15rCBw==",
"dependencies": {
"regenerator-runtime": "^0.13.4"
}
},
"node_modules/@blueprintjs/core": {
"version": "3.38.2",
"resolved": "https://registry.npmjs.org/@blueprintjs/core/-/core-3.38.2.tgz",
"integrity": "sha512-YOTZ8UkaKCjP/g8fm9e2py5/9TvAWHwhhDQAH30NV53FD5oBOjYu0+mUU1hRys9TrBflvA3cQn8EgHRP1y/K9A==",
"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"
},
"bin": {
"upgrade-blueprint-2.0.0-rename": "scripts/upgrade-blueprint-2.0.0-rename.sh",
"upgrade-blueprint-3.0.0-rename": "scripts/upgrade-blueprint-3.0.0-rename.sh"
},
"peerDependencies": {
"react": "^15.3.0 || 16 || 17",
"react-dom": "^15.3.0 || 16 || 17"
}
},
"node_modules/@blueprintjs/icons": {
"version": "3.24.0",
"resolved": "https://registry.npmjs.org/@blueprintjs/icons/-/icons-3.24.0.tgz",
"integrity": "sha512-OvDDI5EUueS1Y3t594iS8LAGoHhLhYjC2GuN/01a85n+ASLSp0jf0/+uix2JeCOj41iTdRRCINbWuRwVQNNGPw==",
"dependencies": {
"classnames": "^2.2",
"tslib": "~1.13.0"
}
},
"node_modules/@blueprintjs/select": {
"version": "3.15.4",
"resolved": "https://registry.npmjs.org/@blueprintjs/select/-/select-3.15.4.tgz",
"integrity": "sha512-TsDDn5Pp39Bazv1Spu8evALKpBjQ5j+5SOlCBuXokMWcFI99RekG5jI9fYQKsOlyvXGWxazMG/vsIuIf5tXKoA==",
"dependencies": {
"@blueprintjs/core": "^3.38.2",
"classnames": "^2.2",
"tslib": "~1.13.0"
},
"peerDependencies": {
"react": "^15.3.0 || 16 || 17",
"react-dom": "^15.3.0 || 16 || 17"
}
},
"node_modules/@fortawesome/fontawesome-free": {
"version": "5.15.2",
"resolved": "https://registry.yarnpkg.com/@fortawesome/fontawesome-free/-/fontawesome-free-5.15.2.tgz",
"integrity": "sha512-7l/AX41m609L/EXI9EKH3Vs3v0iA8tKlIOGtw+kgcoanI7p+e4I4GYLqW3UXWiTnjSFymKSmTTPKYrivzbxxqA==",
"hasInstallScript": true,
"license": "(CC-BY-4.0 AND OFL-1.1 AND MIT)",
"engines": {
"node": ">=6"
}
},
"node_modules/@jupyterlab/application": {
"version": "2.2.6",
"resolved": "https://registry.npmjs.org/@jupyterlab/application/-/application-2.2.6.tgz",
"integrity": "sha512-pW/Cu+t3CYii52YncrbcRWSfAFTIlsDy8yMxgYqkG6TSsImca3Rix3o69jTu264Ct2UQzEWP4+6u2IqF5wziuw==",
"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"
}
},
"node_modules/@jupyterlab/apputils": {
"version": "2.2.6",
"resolved": "https://registry.npmjs.org/@jupyterlab/apputils/-/apputils-2.2.6.tgz",
"integrity": "sha512-aWg0c6edfQC6b1sLFskirG+LqH1aGKnVGj7R7HR1loyOLVVq/HpZ9wkPZLCh8Gi1Wy4Tqvm2R46glmuu84W8xA==",
"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"
}
},
"node_modules/@jupyterlab/apputils/node_modules/react": {
"version": "16.9.0",
"resolved": "https://registry.npmjs.org/react/-/react-16.9.0.tgz",
"integrity": "sha512-+7LQnFBwkiw+BobzOF6N//BdoNw0ouwmSJTEm9cglOOmsg/TMiFHZLe2sEoN5M7LgJTj9oHH0gxklfnQe66S1w==",
"dependencies": {
"loose-envify": "^1.1.0",
"object-assign": "^4.1.1",
"prop-types": "^15.6.2"
},
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/@jupyterlab/codeeditor": {
"version": "2.2.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/codeeditor/-/codeeditor-2.2.5.tgz",
"integrity": "sha512-ktc5e/30aabx0GwFBiiNOimtBoDx+ZFWkHeKg1ylpHASGgdQt6Km3E+TQARzFWbwkShyc7WFJySK1ES/uimDVg==",
"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"
}
},
"node_modules/@jupyterlab/codemirror": {
"version": "2.2.4",
"resolved": "https://registry.npmjs.org/@jupyterlab/codemirror/-/codemirror-2.2.4.tgz",
"integrity": "sha512-arWSgzZxCyLSOGFQvplxnIRdWXJ+VD2skb9OX/Fa/uqknpeyMvGBX5RkaX+edCMjlRfytkWPKlxvMcPgeMVP/Q==",
"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"
}
},
"node_modules/@jupyterlab/codemirror/node_modules/react": {
"version": "16.9.0",
"resolved": "https://registry.npmjs.org/react/-/react-16.9.0.tgz",
"integrity": "sha512-+7LQnFBwkiw+BobzOF6N//BdoNw0ouwmSJTEm9cglOOmsg/TMiFHZLe2sEoN5M7LgJTj9oHH0gxklfnQe66S1w==",
"dependencies": {
"loose-envify": "^1.1.0",
"object-assign": "^4.1.1",
"prop-types": "^15.6.2"
},
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/@jupyterlab/coreutils": {
"version": "4.2.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/coreutils/-/coreutils-4.2.5.tgz",
"integrity": "sha512-dkU9aD10vthsDulq1o5CEgIu0pe84v2Krxvfu3m4EYC+pSJmGHsxc3wmnb8MQocPiMJFB79brm6zJaXiy68uWA==",
"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"
}
},
"node_modules/@jupyterlab/docmanager": {
"version": "2.2.4",
"resolved": "https://registry.npmjs.org/@jupyterlab/docmanager/-/docmanager-2.2.4.tgz",
"integrity": "sha512-60xRy552l2g7qRpJ+qwVlT/J1isJZikf3g5U2e8qaBwabtb+6UcNGkwIGYr5NSYY8CqDZhtgDVrU/VTI3aOH+w==",
"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"
}
},
"node_modules/@jupyterlab/docmanager/node_modules/react": {
"version": "16.9.0",
"resolved": "https://registry.npmjs.org/react/-/react-16.9.0.tgz",
"integrity": "sha512-+7LQnFBwkiw+BobzOF6N//BdoNw0ouwmSJTEm9cglOOmsg/TMiFHZLe2sEoN5M7LgJTj9oHH0gxklfnQe66S1w==",
"dependencies": {
"loose-envify": "^1.1.0",
"object-assign": "^4.1.1",
"prop-types": "^15.6.2"
},
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/@jupyterlab/docregistry": {
"version": "2.2.4",
"resolved": "https://registry.npmjs.org/@jupyterlab/docregistry/-/docregistry-2.2.4.tgz",
"integrity": "sha512-xmwptfXKr7QkpnNOaLVB/PIWaoZ8JpRCY/cKwQSXq42wkpY7D4iCJyX0iGsPqapJHYOq6g0BnQm195ETTYs/BQ==",
"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"
}
},
"node_modules/@jupyterlab/filebrowser": {
"version": "2.2.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/filebrowser/-/filebrowser-2.2.5.tgz",
"integrity": "sha512-Ysem2dnxAZ1L6BX31idUHptMIFTCEvDqCkhHKsLF6nnEgZT4ZB5UvyDCu8oWMVVmnMTl6F72ky/qOHV0WOl9rg==",
"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"
}
},
"node_modules/@jupyterlab/filebrowser/node_modules/react": {
"version": "16.9.0",
"resolved": "https://registry.npmjs.org/react/-/react-16.9.0.tgz",
"integrity": "sha512-+7LQnFBwkiw+BobzOF6N//BdoNw0ouwmSJTEm9cglOOmsg/TMiFHZLe2sEoN5M7LgJTj9oHH0gxklfnQe66S1w==",
"dependencies": {
"loose-envify": "^1.1.0",
"object-assign": "^4.1.1",
"prop-types": "^15.6.2"
},
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/@jupyterlab/mainmenu": {
"version": "2.2.4",
"resolved": "https://registry.npmjs.org/@jupyterlab/mainmenu/-/mainmenu-2.2.4.tgz",
"integrity": "sha512-5EvpMJ+XTeI8YH3vNldCl/epjk8sEvEvKusuifUc1xXLqhX0YpPRL0ebg4NknX2qgeFag94KfQnnGs+pEoWUbg==",
"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"
}
},
"node_modules/@jupyterlab/nbformat": {
"version": "2.2.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/nbformat/-/nbformat-2.2.5.tgz",
"integrity": "sha512-NXxNDMB0n0GJS634KkqZBAS9tAFkkLubv2YfPkWLOjlYHWPclknQfMLWpjn2VTSdj7C+xk6qqsv4YLziRn5BPA==",
"dependencies": {
"@lumino/coreutils": "^1.4.2"
}
},
"node_modules/@jupyterlab/observables": {
"version": "3.2.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/observables/-/observables-3.2.5.tgz",
"integrity": "sha512-21y72DScc4EsfcPpVgm4VLUcUWi2AvHuBOtrjPpNxrvrl3hNqTVNOOtX1lEeqVOzdWEJAJ7jeEe96rTkY5tptQ==",
"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"
}
},
"node_modules/@jupyterlab/rendermime": {
"version": "2.2.4",
"resolved": "https://registry.npmjs.org/@jupyterlab/rendermime/-/rendermime-2.2.4.tgz",
"integrity": "sha512-XhBsUQdyidYrNY71+TZUGJSg/mf3kM90lSwIw+DgHSJJz/BXO5bSyKP5XnTSeKYoz40Ko1PCyRyCmKpmI51J6A==",
"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"
}
},
"node_modules/@jupyterlab/rendermime-interfaces": {
"version": "2.2.1",
"resolved": "https://registry.npmjs.org/@jupyterlab/rendermime-interfaces/-/rendermime-interfaces-2.2.1.tgz",
"integrity": "sha512-tjwt3dFfjguV3AeLKhIaCACzaTr2I6F34c4ArJ95WCCRx2DmrRMYFgppLlBo9rKa7BiYeQWZD/lYWvL+GnQZEA==",
"dependencies": {
"@lumino/coreutils": "^1.4.2",
"@lumino/widgets": "^1.11.1"
}
},
"node_modules/@jupyterlab/services": {
"version": "5.2.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/services/-/services-5.2.5.tgz",
"integrity": "sha512-vhWt+rbDUe3SRvv1GD1WOjsDNhDz2lg33xdsT/+WObZRqeQ9CgzUF2K8Zah9UaiyGmTM3tpUUCTIQ62hNi5wrA==",
"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"
}
},
"node_modules/@jupyterlab/settingregistry": {
"version": "2.2.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/settingregistry/-/settingregistry-2.2.5.tgz",
"integrity": "sha512-LoKa27F1WNmeMT168TYo+MgjsYsVawKCZbmU7OGQS6h6J5dx0xQBQvE38NkhCsjnPYyUv4tYmGIFyHQceCDDaA==",
"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"
}
},
"node_modules/@jupyterlab/statedb": {
"version": "2.2.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/statedb/-/statedb-2.2.5.tgz",
"integrity": "sha512-+hW1bQ6+p18SNZvjM7hZMPv7odkLWkAp17qoRPtky3j+CFnZW7m49U0XA8QezjLBiX9QdHFYgoUhIZEmrKcPDg==",
"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"
}
},
"node_modules/@jupyterlab/statusbar": {
"version": "2.2.4",
"resolved": "https://registry.npmjs.org/@jupyterlab/statusbar/-/statusbar-2.2.4.tgz",
"integrity": "sha512-Wyhd5EZYd5Zs4oAsnG1Dt57wE4jUajkGxwr4SSotXXzccmJOLiZsvmNxPuftcZJHqbisG7EweaZXVlKMnb3SsA==",
"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"
}
},
"node_modules/@jupyterlab/statusbar/node_modules/react": {
"version": "16.9.0",
"resolved": "https://registry.npmjs.org/react/-/react-16.9.0.tgz",
"integrity": "sha512-+7LQnFBwkiw+BobzOF6N//BdoNw0ouwmSJTEm9cglOOmsg/TMiFHZLe2sEoN5M7LgJTj9oHH0gxklfnQe66S1w==",
"dependencies": {
"loose-envify": "^1.1.0",
"object-assign": "^4.1.1",
"prop-types": "^15.6.2"
},
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/@jupyterlab/ui-components": {
"version": "2.2.4",
"resolved": "https://registry.npmjs.org/@jupyterlab/ui-components/-/ui-components-2.2.4.tgz",
"integrity": "sha512-8OqmlDIlf3OHrKqTGHLBbzY6gDyTGT91o5LSyLuOBhIF2TvPorBYnxWk883pO7n4rSVhZbafBb0U3Hl3X9uT3Q==",
"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"
},
"peerDependencies": {
"react": "~16.9.0"
}
},
"node_modules/@jupyterlab/ui-components/node_modules/react": {
"version": "16.9.0",
"resolved": "https://registry.npmjs.org/react/-/react-16.9.0.tgz",
"integrity": "sha512-+7LQnFBwkiw+BobzOF6N//BdoNw0ouwmSJTEm9cglOOmsg/TMiFHZLe2sEoN5M7LgJTj9oHH0gxklfnQe66S1w==",
"dependencies": {
"loose-envify": "^1.1.0",
"object-assign": "^4.1.1",
"prop-types": "^15.6.2"
},
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/@lumino/algorithm": {
"version": "1.3.3",
"resolved": "https://registry.yarnpkg.com/@lumino/algorithm/-/algorithm-1.3.3.tgz",
"integrity": "sha512-I2BkssbOSLq3rDjgAC3fzf/zAIwkRUnAh60MO0lYcaFdSGyI15w4K3gwZHGIO0p9cKEiNHLXKEODGmOjMLOQ3g==",
"license": "BSD-3-Clause"
},
"node_modules/@lumino/application": {
"version": "1.15.0",
"resolved": "https://registry.yarnpkg.com/@lumino/application/-/application-1.15.0.tgz",
"integrity": "sha512-W/12+UFk1oBdJ793L3NegQvt0T355k64fPmDVzPhM48TW8vM/0tDc+zBx1KShn52eRMTrVBDc2cG5t6C5/XF1w==",
"license": "BSD-3-Clause",
"dependencies": {
"@lumino/commands": "^1.12.0",
"@lumino/coreutils": "^1.5.3",
"@lumino/widgets": "^1.18.0"
}
},
"node_modules/@lumino/collections": {
"version": "1.3.3",
"resolved": "https://registry.yarnpkg.com/@lumino/collections/-/collections-1.3.3.tgz",
"integrity": "sha512-vN3GSV5INkgM6tMLd+WqTgaPnQNTY7L/aFUtTOC8TJQm+vg1eSmR4fNXsoGHM3uA85ctSJThvdZr5triu1Iajg==",
"license": "BSD-3-Clause",
"dependencies": {
"@lumino/algorithm": "^1.3.3"
}
},
"node_modules/@lumino/commands": {
"version": "1.12.0",
"resolved": "https://registry.yarnpkg.com/@lumino/commands/-/commands-1.12.0.tgz",
"integrity": "sha512-5TFlhDzZk1X8rCBjhh0HH3j6CcJ03mx2Pd/1rGa7MB5R+3+yYYk+gTlfHRqsxdehNRmiISaHRSrMnW8bynW7ZQ==",
"license": "BSD-3-Clause",
"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"
}
},
"node_modules/@lumino/coreutils": {
"version": "1.5.3",
"resolved": "https://registry.yarnpkg.com/@lumino/coreutils/-/coreutils-1.5.3.tgz",
"integrity": "sha512-G72jJ6sgOwAUuilz+cri7LpHIJxllK+qz+YZUC3fyyWHK7oRlZemcc43jZAVE+tagTdMxKYSQWNIVzM5lI8sWw==",
"license": "BSD-3-Clause",
"peerDependencies": {
"crypto": "1.0.1"
}
},
"node_modules/@lumino/disposable": {
"version": "1.4.3",
"resolved": "https://registry.yarnpkg.com/@lumino/disposable/-/disposable-1.4.3.tgz",
"integrity": "sha512-zKQ9N2AEGcYpG6PJkeMWQXvoXU9w1ocji78z+fboM/SmSgtOIVGeQt3fZeldymf0XrlOPpNXs1ZFg54yWUMnXA==",
"license": "BSD-3-Clause",
"dependencies": {
"@lumino/algorithm": "^1.3.3",
"@lumino/signaling": "^1.4.3"
}
},
"node_modules/@lumino/domutils": {
"version": "1.2.3",
"resolved": "https://registry.yarnpkg.com/@lumino/domutils/-/domutils-1.2.3.tgz",
"integrity": "sha512-SEi8WZSy+DWMkL5CfAY78MHbi3x83AVmRFxjs9+A6qsFPde+Hr1I4DNtLsSDmfAWsobHHgBnjyNp2ZkQEq0IEA==",
"license": "BSD-3-Clause"
},
"node_modules/@lumino/dragdrop": {
"version": "1.7.1",
"resolved": "https://registry.yarnpkg.com/@lumino/dragdrop/-/dragdrop-1.7.1.tgz",
"integrity": "sha512-IeSSOTmpqBSWz+EVsbGVeHe/KIaHaUsQXZ4BJCEbCKgNGHbqMfUOtlneiKq7rEhZGF4wYs7gWWjNhMVZbUGO9Q==",
"license": "BSD-3-Clause",
"dependencies": {
"@lumino/coreutils": "^1.5.3",
"@lumino/disposable": "^1.4.3"
}
},
"node_modules/@lumino/keyboard": {
"version": "1.2.3",
"resolved": "https://registry.yarnpkg.com/@lumino/keyboard/-/keyboard-1.2.3.tgz",
"integrity": "sha512-ibS0sz0VABeuJXx2JVSz36sUBMUOcQNCNPybVhwzN/GkJFs0dnDKluMu+3Px0tkB2y33bGPZU/RLZY1Xj/faEA==",
"license": "BSD-3-Clause"
},
"node_modules/@lumino/messaging": {
"version": "1.4.3",
"resolved": "https://registry.yarnpkg.com/@lumino/messaging/-/messaging-1.4.3.tgz",
"integrity": "sha512-wa2Pj2KOuLNLS2n0wVBzUVFGbvjL1FLbuCOAUEYfN6xXVleqqtGGzd08uTF7ebu01KCO3VQ38+dkvoaM/C2qPw==",
"license": "BSD-3-Clause",
"dependencies": {
"@lumino/algorithm": "^1.3.3",
"@lumino/collections": "^1.3.3"
}
},
"node_modules/@lumino/polling": {
"version": "1.3.3",
"resolved": "https://registry.yarnpkg.com/@lumino/polling/-/polling-1.3.3.tgz",
"integrity": "sha512-uMRi6sPRnKW8m38WUY3qox1jxwzpvceafUbDJATCwyrZ48+YoY5Fxfmd9dqwioHS1aq9np5c6L35a9ZGuS0Maw==",
"license": "BSD-3-Clause",
"dependencies": {
"@lumino/coreutils": "^1.5.3",
"@lumino/disposable": "^1.4.3",
"@lumino/signaling": "^1.4.3"
}
},
"node_modules/@lumino/properties": {
"version": "1.2.3",
"resolved": "https://registry.yarnpkg.com/@lumino/properties/-/properties-1.2.3.tgz",
"integrity": "sha512-dbS9V/L+RpQoRjxHMAGh1JYoXaLA6F7xkVbg/vmYXqdXZ7DguO5C3Qteu9tNp7Z7Q31TqFWUCrniTI9UJiJCoQ==",
"license": "BSD-3-Clause"
},
"node_modules/@lumino/signaling": {
"version": "1.4.3",
"resolved": "https://registry.yarnpkg.com/@lumino/signaling/-/signaling-1.4.3.tgz",
"integrity": "sha512-6clc8SMcH0tyKXIX31xw6sxjxJl5hj4YRd1DTHTS62cegQ0FkO8JjJeuv+Nc1pgTg6nEAf65aSOHpUdsFHDAvQ==",
"license": "BSD-3-Clause",
"dependencies": {
"@lumino/algorithm": "^1.3.3"
}
},
"node_modules/@lumino/virtualdom": {
"version": "1.8.0",
"resolved": "https://registry.yarnpkg.com/@lumino/virtualdom/-/virtualdom-1.8.0.tgz",
"integrity": "sha512-X/1b8b7TxB9tb4+xQiS8oArcA/AK7NBZrsg2dzu/gHa3JC45R8nzQ+0tObD8Nd0gF/e9w9Ps9M62rLfefcbbKw==",
"license": "BSD-3-Clause",
"dependencies": {
"@lumino/algorithm": "^1.3.3"
}
},
"node_modules/@lumino/widgets": {
"version": "1.18.0",
"resolved": "https://registry.yarnpkg.com/@lumino/widgets/-/widgets-1.18.0.tgz",
"integrity": "sha512-8i10njkGjctuXrbaoV2dRI2rVUaL7eA5djtHj36pX9cALwciEPHNecF6hoZXmQ4ODv6LTwhr87Uz8LT4Aan77A==",
"license": "BSD-3-Clause",
"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"
}
},
"node_modules/@phosphor/algorithm": {
"version": "1.2.0",
"resolved": "https://registry.yarnpkg.com/@phosphor/algorithm/-/algorithm-1.2.0.tgz",
"license": "BSD-3-Clause"
},
"node_modules/@phosphor/collections": {
"version": "1.2.0",
"resolved": "https://registry.yarnpkg.com/@phosphor/collections/-/collections-1.2.0.tgz",
"license": "BSD-3-Clause",
"dependencies": {
"@phosphor/algorithm": "^1.2.0"
}
},
"node_modules/@phosphor/commands": {
"version": "1.7.0",
"resolved": "https://registry.yarnpkg.com/@phosphor/commands/-/commands-1.7.0.tgz",
"license": "BSD-3-Clause",
"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"
}
},
"node_modules/@phosphor/coreutils": {
"version": "1.3.1",
"resolved": "https://registry.yarnpkg.com/@phosphor/coreutils/-/coreutils-1.3.1.tgz",
"license": "BSD-3-Clause"
},
"node_modules/@phosphor/disposable": {
"version": "1.3.0",
"resolved": "https://registry.yarnpkg.com/@phosphor/disposable/-/disposable-1.3.0.tgz",
"license": "BSD-3-Clause",
"dependencies": {
"@phosphor/algorithm": "^1.2.0",
"@phosphor/signaling": "^1.3.0"
}
},
"node_modules/@phosphor/domutils": {
"version": "1.1.3",
"resolved": "https://registry.yarnpkg.com/@phosphor/domutils/-/domutils-1.1.3.tgz",
"license": "BSD-3-Clause"
},
"node_modules/@phosphor/dragdrop": {
"version": "1.4.0",
"resolved": "https://registry.yarnpkg.com/@phosphor/dragdrop/-/dragdrop-1.4.0.tgz",
"license": "BSD-3-Clause",
"dependencies": {
"@phosphor/coreutils": "^1.3.1",
"@phosphor/disposable": "^1.3.0"
}
},
"node_modules/@phosphor/keyboard": {
"version": "1.1.3",
"resolved": "https://registry.yarnpkg.com/@phosphor/keyboard/-/keyboard-1.1.3.tgz",
"license": "BSD-3-Clause"
},
"node_modules/@phosphor/messaging": {
"version": "1.3.0",
"resolved": "https://registry.yarnpkg.com/@phosphor/messaging/-/messaging-1.3.0.tgz",
"license": "BSD-3-Clause",
"dependencies": {
"@phosphor/algorithm": "^1.2.0",
"@phosphor/collections": "^1.2.0"
}
},
"node_modules/@phosphor/properties": {
"version": "1.1.3",
"resolved": "https://registry.yarnpkg.com/@phosphor/properties/-/properties-1.1.3.tgz",
"license": "BSD-3-Clause"
},
"node_modules/@phosphor/signaling": {
"version": "1.3.0",
"resolved": "https://registry.yarnpkg.com/@phosphor/signaling/-/signaling-1.3.0.tgz",
"license": "BSD-3-Clause",
"dependencies": {
"@phosphor/algorithm": "^1.2.0"
}
},
"node_modules/@phosphor/virtualdom": {
"version": "1.2.0",
"resolved": "https://registry.yarnpkg.com/@phosphor/virtualdom/-/virtualdom-1.2.0.tgz",
"license": "BSD-3-Clause",
"dependencies": {
"@phosphor/algorithm": "^1.2.0"
}
},
"node_modules/@phosphor/widgets": {
"version": "1.9.0",
"resolved": "https://registry.yarnpkg.com/@phosphor/widgets/-/widgets-1.9.0.tgz",
"license": "BSD-3-Clause",
"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"
}
},
"node_modules/@types/dom4": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/@types/dom4/-/dom4-2.0.1.tgz",
"integrity": "sha512-kSkVAvWmMZiCYtvqjqQEwOmvKwcH+V4uiv3qPQ8pAh1Xl39xggGEo8gHUqV4waYGHezdFw0rKBR8Jt0CrQSDZA=="
},
"node_modules/@types/muicss": {
"version": "0.9.1",
"resolved": "https://registry.yarnpkg.com/@types/muicss/-/muicss-0.9.1.tgz",
"license": "MIT",
"dependencies": {
"@types/react": "*"
}
},
"node_modules/@types/node": {
"version": "10.14.15",
"resolved": "https://registry.yarnpkg.com/@types/node/-/node-10.14.15.tgz",
"dev": true,
"license": "MIT"
},
"node_modules/@types/prop-types": {
"version": "15.7.1",
"resolved": "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.1.tgz",
"license": "MIT"
},
"node_modules/@types/react": {
"version": "16.9.56",
"resolved": "https://registry.npmjs.org/@types/react/-/react-16.9.56.tgz",
"integrity": "sha512-gIkl4J44G/qxbuC6r2Xh+D3CGZpJ+NdWTItAPmZbR5mUS+JQ8Zvzpl0ea5qT/ZT3ZNTUcDKUVqV3xBE8wv/DyQ==",
"dependencies": {
"@types/prop-types": "*",
"csstype": "^3.0.2"
}
},
"node_modules/@types/react/node_modules/csstype": {
"version": "3.0.6",
"resolved": "https://registry.npmjs.org/csstype/-/csstype-3.0.6.tgz",
"integrity": "sha512-+ZAmfyWMT7TiIlzdqJgjMb7S4f1beorDbWbsocyK4RaiqA5RTX3K14bnBWmmA9QEM0gRdsjyyrEmcyga8Zsxmw=="
},
"node_modules/ajv": {
"version": "6.12.6",
"resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
"integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
"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"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/epoberezkin"
}
},
"node_modules/ansi-styles": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
"integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
"dependencies": {
"color-convert": "^1.9.0"
},
"engines": {
"node": ">=4"
}
},
"node_modules/array-uniq": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz",
"integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=",
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/asap": {
"version": "2.0.6",
"resolved": "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz",
"license": "MIT"
},
"node_modules/balanced-match": {
"version": "1.0.0",
"resolved": "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz",
"dev": true,
"license": "MIT"
},
"node_modules/brace-expansion": {
"version": "1.1.11",
"resolved": "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz",
"dev": true,
"license": "MIT",
"dependencies": {
"balanced-match": "^1.0.0",
"concat-map": "0.0.1"
}
},
"node_modules/call-bind": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz",
"integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==",
"dependencies": {
"function-bind": "^1.1.1",
"get-intrinsic": "^1.0.2"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/chalk": {
"version": "2.4.2",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
"integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
"dependencies": {
"ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5",
"supports-color": "^5.3.0"
},
"engines": {
"node": ">=4"
}
},
"node_modules/classnames": {
"version": "2.2.6",
"resolved": "https://registry.npmjs.org/classnames/-/classnames-2.2.6.tgz",
"integrity": "sha512-JR/iSQOSt+LQIWwrwEzJ9uk0xfN3mTVYMwt1Ir5mUcSN6pU+V4zQFFaJsclJbPuAUQH+yfWef6tm7l1quW3C8Q=="
},
"node_modules/codemirror": {
"version": "5.53.2",
"resolved": "https://registry.npmjs.org/codemirror/-/codemirror-5.53.2.tgz",
"integrity": "sha512-wvSQKS4E+P8Fxn/AQ+tQtJnF1qH5UOlxtugFLpubEZ5jcdH2iXTVinb+Xc/4QjshuOxRm4fUsU2QPF1JJKiyXA=="
},
"node_modules/color-convert": {
"version": "1.9.3",
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
"integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
"dependencies": {
"color-name": "1.1.3"
}
},
"node_modules/color-name": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
"integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU="
},
"node_modules/concat-map": {
"version": "0.0.1",
"resolved": "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz",
"dev": true,
"license": "MIT"
},
"node_modules/core-js": {
"version": "1.2.7",
"resolved": "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz",
"license": "MIT"
},
"node_modules/create-react-context": {
"version": "0.3.0",
"resolved": "https://registry.npmjs.org/create-react-context/-/create-react-context-0.3.0.tgz",
"integrity": "sha512-dNldIoSuNSvlTJ7slIKC/ZFGKexBMBrrcc+TTe1NdmROnaASuLPvqpwj9v4XS4uXZ8+YPu0sNmShX2rXI5LNsw==",
"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"
}
},
"node_modules/csstype": {
"version": "2.6.14",
"resolved": "https://registry.npmjs.org/csstype/-/csstype-2.6.14.tgz",
"integrity": "sha512-2mSc+VEpGPblzAxyeR+vZhJKgYg0Og0nnRi7pmRXFYYxSfnOnW8A5wwQb4n4cE2nIOzqKOAzLCaEX6aBmNEv8A=="
},
"node_modules/deep-equal": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.1.tgz",
"integrity": "sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==",
"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"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/define-properties": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz",
"integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==",
"dependencies": {
"object-keys": "^1.0.12"
},
"engines": {
"node": ">= 0.4"
}
},
"node_modules/dom-helpers": {
"version": "3.4.0",
"resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-3.4.0.tgz",
"integrity": "sha512-LnuPJ+dwqKDIyotW1VzmOZ5TONUN7CwkCR5hrgawTUbkBGYdeoNLZo6nNfGkCrjtE1nXXaj7iMMpDa8/d9WoIA==",
"dependencies": {
"@babel/runtime": "^7.1.2"
}
},
"node_modules/dom-serializer": {
"version": "0.2.2",
"resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz",
"integrity": "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==",
"dependencies": {
"domelementtype": "^2.0.1",
"entities": "^2.0.0"
}
},
"node_modules/dom-serializer/node_modules/domelementtype": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.1.0.tgz",
"integrity": "sha512-LsTgx/L5VpD+Q8lmsXSHW2WpA+eBlZ9HPf3erD1IoPF00/3JKHZ3BknUVA2QGDNu69ZNmyFmCWBSO45XjYKC5w==",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/fb55"
}
]
},
"node_modules/dom-serializer/node_modules/entities": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz",
"integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==",
"funding": {
"url": "https://github.com/fb55/entities?sponsor=1"
}
},
"node_modules/dom4": {
"version": "2.1.6",
"resolved": "https://registry.npmjs.org/dom4/-/dom4-2.1.6.tgz",
"integrity": "sha512-JkCVGnN4ofKGbjf5Uvc8mmxaATIErKQKSgACdBXpsQ3fY6DlIpAyWfiBSrGkttATssbDCp3psiAKWXk5gmjycA=="
},
"node_modules/domelementtype": {
"version": "1.3.1",
"resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz",
"integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w=="
},
"node_modules/domhandler": {
"version": "2.4.2",
"resolved": "https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz",
"integrity": "sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==",
"dependencies": {
"domelementtype": "1"
}