forked from SewerKing/y2t
-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
2680 lines (2291 loc) · 102 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
"@apidevtools/[email protected]":
"integrity" "sha1-1yD5JW42CWISgFhPK0euFlNZJos="
"resolved" "https://registry.nlark.com/@apidevtools/json-schema-ref-parser/download/@apidevtools/json-schema-ref-parser-9.0.9.tgz"
"version" "9.0.9"
dependencies:
"@jsdevtools/ono" "^7.1.3"
"@types/json-schema" "^7.0.6"
"call-me-maybe" "^1.0.1"
"js-yaml" "^4.1.0"
"@babel/code-frame@^7.10.4":
"integrity" "sha1-I7CNdA6D9JxeWZRfvxtD6Au/Tts="
"resolved" "https://registry.nlark.com/@babel/code-frame/download/@babel/code-frame-7.14.5.tgz?cache=0&sync_timestamp=1623280394200&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcode-frame%2Fdownload%2F%40babel%2Fcode-frame-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/highlight" "^7.14.5"
"@babel/[email protected]":
"integrity" "sha1-9K1DWqJj25NbjxDyxVLSP7cWpj8="
"resolved" "https://registry.nlark.com/@babel/code-frame/download/@babel/code-frame-7.12.11.tgz?cache=0&sync_timestamp=1623280394200&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fcode-frame%2Fdownload%2F%40babel%2Fcode-frame-7.12.11.tgz"
"version" "7.12.11"
dependencies:
"@babel/highlight" "^7.10.4"
"@babel/helper-validator-identifier@^7.14.5":
"integrity" "sha1-Mr4zp1bynieKDWRPoIosng+Io0w="
"resolved" "https://registry.nlark.com/@babel/helper-validator-identifier/download/@babel/helper-validator-identifier-7.14.8.tgz?cache=0&sync_timestamp=1626804360687&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-validator-identifier%2Fdownload%2F%40babel%2Fhelper-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"
"@eslint/eslintrc@^0.4.3":
"integrity" "sha1-nkKYHvA1vrPdSa3ResuW6P9vOUw="
"resolved" "https://registry.nlark.com/@eslint/eslintrc/download/@eslint/eslintrc-0.4.3.tgz?cache=0&sync_timestamp=1626557132800&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40eslint%2Feslintrc%2Fdownload%2F%40eslint%2Feslintrc-0.4.3.tgz"
"version" "0.4.3"
dependencies:
"ajv" "^6.12.4"
"debug" "^4.1.1"
"espree" "^7.3.0"
"globals" "^13.9.0"
"ignore" "^4.0.6"
"import-fresh" "^3.2.1"
"js-yaml" "^3.13.1"
"minimatch" "^3.0.4"
"strip-json-comments" "^3.1.1"
"@humanwhocodes/config-array@^0.5.0":
"integrity" "sha1-FAeWfUxu7Nc4j4Os8er00Mbljvk="
"resolved" "https://registry.nlark.com/@humanwhocodes/config-array/download/@humanwhocodes/config-array-0.5.0.tgz?cache=0&sync_timestamp=1625264021699&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40humanwhocodes%2Fconfig-array%2Fdownload%2F%40humanwhocodes%2Fconfig-array-0.5.0.tgz"
"version" "0.5.0"
dependencies:
"@humanwhocodes/object-schema" "^1.2.0"
"debug" "^4.1.1"
"minimatch" "^3.0.4"
"@humanwhocodes/object-schema@^1.2.0":
"integrity" "sha1-h956+cIxgm/daKxyWPd8Qp4OX88="
"resolved" "https://registry.nlark.com/@humanwhocodes/object-schema/download/@humanwhocodes/object-schema-1.2.0.tgz?cache=0&sync_timestamp=1625264051240&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40humanwhocodes%2Fobject-schema%2Fdownload%2F%40humanwhocodes%2Fobject-schema-1.2.0.tgz"
"version" "1.2.0"
"@jsdevtools/ono@^7.1.3":
"integrity" "sha1-nfA7vXxpalxYiFw0qgbaQchUN5Y="
"resolved" "https://registry.npm.taobao.org/@jsdevtools/ono/download/@jsdevtools/ono-7.1.3.tgz"
"version" "7.1.3"
"@mstssk/cleandir@^1.0.1":
"integrity" "sha1-AJKEV4D8U5BB0WAlUpRe/i9Bbr8="
"resolved" "https://registry.nlark.com/@mstssk/cleandir/download/@mstssk/cleandir-1.2.0.tgz"
"version" "1.2.0"
"@nodelib/[email protected]":
"integrity" "sha1-dhnC6yGyVIP20WdUi0z9WnSIw9U="
"resolved" "https://registry.nlark.com/@nodelib/fs.scandir/download/@nodelib/fs.scandir-2.1.5.tgz"
"version" "2.1.5"
dependencies:
"@nodelib/fs.stat" "2.0.5"
"run-parallel" "^1.1.9"
"@nodelib/fs.stat@^2.0.2", "@nodelib/[email protected]":
"integrity" "sha1-W9Jir5Tp0lvR5xsF3u1Eh2oiLos="
"resolved" "https://registry.nlark.com/@nodelib/fs.stat/download/@nodelib/fs.stat-2.0.5.tgz?cache=0&sync_timestamp=1622792655362&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40nodelib%2Ffs.stat%2Fdownload%2F%40nodelib%2Ffs.stat-2.0.5.tgz"
"version" "2.0.5"
"@nodelib/fs.walk@^1.2.3":
"integrity" "sha1-6Vc36LtnRt3t9pxVaVNJTxlv5po="
"resolved" "https://registry.nlark.com/@nodelib/fs.walk/download/@nodelib/fs.walk-1.2.8.tgz?cache=0&sync_timestamp=1625769815389&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40nodelib%2Ffs.walk%2Fdownload%2F%40nodelib%2Ffs.walk-1.2.8.tgz"
"version" "1.2.8"
dependencies:
"@nodelib/fs.scandir" "2.1.5"
"fastq" "^1.6.0"
"@rollup/plugin-alias@^3.1.2":
"integrity" "sha1-R3dPT/DqtZN/ess5LPK4mSHwO30="
"resolved" "https://registry.nlark.com/@rollup/plugin-alias/download/@rollup/plugin-alias-3.1.4.tgz"
"version" "3.1.4"
dependencies:
"slash" "^3.0.0"
"@rollup/plugin-json@^4.1.0":
"integrity" "sha1-VOCYZ65pY8WThE2L16nHGClElvM="
"resolved" "https://registry.npm.taobao.org/@rollup/plugin-json/download/@rollup/plugin-json-4.1.0.tgz"
"version" "4.1.0"
dependencies:
"@rollup/pluginutils" "^3.0.8"
"@rollup/plugin-node-resolve@^13.0.0":
"integrity" "sha1-sQIi9BRaAZdArLdzhAITDYSGYMA="
"resolved" "https://registry.nlark.com/@rollup/plugin-node-resolve/download/@rollup/plugin-node-resolve-13.0.4.tgz?cache=0&sync_timestamp=1627164924735&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40rollup%2Fplugin-node-resolve%2Fdownload%2F%40rollup%2Fplugin-node-resolve-13.0.4.tgz"
"version" "13.0.4"
dependencies:
"@rollup/pluginutils" "^3.1.0"
"@types/resolve" "1.17.1"
"builtin-modules" "^3.1.0"
"deepmerge" "^4.2.2"
"is-module" "^1.0.0"
"resolve" "^1.19.0"
"@rollup/pluginutils@^3.0.8", "@rollup/pluginutils@^3.1.0":
"integrity" "sha1-cGtFJO5tyLEDs8mVUz5a1oDAK5s="
"resolved" "https://registry.nlark.com/@rollup/pluginutils/download/@rollup/pluginutils-3.1.0.tgz?cache=0&sync_timestamp=1626393703548&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40rollup%2Fpluginutils%2Fdownload%2F%40rollup%2Fpluginutils-3.1.0.tgz"
"version" "3.1.0"
dependencies:
"@types/estree" "0.0.39"
"estree-walker" "^1.0.1"
"picomatch" "^2.2.2"
"@rollup/pluginutils@^4.1.0":
"integrity" "sha1-HU2obdTt7RVlalfZM/2iuaCNR+w="
"resolved" "https://registry.nlark.com/@rollup/pluginutils/download/@rollup/pluginutils-4.1.1.tgz?cache=0&sync_timestamp=1626393703548&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40rollup%2Fpluginutils%2Fdownload%2F%40rollup%2Fpluginutils-4.1.1.tgz"
"version" "4.1.1"
dependencies:
"estree-walker" "^2.0.1"
"picomatch" "^2.2.2"
"@tsconfig/node10@^1.0.7":
"integrity" "sha1-weToDW+WT77LM1nEO9SLQPfK2tk="
"resolved" "https://registry.nlark.com/@tsconfig/node10/download/@tsconfig/node10-1.0.8.tgz?cache=0&sync_timestamp=1623230092238&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40tsconfig%2Fnode10%2Fdownload%2F%40tsconfig%2Fnode10-1.0.8.tgz"
"version" "1.0.8"
"@tsconfig/node12@^1.0.7":
"integrity" "sha1-YsH23uLr2a6tgNw6+laBDljhoEw="
"resolved" "https://registry.nlark.com/@tsconfig/node12/download/@tsconfig/node12-1.0.9.tgz?cache=0&sync_timestamp=1624076106869&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40tsconfig%2Fnode12%2Fdownload%2F%40tsconfig%2Fnode12-1.0.9.tgz"
"version" "1.0.9"
"@tsconfig/node14@^1.0.0":
"integrity" "sha1-lfLRZ/+5uNIGiwsjUwL6/U33EfI="
"resolved" "https://registry.nlark.com/@tsconfig/node14/download/@tsconfig/node14-1.0.1.tgz"
"version" "1.0.1"
"@tsconfig/node16@^1.0.1":
"integrity" "sha1-Qjx3h30Fadsg4fyAiFrEEYMUAQ4="
"resolved" "https://registry.nlark.com/@tsconfig/node16/download/@tsconfig/node16-1.0.2.tgz?cache=0&sync_timestamp=1626840702633&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40tsconfig%2Fnode16%2Fdownload%2F%40tsconfig%2Fnode16-1.0.2.tgz"
"version" "1.0.2"
"@types/[email protected]":
"integrity" "sha1-4Xfmme4bjCLSMXTKqnQiZEOJUJ8="
"resolved" "https://registry.nlark.com/@types/estree/download/@types/estree-0.0.39.tgz"
"version" "0.0.39"
"@types/fs-extra@^8.0.1":
"integrity" "sha1-cSXMLkvdm9L8gwBf/bHQugDMph8="
"resolved" "https://registry.nlark.com/@types/fs-extra/download/@types/fs-extra-8.1.2.tgz?cache=0&sync_timestamp=1625605304928&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Ffs-extra%2Fdownload%2F%40types%2Ffs-extra-8.1.2.tgz"
"version" "8.1.2"
dependencies:
"@types/node" "*"
"@types/glob@*", "@types/glob@^7.1.1":
"integrity" "sha1-6lniHS7lxReRTLS8jkFTuZ5WZnI="
"resolved" "https://registry.nlark.com/@types/glob/download/@types/glob-7.1.4.tgz"
"version" "7.1.4"
dependencies:
"@types/minimatch" "*"
"@types/node" "*"
"@types/inquirer@^7.3.2":
"integrity" "sha1-NdLvTZjdQv7rThJWzeufE/RX1CA="
"resolved" "https://registry.nlark.com/@types/inquirer/download/@types/inquirer-7.3.2.tgz"
"version" "7.3.2"
dependencies:
"@types/through" "*"
"rxjs" "^6.4.0"
"@types/json-schema@^7.0.6", "@types/json-schema@^7.0.7":
"integrity" "sha1-7fG/Hb9OBEE8qOWxezt9fVS1mBg="
"resolved" "https://registry.nlark.com/@types/json-schema/download/@types/json-schema-7.0.8.tgz?cache=0&sync_timestamp=1625608069156&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fjson-schema%2Fdownload%2F%40types%2Fjson-schema-7.0.8.tgz"
"version" "7.0.8"
"@types/json5@^0.0.29":
"integrity" "sha1-7ihweulOEdK4J7y+UnC86n8+ce4="
"resolved" "https://registry.nlark.com/@types/json5/download/@types/json5-0.0.29.tgz"
"version" "0.0.29"
"@types/lodash@^4.14.168":
"integrity" "sha1-8Bs6X+NJnjS2IsNipGpgn9sjVzs="
"resolved" "https://registry.nlark.com/@types/lodash/download/@types/lodash-4.14.171.tgz?cache=0&sync_timestamp=1625609589008&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Flodash%2Fdownload%2F%40types%2Flodash-4.14.171.tgz"
"version" "4.14.171"
"@types/minimatch@*":
"integrity" "sha1-EAHMXmo3BLg8I2An538vWOoBD0A="
"resolved" "https://registry.nlark.com/@types/minimatch/download/@types/minimatch-3.0.5.tgz?cache=0&sync_timestamp=1625616331953&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fminimatch%2Fdownload%2F%40types%2Fminimatch-3.0.5.tgz"
"version" "3.0.5"
"@types/multi-progress@^2.0.3":
"integrity" "sha1-JZ0FFo/581D3NGNGIYeEUm+Dh5k="
"resolved" "https://registry.nlark.com/@types/multi-progress/download/@types/multi-progress-2.0.3.tgz"
"version" "2.0.3"
dependencies:
"@types/node" "*"
"@types/progress" "*"
"@types/nedb@^1.8.11":
"integrity" "sha1-WXuxJN2vFgOcbUePSrwKjyAGsTQ="
"resolved" "https://registry.nlark.com/@types/nedb/download/@types/nedb-1.8.12.tgz"
"version" "1.8.12"
dependencies:
"@types/node" "*"
"@types/node@*":
"integrity" "sha1-dNvyVPs3VVGp0qcfr2udvCF43FM="
"resolved" "https://registry.nlark.com/@types/node/download/@types/node-15.14.0.tgz?cache=0&sync_timestamp=1627257813519&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fnode%2Fdownload%2F%40types%2Fnode-15.14.0.tgz"
"version" "15.14.0"
"@types/prettier@^2.1.5":
"integrity" "sha1-/IwoJeTtIUJHO0qBBk5uCBRj0bM="
"resolved" "https://registry.nlark.com/@types/prettier/download/@types/prettier-2.3.2.tgz"
"version" "2.3.2"
"@types/progress@*", "@types/progress@^2.0.4":
"integrity" "sha1-AfjrBqX2vjlrgdGaIPJzzqEe+bY="
"resolved" "https://registry.nlark.com/@types/progress/download/@types/progress-2.0.4.tgz"
"version" "2.0.4"
dependencies:
"@types/node" "*"
"@types/[email protected]":
"integrity" "sha1-Ov1q2JZ8d+Q3bFmKgt3Vj0bsRdY="
"resolved" "https://registry.nlark.com/@types/resolve/download/@types/resolve-1.17.1.tgz"
"version" "1.17.1"
dependencies:
"@types/node" "*"
"@types/single-line-log@^1.1.0":
"integrity" "sha1-fm/E6OeF9fWrERV0GN8mhKIe2XE="
"resolved" "https://registry.nlark.com/@types/single-line-log/download/@types/single-line-log-1.1.0.tgz"
"version" "1.1.0"
"@types/through@*":
"integrity" "sha1-4OQs536Je9aurW9upirrE1uKOJU="
"resolved" "https://registry.nlark.com/@types/through/download/@types/through-0.0.30.tgz"
"version" "0.0.30"
dependencies:
"@types/node" "*"
"@typescript-eslint/eslint-plugin@^4.28.1":
"integrity" "sha1-5zyMq78/CN7g4b2mXtTmIq6PiSE="
"resolved" "https://registry.nlark.com/@typescript-eslint/eslint-plugin/download/@typescript-eslint/eslint-plugin-4.28.4.tgz?cache=0&sync_timestamp=1626715757255&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40typescript-eslint%2Feslint-plugin%2Fdownload%2F%40typescript-eslint%2Feslint-plugin-4.28.4.tgz"
"version" "4.28.4"
dependencies:
"@typescript-eslint/experimental-utils" "4.28.4"
"@typescript-eslint/scope-manager" "4.28.4"
"debug" "^4.3.1"
"functional-red-black-tree" "^1.0.1"
"regexpp" "^3.1.0"
"semver" "^7.3.5"
"tsutils" "^3.21.0"
"@typescript-eslint/[email protected]":
"integrity" "sha1-nHDDXr7Qh6XHD7Ds2Ql5VHt/7JY="
"resolved" "https://registry.nlark.com/@typescript-eslint/experimental-utils/download/@typescript-eslint/experimental-utils-4.28.4.tgz"
"version" "4.28.4"
dependencies:
"@types/json-schema" "^7.0.7"
"@typescript-eslint/scope-manager" "4.28.4"
"@typescript-eslint/types" "4.28.4"
"@typescript-eslint/typescript-estree" "4.28.4"
"eslint-scope" "^5.1.1"
"eslint-utils" "^3.0.0"
"@typescript-eslint/parser@^4.0.0", "@typescript-eslint/parser@^4.28.1":
"integrity" "sha1-vEYtwnea/u/c9JCCUWr9w+e5b6s="
"resolved" "https://registry.nlark.com/@typescript-eslint/parser/download/@typescript-eslint/parser-4.28.4.tgz?cache=0&sync_timestamp=1626715756323&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40typescript-eslint%2Fparser%2Fdownload%2F%40typescript-eslint%2Fparser-4.28.4.tgz"
"version" "4.28.4"
dependencies:
"@typescript-eslint/scope-manager" "4.28.4"
"@typescript-eslint/types" "4.28.4"
"@typescript-eslint/typescript-estree" "4.28.4"
"debug" "^4.3.1"
"@typescript-eslint/[email protected]":
"integrity" "sha1-vbzptqZE4092e9aLwXuxQ1O5/n8="
"resolved" "https://registry.nlark.com/@typescript-eslint/scope-manager/download/@typescript-eslint/scope-manager-4.28.4.tgz?cache=0&sync_timestamp=1626715953543&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40typescript-eslint%2Fscope-manager%2Fdownload%2F%40typescript-eslint%2Fscope-manager-4.28.4.tgz"
"version" "4.28.4"
dependencies:
"@typescript-eslint/types" "4.28.4"
"@typescript-eslint/visitor-keys" "4.28.4"
"@typescript-eslint/[email protected]":
"integrity" "sha1-Qay9ebWBa3wN11MKQ9l9Ag0660I="
"resolved" "https://registry.nlark.com/@typescript-eslint/types/download/@typescript-eslint/types-4.28.4.tgz?cache=0&sync_timestamp=1626715941479&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40typescript-eslint%2Ftypes%2Fdownload%2F%40typescript-eslint%2Ftypes-4.28.4.tgz"
"version" "4.28.4"
"@typescript-eslint/[email protected]":
"integrity" "sha1-JS5oYyeNwHJyRL6eNx6zUkHEbQA="
"resolved" "https://registry.nlark.com/@typescript-eslint/typescript-estree/download/@typescript-eslint/typescript-estree-4.28.4.tgz"
"version" "4.28.4"
dependencies:
"@typescript-eslint/types" "4.28.4"
"@typescript-eslint/visitor-keys" "4.28.4"
"debug" "^4.3.1"
"globby" "^11.0.3"
"is-glob" "^4.0.1"
"semver" "^7.3.5"
"tsutils" "^3.21.0"
"@typescript-eslint/[email protected]":
"integrity" "sha1-ktrP78zWdRy7CpZPBmg7/XLQxNM="
"resolved" "https://registry.nlark.com/@typescript-eslint/visitor-keys/download/@typescript-eslint/visitor-keys-4.28.4.tgz?cache=0&sync_timestamp=1626715965165&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40typescript-eslint%2Fvisitor-keys%2Fdownload%2F%40typescript-eslint%2Fvisitor-keys-4.28.4.tgz"
"version" "4.28.4"
dependencies:
"@typescript-eslint/types" "4.28.4"
"eslint-visitor-keys" "^2.0.0"
"acorn-jsx@^5.3.1":
"integrity" "sha1-ftW7VZCLOy8bxVxq8WU7rafweTc="
"resolved" "https://registry.nlark.com/acorn-jsx/download/acorn-jsx-5.3.2.tgz"
"version" "5.3.2"
"acorn@^6.0.0 || ^7.0.0 || ^8.0.0", "acorn@^7.4.0":
"integrity" "sha1-/q7SVZc9LndVW4PbwIhRpsY1IPo="
"resolved" "https://registry.nlark.com/acorn/download/acorn-7.4.1.tgz"
"version" "7.4.1"
"ajv@^6.10.0", "ajv@^6.12.4":
"integrity" "sha1-uvWmLoArB9l3A0WG+MO69a3ybfQ="
"resolved" "https://registry.nlark.com/ajv/download/ajv-6.12.6.tgz?cache=0&sync_timestamp=1626380134544&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fajv%2Fdownload%2Fajv-6.12.6.tgz"
"version" "6.12.6"
dependencies:
"fast-deep-equal" "^3.1.1"
"fast-json-stable-stringify" "^2.0.0"
"json-schema-traverse" "^0.4.1"
"uri-js" "^4.2.2"
"ajv@^8.0.1":
"integrity" "sha1-L7ReDl/LwIEzJsHD2lNdGIG7BXE="
"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"
"version" "8.6.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" "sha1-y7muJWv3UK8eqzRPIpqif+lLo0g="
"resolved" "https://registry.nlark.com/ansi-colors/download/ansi-colors-4.1.1.tgz"
"version" "4.1.1"
"ansi-escapes@^4.2.1":
"integrity" "sha1-ayKR0dt9mLZSHV8e+kLQ86n+tl4="
"resolved" "https://registry.nlark.com/ansi-escapes/download/ansi-escapes-4.3.2.tgz?cache=0&sync_timestamp=1618847144938&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fansi-escapes%2Fdownload%2Fansi-escapes-4.3.2.tgz"
"version" "4.3.2"
dependencies:
"type-fest" "^0.21.3"
"ansi-regex@^2.0.0", "ansi-regex@^2.1.1":
"integrity" "sha1-w7M6te42DYbg5ijwRorn7yfWVN8="
"resolved" "https://registry.nlark.com/ansi-regex/download/ansi-regex-2.1.1.tgz"
"version" "2.1.1"
"ansi-regex@^5.0.0":
"integrity" "sha1-OIU59VF5vzkznIGvMKZU1p+Hy3U="
"resolved" "https://registry.nlark.com/ansi-regex/download/ansi-regex-5.0.0.tgz"
"version" "5.0.0"
"ansi-styles@^3.2.1":
"integrity" "sha1-QfuyAkPlCxK+DwS43tvwdSDOhB0="
"resolved" "https://registry.nlark.com/ansi-styles/download/ansi-styles-3.2.1.tgz"
"version" "3.2.1"
dependencies:
"color-convert" "^1.9.0"
"ansi-styles@^4.0.0":
"integrity" "sha1-7dgDYornHATIWuegkG7a00tkiTc="
"resolved" "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz"
"version" "4.3.0"
dependencies:
"color-convert" "^2.0.1"
"ansi-styles@^4.1.0":
"integrity" "sha1-7dgDYornHATIWuegkG7a00tkiTc="
"resolved" "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz"
"version" "4.3.0"
dependencies:
"color-convert" "^2.0.1"
"any-promise@^1.0.0":
"integrity" "sha1-q8av7tzqUugJzcA3au0845Y10X8="
"resolved" "https://registry.nlark.com/any-promise/download/any-promise-1.3.0.tgz"
"version" "1.3.0"
"arg@^4.1.0":
"integrity" "sha1-Jp/HrVuOQstjyJbVZmAXJhwUQIk="
"resolved" "https://registry.npm.taobao.org/arg/download/arg-4.1.3.tgz?cache=0&sync_timestamp=1605574972657&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Farg%2Fdownload%2Farg-4.1.3.tgz"
"version" "4.1.3"
"argparse@^1.0.7":
"integrity" "sha1-vNZ5HqWuCXJeF+WtmIE0zUCz2RE="
"resolved" "https://registry.nlark.com/argparse/download/argparse-1.0.10.tgz"
"version" "1.0.10"
dependencies:
"sprintf-js" "~1.0.2"
"argparse@^2.0.1":
"integrity" "sha1-JG9Q88p4oyQPbJl+ipvR6sSeSzg="
"resolved" "https://registry.nlark.com/argparse/download/argparse-2.0.1.tgz"
"version" "2.0.1"
"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?cache=0&sync_timestamp=1613857733971&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Farray-includes%2Fdownload%2Farray-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-union@^2.1.0":
"integrity" "sha1-t5hCCtvrHego2ErNii4j0+/oXo0="
"resolved" "https://registry.npm.taobao.org/array-union/download/array-union-2.1.0.tgz"
"version" "2.1.0"
"array.prototype.flat@^1.2.4":
"integrity" "sha1-bvY4tDMSvUAbTGGZ/ex+LcnpoSM="
"resolved" "https://registry.npm.taobao.org/array.prototype.flat/download/array.prototype.flat-1.2.4.tgz?cache=0&sync_timestamp=1605688512391&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Farray.prototype.flat%2Fdownload%2Farray.prototype.flat-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"
"astral-regex@^2.0.0":
"integrity" "sha1-SDFDxWeu7UeFdZwIZXhtx319LjE="
"resolved" "https://registry.nlark.com/astral-regex/download/astral-regex-2.0.0.tgz"
"version" "2.0.0"
"integrity" "sha1-trvgsGdLnXGXCMo43owjfLUmw9E="
"resolved" "https://registry.nlark.com/async/download/async-0.2.10.tgz"
"version" "0.2.10"
"axios@^0.21.1":
"integrity" "sha1-IlY0gZYvTWvemnbVFu8OXTwJsrg="
"resolved" "https://registry.nlark.com/axios/download/axios-0.21.1.tgz"
"version" "0.21.1"
dependencies:
"follow-redirects" "^1.10.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.nlark.com/base64-js/download/base64-js-1.5.1.tgz"
"version" "1.5.1"
"integrity" "sha1-fbs7IQ/coIJFDa0jNMMErzm9x4Q="
"resolved" "https://registry.npm.taobao.org/binary-search-tree/download/binary-search-tree-0.2.5.tgz"
"version" "0.2.5"
dependencies:
"underscore" "~1.4.4"
"bl@^4.1.0":
"integrity" "sha1-RRU1JkGCvsL7vIOmKrmM8R2fezo="
"resolved" "https://registry.npm.taobao.org/bl/download/bl-4.1.0.tgz?cache=0&sync_timestamp=1617381897308&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.nlark.com/brace-expansion/download/brace-expansion-1.1.11.tgz"
"version" "1.1.11"
dependencies:
"balanced-match" "^1.0.0"
"concat-map" "0.0.1"
"braces@^3.0.1":
"integrity" "sha1-NFThpGLujVmeI23zNs2epPiv4Qc="
"resolved" "https://registry.npm.taobao.org/braces/download/braces-3.0.2.tgz"
"version" "3.0.2"
dependencies:
"fill-range" "^7.0.1"
"buffer-from@^1.0.0":
"integrity" "sha1-MnE7wCj3XAL9txDXx7zsHyxgcO8="
"resolved" "https://registry.nlark.com/buffer-from/download/buffer-from-1.1.1.tgz"
"version" "1.1.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"
"builtin-modules@^3.1.0":
"integrity" "sha1-RdXbmefuXmvE82LgCL+RerUEmIc="
"resolved" "https://registry.npm.taobao.org/builtin-modules/download/builtin-modules-3.2.0.tgz"
"version" "3.2.0"
"call-bind@^1.0.0", "call-bind@^1.0.2":
"integrity" "sha1-sdTonmiBGcPJqQOtMKuy9qkZvjw="
"resolved" "https://registry.nlark.com/call-bind/download/call-bind-1.0.2.tgz"
"version" "1.0.2"
dependencies:
"function-bind" "^1.1.1"
"get-intrinsic" "^1.0.2"
"call-me-maybe@^1.0.1":
"integrity" "sha1-JtII6onje1y95gJQoV8DHBak1ms="
"resolved" "https://registry.npm.taobao.org/call-me-maybe/download/call-me-maybe-1.0.1.tgz"
"version" "1.0.1"
"callsites@^3.0.0":
"integrity" "sha1-s2MKvYlDQy9Us/BRkjjjPNffL3M="
"resolved" "https://registry.npm.taobao.org/callsites/download/callsites-3.1.0.tgz"
"version" "3.1.0"
"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", "chalk@^4.1.0", "chalk@^4.1.1":
"integrity" "sha1-yAs/qyi/Y3HmhjMl7uZ+YYt35q0="
"resolved" "https://registry.nlark.com/chalk/download/chalk-4.1.1.tgz?cache=0&sync_timestamp=1618995367379&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-4.1.1.tgz"
"version" "4.1.1"
dependencies:
"ansi-styles" "^4.1.0"
"supports-color" "^7.1.0"
"chardet@^0.7.0":
"integrity" "sha1-kAlISfCTfy7twkJdDSip5fDLrZ4="
"resolved" "https://registry.nlark.com/chardet/download/chardet-0.7.0.tgz"
"version" "0.7.0"
"cli-color@^2.0.0":
"integrity" "sha1-Eez7WKeSeM9gNaYMVOM4+dg3iXw="
"resolved" "https://registry.npm.taobao.org/cli-color/download/cli-color-2.0.0.tgz"
"version" "2.0.0"
dependencies:
"ansi-regex" "^2.1.1"
"d" "^1.0.1"
"es5-ext" "^0.10.51"
"es6-iterator" "^2.0.3"
"memoizee" "^0.4.14"
"timers-ext" "^0.1.7"
"cli-cursor@^3.1.0":
"integrity" "sha1-JkMFp65JDR0Dvwybp8kl0XU68wc="
"resolved" "https://registry.npm.taobao.org/cli-cursor/download/cli-cursor-3.1.0.tgz"
"version" "3.1.0"
dependencies:
"restore-cursor" "^3.1.0"
"cli-spinners@^2.5.0":
"integrity" "sha1-NsfcmPtqmna9YjjsP3fiQlYn6Tk="
"resolved" "https://registry.nlark.com/cli-spinners/download/cli-spinners-2.6.0.tgz"
"version" "2.6.0"
"cli-width@^3.0.0":
"integrity" "sha1-ovSEN6LKqaIkNueUvwceyeYc7fY="
"resolved" "https://registry.nlark.com/cli-width/download/cli-width-3.0.0.tgz"
"version" "3.0.0"
"clone@^1.0.2":
"integrity" "sha1-2jCcwmPfFZlMaIypAheco8fNfH4="
"resolved" "https://registry.nlark.com/clone/download/clone-1.0.4.tgz"
"version" "1.0.4"
"code-point-at@^1.0.0":
"integrity" "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c="
"resolved" "https://registry.npm.taobao.org/code-point-at/download/code-point-at-1.1.0.tgz"
"version" "1.1.0"
"color-convert@^1.9.0":
"integrity" "sha1-u3GFBpDh8TZWfeYp0tVHHe2kweg="
"resolved" "https://registry.npm.taobao.org/color-convert/download/color-convert-1.9.3.tgz"
"version" "1.9.3"
dependencies:
"color-name" "1.1.3"
"color-convert@^2.0.1":
"integrity" "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM="
"resolved" "https://registry.npm.taobao.org/color-convert/download/color-convert-2.0.1.tgz"
"version" "2.0.1"
dependencies:
"color-name" "~1.1.4"
"color-name@~1.1.4":
"integrity" "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI="
"resolved" "https://registry.nlark.com/color-name/download/color-name-1.1.4.tgz"
"version" "1.1.4"
"integrity" "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU="
"resolved" "https://registry.nlark.com/color-name/download/color-name-1.1.3.tgz"
"version" "1.1.3"
"colorette@^1.1.0":
"integrity" "sha1-y8x51emcrqLb8Q6zom/Ys+as+pQ="
"resolved" "https://registry.nlark.com/colorette/download/colorette-1.2.2.tgz"
"version" "1.2.2"
"commander@^2.20.0":
"integrity" "sha1-/UhehMA+tIgcIHIrpIA16FMa6zM="
"resolved" "https://registry.nlark.com/commander/download/commander-2.20.3.tgz?cache=0&sync_timestamp=1624609539421&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcommander%2Fdownload%2Fcommander-2.20.3.tgz"
"version" "2.20.3"
"commander@^7.2.0":
"integrity" "sha1-o2y1fQtQHOEI5NIFWaFQo5HZerc="
"resolved" "https://registry.nlark.com/commander/download/commander-7.2.0.tgz?cache=0&sync_timestamp=1624609539421&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcommander%2Fdownload%2Fcommander-7.2.0.tgz"
"version" "7.2.0"
"commondir@^1.0.1":
"integrity" "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs="
"resolved" "https://registry.npm.taobao.org/commondir/download/commondir-1.0.1.tgz"
"version" "1.0.1"
"integrity" "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s="
"resolved" "https://registry.nlark.com/concat-map/download/concat-map-0.0.1.tgz"
"version" "0.0.1"
"create-require@^1.1.0":
"integrity" "sha1-wdfo8eX2z8n/ZfnNNS03NIdWwzM="
"resolved" "https://registry.npm.taobao.org/create-require/download/create-require-1.1.1.tgz"
"version" "1.1.1"
"cross-spawn@^7.0.2":
"integrity" "sha1-9zqFudXUHQRVUcF34ogtSshXKKY="
"resolved" "https://registry.nlark.com/cross-spawn/download/cross-spawn-7.0.3.tgz"
"version" "7.0.3"
dependencies:
"path-key" "^3.1.0"
"shebang-command" "^2.0.0"
"which" "^2.0.1"
"d@^1.0.1", "d@1":
"integrity" "sha1-hpgJU3LVjb7jRv/Qxwk/mfj561o="
"resolved" "https://registry.nlark.com/d/download/d-1.0.1.tgz"
"version" "1.0.1"
dependencies:
"es5-ext" "^0.10.50"
"type" "^1.0.1"
"debug@^2.6.9":
"integrity" "sha1-XRKFFd8TT/Mn6QpMk/Tgd6U2NB8="
"resolved" "https://registry.nlark.com/debug/download/debug-2.6.9.tgz"
"version" "2.6.9"
dependencies:
"ms" "2.0.0"
"debug@^3.2.7":
"integrity" "sha1-clgLfpFF+zm2Z2+cXl+xALk0F5o="
"resolved" "https://registry.nlark.com/debug/download/debug-3.2.7.tgz"
"version" "3.2.7"
dependencies:
"ms" "^2.1.1"
"debug@^4.0.1", "debug@^4.1.1", "debug@^4.3.1":
"integrity" "sha1-8KScGKyHeeMdSgxgKd+3aHPHQos="
"resolved" "https://registry.nlark.com/debug/download/debug-4.3.2.tgz"
"version" "4.3.2"
dependencies:
"ms" "2.1.2"
"deep-is@^0.1.3":
"integrity" "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ="
"resolved" "https://registry.nlark.com/deep-is/download/deep-is-0.1.3.tgz"
"version" "0.1.3"
"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"
"defaults@^1.0.3":
"integrity" "sha1-xlYFHpgX2f8I7YgUd/P+QBnz730="
"resolved" "https://registry.npm.taobao.org/defaults/download/defaults-1.0.3.tgz"
"version" "1.0.3"
dependencies:
"clone" "^1.0.2"
"define-properties@^1.1.3":
"integrity" "sha1-z4jabL7ib+bbcJT2HYcMvYTO6fE="
"resolved" "https://registry.nlark.com/define-properties/download/define-properties-1.1.3.tgz?cache=0&sync_timestamp=1618847174317&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fdefine-properties%2Fdownload%2Fdefine-properties-1.1.3.tgz"
"version" "1.1.3"
dependencies:
"object-keys" "^1.0.12"
"diff@^4.0.1":
"integrity" "sha1-YPOuy4nV+uUgwRqhnvwruYKq3n0="
"resolved" "https://registry.nlark.com/diff/download/diff-4.0.2.tgz?cache=0&sync_timestamp=1622685824253&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fdiff%2Fdownload%2Fdiff-4.0.2.tgz"
"version" "4.0.2"
"dir-glob@^3.0.1":
"integrity" "sha1-Vtv3PZkqSpO6FYT0U0Bj/S5BcX8="
"resolved" "https://registry.npm.taobao.org/dir-glob/download/dir-glob-3.0.1.tgz"
"version" "3.0.1"
dependencies:
"path-type" "^4.0.0"
"doctrine@^2.1.0":
"integrity" "sha1-XNAfwQFiG0LEzX9dGmYkNxbT850="
"resolved" "https://registry.nlark.com/doctrine/download/doctrine-2.1.0.tgz"
"version" "2.1.0"
dependencies:
"esutils" "^2.0.2"
"doctrine@^3.0.0":
"integrity" "sha1-rd6+rXKmV023g2OdyHoSF3OXOWE="
"resolved" "https://registry.nlark.com/doctrine/download/doctrine-3.0.0.tgz"
"version" "3.0.0"
dependencies:
"esutils" "^2.0.2"
"emoji-regex@^8.0.0":
"integrity" "sha1-6Bj9ac5cz8tARZT4QpY79TFkzDc="
"resolved" "https://registry.nlark.com/emoji-regex/download/emoji-regex-8.0.0.tgz"
"version" "8.0.0"
"enquirer@^2.3.5":
"integrity" "sha1-Kn/l3WNKHkElqXXsmU/1RW3Dc00="
"resolved" "https://registry.npm.taobao.org/enquirer/download/enquirer-2.3.6.tgz"
"version" "2.3.6"
dependencies:
"ansi-colors" "^4.1.1"
"error-ex@^1.3.1":
"integrity" "sha1-tKxAZIEH/c3PriQvQovqihTU8b8="
"resolved" "https://registry.nlark.com/error-ex/download/error-ex-1.3.2.tgz"
"version" "1.3.2"
dependencies:
"is-arrayish" "^0.2.1"
"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"
"es5-ext@^0.10.35", "es5-ext@^0.10.46", "es5-ext@^0.10.50", "es5-ext@^0.10.51", "es5-ext@^0.10.53", "es5-ext@~0.10.14", "es5-ext@~0.10.2", "es5-ext@~0.10.46":
"integrity" "sha1-k8WjrP2+8nUiCtcmRK0C7hg2jeE="
"resolved" "https://registry.nlark.com/es5-ext/download/es5-ext-0.10.53.tgz"
"version" "0.10.53"
dependencies:
"es6-iterator" "~2.0.3"
"es6-symbol" "~3.1.3"
"next-tick" "~1.0.0"
"es6-iterator@^2.0.3", "es6-iterator@~2.0.3":
"integrity" "sha1-p96IkUGgWpSwhUQDstCg+/qY87c="
"resolved" "https://registry.nlark.com/es6-iterator/download/es6-iterator-2.0.3.tgz"
"version" "2.0.3"
dependencies:
"d" "1"
"es5-ext" "^0.10.35"
"es6-symbol" "^3.1.1"
"es6-symbol@^3.1.1", "es6-symbol@~3.1.3":
"integrity" "sha1-utXTwbzawoJp9MszHkMceKxwXRg="
"resolved" "https://registry.npm.taobao.org/es6-symbol/download/es6-symbol-3.1.3.tgz"
"version" "3.1.3"
dependencies:
"d" "^1.0.1"
"ext" "^1.1.2"
"es6-weak-map@^2.0.3":
"integrity" "sha1-ttofFswswNm+Q+a9v8Xn383zHVM="
"resolved" "https://registry.nlark.com/es6-weak-map/download/es6-weak-map-2.0.3.tgz"
"version" "2.0.3"
dependencies:
"d" "1"
"es5-ext" "^0.10.46"
"es6-iterator" "^2.0.3"
"es6-symbol" "^3.1.1"
"escape-string-regexp@^1.0.5":
"integrity" "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ="
"resolved" "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-1.0.5.tgz"
"version" "1.0.5"
"escape-string-regexp@^4.0.0":
"integrity" "sha1-FLqDpdNz49MR5a/KKc9b+tllvzQ="
"resolved" "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-4.0.0.tgz"
"version" "4.0.0"
"eslint-config-standard@^16.0.3":
"integrity" "sha1-bIdh5UTpbFMf+SZC7rh4QrhIhRY="
"resolved" "https://registry.nlark.com/eslint-config-standard/download/eslint-config-standard-16.0.3.tgz?cache=0&sync_timestamp=1621877616191&other_urls=https%3A%2F%2Fregistry.nlark.com%2Feslint-config-standard%2Fdownload%2Feslint-config-standard-16.0.3.tgz"
"version" "16.0.3"
"eslint-import-resolver-node@^0.3.4":
"integrity" "sha1-hf+oGULCUBLYIxCW3fZ5wDBCxxc="
"resolved" "https://registry.npm.taobao.org/eslint-import-resolver-node/download/eslint-import-resolver-node-0.3.4.tgz"
"version" "0.3.4"
dependencies:
"debug" "^2.6.9"
"resolve" "^1.13.1"
"eslint-module-utils@^2.6.1":
"integrity" "sha1-tRvh5HPdDeHF6mOOIkKcJJDqgjM="
"resolved" "https://registry.nlark.com/eslint-module-utils/download/eslint-module-utils-2.6.1.tgz?cache=0&sync_timestamp=1620972183296&other_urls=https%3A%2F%2Fregistry.nlark.com%2Feslint-module-utils%2Fdownload%2Feslint-module-utils-2.6.1.tgz"
"version" "2.6.1"
dependencies:
"debug" "^3.2.7"
"pkg-dir" "^2.0.0"
"eslint-plugin-es@^3.0.0":
"integrity" "sha1-dafN/czdwFiZNK7rOEF18iHFeJM="
"resolved" "https://registry.npm.taobao.org/eslint-plugin-es/download/eslint-plugin-es-3.0.1.tgz?cache=0&sync_timestamp=1605772184308&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Feslint-plugin-es%2Fdownload%2Feslint-plugin-es-3.0.1.tgz"
"version" "3.0.1"
dependencies:
"eslint-utils" "^2.0.0"
"regexpp" "^3.0.0"
"eslint-plugin-import@^2.22.1", "eslint-plugin-import@^2.23.4":
"integrity" "sha1-jc6x7Wtz5G5Q7JpbskEbZF59PZc="
"resolved" "https://registry.nlark.com/eslint-plugin-import/download/eslint-plugin-import-2.23.4.tgz"
"version" "2.23.4"
dependencies:
"array-includes" "^3.1.3"
"array.prototype.flat" "^1.2.4"
"debug" "^2.6.9"
"doctrine" "^2.1.0"
"eslint-import-resolver-node" "^0.3.4"
"eslint-module-utils" "^2.6.1"
"find-up" "^2.0.0"
"has" "^1.0.3"
"is-core-module" "^2.4.0"
"minimatch" "^3.0.4"
"object.values" "^1.1.3"
"pkg-up" "^2.0.0"
"read-pkg-up" "^3.0.0"
"resolve" "^1.20.0"
"tsconfig-paths" "^3.9.0"
"eslint-plugin-node@^11.1.0":
"integrity" "sha1-yVVEQW7kraJnQKMEdO78VALcZx0="
"resolved" "https://registry.nlark.com/eslint-plugin-node/download/eslint-plugin-node-11.1.0.tgz"
"version" "11.1.0"
dependencies:
"eslint-plugin-es" "^3.0.0"
"eslint-utils" "^2.0.0"
"ignore" "^5.1.1"
"minimatch" "^3.0.4"
"resolve" "^1.10.1"
"semver" "^6.1.0"
"eslint-plugin-prettier@^3.4.0":
"integrity" "sha1-zbrTvx29Kxd+mCVzf+Y7R2oI8Mc="
"resolved" "https://registry.nlark.com/eslint-plugin-prettier/download/eslint-plugin-prettier-3.4.0.tgz?cache=0&sync_timestamp=1618846983617&other_urls=https%3A%2F%2Fregistry.nlark.com%2Feslint-plugin-prettier%2Fdownload%2Feslint-plugin-prettier-3.4.0.tgz"
"version" "3.4.0"
dependencies:
"prettier-linter-helpers" "^1.0.0"
"eslint-plugin-promise@^4.2.1 || ^5.0.0", "eslint-plugin-promise@^5.1.0":
"integrity" "sha1-+yGI+3NORVeZNzO0GqGmiPRsbyQ="
"resolved" "https://registry.npm.taobao.org/eslint-plugin-promise/download/eslint-plugin-promise-5.1.0.tgz"
"version" "5.1.0"
"eslint-scope@^5.1.1":
"integrity" "sha1-54blmmbLkrP2wfsNUIqrF0hI9Iw="
"resolved" "https://registry.nlark.com/eslint-scope/download/eslint-scope-5.1.1.tgz"
"version" "5.1.1"
dependencies:
"esrecurse" "^4.3.0"
"estraverse" "^4.1.1"
"eslint-utils@^2.0.0", "eslint-utils@^2.1.0":
"integrity" "sha1-0t5eA0JOcH3BDHQGjd7a5wh0Gyc="
"resolved" "https://registry.nlark.com/eslint-utils/download/eslint-utils-2.1.0.tgz"
"version" "2.1.0"
dependencies:
"eslint-visitor-keys" "^1.1.0"
"eslint-utils@^3.0.0":
"integrity" "sha1-iuuvrOc0W7M1WdsKHxOh0tSMNnI="
"resolved" "https://registry.nlark.com/eslint-utils/download/eslint-utils-3.0.0.tgz"
"version" "3.0.0"
dependencies:
"eslint-visitor-keys" "^2.0.0"
"eslint-visitor-keys@^1.1.0":
"integrity" "sha1-MOvR73wv3/AcOk8VEESvJfqwUj4="
"resolved" "https://registry.nlark.com/eslint-visitor-keys/download/eslint-visitor-keys-1.3.0.tgz"
"version" "1.3.0"
"eslint-visitor-keys@^1.3.0":
"integrity" "sha1-MOvR73wv3/AcOk8VEESvJfqwUj4="
"resolved" "https://registry.nlark.com/eslint-visitor-keys/download/eslint-visitor-keys-1.3.0.tgz"
"version" "1.3.0"
"eslint-visitor-keys@^2.0.0":
"integrity" "sha1-9lMoJZMFknOSyTjtROsKXJsr0wM="
"resolved" "https://registry.nlark.com/eslint-visitor-keys/download/eslint-visitor-keys-2.1.0.tgz"
"version" "2.1.0"
"eslint@*", "eslint@^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0", "eslint@^5.0.0 || ^6.0.0 || ^7.0.0", "eslint@^7.0.0", "eslint@^7.12.1", "eslint@^7.29.0", "eslint@>=4.19.1", "eslint@>=5", "eslint@>=5.0.0", "eslint@>=5.16.0":
"integrity" "sha1-+XK1OUJL8mBJB6lwhgcyxdmdOso="
"resolved" "https://registry.nlark.com/eslint/download/eslint-7.31.0.tgz"
"version" "7.31.0"
dependencies:
"@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"