-
Notifications
You must be signed in to change notification settings - Fork 13
/
yarn.lock
1878 lines (1603 loc) · 75.8 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", "@babel/code-frame@^7.12.13":
"integrity" "sha1-3PyCa+72XnXFDiHTg319lXmN1lg="
"resolved" "https://registry.npm.taobao.org/@babel/code-frame/download/@babel/code-frame-7.12.13.tgz?cache=0&sync_timestamp=1612314682452&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fcode-frame%2Fdownload%2F%40babel%2Fcode-frame-7.12.13.tgz"
"version" "7.12.13"
dependencies:
"@babel/highlight" "^7.12.13"
"@babel/generator@^7.14.2":
"integrity" "sha1-DCZS2R973at8zMa6gVfk9A3O25E="
"resolved" "https://registry.nlark.com/@babel/generator/download/@babel/generator-7.14.3.tgz"
"version" "7.14.3"
dependencies:
"@babel/types" "^7.14.2"
"jsesc" "^2.5.1"
"source-map" "^0.5.0"
"@babel/helper-function-name@^7.14.2":
"integrity" "sha1-OXaItZB2C273cltfCGDIJCfrqsI="
"resolved" "https://registry.nlark.com/@babel/helper-function-name/download/@babel/helper-function-name-7.14.2.tgz?cache=0&sync_timestamp=1620839929144&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-function-name%2Fdownload%2F%40babel%2Fhelper-function-name-7.14.2.tgz"
"version" "7.14.2"
dependencies:
"@babel/helper-get-function-arity" "^7.12.13"
"@babel/template" "^7.12.13"
"@babel/types" "^7.14.2"
"@babel/helper-get-function-arity@^7.12.13":
"integrity" "sha1-vGNFHUA6OzCCuX4diz/lvUCR5YM="
"resolved" "https://registry.npm.taobao.org/@babel/helper-get-function-arity/download/@babel/helper-get-function-arity-7.12.13.tgz?cache=0&sync_timestamp=1612314652298&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-get-function-arity%2Fdownload%2F%40babel%2Fhelper-get-function-arity-7.12.13.tgz"
"version" "7.12.13"
dependencies:
"@babel/types" "^7.12.13"
"@babel/helper-split-export-declaration@^7.12.13":
"integrity" "sha1-6UML4AuvPoiw4T5vnU6vITY3KwU="
"resolved" "https://registry.npm.taobao.org/@babel/helper-split-export-declaration/download/@babel/helper-split-export-declaration-7.12.13.tgz?cache=0&sync_timestamp=1612314686094&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-split-export-declaration%2Fdownload%2F%40babel%2Fhelper-split-export-declaration-7.12.13.tgz"
"version" "7.12.13"
dependencies:
"@babel/types" "^7.12.13"
"@babel/helper-validator-identifier@^7.14.0":
"integrity" "sha1-0mytikfGUoaxXfFUcxml0Lzycog="
"resolved" "https://registry.nlark.com/@babel/helper-validator-identifier/download/@babel/helper-validator-identifier-7.14.0.tgz?cache=0&sync_timestamp=1619727388937&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-validator-identifier%2Fdownload%2F%40babel%2Fhelper-validator-identifier-7.14.0.tgz"
"version" "7.14.0"
"@babel/highlight@^7.12.13":
"integrity" "sha1-MZfjdXEe9r+DTmfQ2uyI5PRhE88="
"resolved" "https://registry.nlark.com/@babel/highlight/download/@babel/highlight-7.14.0.tgz?cache=0&sync_timestamp=1619727029062&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhighlight%2Fdownload%2F%40babel%2Fhighlight-7.14.0.tgz"
"version" "7.14.0"
dependencies:
"@babel/helper-validator-identifier" "^7.14.0"
"chalk" "^2.0.0"
"js-tokens" "^4.0.0"
"@babel/parser@^7.12.0", "@babel/parser@^7.12.13", "@babel/parser@^7.13.9", "@babel/parser@^7.14.2", "@babel/parser@^7.7.0":
"integrity" "sha1-m1MO7LBx/QyTUZ3yXF/58UdZ8pg="
"resolved" "https://registry.nlark.com/@babel/parser/download/@babel/parser-7.14.3.tgz"
"version" "7.14.3"
"@babel/template@^7.12.13":
"integrity" "sha1-UwJlvooliduzdSOETFvLVZR/syc="
"resolved" "https://registry.npm.taobao.org/@babel/template/download/@babel/template-7.12.13.tgz"
"version" "7.12.13"
dependencies:
"@babel/code-frame" "^7.12.13"
"@babel/parser" "^7.12.13"
"@babel/types" "^7.12.13"
"@babel/traverse@^7.7.0":
"integrity" "sha1-kgGo2RJyOoMcJnnH678v4UFtdls="
"resolved" "https://registry.nlark.com/@babel/traverse/download/@babel/traverse-7.14.2.tgz?cache=0&sync_timestamp=1620839929860&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftraverse%2Fdownload%2F%40babel%2Ftraverse-7.14.2.tgz"
"version" "7.14.2"
dependencies:
"@babel/code-frame" "^7.12.13"
"@babel/generator" "^7.14.2"
"@babel/helper-function-name" "^7.14.2"
"@babel/helper-split-export-declaration" "^7.12.13"
"@babel/parser" "^7.14.2"
"@babel/types" "^7.14.2"
"debug" "^4.1.0"
"globals" "^11.1.0"
"@babel/types@^7.12.0", "@babel/types@^7.12.13", "@babel/types@^7.13.0", "@babel/types@^7.14.2", "@babel/types@^7.7.0":
"integrity" "sha1-QgiuADEH74oFfqgzPlbrZNL2osM="
"resolved" "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.2.tgz?cache=0&sync_timestamp=1620840277996&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.14.2.tgz"
"version" "7.14.2"
dependencies:
"@babel/helper-validator-identifier" "^7.14.0"
"to-fast-properties" "^2.0.0"
"@nodelib/fs.scandir@2.1.4":
"integrity" "sha1-1LNUml213iaD4MEHGrTxQJBLv2k="
"resolved" "https://registry.npm.taobao.org/@nodelib/fs.scandir/download/@nodelib/fs.scandir-2.1.4.tgz?cache=0&sync_timestamp=1609074440839&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40nodelib%2Ffs.scandir%2Fdownload%2F%40nodelib%2Ffs.scandir-2.1.4.tgz"
"version" "2.1.4"
dependencies:
"@nodelib/fs.stat" "2.0.4"
"run-parallel" "^1.1.9"
"@nodelib/fs.stat@^2.0.2", "@nodelib/fs.stat@2.0.4":
"integrity" "sha1-o/LdYbq0O424+hCKEhz//kxnZlU="
"resolved" "https://registry.npm.taobao.org/@nodelib/fs.stat/download/@nodelib/fs.stat-2.0.4.tgz?cache=0&sync_timestamp=1609082483486&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40nodelib%2Ffs.stat%2Fdownload%2F%40nodelib%2Ffs.stat-2.0.4.tgz"
"version" "2.0.4"
"@nodelib/fs.walk@^1.2.3":
"integrity" "sha1-zOk5azCqWv6eN1Zgj1gxrctT0GM="
"resolved" "https://registry.npm.taobao.org/@nodelib/fs.walk/download/@nodelib/fs.walk-1.2.6.tgz?cache=0&sync_timestamp=1609077069715&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40nodelib%2Ffs.walk%2Fdownload%2F%40nodelib%2Ffs.walk-1.2.6.tgz"
"version" "1.2.6"
dependencies:
"@nodelib/fs.scandir" "2.1.4"
"fastq" "^1.6.0"
"@types/json-schema@^7.0.3":
"integrity" "sha1-mKmTUWyFnrDVxMjwmDF6nqaNua0="
"resolved" "https://registry.nlark.com/@types/json-schema/download/@types/json-schema-7.0.7.tgz"
"version" "7.0.7"
"@types/node@^14.14.39":
"integrity" "sha1-O6dwBHcjs+643J/KAszop/tjeNo="
"resolved" "https://registry.nlark.com/@types/node/download/@types/node-14.17.0.tgz?cache=0&sync_timestamp=1621357822176&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fnode%2Fdownload%2F%40types%2Fnode-14.17.0.tgz"
"version" "14.17.0"
"@typescript-eslint/eslint-plugin@^4.4.0", "@typescript-eslint/eslint-plugin@4.4.0":
"integrity" "sha1-AyFoTdK5AsiRKEBc8Dhen+hWGTQ="
"resolved" "https://registry.nlark.com/@typescript-eslint/eslint-plugin/download/@typescript-eslint/eslint-plugin-4.4.0.tgz"
"version" "4.4.0"
dependencies:
"@typescript-eslint/experimental-utils" "4.4.0"
"@typescript-eslint/scope-manager" "4.4.0"
"debug" "^4.1.1"
"functional-red-black-tree" "^1.0.1"
"regexpp" "^3.0.0"
"semver" "^7.3.2"
"tsutils" "^3.17.1"
"@typescript-eslint/experimental-utils@4.4.0":
"integrity" "sha1-YqBdP1Q7j8XexJgoMGGOpNAw4ak="
"resolved" "https://registry.nlark.com/@typescript-eslint/experimental-utils/download/@typescript-eslint/experimental-utils-4.4.0.tgz"
"version" "4.4.0"
dependencies:
"@types/json-schema" "^7.0.3"
"@typescript-eslint/scope-manager" "4.4.0"
"@typescript-eslint/types" "4.4.0"
"@typescript-eslint/typescript-estree" "4.4.0"
"eslint-scope" "^5.0.0"
"eslint-utils" "^2.0.0"
"@typescript-eslint/parser@^4.0.0", "@typescript-eslint/parser@^4.4.0", "@typescript-eslint/parser@4.4.0":
"integrity" "sha1-ZZdNuadfI7A28Xs36Vm1+ZtlnsA="
"resolved" "https://registry.nlark.com/@typescript-eslint/parser/download/@typescript-eslint/parser-4.4.0.tgz"
"version" "4.4.0"
dependencies:
"@typescript-eslint/scope-manager" "4.4.0"
"@typescript-eslint/types" "4.4.0"
"@typescript-eslint/typescript-estree" "4.4.0"
"debug" "^4.1.1"
"@typescript-eslint/scope-manager@4.4.0":
"integrity" "sha1-Lz3SdpKhLMmgRqkLpqnYy3cxGQo="
"resolved" "https://registry.nlark.com/@typescript-eslint/scope-manager/download/@typescript-eslint/scope-manager-4.4.0.tgz"
"version" "4.4.0"
dependencies:
"@typescript-eslint/types" "4.4.0"
"@typescript-eslint/visitor-keys" "4.4.0"
"@typescript-eslint/types@4.4.0":
"integrity" "sha1-Y0QO+HpU2nOZoTvdS4IGB3bp5iE="
"resolved" "https://registry.nlark.com/@typescript-eslint/types/download/@typescript-eslint/types-4.4.0.tgz?cache=0&sync_timestamp=1621272240049&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40typescript-eslint%2Ftypes%2Fdownload%2F%40typescript-eslint%2Ftypes-4.4.0.tgz"
"version" "4.4.0"
"@typescript-eslint/typescript-estree@4.4.0":
"integrity" "sha1-FqLffBZxDd1UBrMrhrnBEkscpSY="
"resolved" "https://registry.nlark.com/@typescript-eslint/typescript-estree/download/@typescript-eslint/typescript-estree-4.4.0.tgz"
"version" "4.4.0"
dependencies:
"@typescript-eslint/types" "4.4.0"
"@typescript-eslint/visitor-keys" "4.4.0"
"debug" "^4.1.1"
"globby" "^11.0.1"
"is-glob" "^4.0.1"
"lodash" "^4.17.15"
"semver" "^7.3.2"
"tsutils" "^3.17.1"
"@typescript-eslint/visitor-keys@4.4.0":
"integrity" "sha1-CpEYNECC8UwPBRNCp0tC39sBJkA="
"resolved" "https://registry.nlark.com/@typescript-eslint/visitor-keys/download/@typescript-eslint/visitor-keys-4.4.0.tgz"
"version" "4.4.0"
dependencies:
"@typescript-eslint/types" "4.4.0"
"eslint-visitor-keys" "^2.0.0"
"@vitejs/plugin-vue@^1.2.1":
"integrity" "sha1-sAOPwRuQmfTNAfy/DuQZrdpBe1I="
"resolved" "https://registry.nlark.com/@vitejs/plugin-vue/download/@vitejs/plugin-vue-1.2.2.tgz"
"version" "1.2.2"
"@vue/compiler-core@3.0.11":
"integrity" "sha1-XvV55G17M2uHNSKHWNHCxQWq5po="
"resolved" "https://registry.nlark.com/@vue/compiler-core/download/@vue/compiler-core-3.0.11.tgz?cache=0&sync_timestamp=1620855784099&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40vue%2Fcompiler-core%2Fdownload%2F%40vue%2Fcompiler-core-3.0.11.tgz"
"version" "3.0.11"
dependencies:
"@babel/parser" "^7.12.0"
"@babel/types" "^7.12.0"
"@vue/shared" "3.0.11"
"estree-walker" "^2.0.1"
"source-map" "^0.6.1"
"@vue/compiler-dom@3.0.11":
"integrity" "sha1-sV/ByQk3H9ZxdGAgulW12rSnMO4="
"resolved" "https://registry.nlark.com/@vue/compiler-dom/download/@vue/compiler-dom-3.0.11.tgz"
"version" "3.0.11"
dependencies:
"@vue/compiler-core" "3.0.11"
"@vue/shared" "3.0.11"
"@vue/compiler-sfc@^3.0.5", "@vue/compiler-sfc@^3.0.6":
"integrity" "sha1-zYyiFUuIlntSH1rTsQ9fi2tmVnk="
"resolved" "https://registry.nlark.com/@vue/compiler-sfc/download/@vue/compiler-sfc-3.0.11.tgz"
"version" "3.0.11"
dependencies:
"@babel/parser" "^7.13.9"
"@babel/types" "^7.13.0"
"@vue/compiler-core" "3.0.11"
"@vue/compiler-dom" "3.0.11"
"@vue/compiler-ssr" "3.0.11"
"@vue/shared" "3.0.11"
"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/compiler-ssr@3.0.11":
"integrity" "sha1-rFoF/RJXQS+mYHnII9ggO2qImhM="
"resolved" "https://registry.nlark.com/@vue/compiler-ssr/download/@vue/compiler-ssr-3.0.11.tgz"
"version" "3.0.11"
dependencies:
"@vue/compiler-dom" "3.0.11"
"@vue/shared" "3.0.11"
"@vue/eslint-config-prettier@^6.0.0":
"integrity" "sha1-rVkSswj0rkaEWOAqKwXbC50kZwA="
"resolved" "https://registry.npm.taobao.org/@vue/eslint-config-prettier/download/@vue/eslint-config-prettier-6.0.0.tgz"
"version" "6.0.0"
dependencies:
"eslint-config-prettier" "^6.0.0"
"@vue/eslint-config-typescript@7.0.0":
"integrity" "sha1-Igxwwu33olPnOSmFJfTUAbjvADg="
"resolved" "https://registry.npm.taobao.org/@vue/eslint-config-typescript/download/@vue/eslint-config-typescript-7.0.0.tgz"
"version" "7.0.0"
dependencies:
"vue-eslint-parser" "^7.0.0"
"@vue/reactivity@3.0.11":
"integrity" "sha1-B7WINJ/QViaxfzUAy+99S9tNvQs="
"resolved" "https://registry.nlark.com/@vue/reactivity/download/@vue/reactivity-3.0.11.tgz"
"version" "3.0.11"
dependencies:
"@vue/shared" "3.0.11"
"@vue/runtime-core@3.0.11":
"integrity" "sha1-xS38as8yFUk2I1UsHCkZCAxWLkQ="
"resolved" "https://registry.nlark.com/@vue/runtime-core/download/@vue/runtime-core-3.0.11.tgz"
"version" "3.0.11"
dependencies:
"@vue/reactivity" "3.0.11"
"@vue/shared" "3.0.11"
"@vue/runtime-dom@3.0.11":
"integrity" "sha1-elUt8hkHlCch/raWHEGOIippkzc="
"resolved" "https://registry.nlark.com/@vue/runtime-dom/download/@vue/runtime-dom-3.0.11.tgz"
"version" "3.0.11"
dependencies:
"@vue/runtime-core" "3.0.11"
"@vue/shared" "3.0.11"
"csstype" "^2.6.8"
"@vue/shared@3.0.11":
"integrity" "sha1-INIt0Np9NYuyHBf5vehigVJkLHc="
"resolved" "https://registry.nlark.com/@vue/shared/download/@vue/shared-3.0.11.tgz?cache=0&sync_timestamp=1620855784077&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40vue%2Fshared%2Fdownload%2F%40vue%2Fshared-3.0.11.tgz"
"version" "3.0.11"
"acorn-jsx@^5.2.0", "acorn-jsx@^5.3.1":
"integrity" "sha1-/IZh4Rt6wVOcR9v+oucrOvNNJns="
"resolved" "https://registry.npm.taobao.org/acorn-jsx/download/acorn-jsx-5.3.1.tgz"
"version" "5.3.1"
"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?cache=0&sync_timestamp=1620134258253&other_urls=https%3A%2F%2Fregistry.nlark.com%2Facorn%2Fdownload%2Facorn-7.4.1.tgz"
"version" "7.4.1"
"ajv@^6.10.0", "ajv@^6.10.2":
"integrity" "sha1-uvWmLoArB9l3A0WG+MO69a3ybfQ="
"resolved" "https://registry.nlark.com/ajv/download/ajv-6.12.6.tgz"
"version" "6.12.6"
dependencies:
"fast-deep-equal" "^3.1.1"
"fast-json-stable-stringify" "^2.0.0"
"json-schema-traverse" "^0.4.1"
"uri-js" "^4.2.2"
"ansi-escapes@^4.2.1":
"integrity" "sha1-ayKR0dt9mLZSHV8e+kLQ86n+tl4="
"resolved" "https://registry.npm.taobao.org/ansi-escapes/download/ansi-escapes-4.3.2.tgz"
"version" "4.3.2"
dependencies:
"type-fest" "^0.21.3"
"ansi-regex@^4.1.0":
"integrity" "sha1-i5+PCM8ay4Q3Vqg5yox+MWjFGZc="
"resolved" "https://registry.npm.taobao.org/ansi-regex/download/ansi-regex-4.1.0.tgz?cache=0&sync_timestamp=1618552978881&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fansi-regex%2Fdownload%2Fansi-regex-4.1.0.tgz"
"version" "4.1.0"
"ansi-regex@^5.0.0":
"integrity" "sha1-OIU59VF5vzkznIGvMKZU1p+Hy3U="
"resolved" "https://registry.npm.taobao.org/ansi-regex/download/ansi-regex-5.0.0.tgz?cache=0&sync_timestamp=1618552978881&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fansi-regex%2Fdownload%2Fansi-regex-5.0.0.tgz"
"version" "5.0.0"
"ansi-styles@^3.2.0", "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.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.1":
"integrity" "sha1-wFV8CWrzLxBhmPT04qODU343hxY="
"resolved" "https://registry.npm.taobao.org/anymatch/download/anymatch-3.1.2.tgz?cache=0&sync_timestamp=1617747502795&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fanymatch%2Fdownload%2Fanymatch-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.npm.taobao.org/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"
"astral-regex@^1.0.0":
"integrity" "sha1-bIw/uCfdQ+45GPJ7gngqt2WKb9k="
"resolved" "https://registry.npm.taobao.org/astral-regex/download/astral-regex-1.0.0.tgz"
"version" "1.0.0"
"axios@^0.21.1":
"integrity" "sha1-IlY0gZYvTWvemnbVFu8OXTwJsrg="
"resolved" "https://registry.npm.taobao.org/axios/download/axios-0.21.1.tgz"
"version" "0.21.1"
dependencies:
"follow-redirects" "^1.10.0"
"babel-eslint@^10.1.0":
"integrity" "sha1-aWjlaKkQt4+zd5zdi2rC9HmUMjI="
"resolved" "https://registry.npm.taobao.org/babel-eslint/download/babel-eslint-10.1.0.tgz"
"version" "10.1.0"
dependencies:
"@babel/code-frame" "^7.0.0"
"@babel/parser" "^7.7.0"
"@babel/traverse" "^7.7.0"
"@babel/types" "^7.7.0"
"eslint-visitor-keys" "^1.0.0"
"resolve" "^1.12.0"
"balanced-match@^1.0.0":
"integrity" "sha1-6D46fj8wCzTLnYf2FfoMvzV2kO4="
"resolved" "https://registry.npm.taobao.org/balanced-match/download/balanced-match-1.0.2.tgz?cache=0&sync_timestamp=1617714233441&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fbalanced-match%2Fdownload%2Fbalanced-match-1.0.2.tgz"
"version" "1.0.2"
"big-integer@^1.6.17":
"integrity" "sha1-j9iL0WMsukocjD49cVnwi7lbS54="
"resolved" "https://registry.npm.taobao.org/big-integer/download/big-integer-1.6.48.tgz"
"version" "1.6.48"
"big.js@^5.2.2":
"integrity" "sha1-ZfCvOC9Xi83HQr2cKB6cstd2gyg="
"resolved" "https://registry.nlark.com/big.js/download/big.js-5.2.2.tgz"
"version" "5.2.2"
"binary-extensions@^2.0.0":
"integrity" "sha1-dfUC7q+f/eQvyYgpZFvk6na9ni0="
"resolved" "https://registry.npm.taobao.org/binary-extensions/download/binary-extensions-2.2.0.tgz"
"version" "2.2.0"
"binary@~0.3.0":
"integrity" "sha1-n2BVO8XOjDOG87VTz/R0Yq3sqnk="
"resolved" "https://registry.npm.taobao.org/binary/download/binary-0.3.0.tgz"
"version" "0.3.0"
dependencies:
"buffers" "~0.1.1"
"chainsaw" "~0.1.0"
"bluebird@^3.7.2":
"integrity" "sha1-nyKcFb4nJFT/qXOs4NvueaGww28="
"resolved" "https://registry.npm.taobao.org/bluebird/download/bluebird-3.7.2.tgz"
"version" "3.7.2"
"bluebird@~3.4.1":
"integrity" "sha1-9y12C+Cbf3bQjtj66Ysomo0F+rM="
"resolved" "https://registry.npm.taobao.org/bluebird/download/bluebird-3.4.7.tgz"
"version" "3.4.7"
"brace-expansion@^1.1.7":
"integrity" "sha1-PH/L9SnYcibz0vUrlm/1Jx60Qd0="
"resolved" "https://registry.npm.taobao.org/brace-expansion/download/brace-expansion-1.1.11.tgz?cache=0&sync_timestamp=1614010785257&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fbrace-expansion%2Fdownload%2Fbrace-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"
"buffer-indexof-polyfill@~1.0.0":
"integrity" "sha1-0nMhNcWZnGSyd/z5savjSYJUcpw="
"resolved" "https://registry.npm.taobao.org/buffer-indexof-polyfill/download/buffer-indexof-polyfill-1.0.2.tgz"
"version" "1.0.2"
"buffers@~0.1.1":
"integrity" "sha1-skV5w77U1tOWru5tmorn9Ugqt7s="
"resolved" "https://registry.npm.taobao.org/buffers/download/buffers-0.1.1.tgz"
"version" "0.1.1"
"callsites@^3.0.0":
"integrity" "sha1-s2MKvYlDQy9Us/BRkjjjPNffL3M="
"resolved" "https://registry.npm.taobao.org/callsites/download/callsites-3.1.0.tgz"
"version" "3.1.0"
"chainsaw@~0.1.0":
"integrity" "sha1-XqtQsor+WAdNDVgpE4iCi15fvJg="
"resolved" "https://registry.npm.taobao.org/chainsaw/download/chainsaw-0.1.0.tgz"
"version" "0.1.0"
dependencies:
"traverse" ">=0.3.0 <0.4"
"chalk@^2.0.0":
"integrity" "sha1-zUJUFnelQzPPVBpJEIwUMrRMlCQ="
"resolved" "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995384030&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-yAs/qyi/Y3HmhjMl7uZ+YYt35q0="
"resolved" "https://registry.nlark.com/chalk/download/chalk-4.1.1.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-4.1.1.tgz"
"version" "4.1.1"
dependencies:
"ansi-styles" "^4.1.0"
"supports-color" "^7.1.0"
"chalk@^4.1.0":
"integrity" "sha1-yAs/qyi/Y3HmhjMl7uZ+YYt35q0="
"resolved" "https://registry.nlark.com/chalk/download/chalk-4.1.1.tgz?cache=0&sync_timestamp=1618995384030&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-4.1.1.tgz"
"version" "4.1.1"
dependencies:
"ansi-styles" "^4.1.0"
"supports-color" "^7.1.0"
"chardet@^0.7.0":
"integrity" "sha1-kAlISfCTfy7twkJdDSip5fDLrZ4="
"resolved" "https://registry.npm.taobao.org/chardet/download/chardet-0.7.0.tgz"
"version" "0.7.0"
"chokidar@>=3.0.0 <4.0.0":
"integrity" "sha1-7pznu+vSt59J8wR5nVRo4x4U5oo="
"resolved" "https://registry.npm.taobao.org/chokidar/download/chokidar-3.5.1.tgz"
"version" "3.5.1"
dependencies:
"anymatch" "~3.1.1"
"braces" "~3.0.2"
"glob-parent" "~5.1.0"
"is-binary-path" "~2.1.0"
"is-glob" "~4.0.1"
"normalize-path" "~3.0.0"
"readdirp" "~3.5.0"
optionalDependencies:
"fsevents" "~2.3.1"
"cli-cursor@^3.1.0":
"integrity" "sha1-JkMFp65JDR0Dvwybp8kl0XU68wc="
"resolved" "https://registry.npm.taobao.org/cli-cursor/download/cli-cursor-3.1.0.tgz"
"version" "3.1.0"
dependencies:
"restore-cursor" "^3.1.0"
"cli-width@^3.0.0":
"integrity" "sha1-ovSEN6LKqaIkNueUvwceyeYc7fY="
"resolved" "https://registry.npm.taobao.org/cli-width/download/cli-width-3.0.0.tgz"
"version" "3.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"
"color-name@1.1.3":
"integrity" "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU="
"resolved" "https://registry.npm.taobao.org/color-name/download/color-name-1.1.3.tgz"
"version" "1.1.3"
"colorette@^1.2.2":
"integrity" "sha1-y8x51emcrqLb8Q6zom/Ys+as+pQ="
"resolved" "https://registry.npm.taobao.org/colorette/download/colorette-1.2.2.tgz?cache=0&sync_timestamp=1614259647923&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcolorette%2Fdownload%2Fcolorette-1.2.2.tgz"
"version" "1.2.2"
"concat-map@0.0.1":
"integrity" "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s="
"resolved" "https://registry.npm.taobao.org/concat-map/download/concat-map-0.0.1.tgz"
"version" "0.0.1"
"consolidate@^0.16.0":
"integrity" "sha1-oRhkdokw8vGUMWYKZZBmaPX73BY="
"resolved" "https://registry.npm.taobao.org/consolidate/download/consolidate-0.16.0.tgz"
"version" "0.16.0"
dependencies:
"bluebird" "^3.7.2"
"core-util-is@~1.0.0":
"integrity" "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac="
"resolved" "https://registry.npm.taobao.org/core-util-is/download/core-util-is-1.0.2.tgz"
"version" "1.0.2"
"cross-spawn@^7.0.2":
"integrity" "sha1-9zqFudXUHQRVUcF34ogtSshXKKY="
"resolved" "https://registry.npm.taobao.org/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"
"cssesc@^3.0.0":
"integrity" "sha1-N3QZGZA7hoVl4cCep0dEXNGJg+4="
"resolved" "https://registry.npm.taobao.org/cssesc/download/cssesc-3.0.0.tgz"
"version" "3.0.0"
"csstype@^2.6.8":
"integrity" "sha1-TPMOuH4dGgBdi2UQ+VKSQT9qHA4="
"resolved" "https://registry.nlark.com/csstype/download/csstype-2.6.17.tgz?cache=0&sync_timestamp=1618818393132&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcsstype%2Fdownload%2Fcsstype-2.6.17.tgz"
"version" "2.6.17"
"debug@^4.0.1", "debug@^4.1.0", "debug@^4.1.1":
"integrity" "sha1-8NIpxQXgxtjEmsVT0bE9wYP2su4="
"resolved" "https://registry.npm.taobao.org/debug/download/debug-4.3.1.tgz?cache=0&sync_timestamp=1607566548985&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fdebug%2Fdownload%2Fdebug-4.3.1.tgz"
"version" "4.3.1"
dependencies:
"ms" "2.1.2"
"deep-is@^0.1.3":
"integrity" "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ="
"resolved" "https://registry.npm.taobao.org/deep-is/download/deep-is-0.1.3.tgz"
"version" "0.1.3"
"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.npm.taobao.org/doctrine/download/doctrine-3.0.0.tgz"
"version" "3.0.0"
dependencies:
"esutils" "^2.0.2"
"duplexer2@~0.1.4":
"integrity" "sha1-ixLauHjA1p4+eJEFFmKjL8a93ME="
"resolved" "https://registry.npm.taobao.org/duplexer2/download/duplexer2-0.1.4.tgz"
"version" "0.1.4"
dependencies:
"readable-stream" "^2.0.2"
"emoji-regex@^7.0.1":
"integrity" "sha1-kzoEBShgyF6DwSJHnEdIqOTHIVY="
"resolved" "https://registry.npm.taobao.org/emoji-regex/download/emoji-regex-7.0.3.tgz?cache=0&sync_timestamp=1614682725186&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Femoji-regex%2Fdownload%2Femoji-regex-7.0.3.tgz"
"version" "7.0.3"
"emoji-regex@^8.0.0":
"integrity" "sha1-6Bj9ac5cz8tARZT4QpY79TFkzDc="
"resolved" "https://registry.npm.taobao.org/emoji-regex/download/emoji-regex-8.0.0.tgz?cache=0&sync_timestamp=1614682725186&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Femoji-regex%2Fdownload%2Femoji-regex-8.0.0.tgz"
"version" "8.0.0"
"emojis-list@^3.0.0":
"integrity" "sha1-VXBmIEatKeLpFucariYKvf9Pang="
"resolved" "https://registry.npm.taobao.org/emojis-list/download/emojis-list-3.0.0.tgz"
"version" "3.0.0"
"esbuild@^0.11.23":
"integrity" "sha1-xCU09jLhZRIGcdZNtniDY0MztLg="
"resolved" "https://registry.nlark.com/esbuild/download/esbuild-0.11.23.tgz"
"version" "0.11.23"
"escape-string-regexp@^1.0.5":
"integrity" "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ="
"resolved" "https://registry.npm.taobao.org/escape-string-regexp/download/escape-string-regexp-1.0.5.tgz?cache=0&sync_timestamp=1618677243201&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fescape-string-regexp%2Fdownload%2Fescape-string-regexp-1.0.5.tgz"
"version" "1.0.5"
"eslint-config-prettier@^6.0.0":
"integrity" "sha1-f5P2y31FqS8VN6cOzAY2bhrG/tk="
"resolved" "https://registry.nlark.com/eslint-config-prettier/download/eslint-config-prettier-6.15.0.tgz?cache=0&sync_timestamp=1619270948988&other_urls=https%3A%2F%2Fregistry.nlark.com%2Feslint-config-prettier%2Fdownload%2Feslint-config-prettier-6.15.0.tgz"
"version" "6.15.0"
dependencies:
"get-stdin" "^6.0.0"
"eslint-plugin-prettier@^3.1.0", "eslint-plugin-prettier@^3.3.1":
"integrity" "sha1-zbrTvx29Kxd+mCVzf+Y7R2oI8Mc="
"resolved" "https://registry.npm.taobao.org/eslint-plugin-prettier/download/eslint-plugin-prettier-3.4.0.tgz"
"version" "3.4.0"
dependencies:
"prettier-linter-helpers" "^1.0.0"
"eslint-plugin-vue@^5.2.3 || ^6.0.0 || ^7.0.0", "eslint-plugin-vue@^7.8.0":
"integrity" "sha1-+Og6KpCPTEP8gwT1QB1P9nHz1WA="
"resolved" "https://registry.nlark.com/eslint-plugin-vue/download/eslint-plugin-vue-7.9.0.tgz"
"version" "7.9.0"
dependencies:
"eslint-utils" "^2.1.0"
"natural-compare" "^1.4.0"
"semver" "^7.3.2"
"vue-eslint-parser" "^7.6.0"
"eslint-scope@^5.0.0":
"integrity" "sha1-54blmmbLkrP2wfsNUIqrF0hI9Iw="
"resolved" "https://registry.npm.taobao.org/eslint-scope/download/eslint-scope-5.1.1.tgz?cache=0&sync_timestamp=1599936073302&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Feslint-scope%2Fdownload%2Feslint-scope-5.1.1.tgz"
"version" "5.1.1"
dependencies:
"esrecurse" "^4.3.0"
"estraverse" "^4.1.1"
"eslint-utils@^2.0.0", "eslint-utils@^2.1.0":
"integrity" "sha1-0t5eA0JOcH3BDHQGjd7a5wh0Gyc="
"resolved" "https://registry.nlark.com/eslint-utils/download/eslint-utils-2.1.0.tgz?cache=0&sync_timestamp=1620975524854&other_urls=https%3A%2F%2Fregistry.nlark.com%2Feslint-utils%2Fdownload%2Feslint-utils-2.1.0.tgz"
"version" "2.1.0"
dependencies:
"eslint-visitor-keys" "^1.1.0"
"eslint-visitor-keys@^1.0.0":
"integrity" "sha1-MOvR73wv3/AcOk8VEESvJfqwUj4="
"resolved" "https://registry.nlark.com/eslint-visitor-keys/download/eslint-visitor-keys-1.3.0.tgz"
"version" "1.3.0"
"eslint-visitor-keys@^1.1.0", "eslint-visitor-keys@^1.3.0":
"integrity" "sha1-MOvR73wv3/AcOk8VEESvJfqwUj4="
"resolved" "https://registry.nlark.com/eslint-visitor-keys/download/eslint-visitor-keys-1.3.0.tgz"
"version" "1.3.0"
"eslint-visitor-keys@^2.0.0":
"integrity" "sha1-9lMoJZMFknOSyTjtROsKXJsr0wM="
"resolved" "https://registry.nlark.com/eslint-visitor-keys/download/eslint-visitor-keys-2.1.0.tgz"
"version" "2.1.0"
"eslint@*", "eslint@^5.0.0 || ^6.0.0 || ^7.0.0", "eslint@^6.2.0 || ^7.0.0", "eslint@>= 4.12.1", "eslint@>= 5.0.0", "eslint@>=3.14.1", "eslint@>=5.0.0", "eslint@7.0.0":
"integrity" "sha1-w139BKQ3IRC9eMaajXmGQnORmgg="
"resolved" "https://registry.nlark.com/eslint/download/eslint-7.0.0.tgz?cache=0&sync_timestamp=1620440504305&other_urls=https%3A%2F%2Fregistry.nlark.com%2Feslint%2Fdownload%2Feslint-7.0.0.tgz"
"version" "7.0.0"
dependencies:
"@babel/code-frame" "^7.0.0"
"ajv" "^6.10.0"
"chalk" "^4.0.0"
"cross-spawn" "^7.0.2"
"debug" "^4.0.1"
"doctrine" "^3.0.0"
"eslint-scope" "^5.0.0"
"eslint-utils" "^2.0.0"
"eslint-visitor-keys" "^1.1.0"
"espree" "^7.0.0"
"esquery" "^1.2.0"
"esutils" "^2.0.2"
"file-entry-cache" "^5.0.1"
"functional-red-black-tree" "^1.0.1"
"glob-parent" "^5.0.0"
"globals" "^12.1.0"
"ignore" "^4.0.6"
"import-fresh" "^3.0.0"
"imurmurhash" "^0.1.4"
"inquirer" "^7.0.0"
"is-glob" "^4.0.0"
"js-yaml" "^3.13.1"
"json-stable-stringify-without-jsonify" "^1.0.1"
"levn" "^0.4.1"
"lodash" "^4.17.14"
"minimatch" "^3.0.4"
"natural-compare" "^1.4.0"
"optionator" "^0.9.1"
"progress" "^2.0.0"
"regexpp" "^3.1.0"
"semver" "^7.2.1"
"strip-ansi" "^6.0.0"
"strip-json-comments" "^3.1.0"
"table" "^5.2.3"
"text-table" "^0.2.0"
"v8-compile-cache" "^2.0.3"
"espree@^6.2.1":
"integrity" "sha1-d/xy4f10SiBSwg84pbV1gy6Cc0o="
"resolved" "https://registry.npm.taobao.org/espree/download/espree-6.2.1.tgz?cache=0&sync_timestamp=1607144380947&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fespree%2Fdownload%2Fespree-6.2.1.tgz"
"version" "6.2.1"
dependencies:
"acorn" "^7.1.1"
"acorn-jsx" "^5.2.0"
"eslint-visitor-keys" "^1.1.0"
"espree@^7.0.0":
"integrity" "sha1-8t8zC3Usb1UBn4vYm3ZgA5wbu7Y="
"resolved" "https://registry.npm.taobao.org/espree/download/espree-7.3.1.tgz?cache=0&sync_timestamp=1607144380947&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fespree%2Fdownload%2Fespree-7.3.1.tgz"
"version" "7.3.1"
dependencies:
"acorn" "^7.4.0"
"acorn-jsx" "^5.3.1"
"eslint-visitor-keys" "^1.3.0"
"esprima@^4.0.0":
"integrity" "sha1-E7BM2z5sXRnfkatph6hpVhmwqnE="
"resolved" "https://registry.npm.taobao.org/esprima/download/esprima-4.0.1.tgz"
"version" "4.0.1"
"esquery@^1.2.0", "esquery@^1.4.0":
"integrity" "sha1-IUj/w4uC6McFff7UhCWz5h8PJKU="
"resolved" "https://registry.npm.taobao.org/esquery/download/esquery-1.4.0.tgz"
"version" "1.4.0"
dependencies:
"estraverse" "^5.1.0"
"esrecurse@^4.3.0":
"integrity" "sha1-eteWTWeauyi+5yzsY3WLHF0smSE="
"resolved" "https://registry.npm.taobao.org/esrecurse/download/esrecurse-4.3.0.tgz"
"version" "4.3.0"
dependencies:
"estraverse" "^5.2.0"
"estraverse@^4.1.1":
"integrity" "sha1-OYrT88WiSUi+dyXoPRGn3ijNvR0="
"resolved" "https://registry.npm.taobao.org/estraverse/download/estraverse-4.3.0.tgz"
"version" "4.3.0"
"estraverse@^5.1.0":
"integrity" "sha1-MH30JUfmzHMk088DwVXVzbjFOIA="
"resolved" "https://registry.npm.taobao.org/estraverse/download/estraverse-5.2.0.tgz"
"version" "5.2.0"
"estraverse@^5.2.0":
"integrity" "sha1-MH30JUfmzHMk088DwVXVzbjFOIA="
"resolved" "https://registry.npm.taobao.org/estraverse/download/estraverse-5.2.0.tgz"
"version" "5.2.0"
"estree-walker@^2.0.1":
"integrity" "sha1-UvAQF4wqTBF6d1fP6UKtt9LaTKw="
"resolved" "https://registry.npm.taobao.org/estree-walker/download/estree-walker-2.0.2.tgz"
"version" "2.0.2"
"esutils@^2.0.2":
"integrity" "sha1-dNLrTeC42hKTcRkQ1Qd1ubcQ72Q="
"resolved" "https://registry.npm.taobao.org/esutils/download/esutils-2.0.3.tgz"
"version" "2.0.3"
"external-editor@^3.0.3":
"integrity" "sha1-ywP3QL764D6k0oPK7SdBqD8zVJU="
"resolved" "https://registry.npm.taobao.org/external-editor/download/external-editor-3.1.0.tgz"
"version" "3.1.0"
dependencies:
"chardet" "^0.7.0"
"iconv-lite" "^0.4.24"
"tmp" "^0.0.33"
"fast-deep-equal@^3.1.1":
"integrity" "sha1-On1WtVnWy8PrUSMlJE5hmmXGxSU="
"resolved" "https://registry.npm.taobao.org/fast-deep-equal/download/fast-deep-equal-3.1.3.tgz"
"version" "3.1.3"
"fast-diff@^1.1.2":
"integrity" "sha1-c+4RmC2Gyq95WYKNUZz+kn+sXwM="
"resolved" "https://registry.npm.taobao.org/fast-diff/download/fast-diff-1.2.0.tgz"
"version" "1.2.0"
"fast-glob@^3.1.1":
"integrity" "sha1-eTmvKmVt55pPGQGQPuityqfLlmE="
"resolved" "https://registry.npm.taobao.org/fast-glob/download/fast-glob-3.2.5.tgz"
"version" "3.2.5"
dependencies:
"@nodelib/fs.stat" "^2.0.2"
"@nodelib/fs.walk" "^1.2.3"
"glob-parent" "^5.1.0"
"merge2" "^1.3.0"
"micromatch" "^4.0.2"
"picomatch" "^2.2.1"
"fast-json-stable-stringify@^2.0.0":
"integrity" "sha1-h0v2nG9ATCtdmcSBNBOZ/VWJJjM="
"resolved" "https://registry.npm.taobao.org/fast-json-stable-stringify/download/fast-json-stable-stringify-2.1.0.tgz"
"version" "2.1.0"
"fast-levenshtein@^2.0.6":
"integrity" "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc="
"resolved" "https://registry.npm.taobao.org/fast-levenshtein/download/fast-levenshtein-2.0.6.tgz?cache=0&sync_timestamp=1595428000133&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ffast-levenshtein%2Fdownload%2Ffast-levenshtein-2.0.6.tgz"
"version" "2.0.6"
"fastq@^1.6.0":
"integrity" "sha1-u5+5VaBxMKkY62PB9RYcwypdCFg="
"resolved" "https://registry.npm.taobao.org/fastq/download/fastq-1.11.0.tgz?cache=0&sync_timestamp=1614183553351&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ffastq%2Fdownload%2Ffastq-1.11.0.tgz"
"version" "1.11.0"
dependencies:
"reusify" "^1.0.4"
"figures@^3.0.0":
"integrity" "sha1-YlwYvSk8YE3EqN2y/r8MiDQXRq8="
"resolved" "https://registry.npm.taobao.org/figures/download/figures-3.2.0.tgz"
"version" "3.2.0"
dependencies:
"escape-string-regexp" "^1.0.5"
"file-entry-cache@^5.0.1":
"integrity" "sha1-yg9u+m3T1WEzP7FFFQZcL6/fQ5w="
"resolved" "https://registry.npm.taobao.org/file-entry-cache/download/file-entry-cache-5.0.1.tgz?cache=0&sync_timestamp=1613794272556&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ffile-entry-cache%2Fdownload%2Ffile-entry-cache-5.0.1.tgz"
"version" "5.0.1"
dependencies:
"flat-cache" "^2.0.1"
"fill-range@^7.0.1":
"integrity" "sha1-GRmmp8df44ssfHflGYU12prN2kA="
"resolved" "https://registry.npm.taobao.org/fill-range/download/fill-range-7.0.1.tgz"
"version" "7.0.1"
dependencies:
"to-regex-range" "^5.0.1"
"flat-cache@^2.0.1":
"integrity" "sha1-XSltbwS9pEpGMKMBQTvbwuwIXsA="
"resolved" "https://registry.npm.taobao.org/flat-cache/download/flat-cache-2.0.1.tgz"
"version" "2.0.1"
dependencies:
"flatted" "^2.0.0"
"rimraf" "2.6.3"
"write" "1.0.3"
"flatted@^2.0.0":
"integrity" "sha1-RXWyHivO50NKqb5mL0t7X5wrUTg="
"resolved" "https://registry.npm.taobao.org/flatted/download/flatted-2.0.2.tgz?cache=0&sync_timestamp=1611059446565&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fflatted%2Fdownload%2Fflatted-2.0.2.tgz"
"version" "2.0.2"
"follow-redirects@^1.10.0":
"integrity" "sha1-2RFN7Qoc/dM04WTmZirQK/2R/0M="
"resolved" "https://registry.nlark.com/follow-redirects/download/follow-redirects-1.14.1.tgz?cache=0&sync_timestamp=1620555234886&other_urls=https%3A%2F%2Fregistry.nlark.com%2Ffollow-redirects%2Fdownload%2Ffollow-redirects-1.14.1.tgz"
"version" "1.14.1"
"fs.realpath@^1.0.0":
"integrity" "sha1-FQStJSMVjKpA20onh8sBQRmU6k8="
"resolved" "https://registry.npm.taobao.org/fs.realpath/download/fs.realpath-1.0.0.tgz"
"version" "1.0.0"
"fstream@^1.0.12":
"integrity" "sha1-Touo7i1Ivk99DeUFRVVI6uWTIEU="
"resolved" "https://registry.npm.taobao.org/fstream/download/fstream-1.0.12.tgz"
"version" "1.0.12"
dependencies:
"graceful-fs" "^4.1.2"
"inherits" "~2.0.0"
"mkdirp" ">=0.5 0"
"rimraf" "2"
"function-bind@^1.1.1":
"integrity" "sha1-pWiZ0+o8m6uHS7l3O3xe3pL0iV0="
"resolved" "https://registry.npm.taobao.org/function-bind/download/function-bind-1.1.1.tgz"
"version" "1.1.1"
"functional-red-black-tree@^1.0.1":
"integrity" "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc="
"resolved" "https://registry.npm.taobao.org/functional-red-black-tree/download/functional-red-black-tree-1.0.1.tgz"
"version" "1.0.1"
"generic-names@^2.0.1":
"integrity" "sha1-+KN46tLMqno08DF7BVVIMq5BuHI="
"resolved" "https://registry.npm.taobao.org/generic-names/download/generic-names-2.0.1.tgz"
"version" "2.0.1"
dependencies:
"loader-utils" "^1.1.0"
"get-stdin@^6.0.0":
"integrity" "sha1-ngm/cSs2CrkiXoEgSPcf3pyJZXs="
"resolved" "https://registry.nlark.com/get-stdin/download/get-stdin-6.0.0.tgz"
"version" "6.0.0"
"glob-parent@^5.0.0", "glob-parent@^5.1.0", "glob-parent@~5.1.0":
"integrity" "sha1-hpgyxYA0/mikCTwX3BXoNA2EAcQ="
"resolved" "https://registry.nlark.com/glob-parent/download/glob-parent-5.1.2.tgz?cache=0&sync_timestamp=1620073245729&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fglob-parent%2Fdownload%2Fglob-parent-5.1.2.tgz"
"version" "5.1.2"
dependencies:
"is-glob" "^4.0.1"
"glob@^7.1.3":
"integrity" "sha1-Oxk+kjPwHULQs/eClLvutBj5SpA="
"resolved" "https://registry.nlark.com/glob/download/glob-7.1.7.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fglob%2Fdownload%2Fglob-7.1.7.tgz"
"version" "7.1.7"
dependencies:
"fs.realpath" "^1.0.0"
"inflight" "^1.0.4"
"inherits" "2"
"minimatch" "^3.0.4"
"once" "^1.3.0"
"path-is-absolute" "^1.0.0"
"globals@^11.1.0":
"integrity" "sha1-q4eVM4hooLq9hSV1gBjCp+uVxC4="
"resolved" "https://registry.npm.taobao.org/globals/download/globals-11.12.0.tgz"
"version" "11.12.0"
"globals@^12.1.0":
"integrity" "sha1-oYgTV2pBsAokqX5/gVkYwuGZJfg="
"resolved" "https://registry.npm.taobao.org/globals/download/globals-12.4.0.tgz"
"version" "12.4.0"
dependencies:
"type-fest" "^0.8.1"
"globby@^11.0.1":
"integrity" "sha1-mx8MtSPhcd0a2MeyqftLZEuVk8s="
"resolved" "https://registry.npm.taobao.org/globby/download/globby-11.0.3.tgz?cache=0&sync_timestamp=1616407139482&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fglobby%2Fdownload%2Fglobby-11.0.3.tgz"
"version" "11.0.3"
dependencies:
"array-union" "^2.1.0"
"dir-glob" "^3.0.1"
"fast-glob" "^3.1.1"
"ignore" "^5.1.4"
"merge2" "^1.3.0"
"slash" "^3.0.0"
"graceful-fs@^4.1.2", "graceful-fs@^4.2.2":
"integrity" "sha1-/wQLKwhTsjw9MQJ1I3BvGIXXa+4="
"resolved" "https://registry.npm.taobao.org/graceful-fs/download/graceful-fs-4.2.6.tgz"
"version" "4.2.6"
"has-flag@^3.0.0":
"integrity" "sha1-tdRU3CGZriJWmfNGfloH87lVuv0="
"resolved" "https://registry.npm.taobao.org/has-flag/download/has-flag-3.0.0.tgz?cache=0&sync_timestamp=1618559697170&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fhas-flag%2Fdownload%2Fhas-flag-3.0.0.tgz"
"version" "3.0.0"
"has-flag@^4.0.0":
"integrity" "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s="
"resolved" "https://registry.npm.taobao.org/has-flag/download/has-flag-4.0.0.tgz?cache=0&sync_timestamp=1618559697170&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fhas-flag%2Fdownload%2Fhas-flag-4.0.0.tgz"
"version" "4.0.0"
"has@^1.0.3":
"integrity" "sha1-ci18v8H2qoJB8W3YFOAR4fQeh5Y="
"resolved" "https://registry.npm.taobao.org/has/download/has-1.0.3.tgz"
"version" "1.0.3"
dependencies:
"function-bind" "^1.1.1"
"hash-sum@^2.0.0":
"integrity" "sha1-gdAbtd6OpKIUrV1urRtSNGCwtFo="
"resolved" "https://registry.npm.taobao.org/hash-sum/download/hash-sum-2.0.0.tgz"
"version" "2.0.0"
"iconv-lite@^0.4.24":
"integrity" "sha1-ICK0sl+93CHS9SSXSkdKr+czkIs="
"resolved" "https://registry.npm.taobao.org/iconv-lite/download/iconv-lite-0.4.24.tgz"
"version" "0.4.24"
dependencies:
"safer-buffer" ">= 2.1.2 < 3"