-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
11247 lines (9751 loc) · 420 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
"@arcgis/core@^4.18.1":
"integrity" "sha512-Y44XzGSJrlk6r/djcpNSzK8XNt5zPHo56o5Ai3ghu3uARS9thuZIiuPs/xOufKrtWpV7GwxII5M5++dxhfDwDg=="
"resolved" "https://registry.npmjs.org/@arcgis/core/-/core-4.18.1.tgz"
"version" "4.18.1"
dependencies:
"@esri/arcgis-html-sanitizer" "~2.5.0"
"@esri/calcite-colors" "~5.0.0"
"@popperjs/core" "~2.4.4"
"focus-trap" "~6.2.2"
"moment" "~2.29.1"
"sortablejs" "~1.10.2"
"@arcgis/webpack-plugin@^4.18.0":
"integrity" "sha512-XznMyQhbfbXBI653tdgednGmCHSiFBm/Yw3CzjX0bh4U8fgGhkGA6H1NDNpes/fLCoL9lO1OhQUDQL0IYagdTA=="
"resolved" "https://registry.npmjs.org/@arcgis/webpack-plugin/-/webpack-plugin-4.18.0.tgz"
"version" "4.18.0"
dependencies:
"copy-webpack-plugin" "^6.3.2"
"file-loader" "^6.2.0"
"null-loader" "^4.0.1"
"umd-compat-loader" "^2.1.2"
"url-loader" "^4.1.1"
"@azure/ms-rest-js@^2.0.0", "@azure/ms-rest-js@^2.0.4":
"integrity" "sha512-zj9/JOSsbaJleZz9k9RXKJMBPA2NBUgsus5iZxGlhK+pDeb8M2ps+lkKhJSwLnlTUj5CvrcN3PZDF2b2nSYCQQ=="
"resolved" "https://registry.yarnpkg.com/@azure/ms-rest-js/-/ms-rest-js-2.0.5.tgz"
"version" "2.0.5"
dependencies:
"@types/node-fetch" "^2.3.7"
"@types/tunnel" "0.0.1"
"abort-controller" "^3.0.0"
"form-data" "^2.5.0"
"node-fetch" "^2.6.0"
"tough-cookie" "^3.0.1"
"tslib" "^1.10.0"
"tunnel" "0.0.6"
"uuid" "^3.3.2"
"xml2js" "^0.4.19"
"@azure/storage-blob@^10.3.0":
"integrity" "sha512-67+0EP7STy9BQgzvN1RgmSvXhxRd044eDgepX7zBp7XslBxz8YGo2cSLm9w5o5Qf1FLCRlwuziRMikaPCLMpVw=="
"resolved" "https://registry.yarnpkg.com/@azure/storage-blob/-/storage-blob-10.5.0.tgz"
"version" "10.5.0"
dependencies:
"@azure/ms-rest-js" "^2.0.0"
"events" "^3.0.0"
"tslib" "^1.9.3"
"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.8.3":
"integrity" "sha512-a9gxpmdXtZEInkCSHUJDLHZVBgb1QS0jhss4cPP93EW7s+uC5bikET2twEF3KV+7rDblJcmNvTR7VJejqd2C2g=="
"resolved" "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.8.3.tgz"
"version" "7.8.3"
dependencies:
"@babel/highlight" "^7.8.3"
"@babel/generator@^7.5.5", "@babel/generator@^7.9.0":
"integrity" "sha512-rjP8ahaDy/ouhrvCoU1E5mqaitWrxwuNGU+dy1EpaoK48jZay4MdkskKGIMHLZNewg8sAsqpGSREJwP0zH3YQA=="
"resolved" "https://registry.yarnpkg.com/@babel/generator/-/generator-7.9.4.tgz"
"version" "7.9.4"
dependencies:
"@babel/types" "^7.9.0"
"jsesc" "^2.5.1"
"lodash" "^4.17.13"
"source-map" "^0.5.0"
"@babel/helper-function-name@^7.8.3":
"integrity" "sha512-BCxgX1BC2hD/oBlIFUgOCQDOPV8nSINxCwM3o93xP4P9Fq6aV5sgv2cOOITDMtCfQ+3PvHp3l689XZvAM9QyOA=="
"resolved" "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.8.3.tgz"
"version" "7.8.3"
dependencies:
"@babel/helper-get-function-arity" "^7.8.3"
"@babel/template" "^7.8.3"
"@babel/types" "^7.8.3"
"@babel/helper-get-function-arity@^7.8.3":
"integrity" "sha512-FVDR+Gd9iLjUMY1fzE2SR0IuaJToR4RkCDARVfsBBPSP53GEqSFjD8gNyxg246VUyc/ALRxFaAK8rVG7UT7xRA=="
"resolved" "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.8.3.tgz"
"version" "7.8.3"
dependencies:
"@babel/types" "^7.8.3"
"@babel/helper-split-export-declaration@^7.8.3":
"integrity" "sha512-3x3yOeyBhW851hroze7ElzdkeRXQYQbFIb7gLK1WQYsw2GWDay5gAJNw1sWJ0VFP6z5J1whqeXH/WCdCjZv6dA=="
"resolved" "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.8.3.tgz"
"version" "7.8.3"
dependencies:
"@babel/types" "^7.8.3"
"@babel/helper-validator-identifier@^7.9.0":
"integrity" "sha512-6G8bQKjOh+of4PV/ThDm/rRqlU7+IGoJuofpagU5GlEl29Vv0RGqqt86ZGRV8ZuSOY3o+8yXl5y782SMcG7SHw=="
"resolved" "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.9.0.tgz"
"version" "7.9.0"
"@babel/highlight@^7.8.3":
"integrity" "sha512-lJZPilxX7Op3Nv/2cvFdnlepPXDxi29wxteT57Q965oc5R9v86ztx0jfxVrTcBk8C2kcPkkDa2Z4T3ZsPPVWsQ=="
"resolved" "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.9.0.tgz"
"version" "7.9.0"
dependencies:
"@babel/helper-validator-identifier" "^7.9.0"
"chalk" "^2.0.0"
"js-tokens" "^4.0.0"
"@babel/parser@^7.5.5", "@babel/parser@^7.8.6", "@babel/parser@^7.9.0":
"integrity" "sha512-bC49otXX6N0/VYhgOMh4gnP26E9xnDZK3TmbNpxYzzz9BQLBosQwfyOe9/cXUU3txYhTzLCbcqd5c8y/OmCjHA=="
"resolved" "https://registry.yarnpkg.com/@babel/parser/-/parser-7.9.4.tgz"
"version" "7.9.4"
"@babel/runtime-corejs3@^7.8.3":
"integrity" "sha512-HHxmgxbIzOfFlZ+tdeRKtaxWOMUoCG5Mu3wKeUmOxjYrwb3AAHgnmtCUbPPK11/raIWLIBK250t8E2BPO0p7jA=="
"resolved" "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.9.2.tgz"
"version" "7.9.2"
dependencies:
"core-js-pure" "^3.0.0"
"regenerator-runtime" "^0.13.4"
"@babel/runtime@^7.1.2", "@babel/runtime@^7.3.1", "@babel/runtime@^7.4.0", "@babel/runtime@^7.4.4", "@babel/runtime@^7.4.5", "@babel/runtime@^7.5.5", "@babel/runtime@^7.6.0", "@babel/runtime@^7.6.2", "@babel/runtime@^7.6.3":
"integrity" "sha512-NE2DtOdufG7R5vnfQUTehdTfNycfUANEtCa9PssN9O/xmTzP4E08UI797ixaei6hBEVL9BI/PsdJS5x7mWoB9Q=="
"resolved" "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.9.2.tgz"
"version" "7.9.2"
dependencies:
"regenerator-runtime" "^0.13.4"
"@babel/runtime@^7.11.2":
"integrity" "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA=="
"resolved" "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.12.1.tgz"
"version" "7.12.1"
dependencies:
"regenerator-runtime" "^0.13.4"
"@babel/template@^7.8.3":
"integrity" "sha512-zbMsPMy/v0PWFZEhQJ66bqjhH+z0JgMoBWuikXybgG3Gkd/3t5oQ1Rw2WQhnSrsOmsKXnZOx15tkC4qON/+JPg=="
"resolved" "https://registry.yarnpkg.com/@babel/template/-/template-7.8.6.tgz"
"version" "7.8.6"
dependencies:
"@babel/code-frame" "^7.8.3"
"@babel/parser" "^7.8.6"
"@babel/types" "^7.8.6"
"@babel/traverse@^7.5.5":
"integrity" "sha512-jAZQj0+kn4WTHO5dUZkZKhbFrqZE7K5LAQ5JysMnmvGij+wOdr+8lWqPeW0BcF4wFwrEXXtdGO7wcV6YPJcf3w=="
"resolved" "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.9.0.tgz"
"version" "7.9.0"
dependencies:
"@babel/code-frame" "^7.8.3"
"@babel/generator" "^7.9.0"
"@babel/helper-function-name" "^7.8.3"
"@babel/helper-split-export-declaration" "^7.8.3"
"@babel/parser" "^7.9.0"
"@babel/types" "^7.9.0"
"debug" "^4.1.0"
"globals" "^11.1.0"
"lodash" "^4.17.13"
"@babel/types@^7.5.5", "@babel/types@^7.8.3", "@babel/types@^7.8.6", "@babel/types@^7.9.0":
"integrity" "sha512-BS9JKfXkzzJl8RluW4JGknzpiUV7ZrvTayM6yfqLTVBEnFtyowVIOu6rqxRd5cVO6yGoWf4T8u8dgK9oB+GCng=="
"resolved" "https://registry.yarnpkg.com/@babel/types/-/types-7.9.0.tgz"
"version" "7.9.0"
dependencies:
"@babel/helper-validator-identifier" "^7.9.0"
"lodash" "^4.17.13"
"to-fast-properties" "^2.0.0"
"@betty-blocks/cli@^23.35.0":
"integrity" "sha512-QMtBOXrIdFguWTGSh+KfgLrXeVRf3MdxYZZ+8vkFWBOIl9ZwJwoeYs01PYHYYpJb6+z+8oMVzJJwGnq5ACO7Mw=="
"resolved" "https://registry.yarnpkg.com/@betty-blocks/cli/-/cli-23.35.0.tgz"
"version" "23.35.0"
dependencies:
"@azure/ms-rest-js" "^2.0.4"
"@azure/storage-blob" "^10.3.0"
"@babel/generator" "^7.5.5"
"@babel/parser" "^7.5.5"
"@babel/traverse" "^7.5.5"
"@babel/types" "^7.5.5"
"@betty-blocks/preview" "^1.1.0"
"@semantic-release/changelog" "^5.0.1"
"@semantic-release/git" "^9.0.0"
"@types/hapi__joi" "^16.0.0"
"@types/prompts" "^2.0.8"
"@types/react" "^16.9.9"
"@types/serve-handler" "^6.1.0"
"ava" "^3.7.1"
"case" "^1.6.3"
"chalk" "^2.4.2"
"commander" "^2.20.0"
"eslint-config-airbnb-base" "^14.0.0"
"eslint-config-prettier" "^6.4.0"
"eslint-plugin-import" "^2.18.2"
"eslint-plugin-prettier" "^3.1.1"
"fs-extra" "^8.1.0"
"joi" "^17.2.1"
"lodash" "^4.17.20"
"minimist" "^1.2.5"
"node-fetch" "^2.6.0"
"ora" "^5.0.0"
"prettier" "^1.18.2"
"prismjs" "^1.21.0"
"prompts" "^2.3.2"
"semver" "^6.3.0"
"serve" "^11.1.0"
"serve-handler" "^6.1.2"
"ts-node" "^8.8.2"
"tsconfig-paths" "^3.9.0"
"typescript" "^3.5.3"
"webhead" "^1.1.1"
"@betty-blocks/preview@^1.1.0":
"integrity" "sha512-Mj0L0YInSgzu4cOGBjCwKkGnGITtcPfxc8g3GBGZUX4xeyR7JZY7BGOf2cyEUB38IH5oQAWMrogRDO2LyHhtOw=="
"resolved" "https://registry.yarnpkg.com/@betty-blocks/preview/-/preview-1.1.3.tgz"
"version" "1.1.3"
dependencies:
"@material-ui/core" "^4.5.2"
"@material-ui/styles" "^4.5.2"
"@types/react-router-dom" "^5.1.2"
"eslint" "^6.6.0"
"eslint-config-airbnb" "^18.0.1"
"eslint-config-prettier" "^6.5.0"
"jss" "^10.0.0"
"react" "^16.12.0"
"react-dom" "^16.12.0"
"react-error-boundary" "^1.2.5"
"react-jss" "^10.0.0"
"react-router-dom" "^5.1.2"
"react-syntax-highlighter" "^11.0.2"
"theming" "^3.2.0"
"@commitlint/cli@^11.0.0":
"integrity" "sha512-YWZWg1DuqqO5Zjh7vUOeSX76vm0FFyz4y0cpGMFhrhvUi5unc4IVfCXZ6337R9zxuBtmveiRuuhQqnRRer+13g=="
"resolved" "https://registry.yarnpkg.com/@commitlint/cli/-/cli-11.0.0.tgz"
"version" "11.0.0"
dependencies:
"@babel/runtime" "^7.11.2"
"@commitlint/format" "^11.0.0"
"@commitlint/lint" "^11.0.0"
"@commitlint/load" "^11.0.0"
"@commitlint/read" "^11.0.0"
"chalk" "4.1.0"
"core-js" "^3.6.1"
"get-stdin" "8.0.0"
"lodash" "^4.17.19"
"resolve-from" "5.0.0"
"resolve-global" "1.0.0"
"yargs" "^15.1.0"
"@commitlint/config-angular-type-enum@^11.0.0":
"integrity" "sha512-dSyxdkU36aEgDUWBSiM5lsZ/h2K7uCyKf+A5Sf3+Z5JhcLD9GzTo5W+c8KgwTBdL39dkL7sN+EVgsXNjW99pJg=="
"resolved" "https://registry.yarnpkg.com/@commitlint/config-angular-type-enum/-/config-angular-type-enum-11.0.0.tgz"
"version" "11.0.0"
"@commitlint/config-angular@^11.0.0":
"integrity" "sha512-H8QSEOmfRsPW0Iehid5fY7NZ2HXmyKC6Q83MLFf9KRnmCcbgJtH+faECtqlvPntayO3CYbA4UenIerOaQ0vOAg=="
"resolved" "https://registry.yarnpkg.com/@commitlint/config-angular/-/config-angular-11.0.0.tgz"
"version" "11.0.0"
dependencies:
"@commitlint/config-angular-type-enum" "^11.0.0"
"@commitlint/ensure@^11.0.0":
"integrity" "sha512-/T4tjseSwlirKZdnx4AuICMNNlFvRyPQimbZIOYujp9DSO6XRtOy9NrmvWujwHsq9F5Wb80QWi4WMW6HMaENug=="
"resolved" "https://registry.yarnpkg.com/@commitlint/ensure/-/ensure-11.0.0.tgz"
"version" "11.0.0"
dependencies:
"@commitlint/types" "^11.0.0"
"lodash" "^4.17.19"
"@commitlint/execute-rule@^11.0.0":
"integrity" "sha512-g01p1g4BmYlZ2+tdotCavrMunnPFPhTzG1ZiLKTCYrooHRbmvqo42ZZn4QMStUEIcn+jfLb6BRZX3JzIwA1ezQ=="
"resolved" "https://registry.yarnpkg.com/@commitlint/execute-rule/-/execute-rule-11.0.0.tgz"
"version" "11.0.0"
"@commitlint/format@^11.0.0":
"integrity" "sha512-bpBLWmG0wfZH/svzqD1hsGTpm79TKJWcf6EXZllh2J/LSSYKxGlv967lpw0hNojme0sZd4a/97R3qA2QHWWSLg=="
"resolved" "https://registry.yarnpkg.com/@commitlint/format/-/format-11.0.0.tgz"
"version" "11.0.0"
dependencies:
"@commitlint/types" "^11.0.0"
"chalk" "^4.0.0"
"@commitlint/is-ignored@^11.0.0":
"integrity" "sha512-VLHOUBN+sOlkYC4tGuzE41yNPO2w09sQnOpfS+pSPnBFkNUUHawEuA44PLHtDvQgVuYrMAmSWFQpWabMoP5/Xg=="
"resolved" "https://registry.yarnpkg.com/@commitlint/is-ignored/-/is-ignored-11.0.0.tgz"
"version" "11.0.0"
dependencies:
"@commitlint/types" "^11.0.0"
"semver" "7.3.2"
"@commitlint/lint@^11.0.0":
"integrity" "sha512-Q8IIqGIHfwKr8ecVZyYh6NtXFmKw4YSEWEr2GJTB/fTZXgaOGtGFZDWOesCZllQ63f1s/oWJYtVv5RAEuwN8BQ=="
"resolved" "https://registry.yarnpkg.com/@commitlint/lint/-/lint-11.0.0.tgz"
"version" "11.0.0"
dependencies:
"@commitlint/is-ignored" "^11.0.0"
"@commitlint/parse" "^11.0.0"
"@commitlint/rules" "^11.0.0"
"@commitlint/types" "^11.0.0"
"@commitlint/load@^11.0.0":
"integrity" "sha512-t5ZBrtgvgCwPfxmG811FCp39/o3SJ7L+SNsxFL92OR4WQxPcu6c8taD0CG2lzOHGuRyuMxZ7ps3EbngT2WpiCg=="
"resolved" "https://registry.yarnpkg.com/@commitlint/load/-/load-11.0.0.tgz"
"version" "11.0.0"
dependencies:
"@commitlint/execute-rule" "^11.0.0"
"@commitlint/resolve-extends" "^11.0.0"
"@commitlint/types" "^11.0.0"
"chalk" "4.1.0"
"cosmiconfig" "^7.0.0"
"lodash" "^4.17.19"
"resolve-from" "^5.0.0"
"@commitlint/message@^11.0.0":
"integrity" "sha512-01ObK/18JL7PEIE3dBRtoMmU6S3ecPYDTQWWhcO+ErA3Ai0KDYqV5VWWEijdcVafNpdeUNrEMigRkxXHQLbyJA=="
"resolved" "https://registry.yarnpkg.com/@commitlint/message/-/message-11.0.0.tgz"
"version" "11.0.0"
"@commitlint/parse@^11.0.0":
"integrity" "sha512-DekKQAIYWAXIcyAZ6/PDBJylWJ1BROTfDIzr9PMVxZRxBPc1gW2TG8fLgjZfBP5mc0cuthPkVi91KQQKGri/7A=="
"resolved" "https://registry.yarnpkg.com/@commitlint/parse/-/parse-11.0.0.tgz"
"version" "11.0.0"
dependencies:
"conventional-changelog-angular" "^5.0.0"
"conventional-commits-parser" "^3.0.0"
"@commitlint/prompt-cli@^11.0.0":
"integrity" "sha512-NuihdUyrUPlajA6bA0myO0tTBk50rIoAQLufp/6jQlllqsjdrBAx5JQnzRLeEMIwVS0MeS15k5rrACS/LKtybw=="
"resolved" "https://registry.yarnpkg.com/@commitlint/prompt-cli/-/prompt-cli-11.0.0.tgz"
"version" "11.0.0"
dependencies:
"@commitlint/prompt" "^11.0.0"
"execa" "^4.0.0"
"@commitlint/prompt@^11.0.0":
"integrity" "sha512-tI7Zi3KZ9P38iR/eC1inqjYDbFE/wd6ptA10191XwljXKvgov2nz1abC+5oqJPzGTxex1VC7q/NnWlPwLM5DCg=="
"resolved" "https://registry.yarnpkg.com/@commitlint/prompt/-/prompt-11.0.0.tgz"
"version" "11.0.0"
dependencies:
"@babel/runtime" "^7.11.2"
"@commitlint/load" "^11.0.0"
"chalk" "^4.0.0"
"lodash" "^4.17.19"
"throat" "^5.0.0"
"vorpal" "^1.12.0"
"@commitlint/read@^11.0.0":
"integrity" "sha512-37V0V91GSv0aDzMzJioKpCoZw6l0shk7+tRG8RkW1GfZzUIytdg3XqJmM+IaIYpaop0m6BbZtfq+idzUwJnw7g=="
"resolved" "https://registry.yarnpkg.com/@commitlint/read/-/read-11.0.0.tgz"
"version" "11.0.0"
dependencies:
"@commitlint/top-level" "^11.0.0"
"fs-extra" "^9.0.0"
"git-raw-commits" "^2.0.0"
"@commitlint/resolve-extends@^11.0.0":
"integrity" "sha512-WinU6Uv6L7HDGLqn/To13KM1CWvZ09VHZqryqxXa1OY+EvJkfU734CwnOEeNlSCK7FVLrB4kmodLJtL1dkEpXw=="
"resolved" "https://registry.yarnpkg.com/@commitlint/resolve-extends/-/resolve-extends-11.0.0.tgz"
"version" "11.0.0"
dependencies:
"import-fresh" "^3.0.0"
"lodash" "^4.17.19"
"resolve-from" "^5.0.0"
"resolve-global" "^1.0.0"
"@commitlint/rules@^11.0.0":
"integrity" "sha512-2hD9y9Ep5ZfoNxDDPkQadd2jJeocrwC4vJ98I0g8pNYn/W8hS9+/FuNpolREHN8PhmexXbkjrwyQrWbuC0DVaA=="
"resolved" "https://registry.yarnpkg.com/@commitlint/rules/-/rules-11.0.0.tgz"
"version" "11.0.0"
dependencies:
"@commitlint/ensure" "^11.0.0"
"@commitlint/message" "^11.0.0"
"@commitlint/to-lines" "^11.0.0"
"@commitlint/types" "^11.0.0"
"@commitlint/to-lines@^11.0.0":
"integrity" "sha512-TIDTB0Y23jlCNubDROUVokbJk6860idYB5cZkLWcRS9tlb6YSoeLn1NLafPlrhhkkkZzTYnlKYzCVrBNVes1iw=="
"resolved" "https://registry.yarnpkg.com/@commitlint/to-lines/-/to-lines-11.0.0.tgz"
"version" "11.0.0"
"@commitlint/top-level@^11.0.0":
"integrity" "sha512-O0nFU8o+Ws+py5pfMQIuyxOtfR/kwtr5ybqTvR+C2lUPer2x6lnQU+OnfD7hPM+A+COIUZWx10mYQvkR3MmtAA=="
"resolved" "https://registry.yarnpkg.com/@commitlint/top-level/-/top-level-11.0.0.tgz"
"version" "11.0.0"
dependencies:
"find-up" "^5.0.0"
"@commitlint/types@^11.0.0":
"integrity" "sha512-VoNqai1vR5anRF5Tuh/+SWDFk7xi7oMwHrHrbm1BprYXjB2RJsWLhUrStMssDxEl5lW/z3EUdg8RvH/IUBccSQ=="
"resolved" "https://registry.yarnpkg.com/@commitlint/types/-/types-11.0.0.tgz"
"version" "11.0.0"
"@concordance/react@^2.0.0":
"integrity" "sha512-huLSkUuM2/P+U0uy2WwlKuixMsTODD8p4JVQBI4VKeopkiN0C7M3N9XYVawb4M+4spN5RrO/eLhk7KoQX6nsfA=="
"resolved" "https://registry.yarnpkg.com/@concordance/react/-/react-2.0.0.tgz"
"version" "2.0.0"
dependencies:
"arrify" "^1.0.1"
"@date-io/core@^1.3.13", "@date-io/[email protected]":
"integrity" "sha512-AlEKV7TxjeK+jxWVKcCFrfYAk8spX9aCyiToFIiLPtfQbsjmRGLIhb5VZgptQcJdHtLXo7+m0DuurwFgUToQuA=="
"resolved" "https://registry.yarnpkg.com/@date-io/core/-/core-1.3.13.tgz"
"version" "1.3.13"
"@date-io/date-fns@^1.3.13":
"integrity" "sha512-yXxGzcRUPcogiMj58wVgFjc9qUYrCnnU9eLcyNbsQCmae4jPuZCDoIBR21j8ZURsM7GRtU62VOw5yNd4dDHunA=="
"resolved" "https://registry.yarnpkg.com/@date-io/date-fns/-/date-fns-1.3.13.tgz"
"version" "1.3.13"
dependencies:
"@date-io/core" "^1.3.13"
"@emotion/hash@^0.8.0":
"integrity" "sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow=="
"resolved" "https://registry.yarnpkg.com/@emotion/hash/-/hash-0.8.0.tgz"
"version" "0.8.0"
"@emotion/is-prop-valid@^0.7.3":
"integrity" "sha512-uxJqm/sqwXw3YPA5GXX365OBcJGFtxUVkB6WyezqFHlNe9jqUWH5ur2O2M8dGBz61kn1g3ZBlzUunFQXQIClhA=="
"resolved" "https://registry.yarnpkg.com/@emotion/is-prop-valid/-/is-prop-valid-0.7.3.tgz"
"version" "0.7.3"
dependencies:
"@emotion/memoize" "0.7.1"
"@emotion/[email protected]":
"integrity" "sha512-Qv4LTqO11jepd5Qmlp3M1YEjBumoTHcHFdgPTQ+sFlIL5myi/7xu/POwP7IRu6odBdmLXdtIs1D6TuW6kbwbbg=="
"resolved" "https://registry.yarnpkg.com/@emotion/memoize/-/memoize-0.7.1.tgz"
"version" "0.7.1"
"@esri/arcgis-html-sanitizer@~2.5.0":
"integrity" "sha512-axq4dGwm3bjY/iR1DoPxrnJOt2SKXD0Cy1QYihK4yZx25CEDpfdSUBE71oz77BSYFz+KQZvh6A3xxOgLnVEoWA=="
"resolved" "https://registry.npmjs.org/@esri/arcgis-html-sanitizer/-/arcgis-html-sanitizer-2.5.0.tgz"
"version" "2.5.0"
dependencies:
"lodash.isplainobject" "^4.0.6"
"xss" "^1.0.8"
"@esri/calcite-colors@~5.0.0":
"integrity" "sha512-8+coTzRjHQkk/T7UTvX4bTpseyiL41lKzAfVC11b4C3ORKrIOI+uhJFssBb0rGl7N40Epuzxto/2HY8xs4pLsA=="
"resolved" "https://registry.npmjs.org/@esri/calcite-colors/-/calcite-colors-5.0.0.tgz"
"version" "5.0.0"
"@esri/react-arcgis@^5.1.0":
"integrity" "sha512-4zXVx5DoJ5OFN+s1gp9sIWsTP307NlvT7meCsFe/lqPJfs239ztYNnEy6V9tMpPBIx+Lz5fTy47SS61VJM7ToQ=="
"resolved" "https://registry.npmjs.org/@esri/react-arcgis/-/react-arcgis-5.1.0.tgz"
"version" "5.1.0"
"@hapi/address@^4.1.0":
"integrity" "sha512-SkszZf13HVgGmChdHo/PxchnSaCJ6cetVqLzyciudzZRT0jcOouIF/Q93mgjw8cce+D+4F4C1Z/WrfFN+O3VHQ=="
"resolved" "https://registry.yarnpkg.com/@hapi/address/-/address-4.1.0.tgz"
"version" "4.1.0"
dependencies:
"@hapi/hoek" "^9.0.0"
"@hapi/formula@^2.0.0":
"integrity" "sha512-V87P8fv7PI0LH7LiVi8Lkf3x+KCO7pQozXRssAHNXXL9L1K+uyu4XypLXwxqVDKgyQai6qj3/KteNlrqDx4W5A=="
"resolved" "https://registry.yarnpkg.com/@hapi/formula/-/formula-2.0.0.tgz"
"version" "2.0.0"
"@hapi/hoek@^9.0.0":
"integrity" "sha512-i9YbZPN3QgfighY/1X1Pu118VUz2Fmmhd6b2n0/O8YVgGGfw0FbUYoA97k7FkpGJ+pLCFEDLUmAPPV4D1kpeFw=="
"resolved" "https://registry.yarnpkg.com/@hapi/hoek/-/hoek-9.1.0.tgz"
"version" "9.1.0"
"@hapi/pinpoint@^2.0.0":
"integrity" "sha512-vzXR5MY7n4XeIvLpfl3HtE3coZYO4raKXW766R6DZw/6aLqR26iuZ109K7a0NtF2Db0jxqh7xz2AxkUwpUFybw=="
"resolved" "https://registry.yarnpkg.com/@hapi/pinpoint/-/pinpoint-2.0.0.tgz"
"version" "2.0.0"
"@hapi/topo@^5.0.0":
"integrity" "sha512-tFJlT47db0kMqVm3H4nQYgn6Pwg10GTZHb1pwmSiv1K4ks6drQOtfEF5ZnPjkvC+y4/bUPHK+bc87QvLcL+WMw=="
"resolved" "https://registry.yarnpkg.com/@hapi/topo/-/topo-5.0.0.tgz"
"version" "5.0.0"
dependencies:
"@hapi/hoek" "^9.0.0"
"@material-ui/core@^4.0.0", "@material-ui/core@^4.9.10", "@material-ui/core@^4.9.11":
"integrity" "sha512-S2Ha9GpTxzl29XMeMc8dQX2pj97yApNzuhe/23If53fMdg5Fmd3SgbE1bMbyXeKhxwtXZjOFxd0vU+W/sez8Ew=="
"resolved" "https://registry.yarnpkg.com/@material-ui/core/-/core-4.9.11.tgz"
"version" "4.9.11"
dependencies:
"@babel/runtime" "^7.4.4"
"@material-ui/react-transition-group" "^4.2.0"
"@material-ui/styles" "^4.9.10"
"@material-ui/system" "^4.9.10"
"@material-ui/types" "^5.0.1"
"@material-ui/utils" "^4.9.6"
"@types/react-transition-group" "^4.2.0"
"clsx" "^1.0.4"
"hoist-non-react-statics" "^3.3.2"
"popper.js" "^1.16.1-lts"
"prop-types" "^15.7.2"
"react-is" "^16.8.0"
"react-transition-group" "^4.3.0"
"@material-ui/core@^4.5.2":
"integrity" "sha512-RTRibZgq572GHEskMAG4sP+bt3P3XyIkv3pOTR8grZAW2rSUd6JoGZLRM4S2HkuO7wS7cAU5SpU2s1EsmTgWog=="
"resolved" "https://registry.yarnpkg.com/@material-ui/core/-/core-4.9.7.tgz"
"version" "4.9.7"
dependencies:
"@babel/runtime" "^7.4.4"
"@material-ui/styles" "^4.9.6"
"@material-ui/system" "^4.9.6"
"@material-ui/types" "^5.0.0"
"@material-ui/utils" "^4.9.6"
"@types/react-transition-group" "^4.2.0"
"clsx" "^1.0.2"
"hoist-non-react-statics" "^3.3.2"
"popper.js" "^1.14.1"
"prop-types" "^15.7.2"
"react-is" "^16.8.0"
"react-transition-group" "^4.3.0"
"@material-ui/icons@^4.9.1":
"integrity" "sha512-GBitL3oBWO0hzBhvA9KxqcowRUsA0qzwKkURyC8nppnC3fw54KPKZ+d4V1Eeg/UnDRSzDaI9nGCdel/eh9AQMg=="
"resolved" "https://registry.yarnpkg.com/@material-ui/icons/-/icons-4.9.1.tgz"
"version" "4.9.1"
dependencies:
"@babel/runtime" "^7.4.4"
"@material-ui/lab@^4.0.0-alpha.50":
"integrity" "sha512-32ICWUeXmbwYfgDoaV7M9t8I7+3VkVdxM1/7+oxQIRQ9KRlXNZ5Qept46ofyMOKRwx6SwXCYKwO7yynLsnoL4Q=="
"resolved" "https://registry.yarnpkg.com/@material-ui/lab/-/lab-4.0.0-alpha.50.tgz"
"version" "4.0.0-alpha.50"
dependencies:
"@babel/runtime" "^7.4.4"
"@material-ui/utils" "^4.9.6"
"clsx" "^1.0.4"
"prop-types" "^15.7.2"
"react-is" "^16.8.0"
"@material-ui/pickers@^3.2.10":
"integrity" "sha512-B8G6Obn5S3RCl7hwahkQj9sKUapwXWFjiaz/Bsw1fhYFdNMnDUolRiWQSoKPb1/oKe37Dtfszoywi1Ynbo3y8w=="
"resolved" "https://registry.yarnpkg.com/@material-ui/pickers/-/pickers-3.2.10.tgz"
"version" "3.2.10"
dependencies:
"@babel/runtime" "^7.6.0"
"@date-io/core" "1.x"
"@types/styled-jsx" "^2.2.8"
"clsx" "^1.0.2"
"react-transition-group" "^4.0.0"
"rifm" "^0.7.0"
"@material-ui/react-transition-group@^4.2.0":
"integrity" "sha512-CwQ0aXrlUynUTY6sh3UvKuvye1o92en20VGAs6TORnSxUYeRmkX8YeTUN3lAkGiBX1z222FxLFO36WWh6q73rQ=="
"resolved" "https://registry.yarnpkg.com/@material-ui/react-transition-group/-/react-transition-group-4.3.0.tgz"
"version" "4.3.0"
dependencies:
"@babel/runtime" "^7.5.5"
"dom-helpers" "^5.0.1"
"loose-envify" "^1.4.0"
"prop-types" "^15.6.2"
"@material-ui/styles@^4.5.2", "@material-ui/styles@^4.9.6":
"integrity" "sha512-ijgwStEkw1OZ6gCz18hkjycpr/3lKs1hYPi88O/AUn4vMuuGEGAIrqKVFq/lADmZUNF3DOFIk8LDkp7zmjPxtA=="
"resolved" "https://registry.yarnpkg.com/@material-ui/styles/-/styles-4.9.6.tgz"
"version" "4.9.6"
dependencies:
"@babel/runtime" "^7.4.4"
"@emotion/hash" "^0.8.0"
"@material-ui/types" "^5.0.0"
"@material-ui/utils" "^4.9.6"
"clsx" "^1.0.2"
"csstype" "^2.5.2"
"hoist-non-react-statics" "^3.3.2"
"jss" "^10.0.3"
"jss-plugin-camel-case" "^10.0.3"
"jss-plugin-default-unit" "^10.0.3"
"jss-plugin-global" "^10.0.3"
"jss-plugin-nested" "^10.0.3"
"jss-plugin-props-sort" "^10.0.3"
"jss-plugin-rule-value-function" "^10.0.3"
"jss-plugin-vendor-prefixer" "^10.0.3"
"prop-types" "^15.7.2"
"@material-ui/styles@^4.9.10":
"integrity" "sha512-EXIXlqVyFDnjXF6tj72y6ZxiSy+mHtrsCo3Srkm3XUeu3Z01aftDBy7ZSr3TQ02gXHTvDSBvegp3Le6p/tl7eA=="
"resolved" "https://registry.yarnpkg.com/@material-ui/styles/-/styles-4.9.10.tgz"
"version" "4.9.10"
dependencies:
"@babel/runtime" "^7.4.4"
"@emotion/hash" "^0.8.0"
"@material-ui/types" "^5.0.1"
"@material-ui/utils" "^4.9.6"
"clsx" "^1.0.2"
"csstype" "^2.5.2"
"hoist-non-react-statics" "^3.3.2"
"jss" "^10.0.3"
"jss-plugin-camel-case" "^10.0.3"
"jss-plugin-default-unit" "^10.0.3"
"jss-plugin-global" "^10.0.3"
"jss-plugin-nested" "^10.0.3"
"jss-plugin-props-sort" "^10.0.3"
"jss-plugin-rule-value-function" "^10.0.3"
"jss-plugin-vendor-prefixer" "^10.0.3"
"prop-types" "^15.7.2"
"@material-ui/system@^4.9.10":
"integrity" "sha512-E+t0baX2TBZk6ALm8twG6objpsxLdMM4MDm1++LMt2m7CetCAEc3aIAfDaprk4+tm5hFT1Cah5dRWk8EeIFQYw=="
"resolved" "https://registry.yarnpkg.com/@material-ui/system/-/system-4.9.10.tgz"
"version" "4.9.10"
dependencies:
"@babel/runtime" "^7.4.4"
"@material-ui/utils" "^4.9.6"
"prop-types" "^15.7.2"
"@material-ui/system@^4.9.6":
"integrity" "sha512-QtfoAePyqXoZ2HUVSwGb1Ro0kucMCvVjbI0CdYIR21t0Opgfm1Oer6ni9P5lfeXA39xSt0wCierw37j+YES48Q=="
"resolved" "https://registry.yarnpkg.com/@material-ui/system/-/system-4.9.6.tgz"
"version" "4.9.6"
dependencies:
"@babel/runtime" "^7.4.4"
"@material-ui/utils" "^4.9.6"
"prop-types" "^15.7.2"
"@material-ui/types@^5.0.0":
"integrity" "sha512-UeH2BuKkwDndtMSS0qgx1kCzSMw+ydtj0xx/XbFtxNSTlXydKwzs5gVW5ZKsFlAkwoOOQ9TIsyoCC8hq18tOwg=="
"resolved" "https://registry.yarnpkg.com/@material-ui/types/-/types-5.0.0.tgz"
"version" "5.0.0"
"@material-ui/types@^5.0.1":
"integrity" "sha512-wURPSY7/3+MAtng3i26g+WKwwNE3HEeqa/trDBR5+zWKmcjO+u9t7Npu/J1r+3dmIa/OeziN9D/18IrBKvKffw=="
"resolved" "https://registry.yarnpkg.com/@material-ui/types/-/types-5.0.1.tgz"
"version" "5.0.1"
"@material-ui/utils@^4.9.6":
"integrity" "sha512-gqlBn0JPPTUZeAktn1rgMcy9Iczrr74ecx31tyZLVGdBGGzsxzM6PP6zeS7FuoLS6vG4hoZP7hWnOoHtkR0Kvw=="
"resolved" "https://registry.yarnpkg.com/@material-ui/utils/-/utils-4.9.6.tgz"
"version" "4.9.6"
dependencies:
"@babel/runtime" "^7.4.4"
"prop-types" "^15.7.2"
"react-is" "^16.8.0"
"@nodelib/[email protected]":
"integrity" "sha512-eGmwYQn3gxo4r7jdQnkrrN6bY478C3P+a/y72IJukF8LjB6ZHeB3c+Ehacj3sYeSmUXGlnA67/PmbM9CVwL7Dw=="
"resolved" "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.3.tgz"
"version" "2.1.3"
dependencies:
"@nodelib/fs.stat" "2.0.3"
"run-parallel" "^1.1.9"
"@nodelib/fs.stat@^2.0.2", "@nodelib/[email protected]":
"integrity" "sha512-bQBFruR2TAwoevBEd/NWMoAAtNGzTRgdrqnYCc7dhzfoNvqPzLyqlEQnzZ3kVnNrSp25iyxE00/3h2fqGAGArA=="
"resolved" "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.3.tgz"
"version" "2.0.3"
"@nodelib/fs.walk@^1.2.3":
"integrity" "sha512-1V9XOY4rDW0rehzbrcqAmHnz8e7SKvX27gh8Gt2WgB0+pdzdiLV83p72kZPU+jvMbS1qU5mauP2iOvO8rhmurQ=="
"resolved" "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.4.tgz"
"version" "1.2.4"
dependencies:
"@nodelib/fs.scandir" "2.1.3"
"fastq" "^1.6.0"
"@npmcli/move-file@^1.0.1":
"integrity" "sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg=="
"resolved" "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.1.2.tgz"
"version" "1.1.2"
dependencies:
"mkdirp" "^1.0.4"
"rimraf" "^3.0.2"
"@octokit/auth-token@^2.4.0":
"integrity" "sha512-eoOVMjILna7FVQf96iWc3+ZtE/ZT6y8ob8ZzcqKY1ibSQCnu4O/B7pJvzMx5cyZ/RjAff6DAdEb0O0Cjcxidkg=="
"resolved" "https://registry.yarnpkg.com/@octokit/auth-token/-/auth-token-2.4.0.tgz"
"version" "2.4.0"
dependencies:
"@octokit/types" "^2.0.0"
"@octokit/core@^2.4.3":
"integrity" "sha512-uvzmkemQrBgD8xuGbjhxzJN1darJk9L2cS+M99cHrDG2jlSVpxNJVhoV86cXdYBqdHCc9Z995uLCczaaHIYA6Q=="
"resolved" "https://registry.yarnpkg.com/@octokit/core/-/core-2.5.0.tgz"
"version" "2.5.0"
dependencies:
"@octokit/auth-token" "^2.4.0"
"@octokit/graphql" "^4.3.1"
"@octokit/request" "^5.4.0"
"@octokit/types" "^2.0.0"
"before-after-hook" "^2.1.0"
"universal-user-agent" "^5.0.0"
"@octokit/endpoint@^6.0.1":
"integrity" "sha512-pOPHaSz57SFT/m3R5P8MUu4wLPszokn5pXcB/pzavLTQf2jbU+6iayTvzaY6/BiotuRS0qyEUkx3QglT4U958A=="
"resolved" "https://registry.yarnpkg.com/@octokit/endpoint/-/endpoint-6.0.1.tgz"
"version" "6.0.1"
dependencies:
"@octokit/types" "^2.11.1"
"is-plain-object" "^3.0.0"
"universal-user-agent" "^5.0.0"
"@octokit/graphql@^4.3.1":
"integrity" "sha512-Du3hAaSROQ8EatmYoSAJjzAz3t79t9Opj/WY1zUgxVUGfIKn0AEjg+hlOLscF6fv6i/4y/CeUvsWgIfwMkTccw=="
"resolved" "https://registry.yarnpkg.com/@octokit/graphql/-/graphql-4.4.0.tgz"
"version" "4.4.0"
dependencies:
"@octokit/request" "^5.3.0"
"@octokit/types" "^2.0.0"
"universal-user-agent" "^5.0.0"
"@octokit/plugin-paginate-rest@^2.2.0":
"integrity" "sha512-KoNxC3PLNar8UJwR+1VMQOw2IoOrrFdo5YOiDKnBhpVbKpw+zkBKNMNKwM44UWL25Vkn0Sl3nYIEGKY+gW5ebw=="
"resolved" "https://registry.yarnpkg.com/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-2.2.0.tgz"
"version" "2.2.0"
dependencies:
"@octokit/types" "^2.12.1"
"@octokit/plugin-request-log@^1.0.0":
"integrity" "sha512-ywoxP68aOT3zHCLgWZgwUJatiENeHE7xJzYjfz8WI0goynp96wETBF+d95b8g/uL4QmS6owPVlaxiz3wyMAzcw=="
"resolved" "https://registry.yarnpkg.com/@octokit/plugin-request-log/-/plugin-request-log-1.0.0.tgz"
"version" "1.0.0"
"@octokit/plugin-rest-endpoint-methods@^3.12.2":
"integrity" "sha512-QUfJ6nriHpwTxf8As99kEyDQV4AGQvypsM8Xyx5rsWi6JY7rzjOkZrleRrFq0aiNcQo7acM4bwaXq462OKTJ9w=="
"resolved" "https://registry.yarnpkg.com/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-3.12.2.tgz"
"version" "3.12.2"
dependencies:
"@octokit/types" "^4.0.0"
"deprecation" "^2.3.1"
"@octokit/request-error@^2.0.0":
"integrity" "sha512-rtYicB4Absc60rUv74Rjpzek84UbVHGHJRu4fNVlZ1mCcyUPPuzFfG9Rn6sjHrd95DEsmjSt1Axlc699ZlbDkw=="
"resolved" "https://registry.yarnpkg.com/@octokit/request-error/-/request-error-2.0.0.tgz"
"version" "2.0.0"
dependencies:
"@octokit/types" "^2.0.0"
"deprecation" "^2.0.0"
"once" "^1.4.0"
"@octokit/request@^5.3.0", "@octokit/request@^5.4.0":
"integrity" "sha512-zKdnGuQ2TQ2vFk9VU8awFT4+EYf92Z/v3OlzRaSh4RIP0H6cvW1BFPXq4XYvNez+TPQjqN+0uSkCYnMFFhcFrw=="
"resolved" "https://registry.yarnpkg.com/@octokit/request/-/request-5.4.2.tgz"
"version" "5.4.2"
dependencies:
"@octokit/endpoint" "^6.0.1"
"@octokit/request-error" "^2.0.0"
"@octokit/types" "^2.11.1"
"deprecation" "^2.0.0"
"is-plain-object" "^3.0.0"
"node-fetch" "^2.3.0"
"once" "^1.4.0"
"universal-user-agent" "^5.0.0"
"@octokit/rest@^17.0.0":
"integrity" "sha512-UXxiE0HhGQAPB3WDHTEu7lYMHH2uRcs/9f26XyHpGGiiXht8hgHWEk6fA7WglwwEvnj8V7mkJOgIntnij132UA=="
"resolved" "https://registry.yarnpkg.com/@octokit/rest/-/rest-17.9.2.tgz"
"version" "17.9.2"
dependencies:
"@octokit/core" "^2.4.3"
"@octokit/plugin-paginate-rest" "^2.2.0"
"@octokit/plugin-request-log" "^1.0.0"
"@octokit/plugin-rest-endpoint-methods" "^3.12.2"
"@octokit/types@^2.0.0", "@octokit/types@^2.11.1", "@octokit/types@^2.12.1":
"integrity" "sha512-O75k56TYvJ8WpAakWwYRN8Bgu60KrmX0z1KqFp1kNiFNkgW+JW+9EBKZ+S33PU6SLvbihqd+3drvPxKK68Ee8Q=="
"resolved" "https://registry.yarnpkg.com/@octokit/types/-/types-2.16.2.tgz"
"version" "2.16.2"
dependencies:
"@types/node" ">= 8"
"@octokit/types@^4.0.0":
"integrity" "sha512-Ho6h7w2h9y8RRE8r656hIj1oiSbwbIHJGF5r9G5FOwS2VdDPq8QLGvsG4x6pKHpvyGK7j+43sAc2cJKMiFoIJw=="
"resolved" "https://registry.yarnpkg.com/@octokit/types/-/types-4.0.1.tgz"
"version" "4.0.1"
dependencies:
"@types/node" ">= 8"
"@popperjs/core@~2.4.4":
"integrity" "sha512-1oO6+dN5kdIA3sKPZhRGJTfGVP4SWV6KqlMOwry4J3HfyD68sl/3KmG7DeYUzvN+RbhXDnv/D8vNNB8168tAMg=="
"resolved" "https://registry.npmjs.org/@popperjs/core/-/core-2.4.4.tgz"
"version" "2.4.4"
"@semantic-release/changelog@^5.0.1":
"integrity" "sha512-unvqHo5jk4dvAf2nZ3aw4imrlwQ2I50eVVvq9D47Qc3R+keNqepx1vDYwkjF8guFXnOYaYcR28yrZWno1hFbiw=="
"resolved" "https://registry.yarnpkg.com/@semantic-release/changelog/-/changelog-5.0.1.tgz"
"version" "5.0.1"
dependencies:
"@semantic-release/error" "^2.1.0"
"aggregate-error" "^3.0.0"
"fs-extra" "^9.0.0"
"lodash" "^4.17.4"
"@semantic-release/commit-analyzer@^8.0.0":
"integrity" "sha512-5bJma/oB7B4MtwUkZC2Bf7O1MHfi4gWe4mA+MIQ3lsEV0b422Bvl1z5HRpplDnMLHH3EXMoRdEng6Ds5wUqA3A=="
"resolved" "https://registry.yarnpkg.com/@semantic-release/commit-analyzer/-/commit-analyzer-8.0.1.tgz"
"version" "8.0.1"
dependencies:
"conventional-changelog-angular" "^5.0.0"
"conventional-commits-filter" "^2.0.0"
"conventional-commits-parser" "^3.0.7"
"debug" "^4.0.0"
"import-from" "^3.0.0"
"lodash" "^4.17.4"
"micromatch" "^4.0.2"
"@semantic-release/error@^2.1.0", "@semantic-release/error@^2.2.0":
"integrity" "sha512-9Tj/qn+y2j+sjCI3Jd+qseGtHjOAeg7dU2/lVcqIQ9TV3QDaDXDYXcoOHU+7o2Hwh8L8ymL4gfuO7KxDs3q2zg=="
"resolved" "https://registry.yarnpkg.com/@semantic-release/error/-/error-2.2.0.tgz"
"version" "2.2.0"
"@semantic-release/git@^9.0.0":
"integrity" "sha512-AZ4Zha5NAPAciIJH3ipzw/WU9qLAn8ENaoVAhD6srRPxTpTzuV3NhNh14rcAo8Paj9dO+5u4rTKcpetOBluYVw=="
"resolved" "https://registry.yarnpkg.com/@semantic-release/git/-/git-9.0.0.tgz"
"version" "9.0.0"
dependencies:
"@semantic-release/error" "^2.1.0"
"aggregate-error" "^3.0.0"
"debug" "^4.0.0"
"dir-glob" "^3.0.0"
"execa" "^4.0.0"
"lodash" "^4.17.4"
"micromatch" "^4.0.0"
"p-reduce" "^2.0.0"
"@semantic-release/github@^7.0.0":
"integrity" "sha512-70fUj+t98AWRgeOG0j2kdguvaVyysOZRUmXykZBwkktSDm1UZ6YfelYFPuM9OJbKPuNjKsCsRXl5/wukDUg8PA=="
"resolved" "https://registry.yarnpkg.com/@semantic-release/github/-/github-7.0.6.tgz"
"version" "7.0.6"
dependencies:
"@octokit/rest" "^17.0.0"
"@semantic-release/error" "^2.2.0"
"aggregate-error" "^3.0.0"
"bottleneck" "^2.18.1"
"debug" "^4.0.0"
"dir-glob" "^3.0.0"
"fs-extra" "^9.0.0"
"globby" "^11.0.0"
"http-proxy-agent" "^4.0.0"
"https-proxy-agent" "^5.0.0"
"issue-parser" "^6.0.0"
"lodash" "^4.17.4"
"mime" "^2.4.3"
"p-filter" "^2.0.0"
"p-retry" "^4.0.0"
"url-join" "^4.0.0"
"@semantic-release/npm@^7.0.0":
"integrity" "sha512-D+oEmsx9aHE1q806NFQwSC9KdBO8ri/VO99eEz0wWbX2jyLqVyWr7t0IjKC8aSnkkQswg/4KN/ZjfF6iz1XOpw=="
"resolved" "https://registry.yarnpkg.com/@semantic-release/npm/-/npm-7.0.5.tgz"
"version" "7.0.5"
dependencies:
"@semantic-release/error" "^2.2.0"
"aggregate-error" "^3.0.0"
"execa" "^4.0.0"
"fs-extra" "^9.0.0"
"lodash" "^4.17.15"
"nerf-dart" "^1.0.0"
"normalize-url" "^5.0.0"
"npm" "^6.10.3"
"rc" "^1.2.8"
"read-pkg" "^5.0.0"
"registry-auth-token" "^4.0.0"
"semver" "^7.1.2"
"tempy" "^0.5.0"
"@semantic-release/release-notes-generator@^9.0.0":
"integrity" "sha512-bOoTiH6SiiR0x2uywSNR7uZcRDl22IpZhj+Q5Bn0v+98MFtOMhCxFhbrKQjhbYoZw7vps1mvMRmFkp/g6R9cvQ=="
"resolved" "https://registry.yarnpkg.com/@semantic-release/release-notes-generator/-/release-notes-generator-9.0.1.tgz"
"version" "9.0.1"
dependencies:
"conventional-changelog-angular" "^5.0.0"
"conventional-changelog-writer" "^4.0.0"
"conventional-commits-filter" "^2.0.0"
"conventional-commits-parser" "^3.0.0"
"debug" "^4.0.0"
"get-stream" "^5.0.0"
"import-from" "^3.0.0"
"into-stream" "^5.0.0"
"lodash" "^4.17.4"
"read-pkg-up" "^7.0.0"
"@sindresorhus/is@^0.14.0":
"integrity" "sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ=="
"resolved" "https://registry.yarnpkg.com/@sindresorhus/is/-/is-0.14.0.tgz"
"version" "0.14.0"
"@szmarczak/http-timer@^1.1.2":
"integrity" "sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA=="
"resolved" "https://registry.yarnpkg.com/@szmarczak/http-timer/-/http-timer-1.1.2.tgz"
"version" "1.1.2"
dependencies:
"defer-to-connect" "^1.0.1"
"@tootallnate/once@1":
"integrity" "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw=="
"resolved" "https://registry.yarnpkg.com/@tootallnate/once/-/once-1.1.2.tgz"
"version" "1.1.2"
"@types/cheerio@^0.22.22":
"integrity" "sha512-05DYX4zU96IBfZFY+t3Mh88nlwSMtmmzSYaQkKN48T495VV1dkHSah6qYyDTN5ngaS0i0VonH37m+RuzSM0YiA=="
"resolved" "https://registry.yarnpkg.com/@types/cheerio/-/cheerio-0.22.22.tgz"
"version" "0.22.22"
dependencies:
"@types/node" "*"
"@types/color-name@^1.1.1":
"integrity" "sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ=="
"resolved" "https://registry.yarnpkg.com/@types/color-name/-/color-name-1.1.1.tgz"
"version" "1.1.1"
"@types/events@*":
"integrity" "sha512-EaObqwIvayI5a8dCzhFrjKzVwKLxjoG9T6Ppd5CEo07LRKfQ8Yokw54r5+Wq7FaBQ+yXRvQAYPrHwya1/UFt9g=="
"resolved" "https://registry.yarnpkg.com/@types/events/-/events-3.0.0.tgz"
"version" "3.0.0"
"@types/glob@^7.1.1":
"integrity" "sha512-1Bh06cbWJUHMC97acuD6UMG29nMt0Aqz1vF3guLfG+kHHJhy3AyohZFFxYk2f7Q1SQIrNwvncxAE0N/9s70F2w=="
"resolved" "https://registry.yarnpkg.com/@types/glob/-/glob-7.1.1.tgz"
"version" "7.1.1"
dependencies:
"@types/events" "*"
"@types/minimatch" "*"
"@types/node" "*"
"@types/hapi__joi@^16.0.0":
"integrity" "sha512-xJYifuz59jXdWY5JMS15uvA3ycS3nQYOGqoIIE0+fwQ0qI3/4CxBc6RHsOTp6wk9M0NWEdpcTl02lOQOKMifbQ=="
"resolved" "https://registry.yarnpkg.com/@types/hapi__joi/-/hapi__joi-16.0.12.tgz"
"version" "16.0.12"
"@types/history@*":
"integrity" "sha512-wLD/Aq2VggCJXSjxEwrMafIP51Z+13H78nXIX0ABEuIGhmB5sNGbR113MOKo+yfw+RDo1ZU3DM6yfnnRF/+ouw=="
"resolved" "https://registry.yarnpkg.com/@types/history/-/history-4.7.5.tgz"
"version" "4.7.5"
"@types/json-schema@^7.0.6":
"integrity" "sha512-cxWFQVseBm6O9Gbw1IWb8r6OS4OhSt3hPZLkFApLjM8TEXROBuQGLAH2i2gZpcXdLBIrpXuTDhH7Vbm1iXmNGA=="
"resolved" "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.7.tgz"
"version" "7.0.7"
"@types/json5@^0.0.29":
"integrity" "sha1-7ihweulOEdK4J7y+UnC86n8+ce4="
"resolved" "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz"
"version" "0.0.29"
"@types/minimatch@*":
"integrity" "sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA=="
"resolved" "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.3.tgz"
"version" "3.0.3"
"@types/minimist@^1.2.0":
"integrity" "sha1-aaI6OtKcrwCX8G7aWbNh7i8GOfY="
"resolved" "https://registry.yarnpkg.com/@types/minimist/-/minimist-1.2.0.tgz"
"version" "1.2.0"
"@types/node-fetch@^2.3.7":
"integrity" "sha512-IWwjsyYjGw+em3xTvWVQi5MgYKbRs0du57klfTaZkv/B24AEQ/p/IopNeqIYNy3EsfHOpg8ieQSDomPcsYMHpA=="
"resolved" "https://registry.yarnpkg.com/@types/node-fetch/-/node-fetch-2.5.5.tgz"
"version" "2.5.5"
dependencies:
"@types/node" "*"
"form-data" "^3.0.0"
"@types/node@*":
"integrity" "sha512-T+wnJno8uh27G9c+1T+a1/WYCHzLeDqtsGJkoEdSp2X8RTh3oOCZQcUnjAx90CS8cmmADX51O0FI/tu9s0yssg=="
"resolved" "https://registry.yarnpkg.com/@types/node/-/node-12.12.31.tgz"
"version" "12.12.31"
"@types/node@>= 8":
"integrity" "sha512-FAYBGwC+W6F9+huFIDtn43cpy7+SzG+atzRiTfdp3inUKL2hXnd4rG8hylJLIh4+hqrQy1P17kvJByE/z825hA=="
"resolved" "https://registry.yarnpkg.com/@types/node/-/node-14.0.1.tgz"
"version" "14.0.1"
"@types/normalize-package-data@^2.4.0":
"integrity" "sha512-f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA=="
"resolved" "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.0.tgz"
"version" "2.4.0"
"@types/parse-json@^4.0.0":
"integrity" "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA=="
"resolved" "https://registry.yarnpkg.com/@types/parse-json/-/parse-json-4.0.0.tgz"
"version" "4.0.0"
"@types/prompts@^2.0.8":
"integrity" "sha512-lXXAa8c8ASoA61Tj9H5E5V2mRUTvNZ/dpJ5KxghI+O5geWMHt73NLZ9kEBBDK7zUUfMsMY3ZH4Sqeqh3SjSyfg=="
"resolved" "https://registry.yarnpkg.com/@types/prompts/-/prompts-2.0.8.tgz"
"version" "2.0.8"
dependencies:
"@types/node" "*"
"@types/prop-types@*":
"integrity" "sha512-KfRL3PuHmqQLOG+2tGpRO26Ctg+Cq1E01D2DMriKEATHgWLfeNDmq9e29Q9WIky0dQ3NPkd1mzYH8Lm936Z9qw=="
"resolved" "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.3.tgz"
"version" "15.7.3"
"@types/react-router-dom@^5.1.2":
"integrity" "sha512-pCq7AkOvjE65jkGS5fQwQhvUp4+4PVD9g39gXLZViP2UqFiFzsEpB3PKf0O6mdbKsewSK8N14/eegisa/0CwnA=="
"resolved" "https://registry.yarnpkg.com/@types/react-router-dom/-/react-router-dom-5.1.3.tgz"
"version" "5.1.3"
dependencies:
"@types/history" "*"
"@types/react" "*"
"@types/react-router" "*"
"@types/react-router@*":
"integrity" "sha512-PZtnBuyfL07sqCJvGg3z+0+kt6fobc/xmle08jBiezLS8FrmGeiGkJnuxL/8Zgy9L83ypUhniV5atZn/L8n9MQ=="
"resolved" "https://registry.yarnpkg.com/@types/react-router/-/react-router-5.1.4.tgz"
"version" "5.1.4"
dependencies:
"@types/history" "*"
"@types/react" "*"
"@types/react-transition-group@^4.2.0":
"integrity" "sha512-8DMUaDqh0S70TjkqU0DxOu80tFUiiaS9rxkWip/nb7gtvAsbqOXm02UCmR8zdcjWujgeYPiPNTVpVpKzUDotwA=="