-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathyarn.lock
2364 lines (2034 loc) · 98.3 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.14.5":
"integrity" "sha1-I7CNdA6D9JxeWZRfvxtD6Au/Tts="
"resolved" "https://registry.nlark.com/@babel/code-frame/download/@babel/code-frame-7.14.5.tgz?cache=0&sync_timestamp=1623280394200&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcode-frame%2Fdownload%2F%40babel%2Fcode-frame-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/highlight" "^7.14.5"
"@babel/[email protected]":
"integrity" "sha1-9K1DWqJj25NbjxDyxVLSP7cWpj8="
"resolved" "https://registry.nlark.com/@babel/code-frame/download/@babel/code-frame-7.12.11.tgz?cache=0&sync_timestamp=1623280394200&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcode-frame%2Fdownload%2F%40babel%2Fcode-frame-7.12.11.tgz"
"version" "7.12.11"
dependencies:
"@babel/highlight" "^7.10.4"
"@babel/compat-data@^7.15.0":
"integrity" "sha1-Lbr4uFM0eWyvuw9Xk6kKL8AQsXY="
"resolved" "https://registry.nlark.com/@babel/compat-data/download/@babel/compat-data-7.15.0.tgz"
"version" "7.15.0"
"@babel/core@^7.0.0", "@babel/core@^7.0.0-0", "@babel/core@^7.15.5":
"integrity" "sha1-+O2aznMHIlRGCfkMm7SRYtw79bk="
"resolved" "https://registry.nlark.com/@babel/core/download/@babel/core-7.15.5.tgz?cache=0&sync_timestamp=1630746008082&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcore%2Fdownload%2F%40babel%2Fcore-7.15.5.tgz"
"version" "7.15.5"
dependencies:
"@babel/code-frame" "^7.14.5"
"@babel/generator" "^7.15.4"
"@babel/helper-compilation-targets" "^7.15.4"
"@babel/helper-module-transforms" "^7.15.4"
"@babel/helpers" "^7.15.4"
"@babel/parser" "^7.15.5"
"@babel/template" "^7.15.4"
"@babel/traverse" "^7.15.4"
"@babel/types" "^7.15.4"
"convert-source-map" "^1.7.0"
"debug" "^4.1.0"
"gensync" "^1.0.0-beta.2"
"json5" "^2.1.2"
"semver" "^6.3.0"
"source-map" "^0.5.0"
"@babel/generator@^7.15.4":
"integrity" "sha1-hayxWaJnymMk+Xk5hpke4gIqBbA="
"resolved" "https://registry.nlark.com/@babel/generator/download/@babel/generator-7.15.4.tgz?cache=0&sync_timestamp=1630618918440&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fgenerator%2Fdownload%2F%40babel%2Fgenerator-7.15.4.tgz"
"version" "7.15.4"
dependencies:
"@babel/types" "^7.15.4"
"jsesc" "^2.5.1"
"source-map" "^0.5.0"
"@babel/helper-annotate-as-pure@^7.15.4":
"integrity" "sha1-PQ5DsAxeSf22xX5CFgGnpljV+DU="
"resolved" "https://registry.nlark.com/@babel/helper-annotate-as-pure/download/@babel/helper-annotate-as-pure-7.15.4.tgz?cache=0&sync_timestamp=1630618920081&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-annotate-as-pure%2Fdownload%2F%40babel%2Fhelper-annotate-as-pure-7.15.4.tgz"
"version" "7.15.4"
dependencies:
"@babel/types" "^7.15.4"
"@babel/helper-compilation-targets@^7.15.4":
"integrity" "sha1-z22U8w++/BORI+J91rAvZa7tt7k="
"resolved" "https://registry.nlark.com/@babel/helper-compilation-targets/download/@babel/helper-compilation-targets-7.15.4.tgz?cache=0&sync_timestamp=1630618788550&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-compilation-targets%2Fdownload%2F%40babel%2Fhelper-compilation-targets-7.15.4.tgz"
"version" "7.15.4"
dependencies:
"@babel/compat-data" "^7.15.0"
"@babel/helper-validator-option" "^7.14.5"
"browserslist" "^4.16.6"
"semver" "^6.3.0"
"@babel/helper-create-class-features-plugin@^7.15.4":
"integrity" "sha1-f5d8F70SpfujY8sZvqCQOUvzfS4="
"resolved" "https://registry.nlark.com/@babel/helper-create-class-features-plugin/download/@babel/helper-create-class-features-plugin-7.15.4.tgz?cache=0&sync_timestamp=1630618927387&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-create-class-features-plugin%2Fdownload%2F%40babel%2Fhelper-create-class-features-plugin-7.15.4.tgz"
"version" "7.15.4"
dependencies:
"@babel/helper-annotate-as-pure" "^7.15.4"
"@babel/helper-function-name" "^7.15.4"
"@babel/helper-member-expression-to-functions" "^7.15.4"
"@babel/helper-optimise-call-expression" "^7.15.4"
"@babel/helper-replace-supers" "^7.15.4"
"@babel/helper-split-export-declaration" "^7.15.4"
"@babel/helper-function-name@^7.15.4":
"integrity" "sha1-hFdE2vxDgaSl+2r6bD02+Yp4frw="
"resolved" "https://registry.nlark.com/@babel/helper-function-name/download/@babel/helper-function-name-7.15.4.tgz?cache=0&sync_timestamp=1630618923307&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-function-name%2Fdownload%2F%40babel%2Fhelper-function-name-7.15.4.tgz"
"version" "7.15.4"
dependencies:
"@babel/helper-get-function-arity" "^7.15.4"
"@babel/template" "^7.15.4"
"@babel/types" "^7.15.4"
"@babel/helper-get-function-arity@^7.15.4":
"integrity" "sha1-CYgYk0oTf854tTaj4BWGS+Hih5s="
"resolved" "https://registry.nlark.com/@babel/helper-get-function-arity/download/@babel/helper-get-function-arity-7.15.4.tgz?cache=0&sync_timestamp=1630618916983&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-get-function-arity%2Fdownload%2F%40babel%2Fhelper-get-function-arity-7.15.4.tgz"
"version" "7.15.4"
dependencies:
"@babel/types" "^7.15.4"
"@babel/helper-hoist-variables@^7.15.4":
"integrity" "sha1-CZk6MlnA6Rj5nRBCYd/fwDPxeN8="
"resolved" "https://registry.nlark.com/@babel/helper-hoist-variables/download/@babel/helper-hoist-variables-7.15.4.tgz?cache=0&sync_timestamp=1630618919536&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-hoist-variables%2Fdownload%2F%40babel%2Fhelper-hoist-variables-7.15.4.tgz"
"version" "7.15.4"
dependencies:
"@babel/types" "^7.15.4"
"@babel/helper-member-expression-to-functions@^7.15.4":
"integrity" "sha1-v9NNybupgkpGWLAxfsL9VxpR5u8="
"resolved" "https://registry.nlark.com/@babel/helper-member-expression-to-functions/download/@babel/helper-member-expression-to-functions-7.15.4.tgz?cache=0&sync_timestamp=1630618921004&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-member-expression-to-functions%2Fdownload%2F%40babel%2Fhelper-member-expression-to-functions-7.15.4.tgz"
"version" "7.15.4"
dependencies:
"@babel/types" "^7.15.4"
"@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.15.4":
"integrity" "sha1-4YAH0jBjLeoZtHhTuYRHbntOED8="
"resolved" "https://registry.nlark.com/@babel/helper-module-imports/download/@babel/helper-module-imports-7.15.4.tgz?cache=0&sync_timestamp=1630619202866&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-module-imports%2Fdownload%2F%40babel%2Fhelper-module-imports-7.15.4.tgz"
"version" "7.15.4"
dependencies:
"@babel/types" "^7.15.4"
"@babel/helper-module-transforms@^7.15.4":
"integrity" "sha1-fagMjLwfAmVdg/i3nSWGav5Q0iY="
"resolved" "https://registry.nlark.com/@babel/helper-module-transforms/download/@babel/helper-module-transforms-7.15.7.tgz?cache=0&sync_timestamp=1631920002234&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-module-transforms%2Fdownload%2F%40babel%2Fhelper-module-transforms-7.15.7.tgz"
"version" "7.15.7"
dependencies:
"@babel/helper-module-imports" "^7.15.4"
"@babel/helper-replace-supers" "^7.15.4"
"@babel/helper-simple-access" "^7.15.4"
"@babel/helper-split-export-declaration" "^7.15.4"
"@babel/helper-validator-identifier" "^7.15.7"
"@babel/template" "^7.15.4"
"@babel/traverse" "^7.15.4"
"@babel/types" "^7.15.6"
"@babel/helper-optimise-call-expression@^7.15.4":
"integrity" "sha1-8xClEho7nMUtmrGRIr1ymCLe4XE="
"resolved" "https://registry.nlark.com/@babel/helper-optimise-call-expression/download/@babel/helper-optimise-call-expression-7.15.4.tgz?cache=0&sync_timestamp=1630618919803&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-optimise-call-expression%2Fdownload%2F%40babel%2Fhelper-optimise-call-expression-7.15.4.tgz"
"version" "7.15.4"
dependencies:
"@babel/types" "^7.15.4"
"@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.14.5":
"integrity" "sha1-WsgizpfuxGdBq3ClF5ceRDpwxak="
"resolved" "https://registry.nlark.com/@babel/helper-plugin-utils/download/@babel/helper-plugin-utils-7.14.5.tgz"
"version" "7.14.5"
"@babel/helper-replace-supers@^7.15.4":
"integrity" "sha1-UqirJrqRjH9t7ihiiwcHGse3NHo="
"resolved" "https://registry.nlark.com/@babel/helper-replace-supers/download/@babel/helper-replace-supers-7.15.4.tgz?cache=0&sync_timestamp=1630618924259&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-replace-supers%2Fdownload%2F%40babel%2Fhelper-replace-supers-7.15.4.tgz"
"version" "7.15.4"
dependencies:
"@babel/helper-member-expression-to-functions" "^7.15.4"
"@babel/helper-optimise-call-expression" "^7.15.4"
"@babel/traverse" "^7.15.4"
"@babel/types" "^7.15.4"
"@babel/helper-simple-access@^7.15.4":
"integrity" "sha1-rDaJBavx3o6XgUNLY12PhnS8wTs="
"resolved" "https://registry.nlark.com/@babel/helper-simple-access/download/@babel/helper-simple-access-7.15.4.tgz?cache=0&sync_timestamp=1630619204668&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-simple-access%2Fdownload%2F%40babel%2Fhelper-simple-access-7.15.4.tgz"
"version" "7.15.4"
dependencies:
"@babel/types" "^7.15.4"
"@babel/helper-split-export-declaration@^7.15.4":
"integrity" "sha1-rsq5Lc2+9qEKo7YqsgSwhfd24lc="
"resolved" "https://registry.nlark.com/@babel/helper-split-export-declaration/download/@babel/helper-split-export-declaration-7.15.4.tgz?cache=0&sync_timestamp=1630618922438&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-split-export-declaration%2Fdownload%2F%40babel%2Fhelper-split-export-declaration-7.15.4.tgz"
"version" "7.15.4"
dependencies:
"@babel/types" "^7.15.4"
"@babel/helper-validator-identifier@^7.14.5", "@babel/helper-validator-identifier@^7.14.9", "@babel/helper-validator-identifier@^7.15.7":
"integrity" "sha1-Ig35k7/pBKSmsCq08zhaXr9uI4k="
"resolved" "https://registry.nlark.com/@babel/helper-validator-identifier/download/@babel/helper-validator-identifier-7.15.7.tgz?cache=0&sync_timestamp=1631920110587&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-validator-identifier%2Fdownload%2F%40babel%2Fhelper-validator-identifier-7.15.7.tgz"
"version" "7.15.7"
"@babel/helper-validator-option@^7.14.5":
"integrity" "sha1-bnKh//GNXfy4eOHmLxoCHEty1aM="
"resolved" "https://registry.nlark.com/@babel/helper-validator-option/download/@babel/helper-validator-option-7.14.5.tgz"
"version" "7.14.5"
"@babel/helpers@^7.15.4":
"integrity" "sha1-X0DwIFCjAnEho89I1JfAXFVer0M="
"resolved" "https://registry.nlark.com/@babel/helpers/download/@babel/helpers-7.15.4.tgz"
"version" "7.15.4"
dependencies:
"@babel/template" "^7.15.4"
"@babel/traverse" "^7.15.4"
"@babel/types" "^7.15.4"
"@babel/highlight@^7.10.4", "@babel/highlight@^7.14.5":
"integrity" "sha1-aGGlLwOWZAUAH2qlNKAaJNmejNk="
"resolved" "https://registry.nlark.com/@babel/highlight/download/@babel/highlight-7.14.5.tgz?cache=0&sync_timestamp=1623280393681&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhighlight%2Fdownload%2F%40babel%2Fhighlight-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/helper-validator-identifier" "^7.14.5"
"chalk" "^2.0.0"
"js-tokens" "^4.0.0"
"@babel/parser@^7.15.0", "@babel/parser@^7.15.4", "@babel/parser@^7.15.5", "@babel/parser@^7.6.0", "@babel/parser@^7.9.6":
"integrity" "sha1-DD7UousHsWXfqFs8xFxyczTE7a4="
"resolved" "https://registry.nlark.com/@babel/parser/download/@babel/parser-7.15.7.tgz?cache=0&sync_timestamp=1631920112644&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fparser%2Fdownload%2F%40babel%2Fparser-7.15.7.tgz"
"version" "7.15.7"
"@babel/plugin-syntax-import-meta@^7.10.4":
"integrity" "sha1-7mATSMNw+jNNIge+FYd3SWUh/VE="
"resolved" "https://registry.nlark.com/@babel/plugin-syntax-import-meta/download/@babel/plugin-syntax-import-meta-7.10.4.tgz"
"version" "7.10.4"
dependencies:
"@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-syntax-jsx@^7.0.0":
"integrity" "sha1-AA4uJdhnPM5JMAUXo+2kTCY+QgE="
"resolved" "https://registry.nlark.com/@babel/plugin-syntax-jsx/download/@babel/plugin-syntax-jsx-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/helper-plugin-utils" "^7.14.5"
"@babel/plugin-syntax-typescript@^7.14.5":
"integrity" "sha1-uCxs5HGxZbXOQgz5KRTW+0YiVxY="
"resolved" "https://registry.nlark.com/@babel/plugin-syntax-typescript/download/@babel/plugin-syntax-typescript-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/helper-plugin-utils" "^7.14.5"
"@babel/plugin-transform-typescript@^7.15.4":
"integrity" "sha1-23oGLc+L5fwJa8DutAoT+/ofolE="
"resolved" "https://registry.nlark.com/@babel/plugin-transform-typescript/download/@babel/plugin-transform-typescript-7.15.4.tgz?cache=0&sync_timestamp=1630618928216&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fplugin-transform-typescript%2Fdownload%2F%40babel%2Fplugin-transform-typescript-7.15.4.tgz"
"version" "7.15.4"
dependencies:
"@babel/helper-create-class-features-plugin" "^7.15.4"
"@babel/helper-plugin-utils" "^7.14.5"
"@babel/plugin-syntax-typescript" "^7.14.5"
"@babel/template@^7.0.0", "@babel/template@^7.15.4":
"integrity" "sha1-UYmNNdzz+qZwxO5q/P1RfuE58ZQ="
"resolved" "https://registry.nlark.com/@babel/template/download/@babel/template-7.15.4.tgz?cache=0&sync_timestamp=1630618922172&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftemplate%2Fdownload%2F%40babel%2Ftemplate-7.15.4.tgz"
"version" "7.15.4"
dependencies:
"@babel/code-frame" "^7.14.5"
"@babel/parser" "^7.15.4"
"@babel/types" "^7.15.4"
"@babel/traverse@^7.0.0", "@babel/traverse@^7.15.4":
"integrity" "sha1-/4UQNnoUS/v/VS2eGOKPPiiJwi0="
"resolved" "https://registry.nlark.com/@babel/traverse/download/@babel/traverse-7.15.4.tgz?cache=0&sync_timestamp=1630618923983&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftraverse%2Fdownload%2F%40babel%2Ftraverse-7.15.4.tgz"
"version" "7.15.4"
dependencies:
"@babel/code-frame" "^7.14.5"
"@babel/generator" "^7.15.4"
"@babel/helper-function-name" "^7.15.4"
"@babel/helper-hoist-variables" "^7.15.4"
"@babel/helper-split-export-declaration" "^7.15.4"
"@babel/parser" "^7.15.4"
"@babel/types" "^7.15.4"
"debug" "^4.1.0"
"globals" "^11.1.0"
"@babel/types@^7.0.0", "@babel/types@^7.15.4", "@babel/types@^7.15.6", "@babel/types@^7.6.1", "@babel/types@^7.9.6":
"integrity" "sha1-mavcSCGLKIHAWN0KerBbmcm+dY8="
"resolved" "https://registry.nlark.com/@babel/types/download/@babel/types-7.15.6.tgz?cache=0&sync_timestamp=1631216657849&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.15.6.tgz"
"version" "7.15.6"
dependencies:
"@babel/helper-validator-identifier" "^7.14.9"
"to-fast-properties" "^2.0.0"
"@emmetio/abbreviation@^2.2.2":
"integrity" "sha1-dGdi/Z56jC6mBPWAxi48/iUOaYk="
"resolved" "https://registry.nlark.com/@emmetio/abbreviation/download/@emmetio/abbreviation-2.2.2.tgz"
"version" "2.2.2"
dependencies:
"@emmetio/scanner" "^1.0.0"
"@emmetio/css-abbreviation@^2.1.4":
"integrity" "sha1-kDYuihEizjt29sMVeQfTAYL1P1Q="
"resolved" "https://registry.nlark.com/@emmetio/css-abbreviation/download/@emmetio/css-abbreviation-2.1.4.tgz"
"version" "2.1.4"
dependencies:
"@emmetio/scanner" "^1.0.0"
"@emmetio/scanner@^1.0.0":
"integrity" "sha1-Blsq9iM/50dNRII+PeuJckr0K18="
"resolved" "https://registry.npm.taobao.org/@emmetio/scanner/download/@emmetio/scanner-1.0.0.tgz"
"version" "1.0.0"
"@eslint/eslintrc@^0.4.3":
"integrity" "sha1-nkKYHvA1vrPdSa3ResuW6P9vOUw="
"resolved" "https://registry.nlark.com/@eslint/eslintrc/download/@eslint/eslintrc-0.4.3.tgz"
"version" "0.4.3"
dependencies:
"ajv" "^6.12.4"
"debug" "^4.1.1"
"espree" "^7.3.0"
"globals" "^13.9.0"
"ignore" "^4.0.6"
"import-fresh" "^3.2.1"
"js-yaml" "^3.13.1"
"minimatch" "^3.0.4"
"strip-json-comments" "^3.1.1"
"@humanwhocodes/config-array@^0.5.0":
"integrity" "sha1-FAeWfUxu7Nc4j4Os8er00Mbljvk="
"resolved" "https://registry.npmmirror.com/@humanwhocodes/config-array/download/@humanwhocodes/config-array-0.5.0.tgz"
"version" "0.5.0"
dependencies:
"@humanwhocodes/object-schema" "^1.2.0"
"debug" "^4.1.1"
"minimatch" "^3.0.4"
"@humanwhocodes/object-schema@^1.2.0":
"integrity" "sha1-h956+cIxgm/daKxyWPd8Qp4OX88="
"resolved" "https://registry.nlark.com/@humanwhocodes/object-schema/download/@humanwhocodes/object-schema-1.2.0.tgz?cache=0&sync_timestamp=1625264051240&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40humanwhocodes%2Fobject-schema%2Fdownload%2F%40humanwhocodes%2Fobject-schema-1.2.0.tgz"
"version" "1.2.0"
"@nodelib/[email protected]":
"integrity" "sha1-dhnC6yGyVIP20WdUi0z9WnSIw9U="
"resolved" "https://registry.nlark.com/@nodelib/fs.scandir/download/@nodelib/fs.scandir-2.1.5.tgz"
"version" "2.1.5"
dependencies:
"@nodelib/fs.stat" "2.0.5"
"run-parallel" "^1.1.9"
"@nodelib/fs.stat@^2.0.2", "@nodelib/[email protected]":
"integrity" "sha1-W9Jir5Tp0lvR5xsF3u1Eh2oiLos="
"resolved" "https://registry.nlark.com/@nodelib/fs.stat/download/@nodelib/fs.stat-2.0.5.tgz?cache=0&sync_timestamp=1622792655362&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40nodelib%2Ffs.stat%2Fdownload%2F%40nodelib%2Ffs.stat-2.0.5.tgz"
"version" "2.0.5"
"@nodelib/fs.walk@^1.2.3":
"integrity" "sha1-6Vc36LtnRt3t9pxVaVNJTxlv5po="
"resolved" "https://registry.nlark.com/@nodelib/fs.walk/download/@nodelib/fs.walk-1.2.8.tgz?cache=0&sync_timestamp=1625769815389&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40nodelib%2Ffs.walk%2Fdownload%2F%40nodelib%2Ffs.walk-1.2.8.tgz"
"version" "1.2.8"
dependencies:
"@nodelib/fs.scandir" "2.1.5"
"fastq" "^1.6.0"
"@rollup/pluginutils@^4.1.1":
"integrity" "sha1-HU2obdTt7RVlalfZM/2iuaCNR+w="
"resolved" "https://registry.nlark.com/@rollup/pluginutils/download/@rollup/pluginutils-4.1.1.tgz?cache=0&sync_timestamp=1626393703548&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40rollup%2Fpluginutils%2Fdownload%2F%40rollup%2Fpluginutils-4.1.1.tgz"
"version" "4.1.1"
dependencies:
"estree-walker" "^2.0.1"
"picomatch" "^2.2.2"
"@types/json-schema@^7.0.7":
"integrity" "sha1-l+3JA36gw4WFMgsolk3eOznkZg0="
"resolved" "https://registry.nlark.com/@types/json-schema/download/@types/json-schema-7.0.9.tgz?cache=0&sync_timestamp=1629708189890&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fjson-schema%2Fdownload%2F%40types%2Fjson-schema-7.0.9.tgz"
"version" "7.0.9"
"@typescript-eslint/eslint-plugin@^4.32.0":
"integrity" "sha1-RtI3CukxEJLypvckbSg1fa8tTok="
"resolved" "https://registry.npmmirror.com/@typescript-eslint/eslint-plugin/download/@typescript-eslint/eslint-plugin-4.32.0.tgz?cache=0&sync_timestamp=1632763414146&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40typescript-eslint%2Feslint-plugin%2Fdownload%2F%40typescript-eslint%2Feslint-plugin-4.32.0.tgz"
"version" "4.32.0"
dependencies:
"@typescript-eslint/experimental-utils" "4.32.0"
"@typescript-eslint/scope-manager" "4.32.0"
"debug" "^4.3.1"
"functional-red-black-tree" "^1.0.1"
"ignore" "^5.1.8"
"regexpp" "^3.1.0"
"semver" "^7.3.5"
"tsutils" "^3.21.0"
"@typescript-eslint/[email protected]":
"integrity" "sha1-U6gmfRbKWnkTRzkSmHGWbFalncQ="
"resolved" "https://registry.npmmirror.com/@typescript-eslint/experimental-utils/download/@typescript-eslint/experimental-utils-4.32.0.tgz"
"version" "4.32.0"
dependencies:
"@types/json-schema" "^7.0.7"
"@typescript-eslint/scope-manager" "4.32.0"
"@typescript-eslint/types" "4.32.0"
"@typescript-eslint/typescript-estree" "4.32.0"
"eslint-scope" "^5.1.1"
"eslint-utils" "^3.0.0"
"@typescript-eslint/parser@^4.0.0", "@typescript-eslint/parser@^4.32.0":
"integrity" "sha1-dR7MoOL+zT1ESEqbMEn/wYcWFuU="
"resolved" "https://registry.npmmirror.com/@typescript-eslint/parser/download/@typescript-eslint/parser-4.32.0.tgz"
"version" "4.32.0"
dependencies:
"@typescript-eslint/scope-manager" "4.32.0"
"@typescript-eslint/types" "4.32.0"
"@typescript-eslint/typescript-estree" "4.32.0"
"debug" "^4.3.1"
"@typescript-eslint/[email protected]":
"integrity" "sha1-4DyGaPi5VAcrP5RNW3mcDJIlp9U="
"resolved" "https://registry.npmmirror.com/@typescript-eslint/scope-manager/download/@typescript-eslint/scope-manager-4.32.0.tgz"
"version" "4.32.0"
dependencies:
"@typescript-eslint/types" "4.32.0"
"@typescript-eslint/visitor-keys" "4.32.0"
"@typescript-eslint/[email protected]":
"integrity" "sha1-UsYzwY2keu4JRJFEv1lWWrNt8A0="
"resolved" "https://registry.npmmirror.com/@typescript-eslint/types/download/@typescript-eslint/types-4.32.0.tgz"
"version" "4.32.0"
"@typescript-eslint/[email protected]":
"integrity" "sha1-2wDMxBzO3I1zZ+o/UMaZS476nzs="
"resolved" "https://registry.npmmirror.com/@typescript-eslint/typescript-estree/download/@typescript-eslint/typescript-estree-4.32.0.tgz"
"version" "4.32.0"
dependencies:
"@typescript-eslint/types" "4.32.0"
"@typescript-eslint/visitor-keys" "4.32.0"
"debug" "^4.3.1"
"globby" "^11.0.3"
"is-glob" "^4.0.1"
"semver" "^7.3.5"
"tsutils" "^3.21.0"
"@typescript-eslint/[email protected]":
"integrity" "sha1-RVuotRJC8nIqSX/64pMT8zsUy38="
"resolved" "https://registry.npmmirror.com/@typescript-eslint/visitor-keys/download/@typescript-eslint/visitor-keys-4.32.0.tgz"
"version" "4.32.0"
dependencies:
"@typescript-eslint/types" "4.32.0"
"eslint-visitor-keys" "^2.0.0"
"@vitejs/plugin-vue-jsx@^1.2.0":
"integrity" "sha1-pCFr27ixKABTfTnjtXEfzy60cO8="
"resolved" "https://registry.npmmirror.com/@vitejs/plugin-vue-jsx/download/@vitejs/plugin-vue-jsx-1.2.0.tgz?cache=0&sync_timestamp=1632923108286&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40vitejs%2Fplugin-vue-jsx%2Fdownload%2F%40vitejs%2Fplugin-vue-jsx-1.2.0.tgz"
"version" "1.2.0"
dependencies:
"@babel/core" "^7.15.5"
"@babel/plugin-syntax-import-meta" "^7.10.4"
"@babel/plugin-transform-typescript" "^7.15.4"
"@rollup/pluginutils" "^4.1.1"
"@vue/babel-plugin-jsx" "^1.0.7"
"hash-sum" "^2.0.0"
"@vitejs/plugin-vue@^1.9.2":
"integrity" "sha1-cjTvuMPD1gx+rDUKk1B0qxggrg4="
"resolved" "https://registry.npmmirror.com/@vitejs/plugin-vue/download/@vitejs/plugin-vue-1.9.2.tgz"
"version" "1.9.2"
"@volar/code-gen@^0.27.24":
"integrity" "sha1-zNvoWJUcHuTgw5eSMtUkEtxGdWo="
"resolved" "https://registry.npmmirror.com/@volar/code-gen/download/@volar/code-gen-0.27.24.tgz?cache=0&sync_timestamp=1632377710960&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40volar%2Fcode-gen%2Fdownload%2F%40volar%2Fcode-gen-0.27.24.tgz"
"version" "0.27.24"
dependencies:
"@volar/shared" "^0.27.24"
"@volar/source-map" "^0.27.24"
"@volar/html2pug@^0.27.13":
"integrity" "sha1-SN+nPs8e8ZVaAqBG0MiIRZUPrIU="
"resolved" "https://registry.nlark.com/@volar/html2pug/download/@volar/html2pug-0.27.13.tgz"
"version" "0.27.13"
dependencies:
"domelementtype" "^2.2.0"
"domhandler" "^4.2.0"
"htmlparser2" "^6.1.0"
"pug" "^3.0.2"
"@volar/shared@^0.27.24":
"integrity" "sha1-ozRX7IrAsNNn7VTJ4hkTpfjC1sI="
"resolved" "https://registry.npmmirror.com/@volar/shared/download/@volar/shared-0.27.24.tgz?cache=0&sync_timestamp=1632377709734&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40volar%2Fshared%2Fdownload%2F%40volar%2Fshared-0.27.24.tgz"
"version" "0.27.24"
dependencies:
"upath" "^2.0.1"
"vscode-jsonrpc" "^8.0.0-next.2"
"vscode-uri" "^3.0.2"
"@volar/source-map@^0.27.24":
"integrity" "sha1-YPLgcMFpvoLL9/+ilqMMKCPFIF8="
"resolved" "https://registry.npmmirror.com/@volar/source-map/download/@volar/source-map-0.27.24.tgz?cache=0&sync_timestamp=1632377710809&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40volar%2Fsource-map%2Fdownload%2F%40volar%2Fsource-map-0.27.24.tgz"
"version" "0.27.24"
dependencies:
"@volar/shared" "^0.27.24"
"@volar/transforms@^0.27.24":
"integrity" "sha1-aOvFPcouNohOJHwIZuw9JO2BV4Q="
"resolved" "https://registry.npmmirror.com/@volar/transforms/download/@volar/transforms-0.27.24.tgz?cache=0&sync_timestamp=1632377710981&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40volar%2Ftransforms%2Fdownload%2F%40volar%2Ftransforms-0.27.24.tgz"
"version" "0.27.24"
dependencies:
"@volar/shared" "^0.27.24"
"vscode-languageserver" "^8.0.0-next.2"
"@vscode/emmet-helper@^2.7.0":
"integrity" "sha1-PbSF9qZQGW/4u9OLobnkaOyNIvg="
"resolved" "https://registry.nlark.com/@vscode/emmet-helper/download/@vscode/emmet-helper-2.7.0.tgz"
"version" "2.7.0"
dependencies:
"emmet" "^2.3.0"
"jsonc-parser" "^2.3.0"
"vscode-languageserver-textdocument" "^1.0.1"
"vscode-languageserver-types" "^3.15.1"
"vscode-nls" "^5.0.0"
"vscode-uri" "^2.1.2"
"@vue/babel-helper-vue-transform-on@^1.0.2":
"integrity" "sha1-m5xpHNBvyFUiGiR1w8yDHXdLx9w="
"resolved" "https://registry.nlark.com/@vue/babel-helper-vue-transform-on/download/@vue/babel-helper-vue-transform-on-1.0.2.tgz"
"version" "1.0.2"
"@vue/babel-plugin-jsx@^1.0.7":
"integrity" "sha1-63OHHL5Gi8EhQUQaAFLYlIrE9n0="
"resolved" "https://registry.npmmirror.com/@vue/babel-plugin-jsx/download/@vue/babel-plugin-jsx-1.1.0.tgz?cache=0&sync_timestamp=1632955958779&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40vue%2Fbabel-plugin-jsx%2Fdownload%2F%40vue%2Fbabel-plugin-jsx-1.1.0.tgz"
"version" "1.1.0"
dependencies:
"@babel/helper-module-imports" "^7.0.0"
"@babel/plugin-syntax-jsx" "^7.0.0"
"@babel/template" "^7.0.0"
"@babel/traverse" "^7.0.0"
"@babel/types" "^7.0.0"
"@vue/babel-helper-vue-transform-on" "^1.0.2"
"camelcase" "^6.0.0"
"html-tags" "^3.1.0"
"svg-tags" "^1.0.0"
"@vue/[email protected]":
"integrity" "sha1-tTfdN3zlH9tk6bMOv7/3zXCmTLk="
"resolved" "https://registry.npmmirror.com/@vue/compiler-core/download/@vue/compiler-core-3.2.19.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40vue%2Fcompiler-core%2Fdownload%2F%40vue%2Fcompiler-core-3.2.19.tgz"
"version" "3.2.19"
dependencies:
"@babel/parser" "^7.15.0"
"@vue/shared" "3.2.19"
"estree-walker" "^2.0.2"
"source-map" "^0.6.1"
"@vue/compiler-dom@^3.2.19", "@vue/[email protected]":
"integrity" "sha1-Bge8kN5q9V/ec7CbPE0L+MtZftg="
"resolved" "https://registry.npmmirror.com/@vue/compiler-dom/download/@vue/compiler-dom-3.2.19.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40vue%2Fcompiler-dom%2Fdownload%2F%40vue%2Fcompiler-dom-3.2.19.tgz"
"version" "3.2.19"
dependencies:
"@vue/compiler-core" "3.2.19"
"@vue/shared" "3.2.19"
"@vue/[email protected]":
"integrity" "sha1-1BIZWpjr1JuEYC8XFxkpSh2VSb4="
"resolved" "https://registry.npmmirror.com/@vue/compiler-sfc/download/@vue/compiler-sfc-3.2.19.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40vue%2Fcompiler-sfc%2Fdownload%2F%40vue%2Fcompiler-sfc-3.2.19.tgz"
"version" "3.2.19"
dependencies:
"@babel/parser" "^7.15.0"
"@vue/compiler-core" "3.2.19"
"@vue/compiler-dom" "3.2.19"
"@vue/compiler-ssr" "3.2.19"
"@vue/ref-transform" "3.2.19"
"@vue/shared" "3.2.19"
"estree-walker" "^2.0.2"
"magic-string" "^0.25.7"
"postcss" "^8.1.10"
"source-map" "^0.6.1"
"@vue/[email protected]":
"integrity" "sha1-PpHs9w+PlhxfY+rNITm82rmnoHw="
"resolved" "https://registry.npmmirror.com/@vue/compiler-ssr/download/@vue/compiler-ssr-3.2.19.tgz?cache=0&sync_timestamp=1632596768273&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40vue%2Fcompiler-ssr%2Fdownload%2F%40vue%2Fcompiler-ssr-3.2.19.tgz"
"version" "3.2.19"
dependencies:
"@vue/compiler-dom" "3.2.19"
"@vue/shared" "3.2.19"
"@vue/devtools-api@^6.0.0-beta.10":
"integrity" "sha1-hMCv+SiaVylMuXSQgR9p6KCmf4o="
"resolved" "https://registry.npmmirror.com/@vue/devtools-api/download/@vue/devtools-api-6.0.0-beta.18.tgz?cache=0&sync_timestamp=1632352005520&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40vue%2Fdevtools-api%2Fdownload%2F%40vue%2Fdevtools-api-6.0.0-beta.18.tgz"
"version" "6.0.0-beta.18"
"@vue/reactivity@^3.2.19", "@vue/[email protected]":
"integrity" "sha1-/G4PAQbylSJoNc/tX/X4TZJ76mU="
"resolved" "https://registry.npmmirror.com/@vue/reactivity/download/@vue/reactivity-3.2.19.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40vue%2Freactivity%2Fdownload%2F%40vue%2Freactivity-3.2.19.tgz"
"version" "3.2.19"
dependencies:
"@vue/shared" "3.2.19"
"@vue/[email protected]":
"integrity" "sha1-zw+YZIa7JoOPvQl0npJ7qxl0VgA="
"resolved" "https://registry.npmmirror.com/@vue/ref-transform/download/@vue/ref-transform-3.2.19.tgz?cache=0&sync_timestamp=1632596767728&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40vue%2Fref-transform%2Fdownload%2F%40vue%2Fref-transform-3.2.19.tgz"
"version" "3.2.19"
dependencies:
"@babel/parser" "^7.15.0"
"@vue/compiler-core" "3.2.19"
"@vue/shared" "3.2.19"
"estree-walker" "^2.0.2"
"magic-string" "^0.25.7"
"@vue/[email protected]":
"integrity" "sha1-gHcVt/RyiruE+kqO/b432N20xtM="
"resolved" "https://registry.npmmirror.com/@vue/runtime-core/download/@vue/runtime-core-3.2.19.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40vue%2Fruntime-core%2Fdownload%2F%40vue%2Fruntime-core-3.2.19.tgz"
"version" "3.2.19"
dependencies:
"@vue/reactivity" "3.2.19"
"@vue/shared" "3.2.19"
"@vue/[email protected]":
"integrity" "sha1-fov2RXVHA+Ng+hMuS+kRPt8jd7s="
"resolved" "https://registry.npmmirror.com/@vue/runtime-dom/download/@vue/runtime-dom-3.2.19.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40vue%2Fruntime-dom%2Fdownload%2F%40vue%2Fruntime-dom-3.2.19.tgz"
"version" "3.2.19"
dependencies:
"@vue/runtime-core" "3.2.19"
"@vue/shared" "3.2.19"
"csstype" "^2.6.8"
"@vue/[email protected]":
"integrity" "sha1-hwvOyffNruDCGHoWm25jarQ2L7E="
"resolved" "https://registry.npmmirror.com/@vue/server-renderer/download/@vue/server-renderer-3.2.19.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40vue%2Fserver-renderer%2Fdownload%2F%40vue%2Fserver-renderer-3.2.19.tgz"
"version" "3.2.19"
dependencies:
"@vue/compiler-ssr" "3.2.19"
"@vue/shared" "3.2.19"
"@vue/shared@^3.2.19", "@vue/[email protected]":
"integrity" "sha1-ER7D2hgzfYYnREaYTEmSWxsrLdc="
"resolved" "https://registry.npmmirror.com/@vue/shared/download/@vue/shared-3.2.19.tgz?cache=0&sync_timestamp=1632596763718&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40vue%2Fshared%2Fdownload%2F%40vue%2Fshared-3.2.19.tgz"
"version" "3.2.19"
"@yireen/squoosh-browser@^1.0.7":
"integrity" "sha512-B/dbJ4tM9oj0UGYFRYaeIkMGWLByyjNP+nZH8nffU/rI+QXC///hG807Eu/DIlA58yKiAI58BX+SxZBq0pEOBA=="
"resolved" "https://registry.npmmirror.com/@yireen/squoosh-browser/-/squoosh-browser-1.0.7.tgz"
"version" "1.0.7"
dependencies:
"wasm-feature-detect" "1.2.11"
"acorn-jsx@^5.2.0", "acorn-jsx@^5.3.1":
"integrity" "sha1-ftW7VZCLOy8bxVxq8WU7rafweTc="
"resolved" "https://registry.nlark.com/acorn-jsx/download/acorn-jsx-5.3.2.tgz"
"version" "5.3.2"
"acorn@^6.0.0 || ^7.0.0 || ^8.0.0", "acorn@^7.1.1", "acorn@^7.4.0":
"integrity" "sha1-/q7SVZc9LndVW4PbwIhRpsY1IPo="
"resolved" "https://registry.nlark.com/acorn/download/acorn-7.4.1.tgz"
"version" "7.4.1"
"ajv@^6.10.0", "ajv@^6.12.4":
"integrity" "sha1-uvWmLoArB9l3A0WG+MO69a3ybfQ="
"resolved" "https://registry.nlark.com/ajv/download/ajv-6.12.6.tgz?cache=0&sync_timestamp=1631470912358&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fajv%2Fdownload%2Fajv-6.12.6.tgz"
"version" "6.12.6"
dependencies:
"fast-deep-equal" "^3.1.1"
"fast-json-stable-stringify" "^2.0.0"
"json-schema-traverse" "^0.4.1"
"uri-js" "^4.2.2"
"ajv@^8.0.1":
"integrity" "sha1-EaZlJ3Ydw+mjhF6nddLTwEFOh2Q="
"resolved" "https://registry.nlark.com/ajv/download/ajv-8.6.3.tgz?cache=0&sync_timestamp=1631470912358&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fajv%2Fdownload%2Fajv-8.6.3.tgz"
"version" "8.6.3"
dependencies:
"fast-deep-equal" "^3.1.1"
"json-schema-traverse" "^1.0.0"
"require-from-string" "^2.0.2"
"uri-js" "^4.2.2"
"ansi-colors@^4.1.1":
"integrity" "sha1-y7muJWv3UK8eqzRPIpqif+lLo0g="
"resolved" "https://registry.nlark.com/ansi-colors/download/ansi-colors-4.1.1.tgz"
"version" "4.1.1"
"ansi-regex@^5.0.1":
"integrity" "sha1-CCyyyJyf6GWaMRpTvWpNxTAdswQ="
"resolved" "https://registry.nlark.com/ansi-regex/download/ansi-regex-5.0.1.tgz?cache=0&sync_timestamp=1631634988487&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fansi-regex%2Fdownload%2Fansi-regex-5.0.1.tgz"
"version" "5.0.1"
"ansi-styles@^3.2.1":
"integrity" "sha1-QfuyAkPlCxK+DwS43tvwdSDOhB0="
"resolved" "https://registry.nlark.com/ansi-styles/download/ansi-styles-3.2.1.tgz"
"version" "3.2.1"
dependencies:
"color-convert" "^1.9.0"
"ansi-styles@^4.0.0", "ansi-styles@^4.1.0":
"integrity" "sha1-7dgDYornHATIWuegkG7a00tkiTc="
"resolved" "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz"
"version" "4.3.0"
dependencies:
"color-convert" "^2.0.1"
"anymatch@~3.1.2":
"integrity" "sha1-wFV8CWrzLxBhmPT04qODU343hxY="
"resolved" "https://registry.nlark.com/anymatch/download/anymatch-3.1.2.tgz"
"version" "3.1.2"
dependencies:
"normalize-path" "^3.0.0"
"picomatch" "^2.0.4"
"argparse@^1.0.7":
"integrity" "sha1-vNZ5HqWuCXJeF+WtmIE0zUCz2RE="
"resolved" "https://registry.nlark.com/argparse/download/argparse-1.0.10.tgz"
"version" "1.0.10"
dependencies:
"sprintf-js" "~1.0.2"
"array-union@^2.1.0":
"integrity" "sha1-t5hCCtvrHego2ErNii4j0+/oXo0="
"resolved" "https://registry.npm.taobao.org/array-union/download/array-union-2.1.0.tgz"
"version" "2.1.0"
"asap@~2.0.3":
"integrity" "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY="
"resolved" "https://registry.npm.taobao.org/asap/download/asap-2.0.6.tgz"
"version" "2.0.6"
"assert-never@^1.2.1":
"integrity" "sha1-EfDjY78UYgX7CBk7XHuQ9NHPRP4="
"resolved" "https://registry.npm.taobao.org/assert-never/download/assert-never-1.2.1.tgz"
"version" "1.2.1"
"astral-regex@^2.0.0":
"integrity" "sha1-SDFDxWeu7UeFdZwIZXhtx319LjE="
"resolved" "https://registry.nlark.com/astral-regex/download/astral-regex-2.0.0.tgz"
"version" "2.0.0"
"axios@^0.22.0":
"integrity" "sha1-v3AsQftQ+8pFOVidg5oHcRe3myU="
"resolved" "https://registry.npmmirror.com/axios/download/axios-0.22.0.tgz?cache=0&sync_timestamp=1633067660010&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Faxios%2Fdownload%2Faxios-0.22.0.tgz"
"version" "0.22.0"
dependencies:
"follow-redirects" "^1.14.4"
"integrity" "sha1-9m7Ncpg1eu5ElV8jWm71QhkQSxE="
"resolved" "https://registry.npm.taobao.org/babel-walk/download/babel-walk-3.0.0-canary-5.tgz"
"version" "3.0.0-canary-5"
dependencies:
"@babel/types" "^7.9.6"
"balanced-match@^1.0.0":
"integrity" "sha1-6D46fj8wCzTLnYf2FfoMvzV2kO4="
"resolved" "https://registry.npm.taobao.org/balanced-match/download/balanced-match-1.0.2.tgz"
"version" "1.0.2"
"binary-extensions@^2.0.0":
"integrity" "sha1-dfUC7q+f/eQvyYgpZFvk6na9ni0="
"resolved" "https://registry.nlark.com/binary-extensions/download/binary-extensions-2.2.0.tgz"
"version" "2.2.0"
"brace-expansion@^1.1.7":
"integrity" "sha1-PH/L9SnYcibz0vUrlm/1Jx60Qd0="
"resolved" "https://registry.nlark.com/brace-expansion/download/brace-expansion-1.1.11.tgz"
"version" "1.1.11"
dependencies:
"balanced-match" "^1.0.0"
"concat-map" "0.0.1"
"braces@^3.0.1", "braces@~3.0.2":
"integrity" "sha1-NFThpGLujVmeI23zNs2epPiv4Qc="
"resolved" "https://registry.npm.taobao.org/braces/download/braces-3.0.2.tgz"
"version" "3.0.2"
dependencies:
"fill-range" "^7.0.1"
"browserslist@^4.16.6":
"integrity" "sha1-qhXb0vqzmaOZ/k32AbsJNjxUWKY="
"resolved" "https://registry.npmmirror.com/browserslist/download/browserslist-4.17.2.tgz?cache=0&sync_timestamp=1633025156645&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fbrowserslist%2Fdownload%2Fbrowserslist-4.17.2.tgz"
"version" "4.17.2"
dependencies:
"caniuse-lite" "^1.0.30001261"
"electron-to-chromium" "^1.3.854"
"escalade" "^3.1.1"
"nanocolors" "^0.2.12"
"node-releases" "^1.1.76"
"call-bind@^1.0.0", "call-bind@^1.0.2":
"integrity" "sha1-sdTonmiBGcPJqQOtMKuy9qkZvjw="
"resolved" "https://registry.nlark.com/call-bind/download/call-bind-1.0.2.tgz"
"version" "1.0.2"
dependencies:
"function-bind" "^1.1.1"
"get-intrinsic" "^1.0.2"
"callsites@^3.0.0":
"integrity" "sha1-s2MKvYlDQy9Us/BRkjjjPNffL3M="
"resolved" "https://registry.nlark.com/callsites/download/callsites-3.1.0.tgz?cache=0&sync_timestamp=1628464722297&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcallsites%2Fdownload%2Fcallsites-3.1.0.tgz"
"version" "3.1.0"
"camelcase@^6.0.0":
"integrity" "sha1-kkr4gcnVJaydh/QNlk5c6pgqGAk="
"resolved" "https://registry.npm.taobao.org/camelcase/download/camelcase-6.2.0.tgz"
"version" "6.2.0"
"caniuse-lite@^1.0.30001261":
"integrity" "sha1-fOem+0gqE3WFy8kIqvOOkMU6FqQ="
"resolved" "https://registry.npmmirror.com/caniuse-lite/download/caniuse-lite-1.0.30001263.tgz"
"version" "1.0.30001263"
"chalk@^2.0.0":
"integrity" "sha1-zUJUFnelQzPPVBpJEIwUMrRMlCQ="
"resolved" "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1627646697260&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-2.4.2.tgz"
"version" "2.4.2"
dependencies:
"ansi-styles" "^3.2.1"
"escape-string-regexp" "^1.0.5"
"supports-color" "^5.3.0"
"chalk@^4.0.0":
"integrity" "sha1-qsTit3NKdAhnrrFr8CqtVWoeegE="
"resolved" "https://registry.nlark.com/chalk/download/chalk-4.1.2.tgz?cache=0&sync_timestamp=1627646697260&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-4.1.2.tgz"
"version" "4.1.2"
dependencies:
"ansi-styles" "^4.1.0"
"supports-color" "^7.1.0"
"character-parser@^2.2.0":
"integrity" "sha1-x84o821LzZdE5f/CxfzeHHMmH8A="
"resolved" "https://registry.npm.taobao.org/character-parser/download/character-parser-2.2.0.tgz"
"version" "2.2.0"
dependencies:
"is-regex" "^1.0.3"
"chokidar@>=3.0.0 <4.0.0":
"integrity" "sha1-26OXb8rbAW9m/TZQIdkWANAcHnU="
"resolved" "https://registry.nlark.com/chokidar/download/chokidar-3.5.2.tgz?cache=0&sync_timestamp=1623763535523&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchokidar%2Fdownload%2Fchokidar-3.5.2.tgz"
"version" "3.5.2"
dependencies:
"anymatch" "~3.1.2"
"braces" "~3.0.2"
"glob-parent" "~5.1.2"
"is-binary-path" "~2.1.0"
"is-glob" "~4.0.1"
"normalize-path" "~3.0.0"
"readdirp" "~3.6.0"
optionalDependencies:
"fsevents" "~2.3.2"
"integrity" "sha512-Vw26VSLRpJfBofiVaFb/I8PVfdI1OxKcYShe6fm0sP/DtmiWQNCjhM/okTvdCo0G+lMMm1rMYbk4IK4x1X+kgQ=="
"resolved" "https://registry.npmmirror.com/clipboard/-/clipboard-2.0.4.tgz"
"version" "2.0.4"
dependencies:
"good-listener" "^1.2.2"
"select" "^1.1.2"
"tiny-emitter" "^2.0.0"
"color-convert@^1.9.0":
"integrity" "sha1-u3GFBpDh8TZWfeYp0tVHHe2kweg="
"resolved" "https://registry.npm.taobao.org/color-convert/download/color-convert-1.9.3.tgz"
"version" "1.9.3"
dependencies:
"color-name" "1.1.3"
"color-convert@^2.0.1":
"integrity" "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM="
"resolved" "https://registry.npm.taobao.org/color-convert/download/color-convert-2.0.1.tgz"
"version" "2.0.1"
dependencies:
"color-name" "~1.1.4"
"color-name@~1.1.4":
"integrity" "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI="
"resolved" "https://registry.npm.taobao.org/color-name/download/color-name-1.1.4.tgz"
"version" "1.1.4"
"integrity" "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU="
"resolved" "https://registry.npm.taobao.org/color-name/download/color-name-1.1.3.tgz"
"version" "1.1.3"
"integrity" "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s="
"resolved" "https://registry.nlark.com/concat-map/download/concat-map-0.0.1.tgz"
"version" "0.0.1"
"constantinople@^4.0.1":
"integrity" "sha1-De8RP6Dk3I3oMzGlz3nIsyUhMVE="
"resolved" "https://registry.npm.taobao.org/constantinople/download/constantinople-4.0.1.tgz"
"version" "4.0.1"
dependencies:
"@babel/parser" "^7.6.0"
"@babel/types" "^7.6.1"
"convert-source-map@^1.7.0":
"integrity" "sha1-8zc8MtIbTXgN2ABFFGhPt5HKQ2k="
"resolved" "https://registry.nlark.com/convert-source-map/download/convert-source-map-1.8.0.tgz"
"version" "1.8.0"
dependencies:
"safe-buffer" "~5.1.1"
"cross-spawn@^7.0.2":
"integrity" "sha1-9zqFudXUHQRVUcF34ogtSshXKKY="
"resolved" "https://registry.nlark.com/cross-spawn/download/cross-spawn-7.0.3.tgz"
"version" "7.0.3"
dependencies:
"path-key" "^3.1.0"
"shebang-command" "^2.0.0"
"which" "^2.0.1"
"csstype@^2.6.8":
"integrity" "sha1-mAqLUwhfNK8xNBCvBk8r0kF4Qhg="
"resolved" "https://registry.nlark.com/csstype/download/csstype-2.6.18.tgz"
"version" "2.6.18"
"debug@^4.0.1", "debug@^4.1.0", "debug@^4.1.1", "debug@^4.3.1":
"integrity" "sha1-8KScGKyHeeMdSgxgKd+3aHPHQos="
"resolved" "https://registry.nlark.com/debug/download/debug-4.3.2.tgz"
"version" "4.3.2"
dependencies:
"ms" "2.1.2"
"deep-is@^0.1.3":
"integrity" "sha1-pvLc5hL63S7x9Rm3NVHxfoUZmDE="
"resolved" "https://registry.nlark.com/deep-is/download/deep-is-0.1.4.tgz"
"version" "0.1.4"
"delegate@^3.1.2":
"integrity" "sha512-IofjkYBZaZivn0V8nnsMJGBr4jVLxHDheKSW88PyxS5QC4Vo9ZbZVvhzlSxY87fVq3STR6r+4cGepyHkcWOQSw=="
"resolved" "https://registry.npmmirror.com/delegate/-/delegate-3.2.0.tgz"
"version" "3.2.0"
"dir-glob@^3.0.1":
"integrity" "sha1-Vtv3PZkqSpO6FYT0U0Bj/S5BcX8="
"resolved" "https://registry.npm.taobao.org/dir-glob/download/dir-glob-3.0.1.tgz"
"version" "3.0.1"
dependencies:
"path-type" "^4.0.0"
"doctrine@^3.0.0":
"integrity" "sha1-rd6+rXKmV023g2OdyHoSF3OXOWE="
"resolved" "https://registry.nlark.com/doctrine/download/doctrine-3.0.0.tgz"
"version" "3.0.0"
dependencies:
"esutils" "^2.0.2"
"doctypes@^1.1.0":
"integrity" "sha1-6oCxBqh1OHdOijpKWv4pPeSJ4Kk="
"resolved" "https://registry.nlark.com/doctypes/download/doctypes-1.1.0.tgz"
"version" "1.1.0"
"dom-serializer@^1.0.1":
"integrity" "sha1-YgZDfTLO767HFhgDIwx6ILwbTZE="
"resolved" "https://registry.nlark.com/dom-serializer/download/dom-serializer-1.3.2.tgz?cache=0&sync_timestamp=1621256830355&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fdom-serializer%2Fdownload%2Fdom-serializer-1.3.2.tgz"
"version" "1.3.2"
dependencies:
"domelementtype" "^2.0.1"
"domhandler" "^4.2.0"
"entities" "^2.0.0"
"domelementtype@^2.0.1", "domelementtype@^2.2.0":
"integrity" "sha1-mgtsJ4LtahxzI9QiZxg9+b2LHVc="
"resolved" "https://registry.npm.taobao.org/domelementtype/download/domelementtype-2.2.0.tgz?cache=0&sync_timestamp=1617298545989&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fdomelementtype%2Fdownload%2Fdomelementtype-2.2.0.tgz"
"version" "2.2.0"
"domhandler@^4.0.0", "domhandler@^4.2.0":
"integrity" "sha1-6CXXIdGahrjCAaNSZOImxnjudV8="
"resolved" "https://registry.nlark.com/domhandler/download/domhandler-4.2.2.tgz?cache=0&sync_timestamp=1630246778110&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fdomhandler%2Fdownload%2Fdomhandler-4.2.2.tgz"
"version" "4.2.2"
dependencies:
"domelementtype" "^2.2.0"
"domutils@^2.5.2":
"integrity" "sha1-RDfe9dtuLR9dbuhZvZXKfQIEgTU="
"resolved" "https://registry.nlark.com/domutils/download/domutils-2.8.0.tgz?cache=0&sync_timestamp=1630106606599&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fdomutils%2Fdownload%2Fdomutils-2.8.0.tgz"
"version" "2.8.0"
dependencies:
"dom-serializer" "^1.0.1"
"domelementtype" "^2.2.0"
"domhandler" "^4.2.0"
"electron-to-chromium@^1.3.854":
"integrity" "sha1-dd7g7vlwK/+rv0wSk8mJzTyst7o="
"resolved" "https://registry.npmmirror.com/electron-to-chromium/download/electron-to-chromium-1.3.856.tgz?cache=0&sync_timestamp=1633053822944&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Felectron-to-chromium%2Fdownload%2Felectron-to-chromium-1.3.856.tgz"
"version" "1.3.856"
"emmet@^2.3.0":
"integrity" "sha1-W6DXpVaaaMdpffqJDHcuTzF50SM="
"resolved" "https://registry.npm.taobao.org/emmet/download/emmet-2.3.4.tgz"
"version" "2.3.4"
dependencies:
"@emmetio/abbreviation" "^2.2.2"
"@emmetio/css-abbreviation" "^2.1.4"
"emoji-regex@^8.0.0":
"integrity" "sha1-6Bj9ac5cz8tARZT4QpY79TFkzDc="
"resolved" "https://registry.npmmirror.com/emoji-regex/download/emoji-regex-8.0.0.tgz"
"version" "8.0.0"
"enquirer@^2.3.5":
"integrity" "sha1-Kn/l3WNKHkElqXXsmU/1RW3Dc00="
"resolved" "https://registry.nlark.com/enquirer/download/enquirer-2.3.6.tgz"
"version" "2.3.6"
dependencies:
"ansi-colors" "^4.1.1"
"entities@^2.0.0":
"integrity" "sha1-CY3JDruD2N/6CJ1VJWs1HTTE2lU="
"resolved" "https://registry.nlark.com/entities/download/entities-2.2.0.tgz?cache=0&sync_timestamp=1628508189267&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fentities%2Fdownload%2Fentities-2.2.0.tgz"
"version" "2.2.0"
"integrity" "sha1-rnEMBinsjDnF7x9p6G7VWSu0Eo8="
"resolved" "https://registry.npmmirror.com/esbuild-windows-64/download/esbuild-windows-64-0.13.3.tgz?cache=0&sync_timestamp=1632992729795&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fesbuild-windows-64%2Fdownload%2Fesbuild-windows-64-0.13.3.tgz"
"version" "0.13.3"
"esbuild@^0.13.2":
"integrity" "sha1-zJ/DR/yB/2RAzdH9uf5lwC7dzJc="
"resolved" "https://registry.npmmirror.com/esbuild/download/esbuild-0.13.3.tgz?cache=0&sync_timestamp=1632851511306&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fesbuild%2Fdownload%2Fesbuild-0.13.3.tgz"
"version" "0.13.3"
optionalDependencies:
"esbuild-android-arm64" "0.13.3"
"esbuild-darwin-64" "0.13.3"
"esbuild-darwin-arm64" "0.13.3"
"esbuild-freebsd-64" "0.13.3"
"esbuild-freebsd-arm64" "0.13.3"
"esbuild-linux-32" "0.13.3"
"esbuild-linux-64" "0.13.3"
"esbuild-linux-arm" "0.13.3"
"esbuild-linux-arm64" "0.13.3"
"esbuild-linux-mips64le" "0.13.3"
"esbuild-linux-ppc64le" "0.13.3"
"esbuild-openbsd-64" "0.13.3"
"esbuild-sunos-64" "0.13.3"
"esbuild-windows-32" "0.13.3"
"esbuild-windows-64" "0.13.3"
"esbuild-windows-arm64" "0.13.3"