-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpnpm-lock.yaml
4763 lines (4275 loc) · 252 KB
/
pnpm-lock.yaml
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
lockfileVersion: '6.0'
settings:
autoInstallPeers: true
excludeLinksFromLockfile: false
dependencies:
'@babel/code-frame':
specifier: ^7.12.13
version: registry.npmmirror.com/@babel/code-frame@7.12.13
'@babel/core':
specifier: ^7.14.0
version: registry.npmmirror.com/@babel/core@7.14.0
'@babel/generator':
specifier: ^7.13.9
version: registry.npmmirror.com/@babel/generator@7.13.9
'@babel/helper-plugin-utils':
specifier: ^7.22.5
version: registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5
'@babel/parser':
specifier: ^7.14.1
version: registry.npmmirror.com/@babel/parser@7.14.1
'@babel/template':
specifier: ^7.12.13
version: registry.npmmirror.com/@babel/template@7.12.13
'@babel/traverse':
specifier: ^7.13.13
version: registry.npmmirror.com/@babel/traverse@7.13.13
'@babel/types':
specifier: ^7.13.14
version: registry.npmmirror.com/@babel/types@7.13.14
babel-plugin-tester:
specifier: ^10.0.0
version: registry.npmmirror.com/babel-plugin-tester@10.0.0(@babel/core@7.14.0)
babel-plugin-transform-commonjs:
specifier: ^1.1.6
version: registry.npmmirror.com/babel-plugin-transform-commonjs@1.1.6(@babel/core@7.14.0)
chalk:
specifier: ^4.1.1
version: registry.npmmirror.com/chalk@4.1.1
fs-extra:
specifier: ^11.1.0
version: registry.npmmirror.com/fs-extra@11.1.0
jest:
specifier: ^26.6.3
version: registry.npmmirror.com/jest@26.6.3
lodash:
specifier: ^4.17.21
version: registry.npmmirror.com/lodash@4.17.21
postcss:
specifier: ^8.4.21
version: registry.npmmirror.com/postcss@8.4.21
posthtml:
specifier: ^0.16.6
version: registry.npmmirror.com/posthtml@0.16.6
posthtml-render:
specifier: ^3.0.0
version: registry.npmmirror.com/posthtml-render@3.0.0
reserved-words:
specifier: ^0.1.2
version: registry.npmmirror.com/reserved-words@0.1.2
packages:
registry.npmmirror.com/@babel/code-frame@7.12.13:
resolution: {integrity: sha512-HV1Cm0Q3ZrpCR93tkWOYiuYIgLxZXZFVG2VgK+MBWjUqZTundupbfx2aXarXuw5Ko5aMcjtJgbSs4vUGBS5v6g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/code-frame/-/code-frame-7.12.13.tgz}
name: '@babel/code-frame'
version: 7.12.13
dependencies:
'@babel/highlight': registry.npmmirror.com/@babel/highlight@7.22.20
dev: false
registry.npmmirror.com/@babel/code-frame@7.22.13:
resolution: {integrity: sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/code-frame/-/code-frame-7.22.13.tgz}
name: '@babel/code-frame'
version: 7.22.13
engines: {node: '>=6.9.0'}
dependencies:
'@babel/highlight': registry.npmmirror.com/@babel/highlight@7.22.20
chalk: registry.npmmirror.com/chalk@2.4.2
dev: false
registry.npmmirror.com/@babel/compat-data@7.22.20:
resolution: {integrity: sha512-BQYjKbpXjoXwFW5jGqiizJQQT/aC7pFm9Ok1OWssonuguICi264lbgMzRp2ZMmRSlfkX6DsWDDcsrctK8Rwfiw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/compat-data/-/compat-data-7.22.20.tgz}
name: '@babel/compat-data'
version: 7.22.20
engines: {node: '>=6.9.0'}
dev: false
registry.npmmirror.com/@babel/core@7.14.0:
resolution: {integrity: sha512-8YqpRig5NmIHlMLw09zMlPTvUVMILjqCOtVgu+TVNWEBvy9b5I3RRyhqnrV4hjgEK7n8P9OqvkWJAFmEL6Wwfw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/core/-/core-7.14.0.tgz}
name: '@babel/core'
version: 7.14.0
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': registry.npmmirror.com/@babel/code-frame@7.12.13
'@babel/generator': registry.npmmirror.com/@babel/generator@7.23.0
'@babel/helper-compilation-targets': registry.npmmirror.com/@babel/helper-compilation-targets@7.22.15
'@babel/helper-module-transforms': registry.npmmirror.com/@babel/helper-module-transforms@7.23.0(@babel/core@7.14.0)
'@babel/helpers': registry.npmmirror.com/@babel/helpers@7.23.1
'@babel/parser': registry.npmmirror.com/@babel/parser@7.14.1
'@babel/template': registry.npmmirror.com/@babel/template@7.12.13
'@babel/traverse': registry.npmmirror.com/@babel/traverse@7.23.0
'@babel/types': registry.npmmirror.com/@babel/types@7.23.0
convert-source-map: registry.npmmirror.com/convert-source-map@1.9.0
debug: registry.npmmirror.com/debug@4.3.4
gensync: registry.npmmirror.com/gensync@1.0.0-beta.2
json5: registry.npmmirror.com/json5@2.2.3
semver: registry.npmmirror.com/semver@6.3.1
source-map: registry.npmmirror.com/source-map@0.5.7
transitivePeerDependencies:
- supports-color
dev: false
registry.npmmirror.com/@babel/generator@7.13.9:
resolution: {integrity: sha512-mHOOmY0Axl/JCTkxTU6Lf5sWOg/v8nUa+Xkt4zMTftX0wqmb6Sh7J8gvcehBw7q0AhrhAR+FDacKjCZ2X8K+Sw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/generator/-/generator-7.13.9.tgz}
name: '@babel/generator'
version: 7.13.9
dependencies:
'@babel/types': registry.npmmirror.com/@babel/types@7.13.14
jsesc: registry.npmmirror.com/jsesc@2.5.2
source-map: registry.npmmirror.com/source-map@0.5.7
dev: false
registry.npmmirror.com/@babel/generator@7.23.0:
resolution: {integrity: sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/generator/-/generator-7.23.0.tgz}
name: '@babel/generator'
version: 7.23.0
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmmirror.com/@babel/types@7.23.0
'@jridgewell/gen-mapping': registry.npmmirror.com/@jridgewell/gen-mapping@0.3.3
'@jridgewell/trace-mapping': registry.npmmirror.com/@jridgewell/trace-mapping@0.3.19
jsesc: registry.npmmirror.com/jsesc@2.5.2
dev: false
registry.npmmirror.com/@babel/helper-compilation-targets@7.22.15:
resolution: {integrity: sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.15.tgz}
name: '@babel/helper-compilation-targets'
version: 7.22.15
engines: {node: '>=6.9.0'}
dependencies:
'@babel/compat-data': registry.npmmirror.com/@babel/compat-data@7.22.20
'@babel/helper-validator-option': registry.npmmirror.com/@babel/helper-validator-option@7.22.15
browserslist: registry.npmmirror.com/browserslist@4.22.0
lru-cache: registry.npmmirror.com/lru-cache@5.1.1
semver: registry.npmmirror.com/semver@6.3.1
dev: false
registry.npmmirror.com/@babel/helper-environment-visitor@7.22.20:
resolution: {integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz}
name: '@babel/helper-environment-visitor'
version: 7.22.20
engines: {node: '>=6.9.0'}
dev: false
registry.npmmirror.com/@babel/helper-function-name@7.23.0:
resolution: {integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz}
name: '@babel/helper-function-name'
version: 7.23.0
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': registry.npmmirror.com/@babel/template@7.22.15
'@babel/types': registry.npmmirror.com/@babel/types@7.23.0
dev: false
registry.npmmirror.com/@babel/helper-hoist-variables@7.22.5:
resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz}
name: '@babel/helper-hoist-variables'
version: 7.22.5
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmmirror.com/@babel/types@7.23.0
dev: false
registry.npmmirror.com/@babel/helper-module-imports@7.22.15:
resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz}
name: '@babel/helper-module-imports'
version: 7.22.15
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmmirror.com/@babel/types@7.23.0
dev: false
registry.npmmirror.com/@babel/helper-module-transforms@7.23.0(@babel/core@7.14.0):
resolution: {integrity: sha512-WhDWw1tdrlT0gMgUJSlX0IQvoO1eN279zrAUbVB+KpV2c3Tylz8+GnKOLllCS6Z/iZQEyVYxhZVUdPTqs2YYPw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-module-transforms/-/helper-module-transforms-7.23.0.tgz}
id: registry.npmmirror.com/@babel/helper-module-transforms/7.23.0
name: '@babel/helper-module-transforms'
version: 7.23.0
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core@7.14.0
'@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor@7.22.20
'@babel/helper-module-imports': registry.npmmirror.com/@babel/helper-module-imports@7.22.15
'@babel/helper-simple-access': registry.npmmirror.com/@babel/helper-simple-access@7.22.5
'@babel/helper-split-export-declaration': registry.npmmirror.com/@babel/helper-split-export-declaration@7.22.6
'@babel/helper-validator-identifier': registry.npmmirror.com/@babel/helper-validator-identifier@7.22.20
dev: false
registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5:
resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz}
name: '@babel/helper-plugin-utils'
version: 7.22.5
engines: {node: '>=6.9.0'}
dev: false
registry.npmmirror.com/@babel/helper-simple-access@7.22.5:
resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz}
name: '@babel/helper-simple-access'
version: 7.22.5
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmmirror.com/@babel/types@7.23.0
dev: false
registry.npmmirror.com/@babel/helper-split-export-declaration@7.22.6:
resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz}
name: '@babel/helper-split-export-declaration'
version: 7.22.6
engines: {node: '>=6.9.0'}
dependencies:
'@babel/types': registry.npmmirror.com/@babel/types@7.23.0
dev: false
registry.npmmirror.com/@babel/helper-string-parser@7.22.5:
resolution: {integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz}
name: '@babel/helper-string-parser'
version: 7.22.5
engines: {node: '>=6.9.0'}
dev: false
registry.npmmirror.com/@babel/helper-validator-identifier@7.22.20:
resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz}
name: '@babel/helper-validator-identifier'
version: 7.22.20
engines: {node: '>=6.9.0'}
dev: false
registry.npmmirror.com/@babel/helper-validator-option@7.22.15:
resolution: {integrity: sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helper-validator-option/-/helper-validator-option-7.22.15.tgz}
name: '@babel/helper-validator-option'
version: 7.22.15
engines: {node: '>=6.9.0'}
dev: false
registry.npmmirror.com/@babel/helpers@7.23.1:
resolution: {integrity: sha512-chNpneuK18yW5Oxsr+t553UZzzAs3aZnFm4bxhebsNTeshrC95yA7l5yl7GBAG+JG1rF0F7zzD2EixK9mWSDoA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/helpers/-/helpers-7.23.1.tgz}
name: '@babel/helpers'
version: 7.23.1
engines: {node: '>=6.9.0'}
dependencies:
'@babel/template': registry.npmmirror.com/@babel/template@7.22.15
'@babel/traverse': registry.npmmirror.com/@babel/traverse@7.23.0
'@babel/types': registry.npmmirror.com/@babel/types@7.23.0
transitivePeerDependencies:
- supports-color
dev: false
registry.npmmirror.com/@babel/highlight@7.22.20:
resolution: {integrity: sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/highlight/-/highlight-7.22.20.tgz}
name: '@babel/highlight'
version: 7.22.20
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-validator-identifier': registry.npmmirror.com/@babel/helper-validator-identifier@7.22.20
chalk: registry.npmmirror.com/chalk@2.4.2
js-tokens: registry.npmmirror.com/js-tokens@4.0.0
dev: false
registry.npmmirror.com/@babel/parser@7.14.1:
resolution: {integrity: sha512-muUGEKu8E/ftMTPlNp+mc6zL3E9zKWmF5sDHZ5MSsoTP9Wyz64AhEf9kD08xYJ7w6Hdcu8H550ircnPyWSIF0Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/parser/-/parser-7.14.1.tgz}
name: '@babel/parser'
version: 7.14.1
engines: {node: '>=6.0.0'}
hasBin: true
dependencies:
'@babel/types': registry.npmmirror.com/@babel/types@7.13.14
dev: false
registry.npmmirror.com/@babel/parser@7.23.0:
resolution: {integrity: sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/parser/-/parser-7.23.0.tgz}
name: '@babel/parser'
version: 7.23.0
engines: {node: '>=6.0.0'}
hasBin: true
dependencies:
'@babel/types': registry.npmmirror.com/@babel/types@7.13.14
dev: false
registry.npmmirror.com/@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.14.0):
resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz}
id: registry.npmmirror.com/@babel/plugin-syntax-async-generators/7.8.4
name: '@babel/plugin-syntax-async-generators'
version: 7.8.4
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core@7.14.0
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5
dev: false
registry.npmmirror.com/@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.14.0):
resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz}
id: registry.npmmirror.com/@babel/plugin-syntax-bigint/7.8.3
name: '@babel/plugin-syntax-bigint'
version: 7.8.3
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core@7.14.0
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5
dev: false
registry.npmmirror.com/@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.14.0):
resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz}
id: registry.npmmirror.com/@babel/plugin-syntax-class-properties/7.12.13
name: '@babel/plugin-syntax-class-properties'
version: 7.12.13
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core@7.14.0
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5
dev: false
registry.npmmirror.com/@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.14.0):
resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz}
id: registry.npmmirror.com/@babel/plugin-syntax-import-meta/7.10.4
name: '@babel/plugin-syntax-import-meta'
version: 7.10.4
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core@7.14.0
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5
dev: false
registry.npmmirror.com/@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.14.0):
resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz}
id: registry.npmmirror.com/@babel/plugin-syntax-json-strings/7.8.3
name: '@babel/plugin-syntax-json-strings'
version: 7.8.3
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core@7.14.0
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5
dev: false
registry.npmmirror.com/@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.14.0):
resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz}
id: registry.npmmirror.com/@babel/plugin-syntax-logical-assignment-operators/7.10.4
name: '@babel/plugin-syntax-logical-assignment-operators'
version: 7.10.4
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core@7.14.0
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5
dev: false
registry.npmmirror.com/@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.14.0):
resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz}
id: registry.npmmirror.com/@babel/plugin-syntax-nullish-coalescing-operator/7.8.3
name: '@babel/plugin-syntax-nullish-coalescing-operator'
version: 7.8.3
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core@7.14.0
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5
dev: false
registry.npmmirror.com/@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.14.0):
resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz}
id: registry.npmmirror.com/@babel/plugin-syntax-numeric-separator/7.10.4
name: '@babel/plugin-syntax-numeric-separator'
version: 7.10.4
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core@7.14.0
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5
dev: false
registry.npmmirror.com/@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.14.0):
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz}
id: registry.npmmirror.com/@babel/plugin-syntax-object-rest-spread/7.8.3
name: '@babel/plugin-syntax-object-rest-spread'
version: 7.8.3
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core@7.14.0
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5
dev: false
registry.npmmirror.com/@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.14.0):
resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz}
id: registry.npmmirror.com/@babel/plugin-syntax-optional-catch-binding/7.8.3
name: '@babel/plugin-syntax-optional-catch-binding'
version: 7.8.3
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core@7.14.0
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5
dev: false
registry.npmmirror.com/@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.14.0):
resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz}
id: registry.npmmirror.com/@babel/plugin-syntax-optional-chaining/7.8.3
name: '@babel/plugin-syntax-optional-chaining'
version: 7.8.3
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core@7.14.0
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5
dev: false
registry.npmmirror.com/@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.14.0):
resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz}
id: registry.npmmirror.com/@babel/plugin-syntax-top-level-await/7.14.5
name: '@babel/plugin-syntax-top-level-await'
version: 7.14.5
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core@7.14.0
'@babel/helper-plugin-utils': registry.npmmirror.com/@babel/helper-plugin-utils@7.22.5
dev: false
registry.npmmirror.com/@babel/template@7.12.13:
resolution: {integrity: sha512-/7xxiGA57xMo/P2GVvdEumr8ONhFOhfgq2ihK3h1e6THqzTAkHbkXgB0xI9yeTfIUoH3+oAeHhqm/I43OTbbjA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/template/-/template-7.12.13.tgz}
name: '@babel/template'
version: 7.12.13
dependencies:
'@babel/code-frame': registry.npmmirror.com/@babel/code-frame@7.12.13
'@babel/parser': registry.npmmirror.com/@babel/parser@7.14.1
'@babel/types': registry.npmmirror.com/@babel/types@7.13.14
dev: false
registry.npmmirror.com/@babel/template@7.22.15:
resolution: {integrity: sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/template/-/template-7.22.15.tgz}
name: '@babel/template'
version: 7.22.15
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': registry.npmmirror.com/@babel/code-frame@7.22.13
'@babel/parser': registry.npmmirror.com/@babel/parser@7.23.0
'@babel/types': registry.npmmirror.com/@babel/types@7.23.0
dev: false
registry.npmmirror.com/@babel/traverse@7.13.13:
resolution: {integrity: sha512-CblEcwmXKR6eP43oQGG++0QMTtCjAsa3frUuzHoiIJWpaIIi8dwMyEFUJoXRLxagGqCK+jALRwIO+o3R9p/uUg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/traverse/-/traverse-7.13.13.tgz}
name: '@babel/traverse'
version: 7.13.13
dependencies:
'@babel/code-frame': registry.npmmirror.com/@babel/code-frame@7.12.13
'@babel/generator': registry.npmmirror.com/@babel/generator@7.13.9
'@babel/helper-function-name': registry.npmmirror.com/@babel/helper-function-name@7.23.0
'@babel/helper-split-export-declaration': registry.npmmirror.com/@babel/helper-split-export-declaration@7.22.6
'@babel/parser': registry.npmmirror.com/@babel/parser@7.14.1
'@babel/types': registry.npmmirror.com/@babel/types@7.13.14
debug: registry.npmmirror.com/debug@4.3.4
globals: registry.npmmirror.com/globals@11.12.0
transitivePeerDependencies:
- supports-color
dev: false
registry.npmmirror.com/@babel/traverse@7.23.0:
resolution: {integrity: sha512-t/QaEvyIoIkwzpiZ7aoSKK8kObQYeF7T2v+dazAYCb8SXtp58zEVkWW7zAnju8FNKNdr4ScAOEDmMItbyOmEYw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/traverse/-/traverse-7.23.0.tgz}
name: '@babel/traverse'
version: 7.23.0
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': registry.npmmirror.com/@babel/code-frame@7.22.13
'@babel/generator': registry.npmmirror.com/@babel/generator@7.23.0
'@babel/helper-environment-visitor': registry.npmmirror.com/@babel/helper-environment-visitor@7.22.20
'@babel/helper-function-name': registry.npmmirror.com/@babel/helper-function-name@7.23.0
'@babel/helper-hoist-variables': registry.npmmirror.com/@babel/helper-hoist-variables@7.22.5
'@babel/helper-split-export-declaration': registry.npmmirror.com/@babel/helper-split-export-declaration@7.22.6
'@babel/parser': registry.npmmirror.com/@babel/parser@7.23.0
'@babel/types': registry.npmmirror.com/@babel/types@7.23.0
debug: registry.npmmirror.com/debug@4.3.4
globals: registry.npmmirror.com/globals@11.12.0
transitivePeerDependencies:
- supports-color
dev: false
registry.npmmirror.com/@babel/types@7.13.14:
resolution: {integrity: sha512-A2aa3QTkWoyqsZZFl56MLUsfmh7O0gN41IPvXAE/++8ojpbz12SszD7JEGYVdn4f9Kt4amIei07swF1h4AqmmQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/types/-/types-7.13.14.tgz}
name: '@babel/types'
version: 7.13.14
dependencies:
'@babel/helper-validator-identifier': registry.npmmirror.com/@babel/helper-validator-identifier@7.22.20
lodash: registry.npmmirror.com/lodash@4.17.21
to-fast-properties: registry.npmmirror.com/to-fast-properties@2.0.0
dev: false
registry.npmmirror.com/@babel/types@7.23.0:
resolution: {integrity: sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@babel/types/-/types-7.23.0.tgz}
name: '@babel/types'
version: 7.23.0
engines: {node: '>=6.9.0'}
dependencies:
'@babel/helper-string-parser': registry.npmmirror.com/@babel/helper-string-parser@7.22.5
'@babel/helper-validator-identifier': registry.npmmirror.com/@babel/helper-validator-identifier@7.22.20
to-fast-properties: registry.npmmirror.com/to-fast-properties@2.0.0
dev: false
registry.npmmirror.com/@bcoe/v8-coverage@0.2.3:
resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz}
name: '@bcoe/v8-coverage'
version: 0.2.3
dev: false
registry.npmmirror.com/@cnakazawa/watch@1.0.4:
resolution: {integrity: sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@cnakazawa/watch/-/watch-1.0.4.tgz}
name: '@cnakazawa/watch'
version: 1.0.4
engines: {node: '>=0.1.95'}
hasBin: true
dependencies:
exec-sh: registry.npmmirror.com/exec-sh@0.3.6
minimist: registry.npmmirror.com/minimist@1.2.8
dev: false
registry.npmmirror.com/@istanbuljs/load-nyc-config@1.1.0:
resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz}
name: '@istanbuljs/load-nyc-config'
version: 1.1.0
engines: {node: '>=8'}
dependencies:
camelcase: registry.npmmirror.com/camelcase@5.3.1
find-up: registry.npmmirror.com/find-up@4.1.0
get-package-type: registry.npmmirror.com/get-package-type@0.1.0
js-yaml: registry.npmmirror.com/js-yaml@3.14.1
resolve-from: registry.npmmirror.com/resolve-from@5.0.0
dev: false
registry.npmmirror.com/@istanbuljs/schema@0.1.3:
resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@istanbuljs/schema/-/schema-0.1.3.tgz}
name: '@istanbuljs/schema'
version: 0.1.3
engines: {node: '>=8'}
dev: false
registry.npmmirror.com/@jest/console@26.6.2:
resolution: {integrity: sha512-IY1R2i2aLsLr7Id3S6p2BA82GNWryt4oSvEXLAKc+L2zdi89dSkE8xC1C+0kpATG4JhBJREnQOH7/zmccM2B0g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jest/console/-/console-26.6.2.tgz}
name: '@jest/console'
version: 26.6.2
engines: {node: '>= 10.14.2'}
dependencies:
'@jest/types': registry.npmmirror.com/@jest/types@26.6.2
'@types/node': registry.npmmirror.com/@types/node@20.7.0
chalk: registry.npmmirror.com/chalk@4.1.1
jest-message-util: registry.npmmirror.com/jest-message-util@26.6.2
jest-util: registry.npmmirror.com/jest-util@26.6.2
slash: registry.npmmirror.com/slash@3.0.0
dev: false
registry.npmmirror.com/@jest/core@26.6.3:
resolution: {integrity: sha512-xvV1kKbhfUqFVuZ8Cyo+JPpipAHHAV3kcDBftiduK8EICXmTFddryy3P7NfZt8Pv37rA9nEJBKCCkglCPt/Xjw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jest/core/-/core-26.6.3.tgz}
name: '@jest/core'
version: 26.6.3
engines: {node: '>= 10.14.2'}
dependencies:
'@jest/console': registry.npmmirror.com/@jest/console@26.6.2
'@jest/reporters': registry.npmmirror.com/@jest/reporters@26.6.2
'@jest/test-result': registry.npmmirror.com/@jest/test-result@26.6.2
'@jest/transform': registry.npmmirror.com/@jest/transform@26.6.2
'@jest/types': registry.npmmirror.com/@jest/types@26.6.2
'@types/node': registry.npmmirror.com/@types/node@20.7.0
ansi-escapes: registry.npmmirror.com/ansi-escapes@4.3.2
chalk: registry.npmmirror.com/chalk@4.1.1
exit: registry.npmmirror.com/exit@0.1.2
graceful-fs: registry.npmmirror.com/graceful-fs@4.2.11
jest-changed-files: registry.npmmirror.com/jest-changed-files@26.6.2
jest-config: registry.npmmirror.com/jest-config@26.6.3
jest-haste-map: registry.npmmirror.com/jest-haste-map@26.6.2
jest-message-util: registry.npmmirror.com/jest-message-util@26.6.2
jest-regex-util: registry.npmmirror.com/jest-regex-util@26.0.0
jest-resolve: registry.npmmirror.com/jest-resolve@26.6.2
jest-resolve-dependencies: registry.npmmirror.com/jest-resolve-dependencies@26.6.3
jest-runner: registry.npmmirror.com/jest-runner@26.6.3
jest-runtime: registry.npmmirror.com/jest-runtime@26.6.3
jest-snapshot: registry.npmmirror.com/jest-snapshot@26.6.2
jest-util: registry.npmmirror.com/jest-util@26.6.2
jest-validate: registry.npmmirror.com/jest-validate@26.6.2
jest-watcher: registry.npmmirror.com/jest-watcher@26.6.2
micromatch: registry.npmmirror.com/micromatch@4.0.5
p-each-series: registry.npmmirror.com/p-each-series@2.2.0
rimraf: registry.npmmirror.com/rimraf@3.0.2
slash: registry.npmmirror.com/slash@3.0.0
strip-ansi: registry.npmmirror.com/strip-ansi@6.0.1
transitivePeerDependencies:
- bufferutil
- canvas
- supports-color
- ts-node
- utf-8-validate
dev: false
registry.npmmirror.com/@jest/environment@26.6.2:
resolution: {integrity: sha512-nFy+fHl28zUrRsCeMB61VDThV1pVTtlEokBRgqPrcT1JNq4yRNIyTHfyht6PqtUvY9IsuLGTrbG8kPXjSZIZwA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jest/environment/-/environment-26.6.2.tgz}
name: '@jest/environment'
version: 26.6.2
engines: {node: '>= 10.14.2'}
dependencies:
'@jest/fake-timers': registry.npmmirror.com/@jest/fake-timers@26.6.2
'@jest/types': registry.npmmirror.com/@jest/types@26.6.2
'@types/node': registry.npmmirror.com/@types/node@20.7.0
jest-mock: registry.npmmirror.com/jest-mock@26.6.2
dev: false
registry.npmmirror.com/@jest/fake-timers@26.6.2:
resolution: {integrity: sha512-14Uleatt7jdzefLPYM3KLcnUl1ZNikaKq34enpb5XG9i81JpppDb5muZvonvKyrl7ftEHkKS5L5/eB/kxJ+bvA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jest/fake-timers/-/fake-timers-26.6.2.tgz}
name: '@jest/fake-timers'
version: 26.6.2
engines: {node: '>= 10.14.2'}
dependencies:
'@jest/types': registry.npmmirror.com/@jest/types@26.6.2
'@sinonjs/fake-timers': registry.npmmirror.com/@sinonjs/fake-timers@6.0.1
'@types/node': registry.npmmirror.com/@types/node@20.7.0
jest-message-util: registry.npmmirror.com/jest-message-util@26.6.2
jest-mock: registry.npmmirror.com/jest-mock@26.6.2
jest-util: registry.npmmirror.com/jest-util@26.6.2
dev: false
registry.npmmirror.com/@jest/globals@26.6.2:
resolution: {integrity: sha512-85Ltnm7HlB/KesBUuALwQ68YTU72w9H2xW9FjZ1eL1U3lhtefjjl5c2MiUbpXt/i6LaPRvoOFJ22yCBSfQ0JIA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jest/globals/-/globals-26.6.2.tgz}
name: '@jest/globals'
version: 26.6.2
engines: {node: '>= 10.14.2'}
dependencies:
'@jest/environment': registry.npmmirror.com/@jest/environment@26.6.2
'@jest/types': registry.npmmirror.com/@jest/types@26.6.2
expect: registry.npmmirror.com/expect@26.6.2
dev: false
registry.npmmirror.com/@jest/reporters@26.6.2:
resolution: {integrity: sha512-h2bW53APG4HvkOnVMo8q3QXa6pcaNt1HkwVsOPMBV6LD/q9oSpxNSYZQYkAnjdMjrJ86UuYeLo+aEZClV6opnw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jest/reporters/-/reporters-26.6.2.tgz}
name: '@jest/reporters'
version: 26.6.2
engines: {node: '>= 10.14.2'}
dependencies:
'@bcoe/v8-coverage': registry.npmmirror.com/@bcoe/v8-coverage@0.2.3
'@jest/console': registry.npmmirror.com/@jest/console@26.6.2
'@jest/test-result': registry.npmmirror.com/@jest/test-result@26.6.2
'@jest/transform': registry.npmmirror.com/@jest/transform@26.6.2
'@jest/types': registry.npmmirror.com/@jest/types@26.6.2
chalk: registry.npmmirror.com/chalk@4.1.1
collect-v8-coverage: registry.npmmirror.com/collect-v8-coverage@1.0.2
exit: registry.npmmirror.com/exit@0.1.2
glob: registry.npmmirror.com/glob@7.2.3
graceful-fs: registry.npmmirror.com/graceful-fs@4.2.11
istanbul-lib-coverage: registry.npmmirror.com/istanbul-lib-coverage@3.2.0
istanbul-lib-instrument: registry.npmmirror.com/istanbul-lib-instrument@4.0.3
istanbul-lib-report: registry.npmmirror.com/istanbul-lib-report@3.0.1
istanbul-lib-source-maps: registry.npmmirror.com/istanbul-lib-source-maps@4.0.1
istanbul-reports: registry.npmmirror.com/istanbul-reports@3.1.6
jest-haste-map: registry.npmmirror.com/jest-haste-map@26.6.2
jest-resolve: registry.npmmirror.com/jest-resolve@26.6.2
jest-util: registry.npmmirror.com/jest-util@26.6.2
jest-worker: registry.npmmirror.com/jest-worker@26.6.2
slash: registry.npmmirror.com/slash@3.0.0
source-map: registry.npmmirror.com/source-map@0.6.1
string-length: registry.npmmirror.com/string-length@4.0.2
terminal-link: registry.npmmirror.com/terminal-link@2.1.1
v8-to-istanbul: registry.npmmirror.com/v8-to-istanbul@7.1.2
optionalDependencies:
node-notifier: registry.npmmirror.com/node-notifier@8.0.2
transitivePeerDependencies:
- supports-color
dev: false
registry.npmmirror.com/@jest/source-map@26.6.2:
resolution: {integrity: sha512-YwYcCwAnNmOVsZ8mr3GfnzdXDAl4LaenZP5z+G0c8bzC9/dugL8zRmxZzdoTl4IaS3CryS1uWnROLPFmb6lVvA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jest/source-map/-/source-map-26.6.2.tgz}
name: '@jest/source-map'
version: 26.6.2
engines: {node: '>= 10.14.2'}
dependencies:
callsites: registry.npmmirror.com/callsites@3.1.0
graceful-fs: registry.npmmirror.com/graceful-fs@4.2.11
source-map: registry.npmmirror.com/source-map@0.6.1
dev: false
registry.npmmirror.com/@jest/test-result@26.6.2:
resolution: {integrity: sha512-5O7H5c/7YlojphYNrK02LlDIV2GNPYisKwHm2QTKjNZeEzezCbwYs9swJySv2UfPMyZ0VdsmMv7jIlD/IKYQpQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jest/test-result/-/test-result-26.6.2.tgz}
name: '@jest/test-result'
version: 26.6.2
engines: {node: '>= 10.14.2'}
dependencies:
'@jest/console': registry.npmmirror.com/@jest/console@26.6.2
'@jest/types': registry.npmmirror.com/@jest/types@26.6.2
'@types/istanbul-lib-coverage': registry.npmmirror.com/@types/istanbul-lib-coverage@2.0.4
collect-v8-coverage: registry.npmmirror.com/collect-v8-coverage@1.0.2
dev: false
registry.npmmirror.com/@jest/test-sequencer@26.6.3:
resolution: {integrity: sha512-YHlVIjP5nfEyjlrSr8t/YdNfU/1XEt7c5b4OxcXCjyRhjzLYu/rO69/WHPuYcbCWkz8kAeZVZp2N2+IOLLEPGw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jest/test-sequencer/-/test-sequencer-26.6.3.tgz}
name: '@jest/test-sequencer'
version: 26.6.3
engines: {node: '>= 10.14.2'}
dependencies:
'@jest/test-result': registry.npmmirror.com/@jest/test-result@26.6.2
graceful-fs: registry.npmmirror.com/graceful-fs@4.2.11
jest-haste-map: registry.npmmirror.com/jest-haste-map@26.6.2
jest-runner: registry.npmmirror.com/jest-runner@26.6.3
jest-runtime: registry.npmmirror.com/jest-runtime@26.6.3
transitivePeerDependencies:
- bufferutil
- canvas
- supports-color
- ts-node
- utf-8-validate
dev: false
registry.npmmirror.com/@jest/transform@26.6.2:
resolution: {integrity: sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jest/transform/-/transform-26.6.2.tgz}
name: '@jest/transform'
version: 26.6.2
engines: {node: '>= 10.14.2'}
dependencies:
'@babel/core': registry.npmmirror.com/@babel/core@7.14.0
'@jest/types': registry.npmmirror.com/@jest/types@26.6.2
babel-plugin-istanbul: registry.npmmirror.com/babel-plugin-istanbul@6.1.1
chalk: registry.npmmirror.com/chalk@4.1.1
convert-source-map: registry.npmmirror.com/convert-source-map@1.9.0
fast-json-stable-stringify: registry.npmmirror.com/fast-json-stable-stringify@2.1.0
graceful-fs: registry.npmmirror.com/graceful-fs@4.2.11
jest-haste-map: registry.npmmirror.com/jest-haste-map@26.6.2
jest-regex-util: registry.npmmirror.com/jest-regex-util@26.0.0
jest-util: registry.npmmirror.com/jest-util@26.6.2
micromatch: registry.npmmirror.com/micromatch@4.0.5
pirates: registry.npmmirror.com/pirates@4.0.6
slash: registry.npmmirror.com/slash@3.0.0
source-map: registry.npmmirror.com/source-map@0.6.1
write-file-atomic: registry.npmmirror.com/write-file-atomic@3.0.3
transitivePeerDependencies:
- supports-color
dev: false
registry.npmmirror.com/@jest/types@26.6.2:
resolution: {integrity: sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jest/types/-/types-26.6.2.tgz}
name: '@jest/types'
version: 26.6.2
engines: {node: '>= 10.14.2'}
dependencies:
'@types/istanbul-lib-coverage': registry.npmmirror.com/@types/istanbul-lib-coverage@2.0.4
'@types/istanbul-reports': registry.npmmirror.com/@types/istanbul-reports@3.0.2
'@types/node': registry.npmmirror.com/@types/node@20.7.0
'@types/yargs': registry.npmmirror.com/@types/yargs@15.0.16
chalk: registry.npmmirror.com/chalk@4.1.1
dev: false
registry.npmmirror.com/@jridgewell/gen-mapping@0.3.3:
resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz}
name: '@jridgewell/gen-mapping'
version: 0.3.3
engines: {node: '>=6.0.0'}
dependencies:
'@jridgewell/set-array': registry.npmmirror.com/@jridgewell/set-array@1.1.2
'@jridgewell/sourcemap-codec': registry.npmmirror.com/@jridgewell/sourcemap-codec@1.4.15
'@jridgewell/trace-mapping': registry.npmmirror.com/@jridgewell/trace-mapping@0.3.19
dev: false
registry.npmmirror.com/@jridgewell/resolve-uri@3.1.1:
resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz}
name: '@jridgewell/resolve-uri'
version: 3.1.1
engines: {node: '>=6.0.0'}
dev: false
registry.npmmirror.com/@jridgewell/set-array@1.1.2:
resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jridgewell/set-array/-/set-array-1.1.2.tgz}
name: '@jridgewell/set-array'
version: 1.1.2
engines: {node: '>=6.0.0'}
dev: false
registry.npmmirror.com/@jridgewell/sourcemap-codec@1.4.15:
resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz}
name: '@jridgewell/sourcemap-codec'
version: 1.4.15
dev: false
registry.npmmirror.com/@jridgewell/trace-mapping@0.3.19:
resolution: {integrity: sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz}
name: '@jridgewell/trace-mapping'
version: 0.3.19
dependencies:
'@jridgewell/resolve-uri': registry.npmmirror.com/@jridgewell/resolve-uri@3.1.1
'@jridgewell/sourcemap-codec': registry.npmmirror.com/@jridgewell/sourcemap-codec@1.4.15
dev: false
registry.npmmirror.com/@sinonjs/commons@1.8.6:
resolution: {integrity: sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@sinonjs/commons/-/commons-1.8.6.tgz}
name: '@sinonjs/commons'
version: 1.8.6
dependencies:
type-detect: registry.npmmirror.com/type-detect@4.0.8
dev: false
registry.npmmirror.com/@sinonjs/fake-timers@6.0.1:
resolution: {integrity: sha512-MZPUxrmFubI36XS1DI3qmI0YdN1gks62JtFZvxR67ljjSNCeK6U08Zx4msEWOXuofgqUt6zPHSi1H9fbjR/NRA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@sinonjs/fake-timers/-/fake-timers-6.0.1.tgz}
name: '@sinonjs/fake-timers'
version: 6.0.1
dependencies:
'@sinonjs/commons': registry.npmmirror.com/@sinonjs/commons@1.8.6
dev: false
registry.npmmirror.com/@tootallnate/once@1.1.2:
resolution: {integrity: sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@tootallnate/once/-/once-1.1.2.tgz}
name: '@tootallnate/once'
version: 1.1.2
engines: {node: '>= 6'}
dev: false
registry.npmmirror.com/@types/babel-plugin-tester@9.0.7:
resolution: {integrity: sha512-h7fu5AJaa1dvNLYHsf6YmXdSEw/Gyv+KJAfd5sv94HaQg+JEHLCXaa+VNh7+Mwo1OFW8u+AlAxhpcmA4bdbO2A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/babel-plugin-tester/-/babel-plugin-tester-9.0.7.tgz}
name: '@types/babel-plugin-tester'
version: 9.0.7
dependencies:
'@types/babel__core': registry.npmmirror.com/@types/babel__core@7.20.2
'@types/prettier': registry.npmmirror.com/@types/prettier@2.7.3
dev: false
registry.npmmirror.com/@types/babel__core@7.20.2:
resolution: {integrity: sha512-pNpr1T1xLUc2l3xJKuPtsEky3ybxN3m4fJkknfIpTCTfIZCDW57oAg+EfCgIIp2rvCe0Wn++/FfodDS4YXxBwA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/babel__core/-/babel__core-7.20.2.tgz}
name: '@types/babel__core'
version: 7.20.2
dependencies:
'@babel/parser': registry.npmmirror.com/@babel/parser@7.23.0
'@babel/types': registry.npmmirror.com/@babel/types@7.23.0
'@types/babel__generator': registry.npmmirror.com/@types/babel__generator@7.6.5
'@types/babel__template': registry.npmmirror.com/@types/babel__template@7.4.2
'@types/babel__traverse': registry.npmmirror.com/@types/babel__traverse@7.20.2
dev: false
registry.npmmirror.com/@types/babel__generator@7.6.5:
resolution: {integrity: sha512-h9yIuWbJKdOPLJTbmSpPzkF67e659PbQDba7ifWm5BJ8xTv+sDmS7rFmywkWOvXedGTivCdeGSIIX8WLcRTz8w==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/babel__generator/-/babel__generator-7.6.5.tgz}
name: '@types/babel__generator'
version: 7.6.5
dependencies:
'@babel/types': registry.npmmirror.com/@babel/types@7.13.14
dev: false
registry.npmmirror.com/@types/babel__template@7.4.2:
resolution: {integrity: sha512-/AVzPICMhMOMYoSx9MoKpGDKdBRsIXMNByh1PXSZoa+v6ZoLa8xxtsT/uLQ/NJm0XVAWl/BvId4MlDeXJaeIZQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/babel__template/-/babel__template-7.4.2.tgz}
name: '@types/babel__template'
version: 7.4.2
dependencies:
'@babel/parser': registry.npmmirror.com/@babel/parser@7.14.1
'@babel/types': registry.npmmirror.com/@babel/types@7.13.14
dev: false
registry.npmmirror.com/@types/babel__traverse@7.20.2:
resolution: {integrity: sha512-ojlGK1Hsfce93J0+kn3H5R73elidKUaZonirN33GSmgTUMpzI/MIFfSpF3haANe3G1bEBS9/9/QEqwTzwqFsKw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/babel__traverse/-/babel__traverse-7.20.2.tgz}
name: '@types/babel__traverse'
version: 7.20.2
dependencies:
'@babel/types': registry.npmmirror.com/@babel/types@7.23.0
dev: false
registry.npmmirror.com/@types/graceful-fs@4.1.7:
resolution: {integrity: sha512-MhzcwU8aUygZroVwL2jeYk6JisJrPl/oov/gsgGCue9mkgl9wjGbzReYQClxiUgFDnib9FuHqTndccKeZKxTRw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/graceful-fs/-/graceful-fs-4.1.7.tgz}
name: '@types/graceful-fs'
version: 4.1.7
dependencies:
'@types/node': registry.npmmirror.com/@types/node@20.7.0
dev: false
registry.npmmirror.com/@types/istanbul-lib-coverage@2.0.4:
resolution: {integrity: sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz}
name: '@types/istanbul-lib-coverage'
version: 2.0.4
dev: false
registry.npmmirror.com/@types/istanbul-lib-report@3.0.1:
resolution: {integrity: sha512-gPQuzaPR5h/djlAv2apEG1HVOyj1IUs7GpfMZixU0/0KXT3pm64ylHuMUI1/Akh+sq/iikxg6Z2j+fcMDXaaTQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz}
name: '@types/istanbul-lib-report'
version: 3.0.1
dependencies:
'@types/istanbul-lib-coverage': registry.npmmirror.com/@types/istanbul-lib-coverage@2.0.4
dev: false
registry.npmmirror.com/@types/istanbul-reports@3.0.2:
resolution: {integrity: sha512-kv43F9eb3Lhj+lr/Hn6OcLCs/sSM8bt+fIaP11rCYngfV6NVjzWXJ17owQtDQTL9tQ8WSLUrGsSJ6rJz0F1w1A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/istanbul-reports/-/istanbul-reports-3.0.2.tgz}
name: '@types/istanbul-reports'
version: 3.0.2
dependencies:
'@types/istanbul-lib-report': registry.npmmirror.com/@types/istanbul-lib-report@3.0.1
dev: false
registry.npmmirror.com/@types/node@20.7.0:
resolution: {integrity: sha512-zI22/pJW2wUZOVyguFaUL1HABdmSVxpXrzIqkjsHmyUjNhPoWM1CKfvVuXfetHhIok4RY573cqS0mZ1SJEnoTg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/node/-/node-20.7.0.tgz}
name: '@types/node'
version: 20.7.0
dev: false
registry.npmmirror.com/@types/normalize-package-data@2.4.2:
resolution: {integrity: sha512-lqa4UEhhv/2sjjIQgjX8B+RBjj47eo0mzGasklVJ78UKGQY1r0VpB9XHDaZZO9qzEFDdy4MrXLuEaSmPrPSe/A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/normalize-package-data/-/normalize-package-data-2.4.2.tgz}
name: '@types/normalize-package-data'
version: 2.4.2
dev: false
registry.npmmirror.com/@types/prettier@2.7.3:
resolution: {integrity: sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/prettier/-/prettier-2.7.3.tgz}
name: '@types/prettier'
version: 2.7.3
dev: false
registry.npmmirror.com/@types/stack-utils@2.0.1:
resolution: {integrity: sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/stack-utils/-/stack-utils-2.0.1.tgz}
name: '@types/stack-utils'
version: 2.0.1
dev: false
registry.npmmirror.com/@types/yargs-parser@21.0.1:
resolution: {integrity: sha512-axdPBuLuEJt0c4yI5OZssC19K2Mq1uKdrfZBzuxLvaztgqUtFYZUNw7lETExPYJR9jdEoIg4mb7RQKRQzOkeGQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/yargs-parser/-/yargs-parser-21.0.1.tgz}
name: '@types/yargs-parser'
version: 21.0.1
dev: false
registry.npmmirror.com/@types/yargs@15.0.16:
resolution: {integrity: sha512-2FeD5qezW3FvLpZ0JpfuaEWepgNLl9b2gQYiz/ce0NhoB1W/D+VZu98phITXkADYerfr/jb7JcDcVhITsc9bwg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/@types/yargs/-/yargs-15.0.16.tgz}
name: '@types/yargs'
version: 15.0.16
dependencies:
'@types/yargs-parser': registry.npmmirror.com/@types/yargs-parser@21.0.1
dev: false
registry.npmmirror.com/abab@2.0.6:
resolution: {integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/abab/-/abab-2.0.6.tgz}
name: abab
version: 2.0.6
dev: false
registry.npmmirror.com/acorn-globals@6.0.0:
resolution: {integrity: sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/acorn-globals/-/acorn-globals-6.0.0.tgz}
name: acorn-globals
version: 6.0.0
dependencies:
acorn: registry.npmmirror.com/acorn@7.4.1
acorn-walk: registry.npmmirror.com/acorn-walk@7.2.0
dev: false
registry.npmmirror.com/acorn-walk@7.2.0:
resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/acorn-walk/-/acorn-walk-7.2.0.tgz}
name: acorn-walk
version: 7.2.0
engines: {node: '>=0.4.0'}
dev: false
registry.npmmirror.com/acorn@7.4.1:
resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/acorn/-/acorn-7.4.1.tgz}
name: acorn
version: 7.4.1
engines: {node: '>=0.4.0'}
hasBin: true
dev: false
registry.npmmirror.com/acorn@8.10.0:
resolution: {integrity: sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/acorn/-/acorn-8.10.0.tgz}
name: acorn
version: 8.10.0
engines: {node: '>=0.4.0'}
hasBin: true
dev: false
registry.npmmirror.com/agent-base@6.0.2:
resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/agent-base/-/agent-base-6.0.2.tgz}
name: agent-base
version: 6.0.2
engines: {node: '>= 6.0.0'}
dependencies:
debug: registry.npmmirror.com/debug@4.3.4
transitivePeerDependencies:
- supports-color
dev: false
registry.npmmirror.com/ansi-escapes@4.3.2:
resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz}
name: ansi-escapes
version: 4.3.2
engines: {node: '>=8'}
dependencies:
type-fest: registry.npmmirror.com/type-fest@0.21.3
dev: false
registry.npmmirror.com/ansi-regex@5.0.1:
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==, registry: https://registry.npm.taobao.org/, tarball: https://registry.npmmirror.com/ansi-regex/-/ansi-regex-5.0.1.tgz}
name: ansi-regex
version: 5.0.1