-
Notifications
You must be signed in to change notification settings - Fork 6
/
yarn.lock
2994 lines (2560 loc) · 113 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.14.5":
"integrity" "sha1-I7CNdA6D9JxeWZRfvxtD6Au/Tts="
"resolved" "https://registry.nlark.com/@babel/code-frame/download/@babel/code-frame-7.14.5.tgz?cache=0&sync_timestamp=1623280394200&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcode-frame%2Fdownload%2F%40babel%2Fcode-frame-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/highlight" "^7.14.5"
"@babel/[email protected]":
"integrity" "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw=="
"resolved" "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz"
"version" "7.12.11"
dependencies:
"@babel/highlight" "^7.10.4"
"@babel/generator@^7.14.8":
"integrity" "sha1-v4b9avls87dDlajKQJUV+JQj4HA="
"resolved" "https://registry.nlark.com/@babel/generator/download/@babel/generator-7.14.8.tgz"
"version" "7.14.8"
dependencies:
"@babel/types" "^7.14.8"
"jsesc" "^2.5.1"
"source-map" "^0.5.0"
"@babel/helper-function-name@^7.14.5":
"integrity" "sha1-ieLEdJcvFdjiM7Uu6MSA4s/NUMQ="
"resolved" "https://registry.nlark.com/@babel/helper-function-name/download/@babel/helper-function-name-7.14.5.tgz?cache=0&sync_timestamp=1623280385237&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-function-name%2Fdownload%2F%40babel%2Fhelper-function-name-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/helper-get-function-arity" "^7.14.5"
"@babel/template" "^7.14.5"
"@babel/types" "^7.14.5"
"@babel/helper-get-function-arity@^7.14.5":
"integrity" "sha1-Jfv6V5sJN+7h87gF7OTOOYxDGBU="
"resolved" "https://registry.nlark.com/@babel/helper-get-function-arity/download/@babel/helper-get-function-arity-7.14.5.tgz?cache=0&sync_timestamp=1623280360950&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-get-function-arity%2Fdownload%2F%40babel%2Fhelper-get-function-arity-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/types" "^7.14.5"
"@babel/helper-hoist-variables@^7.14.5":
"integrity" "sha1-4N0nwzp45XfXyIhJFqPn7x98f40="
"resolved" "https://registry.nlark.com/@babel/helper-hoist-variables/download/@babel/helper-hoist-variables-7.14.5.tgz?cache=0&sync_timestamp=1623280361512&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-hoist-variables%2Fdownload%2F%40babel%2Fhelper-hoist-variables-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/types" "^7.14.5"
"@babel/helper-split-export-declaration@^7.14.5":
"integrity" "sha1-IrI6VO9RwrdgXYUZMMGXbdC8aTo="
"resolved" "https://registry.nlark.com/@babel/helper-split-export-declaration/download/@babel/helper-split-export-declaration-7.14.5.tgz?cache=0&sync_timestamp=1623280365934&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-split-export-declaration%2Fdownload%2F%40babel%2Fhelper-split-export-declaration-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/types" "^7.14.5"
"@babel/helper-validator-identifier@^7.14.5", "@babel/helper-validator-identifier@^7.14.8":
"integrity" "sha1-Mr4zp1bynieKDWRPoIosng+Io0w="
"resolved" "https://registry.nlark.com/@babel/helper-validator-identifier/download/@babel/helper-validator-identifier-7.14.8.tgz"
"version" "7.14.8"
"@babel/highlight@^7.10.4", "@babel/highlight@^7.14.5":
"integrity" "sha1-aGGlLwOWZAUAH2qlNKAaJNmejNk="
"resolved" "https://registry.nlark.com/@babel/highlight/download/@babel/highlight-7.14.5.tgz?cache=0&sync_timestamp=1623280393681&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhighlight%2Fdownload%2F%40babel%2Fhighlight-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/helper-validator-identifier" "^7.14.5"
"chalk" "^2.0.0"
"js-tokens" "^4.0.0"
"@babel/parser@^7.14.5", "@babel/parser@^7.14.8", "@babel/parser@^7.7.0":
"integrity" "sha1-Zv1BZmste4QL1azn90FtWsYCCNQ="
"resolved" "https://registry.nlark.com/@babel/parser/download/@babel/parser-7.14.8.tgz"
"version" "7.14.8"
"@babel/template@^7.14.5":
"integrity" "sha1-qbydizM1T/blWpxg0RCSAKaJdPQ="
"resolved" "https://registry.nlark.com/@babel/template/download/@babel/template-7.14.5.tgz?cache=0&sync_timestamp=1623280386138&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftemplate%2Fdownload%2F%40babel%2Ftemplate-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/code-frame" "^7.14.5"
"@babel/parser" "^7.14.5"
"@babel/types" "^7.14.5"
"@babel/traverse@^7.7.0":
"integrity" "sha1-wCU/Amd8XeGo/532sKrL7H2hqM4="
"resolved" "https://registry.nlark.com/@babel/traverse/download/@babel/traverse-7.14.8.tgz"
"version" "7.14.8"
dependencies:
"@babel/code-frame" "^7.14.5"
"@babel/generator" "^7.14.8"
"@babel/helper-function-name" "^7.14.5"
"@babel/helper-hoist-variables" "^7.14.5"
"@babel/helper-split-export-declaration" "^7.14.5"
"@babel/parser" "^7.14.8"
"@babel/types" "^7.14.8"
"debug" "^4.1.0"
"globals" "^11.1.0"
"@babel/types@^7.14.5", "@babel/types@^7.14.8", "@babel/types@^7.7.0":
"integrity" "sha1-OBCd6PytwGQV+9m3TfAGXU1Bxyg="
"resolved" "https://registry.nlark.com/@babel/types/download/@babel/types-7.14.8.tgz"
"version" "7.14.8"
dependencies:
"@babel/helper-validator-identifier" "^7.14.8"
"to-fast-properties" "^2.0.0"
"@eslint/eslintrc@^0.4.3":
"integrity" "sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw=="
"resolved" "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.3.tgz"
"version" "0.4.3"
dependencies:
"ajv" "^6.12.4"
"debug" "^4.1.1"
"espree" "^7.3.0"
"globals" "^13.9.0"
"ignore" "^4.0.6"
"import-fresh" "^3.2.1"
"js-yaml" "^3.13.1"
"minimatch" "^3.0.4"
"strip-json-comments" "^3.1.1"
"@humanwhocodes/config-array@^0.5.0":
"integrity" "sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg=="
"resolved" "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.5.0.tgz"
"version" "0.5.0"
dependencies:
"@humanwhocodes/object-schema" "^1.2.0"
"debug" "^4.1.1"
"minimatch" "^3.0.4"
"@humanwhocodes/object-schema@^1.2.0":
"integrity" "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA=="
"resolved" "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz"
"version" "1.2.1"
"@jx3box/jx3box-common@^5.5.1":
"integrity" "sha1-naMSY+0cX/kkurqvfWsHB0Ydyio="
"resolved" "https://registry.nlark.com/@jx3box/jx3box-common/download/@jx3box/jx3box-common-5.9.8.tgz"
"version" "5.9.8"
dependencies:
"axios" "^0.20.0"
"element-ui" "^2.13.2"
"localforage" "^1.7.3"
"moment" "^2.29.1"
"vue" "^2.6.12"
"@jx3box/jx3box-data@^2.0.0":
"integrity" "sha512-opFkv/SnX7f0pCWEZlLLuuEAByaV+Nmy97F+oIXRx2UsCYqoo13P8Zg17WTP2pCFLcoG790GRSIs+xZvc7TRUw=="
"resolved" "https://registry.npmjs.org/@jx3box/jx3box-data/-/jx3box-data-2.0.0.tgz"
"version" "2.0.0"
dependencies:
"csv-parse" "^5.3.0"
"fs" "0.0.1-security"
"path" "^0.12.7"
"@tootallnate/once@1":
"integrity" "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw=="
"resolved" "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz"
"version" "1.1.2"
"@types/node@*":
"integrity" "sha1-n60XGltwFhPuim9OzjyIsQNLGwM="
"resolved" "https://registry.nlark.com/@types/node/download/@types/node-16.4.1.tgz"
"version" "16.4.1"
"@types/yauzl@^2.9.1":
"integrity" "sha1-xI5dVq/xREQJ45+hZLC01FUqe3o="
"resolved" "https://registry.nlark.com/@types/yauzl/download/@types/yauzl-2.9.2.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fyauzl%2Fdownload%2F%40types%2Fyauzl-2.9.2.tgz"
"version" "2.9.2"
dependencies:
"@types/node" "*"
"abab@^2.0.3", "abab@^2.0.5":
"integrity" "sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q=="
"resolved" "https://registry.npmjs.org/abab/-/abab-2.0.5.tgz"
"version" "2.0.5"
"accepts@^1.3.5":
"integrity" "sha1-UxvHJlF6OytB+FACHGzBXqq1B80="
"resolved" "https://registry.npm.taobao.org/accepts/download/accepts-1.3.7.tgz"
"version" "1.3.7"
dependencies:
"mime-types" "~2.1.24"
"negotiator" "0.6.2"
"acorn-globals@^6.0.0":
"integrity" "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg=="
"resolved" "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz"
"version" "6.0.0"
dependencies:
"acorn" "^7.1.1"
"acorn-walk" "^7.1.1"
"acorn-jsx@^5.3.1":
"integrity" "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ=="
"resolved" "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz"
"version" "5.3.2"
"acorn-walk@^7.1.1":
"integrity" "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA=="
"resolved" "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz"
"version" "7.2.0"
"acorn@^5.0.3":
"integrity" "sha1-Po2KmUfQWZoXltECJddDL0pKz14="
"resolved" "https://registry.nlark.com/acorn/download/acorn-5.7.4.tgz?cache=0&sync_timestamp=1624526855420&other_urls=https%3A%2F%2Fregistry.nlark.com%2Facorn%2Fdownload%2Facorn-5.7.4.tgz"
"version" "5.7.4"
"acorn@^6.0.0 || ^7.0.0 || ^8.0.0", "acorn@^7.4.0":
"integrity" "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A=="
"resolved" "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz"
"version" "7.4.1"
"acorn@^7.1.1":
"integrity" "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A=="
"resolved" "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz"
"version" "7.4.1"
"acorn@^8.2.4":
"integrity" "sha512-yXbYeFy+jUuYd3/CDcg2NkIYE991XYX/bje7LmjJigUciaeO1JR4XxXgCIV1/Zc/dRuFEyw1L0pbA+qynJkW5Q=="
"resolved" "https://registry.npmjs.org/acorn/-/acorn-8.5.0.tgz"
"version" "8.5.0"
"agent-base@^4.3.0":
"integrity" "sha1-gWXwHENgCbzK0LHRIvBe13Dvxu4="
"resolved" "https://registry.npm.taobao.org/agent-base/download/agent-base-4.3.0.tgz"
"version" "4.3.0"
dependencies:
"es6-promisify" "^5.0.0"
"agent-base@5":
"integrity" "sha1-6Ps/JClZ20TWO+Zl23qOc5U3oyw="
"resolved" "https://registry.npm.taobao.org/agent-base/download/agent-base-5.1.1.tgz"
"version" "5.1.1"
"agent-base@6":
"integrity" "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ=="
"resolved" "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz"
"version" "6.0.2"
dependencies:
"debug" "4"
"ajv@^6.10.0", "ajv@^6.12.4":
"integrity" "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g=="
"resolved" "https://registry.npmjs.org/ajv/-/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"
"ajv@^8.0.1":
"integrity" "sha512-E4bfmKAhGiSTvMfL1Myyycaub+cUEU2/IvpylXkUu7CHBkBj1f/ikdzbD7YQ6FKUbixDxeYvB/xY4fvyroDlQg=="
"resolved" "https://registry.npmjs.org/ajv/-/ajv-8.11.2.tgz"
"version" "8.11.2"
dependencies:
"fast-deep-equal" "^3.1.1"
"json-schema-traverse" "^1.0.0"
"require-from-string" "^2.0.2"
"uri-js" "^4.2.2"
"ansi-colors@^4.1.1":
"integrity" "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw=="
"resolved" "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz"
"version" "4.1.3"
"ansi-regex@^5.0.1":
"integrity" "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="
"resolved" "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz"
"version" "5.0.1"
"ansi-styles@^3.2.1":
"integrity" "sha1-QfuyAkPlCxK+DwS43tvwdSDOhB0="
"resolved" "https://registry.nlark.com/ansi-styles/download/ansi-styles-3.2.1.tgz"
"version" "3.2.1"
dependencies:
"color-convert" "^1.9.0"
"ansi-styles@^4.0.0":
"integrity" "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="
"resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz"
"version" "4.3.0"
dependencies:
"color-convert" "^2.0.1"
"ansi-styles@^4.1.0":
"integrity" "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="
"resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz"
"version" "4.3.0"
dependencies:
"color-convert" "^2.0.1"
"any-promise@^1.1.0", "any-promise@^1.3.0":
"integrity" "sha1-q8av7tzqUugJzcA3au0845Y10X8="
"resolved" "https://registry.npm.taobao.org/any-promise/download/any-promise-1.3.0.tgz"
"version" "1.3.0"
"argparse@^1.0.7":
"integrity" "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg=="
"resolved" "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz"
"version" "1.0.10"
dependencies:
"sprintf-js" "~1.0.2"
"array-includes@^3.1.2", "array-includes@^3.1.3":
"integrity" "sha1-x/YZs4KtKvr1Mmzd/cCvxhr3aQo="
"resolved" "https://registry.npm.taobao.org/array-includes/download/array-includes-3.1.3.tgz"
"version" "3.1.3"
dependencies:
"call-bind" "^1.0.2"
"define-properties" "^1.1.3"
"es-abstract" "^1.18.0-next.2"
"get-intrinsic" "^1.1.1"
"is-string" "^1.0.5"
"array.prototype.flatmap@^1.2.4":
"integrity" "sha1-lM/UfMFVbsB0fZf3x3OMWBIgBMk="
"resolved" "https://registry.npm.taobao.org/array.prototype.flatmap/download/array.prototype.flatmap-1.2.4.tgz"
"version" "1.2.4"
dependencies:
"call-bind" "^1.0.0"
"define-properties" "^1.1.3"
"es-abstract" "^1.18.0-next.1"
"function-bind" "^1.1.1"
"art-template@^4.13.2":
"integrity" "sha1-TEy9RN4IqtAxZgJAhx9Fx9c3z8E="
"resolved" "https://registry.npm.taobao.org/art-template/download/art-template-4.13.2.tgz"
"version" "4.13.2"
dependencies:
"acorn" "^5.0.3"
"escodegen" "^1.8.1"
"estraverse" "^4.2.0"
"html-minifier" "^3.4.3"
"is-keyword-js" "^1.0.3"
"js-tokens" "^3.0.1"
"merge-source-map" "^1.0.3"
"source-map" "^0.5.6"
"astral-regex@^2.0.0":
"integrity" "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ=="
"resolved" "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz"
"version" "2.0.0"
"async-redis@^1.1.7":
"integrity" "sha1-2eI2r6WUvce24A9bA/HSMEwBfVA="
"resolved" "https://registry.nlark.com/async-redis/download/async-redis-1.1.7.tgz"
"version" "1.1.7"
dependencies:
"redis" "^2.8.0"
"redis-commands" "^1.3.1"
"async-validator@~1.8.1":
"integrity" "sha1-3D4I7B/Q3dtn5ghC8CwM0c7G1/A="
"resolved" "https://registry.nlark.com/async-validator/download/async-validator-1.8.5.tgz"
"version" "1.8.5"
dependencies:
"babel-runtime" "6.x"
"asynckit@^0.4.0":
"integrity" "sha1-x57Zf380y48robyXkLzDZkdLS3k="
"resolved" "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz"
"version" "0.4.0"
"at-least-node@^1.0.0":
"integrity" "sha1-YCzUtG6EStTv/JKoARo8RuAjjcI="
"resolved" "https://registry.npm.taobao.org/at-least-node/download/at-least-node-1.0.0.tgz"
"version" "1.0.0"
"axios@^0.19.2":
"integrity" "sha1-PqNsXYgY0NX4qKl6bTa4bNwAyyc="
"resolved" "https://registry.nlark.com/axios/download/axios-0.19.2.tgz"
"version" "0.19.2"
dependencies:
"follow-redirects" "1.5.10"
"axios@^0.20.0":
"integrity" "sha1-BXujDwSIRpSZOozQf6OUz/EcUL0="
"resolved" "https://registry.nlark.com/axios/download/axios-0.20.0.tgz"
"version" "0.20.0"
dependencies:
"follow-redirects" "^1.10.0"
"babel-eslint@^10.0.2":
"integrity" "sha1-aWjlaKkQt4+zd5zdi2rC9HmUMjI="
"resolved" "https://registry.nlark.com/babel-eslint/download/babel-eslint-10.1.0.tgz?cache=0&sync_timestamp=1618846971799&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbabel-eslint%2Fdownload%2Fbabel-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"
"babel-helper-vue-jsx-merge-props@^2.0.0":
"integrity" "sha1-Iq69OzOQIyjlEyk6jkmSs4T58bY="
"resolved" "https://registry.npm.taobao.org/babel-helper-vue-jsx-merge-props/download/babel-helper-vue-jsx-merge-props-2.0.3.tgz"
"version" "2.0.3"
"integrity" "sha1-llxwWGaOgrVde/4E/yM3vItWR/4="
"resolved" "https://registry.npm.taobao.org/babel-runtime/download/babel-runtime-6.26.0.tgz"
"version" "6.26.0"
dependencies:
"core-js" "^2.4.0"
"regenerator-runtime" "^0.11.0"
"balanced-match@^1.0.0":
"integrity" "sha1-6D46fj8wCzTLnYf2FfoMvzV2kO4="
"resolved" "https://registry.npm.taobao.org/balanced-match/download/balanced-match-1.0.2.tgz"
"version" "1.0.2"
"base64-js@^1.3.1":
"integrity" "sha1-GxtEAWClv3rUC2UPCVljSBkDkwo="
"resolved" "https://registry.npm.taobao.org/base64-js/download/base64-js-1.5.1.tgz"
"version" "1.5.1"
"bl@^4.0.3":
"integrity" "sha1-RRU1JkGCvsL7vIOmKrmM8R2fezo="
"resolved" "https://registry.npm.taobao.org/bl/download/bl-4.1.0.tgz?cache=0&sync_timestamp=1617381871311&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fbl%2Fdownload%2Fbl-4.1.0.tgz"
"version" "4.1.0"
dependencies:
"buffer" "^5.5.0"
"inherits" "^2.0.4"
"readable-stream" "^3.4.0"
"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"
"version" "1.1.11"
dependencies:
"balanced-match" "^1.0.0"
"concat-map" "0.0.1"
"browser-process-hrtime@^1.0.0":
"integrity" "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow=="
"resolved" "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz"
"version" "1.0.0"
"buffer-crc32@~0.2.3":
"integrity" "sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI="
"resolved" "https://registry.npm.taobao.org/buffer-crc32/download/buffer-crc32-0.2.13.tgz"
"version" "0.2.13"
"buffer@^5.2.1", "buffer@^5.5.0":
"integrity" "sha1-umLnwTEzBTWCGXFghRqPZI6Z7tA="
"resolved" "https://registry.npm.taobao.org/buffer/download/buffer-5.7.1.tgz"
"version" "5.7.1"
dependencies:
"base64-js" "^1.3.1"
"ieee754" "^1.1.13"
"integrity" "sha1-9s95M6Ng4FiPqf3oVlHNx/gF0fY="
"resolved" "https://registry.npm.taobao.org/bytes/download/bytes-3.1.0.tgz"
"version" "3.1.0"
"cache-content-type@^1.0.0":
"integrity" "sha1-A1zeKwjuISn0qDFeqPAKANuhRTw="
"resolved" "https://registry.npm.taobao.org/cache-content-type/download/cache-content-type-1.0.1.tgz"
"version" "1.0.1"
dependencies:
"mime-types" "^2.1.18"
"ylru" "^1.2.0"
"call-bind@^1.0.0", "call-bind@^1.0.2":
"integrity" "sha1-sdTonmiBGcPJqQOtMKuy9qkZvjw="
"resolved" "https://registry.npm.taobao.org/call-bind/download/call-bind-1.0.2.tgz"
"version" "1.0.2"
dependencies:
"function-bind" "^1.1.1"
"get-intrinsic" "^1.0.2"
"callsites@^3.0.0":
"integrity" "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ=="
"resolved" "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz"
"version" "3.1.0"
"integrity" "sha1-yjw2iKTpzzpM2nd9xNy8cTJJz3M="
"resolved" "https://registry.npm.taobao.org/camel-case/download/camel-case-3.0.0.tgz"
"version" "3.0.0"
dependencies:
"no-case" "^2.2.0"
"upper-case" "^1.1.1"
"chalk@^2.0.0":
"integrity" "sha1-zUJUFnelQzPPVBpJEIwUMrRMlCQ="
"resolved" "https://registry.nlark.com/chalk/download/chalk-2.4.2.tgz?cache=0&sync_timestamp=1618995367379&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" "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA=="
"resolved" "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz"
"version" "4.1.2"
dependencies:
"ansi-styles" "^4.1.0"
"supports-color" "^7.1.0"
"chownr@^1.1.1":
"integrity" "sha1-b8nXtC0ypYNZYzdmbn0ICE2izGs="
"resolved" "https://registry.npm.taobao.org/chownr/download/chownr-1.1.4.tgz"
"version" "1.1.4"
"integrity" "sha1-UHtd59l7SO5T2ErbAWD/YhY4D3g="
"resolved" "https://registry.nlark.com/clean-css/download/clean-css-4.2.3.tgz?cache=0&sync_timestamp=1624616732831&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fclean-css%2Fdownload%2Fclean-css-4.2.3.tgz"
"version" "4.2.3"
dependencies:
"source-map" "~0.6.0"
"co-body@^6.0.0":
"integrity" "sha1-2HqO/DVk+b/jrO2O9c0Ex6h2ZUc="
"resolved" "https://registry.npm.taobao.org/co-body/download/co-body-6.1.0.tgz"
"version" "6.1.0"
dependencies:
"inflation" "^2.0.0"
"qs" "^6.5.2"
"raw-body" "^2.3.3"
"type-is" "^1.6.16"
"co@^4.6.0":
"integrity" "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ="
"resolved" "https://registry.npm.taobao.org/co/download/co-4.6.0.tgz"
"version" "4.6.0"
"color-convert@^1.9.0":
"integrity" "sha1-u3GFBpDh8TZWfeYp0tVHHe2kweg="
"resolved" "https://registry.nlark.com/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" "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ=="
"resolved" "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz"
"version" "2.0.1"
dependencies:
"color-name" "~1.1.4"
"color-name@~1.1.4":
"integrity" "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
"resolved" "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz"
"version" "1.1.4"
"integrity" "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU="
"resolved" "https://registry.npm.taobao.org/color-name/download/color-name-1.1.3.tgz"
"version" "1.1.3"
"colors@^1.4.0":
"integrity" "sha1-xQSRR51MG9rtLJztMs98fcI2D3g="
"resolved" "https://registry.npm.taobao.org/colors/download/colors-1.4.0.tgz"
"version" "1.4.0"
"combined-stream@^1.0.8":
"integrity" "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg=="
"resolved" "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz"
"version" "1.0.8"
dependencies:
"delayed-stream" "~1.0.0"
"commander@~2.19.0":
"integrity" "sha1-9hmKqE5bg8RgVLlN3tv+1e6f8So="
"resolved" "https://registry.nlark.com/commander/download/commander-2.19.0.tgz?cache=0&sync_timestamp=1624609570521&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcommander%2Fdownload%2Fcommander-2.19.0.tgz"
"version" "2.19.0"
"integrity" "sha1-vXerfebelCBc6sxy8XFtKfIKd78="
"resolved" "https://registry.nlark.com/commander/download/commander-2.17.1.tgz?cache=0&sync_timestamp=1624609570521&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcommander%2Fdownload%2Fcommander-2.17.1.tgz"
"version" "2.17.1"
"integrity" "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s="
"resolved" "https://registry.npm.taobao.org/concat-map/download/concat-map-0.0.1.tgz"
"version" "0.0.1"
"content-disposition@~0.5.2":
"integrity" "sha1-4TDK9+cnkIfFYWwgB9BIVpiYT70="
"resolved" "https://registry.npm.taobao.org/content-disposition/download/content-disposition-0.5.3.tgz"
"version" "0.5.3"
dependencies:
"safe-buffer" "5.1.2"
"content-type@^1.0.4":
"integrity" "sha1-4TjMdeBAxyexlm/l5fjJruJW/js="
"resolved" "https://registry.npm.taobao.org/content-type/download/content-type-1.0.4.tgz?cache=0&sync_timestamp=1615984448548&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcontent-type%2Fdownload%2Fcontent-type-1.0.4.tgz"
"version" "1.0.4"
"cookies@~0.8.0":
"integrity" "sha1-EpPOSzkXQKhAbjyYcOgoxLVPP5A="
"resolved" "https://registry.npm.taobao.org/cookies/download/cookies-0.8.0.tgz"
"version" "0.8.0"
dependencies:
"depd" "~2.0.0"
"keygrip" "~1.1.0"
"copy-to@^2.0.1":
"integrity" "sha1-JoD7uAaKSNCGVrYJgJK9r8kG9KU="
"resolved" "https://registry.npm.taobao.org/copy-to/download/copy-to-2.0.1.tgz"
"version" "2.0.1"
"core-js@^2.4.0":
"integrity" "sha1-2TM9+nsGXjR8xWgiGdb2kIWcwuw="
"resolved" "https://registry.nlark.com/core-js/download/core-js-2.6.12.tgz?cache=0&sync_timestamp=1624966102256&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcore-js%2Fdownload%2Fcore-js-2.6.12.tgz"
"version" "2.6.12"
"cross-spawn@^7.0.2":
"integrity" "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w=="
"resolved" "https://registry.npmjs.org/cross-spawn/-/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"
"cssom@^0.4.4":
"integrity" "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw=="
"resolved" "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz"
"version" "0.4.4"
"cssom@~0.3.6":
"integrity" "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg=="
"resolved" "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz"
"version" "0.3.8"
"cssstyle@^2.3.0":
"integrity" "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A=="
"resolved" "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz"
"version" "2.3.0"
dependencies:
"cssom" "~0.3.6"
"csv-parse@^5.3.0":
"integrity" "sha512-kEWkAPleNEdhFNkHQpFHu9RYPogsFj3dx6bCxL847fsiLgidzWg0z/O0B1kVWMJUc5ky64zGp18LX2T3DQrOfw=="
"resolved" "https://registry.npmjs.org/csv-parse/-/csv-parse-5.3.3.tgz"
"version" "5.3.3"
"data-urls@^2.0.0":
"integrity" "sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ=="
"resolved" "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz"
"version" "2.0.0"
dependencies:
"abab" "^2.0.3"
"whatwg-mimetype" "^2.3.0"
"whatwg-url" "^8.0.0"
"debug@^3.1.0":
"integrity" "sha1-clgLfpFF+zm2Z2+cXl+xALk0F5o="
"resolved" "https://registry.nlark.com/debug/download/debug-3.2.7.tgz?cache=0&sync_timestamp=1625374675284&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fdebug%2Fdownload%2Fdebug-3.2.7.tgz"
"version" "3.2.7"
dependencies:
"ms" "^2.1.1"
"debug@^4.0.1", "debug@^4.1.0", "debug@^4.1.1", "debug@4":
"integrity" "sha1-8KScGKyHeeMdSgxgKd+3aHPHQos="
"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"
"version" "4.3.2"
dependencies:
"ms" "2.1.2"
"debug@=3.1.0":
"integrity" "sha1-W7WgZyYotkFJVmuhaBnmFRjGcmE="
"resolved" "https://registry.nlark.com/debug/download/debug-3.1.0.tgz?cache=0&sync_timestamp=1625374675284&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fdebug%2Fdownload%2Fdebug-3.1.0.tgz"
"version" "3.1.0"
dependencies:
"ms" "2.0.0"
"debug@~3.1.0":
"integrity" "sha1-W7WgZyYotkFJVmuhaBnmFRjGcmE="
"resolved" "https://registry.nlark.com/debug/download/debug-3.1.0.tgz?cache=0&sync_timestamp=1625374675284&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fdebug%2Fdownload%2Fdebug-3.1.0.tgz"
"version" "3.1.0"
dependencies:
"ms" "2.0.0"
"decimal.js@^10.2.1":
"integrity" "sha512-V0pfhfr8suzyPGOx3nmq4aHqabehUZn6Ch9kyFpV79TGDTWFmHqUqXdabR7QHqxzrYolF4+tVmJhUG4OURg5dQ=="
"resolved" "https://registry.npmjs.org/decimal.js/-/decimal.js-10.3.1.tgz"
"version" "10.3.1"
"deep-equal@~1.0.1":
"integrity" "sha1-9dJgKStmDghO/0zbyfCK0yR0SLU="
"resolved" "https://registry.npm.taobao.org/deep-equal/download/deep-equal-1.0.1.tgz"
"version" "1.0.1"
"deep-is@^0.1.3", "deep-is@~0.1.3":
"integrity" "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ=="
"resolved" "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz"
"version" "0.1.4"
"deepmerge@^1.2.0":
"integrity" "sha1-EEmdhohEza1P7ghC34x/bwyVp1M="
"resolved" "https://registry.npm.taobao.org/deepmerge/download/deepmerge-1.5.2.tgz"
"version" "1.5.2"
"deepmerge@^4.2.2":
"integrity" "sha1-RNLqNnm49NT/ujPwPYZfwee/SVU="
"resolved" "https://registry.npm.taobao.org/deepmerge/download/deepmerge-4.2.2.tgz"
"version" "4.2.2"
"define-properties@^1.1.3":
"integrity" "sha1-z4jabL7ib+bbcJT2HYcMvYTO6fE="
"resolved" "https://registry.npm.taobao.org/define-properties/download/define-properties-1.1.3.tgz"
"version" "1.1.3"
dependencies:
"object-keys" "^1.0.12"
"delayed-stream@~1.0.0":
"integrity" "sha1-3zrhmayt+31ECqrgsp4icrJOxhk="
"resolved" "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz"
"version" "1.0.0"
"delegates@^1.0.0":
"integrity" "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o="
"resolved" "https://registry.npm.taobao.org/delegates/download/delegates-1.0.0.tgz"
"version" "1.0.0"
"denque@^1.4.1", "denque@^1.5.0":
"integrity" "sha1-dz3gaG/y2Owv+SkUMWpHtzscc94="
"resolved" "https://registry.npm.taobao.org/denque/download/denque-1.5.0.tgz"
"version" "1.5.0"
"depd@^2.0.0":
"integrity" "sha1-tpYWPMdXVg0JzyLMj60Vcbeedt8="
"resolved" "https://registry.npm.taobao.org/depd/download/depd-2.0.0.tgz"
"version" "2.0.0"
"depd@~1.1.2":
"integrity" "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak="
"resolved" "https://registry.npm.taobao.org/depd/download/depd-1.1.2.tgz"
"version" "1.1.2"
"depd@~2.0.0":
"integrity" "sha1-tpYWPMdXVg0JzyLMj60Vcbeedt8="
"resolved" "https://registry.npm.taobao.org/depd/download/depd-2.0.0.tgz"
"version" "2.0.0"
"destroy@^1.0.4":
"integrity" "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA="
"resolved" "https://registry.npm.taobao.org/destroy/download/destroy-1.0.4.tgz"
"version" "1.0.4"
"integrity" "sha1-0ZRyeOyFtT5MjKWY9geij6eFup4="
"resolved" "https://registry.nlark.com/devtools-protocol/download/devtools-protocol-0.0.818844.tgz"
"version" "0.0.818844"
"doctrine@^2.1.0":
"integrity" "sha1-XNAfwQFiG0LEzX9dGmYkNxbT850="
"resolved" "https://registry.npm.taobao.org/doctrine/download/doctrine-2.1.0.tgz"
"version" "2.1.0"
dependencies:
"esutils" "^2.0.2"
"doctrine@^3.0.0":
"integrity" "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w=="
"resolved" "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz"
"version" "3.0.0"
dependencies:
"esutils" "^2.0.2"
"dom-serializer@^1.0.1":
"integrity" "sha1-YgZDfTLO767HFhgDIwx6ILwbTZE="
"resolved" "https://registry.nlark.com/dom-serializer/download/dom-serializer-1.3.2.tgz?cache=0&sync_timestamp=1621256918158&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fdom-serializer%2Fdownload%2Fdom-serializer-1.3.2.tgz"
"version" "1.3.2"
dependencies:
"domelementtype" "^2.0.1"
"domhandler" "^4.2.0"
"entities" "^2.0.0"
"domelementtype@^2.0.1", "domelementtype@^2.2.0":
"integrity" "sha1-mgtsJ4LtahxzI9QiZxg9+b2LHVc="
"resolved" "https://registry.npm.taobao.org/domelementtype/download/domelementtype-2.2.0.tgz?cache=0&sync_timestamp=1617298545989&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fdomelementtype%2Fdownload%2Fdomelementtype-2.2.0.tgz"
"version" "2.2.0"
"domexception@^2.0.1":
"integrity" "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg=="
"resolved" "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz"
"version" "2.0.1"
dependencies:
"webidl-conversions" "^5.0.0"
"domhandler@^3.0.0":
"integrity" "sha1-bbfqRuRhfrFc+HXfaLK4UkzgA3o="
"resolved" "https://registry.npm.taobao.org/domhandler/download/domhandler-3.3.0.tgz?cache=0&sync_timestamp=1618564036965&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fdomhandler%2Fdownload%2Fdomhandler-3.3.0.tgz"
"version" "3.3.0"
dependencies:
"domelementtype" "^2.0.1"
"domhandler@^4.2.0":
"integrity" "sha1-+XaKXwNL5gqJonwuTQ9066DYsFk="
"resolved" "https://registry.npm.taobao.org/domhandler/download/domhandler-4.2.0.tgz?cache=0&sync_timestamp=1618564036965&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fdomhandler%2Fdownload%2Fdomhandler-4.2.0.tgz"
"version" "4.2.0"
dependencies:
"domelementtype" "^2.2.0"
"domutils@^2.0.0":
"integrity" "sha1-jrrwxB66/PVbC3LsMcVjI3EsVEI="
"resolved" "https://registry.nlark.com/domutils/download/domutils-2.7.0.tgz"
"version" "2.7.0"
dependencies:
"dom-serializer" "^1.0.1"
"domelementtype" "^2.2.0"
"domhandler" "^4.2.0"
"dottie@^2.0.0":
"integrity" "sha1-zJHAcmzjoFTr8RxV+8kqfyZt0VQ="
"resolved" "https://registry.npm.taobao.org/dottie/download/dottie-2.0.2.tgz"
"version" "2.0.2"
"double-ended-queue@^2.1.0-0":
"integrity" "sha1-ED01J/0xUo9AGIEwyEHv3XgmTlw="
"resolved" "https://registry.npm.taobao.org/double-ended-queue/download/double-ended-queue-2.1.0-0.tgz"
"version" "2.1.0-0"
"integrity" "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0="
"resolved" "https://registry.npm.taobao.org/ee-first/download/ee-first-1.1.1.tgz"
"version" "1.1.1"
"element-ui@^2.13.2":
"integrity" "sha1-VRCKuCo7zGRuewVwhxxIupYwBlI="
"resolved" "https://registry.nlark.com/element-ui/download/element-ui-2.15.3.tgz?cache=0&sync_timestamp=1624954448804&other_urls=https%3A%2F%2Fregistry.nlark.com%2Felement-ui%2Fdownload%2Felement-ui-2.15.3.tgz"
"version" "2.15.3"
dependencies:
"async-validator" "~1.8.1"
"babel-helper-vue-jsx-merge-props" "^2.0.0"
"deepmerge" "^1.2.0"
"normalize-wheel" "^1.0.1"
"resize-observer-polyfill" "^1.5.0"
"throttle-debounce" "^1.0.1"
"emoji-regex@^8.0.0":
"integrity" "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="
"resolved" "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz"
"version" "8.0.0"
"encodeurl@^1.0.2":
"integrity" "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k="
"resolved" "https://registry.npm.taobao.org/encodeurl/download/encodeurl-1.0.2.tgz"
"version" "1.0.2"
"end-of-stream@^1.1.0", "end-of-stream@^1.4.1":
"integrity" "sha1-WuZKX0UFe682JuwU2gyl5LJDHrA="
"resolved" "https://registry.npm.taobao.org/end-of-stream/download/end-of-stream-1.4.4.tgz"
"version" "1.4.4"
dependencies:
"once" "^1.4.0"
"enquirer@^2.3.5":
"integrity" "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg=="
"resolved" "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz"
"version" "2.3.6"
dependencies:
"ansi-colors" "^4.1.1"
"entities@^2.0.0":
"integrity" "sha1-CY3JDruD2N/6CJ1VJWs1HTTE2lU="
"resolved" "https://registry.npm.taobao.org/entities/download/entities-2.2.0.tgz"
"version" "2.2.0"
"es-abstract@^1.18.0-next.1", "es-abstract@^1.18.0-next.2", "es-abstract@^1.18.2":
"integrity" "sha1-JcTDOAonqiA8RLK2hbupTaMbY+A="
"resolved" "https://registry.nlark.com/es-abstract/download/es-abstract-1.18.3.tgz?cache=0&sync_timestamp=1622157901871&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fes-abstract%2Fdownload%2Fes-abstract-1.18.3.tgz"
"version" "1.18.3"
dependencies:
"call-bind" "^1.0.2"
"es-to-primitive" "^1.2.1"
"function-bind" "^1.1.1"
"get-intrinsic" "^1.1.1"
"has" "^1.0.3"
"has-symbols" "^1.0.2"
"is-callable" "^1.2.3"
"is-negative-zero" "^2.0.1"
"is-regex" "^1.1.3"
"is-string" "^1.0.6"
"object-inspect" "^1.10.3"
"object-keys" "^1.1.1"
"object.assign" "^4.1.2"
"string.prototype.trimend" "^1.0.4"
"string.prototype.trimstart" "^1.0.4"
"unbox-primitive" "^1.0.1"
"es-to-primitive@^1.2.1":
"integrity" "sha1-5VzUyc3BiLzvsDs2bHNjI/xciYo="
"resolved" "https://registry.npm.taobao.org/es-to-primitive/download/es-to-primitive-1.2.1.tgz"
"version" "1.2.1"
dependencies:
"is-callable" "^1.1.4"
"is-date-object" "^1.0.1"
"is-symbol" "^1.0.2"
"es6-promise@^4.0.3":
"integrity" "sha1-TrIVlMlyvEBVPSduUQU5FD21Pgo="
"resolved" "https://registry.npm.taobao.org/es6-promise/download/es6-promise-4.2.8.tgz"
"version" "4.2.8"
"es6-promisify@^5.0.0":
"integrity" "sha1-UQnWLz5W6pZ8S2NQWu8IKRyKUgM="
"resolved" "https://registry.nlark.com/es6-promisify/download/es6-promisify-5.0.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fes6-promisify%2Fdownload%2Fes6-promisify-5.0.0.tgz"
"version" "5.0.0"
dependencies:
"es6-promise" "^4.0.3"
"escape-html@^1.0.3":
"integrity" "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg="
"resolved" "https://registry.npm.taobao.org/escape-html/download/escape-html-1.0.3.tgz"
"version" "1.0.3"
"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"
"escape-string-regexp@^4.0.0":
"integrity" "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA=="
"resolved" "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz"
"version" "4.0.0"
"escodegen@^1.8.1":
"integrity" "sha1-TnuB+6YVgdyXWC7XjKt/Do1j9QM="
"resolved" "https://registry.npm.taobao.org/escodegen/download/escodegen-1.14.3.tgz"
"version" "1.14.3"
dependencies:
"esprima" "^4.0.1"
"estraverse" "^4.2.0"
"esutils" "^2.0.2"
"optionator" "^0.8.1"
optionalDependencies:
"source-map" "~0.6.1"
"escodegen@^2.0.0":
"integrity" "sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw=="
"resolved" "https://registry.npmjs.org/escodegen/-/escodegen-2.0.0.tgz"
"version" "2.0.0"
dependencies:
"esprima" "^4.0.1"
"estraverse" "^5.2.0"
"esutils" "^2.0.2"
"optionator" "^0.8.1"
optionalDependencies:
"source-map" "~0.6.1"
"eslint-plugin-react@^7.17.0":
"integrity" "sha1-6t7fo1Gm82tJCqF/T6mxToQrnrQ="
"resolved" "https://registry.nlark.com/eslint-plugin-react/download/eslint-plugin-react-7.24.0.tgz?cache=0&sync_timestamp=1622319784610&other_urls=https%3A%2F%2Fregistry.nlark.com%2Feslint-plugin-react%2Fdownload%2Feslint-plugin-react-7.24.0.tgz"
"version" "7.24.0"
dependencies:
"array-includes" "^3.1.3"
"array.prototype.flatmap" "^1.2.4"
"doctrine" "^2.1.0"
"has" "^1.0.3"
"jsx-ast-utils" "^2.4.1 || ^3.0.0"
"minimatch" "^3.0.4"
"object.entries" "^1.1.4"
"object.fromentries" "^2.0.4"
"object.values" "^1.1.4"
"prop-types" "^15.7.2"
"resolve" "^2.0.0-next.3"
"string.prototype.matchall" "^4.0.5"
"eslint-scope@^5.1.1":
"integrity" "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw=="
"resolved" "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz"
"version" "5.1.1"
dependencies:
"esrecurse" "^4.3.0"
"estraverse" "^4.1.1"
"eslint-utils@^2.1.0":
"integrity" "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg=="
"resolved" "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz"
"version" "2.1.0"
dependencies:
"eslint-visitor-keys" "^1.1.0"
"eslint-visitor-keys@^1.0.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" "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw=="
"resolved" "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz"
"version" "2.1.0"
"eslint@^3 || ^4 || ^5 || ^6 || ^7", "eslint@>= 4.12.1":
"integrity" "sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA=="
"resolved" "https://registry.npmjs.org/eslint/-/eslint-7.32.0.tgz"
"version" "7.32.0"
dependencies:
"@babel/code-frame" "7.12.11"