forked from shengxinjing/it-roadmap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage-lock.json
3016 lines (3016 loc) · 118 KB
/
package-lock.json
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
{
"name": "roadmap",
"version": "0.0.1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"@babel/parser": {
"version": "7.16.4",
"resolved": "https://registry.npmmirror.com/@babel/parser/download/@babel/parser-7.16.4.tgz",
"integrity": "sha512-6V0qdPUaiVHH3RtZeLIsc+6pDhbYzHR8ogA8w+f+Wc77DuXto19g2QUwveINoS34Uw+W8/hQDGJCx+i4n7xcng==",
"dev": true
},
"@mapbox/node-pre-gyp": {
"version": "1.0.7",
"resolved": "https://registry.npmmirror.com/@mapbox/node-pre-gyp/download/@mapbox/node-pre-gyp-1.0.7.tgz",
"integrity": "sha512-PplSvl4pJ5N3BkVjAdDzpPhVUPdC73JgttkR+LnBx2OORC1GCQsBjUeEuipf9uOaAM1SbxcdZFfR3KDTKm2S0A==",
"optional": true,
"requires": {
"detect-libc": "^1.0.3",
"https-proxy-agent": "^5.0.0",
"make-dir": "^3.1.0",
"node-fetch": "^2.6.5",
"nopt": "^5.0.0",
"npmlog": "^6.0.0",
"rimraf": "^3.0.2",
"semver": "^7.3.5",
"tar": "^6.1.11"
}
},
"@nodelib/fs.scandir": {
"version": "2.1.5",
"resolved": "https://registry.nlark.com/@nodelib/fs.scandir/download/@nodelib/fs.scandir-2.1.5.tgz?cache=0&sync_timestamp=1622792874919&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40nodelib%2Ffs.scandir%2Fdownload%2F%40nodelib%2Ffs.scandir-2.1.5.tgz",
"integrity": "sha1-dhnC6yGyVIP20WdUi0z9WnSIw9U=",
"dev": true,
"requires": {
"@nodelib/fs.stat": "2.0.5",
"run-parallel": "^1.1.9"
}
},
"@nodelib/fs.stat": {
"version": "2.0.5",
"resolved": "https://registry.nlark.com/@nodelib/fs.stat/download/@nodelib/fs.stat-2.0.5.tgz",
"integrity": "sha1-W9Jir5Tp0lvR5xsF3u1Eh2oiLos=",
"dev": true
},
"@nodelib/fs.walk": {
"version": "1.2.8",
"resolved": "https://registry.nlark.com/@nodelib/fs.walk/download/@nodelib/fs.walk-1.2.8.tgz?cache=0&sync_timestamp=1625773832828&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40nodelib%2Ffs.walk%2Fdownload%2F%40nodelib%2Ffs.walk-1.2.8.tgz",
"integrity": "sha1-6Vc36LtnRt3t9pxVaVNJTxlv5po=",
"dev": true,
"requires": {
"@nodelib/fs.scandir": "2.1.5",
"fastq": "^1.6.0"
}
},
"@types/debug": {
"version": "4.1.7",
"resolved": "https://registry.nlark.com/@types/debug/download/@types/debug-4.1.7.tgz?cache=0&sync_timestamp=1629707621172&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40types%2Fdebug%2Fdownload%2F%40types%2Fdebug-4.1.7.tgz",
"integrity": "sha1-fMDqdhUJEkcJuLLRCQ2PbBeq24I=",
"dev": true,
"requires": {
"@types/ms": "*"
}
},
"@types/fs-extra": {
"version": "9.0.13",
"resolved": "https://registry.npmmirror.com/@types/fs-extra/download/@types/fs-extra-9.0.13.tgz",
"integrity": "sha1-dZT7rgT+fxkYzos9IT90/0SsH0U=",
"dev": true,
"requires": {
"@types/node": "*"
}
},
"@types/hash-sum": {
"version": "1.0.0",
"resolved": "https://registry.npmmirror.com/@types/hash-sum/download/@types/hash-sum-1.0.0.tgz",
"integrity": "sha1-g49OhieIfUKxYtBfPZbKY2wrxQQ=",
"dev": true
},
"@types/linkify-it": {
"version": "3.0.2",
"resolved": "https://registry.npmmirror.com/@types/linkify-it/download/@types/linkify-it-3.0.2.tgz",
"integrity": "sha1-/SzS7bqn6qx+fzwXSLUqGRQ4Rsk=",
"dev": true
},
"@types/markdown-it": {
"version": "12.2.3",
"resolved": "https://registry.npmmirror.com/@types/markdown-it/download/@types/markdown-it-12.2.3.tgz",
"integrity": "sha1-DW9uXkE/jaqiZSKQRZe+PWzZO1E=",
"dev": true,
"requires": {
"@types/linkify-it": "*",
"@types/mdurl": "*"
}
},
"@types/mdurl": {
"version": "1.0.2",
"resolved": "https://registry.npmmirror.com/@types/mdurl/download/@types/mdurl-1.0.2.tgz",
"integrity": "sha1-4s6dg6YTus8oTHvn1JGUXjnh+Ok=",
"dev": true
},
"@types/ms": {
"version": "0.7.31",
"resolved": "https://registry.npmmirror.com/@types/ms/download/@types/ms-0.7.31.tgz",
"integrity": "sha1-MbfKZAcSij0rvCf+LSGzRTl/YZc=",
"dev": true
},
"@types/node": {
"version": "16.11.11",
"resolved": "https://registry.npmmirror.com/@types/node/download/@types/node-16.11.11.tgz",
"integrity": "sha512-KB0sixD67CeecHC33MYn+eYARkqTheIRNuu97y2XMjR7Wu3XibO1vaY6VBV6O/a89SPI81cEUIYT87UqUWlZNw==",
"dev": true
},
"@vitejs/plugin-vue": {
"version": "1.10.1",
"resolved": "https://registry.npmmirror.com/@vitejs/plugin-vue/download/@vitejs/plugin-vue-1.10.1.tgz",
"integrity": "sha512-oL76QETMSpVE9jIScirGB2bYJEVU/+r+g+K7oG+sXPs9TZljqveoVRsmLyXlMZTjpQkLL8gz527cW80NMGVKJg==",
"dev": true
},
"@vue/compiler-core": {
"version": "3.2.23",
"resolved": "https://registry.npmmirror.com/@vue/compiler-core/download/@vue/compiler-core-3.2.23.tgz",
"integrity": "sha512-4ZhiI/orx+7EJ1B+0zjgvXMV2uRN+XBfG06UN2sJfND9rH5gtEQT3QmO4erum1o6Irl7y754W8/KSaDJh4EUQg==",
"dev": true,
"requires": {
"@babel/parser": "^7.15.0",
"@vue/shared": "3.2.23",
"estree-walker": "^2.0.2",
"source-map": "^0.6.1"
}
},
"@vue/compiler-dom": {
"version": "3.2.23",
"resolved": "https://registry.npmmirror.com/@vue/compiler-dom/download/@vue/compiler-dom-3.2.23.tgz",
"integrity": "sha512-X2Nw8QFc5lgoK3kio5ktM95nqmLUH+q+N/PbV4kCHzF1avqv/EGLnAhaaF0Iu4bewNvHJAAhhwPZFeoV/22nbw==",
"dev": true,
"requires": {
"@vue/compiler-core": "3.2.23",
"@vue/shared": "3.2.23"
}
},
"@vue/compiler-sfc": {
"version": "3.2.23",
"resolved": "https://registry.npmmirror.com/@vue/compiler-sfc/download/@vue/compiler-sfc-3.2.23.tgz",
"integrity": "sha512-Aw+pb50Q5zTjyvWod8mNKmYZDRGHJBptmNNWE+84ZxrzEztPgMz8cNYIzWGbwcFVkmJlhvioAMvKnB+LM/sjSA==",
"dev": true,
"requires": {
"@babel/parser": "^7.15.0",
"@vue/compiler-core": "3.2.23",
"@vue/compiler-dom": "3.2.23",
"@vue/compiler-ssr": "3.2.23",
"@vue/ref-transform": "3.2.23",
"@vue/shared": "3.2.23",
"estree-walker": "^2.0.2",
"magic-string": "^0.25.7",
"postcss": "^8.1.10",
"source-map": "^0.6.1"
}
},
"@vue/compiler-ssr": {
"version": "3.2.23",
"resolved": "https://registry.npmmirror.com/@vue/compiler-ssr/download/@vue/compiler-ssr-3.2.23.tgz",
"integrity": "sha512-Bqzn4jFyXPK1Ehqiq7e/czS8n62gtYF1Zfeu0DrR5uv+SBllh7LIvZjZU6+c8qbocAd3/T3I3gn2cZGmnDb6zg==",
"dev": true,
"requires": {
"@vue/compiler-dom": "3.2.23",
"@vue/shared": "3.2.23"
}
},
"@vue/devtools-api": {
"version": "6.0.0-beta.20.1",
"resolved": "https://registry.npmmirror.com/@vue/devtools-api/download/@vue/devtools-api-6.0.0-beta.20.1.tgz",
"integrity": "sha512-R2rfiRY+kZugzWh9ZyITaovx+jpU4vgivAEAiz80kvh3yviiTU3CBuGuyWpSwGz9/C7TkSWVM/FtQRGlZ16n8Q==",
"dev": true
},
"@vue/reactivity": {
"version": "3.2.23",
"resolved": "https://registry.npmmirror.com/@vue/reactivity/download/@vue/reactivity-3.2.23.tgz",
"integrity": "sha512-8RGVr/5Kpgb/EkCjgHXqttgA5IMc6n0lIXFY4TVbMkzdXrvaIhzBd7Te44oIDsTSYVKZLpfHd6/wEnuDqE8vFw==",
"dev": true,
"requires": {
"@vue/shared": "3.2.23"
}
},
"@vue/ref-transform": {
"version": "3.2.23",
"resolved": "https://registry.npmmirror.com/@vue/ref-transform/download/@vue/ref-transform-3.2.23.tgz",
"integrity": "sha512-gW0GD2PSAs/th7mC7tPB/UwpIQxclbApVtsDtscDmOJXb2+cdu60ny+SuHNgfrlUT/JqWKQHq7jFKO4woxLNaA==",
"dev": true,
"requires": {
"@babel/parser": "^7.15.0",
"@vue/compiler-core": "3.2.23",
"@vue/shared": "3.2.23",
"estree-walker": "^2.0.2",
"magic-string": "^0.25.7"
}
},
"@vue/runtime-core": {
"version": "3.2.23",
"resolved": "https://registry.npmmirror.com/@vue/runtime-core/download/@vue/runtime-core-3.2.23.tgz",
"integrity": "sha512-wSI5lmY2kCGLf89iiygqxVh6/5bsawz78Me9n1x4U2bHnN0yf3PWyuhN0WgIE8VfEaF7e75E333uboNEIFjgkg==",
"dev": true,
"requires": {
"@vue/reactivity": "3.2.23",
"@vue/shared": "3.2.23"
}
},
"@vue/runtime-dom": {
"version": "3.2.23",
"resolved": "https://registry.npmmirror.com/@vue/runtime-dom/download/@vue/runtime-dom-3.2.23.tgz",
"integrity": "sha512-z6lp0888NkLmxD9j2sGoll8Kb7J743s8s6w7GbiyUc4WZwm0KJ35B4qTFDMoIU0G7CatS6Z+yRTpPHc6srtByg==",
"dev": true,
"requires": {
"@vue/runtime-core": "3.2.23",
"@vue/shared": "3.2.23",
"csstype": "^2.6.8"
}
},
"@vue/server-renderer": {
"version": "3.2.23",
"resolved": "https://registry.npmmirror.com/@vue/server-renderer/download/@vue/server-renderer-3.2.23.tgz",
"integrity": "sha512-mgQ2VAE5WjeZELJKNbwE69uiBNpN+3LyL0ZDki1bJWVwHD2fhPfx7pwyYuiucE81xz2LxVsyGxhKKUL997g8vw==",
"dev": true,
"requires": {
"@vue/compiler-ssr": "3.2.23",
"@vue/shared": "3.2.23"
}
},
"@vue/shared": {
"version": "3.2.23",
"resolved": "https://registry.npmmirror.com/@vue/shared/download/@vue/shared-3.2.23.tgz",
"integrity": "sha512-U+/Jefa0QfXUF2qVy9Dqlrb6HKJSr9/wJcM66wXmWcTOoqg7hOWzF4qruDle51pyF4x3wMn6TSH54UdjKjCKMA==",
"dev": true
},
"@vuepress/bundler-vite": {
"version": "2.0.0-beta.27",
"resolved": "https://registry.npmmirror.com/@vuepress/bundler-vite/download/@vuepress/bundler-vite-2.0.0-beta.27.tgz",
"integrity": "sha1-cplwceCj4tu9damZ8niv7Ee8s0Q=",
"dev": true,
"requires": {
"@vitejs/plugin-vue": "^1.9.3",
"@vue/compiler-sfc": "^3.2.20",
"@vue/server-renderer": "^3.2.20",
"@vuepress/client": "2.0.0-beta.27",
"@vuepress/core": "2.0.0-beta.27",
"@vuepress/shared": "2.0.0-beta.27",
"@vuepress/utils": "2.0.0-beta.27",
"autoprefixer": "^10.3.7",
"connect-history-api-fallback": "^1.6.0",
"postcss": "^8.3.11",
"postcss-csso": "^5.0.1",
"rollup": "^2.58.3",
"vite": "^2.6.12",
"vue": "^3.2.20",
"vue-router": "^4.0.12"
}
},
"@vuepress/client": {
"version": "2.0.0-beta.27",
"resolved": "https://registry.npmmirror.com/@vuepress/client/download/@vuepress/client-2.0.0-beta.27.tgz?cache=0&sync_timestamp=1635481637009&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40vuepress%2Fclient%2Fdownload%2F%40vuepress%2Fclient-2.0.0-beta.27.tgz",
"integrity": "sha1-GoBabFGhqVF7B9omN1JZK+Hhe+s=",
"dev": true,
"requires": {
"@vuepress/shared": "2.0.0-beta.27",
"vue": "^3.2.20",
"vue-router": "^4.0.12"
}
},
"@vuepress/core": {
"version": "2.0.0-beta.27",
"resolved": "https://registry.npmmirror.com/@vuepress/core/download/@vuepress/core-2.0.0-beta.27.tgz?cache=0&sync_timestamp=1635479663289&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40vuepress%2Fcore%2Fdownload%2F%40vuepress%2Fcore-2.0.0-beta.27.tgz",
"integrity": "sha1-NfJm2kw8jX2iy2Mlxuars7adlSI=",
"dev": true,
"requires": {
"@vuepress/client": "2.0.0-beta.27",
"@vuepress/markdown": "2.0.0-beta.27",
"@vuepress/shared": "2.0.0-beta.27",
"@vuepress/utils": "2.0.0-beta.27",
"gray-matter": "^4.0.3",
"toml": "^3.0.0"
}
},
"@vuepress/markdown": {
"version": "2.0.0-beta.27",
"resolved": "https://registry.npmmirror.com/@vuepress/markdown/download/@vuepress/markdown-2.0.0-beta.27.tgz",
"integrity": "sha1-IewmXSEN/tWFoMQ09E0F85FUlRM=",
"dev": true,
"requires": {
"@types/markdown-it": "^12.2.3",
"@vuepress/shared": "2.0.0-beta.27",
"@vuepress/utils": "2.0.0-beta.27",
"markdown-it": "^12.2.0",
"markdown-it-anchor": "^8.4.1",
"markdown-it-emoji": "^2.0.0",
"mdurl": "^1.0.1"
}
},
"@vuepress/plugin-active-header-links": {
"version": "2.0.0-beta.27",
"resolved": "https://registry.npmmirror.com/@vuepress/plugin-active-header-links/download/@vuepress/plugin-active-header-links-2.0.0-beta.27.tgz",
"integrity": "sha1-UsGjE8yELr4AveyKjE1kl8YvI/Q=",
"dev": true,
"requires": {
"@vuepress/client": "2.0.0-beta.27",
"@vuepress/core": "2.0.0-beta.27",
"@vuepress/utils": "2.0.0-beta.27",
"ts-debounce": "^3.0.0",
"vue": "^3.2.20",
"vue-router": "^4.0.12"
}
},
"@vuepress/plugin-back-to-top": {
"version": "2.0.0-beta.27",
"resolved": "https://registry.npmmirror.com/@vuepress/plugin-back-to-top/download/@vuepress/plugin-back-to-top-2.0.0-beta.27.tgz",
"integrity": "sha1-Jxzu7iyQlhTa1pYjp4NmJGf9V7c=",
"dev": true,
"requires": {
"@vuepress/core": "2.0.0-beta.27",
"@vuepress/utils": "2.0.0-beta.27",
"ts-debounce": "^3.0.0",
"vue": "^3.2.20"
}
},
"@vuepress/plugin-container": {
"version": "2.0.0-beta.27",
"resolved": "https://registry.npmmirror.com/@vuepress/plugin-container/download/@vuepress/plugin-container-2.0.0-beta.27.tgz?cache=0&sync_timestamp=1635481645517&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40vuepress%2Fplugin-container%2Fdownload%2F%40vuepress%2Fplugin-container-2.0.0-beta.27.tgz",
"integrity": "sha1-Pmgzw68t/m4NhNf5A1v45yQM3qE=",
"dev": true,
"requires": {
"@types/markdown-it": "^12.2.3",
"@vuepress/core": "2.0.0-beta.27",
"@vuepress/markdown": "2.0.0-beta.27",
"@vuepress/shared": "2.0.0-beta.27",
"@vuepress/utils": "2.0.0-beta.27",
"markdown-it": "^12.2.0",
"markdown-it-container": "^3.0.0"
}
},
"@vuepress/plugin-git": {
"version": "2.0.0-beta.27",
"resolved": "https://registry.npmmirror.com/@vuepress/plugin-git/download/@vuepress/plugin-git-2.0.0-beta.27.tgz",
"integrity": "sha1-2+rVZYvnZXSGOz72MeyaqmVhQ7I=",
"dev": true,
"requires": {
"@vuepress/core": "2.0.0-beta.27",
"execa": "^5.1.1"
}
},
"@vuepress/plugin-medium-zoom": {
"version": "2.0.0-beta.27",
"resolved": "https://registry.npmmirror.com/@vuepress/plugin-medium-zoom/download/@vuepress/plugin-medium-zoom-2.0.0-beta.27.tgz",
"integrity": "sha1-DfRpXPjOALoBlGFpe1O91lUOh0M=",
"dev": true,
"requires": {
"@vuepress/client": "2.0.0-beta.27",
"@vuepress/core": "2.0.0-beta.27",
"@vuepress/utils": "2.0.0-beta.27",
"medium-zoom": "^1.0.6",
"vue": "^3.2.20"
}
},
"@vuepress/plugin-nprogress": {
"version": "2.0.0-beta.27",
"resolved": "https://registry.npmmirror.com/@vuepress/plugin-nprogress/download/@vuepress/plugin-nprogress-2.0.0-beta.27.tgz?cache=0&sync_timestamp=1635479601345&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40vuepress%2Fplugin-nprogress%2Fdownload%2F%40vuepress%2Fplugin-nprogress-2.0.0-beta.27.tgz",
"integrity": "sha1-sg99BJOj8R1XX6TZvEcTjJUvhxY=",
"dev": true,
"requires": {
"@vuepress/client": "2.0.0-beta.27",
"@vuepress/core": "2.0.0-beta.27",
"@vuepress/utils": "2.0.0-beta.27",
"nprogress": "^0.2.0",
"vue": "^3.2.20",
"vue-router": "^4.0.12"
}
},
"@vuepress/plugin-palette": {
"version": "2.0.0-beta.27",
"resolved": "https://registry.npmmirror.com/@vuepress/plugin-palette/download/@vuepress/plugin-palette-2.0.0-beta.27.tgz",
"integrity": "sha1-+FA998nCTxF4Pe/+fB0pTNlWjv4=",
"dev": true,
"requires": {
"@vuepress/core": "2.0.0-beta.27",
"@vuepress/utils": "2.0.0-beta.27",
"chokidar": "^3.5.2"
}
},
"@vuepress/plugin-prismjs": {
"version": "2.0.0-beta.27",
"resolved": "https://registry.npmmirror.com/@vuepress/plugin-prismjs/download/@vuepress/plugin-prismjs-2.0.0-beta.27.tgz",
"integrity": "sha1-mbQZf2D0Am4yrBspDTayAyn2DWA=",
"dev": true,
"requires": {
"@vuepress/core": "2.0.0-beta.27",
"prismjs": "^1.25.0"
}
},
"@vuepress/plugin-theme-data": {
"version": "2.0.0-beta.27",
"resolved": "https://registry.npmmirror.com/@vuepress/plugin-theme-data/download/@vuepress/plugin-theme-data-2.0.0-beta.27.tgz",
"integrity": "sha1-NAZHR/13wnZpwsdxPJVrVnQv/+0=",
"dev": true,
"requires": {
"@vuepress/client": "2.0.0-beta.27",
"@vuepress/core": "2.0.0-beta.27",
"@vuepress/shared": "2.0.0-beta.27",
"@vuepress/utils": "2.0.0-beta.27",
"vue": "^3.2.20"
}
},
"@vuepress/shared": {
"version": "2.0.0-beta.27",
"resolved": "https://registry.npmmirror.com/@vuepress/shared/download/@vuepress/shared-2.0.0-beta.27.tgz?cache=0&sync_timestamp=1635481644109&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40vuepress%2Fshared%2Fdownload%2F%40vuepress%2Fshared-2.0.0-beta.27.tgz",
"integrity": "sha1-1A67V8iFMo6AxCFXgVWBHee/7p0=",
"dev": true,
"requires": {
"@vue/shared": "^3.2.20"
}
},
"@vuepress/theme-default": {
"version": "2.0.0-beta.27",
"resolved": "https://registry.npmmirror.com/@vuepress/theme-default/download/@vuepress/theme-default-2.0.0-beta.27.tgz?cache=0&sync_timestamp=1635479665522&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40vuepress%2Ftheme-default%2Fdownload%2F%40vuepress%2Ftheme-default-2.0.0-beta.27.tgz",
"integrity": "sha1-VintJiEMTbLJjbfb10+q5hkccy0=",
"dev": true,
"requires": {
"@vuepress/client": "2.0.0-beta.27",
"@vuepress/core": "2.0.0-beta.27",
"@vuepress/plugin-active-header-links": "2.0.0-beta.27",
"@vuepress/plugin-back-to-top": "2.0.0-beta.27",
"@vuepress/plugin-container": "2.0.0-beta.27",
"@vuepress/plugin-git": "2.0.0-beta.27",
"@vuepress/plugin-medium-zoom": "2.0.0-beta.27",
"@vuepress/plugin-nprogress": "2.0.0-beta.27",
"@vuepress/plugin-palette": "2.0.0-beta.27",
"@vuepress/plugin-prismjs": "2.0.0-beta.27",
"@vuepress/plugin-theme-data": "2.0.0-beta.27",
"@vuepress/shared": "2.0.0-beta.27",
"@vuepress/utils": "2.0.0-beta.27",
"@vueuse/core": "^6.7.3",
"sass": "^1.43.4",
"sass-loader": "^12.2.0",
"vue": "^3.2.20",
"vue-router": "^4.0.12"
}
},
"@vuepress/utils": {
"version": "2.0.0-beta.27",
"resolved": "https://registry.npmmirror.com/@vuepress/utils/download/@vuepress/utils-2.0.0-beta.27.tgz?cache=0&sync_timestamp=1635481644544&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2F%40vuepress%2Futils%2Fdownload%2F%40vuepress%2Futils-2.0.0-beta.27.tgz",
"integrity": "sha1-0RJopRX7r3gYtoPmUfW8y4bZqOA=",
"dev": true,
"requires": {
"@types/debug": "^4.1.7",
"@types/fs-extra": "^9.0.13",
"@types/hash-sum": "^1.0.0",
"@vuepress/shared": "2.0.0-beta.27",
"chalk": "^4.1.2",
"debug": "^4.3.2",
"fs-extra": "^10.0.0",
"globby": "^11.0.4",
"hash-sum": "^2.0.0",
"ora": "^5.4.1",
"upath": "^2.0.1"
}
},
"@vueuse/core": {
"version": "6.9.2",
"resolved": "https://registry.npmmirror.com/@vueuse/core/download/@vueuse/core-6.9.2.tgz",
"integrity": "sha512-FRwl4ccSFuHZBHLGgS9TMv/+Dd6XFaL4o9nph2qtgQIV+z29RBFokw08XjHfykiENRzB01MjYHJ7iRUnsIFQXg==",
"dev": true,
"requires": {
"@vueuse/shared": "6.9.2",
"vue-demi": "*"
}
},
"@vueuse/shared": {
"version": "6.9.2",
"resolved": "https://registry.npmmirror.com/@vueuse/shared/download/@vueuse/shared-6.9.2.tgz",
"integrity": "sha512-lAiMh6XROs0kSKVd0Yb/6GKoQMxC1fYrFDi6opvQWISPtcqRNluRrQxLUZ3WTI78ovtoKRLktjhkFAtydcfFDg==",
"dev": true,
"requires": {
"vue-demi": "*"
}
},
"abab": {
"version": "2.0.5",
"resolved": "https://registry.npm.taobao.org/abab/download/abab-2.0.5.tgz",
"integrity": "sha1-wLZ4+zLWD8EhnHhNaoJv44Wut5o=",
"optional": true
},
"abbrev": {
"version": "1.1.1",
"resolved": "http://registry.npm.taobao.org/abbrev/download/abbrev-1.1.1.tgz",
"integrity": "sha1-+PLIh60Qv2f2NPAFtph/7TF5qsg=",
"optional": true
},
"acorn": {
"version": "7.4.1",
"resolved": "https://registry.npmmirror.com/acorn/download/acorn-7.4.1.tgz?cache=0&sync_timestamp=1637225482419&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Facorn%2Fdownload%2Facorn-7.4.1.tgz",
"integrity": "sha1-/q7SVZc9LndVW4PbwIhRpsY1IPo=",
"optional": true
},
"acorn-globals": {
"version": "4.3.4",
"resolved": "https://registry.npm.taobao.org/acorn-globals/download/acorn-globals-4.3.4.tgz?cache=0&sync_timestamp=1583643398087&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Facorn-globals%2Fdownload%2Facorn-globals-4.3.4.tgz",
"integrity": "sha1-n6GSat3BHJcwjE5m163Q1Awycuc=",
"optional": true,
"requires": {
"acorn": "^6.0.1",
"acorn-walk": "^6.0.1"
},
"dependencies": {
"acorn": {
"version": "6.4.2",
"resolved": "https://registry.npmmirror.com/acorn/download/acorn-6.4.2.tgz?cache=0&sync_timestamp=1637225482419&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Facorn%2Fdownload%2Facorn-6.4.2.tgz",
"integrity": "sha1-NYZv1xBSjpLeEM8GAWSY5H454eY=",
"optional": true
}
}
},
"acorn-walk": {
"version": "6.2.0",
"resolved": "https://registry.npmmirror.com/acorn-walk/download/acorn-walk-6.2.0.tgz",
"integrity": "sha1-Ejy487hMIXHx9/slJhWxx4prGow=",
"optional": true
},
"agent-base": {
"version": "6.0.2",
"resolved": "https://registry.npm.taobao.org/agent-base/download/agent-base-6.0.2.tgz",
"integrity": "sha1-Sf/1hXfP7j83F2/qtMIuAPhtf3c=",
"optional": true,
"requires": {
"debug": "4"
}
},
"ajv": {
"version": "6.12.6",
"resolved": "https://registry.npmmirror.com/ajv/download/ajv-6.12.6.tgz?cache=0&sync_timestamp=1637523008505&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fajv%2Fdownload%2Fajv-6.12.6.tgz",
"integrity": "sha1-uvWmLoArB9l3A0WG+MO69a3ybfQ=",
"optional": true,
"requires": {
"fast-deep-equal": "^3.1.1",
"fast-json-stable-stringify": "^2.0.0",
"json-schema-traverse": "^0.4.1",
"uri-js": "^4.2.2"
}
},
"ansi-regex": {
"version": "5.0.1",
"resolved": "https://registry.nlark.com/ansi-regex/download/ansi-regex-5.0.1.tgz",
"integrity": "sha1-CCyyyJyf6GWaMRpTvWpNxTAdswQ="
},
"ansi-styles": {
"version": "4.3.0",
"resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-4.3.0.tgz?cache=0&sync_timestamp=1618995588464&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fansi-styles%2Fdownload%2Fansi-styles-4.3.0.tgz",
"integrity": "sha1-7dgDYornHATIWuegkG7a00tkiTc=",
"dev": true,
"requires": {
"color-convert": "^2.0.1"
}
},
"anymatch": {
"version": "3.1.2",
"resolved": "https://registry.npm.taobao.org/anymatch/download/anymatch-3.1.2.tgz",
"integrity": "sha1-wFV8CWrzLxBhmPT04qODU343hxY=",
"dev": true,
"requires": {
"normalize-path": "^3.0.0",
"picomatch": "^2.0.4"
}
},
"aproba": {
"version": "2.0.0",
"resolved": "http://registry.npm.taobao.org/aproba/download/aproba-2.0.0.tgz",
"integrity": "sha1-UlILiuW1aSFbNU78DKo/4eRaitw=",
"optional": true
},
"are-we-there-yet": {
"version": "2.0.0",
"resolved": "https://registry.nlark.com/are-we-there-yet/download/are-we-there-yet-2.0.0.tgz?cache=0&sync_timestamp=1630592845804&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fare-we-there-yet%2Fdownload%2Fare-we-there-yet-2.0.0.tgz",
"integrity": "sha1-Ny4Oe9J52OlMZTqqH2cgCIS/Phw=",
"optional": true,
"requires": {
"delegates": "^1.0.0",
"readable-stream": "^3.6.0"
}
},
"argparse": {
"version": "2.0.1",
"resolved": "https://registry.npm.taobao.org/argparse/download/argparse-2.0.1.tgz",
"integrity": "sha1-JG9Q88p4oyQPbJl+ipvR6sSeSzg=",
"dev": true
},
"array-equal": {
"version": "1.0.0",
"resolved": "http://registry.npm.taobao.org/array-equal/download/array-equal-1.0.0.tgz",
"integrity": "sha1-jCpe8kcv2ep0KwTHenUJO6J1fJM=",
"optional": true
},
"array-union": {
"version": "2.1.0",
"resolved": "https://registry.npm.taobao.org/array-union/download/array-union-2.1.0.tgz",
"integrity": "sha1-t5hCCtvrHego2ErNii4j0+/oXo0=",
"dev": true
},
"asn1": {
"version": "0.2.6",
"resolved": "https://registry.npmmirror.com/asn1/download/asn1-0.2.6.tgz?cache=0&sync_timestamp=1635986937345&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fasn1%2Fdownload%2Fasn1-0.2.6.tgz",
"integrity": "sha1-DTp7tuZOAqkMAwOzHykoaOoJoI0=",
"optional": true,
"requires": {
"safer-buffer": "~2.1.0"
}
},
"assert-plus": {
"version": "1.0.0",
"resolved": "http://registry.npm.taobao.org/assert-plus/download/assert-plus-1.0.0.tgz",
"integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=",
"optional": true
},
"asynckit": {
"version": "0.4.0",
"resolved": "http://registry.npm.taobao.org/asynckit/download/asynckit-0.4.0.tgz",
"integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=",
"optional": true
},
"autoprefixer": {
"version": "10.4.0",
"resolved": "https://registry.npmmirror.com/autoprefixer/download/autoprefixer-10.4.0.tgz",
"integrity": "sha1-w1d+syoQeaRA7CU+QE6vHrITiMg=",
"dev": true,
"requires": {
"browserslist": "^4.17.5",
"caniuse-lite": "^1.0.30001272",
"fraction.js": "^4.1.1",
"normalize-range": "^0.1.2",
"picocolors": "^1.0.0",
"postcss-value-parser": "^4.1.0"
}
},
"aws-sign2": {
"version": "0.7.0",
"resolved": "http://registry.npm.taobao.org/aws-sign2/download/aws-sign2-0.7.0.tgz",
"integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=",
"optional": true
},
"aws4": {
"version": "1.11.0",
"resolved": "https://registry.npm.taobao.org/aws4/download/aws4-1.11.0.tgz",
"integrity": "sha1-1h9G2DslGSUOJ4Ta9bCUeai0HFk=",
"optional": true
},
"balanced-match": {
"version": "1.0.2",
"resolved": "https://registry.nlark.com/balanced-match/download/balanced-match-1.0.2.tgz",
"integrity": "sha1-6D46fj8wCzTLnYf2FfoMvzV2kO4=",
"optional": true
},
"base64-js": {
"version": "1.5.1",
"resolved": "https://registry.npm.taobao.org/base64-js/download/base64-js-1.5.1.tgz",
"integrity": "sha1-GxtEAWClv3rUC2UPCVljSBkDkwo=",
"dev": true
},
"bcrypt-pbkdf": {
"version": "1.0.2",
"resolved": "http://registry.npm.taobao.org/bcrypt-pbkdf/download/bcrypt-pbkdf-1.0.2.tgz",
"integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=",
"optional": true,
"requires": {
"tweetnacl": "^0.14.3"
}
},
"binary-extensions": {
"version": "2.2.0",
"resolved": "https://registry.npm.taobao.org/binary-extensions/download/binary-extensions-2.2.0.tgz?cache=0&sync_timestamp=1610299754511&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fbinary-extensions%2Fdownload%2Fbinary-extensions-2.2.0.tgz",
"integrity": "sha1-dfUC7q+f/eQvyYgpZFvk6na9ni0=",
"dev": true
},
"bl": {
"version": "4.1.0",
"resolved": "https://registry.nlark.com/bl/download/bl-4.1.0.tgz",
"integrity": "sha1-RRU1JkGCvsL7vIOmKrmM8R2fezo=",
"dev": true,
"requires": {
"buffer": "^5.5.0",
"inherits": "^2.0.4",
"readable-stream": "^3.4.0"
}
},
"brace-expansion": {
"version": "1.1.11",
"resolved": "https://registry.npm.taobao.org/brace-expansion/download/brace-expansion-1.1.11.tgz?cache=0&sync_timestamp=1614011092368&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fbrace-expansion%2Fdownload%2Fbrace-expansion-1.1.11.tgz",
"integrity": "sha1-PH/L9SnYcibz0vUrlm/1Jx60Qd0=",
"optional": true,
"requires": {
"balanced-match": "^1.0.0",
"concat-map": "0.0.1"
}
},
"braces": {
"version": "3.0.2",
"resolved": "http://registry.npm.taobao.org/braces/download/braces-3.0.2.tgz",
"integrity": "sha1-NFThpGLujVmeI23zNs2epPiv4Qc=",
"dev": true,
"requires": {
"fill-range": "^7.0.1"
}
},
"browser-process-hrtime": {
"version": "1.0.0",
"resolved": "http://registry.npm.taobao.org/browser-process-hrtime/download/browser-process-hrtime-1.0.0.tgz",
"integrity": "sha1-PJtLfXgsgSHlbxAQbYTA0P/JRiY=",
"optional": true
},
"browserslist": {
"version": "4.18.1",
"resolved": "https://registry.npmmirror.com/browserslist/download/browserslist-4.18.1.tgz?cache=0&sync_timestamp=1636994406288&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fbrowserslist%2Fdownload%2Fbrowserslist-4.18.1.tgz",
"integrity": "sha512-8ScCzdpPwR2wQh8IT82CA2VgDwjHyqMovPBZSNH54+tm4Jk2pCuv90gmAdH6J84OCRWi0b4gMe6O6XPXuJnjgQ==",
"dev": true,
"requires": {
"caniuse-lite": "^1.0.30001280",
"electron-to-chromium": "^1.3.896",
"escalade": "^3.1.1",
"node-releases": "^2.0.1",
"picocolors": "^1.0.0"
}
},
"buffer": {
"version": "5.7.1",
"resolved": "https://registry.npm.taobao.org/buffer/download/buffer-5.7.1.tgz?cache=0&sync_timestamp=1606098184526&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fbuffer%2Fdownload%2Fbuffer-5.7.1.tgz",
"integrity": "sha1-umLnwTEzBTWCGXFghRqPZI6Z7tA=",
"dev": true,
"requires": {
"base64-js": "^1.3.1",
"ieee754": "^1.1.13"
}
},
"cac": {
"version": "6.7.12",
"resolved": "https://registry.npmmirror.com/cac/download/cac-6.7.12.tgz?cache=0&sync_timestamp=1636680961222&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fcac%2Fdownload%2Fcac-6.7.12.tgz",
"integrity": "sha512-rM7E2ygtMkJqD9c7WnFU6fruFcN3xe4FM5yUmgxhZzIKJk4uHl9U/fhwdajGFQbQuv43FAUo1Fe8gX/oIKDeSA==",
"dev": true
},
"caniuse-lite": {
"version": "1.0.30001284",
"resolved": "https://registry.npmmirror.com/caniuse-lite/download/caniuse-lite-1.0.30001284.tgz",
"integrity": "sha512-t28SKa7g6kiIQi6NHeOcKrOrGMzCRrXvlasPwWC26TH2QNdglgzQIRUuJ0cR3NeQPH+5jpuveeeSFDLm2zbkEw==",
"dev": true
},
"canvas": {
"version": "2.8.0",
"resolved": "https://registry.nlark.com/canvas/download/canvas-2.8.0.tgz",
"integrity": "sha1-+Zyn8l5uJmhmYf+k/sEjm773RGE=",
"optional": true,
"requires": {
"@mapbox/node-pre-gyp": "^1.0.0",
"nan": "^2.14.0",
"simple-get": "^3.0.3"
}
},
"caseless": {
"version": "0.12.0",
"resolved": "http://registry.npm.taobao.org/caseless/download/caseless-0.12.0.tgz",
"integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=",
"optional": true
},
"chalk": {
"version": "4.1.2",
"resolved": "https://registry.npmmirror.com/chalk/download/chalk-4.1.2.tgz",
"integrity": "sha1-qsTit3NKdAhnrrFr8CqtVWoeegE=",
"dev": true,
"requires": {
"ansi-styles": "^4.1.0",
"supports-color": "^7.1.0"
}
},
"chokidar": {
"version": "3.5.2",
"resolved": "https://registry.npmmirror.com/chokidar/download/chokidar-3.5.2.tgz",
"integrity": "sha1-26OXb8rbAW9m/TZQIdkWANAcHnU=",
"dev": true,
"requires": {
"anymatch": "~3.1.2",
"braces": "~3.0.2",
"fsevents": "~2.3.2",
"glob-parent": "~5.1.2",
"is-binary-path": "~2.1.0",
"is-glob": "~4.0.1",
"normalize-path": "~3.0.0",
"readdirp": "~3.6.0"
}
},
"chownr": {
"version": "2.0.0",
"resolved": "https://registry.npm.taobao.org/chownr/download/chownr-2.0.0.tgz",
"integrity": "sha1-Fb++U9LqtM9w8YqM1o6+Wzyx3s4=",
"optional": true
},
"cli-cursor": {
"version": "3.1.0",
"resolved": "https://registry.nlark.com/cli-cursor/download/cli-cursor-3.1.0.tgz",
"integrity": "sha1-JkMFp65JDR0Dvwybp8kl0XU68wc=",
"dev": true,
"requires": {
"restore-cursor": "^3.1.0"
}
},
"cli-spinners": {
"version": "2.6.1",
"resolved": "https://registry.npmmirror.com/cli-spinners/download/cli-spinners-2.6.1.tgz",
"integrity": "sha1-rclU6+KBw3pjGb+kAebdJIj/tw0=",
"dev": true
},
"clone": {
"version": "1.0.4",
"resolved": "http://registry.npm.taobao.org/clone/download/clone-1.0.4.tgz",
"integrity": "sha1-2jCcwmPfFZlMaIypAheco8fNfH4=",
"dev": true
},
"color-convert": {
"version": "2.0.1",
"resolved": "https://registry.npm.taobao.org/color-convert/download/color-convert-2.0.1.tgz",
"integrity": "sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=",
"dev": true,
"requires": {
"color-name": "~1.1.4"
}
},
"color-name": {
"version": "1.1.4",
"resolved": "http://registry.npm.taobao.org/color-name/download/color-name-1.1.4.tgz",
"integrity": "sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=",
"dev": true
},
"color-support": {
"version": "1.1.3",
"resolved": "https://registry.npm.taobao.org/color-support/download/color-support-1.1.3.tgz",
"integrity": "sha1-k4NDeaHMmgxh+C9S8NBDIiUb1aI=",
"optional": true
},
"combined-stream": {
"version": "1.0.8",
"resolved": "https://registry.npm.taobao.org/combined-stream/download/combined-stream-1.0.8.tgz",
"integrity": "sha1-w9RaizT9cwYxoRCoolIGgrMdWn8=",
"optional": true,
"requires": {
"delayed-stream": "~1.0.0"
}
},
"concat-map": {
"version": "0.0.1",
"resolved": "http://registry.npm.taobao.org/concat-map/download/concat-map-0.0.1.tgz",
"integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=",
"optional": true
},
"connect-history-api-fallback": {
"version": "1.6.0",
"resolved": "http://registry.npm.taobao.org/connect-history-api-fallback/download/connect-history-api-fallback-1.6.0.tgz",
"integrity": "sha1-izIIk1kwjRERFdgcrT/Oq4iPl7w=",
"dev": true
},
"console-control-strings": {
"version": "1.1.0",
"resolved": "http://registry.npm.taobao.org/console-control-strings/download/console-control-strings-1.1.0.tgz",
"integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=",
"optional": true
},
"core-util-is": {
"version": "1.0.2",
"resolved": "https://registry.nlark.com/core-util-is/download/core-util-is-1.0.2.tgz",
"integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=",
"optional": true
},
"cross-spawn": {
"version": "7.0.3",
"resolved": "https://registry.npm.taobao.org/cross-spawn/download/cross-spawn-7.0.3.tgz?cache=0&sync_timestamp=1590421014780&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcross-spawn%2Fdownload%2Fcross-spawn-7.0.3.tgz",
"integrity": "sha1-9zqFudXUHQRVUcF34ogtSshXKKY=",
"dev": true,
"requires": {
"path-key": "^3.1.0",
"shebang-command": "^2.0.0",
"which": "^2.0.1"
}
},
"css-tree": {
"version": "1.1.3",
"resolved": "https://registry.nlark.com/css-tree/download/css-tree-1.1.3.tgz",
"integrity": "sha1-60hw+2/XcHMn7JXC/yqwm16NuR0=",
"dev": true,
"requires": {
"mdn-data": "2.0.14",
"source-map": "^0.6.1"
}
},
"csso": {
"version": "4.2.0",
"resolved": "https://registry.npm.taobao.org/csso/download/csso-4.2.0.tgz",
"integrity": "sha1-6jpWE0bo3J9UbW/r7dUBh884lSk=",
"dev": true,
"requires": {
"css-tree": "^1.1.2"
}
},
"cssom": {
"version": "0.4.4",
"resolved": "https://registry.nlark.com/cssom/download/cssom-0.4.4.tgz",
"integrity": "sha1-WmbPk9LQtmHYC/akT7ZfXC5OChA=",
"optional": true
},
"cssstyle": {
"version": "2.3.0",
"resolved": "https://registry.npm.taobao.org/cssstyle/download/cssstyle-2.3.0.tgz?cache=0&sync_timestamp=1588172460621&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fcssstyle%2Fdownload%2Fcssstyle-2.3.0.tgz",
"integrity": "sha1-/2ZaDdvcMYZLCWR/NBY0Q9kLCFI=",
"optional": true,
"requires": {
"cssom": "~0.3.6"
},
"dependencies": {
"cssom": {
"version": "0.3.8",
"resolved": "https://registry.nlark.com/cssom/download/cssom-0.3.8.tgz",
"integrity": "sha1-nxJ29bK0Y/IRTT8sdSUK+MGjb0o=",
"optional": true
}
}
},
"csstype": {
"version": "2.6.19",
"resolved": "https://registry.npmmirror.com/csstype/download/csstype-2.6.19.tgz?cache=0&sync_timestamp=1637224507298&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fcsstype%2Fdownload%2Fcsstype-2.6.19.tgz",
"integrity": "sha512-ZVxXaNy28/k3kJg0Fou5MiYpp88j7H9hLZp8PDC3jV0WFjfH5E9xHb56L0W59cPbKbcHXeP4qyT8PrHp8t6LcQ==",
"dev": true
},
"dashdash": {
"version": "1.14.1",
"resolved": "https://registry.npm.taobao.org/dashdash/download/dashdash-1.14.1.tgz",
"integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=",
"optional": true,
"requires": {
"assert-plus": "^1.0.0"
}
},
"data-urls": {
"version": "1.1.0",
"resolved": "https://registry.npmmirror.com/data-urls/download/data-urls-1.1.0.tgz",
"integrity": "sha1-Fe4Fgrql4iu1nHcUDaj5x2lju/4=",
"optional": true,
"requires": {
"abab": "^2.0.0",
"whatwg-mimetype": "^2.2.0",
"whatwg-url": "^7.0.0"
},
"dependencies": {
"tr46": {
"version": "1.0.1",
"resolved": "https://registry.npmmirror.com/tr46/download/tr46-1.0.1.tgz",
"integrity": "sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk=",
"optional": true,
"requires": {
"punycode": "^2.1.0"
}
},
"webidl-conversions": {
"version": "4.0.2",
"resolved": "https://registry.nlark.com/webidl-conversions/download/webidl-conversions-4.0.2.tgz?cache=0&sync_timestamp=1631409524428&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fwebidl-conversions%2Fdownload%2Fwebidl-conversions-4.0.2.tgz",
"integrity": "sha1-qFWYCx8LazWbodXZ+zmulB+qY60=",
"optional": true
},
"whatwg-url": {
"version": "7.1.0",
"resolved": "https://registry.npmmirror.com/whatwg-url/download/whatwg-url-7.1.0.tgz",
"integrity": "sha1-wsSS8eymEpiO/T0iZr4bn8YXDQY=",
"optional": true,
"requires": {
"lodash.sortby": "^4.7.0",
"tr46": "^1.0.1",
"webidl-conversions": "^4.0.2"
}
}
}
},
"debug": {
"version": "4.3.3",
"resolved": "https://registry.npmmirror.com/debug/download/debug-4.3.3.tgz",
"integrity": "sha512-/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q==",
"requires": {
"ms": "2.1.2"
}
},
"decompress-response": {
"version": "4.2.1",
"resolved": "https://registry.npm.taobao.org/decompress-response/download/decompress-response-4.2.1.tgz",
"integrity": "sha1-QUAjzHowLaJc4uyC0NUjjMr9iYY=",
"optional": true,
"requires": {
"mimic-response": "^2.0.0"
}
},
"deep-is": {
"version": "0.1.4",
"resolved": "https://registry.nlark.com/deep-is/download/deep-is-0.1.4.tgz?cache=0&sync_timestamp=1630775322928&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fdeep-is%2Fdownload%2Fdeep-is-0.1.4.tgz",
"integrity": "sha1-pvLc5hL63S7x9Rm3NVHxfoUZmDE=",