rm
yj
2024-12-05 e1d6142f80466747b3614bf8f26a583c9c7b1e87
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
{
  "requires": true,
  "lockfileVersion": 1,
  "dependencies": {
    "@babel/code-frame": {
      "version": "7.12.11",
      "resolved": "https://registry.nlark.com/@babel/code-frame/download/@babel/code-frame-7.12.11.tgz",
      "integrity": "sha1-9K1DWqJj25NbjxDyxVLSP7cWpj8=",
      "requires": {
        "@babel/highlight": "^7.10.4"
      }
    },
    "@babel/generator": {
      "version": "7.15.4",
      "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",
      "integrity": "sha1-hayxWaJnymMk+Xk5hpke4gIqBbA=",
      "requires": {
        "@babel/types": "^7.15.4",
        "jsesc": "^2.5.1",
        "source-map": "^0.5.0"
      }
    },
    "@babel/helper-function-name": {
      "version": "7.15.4",
      "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",
      "integrity": "sha1-hFdE2vxDgaSl+2r6bD02+Yp4frw=",
      "requires": {
        "@babel/helper-get-function-arity": "^7.15.4",
        "@babel/template": "^7.15.4",
        "@babel/types": "^7.15.4"
      }
    },
    "@babel/helper-get-function-arity": {
      "version": "7.15.4",
      "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",
      "integrity": "sha1-CYgYk0oTf854tTaj4BWGS+Hih5s=",
      "requires": {
        "@babel/types": "^7.15.4"
      }
    },
    "@babel/helper-hoist-variables": {
      "version": "7.15.4",
      "resolved": "https://registry.nlark.com/@babel/helper-hoist-variables/download/@babel/helper-hoist-variables-7.15.4.tgz",
      "integrity": "sha1-CZk6MlnA6Rj5nRBCYd/fwDPxeN8=",
      "requires": {
        "@babel/types": "^7.15.4"
      }
    },
    "@babel/helper-split-export-declaration": {
      "version": "7.15.4",
      "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",
      "integrity": "sha1-rsq5Lc2+9qEKo7YqsgSwhfd24lc=",
      "requires": {
        "@babel/types": "^7.15.4"
      }
    },
    "@babel/helper-validator-identifier": {
      "version": "7.14.9",
      "resolved": "https://registry.nlark.com/@babel/helper-validator-identifier/download/@babel/helper-validator-identifier-7.14.9.tgz?cache=0&sync_timestamp=1627804408187&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-validator-identifier%2Fdownload%2F%40babel%2Fhelper-validator-identifier-7.14.9.tgz",
      "integrity": "sha1-ZlTRcbICT22O4VG/JQlpmRkTHUg="
    },
    "@babel/highlight": {
      "version": "7.14.5",
      "resolved": "https://registry.nlark.com/@babel/highlight/download/@babel/highlight-7.14.5.tgz?cache=0&sync_timestamp=1623280306084&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhighlight%2Fdownload%2F%40babel%2Fhighlight-7.14.5.tgz",
      "integrity": "sha1-aGGlLwOWZAUAH2qlNKAaJNmejNk=",
      "requires": {
        "@babel/helper-validator-identifier": "^7.14.5",
        "chalk": "^2.0.0",
        "js-tokens": "^4.0.0"
      },
      "dependencies": {
        "chalk": {
          "version": "2.4.2",
          "resolved": "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz",
          "integrity": "sha1-zUJUFnelQzPPVBpJEIwUMrRMlCQ=",
          "requires": {
            "ansi-styles": "^3.2.1",
            "escape-string-regexp": "^1.0.5",
            "supports-color": "^5.3.0"
          }
        },
        "escape-string-regexp": {
          "version": "1.0.5",
          "resolved": "https://registry.npm.taobao.org/escape-string-regexp/download/escape-string-regexp-1.0.5.tgz",
          "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ="
        }
      }
    },
    "@babel/parser": {
      "version": "7.15.6",
      "resolved": "https://registry.nlark.com/@babel/parser/download/@babel/parser-7.15.6.tgz?cache=0&sync_timestamp=1631216408192&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fparser%2Fdownload%2F%40babel%2Fparser-7.15.6.tgz",
      "integrity": "sha1-BDuao8MDwHIuU3f++Rl/TPF5ZUk="
    },
    "@babel/template": {
      "version": "7.15.4",
      "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",
      "integrity": "sha1-UYmNNdzz+qZwxO5q/P1RfuE58ZQ=",
      "requires": {
        "@babel/code-frame": "^7.14.5",
        "@babel/parser": "^7.15.4",
        "@babel/types": "^7.15.4"
      },
      "dependencies": {
        "@babel/code-frame": {
          "version": "7.14.5",
          "resolved": "https://registry.nlark.com/@babel/code-frame/download/@babel/code-frame-7.14.5.tgz",
          "integrity": "sha1-I7CNdA6D9JxeWZRfvxtD6Au/Tts=",
          "requires": {
            "@babel/highlight": "^7.14.5"
          }
        }
      }
    },
    "@babel/traverse": {
      "version": "7.15.4",
      "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",
      "integrity": "sha1-/4UQNnoUS/v/VS2eGOKPPiiJwi0=",
      "requires": {
        "@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"
      },
      "dependencies": {
        "@babel/code-frame": {
          "version": "7.14.5",
          "resolved": "https://registry.nlark.com/@babel/code-frame/download/@babel/code-frame-7.14.5.tgz",
          "integrity": "sha1-I7CNdA6D9JxeWZRfvxtD6Au/Tts=",
          "requires": {
            "@babel/highlight": "^7.14.5"
          }
        },
        "globals": {
          "version": "11.12.0",
          "resolved": "https://registry.nlark.com/globals/download/globals-11.12.0.tgz?cache=0&sync_timestamp=1628810148451&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fglobals%2Fdownload%2Fglobals-11.12.0.tgz",
          "integrity": "sha1-q4eVM4hooLq9hSV1gBjCp+uVxC4="
        }
      }
    },
    "@babel/types": {
      "version": "7.15.6",
      "resolved": "https://registry.nlark.com/@babel/types/download/@babel/types-7.15.6.tgz?cache=0&sync_timestamp=1631216408117&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.15.6.tgz",
      "integrity": "sha1-mavcSCGLKIHAWN0KerBbmcm+dY8=",
      "requires": {
        "@babel/helper-validator-identifier": "^7.14.9",
        "to-fast-properties": "^2.0.0"
      }
    },
    "@eslint/eslintrc": {
      "version": "0.4.3",
      "resolved": "https://registry.nlark.com/@eslint/eslintrc/download/@eslint/eslintrc-0.4.3.tgz",
      "integrity": "sha1-nkKYHvA1vrPdSa3ResuW6P9vOUw=",
      "requires": {
        "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"
      },
      "dependencies": {
        "espree": {
          "version": "7.3.1",
          "resolved": "https://registry.nlark.com/espree/download/espree-7.3.1.tgz",
          "integrity": "sha1-8t8zC3Usb1UBn4vYm3ZgA5wbu7Y=",
          "requires": {
            "acorn": "^7.4.0",
            "acorn-jsx": "^5.3.1",
            "eslint-visitor-keys": "^1.3.0"
          }
        }
      }
    },
    "@humanwhocodes/config-array": {
      "version": "0.5.0",
      "resolved": "https://registry.nlark.com/@humanwhocodes/config-array/download/@humanwhocodes/config-array-0.5.0.tgz?cache=0&sync_timestamp=1625263855104&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40humanwhocodes%2Fconfig-array%2Fdownload%2F%40humanwhocodes%2Fconfig-array-0.5.0.tgz",
      "integrity": "sha1-FAeWfUxu7Nc4j4Os8er00Mbljvk=",
      "requires": {
        "@humanwhocodes/object-schema": "^1.2.0",
        "debug": "^4.1.1",
        "minimatch": "^3.0.4"
      }
    },
    "@humanwhocodes/object-schema": {
      "version": "1.2.0",
      "resolved": "https://registry.nlark.com/@humanwhocodes/object-schema/download/@humanwhocodes/object-schema-1.2.0.tgz?cache=0&sync_timestamp=1625263889550&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40humanwhocodes%2Fobject-schema%2Fdownload%2F%40humanwhocodes%2Fobject-schema-1.2.0.tgz",
      "integrity": "sha1-h956+cIxgm/daKxyWPd8Qp4OX88="
    },
    "acorn": {
      "version": "7.4.1",
      "resolved": "https://registry.nlark.com/acorn/download/acorn-7.4.1.tgz",
      "integrity": "sha1-/q7SVZc9LndVW4PbwIhRpsY1IPo="
    },
    "acorn-jsx": {
      "version": "5.3.2",
      "resolved": "https://registry.nlark.com/acorn-jsx/download/acorn-jsx-5.3.2.tgz",
      "integrity": "sha1-ftW7VZCLOy8bxVxq8WU7rafweTc="
    },
    "ajv": {
      "version": "6.12.6",
      "resolved": "https://registry.nlark.com/ajv/download/ajv-6.12.6.tgz?cache=0&sync_timestamp=1626380134544&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fajv%2Fdownload%2Fajv-6.12.6.tgz",
      "integrity": "sha1-uvWmLoArB9l3A0WG+MO69a3ybfQ=",
      "requires": {
        "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-colors": {
      "version": "4.1.1",
      "resolved": "https://registry.nlark.com/ansi-colors/download/ansi-colors-4.1.1.tgz",
      "integrity": "sha1-y7muJWv3UK8eqzRPIpqif+lLo0g="
    },
    "ansi-regex": {
      "version": "5.0.0",
      "resolved": "https://registry.nlark.com/ansi-regex/download/ansi-regex-5.0.0.tgz?cache=0&sync_timestamp=1631305655752&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fansi-regex%2Fdownload%2Fansi-regex-5.0.0.tgz",
      "integrity": "sha1-OIU59VF5vzkznIGvMKZU1p+Hy3U="
    },
    "ansi-styles": {
      "version": "3.2.1",
      "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-3.2.1.tgz",
      "integrity": "sha1-QfuyAkPlCxK+DwS43tvwdSDOhB0=",
      "requires": {
        "color-convert": "^1.9.0"
      }
    },
    "argparse": {
      "version": "1.0.10",
      "resolved": "https://registry.npm.taobao.org/argparse/download/argparse-1.0.10.tgz?cache=0&sync_timestamp=1598649397806&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fargparse%2Fdownload%2Fargparse-1.0.10.tgz",
      "integrity": "sha1-vNZ5HqWuCXJeF+WtmIE0zUCz2RE=",
      "requires": {
        "sprintf-js": "~1.0.2"
      }
    },
    "astral-regex": {
      "version": "2.0.0",
      "resolved": "https://registry.nlark.com/astral-regex/download/astral-regex-2.0.0.tgz",
      "integrity": "sha1-SDFDxWeu7UeFdZwIZXhtx319LjE="
    },
    "babel-eslint": {
      "version": "10.1.0",
      "resolved": "https://registry.npm.taobao.org/babel-eslint/download/babel-eslint-10.1.0.tgz?cache=0&sync_timestamp=1611946177416&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fbabel-eslint%2Fdownload%2Fbabel-eslint-10.1.0.tgz",
      "integrity": "sha1-aWjlaKkQt4+zd5zdi2rC9HmUMjI=",
      "requires": {
        "@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": {
      "version": "1.0.2",
      "resolved": "https://registry.nlark.com/balanced-match/download/balanced-match-1.0.2.tgz",
      "integrity": "sha1-6D46fj8wCzTLnYf2FfoMvzV2kO4="
    },
    "brace-expansion": {
      "version": "1.1.11",
      "resolved": "https://registry.nlark.com/brace-expansion/download/brace-expansion-1.1.11.tgz",
      "integrity": "sha1-PH/L9SnYcibz0vUrlm/1Jx60Qd0=",
      "requires": {
        "balanced-match": "^1.0.0",
        "concat-map": "0.0.1"
      }
    },
    "callsites": {
      "version": "3.1.0",
      "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",
      "integrity": "sha1-s2MKvYlDQy9Us/BRkjjjPNffL3M="
    },
    "chalk": {
      "version": "4.1.2",
      "resolved": "https://registry.nlark.com/chalk/download/chalk-4.1.2.tgz",
      "integrity": "sha1-qsTit3NKdAhnrrFr8CqtVWoeegE=",
      "requires": {
        "ansi-styles": "^4.1.0",
        "supports-color": "^7.1.0"
      },
      "dependencies": {
        "ansi-styles": {
          "version": "4.3.0",
          "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz",
          "integrity": "sha1-7dgDYornHATIWuegkG7a00tkiTc=",
          "requires": {
            "color-convert": "^2.0.1"
          }
        },
        "color-convert": {
          "version": "2.0.1",
          "resolved": "https://registry.nlark.com/color-convert/download/color-convert-2.0.1.tgz",
          "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=",
          "requires": {
            "color-name": "~1.1.4"
          }
        },
        "color-name": {
          "version": "1.1.4",
          "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz",
          "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI="
        },
        "has-flag": {
          "version": "4.0.0",
          "resolved": "https://registry.nlark.com/has-flag/download/has-flag-4.0.0.tgz",
          "integrity": "sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s="
        },
        "supports-color": {
          "version": "7.2.0",
          "resolved": "https://registry.nlark.com/supports-color/download/supports-color-7.2.0.tgz?cache=0&sync_timestamp=1626703342506&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-7.2.0.tgz",
          "integrity": "sha1-G33NyzK4E4gBs+R4umpRyqiWSNo=",
          "requires": {
            "has-flag": "^4.0.0"
          }
        }
      }
    },
    "color-convert": {
      "version": "1.9.3",
      "resolved": "https://registry.nlark.com/color-convert/download/color-convert-1.9.3.tgz",
      "integrity": "sha1-u3GFBpDh8TZWfeYp0tVHHe2kweg=",
      "requires": {
        "color-name": "1.1.3"
      }
    },
    "color-name": {
      "version": "1.1.3",
      "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.3.tgz",
      "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU="
    },
    "concat-map": {
      "version": "0.0.1",
      "resolved": "https://registry.npm.taobao.org/concat-map/download/concat-map-0.0.1.tgz",
      "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s="
    },
    "cross-spawn": {
      "version": "7.0.3",
      "resolved": "https://registry.nlark.com/cross-spawn/download/cross-spawn-7.0.3.tgz",
      "integrity": "sha1-9zqFudXUHQRVUcF34ogtSshXKKY=",
      "requires": {
        "path-key": "^3.1.0",
        "shebang-command": "^2.0.0",
        "which": "^2.0.1"
      }
    },
    "debug": {
      "version": "4.3.2",
      "resolved": "https://registry.nlark.com/debug/download/debug-4.3.2.tgz?cache=0&sync_timestamp=1625374675284&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fdebug%2Fdownload%2Fdebug-4.3.2.tgz",
      "integrity": "sha1-8KScGKyHeeMdSgxgKd+3aHPHQos=",
      "requires": {
        "ms": "2.1.2"
      }
    },
    "deep-is": {
      "version": "0.1.4",
      "resolved": "https://registry.nlark.com/deep-is/download/deep-is-0.1.4.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fdeep-is%2Fdownload%2Fdeep-is-0.1.4.tgz",
      "integrity": "sha1-pvLc5hL63S7x9Rm3NVHxfoUZmDE="
    },
    "doctrine": {
      "version": "3.0.0",
      "resolved": "https://registry.nlark.com/doctrine/download/doctrine-3.0.0.tgz",
      "integrity": "sha1-rd6+rXKmV023g2OdyHoSF3OXOWE=",
      "requires": {
        "esutils": "^2.0.2"
      }
    },
    "emoji-regex": {
      "version": "8.0.0",
      "resolved": "https://registry.nlark.com/emoji-regex/download/emoji-regex-8.0.0.tgz",
      "integrity": "sha1-6Bj9ac5cz8tARZT4QpY79TFkzDc="
    },
    "enquirer": {
      "version": "2.3.6",
      "resolved": "https://registry.nlark.com/enquirer/download/enquirer-2.3.6.tgz",
      "integrity": "sha1-Kn/l3WNKHkElqXXsmU/1RW3Dc00=",
      "requires": {
        "ansi-colors": "^4.1.1"
      }
    },
    "escape-string-regexp": {
      "version": "4.0.0",
      "resolved": "https://registry.npm.taobao.org/escape-string-regexp/download/escape-string-regexp-4.0.0.tgz",
      "integrity": "sha1-FLqDpdNz49MR5a/KKc9b+tllvzQ="
    },
    "eslint": {
      "version": "7.32.0",
      "resolved": "https://registry.nlark.com/eslint/download/eslint-7.32.0.tgz",
      "integrity": "sha1-xtMooUvj+wjI0dIeEsAv23oqgS0=",
      "requires": {
        "@babel/code-frame": "7.12.11",
        "@eslint/eslintrc": "^0.4.3",
        "@humanwhocodes/config-array": "^0.5.0",
        "ajv": "^6.10.0",
        "chalk": "^4.0.0",
        "cross-spawn": "^7.0.2",
        "debug": "^4.0.1",
        "doctrine": "^3.0.0",
        "enquirer": "^2.3.5",
        "escape-string-regexp": "^4.0.0",
        "eslint-scope": "^5.1.1",
        "eslint-utils": "^2.1.0",
        "eslint-visitor-keys": "^2.0.0",
        "espree": "^7.3.1",
        "esquery": "^1.4.0",
        "esutils": "^2.0.2",
        "fast-deep-equal": "^3.1.3",
        "file-entry-cache": "^6.0.1",
        "functional-red-black-tree": "^1.0.1",
        "glob-parent": "^5.1.2",
        "globals": "^13.6.0",
        "ignore": "^4.0.6",
        "import-fresh": "^3.0.0",
        "imurmurhash": "^0.1.4",
        "is-glob": "^4.0.0",
        "js-yaml": "^3.13.1",
        "json-stable-stringify-without-jsonify": "^1.0.1",
        "levn": "^0.4.1",
        "lodash.merge": "^4.6.2",
        "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": "^6.0.9",
        "text-table": "^0.2.0",
        "v8-compile-cache": "^2.0.3"
      },
      "dependencies": {
        "eslint-visitor-keys": {
          "version": "2.1.0",
          "resolved": "https://registry.nlark.com/eslint-visitor-keys/download/eslint-visitor-keys-2.1.0.tgz",
          "integrity": "sha1-9lMoJZMFknOSyTjtROsKXJsr0wM="
        },
        "espree": {
          "version": "7.3.1",
          "resolved": "https://registry.nlark.com/espree/download/espree-7.3.1.tgz",
          "integrity": "sha1-8t8zC3Usb1UBn4vYm3ZgA5wbu7Y=",
          "requires": {
            "acorn": "^7.4.0",
            "acorn-jsx": "^5.3.1",
            "eslint-visitor-keys": "^1.3.0"
          },
          "dependencies": {
            "eslint-visitor-keys": {
              "version": "1.3.0",
              "resolved": "https://registry.nlark.com/eslint-visitor-keys/download/eslint-visitor-keys-1.3.0.tgz",
              "integrity": "sha1-MOvR73wv3/AcOk8VEESvJfqwUj4="
            }
          }
        },
        "semver": {
          "version": "7.3.5",
          "resolved": "https://registry.npm.taobao.org/semver/download/semver-7.3.5.tgz?cache=0&sync_timestamp=1616463641178&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-7.3.5.tgz",
          "integrity": "sha1-C2Ich5NI2JmOSw5L6Us/EuYBjvc=",
          "requires": {
            "lru-cache": "^6.0.0"
          }
        }
      }
    },
    "eslint-config-standard": {
      "version": "16.0.3",
      "resolved": "https://registry.nlark.com/eslint-config-standard/download/eslint-config-standard-16.0.3.tgz",
      "integrity": "sha1-bIdh5UTpbFMf+SZC7rh4QrhIhRY="
    },
    "eslint-plugin-vue": {
      "version": "7.17.0",
      "resolved": "https://registry.nlark.com/eslint-plugin-vue/download/eslint-plugin-vue-7.17.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Feslint-plugin-vue%2Fdownload%2Feslint-plugin-vue-7.17.0.tgz",
      "integrity": "sha1-QeC9te/8pe4m8If5JL6YfrQe9XM=",
      "requires": {
        "eslint-utils": "^2.1.0",
        "natural-compare": "^1.4.0",
        "semver": "^6.3.0",
        "vue-eslint-parser": "^7.10.0"
      }
    },
    "eslint-scope": {
      "version": "5.1.1",
      "resolved": "https://registry.nlark.com/eslint-scope/download/eslint-scope-5.1.1.tgz",
      "integrity": "sha1-54blmmbLkrP2wfsNUIqrF0hI9Iw=",
      "requires": {
        "esrecurse": "^4.3.0",
        "estraverse": "^4.1.1"
      }
    },
    "eslint-utils": {
      "version": "2.1.0",
      "resolved": "https://registry.nlark.com/eslint-utils/download/eslint-utils-2.1.0.tgz?cache=0&sync_timestamp=1624608042629&other_urls=https%3A%2F%2Fregistry.nlark.com%2Feslint-utils%2Fdownload%2Feslint-utils-2.1.0.tgz",
      "integrity": "sha1-0t5eA0JOcH3BDHQGjd7a5wh0Gyc=",
      "requires": {
        "eslint-visitor-keys": "^1.1.0"
      }
    },
    "eslint-visitor-keys": {
      "version": "1.3.0",
      "resolved": "https://registry.nlark.com/eslint-visitor-keys/download/eslint-visitor-keys-1.3.0.tgz",
      "integrity": "sha1-MOvR73wv3/AcOk8VEESvJfqwUj4="
    },
    "espree": {
      "version": "6.2.1",
      "resolved": "https://registry.nlark.com/espree/download/espree-6.2.1.tgz",
      "integrity": "sha1-d/xy4f10SiBSwg84pbV1gy6Cc0o=",
      "requires": {
        "acorn": "^7.1.1",
        "acorn-jsx": "^5.2.0",
        "eslint-visitor-keys": "^1.1.0"
      }
    },
    "esprima": {
      "version": "4.0.1",
      "resolved": "https://registry.nlark.com/esprima/download/esprima-4.0.1.tgz",
      "integrity": "sha1-E7BM2z5sXRnfkatph6hpVhmwqnE="
    },
    "esquery": {
      "version": "1.4.0",
      "resolved": "https://registry.npm.taobao.org/esquery/download/esquery-1.4.0.tgz",
      "integrity": "sha1-IUj/w4uC6McFff7UhCWz5h8PJKU=",
      "requires": {
        "estraverse": "^5.1.0"
      },
      "dependencies": {
        "estraverse": {
          "version": "5.2.0",
          "resolved": "https://registry.nlark.com/estraverse/download/estraverse-5.2.0.tgz",
          "integrity": "sha1-MH30JUfmzHMk088DwVXVzbjFOIA="
        }
      }
    },
    "esrecurse": {
      "version": "4.3.0",
      "resolved": "https://registry.nlark.com/esrecurse/download/esrecurse-4.3.0.tgz",
      "integrity": "sha1-eteWTWeauyi+5yzsY3WLHF0smSE=",
      "requires": {
        "estraverse": "^5.2.0"
      },
      "dependencies": {
        "estraverse": {
          "version": "5.2.0",
          "resolved": "https://registry.nlark.com/estraverse/download/estraverse-5.2.0.tgz",
          "integrity": "sha1-MH30JUfmzHMk088DwVXVzbjFOIA="
        }
      }
    },
    "estraverse": {
      "version": "4.3.0",
      "resolved": "https://registry.nlark.com/estraverse/download/estraverse-4.3.0.tgz",
      "integrity": "sha1-OYrT88WiSUi+dyXoPRGn3ijNvR0="
    },
    "esutils": {
      "version": "2.0.3",
      "resolved": "https://registry.npm.taobao.org/esutils/download/esutils-2.0.3.tgz",
      "integrity": "sha1-dNLrTeC42hKTcRkQ1Qd1ubcQ72Q="
    },
    "fast-deep-equal": {
      "version": "3.1.3",
      "resolved": "https://registry.npm.taobao.org/fast-deep-equal/download/fast-deep-equal-3.1.3.tgz",
      "integrity": "sha1-On1WtVnWy8PrUSMlJE5hmmXGxSU="
    },
    "fast-json-stable-stringify": {
      "version": "2.1.0",
      "resolved": "https://registry.nlark.com/fast-json-stable-stringify/download/fast-json-stable-stringify-2.1.0.tgz",
      "integrity": "sha1-h0v2nG9ATCtdmcSBNBOZ/VWJJjM="
    },
    "fast-levenshtein": {
      "version": "2.0.6",
      "resolved": "https://registry.npm.taobao.org/fast-levenshtein/download/fast-levenshtein-2.0.6.tgz?cache=0&sync_timestamp=1605292839055&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Ffast-levenshtein%2Fdownload%2Ffast-levenshtein-2.0.6.tgz",
      "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc="
    },
    "file-entry-cache": {
      "version": "6.0.1",
      "resolved": "https://registry.npm.taobao.org/file-entry-cache/download/file-entry-cache-6.0.1.tgz",
      "integrity": "sha1-IRst2WWcsDlLBz5zI6w8kz1SICc=",
      "requires": {
        "flat-cache": "^3.0.4"
      }
    },
    "flat-cache": {
      "version": "3.0.4",
      "resolved": "https://registry.npm.taobao.org/flat-cache/download/flat-cache-3.0.4.tgz",
      "integrity": "sha1-YbAzgwKy/p+Vfcwy/CqH8cMEixE=",
      "requires": {
        "flatted": "^3.1.0",
        "rimraf": "^3.0.2"
      }
    },
    "flatted": {
      "version": "3.2.2",
      "resolved": "https://registry.nlark.com/flatted/download/flatted-3.2.2.tgz?cache=0&sync_timestamp=1627541251258&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fflatted%2Fdownload%2Fflatted-3.2.2.tgz",
      "integrity": "sha1-ZL/tXLaP48p4s+shStl7Y77c5WE="
    },
    "fs.realpath": {
      "version": "1.0.0",
      "resolved": "https://registry.nlark.com/fs.realpath/download/fs.realpath-1.0.0.tgz",
      "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8="
    },
    "function-bind": {
      "version": "1.1.1",
      "resolved": "https://registry.nlark.com/function-bind/download/function-bind-1.1.1.tgz",
      "integrity": "sha1-pWiZ0+o8m6uHS7l3O3xe3pL0iV0="
    },
    "functional-red-black-tree": {
      "version": "1.0.1",
      "resolved": "https://registry.npm.taobao.org/functional-red-black-tree/download/functional-red-black-tree-1.0.1.tgz",
      "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc="
    },
    "glob": {
      "version": "7.1.7",
      "resolved": "https://registry.nlark.com/glob/download/glob-7.1.7.tgz?cache=0&sync_timestamp=1620337382269&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fglob%2Fdownload%2Fglob-7.1.7.tgz",
      "integrity": "sha1-Oxk+kjPwHULQs/eClLvutBj5SpA=",
      "requires": {
        "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"
      }
    },
    "glob-parent": {
      "version": "5.1.2",
      "resolved": "https://registry.nlark.com/glob-parent/download/glob-parent-5.1.2.tgz?cache=0&sync_timestamp=1626760200164&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fglob-parent%2Fdownload%2Fglob-parent-5.1.2.tgz",
      "integrity": "sha1-hpgyxYA0/mikCTwX3BXoNA2EAcQ=",
      "requires": {
        "is-glob": "^4.0.1"
      }
    },
    "globals": {
      "version": "13.11.0",
      "resolved": "https://registry.nlark.com/globals/download/globals-13.11.0.tgz?cache=0&sync_timestamp=1628810148451&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fglobals%2Fdownload%2Fglobals-13.11.0.tgz",
      "integrity": "sha1-QO9njaEX/nvS4o8fqySVG9AlW+c=",
      "requires": {
        "type-fest": "^0.20.2"
      }
    },
    "has": {
      "version": "1.0.3",
      "resolved": "https://registry.nlark.com/has/download/has-1.0.3.tgz",
      "integrity": "sha1-ci18v8H2qoJB8W3YFOAR4fQeh5Y=",
      "requires": {
        "function-bind": "^1.1.1"
      }
    },
    "has-flag": {
      "version": "3.0.0",
      "resolved": "https://registry.nlark.com/has-flag/download/has-flag-3.0.0.tgz",
      "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0="
    },
    "ignore": {
      "version": "4.0.6",
      "resolved": "https://registry.nlark.com/ignore/download/ignore-4.0.6.tgz",
      "integrity": "sha1-dQ49tYYgh7RzfrrIIH/9HvJ7Jfw="
    },
    "import-fresh": {
      "version": "3.3.0",
      "resolved": "https://registry.npm.taobao.org/import-fresh/download/import-fresh-3.3.0.tgz",
      "integrity": "sha1-NxYsJfy566oublPVtNiM4X2eDCs=",
      "requires": {
        "parent-module": "^1.0.0",
        "resolve-from": "^4.0.0"
      }
    },
    "imurmurhash": {
      "version": "0.1.4",
      "resolved": "https://registry.nlark.com/imurmurhash/download/imurmurhash-0.1.4.tgz",
      "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o="
    },
    "inflight": {
      "version": "1.0.6",
      "resolved": "https://registry.nlark.com/inflight/download/inflight-1.0.6.tgz",
      "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=",
      "requires": {
        "once": "^1.3.0",
        "wrappy": "1"
      }
    },
    "inherits": {
      "version": "2.0.4",
      "resolved": "https://registry.nlark.com/inherits/download/inherits-2.0.4.tgz",
      "integrity": "sha1-D6LGT5MpF8NDOg3tVTY6rjdBa3w="
    },
    "is-core-module": {
      "version": "2.6.0",
      "resolved": "https://registry.nlark.com/is-core-module/download/is-core-module-2.6.0.tgz?cache=0&sync_timestamp=1629224656971&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fis-core-module%2Fdownload%2Fis-core-module-2.6.0.tgz",
      "integrity": "sha1-11U7JSb+Wbkro+QMjfdX7Ipwnhk=",
      "requires": {
        "has": "^1.0.3"
      }
    },
    "is-extglob": {
      "version": "2.1.1",
      "resolved": "https://registry.nlark.com/is-extglob/download/is-extglob-2.1.1.tgz",
      "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI="
    },
    "is-fullwidth-code-point": {
      "version": "3.0.0",
      "resolved": "https://registry.npm.taobao.org/is-fullwidth-code-point/download/is-fullwidth-code-point-3.0.0.tgz?cache=0&sync_timestamp=1618552489864&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fis-fullwidth-code-point%2Fdownload%2Fis-fullwidth-code-point-3.0.0.tgz",
      "integrity": "sha1-8Rb4Bk/pCz94RKOJl8C3UFEmnx0="
    },
    "is-glob": {
      "version": "4.0.1",
      "resolved": "https://registry.npm.taobao.org/is-glob/download/is-glob-4.0.1.tgz",
      "integrity": "sha1-dWfb6fL14kZ7x3q4PEopSCQHpdw=",
      "requires": {
        "is-extglob": "^2.1.1"
      }
    },
    "isexe": {
      "version": "2.0.0",
      "resolved": "https://registry.npm.taobao.org/isexe/download/isexe-2.0.0.tgz",
      "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA="
    },
    "js-tokens": {
      "version": "4.0.0",
      "resolved": "https://registry.nlark.com/js-tokens/download/js-tokens-4.0.0.tgz?cache=0&sync_timestamp=1619345098261&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fjs-tokens%2Fdownload%2Fjs-tokens-4.0.0.tgz",
      "integrity": "sha1-GSA/tZmR35jjoocFDUZHzerzJJk="
    },
    "js-yaml": {
      "version": "3.14.1",
      "resolved": "https://registry.nlark.com/js-yaml/download/js-yaml-3.14.1.tgz",
      "integrity": "sha1-2ugS/bOCX6MGYJqHFzg8UMNqBTc=",
      "requires": {
        "argparse": "^1.0.7",
        "esprima": "^4.0.0"
      }
    },
    "jsesc": {
      "version": "2.5.2",
      "resolved": "https://registry.npm.taobao.org/jsesc/download/jsesc-2.5.2.tgz?cache=0&sync_timestamp=1603891161295&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fjsesc%2Fdownload%2Fjsesc-2.5.2.tgz",
      "integrity": "sha1-gFZNLkg9rPbo7yCWUKZ98/DCg6Q="
    },
    "json-schema-traverse": {
      "version": "0.4.1",
      "resolved": "https://registry.npm.taobao.org/json-schema-traverse/download/json-schema-traverse-0.4.1.tgz",
      "integrity": "sha1-afaofZUTq4u4/mO9sJecRI5oRmA="
    },
    "json-stable-stringify-without-jsonify": {
      "version": "1.0.1",
      "resolved": "https://registry.nlark.com/json-stable-stringify-without-jsonify/download/json-stable-stringify-without-jsonify-1.0.1.tgz",
      "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE="
    },
    "levn": {
      "version": "0.4.1",
      "resolved": "https://registry.nlark.com/levn/download/levn-0.4.1.tgz",
      "integrity": "sha1-rkViwAdHO5MqYgDUAyaN0v/8at4=",
      "requires": {
        "prelude-ls": "^1.2.1",
        "type-check": "~0.4.0"
      }
    },
    "lodash": {
      "version": "4.17.21",
      "resolved": "https://registry.nlark.com/lodash/download/lodash-4.17.21.tgz?cache=0&sync_timestamp=1624543041613&other_urls=https%3A%2F%2Fregistry.nlark.com%2Flodash%2Fdownload%2Flodash-4.17.21.tgz",
      "integrity": "sha1-Z5WRxWTDv/quhFTPCz3zcMPWkRw="
    },
    "lodash.clonedeep": {
      "version": "4.5.0",
      "resolved": "https://registry.npm.taobao.org/lodash.clonedeep/download/lodash.clonedeep-4.5.0.tgz",
      "integrity": "sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8="
    },
    "lodash.merge": {
      "version": "4.6.2",
      "resolved": "https://registry.npm.taobao.org/lodash.merge/download/lodash.merge-4.6.2.tgz",
      "integrity": "sha1-VYqlO0O2YeGSWgr9+japoQhf5Xo="
    },
    "lodash.truncate": {
      "version": "4.4.2",
      "resolved": "https://registry.nlark.com/lodash.truncate/download/lodash.truncate-4.4.2.tgz",
      "integrity": "sha1-WjUNoLERO4N+z//VgSy+WNbq4ZM="
    },
    "lru-cache": {
      "version": "6.0.0",
      "resolved": "https://registry.nlark.com/lru-cache/download/lru-cache-6.0.0.tgz?cache=0&sync_timestamp=1619933505159&other_urls=https%3A%2F%2Fregistry.nlark.com%2Flru-cache%2Fdownload%2Flru-cache-6.0.0.tgz",
      "integrity": "sha1-bW/mVw69lqr5D8rR2vo7JWbbOpQ=",
      "requires": {
        "yallist": "^4.0.0"
      }
    },
    "minimatch": {
      "version": "3.0.4",
      "resolved": "https://registry.nlark.com/minimatch/download/minimatch-3.0.4.tgz",
      "integrity": "sha1-UWbihkV/AzBgZL5Ul+jbsMPTIIM=",
      "requires": {
        "brace-expansion": "^1.1.7"
      }
    },
    "ms": {
      "version": "2.1.2",
      "resolved": "https://registry.nlark.com/ms/download/ms-2.1.2.tgz",
      "integrity": "sha1-0J0fNXtEP0kzgqjrPM0YOHKuYAk="
    },
    "natural-compare": {
      "version": "1.4.0",
      "resolved": "https://registry.npm.taobao.org/natural-compare/download/natural-compare-1.4.0.tgz",
      "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc="
    },
    "once": {
      "version": "1.4.0",
      "resolved": "https://registry.nlark.com/once/download/once-1.4.0.tgz",
      "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=",
      "requires": {
        "wrappy": "1"
      }
    },
    "optionator": {
      "version": "0.9.1",
      "resolved": "https://registry.npm.taobao.org/optionator/download/optionator-0.9.1.tgz",
      "integrity": "sha1-TyNqY3Pa4FZqbUPhMmZ09QwpFJk=",
      "requires": {
        "deep-is": "^0.1.3",
        "fast-levenshtein": "^2.0.6",
        "levn": "^0.4.1",
        "prelude-ls": "^1.2.1",
        "type-check": "^0.4.0",
        "word-wrap": "^1.2.3"
      }
    },
    "parent-module": {
      "version": "1.0.1",
      "resolved": "https://registry.nlark.com/parent-module/download/parent-module-1.0.1.tgz",
      "integrity": "sha1-aR0nCeeMefrjoVZiJFLQB2LKqqI=",
      "requires": {
        "callsites": "^3.0.0"
      }
    },
    "path-is-absolute": {
      "version": "1.0.1",
      "resolved": "https://registry.nlark.com/path-is-absolute/download/path-is-absolute-1.0.1.tgz",
      "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18="
    },
    "path-key": {
      "version": "3.1.1",
      "resolved": "https://registry.nlark.com/path-key/download/path-key-3.1.1.tgz",
      "integrity": "sha1-WB9q3mWMu6ZaDTOA3ndTKVBU83U="
    },
    "path-parse": {
      "version": "1.0.7",
      "resolved": "https://registry.nlark.com/path-parse/download/path-parse-1.0.7.tgz",
      "integrity": "sha1-+8EUtgykKzDZ2vWFjkvWi77bZzU="
    },
    "prelude-ls": {
      "version": "1.2.1",
      "resolved": "https://registry.nlark.com/prelude-ls/download/prelude-ls-1.2.1.tgz",
      "integrity": "sha1-3rxkidem5rDnYRiIzsiAM30xY5Y="
    },
    "progress": {
      "version": "2.0.3",
      "resolved": "https://registry.nlark.com/progress/download/progress-2.0.3.tgz",
      "integrity": "sha1-foz42PW48jnBvGi+tOt4Vn1XLvg="
    },
    "punycode": {
      "version": "2.1.1",
      "resolved": "https://registry.nlark.com/punycode/download/punycode-2.1.1.tgz",
      "integrity": "sha1-tYsBCsQMIsVldhbI0sLALHv0eew="
    },
    "regexpp": {
      "version": "3.2.0",
      "resolved": "https://registry.nlark.com/regexpp/download/regexpp-3.2.0.tgz?cache=0&sync_timestamp=1623668835507&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fregexpp%2Fdownload%2Fregexpp-3.2.0.tgz",
      "integrity": "sha1-BCWido2PI7rXDKS5BGH6LxIT4bI="
    },
    "require-from-string": {
      "version": "2.0.2",
      "resolved": "https://registry.nlark.com/require-from-string/download/require-from-string-2.0.2.tgz",
      "integrity": "sha1-iaf92TgmEmcxjq/hT5wy5ZjDaQk="
    },
    "resolve": {
      "version": "1.20.0",
      "resolved": "https://registry.nlark.com/resolve/download/resolve-1.20.0.tgz",
      "integrity": "sha1-YpoBP7P3B1XW8LeTXMHCxTeLGXU=",
      "requires": {
        "is-core-module": "^2.2.0",
        "path-parse": "^1.0.6"
      }
    },
    "resolve-from": {
      "version": "4.0.0",
      "resolved": "https://registry.nlark.com/resolve-from/download/resolve-from-4.0.0.tgz",
      "integrity": "sha1-SrzYUq0y3Xuqv+m0DgCjbbXzkuY="
    },
    "rimraf": {
      "version": "3.0.2",
      "resolved": "https://registry.npm.taobao.org/rimraf/download/rimraf-3.0.2.tgz",
      "integrity": "sha1-8aVAK6YiCtUswSgrrBrjqkn9Bho=",
      "requires": {
        "glob": "^7.1.3"
      }
    },
    "semver": {
      "version": "6.3.0",
      "resolved": "https://registry.npm.taobao.org/semver/download/semver-6.3.0.tgz?cache=0&sync_timestamp=1616463641178&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-6.3.0.tgz",
      "integrity": "sha1-7gpkyK9ejO6mdoexM3YeG+y9HT0="
    },
    "shebang-command": {
      "version": "2.0.0",
      "resolved": "https://registry.nlark.com/shebang-command/download/shebang-command-2.0.0.tgz",
      "integrity": "sha1-zNCvT4g1+9wmW4JGGq8MNmY/NOo=",
      "requires": {
        "shebang-regex": "^3.0.0"
      }
    },
    "shebang-regex": {
      "version": "3.0.0",
      "resolved": "https://registry.nlark.com/shebang-regex/download/shebang-regex-3.0.0.tgz?cache=0&sync_timestamp=1628896299850&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fshebang-regex%2Fdownload%2Fshebang-regex-3.0.0.tgz",
      "integrity": "sha1-rhbxZE2HPsrYQ7AwexQzYtTEIXI="
    },
    "slice-ansi": {
      "version": "4.0.0",
      "resolved": "https://registry.nlark.com/slice-ansi/download/slice-ansi-4.0.0.tgz",
      "integrity": "sha1-UA6N0P1VsFgVCGJVsxla3ypF/ms=",
      "requires": {
        "ansi-styles": "^4.0.0",
        "astral-regex": "^2.0.0",
        "is-fullwidth-code-point": "^3.0.0"
      },
      "dependencies": {
        "ansi-styles": {
          "version": "4.3.0",
          "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz",
          "integrity": "sha1-7dgDYornHATIWuegkG7a00tkiTc=",
          "requires": {
            "color-convert": "^2.0.1"
          }
        },
        "color-convert": {
          "version": "2.0.1",
          "resolved": "https://registry.nlark.com/color-convert/download/color-convert-2.0.1.tgz",
          "integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=",
          "requires": {
            "color-name": "~1.1.4"
          }
        },
        "color-name": {
          "version": "1.1.4",
          "resolved": "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz",
          "integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI="
        }
      }
    },
    "source-map": {
      "version": "0.5.7",
      "resolved": "https://registry.nlark.com/source-map/download/source-map-0.5.7.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsource-map%2Fdownload%2Fsource-map-0.5.7.tgz",
      "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w="
    },
    "sprintf-js": {
      "version": "1.0.3",
      "resolved": "https://registry.npm.taobao.org/sprintf-js/download/sprintf-js-1.0.3.tgz",
      "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw="
    },
    "string-width": {
      "version": "4.2.2",
      "resolved": "https://registry.npm.taobao.org/string-width/download/string-width-4.2.2.tgz",
      "integrity": "sha1-2v1PlVmnWFz7pSnGoKT3NIjr1MU=",
      "requires": {
        "emoji-regex": "^8.0.0",
        "is-fullwidth-code-point": "^3.0.0",
        "strip-ansi": "^6.0.0"
      }
    },
    "strip-ansi": {
      "version": "6.0.0",
      "resolved": "https://registry.npm.taobao.org/strip-ansi/download/strip-ansi-6.0.0.tgz?cache=0&sync_timestamp=1618553299612&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fstrip-ansi%2Fdownload%2Fstrip-ansi-6.0.0.tgz",
      "integrity": "sha1-CxVx3XZpzNTz4G4U7x7tJiJa5TI=",
      "requires": {
        "ansi-regex": "^5.0.0"
      }
    },
    "strip-json-comments": {
      "version": "3.1.1",
      "resolved": "https://registry.nlark.com/strip-json-comments/download/strip-json-comments-3.1.1.tgz",
      "integrity": "sha1-MfEoGzgyYwQ0gxwxDAHMzajL4AY="
    },
    "supports-color": {
      "version": "5.5.0",
      "resolved": "https://registry.nlark.com/supports-color/download/supports-color-5.5.0.tgz?cache=0&sync_timestamp=1626703342506&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fsupports-color%2Fdownload%2Fsupports-color-5.5.0.tgz",
      "integrity": "sha1-4uaaRKyHcveKHsCzW2id9lMO/I8=",
      "requires": {
        "has-flag": "^3.0.0"
      }
    },
    "table": {
      "version": "6.7.1",
      "resolved": "https://registry.nlark.com/table/download/table-6.7.1.tgz",
      "integrity": "sha1-7gVZK3FDgxqMlPPO5qrkwczvM+I=",
      "requires": {
        "ajv": "^8.0.1",
        "lodash.clonedeep": "^4.5.0",
        "lodash.truncate": "^4.4.2",
        "slice-ansi": "^4.0.0",
        "string-width": "^4.2.0",
        "strip-ansi": "^6.0.0"
      },
      "dependencies": {
        "ajv": {
          "version": "8.6.2",
          "resolved": "https://registry.nlark.com/ajv/download/ajv-8.6.2.tgz?cache=0&sync_timestamp=1626380134544&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fajv%2Fdownload%2Fajv-8.6.2.tgz",
          "integrity": "sha1-L7ReDl/LwIEzJsHD2lNdGIG7BXE=",
          "requires": {
            "fast-deep-equal": "^3.1.1",
            "json-schema-traverse": "^1.0.0",
            "require-from-string": "^2.0.2",
            "uri-js": "^4.2.2"
          }
        },
        "json-schema-traverse": {
          "version": "1.0.0",
          "resolved": "https://registry.npm.taobao.org/json-schema-traverse/download/json-schema-traverse-1.0.0.tgz",
          "integrity": "sha1-rnvLNlard6c7pcSb9lTzjmtoYOI="
        }
      }
    },
    "text-table": {
      "version": "0.2.0",
      "resolved": "https://registry.nlark.com/text-table/download/text-table-0.2.0.tgz",
      "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ="
    },
    "to-fast-properties": {
      "version": "2.0.0",
      "resolved": "https://registry.nlark.com/to-fast-properties/download/to-fast-properties-2.0.0.tgz?cache=0&sync_timestamp=1628418893613&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fto-fast-properties%2Fdownload%2Fto-fast-properties-2.0.0.tgz",
      "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4="
    },
    "type-check": {
      "version": "0.4.0",
      "resolved": "https://registry.npm.taobao.org/type-check/download/type-check-0.4.0.tgz",
      "integrity": "sha1-B7ggO/pwVsBlcFDjzNLDdzC6uPE=",
      "requires": {
        "prelude-ls": "^1.2.1"
      }
    },
    "type-fest": {
      "version": "0.20.2",
      "resolved": "https://registry.nlark.com/type-fest/download/type-fest-0.20.2.tgz",
      "integrity": "sha1-G/IH9LKPkVg2ZstfvTJ4hzAc1fQ="
    },
    "uri-js": {
      "version": "4.4.1",
      "resolved": "https://registry.npm.taobao.org/uri-js/download/uri-js-4.4.1.tgz?cache=0&sync_timestamp=1610237517218&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Furi-js%2Fdownload%2Furi-js-4.4.1.tgz",
      "integrity": "sha1-mxpSWVIlhZ5V9mnZKPiMbFfyp34=",
      "requires": {
        "punycode": "^2.1.0"
      }
    },
    "v8-compile-cache": {
      "version": "2.3.0",
      "resolved": "https://registry.npm.taobao.org/v8-compile-cache/download/v8-compile-cache-2.3.0.tgz",
      "integrity": "sha1-LeGWGMZtwkfc+2+ZM4A12CRaLO4="
    },
    "vue-eslint-parser": {
      "version": "7.11.0",
      "resolved": "https://registry.nlark.com/vue-eslint-parser/download/vue-eslint-parser-7.11.0.tgz?cache=0&sync_timestamp=1630882911486&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fvue-eslint-parser%2Fdownload%2Fvue-eslint-parser-7.11.0.tgz",
      "integrity": "sha1-IUtd6pYQB/z/su5luJEjB2KNDa8=",
      "requires": {
        "debug": "^4.1.1",
        "eslint-scope": "^5.1.1",
        "eslint-visitor-keys": "^1.1.0",
        "espree": "^6.2.1",
        "esquery": "^1.4.0",
        "lodash": "^4.17.21",
        "semver": "^6.3.0"
      }
    },
    "which": {
      "version": "2.0.2",
      "resolved": "https://registry.nlark.com/which/download/which-2.0.2.tgz",
      "integrity": "sha1-fGqN0KY2oDJ+ELWckobu6T8/UbE=",
      "requires": {
        "isexe": "^2.0.0"
      }
    },
    "word-wrap": {
      "version": "1.2.3",
      "resolved": "https://registry.nlark.com/word-wrap/download/word-wrap-1.2.3.tgz",
      "integrity": "sha1-YQY29rH3A4kb00dxzLF/uTtHB5w="
    },
    "wrappy": {
      "version": "1.0.2",
      "resolved": "https://registry.nlark.com/wrappy/download/wrappy-1.0.2.tgz",
      "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8="
    },
    "yallist": {
      "version": "4.0.0",
      "resolved": "https://registry.nlark.com/yallist/download/yallist-4.0.0.tgz",
      "integrity": "sha1-m7knkNnA7/7GO+c1GeEaNQGaOnI="
    }
  }
}