forked from Kocal/jsdoc-vuejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
8555 lines (7408 loc) Β· 333 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/code-frame@^7.0.0":
"integrity" "sha512-OfC2uemaknXr87bdLUkWog7nYuliM9Ij5HUcajsVcMCpQrcLmtxRbVFTIqmcSkSeYRBFBRxs2FiUqFJDLdiebA=="
"resolved" "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.0.0.tgz"
"version" "7.0.0"
dependencies:
"@babel/highlight" "^7.0.0"
"@babel/core@^7.0.0", "@babel/core@^7.0.0-0", "@babel/core@^7.1.0":
"integrity" "sha512-59vB0RWt09cAct5EIe58+NzGP4TFSD3Bz//2/ELy3ZeTeKF6VTD1AXlH8BGGbCX0PuobZBsIzO7IAI9PH67eKw=="
"resolved" "https://registry.npmjs.org/@babel/core/-/core-7.2.2.tgz"
"version" "7.2.2"
dependencies:
"@babel/code-frame" "^7.0.0"
"@babel/generator" "^7.2.2"
"@babel/helpers" "^7.2.0"
"@babel/parser" "^7.2.2"
"@babel/template" "^7.2.2"
"@babel/traverse" "^7.2.2"
"@babel/types" "^7.2.2"
"convert-source-map" "^1.1.0"
"debug" "^4.1.0"
"json5" "^2.1.0"
"lodash" "^4.17.10"
"resolve" "^1.3.2"
"semver" "^5.4.1"
"source-map" "^0.5.0"
"@babel/generator@^7.0.0", "@babel/generator@^7.2.2":
"integrity" "sha512-dZTwMvTgWfhmibq4V9X+LMf6Bgl7zAodRn9PvcPdhlzFMbvUutx74dbEv7Atz3ToeEpevYEJtAwfxq/bDCzHWg=="
"resolved" "https://registry.npmjs.org/@babel/generator/-/generator-7.3.0.tgz"
"version" "7.3.0"
dependencies:
"@babel/types" "^7.3.0"
"jsesc" "^2.5.1"
"lodash" "^4.17.10"
"source-map" "^0.5.0"
"trim-right" "^1.0.1"
"@babel/helper-function-name@^7.1.0":
"integrity" "sha512-A95XEoCpb3TO+KZzJ4S/5uW5fNe26DjBGqf1o9ucyLyCmi1dXq/B3c8iaWTfBk3VvetUxl16e8tIrd5teOCfGw=="
"resolved" "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.1.0.tgz"
"version" "7.1.0"
dependencies:
"@babel/helper-get-function-arity" "^7.0.0"
"@babel/template" "^7.1.0"
"@babel/types" "^7.0.0"
"@babel/helper-get-function-arity@^7.0.0":
"integrity" "sha512-r2DbJeg4svYvt3HOS74U4eWKsUAMRH01Z1ds1zx8KNTPtpTL5JAsdFv8BNyOpVqdFhHkkRDIg5B4AsxmkjAlmQ=="
"resolved" "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0.tgz"
"version" "7.0.0"
dependencies:
"@babel/types" "^7.0.0"
"@babel/helper-plugin-utils@^7.0.0":
"integrity" "sha512-CYAOUCARwExnEixLdB6sDm2dIJ/YgEAKDM1MOeMeZu9Ld/bDgVo8aiWrXwcY7OBh+1Ea2uUcVRcxKk0GJvW7QA=="
"resolved" "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.0.0.tgz"
"version" "7.0.0"
"@babel/helper-split-export-declaration@^7.0.0":
"integrity" "sha512-MXkOJqva62dfC0w85mEf/LucPPS/1+04nmmRMPEBUB++hiiThQ2zPtX/mEWQ3mtzCEjIJvPY8nuwxXtQeQwUag=="
"resolved" "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.0.0.tgz"
"version" "7.0.0"
dependencies:
"@babel/types" "^7.0.0"
"@babel/helper-validator-identifier@^7.14.5":
"integrity" "sha512-5lsetuxCLilmVGyiLEfoHBRX8UCFD+1m2x3Rj97WrW3V7H3u4RWRXA4evMjImCsin2J2YT0QaVDGf+z8ondbAg=="
"resolved" "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.5.tgz"
"version" "7.14.5"
"@babel/helpers@^7.2.0":
"integrity" "sha512-Q82R3jKsVpUV99mgX50gOPCWwco9Ec5Iln/8Vyu4osNIOQgSrd9RFrQeUvmvddFNoLwMyOUWU+5ckioEKpDoGA=="
"resolved" "https://registry.npmjs.org/@babel/helpers/-/helpers-7.3.1.tgz"
"version" "7.3.1"
dependencies:
"@babel/template" "^7.1.2"
"@babel/traverse" "^7.1.5"
"@babel/types" "^7.3.0"
"@babel/highlight@^7.0.0":
"integrity" "sha512-UFMC4ZeFC48Tpvj7C8UgLvtkaUuovQX+5xNWrsIoMG8o2z+XFKjKaN9iVmS84dPwVN00W4wPmqvYoZF3EGAsfw=="
"resolved" "https://registry.npmjs.org/@babel/highlight/-/highlight-7.0.0.tgz"
"version" "7.0.0"
dependencies:
"chalk" "^2.0.0"
"esutils" "^2.0.2"
"js-tokens" "^4.0.0"
"@babel/parser@^7.0.0", "@babel/parser@^7.1.0", "@babel/parser@^7.12.0", "@babel/parser@^7.13.9", "@babel/parser@^7.2.2", "@babel/parser@^7.2.3", "@babel/parser@^7.9.4":
"integrity" "sha512-X67Z5y+VBJuHB/RjwECp8kSl5uYi0BvRbNeWqkaJCVh+LiTPl19WBUfG627psSgp9rSf6ojuXghQM3ha6qHHdA=="
"resolved" "https://registry.npmjs.org/@babel/parser/-/parser-7.14.7.tgz"
"version" "7.14.7"
"@babel/plugin-syntax-object-rest-spread@^7.0.0":
"integrity" "sha512-t0JKGgqk2We+9may3t0xDdmneaXmyxq0xieYcKHxIsrJO64n1OiMWNUtc5gQK1PA0NpdCRrtZp4z+IUaKugrSA=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.2.0.tgz"
"version" "7.2.0"
dependencies:
"@babel/helper-plugin-utils" "^7.0.0"
"@babel/template@^7.0.0", "@babel/template@^7.1.0", "@babel/template@^7.1.2", "@babel/template@^7.2.2":
"integrity" "sha512-zRL0IMM02AUDwghf5LMSSDEz7sBCO2YnNmpg3uWTZj/v1rcG2BmQUvaGU8GhU8BvfMh1k2KIAYZ7Ji9KXPUg7g=="
"resolved" "https://registry.npmjs.org/@babel/template/-/template-7.2.2.tgz"
"version" "7.2.2"
dependencies:
"@babel/code-frame" "^7.0.0"
"@babel/parser" "^7.2.2"
"@babel/types" "^7.2.2"
"@babel/traverse@^7.0.0", "@babel/traverse@^7.1.0", "@babel/traverse@^7.1.5", "@babel/traverse@^7.2.2":
"integrity" "sha512-Z31oUD/fJvEWVR0lNZtfgvVt512ForCTNKYcJBGbPb1QZfve4WGH8Wsy7+Mev33/45fhP/hwQtvgusNdcCMgSw=="
"resolved" "https://registry.npmjs.org/@babel/traverse/-/traverse-7.2.3.tgz"
"version" "7.2.3"
dependencies:
"@babel/code-frame" "^7.0.0"
"@babel/generator" "^7.2.2"
"@babel/helper-function-name" "^7.1.0"
"@babel/helper-split-export-declaration" "^7.0.0"
"@babel/parser" "^7.2.3"
"@babel/types" "^7.2.2"
"debug" "^4.1.0"
"globals" "^11.1.0"
"lodash" "^4.17.10"
"@babel/types@^7.0.0", "@babel/types@^7.12.0", "@babel/types@^7.13.0", "@babel/types@^7.2.2", "@babel/types@^7.3.0":
"integrity" "sha512-M/NzBpEL95I5Hh4dwhin5JlE7EzO5PHMAuzjxss3tiOBD46KfQvVedN/3jEPZvdRvtsK2222XfdHogNIttFgcg=="
"resolved" "https://registry.npmjs.org/@babel/types/-/types-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/helper-validator-identifier" "^7.14.5"
"to-fast-properties" "^2.0.0"
"@cnakazawa/watch@^1.0.3":
"integrity" "sha512-r5160ogAvGyHsal38Kux7YYtodEKOj89RGb28ht1jh3SJb08VwRwAKKJL0bGb04Zd/3r9FL3BFIc3bBidYffCA=="
"resolved" "https://registry.npmjs.org/@cnakazawa/watch/-/watch-1.0.3.tgz"
"version" "1.0.3"
dependencies:
"exec-sh" "^0.3.2"
"minimist" "^1.2.0"
"@cypress/listr-verbose-renderer@^0.4.1":
"integrity" "sha1-p3SS9LEdzHxEajSz4ochr9M8ZCo= sha512-EDiBsVPWC27DDLEJCo+dpl9ODHhdrwU57ccr9tspwCdG2ni0QVkf6LF0FGbhfujcjPxnXLIwsaks4sOrwrA4Qw=="
"resolved" "https://registry.npmjs.org/@cypress/listr-verbose-renderer/-/listr-verbose-renderer-0.4.1.tgz"
"version" "0.4.1"
dependencies:
"chalk" "^1.1.3"
"cli-cursor" "^1.0.2"
"date-fns" "^1.27.2"
"figures" "^1.7.0"
"@cypress/request@^2.88.5":
"integrity" "sha512-TzEC1XMi1hJkywWpRfD2clreTa/Z+lOrXDCxxBTBPEcY5azdPi56A6Xw+O4tWJnaJH3iIE7G5aDXZC6JgRZLcA=="
"resolved" "https://registry.npmjs.org/@cypress/request/-/request-2.88.5.tgz"
"version" "2.88.5"
dependencies:
"aws-sign2" "~0.7.0"
"aws4" "^1.8.0"
"caseless" "~0.12.0"
"combined-stream" "~1.0.6"
"extend" "~3.0.2"
"forever-agent" "~0.6.1"
"form-data" "~2.3.2"
"har-validator" "~5.1.3"
"http-signature" "~1.2.0"
"is-typedarray" "~1.0.0"
"isstream" "~0.1.2"
"json-stringify-safe" "~5.0.1"
"mime-types" "~2.1.19"
"oauth-sign" "~0.9.0"
"performance-now" "^2.1.0"
"qs" "~6.5.2"
"safe-buffer" "^5.1.2"
"tough-cookie" "~2.5.0"
"tunnel-agent" "^0.6.0"
"uuid" "^3.3.2"
"@cypress/xvfb@^1.2.4":
"integrity" "sha512-skbBzPggOVYCbnGgV+0dmBdW/s77ZkAOXIC1knS8NagwDjBrNC1LuXtQJeiN6l+m7lzmHtaoUw/ctJKdqkG57Q=="
"resolved" "https://registry.npmjs.org/@cypress/xvfb/-/xvfb-1.2.4.tgz"
"version" "1.2.4"
dependencies:
"debug" "^3.1.0"
"lodash.once" "^4.1.1"
"@jest/console@^24.7.1", "@jest/console@^24.9.0":
"integrity" "sha512-Zuj6b8TnKXi3q4ymac8EQfc3ea/uhLeCGThFqXeC8H9/raaH8ARPUTdId+XyGd03Z4In0/VjD2OYFcBF09fNLQ=="
"resolved" "https://registry.npmjs.org/@jest/console/-/console-24.9.0.tgz"
"version" "24.9.0"
dependencies:
"@jest/source-map" "^24.9.0"
"chalk" "^2.0.1"
"slash" "^2.0.0"
"@jest/core@^24.9.0":
"integrity" "sha512-Fogg3s4wlAr1VX7q+rhV9RVnUv5tD7VuWfYy1+whMiWUrvl7U3QJSJyWcDio9Lq2prqYsZaeTv2Rz24pWGkJ2A=="
"resolved" "https://registry.npmjs.org/@jest/core/-/core-24.9.0.tgz"
"version" "24.9.0"
dependencies:
"@jest/console" "^24.7.1"
"@jest/reporters" "^24.9.0"
"@jest/test-result" "^24.9.0"
"@jest/transform" "^24.9.0"
"@jest/types" "^24.9.0"
"ansi-escapes" "^3.0.0"
"chalk" "^2.0.1"
"exit" "^0.1.2"
"graceful-fs" "^4.1.15"
"jest-changed-files" "^24.9.0"
"jest-config" "^24.9.0"
"jest-haste-map" "^24.9.0"
"jest-message-util" "^24.9.0"
"jest-regex-util" "^24.3.0"
"jest-resolve" "^24.9.0"
"jest-resolve-dependencies" "^24.9.0"
"jest-runner" "^24.9.0"
"jest-runtime" "^24.9.0"
"jest-snapshot" "^24.9.0"
"jest-util" "^24.9.0"
"jest-validate" "^24.9.0"
"jest-watcher" "^24.9.0"
"micromatch" "^3.1.10"
"p-each-series" "^1.0.0"
"realpath-native" "^1.1.0"
"rimraf" "^2.5.4"
"slash" "^2.0.0"
"strip-ansi" "^5.0.0"
"@jest/environment@^24.9.0":
"integrity" "sha512-5A1QluTPhvdIPFYnO3sZC3smkNeXPVELz7ikPbhUj0bQjB07EoE9qtLrem14ZUYWdVayYbsjVwIiL4WBIMV4aQ=="
"resolved" "https://registry.npmjs.org/@jest/environment/-/environment-24.9.0.tgz"
"version" "24.9.0"
dependencies:
"@jest/fake-timers" "^24.9.0"
"@jest/transform" "^24.9.0"
"@jest/types" "^24.9.0"
"jest-mock" "^24.9.0"
"@jest/fake-timers@^24.9.0":
"integrity" "sha512-eWQcNa2YSwzXWIMC5KufBh3oWRIijrQFROsIqt6v/NS9Io/gknw1jsAC9c+ih/RQX4A3O7SeWAhQeN0goKhT9A=="
"resolved" "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-24.9.0.tgz"
"version" "24.9.0"
dependencies:
"@jest/types" "^24.9.0"
"jest-message-util" "^24.9.0"
"jest-mock" "^24.9.0"
"@jest/reporters@^24.9.0":
"integrity" "sha512-mu4X0yjaHrffOsWmVLzitKmmmWSQ3GGuefgNscUSWNiUNcEOSEQk9k3pERKEQVBb0Cnn88+UESIsZEMH3o88Gw=="
"resolved" "https://registry.npmjs.org/@jest/reporters/-/reporters-24.9.0.tgz"
"version" "24.9.0"
dependencies:
"@jest/environment" "^24.9.0"
"@jest/test-result" "^24.9.0"
"@jest/transform" "^24.9.0"
"@jest/types" "^24.9.0"
"chalk" "^2.0.1"
"exit" "^0.1.2"
"glob" "^7.1.2"
"istanbul-lib-coverage" "^2.0.2"
"istanbul-lib-instrument" "^3.0.1"
"istanbul-lib-report" "^2.0.4"
"istanbul-lib-source-maps" "^3.0.1"
"istanbul-reports" "^2.2.6"
"jest-haste-map" "^24.9.0"
"jest-resolve" "^24.9.0"
"jest-runtime" "^24.9.0"
"jest-util" "^24.9.0"
"jest-worker" "^24.6.0"
"node-notifier" "^5.4.2"
"slash" "^2.0.0"
"source-map" "^0.6.0"
"string-length" "^2.0.0"
"@jest/source-map@^24.3.0", "@jest/source-map@^24.9.0":
"integrity" "sha512-/Xw7xGlsZb4MJzNDgB7PW5crou5JqWiBQaz6xyPd3ArOg2nfn/PunV8+olXbbEZzNl591o5rWKE9BRDaFAuIBg=="
"resolved" "https://registry.npmjs.org/@jest/source-map/-/source-map-24.9.0.tgz"
"version" "24.9.0"
dependencies:
"callsites" "^3.0.0"
"graceful-fs" "^4.1.15"
"source-map" "^0.6.0"
"@jest/test-result@^24.9.0":
"integrity" "sha512-XEFrHbBonBJ8dGp2JmF8kP/nQI/ImPpygKHwQ/SY+es59Z3L5PI4Qb9TQQMAEeYsThG1xF0k6tmG0tIKATNiiA=="
"resolved" "https://registry.npmjs.org/@jest/test-result/-/test-result-24.9.0.tgz"
"version" "24.9.0"
dependencies:
"@jest/console" "^24.9.0"
"@jest/types" "^24.9.0"
"@types/istanbul-lib-coverage" "^2.0.0"
"@jest/test-sequencer@^24.9.0":
"integrity" "sha512-6qqsU4o0kW1dvA95qfNog8v8gkRN9ph6Lz7r96IvZpHdNipP2cBcb07J1Z45mz/VIS01OHJ3pY8T5fUY38tg4A=="
"resolved" "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-24.9.0.tgz"
"version" "24.9.0"
dependencies:
"@jest/test-result" "^24.9.0"
"jest-haste-map" "^24.9.0"
"jest-runner" "^24.9.0"
"jest-runtime" "^24.9.0"
"@jest/transform@^24.9.0":
"integrity" "sha512-TcQUmyNRxV94S0QpMOnZl0++6RMiqpbH/ZMccFB/amku6Uwvyb1cjYX7xkp5nGNkbX4QPH/FcB6q1HBTHynLmQ=="
"resolved" "https://registry.npmjs.org/@jest/transform/-/transform-24.9.0.tgz"
"version" "24.9.0"
dependencies:
"@babel/core" "^7.1.0"
"@jest/types" "^24.9.0"
"babel-plugin-istanbul" "^5.1.0"
"chalk" "^2.0.1"
"convert-source-map" "^1.4.0"
"fast-json-stable-stringify" "^2.0.0"
"graceful-fs" "^4.1.15"
"jest-haste-map" "^24.9.0"
"jest-regex-util" "^24.9.0"
"jest-util" "^24.9.0"
"micromatch" "^3.1.10"
"pirates" "^4.0.1"
"realpath-native" "^1.1.0"
"slash" "^2.0.0"
"source-map" "^0.6.1"
"write-file-atomic" "2.4.1"
"@jest/types@^24.9.0":
"integrity" "sha512-XKK7ze1apu5JWQ5eZjHITP66AX+QsLlbaJRBGYr8pNzwcAE2JVkwnf0yqjHTsDRcjR0mujy/NmZMXw5kl+kGBw=="
"resolved" "https://registry.npmjs.org/@jest/types/-/types-24.9.0.tgz"
"version" "24.9.0"
dependencies:
"@types/istanbul-lib-coverage" "^2.0.0"
"@types/istanbul-reports" "^1.1.1"
"@types/yargs" "^13.0.0"
"@kocal/semantic-release-preset@^2.0.6":
"integrity" "sha512-JYrhSoG5ctnM+3jV9XsXiwH+gSGAnnkUj3r1NQlRZ15LhQto30RFXpt8WA3vgQNJSi09oP1MvfI3ogKlBDuWRg=="
"resolved" "https://registry.npmjs.org/@kocal/semantic-release-preset/-/semantic-release-preset-2.0.6.tgz"
"version" "2.0.6"
dependencies:
"@semantic-release/commit-analyzer" "^8.0.1"
"@semantic-release/github" "^7.0.4"
"@semantic-release/npm" "^7.0.3"
"@semantic-release/release-notes-generator" "^9.0.1"
"@nodelib/[email protected]":
"integrity" "sha512-eGmwYQn3gxo4r7jdQnkrrN6bY478C3P+a/y72IJukF8LjB6ZHeB3c+Ehacj3sYeSmUXGlnA67/PmbM9CVwL7Dw=="
"resolved" "https://registry.npmjs.org/@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.npmjs.org/@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.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.4.tgz"
"version" "1.2.4"
dependencies:
"@nodelib/fs.scandir" "2.1.3"
"fastq" "^1.6.0"
"@octokit/auth-token@^2.4.0":
"integrity" "sha512-jE/lE/IKIz2v1+/P0u4fJqv0kYwXOTujKemJMFr6FeopsxlIK3+wKDCJGnysg81XID5TgZQbIfuJ5J0lnTiuyQ=="
"resolved" "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-2.4.2.tgz"
"version" "2.4.2"
dependencies:
"@octokit/types" "^5.0.0"
"@octokit/core@^2.4.3", "@octokit/core@>=2":
"integrity" "sha512-HCp8yKQfTITYK+Nd09MHzAlP1v3Ii/oCohv0/TW9rhSLvzb98BOVs2QmVYuloE6a3l6LsfyGIwb6Pc4ycgWlIQ=="
"resolved" "https://registry.npmjs.org/@octokit/core/-/core-2.5.4.tgz"
"version" "2.5.4"
dependencies:
"@octokit/auth-token" "^2.4.0"
"@octokit/graphql" "^4.3.1"
"@octokit/request" "^5.4.0"
"@octokit/types" "^5.0.0"
"before-after-hook" "^2.1.0"
"universal-user-agent" "^5.0.0"
"@octokit/endpoint@^6.0.1":
"integrity" "sha512-70K5u6zd45ItOny6aHQAsea8HHQjlQq85yqOMe+Aj8dkhN2qSJ9T+Q3YjUjEYfPRBcuUWNgMn62DQnP/4LAIiQ=="
"resolved" "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-6.0.5.tgz"
"version" "6.0.5"
dependencies:
"@octokit/types" "^5.0.0"
"is-plain-object" "^4.0.0"
"universal-user-agent" "^6.0.0"
"@octokit/graphql@^4.3.1":
"integrity" "sha512-ITpZ+dQc0cXAW1FmDkHJJM+8Lb6anUnin0VB5hLBilnYVdLC0ICFU/KIvT7OXfW9S81DE3U4Vx2EypDG1OYaPA=="
"resolved" "https://registry.npmjs.org/@octokit/graphql/-/graphql-4.5.4.tgz"
"version" "4.5.4"
dependencies:
"@octokit/request" "^5.3.0"
"@octokit/types" "^5.0.0"
"universal-user-agent" "^6.0.0"
"@octokit/plugin-paginate-rest@^2.2.0":
"integrity" "sha512-PjHbMhKryxClCrmfvRpGaKCTxUcHIf2zirWRV9SMGf0EmxD/rFew/abSqbMiLl9uQgRZvqtTyCRMGMlUv1ZsBg=="
"resolved" "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-2.3.2.tgz"
"version" "2.3.2"
dependencies:
"@octokit/types" "^5.3.0"
"@octokit/plugin-request-log@^1.0.0":
"integrity" "sha512-ywoxP68aOT3zHCLgWZgwUJatiENeHE7xJzYjfz8WI0goynp96wETBF+d95b8g/uL4QmS6owPVlaxiz3wyMAzcw=="
"resolved" "https://registry.npmjs.org/@octokit/plugin-request-log/-/plugin-request-log-1.0.0.tgz"
"version" "1.0.0"
"@octokit/[email protected]":
"integrity" "sha512-NFV3vq7GgoO2TrkyBRUOwflkfTYkFKS0tLAPym7RNpkwLCttqShaEGjthOsPEEL+7LFcYv3mU24+F2yVd3npmg=="
"resolved" "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-3.17.0.tgz"
"version" "3.17.0"
dependencies:
"@octokit/types" "^4.1.6"
"deprecation" "^2.3.1"
"@octokit/request-error@^2.0.0":
"integrity" "sha512-2BrmnvVSV1MXQvEkrb9zwzP0wXFNbPJij922kYBTLIlIafukrGOb+ABBT2+c6wZiuyWDH1K1zmjGQ0toN/wMWw=="
"resolved" "https://registry.npmjs.org/@octokit/request-error/-/request-error-2.0.2.tgz"
"version" "2.0.2"
dependencies:
"@octokit/types" "^5.0.1"
"deprecation" "^2.0.0"
"once" "^1.4.0"
"@octokit/request@^5.3.0", "@octokit/request@^5.4.0":
"integrity" "sha512-FN22xUDP0i0uF38YMbOfx6TotpcENP5W8yJM1e/LieGXn6IoRxDMnBf7tx5RKSW4xuUZ/1P04NFZy5iY3Rax1A=="
"resolved" "https://registry.npmjs.org/@octokit/request/-/request-5.4.7.tgz"
"version" "5.4.7"
dependencies:
"@octokit/endpoint" "^6.0.1"
"@octokit/request-error" "^2.0.0"
"@octokit/types" "^5.0.0"
"deprecation" "^2.0.0"
"is-plain-object" "^4.0.0"
"node-fetch" "^2.3.0"
"once" "^1.4.0"
"universal-user-agent" "^6.0.0"
"@octokit/rest@^17.0.0":
"integrity" "sha512-4jTmn8WossTUaLfNDfXk4fVJgbz5JgZE8eCs4BvIb52lvIH8rpVMD1fgRCrHbSd6LRPE5JFZSfAEtszrOq3ZFQ=="
"resolved" "https://registry.npmjs.org/@octokit/rest/-/rest-17.11.2.tgz"
"version" "17.11.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.17.0"
"@octokit/types@^4.1.6":
"integrity" "sha512-/wbFy1cUIE5eICcg0wTKGXMlKSbaAxEr00qaBXzscLXpqhcwgXeS6P8O0pkysBhRfyjkKjJaYrvR1ExMO5eOXQ=="
"resolved" "https://registry.npmjs.org/@octokit/types/-/types-4.1.10.tgz"
"version" "4.1.10"
dependencies:
"@types/node" ">= 8"
"@octokit/types@^5.0.0", "@octokit/types@^5.0.1", "@octokit/types@^5.3.0":
"integrity" "sha512-OlMlSySBJoJ6uozkr/i03nO5dlYQyE05vmQNZhAh9MyO4DPBP88QlwsDVLmVjIMFssvIZB6WO0ctIGMRG+xsJQ=="
"resolved" "https://registry.npmjs.org/@octokit/types/-/types-5.4.1.tgz"
"version" "5.4.1"
dependencies:
"@types/node" ">= 8"
"@samverschueren/stream-to-observable@^0.3.0":
"integrity" "sha512-MI4Xx6LHs4Webyvi6EbspgyAb4D2Q2VtnCQ1blOJcoLS6mVa8lNN2rkIy1CVxfTUpoyIbCTkXES1rLXztFD1lg=="
"resolved" "https://registry.npmjs.org/@samverschueren/stream-to-observable/-/stream-to-observable-0.3.0.tgz"
"version" "0.3.0"
dependencies:
"any-observable" "^0.3.0"
"@semantic-release/commit-analyzer@^8.0.0", "@semantic-release/commit-analyzer@^8.0.1":
"integrity" "sha512-5bJma/oB7B4MtwUkZC2Bf7O1MHfi4gWe4mA+MIQ3lsEV0b422Bvl1z5HRpplDnMLHH3EXMoRdEng6Ds5wUqA3A=="
"resolved" "https://registry.npmjs.org/@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.2.0":
"integrity" "sha512-9Tj/qn+y2j+sjCI3Jd+qseGtHjOAeg7dU2/lVcqIQ9TV3QDaDXDYXcoOHU+7o2Hwh8L8ymL4gfuO7KxDs3q2zg=="
"resolved" "https://registry.npmjs.org/@semantic-release/error/-/error-2.2.0.tgz"
"version" "2.2.0"
"@semantic-release/github@^7.0.0", "@semantic-release/github@^7.0.4":
"integrity" "sha512-w8CLCvGVKNe2FPOYQ68OFxFVNNha7YRzptnwTZYdjXYtgTDKw0XVfnMSd9NlJeQPYGfQmIhIVPNBU/cA6zUY0A=="
"resolved" "https://registry.npmjs.org/@semantic-release/github/-/github-7.1.1.tgz"
"version" "7.1.1"
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", "@semantic-release/npm@^7.0.3":
"integrity" "sha512-F4judxdeLe8f7+vDva1TkqNc5Tb2tcltZYW0tLtvP2Xt7CD/gGiz7UxAWEOPsXBvIqAP+uTidvGLPl9U3/uRoQ=="
"resolved" "https://registry.npmjs.org/@semantic-release/npm/-/npm-7.0.6.tgz"
"version" "7.0.6"
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.13.0"
"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", "@semantic-release/release-notes-generator@^9.0.1":
"integrity" "sha512-bOoTiH6SiiR0x2uywSNR7uZcRDl22IpZhj+Q5Bn0v+98MFtOMhCxFhbrKQjhbYoZw7vps1mvMRmFkp/g6R9cvQ=="
"resolved" "https://registry.npmjs.org/@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"
"@tootallnate/once@1":
"integrity" "sha512-KYyTT/T6ALPkIRd2Ge080X/BsXvy9O0hcWTtMWkPvwAwF99+vn6Dv4GzrFT/Nn1LePr+FFDbRXXlqmsy9lw2zA=="
"resolved" "https://registry.npmjs.org/@tootallnate/once/-/once-1.0.0.tgz"
"version" "1.0.0"
"@types/babel__core@^7.1.0":
"integrity" "sha512-wJTeJRt7BToFx3USrCDs2BhEi4ijBInTQjOIukj6a/5tEkwpFMVZ+1ppgmE+Q/FQyc5P/VWUbx7I9NELrKruHA=="
"resolved" "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.0.tgz"
"version" "7.1.0"
dependencies:
"@babel/parser" "^7.1.0"
"@babel/types" "^7.0.0"
"@types/babel__generator" "*"
"@types/babel__template" "*"
"@types/babel__traverse" "*"
"@types/babel__generator@*":
"integrity" "sha512-NHcOfab3Zw4q5sEE2COkpfXjoE7o+PmqD9DQW4koUT3roNxwziUdXGnRndMat/LJNUtePwn1TlP4do3uoe3KZQ=="
"resolved" "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.0.2.tgz"
"version" "7.0.2"
dependencies:
"@babel/types" "^7.0.0"
"@types/babel__template@*":
"integrity" "sha512-/K6zCpeW7Imzgab2bLkLEbz0+1JlFSrUMdw7KoIIu+IUdu51GWaBZpd3y1VXGVXzynvGa4DaIaxNZHiON3GXUg=="
"resolved" "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.0.2.tgz"
"version" "7.0.2"
dependencies:
"@babel/parser" "^7.1.0"
"@babel/types" "^7.0.0"
"@types/babel__traverse@*", "@types/babel__traverse@^7.0.6":
"integrity" "sha512-XYVgHF2sQ0YblLRMLNPB3CkFMewzFmlDsH/TneZFHUXDlABQgh88uOxuez7ZcXxayLFrqLwtDH1t+FmlFwNZxw=="
"resolved" "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.0.6.tgz"
"version" "7.0.6"
dependencies:
"@babel/types" "^7.3.0"
"@types/estree@^0.0.48":
"integrity" "sha512-LfZwXoGUDo0C3me81HXgkBg5CTQYb6xzEl+fNmbO4JdRiSKQ8A0GD1OBBvKAIsbCUgoyAty7m99GqqMQe784ew=="
"resolved" "https://registry.npmjs.org/@types/estree/-/estree-0.0.48.tgz"
"version" "0.0.48"
"@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0":
"integrity" "sha512-eAtOAFZefEnfJiRFQBGw1eYqa5GTLCZ1y86N0XSI/D6EB+E8z6VPV/UL7Gi5UEclFqoQk+6NRqEDsfmDLXn8sg=="
"resolved" "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.0.tgz"
"version" "2.0.0"
"@types/istanbul-lib-report@*":
"integrity" "sha512-3BUTyMzbZa2DtDI2BkERNC6jJw2Mr2Y0oGI7mRxYNBPxppbtEK1F66u3bKwU2g+wxwWI7PAoRpJnOY1grJqzHg=="
"resolved" "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-1.1.1.tgz"
"version" "1.1.1"
dependencies:
"@types/istanbul-lib-coverage" "*"
"@types/istanbul-reports@^1.1.1":
"integrity" "sha512-UpYjBi8xefVChsCoBpKShdxTllC9pwISirfoZsUa2AAdQg/Jd2KQGtSbw+ya7GPo7x/wAPlH6JBhKhAsXUEZNA=="
"resolved" "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-1.1.1.tgz"
"version" "1.1.1"
dependencies:
"@types/istanbul-lib-coverage" "*"
"@types/istanbul-lib-report" "*"
"@types/minimist@^1.2.0":
"integrity" "sha1-aaI6OtKcrwCX8G7aWbNh7i8GOfY= sha512-BsF2gEVEIOcbQCSwXR6V14fGD6QLLT0yQBK6RpblkxVYP9x8ANNThpxMUxV7h4KKjqMDR8qELlcnqrEoyvsohw=="
"resolved" "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.0.tgz"
"version" "1.2.0"
"@types/node@>= 8":
"integrity" "sha512-Wk7nG1JSaMfMpoMJDKUsWYugliB2Vy55pdjLpmLixeyMi7HizW2I/9QoxsPCkXl3dO+ZOVqPumKaDUv5zJu2uQ=="
"resolved" "https://registry.npmjs.org/@types/node/-/node-14.6.4.tgz"
"version" "14.6.4"
"@types/normalize-package-data@^2.4.0":
"integrity" "sha512-f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA=="
"resolved" "https://registry.npmjs.org/@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.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz"
"version" "4.0.0"
"@types/retry@^0.12.0":
"integrity" "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA=="
"resolved" "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz"
"version" "0.12.0"
"@types/sinonjs__fake-timers@^6.0.1":
"integrity" "sha512-dIPoZ3g5gcx9zZEszaxLSVTvMReD3xxyyDnQUjA6IYDG9Ba2AV0otMPs+77sG9ojB4Qr2N2Vk5RnKeuA0X/0bg=="
"resolved" "https://registry.npmjs.org/@types/sinonjs__fake-timers/-/sinonjs__fake-timers-6.0.2.tgz"
"version" "6.0.2"
"@types/sizzle@^2.3.2":
"integrity" "sha512-7EJYyKTL7tFR8+gDbB6Wwz/arpGa0Mywk1TJbNzKzHtzbwVmY4HR9WqS5VV7dsBUKQmPNr192jHr/VpBluj/hg=="
"resolved" "https://registry.npmjs.org/@types/sizzle/-/sizzle-2.3.2.tgz"
"version" "2.3.2"
"@types/stack-utils@^1.0.1":
"integrity" "sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw=="
"resolved" "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-1.0.1.tgz"
"version" "1.0.1"
"@types/yargs-parser@*":
"integrity" "sha512-wBlsw+8n21e6eTd4yVv8YD/E3xq0O6nNnJIquutAsFGE7EyMKz7W6RNT6BRu1SmdgmlCZ9tb0X+j+D6HGr8pZw=="
"resolved" "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-13.0.0.tgz"
"version" "13.0.0"
"@types/yargs@^13.0.0":
"integrity" "sha512-lwwgizwk/bIIU+3ELORkyuOgDjCh7zuWDFqRtPPhhVgq9N1F7CvLNKg1TX4f2duwtKQ0p044Au9r1PLIXHrIzQ=="
"resolved" "https://registry.npmjs.org/@types/yargs/-/yargs-13.0.2.tgz"
"version" "13.0.2"
dependencies:
"@types/yargs-parser" "*"
"@vue/[email protected]":
"integrity" "sha512-TnUz+1z0y74O/A4YKAbzsdUfamyHV73MihrEfvettWpm9bQKVoZd1nEmR1cGN9LsXWlwAvVQBetBlWdOjmQO5Q=="
"resolved" "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.1.4.tgz"
"version" "3.1.4"
dependencies:
"@babel/parser" "^7.12.0"
"@babel/types" "^7.12.0"
"@vue/shared" "3.1.4"
"estree-walker" "^2.0.1"
"source-map" "^0.6.1"
"@vue/[email protected]":
"integrity" "sha512-3tG2ScHkghhUBuFwl9KgyZhrS8CPFZsO7hUDekJgIp5b1OMkROr4AvxHu6rRMl4WkyvYkvidFNBS2VfOnwa6Kw=="
"resolved" "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.1.4.tgz"
"version" "3.1.4"
dependencies:
"@vue/compiler-core" "3.1.4"
"@vue/shared" "3.1.4"
"@vue/compiler-sfc@^3.1.4":
"integrity" "sha512-4KDQg60Khy3SgnF+V/TB2NZqzmM4TyGRmzsxqG1SebGdMSecCweFDSlI/F1vDYk6dKiCHgmpoT9A1sLxswkJ0A=="
"resolved" "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.1.4.tgz"
"version" "3.1.4"
dependencies:
"@babel/parser" "^7.13.9"
"@babel/types" "^7.13.0"
"@types/estree" "^0.0.48"
"@vue/compiler-core" "3.1.4"
"@vue/compiler-dom" "3.1.4"
"@vue/compiler-ssr" "3.1.4"
"@vue/shared" "3.1.4"
"consolidate" "^0.16.0"
"estree-walker" "^2.0.1"
"hash-sum" "^2.0.0"
"lru-cache" "^5.1.1"
"magic-string" "^0.25.7"
"merge-source-map" "^1.1.0"
"postcss" "^8.1.10"
"postcss-modules" "^4.0.0"
"postcss-selector-parser" "^6.0.4"
"source-map" "^0.6.1"
"@vue/[email protected]":
"integrity" "sha512-Box8fCuCFPp0FuimIswjDkjwiSDCBkHvt/xVALyFkYCiIMWv2eR53fIjmlsnEHhcBuZ+VgRC+UanCTcKvSA1gA=="
"resolved" "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.1.4.tgz"
"version" "3.1.4"
dependencies:
"@vue/compiler-dom" "3.1.4"
"@vue/shared" "3.1.4"
"@vue/[email protected]":
"integrity" "sha512-YDlgii2Cr9yAoKVZFzgY4j0mYlVT73986X3e5SPp6ifqckSEoFSUWXZK2Tb53TB/9qO29BEEbspnKD3m3wAwkA=="
"resolved" "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.1.4.tgz"
"version" "3.1.4"
dependencies:
"@vue/shared" "3.1.4"
"@vue/[email protected]":
"integrity" "sha512-qmVJgJuFxfT7M4qHQ4M6KqhKC66fjuswK+aBivE8dWiZ2rtIGl9gtJGpwqwjQEcKEBTOfvvrtrwBncYArJUO8Q=="
"resolved" "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.1.4.tgz"
"version" "3.1.4"
dependencies:
"@vue/reactivity" "3.1.4"
"@vue/shared" "3.1.4"
"@vue/[email protected]":
"integrity" "sha512-vbmwgTxku1BU87Kw7r29adv0OIrDXCW0PslOPQT0O/9R5SqcXgS94Yj6zsztDjvghegenwIAPNLlDR1Auh5s+w=="
"resolved" "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.1.4.tgz"
"version" "3.1.4"
dependencies:
"@vue/runtime-core" "3.1.4"
"@vue/shared" "3.1.4"
"csstype" "^2.6.8"
"@vue/[email protected]":
"integrity" "sha512-6O45kZAmkLvzGLToBxEz4lR2W6kXohCtebV2UxjH9GXjd8X9AhEn68FN9eNanFtWNzvgw1hqd6HkPRVQalqf7Q=="
"resolved" "https://registry.npmjs.org/@vue/shared/-/shared-3.1.4.tgz"
"version" "3.1.4"
"abab@^1.0.4":
"integrity" "sha1-X6rZwsB/YN12dw9xzwJbYqY8/U4= sha512-I+Wi+qiE2kUXyrRhNsWv6XsjUTBJjSoVSctKNBfLG5zG/Xe7Rjbxf13+vqYHNTwHaFU+FtSlVxOCTiMEVtPv0A=="
"resolved" "https://registry.npmjs.org/abab/-/abab-1.0.4.tgz"
"version" "1.0.4"
"abbrev@~1.1.1", "abbrev@1":
"integrity" "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q=="
"resolved" "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz"
"version" "1.1.1"
"acorn-globals@^4.1.0":
"integrity" "sha512-KjZwU26uG3u6eZcfGbTULzFcsoz6pegNKtHPksZPOUsiKo5bUmiBPa38FuHZ/Eun+XYh/JCCkS9AS3Lu4McQOQ=="
"resolved" "https://registry.npmjs.org/acorn-globals/-/acorn-globals-4.1.0.tgz"
"version" "4.1.0"
dependencies:
"acorn" "^5.0.0"
"acorn-jsx@^5.1.0":
"integrity" "sha512-tMUqwBWfLFbJbizRmEcWSLw6HnFzfdJs2sOJEOwwtVPMoH/0Ay+E703oZz78VSXZiiDcZrQ5XKjPIUQixhmgVw=="
"resolved" "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.1.0.tgz"
"version" "5.1.0"
"acorn@^5.0.0":
"integrity" "sha512-1D++VG7BhrtvQpNbBzovKNc1FLGGEE/oGe7b9xJm/RFHMBeUaUGpluV9RLjZa47YFdPcDAenEYuq9pQPcMdLJg=="
"resolved" "https://registry.npmjs.org/acorn/-/acorn-5.7.4.tgz"
"version" "5.7.4"
"acorn@^5.3.0":
"integrity" "sha512-1D++VG7BhrtvQpNbBzovKNc1FLGGEE/oGe7b9xJm/RFHMBeUaUGpluV9RLjZa47YFdPcDAenEYuq9pQPcMdLJg=="
"resolved" "https://registry.npmjs.org/acorn/-/acorn-5.7.4.tgz"
"version" "5.7.4"
"acorn@^6.0.0 || ^7.0.0", "acorn@^7.1.0":
"integrity" "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A=="
"resolved" "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz"
"version" "7.4.1"
"agent-base@^4.3.0", "agent-base@4":
"integrity" "sha512-salcGninV0nPrwpGNn4VTXBb1SOuXQBiqbrNXoeizJsHrsL6ERFM2Ne3JUSBWRE6aeNJI2ROP/WEEIDUiDe3cg=="
"resolved" "https://registry.npmjs.org/agent-base/-/agent-base-4.3.0.tgz"
"version" "4.3.0"
dependencies:
"es6-promisify" "^5.0.0"
"agent-base@~4.2.1":
"version" "4.2.1"
dependencies:
"es6-promisify" "^5.0.0"
"agent-base@6":
"integrity" "sha512-j1Q7cSCqN+AwrmDd+pzgqc0/NpC655x2bUf5ZjRIO77DcNBFmh+OgRNzF6OKdCC9RSCb19fGd99+bhXFdkRNqw=="
"resolved" "https://registry.npmjs.org/agent-base/-/agent-base-6.0.0.tgz"
"version" "6.0.0"
dependencies:
"debug" "4"
"agentkeepalive@^3.4.1":
"integrity" "sha512-e0L/HNe6qkQ7H19kTlRRqUibEAwDK5AFk6y3PtMsuut2VAH6+Q4xZml1tNDJD7kSAyqmbG/K08K5WEJYtUrSlQ=="
"resolved" "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-3.5.2.tgz"
"version" "3.5.2"
dependencies:
"humanize-ms" "^1.2.1"
"aggregate-error@^3.0.0":
"integrity" "sha512-yKD9kEoJIR+2IFqhMwayIBgheLYbB3PS2OBhWae1L/ODTd/JF/30cW0bc9TqzRL3k4U41Dieu3BF4I29p8xesA=="
"resolved" "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.0.0.tgz"
"version" "3.0.0"
dependencies:
"clean-stack" "^2.0.0"
"indent-string" "^3.2.0"
"ajv@^6.10.0", "ajv@^6.5.5", "ajv@^6.9.1":
"integrity" "sha512-TXtUUEYHuaTEbLZWIKUr5pmBuhDLy+8KYtPYdcV8qC+pOZL+NKqYwvWSRrVXHn+ZmRRAu8vJTAznH7Oag6RVRw=="
"resolved" "https://registry.npmjs.org/ajv/-/ajv-6.10.2.tgz"
"version" "6.10.2"
dependencies:
"fast-deep-equal" "^2.0.1"
"fast-json-stable-stringify" "^2.0.0"
"json-schema-traverse" "^0.4.1"
"uri-js" "^4.2.2"
"ajv@^6.12.3":
"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-align@^2.0.0":
"integrity" "sha1-w2rsy6VjuJzrVW82kPCx2eNUf38="
"resolved" "https://registry.npmjs.org/ansi-align/-/ansi-align-2.0.0.tgz"
"version" "2.0.0"
dependencies:
"string-width" "^2.0.0"
"ansi-escapes@^3.0.0":
"integrity" "sha512-UgAb8H9D41AQnu/PbWlCofQVcnV4Gs2bBJi9eZPxfU/hgglFh3SMDMENRIqdr7H6XFnXdoknctFByVsCOotTVw=="
"resolved" "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.1.0.tgz"
"version" "3.1.0"
"ansi-escapes@^4.2.1", "ansi-escapes@^4.3.1":
"integrity" "sha512-JWF7ocqNrp8u9oqpgV+wH5ftbt+cfvv+PTjOvKLT3AdYly/LmORARfEVT1iyjwN+4MqE5UmVKoAdIBqeoCHgLA=="
"resolved" "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.1.tgz"
"version" "4.3.1"
dependencies:
"type-fest" "^0.11.0"
"ansi-regex@^2.0.0":
"integrity" "sha1-w7M6te42DYbg5ijwRorn7yfWVN8= sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA=="
"resolved" "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz"
"version" "2.1.1"
"ansi-regex@^3.0.0":
"integrity" "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg= sha512-wFUFA5bg5dviipbQQ32yOQhl6gcJaJXiHE7dvR8VYPG97+J/GNC5FKGepKdEDUFeXRzDxPF1X/Btc8L+v7oqIQ=="
"resolved" "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz"
"version" "3.0.0"
"ansi-regex@^4.0.0":
"integrity" "sha512-iB5Dda8t/UqpPI/IjsejXu5jOGDrzn41wJyljwPH65VCIbk6+1BzFIMJGFwTNrYXT1CrD+B4l19U7awiQ8rk7w=="
"resolved" "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.0.0.tgz"
"version" "4.0.0"
"ansi-regex@^4.1.0":
"integrity" "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg=="
"resolved" "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz"
"version" "4.1.0"
"ansi-regex@^5.0.0":
"integrity" "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg=="
"resolved" "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz"
"version" "5.0.0"
"ansi-styles@^2.2.1":
"integrity" "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4= sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA=="
"resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz"
"version" "2.2.1"
"ansi-styles@^3.2.0", "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"
"ansi-styles@^4.0.0":
"integrity" "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="
"resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz"
"version" "4.3.0"
dependencies:
"color-convert" "^2.0.1"
"ansi-styles@^4.1.0":
"integrity" "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="
"resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz"
"version" "4.3.0"
dependencies:
"color-convert" "^2.0.1"
"ansicolors@~0.3.2":
"integrity" "sha1-ZlWX3oap/+Oqm/vmyuXG6kJrSXk= sha512-QXu7BPrP29VllRxH8GwB7x5iX5qWKAAMLqKQGWTeLWVlNHNOpVMJ91dsxQAIWXpjuW5wqvxu3Jd/nRjrJ+0pqg=="
"resolved" "https://registry.npmjs.org/ansicolors/-/ansicolors-0.3.2.tgz"
"version" "0.3.2"
"ansistyles@~0.1.3":
"integrity" "sha1-XeYEFb2gcbs3EnhUyGT0GyMlRTk="
"resolved" "https://registry.npmjs.org/ansistyles/-/ansistyles-0.1.3.tgz"
"version" "0.1.3"
"any-observable@^0.3.0":
"integrity" "sha512-/FQM1EDkTsf63Ub2C6O7GuYFDsSXUwsaZDurV0np41ocwq0jthUAYCmhBX9f+KwlaCgIuWyr/4WlUQUBfKfZog=="
"resolved" "https://registry.npmjs.org/any-observable/-/any-observable-0.3.0.tgz"
"version" "0.3.0"
"anymatch@^2.0.0":
"integrity" "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw=="
"resolved" "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz"
"version" "2.0.0"
dependencies:
"micromatch" "^3.1.4"
"normalize-path" "^2.1.1"
"aproba@^1.0.3":
"version" "1.2.0"
"aproba@^1.1.1":
"version" "1.2.0"
"aproba@^1.1.2 || 2", "aproba@^2.0.0":
"integrity" "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ=="
"resolved" "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz"
"version" "2.0.0"
"aproba@^1.1.2":
"version" "1.2.0"
"arch@^2.1.2":
"integrity" "sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ=="
"resolved" "https://registry.npmjs.org/arch/-/arch-2.2.0.tgz"
"version" "2.2.0"
"archy@~1.0.0":
"integrity" "sha1-+cjBN1fMHde8N5rHeyxipcKGjEA="
"resolved" "https://registry.npmjs.org/archy/-/archy-1.0.0.tgz"
"version" "1.0.0"
"are-we-there-yet@~1.1.2":
"version" "1.1.4"
dependencies:
"delegates" "^1.0.0"
"readable-stream" "^2.0.6"
"argparse@^1.0.7":
"integrity" "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg=="
"resolved" "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz"
"version" "1.0.10"
dependencies:
"sprintf-js" "~1.0.2"
"argv-formatter@~1.0.0":
"integrity" "sha1-oMoMvCmltz6Dbuvhy/bF4OTrgvk= sha512-F2+Hkm9xFaRg+GkaNnbwXNDV5O6pnCFEmqyhvfC/Ic5LbgOWjJh3L+mN/s91rxVL3znE7DYVpW0GJFT+4YBgWw=="
"resolved" "https://registry.npmjs.org/argv-formatter/-/argv-formatter-1.0.0.tgz"
"version" "1.0.0"
"arr-diff@^4.0.0":
"integrity" "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA= sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA=="
"resolved" "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz"
"version" "4.0.0"
"arr-flatten@^1.1.0":
"integrity" "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg=="
"resolved" "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz"
"version" "1.1.0"
"arr-union@^3.1.0":
"integrity" "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ= sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q=="
"resolved" "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz"
"version" "3.1.0"
"array-equal@^1.0.0":
"integrity" "sha1-jCpe8kcv2ep0KwTHenUJO6J1fJM= sha512-H3LU5RLiSsGXPhN+Nipar0iR0IofH+8r89G2y1tBKxQ/agagKyAjhkAFDRBfodP2caPrNKHpAWNIM/c9yeL7uA=="
"resolved" "https://registry.npmjs.org/array-equal/-/array-equal-1.0.0.tgz"
"version" "1.0.0"
"array-ify@^1.0.0":
"integrity" "sha1-nlKHYrSpBmrRY6aWKjZEGOlibs4= sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng=="
"resolved" "https://registry.npmjs.org/array-ify/-/array-ify-1.0.0.tgz"
"version" "1.0.0"
"array-includes@^3.0.3":
"integrity" "sha1-GEtI9i2S10UrsxsyMWXH+L0CJm0= sha512-mRVEsI0s5MycUKtZtn8i5co54WKxL5gH3gAcCjtUbECNwdDL2gsBwjLqswM3c6fjcuWFQ9hoS4C+EhjxQmEyHQ=="
"resolved" "https://registry.npmjs.org/array-includes/-/array-includes-3.0.3.tgz"