-
Notifications
You must be signed in to change notification settings - Fork 90
/
yarn.lock
7300 lines (6293 loc) · 258 KB
/
yarn.lock
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
# yarn lockfile v1
"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.5.5":
"integrity" "sha1-vAeC9tafe31JUxIZaZuYj2aaj50="
"resolved" "https://registry.npm.taobao.org/@babel/code-frame/download/@babel/code-frame-7.5.5.tgz"
"version" "7.5.5"
dependencies:
"@babel/highlight" "^7.0.0"
"@babel/generator@^7.7.4":
"integrity" "sha1-22UeKEDKmqZvMn3OwdxfX6lhE2k="
"resolved" "https://registry.npm.taobao.org/@babel/generator/download/@babel/generator-7.7.4.tgz"
"version" "7.7.4"
dependencies:
"@babel/types" "^7.7.4"
"jsesc" "^2.5.1"
"lodash" "^4.17.13"
"source-map" "^0.5.0"
"@babel/helper-function-name@^7.7.4":
"integrity" "sha1-q24EHnE11DbY8KPsoV3ltno0Gi4="
"resolved" "https://registry.npm.taobao.org/@babel/helper-function-name/download/@babel/helper-function-name-7.7.4.tgz?cache=0&sync_timestamp=1574465630791&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-function-name%2Fdownload%2F%40babel%2Fhelper-function-name-7.7.4.tgz"
"version" "7.7.4"
dependencies:
"@babel/helper-get-function-arity" "^7.7.4"
"@babel/template" "^7.7.4"
"@babel/types" "^7.7.4"
"@babel/helper-get-function-arity@^7.7.4":
"integrity" "sha1-y0Y0jS+ICOYy8KsEgXITDmNgBfA="
"resolved" "https://registry.npm.taobao.org/@babel/helper-get-function-arity/download/@babel/helper-get-function-arity-7.7.4.tgz"
"version" "7.7.4"
dependencies:
"@babel/types" "^7.7.4"
"@babel/helper-split-export-declaration@^7.7.4":
"integrity" "sha1-Vykq9gRDxKNiLPdAQN3Cjmgzb9g="
"resolved" "https://registry.npm.taobao.org/@babel/helper-split-export-declaration/download/@babel/helper-split-export-declaration-7.7.4.tgz"
"version" "7.7.4"
dependencies:
"@babel/types" "^7.7.4"
"@babel/highlight@^7.0.0":
"integrity" "sha1-VtETEr2SSPphlZHQJHK+boyzJUA="
"resolved" "https://registry.npm.taobao.org/@babel/highlight/download/@babel/highlight-7.5.0.tgz?cache=0&sync_timestamp=1562245140883&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhighlight%2Fdownload%2F%40babel%2Fhighlight-7.5.0.tgz"
"version" "7.5.0"
dependencies:
"chalk" "^2.0.0"
"esutils" "^2.0.2"
"js-tokens" "^4.0.0"
"@babel/parser@^7.0.0", "@babel/parser@^7.7.4":
"integrity" "sha1-dastcRDCzy+pSZWa+wX6NG0iMbs="
"resolved" "https://registry.npm.taobao.org/@babel/parser/download/@babel/parser-7.7.4.tgz"
"version" "7.7.4"
"@babel/runtime@^7.7.2":
"integrity" "sha512-+AATMUFppJDw6aiR5NVPHqIQBlV/Pj8wY/EZH+lmvRdUo9xBaz/rF3alAwFJQavvKfeOlPE7oaaDHVbcySbCsg=="
"resolved" "https://registry.npmjs.org/@babel/runtime/-/runtime-7.8.7.tgz"
"version" "7.8.7"
dependencies:
"regenerator-runtime" "^0.13.4"
"@babel/template@^7.7.4":
"integrity" "sha1-Qop9nuz/4n3qwKmOI7+ONnXSp3s="
"resolved" "https://registry.npm.taobao.org/@babel/template/download/@babel/template-7.7.4.tgz?cache=0&sync_timestamp=1574465630781&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Ftemplate%2Fdownload%2F%40babel%2Ftemplate-7.7.4.tgz"
"version" "7.7.4"
dependencies:
"@babel/code-frame" "^7.0.0"
"@babel/parser" "^7.7.4"
"@babel/types" "^7.7.4"
"@babel/traverse@^7.0.0":
"integrity" "sha1-nB58YPtnn+T8+qQlAIMzM8IFhVg="
"resolved" "https://registry.npm.taobao.org/@babel/traverse/download/@babel/traverse-7.7.4.tgz?cache=0&sync_timestamp=1574465640801&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Ftraverse%2Fdownload%2F%40babel%2Ftraverse-7.7.4.tgz"
"version" "7.7.4"
dependencies:
"@babel/code-frame" "^7.5.5"
"@babel/generator" "^7.7.4"
"@babel/helper-function-name" "^7.7.4"
"@babel/helper-split-export-declaration" "^7.7.4"
"@babel/parser" "^7.7.4"
"@babel/types" "^7.7.4"
"debug" "^4.1.0"
"globals" "^11.1.0"
"lodash" "^4.17.13"
"@babel/types@^7.0.0", "@babel/types@^7.7.4":
"integrity" "sha1-UWVw1TnkTd8wjAdWnCWP+U/ekZM="
"resolved" "https://registry.npm.taobao.org/@babel/types/download/@babel/types-7.7.4.tgz?cache=0&sync_timestamp=1574465636802&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.7.4.tgz"
"version" "7.7.4"
dependencies:
"esutils" "^2.0.2"
"lodash" "^4.17.13"
"to-fast-properties" "^2.0.0"
"@jimp/bmp@^0.9.5":
"integrity" "sha512-2cYdgXaNykuPe9sjm11Jihp5VomyWTWziIuDDB7xnxQtEz2HUR0bjXm2MJJOfU0TL52H+LS2JIKtAxcLPzp28w=="
"resolved" "https://registry.npmjs.org/@jimp/bmp/-/bmp-0.9.5.tgz"
"version" "0.9.5"
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.9.5"
"bmp-js" "^0.1.0"
"core-js" "^3.4.1"
"@jimp/core@^0.9.5":
"integrity" "sha512-P1mlB9UOeI3IAQ4lGTmRBGw+F/mHWXd3tSyBskjL4E3YJ1eNK7WRrErUj/vUOvSBIryotu7nGo8vv8Q8JZ7/8w=="
"resolved" "https://registry.npmjs.org/@jimp/core/-/core-0.9.5.tgz"
"version" "0.9.5"
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.9.5"
"any-base" "^1.1.0"
"buffer" "^5.2.0"
"core-js" "^3.4.1"
"exif-parser" "^0.1.12"
"file-type" "^9.0.0"
"load-bmfont" "^1.3.1"
"mkdirp" "0.5.1"
"phin" "^2.9.1"
"pixelmatch" "^4.0.2"
"tinycolor2" "^1.4.1"
"@jimp/custom@^0.9.5", "@jimp/custom@>=0.3.5":
"integrity" "sha512-FaR7M0oxqbd7ujBL5ryyllS+mEuMKbKaDsdb8Cpu9SAo80DBiasUrYFFD/45/aRa95aM5o8t4C4Pna2bx8t3Tg=="
"resolved" "https://registry.npmjs.org/@jimp/custom/-/custom-0.9.5.tgz"
"version" "0.9.5"
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/core" "^0.9.5"
"core-js" "^3.4.1"
"@jimp/gif@^0.9.5":
"integrity" "sha512-QxjLl15nIz/QTeNgLFUJIOMLIceMO2B/xLUWF1/WqaP7Su6SGasRS6JY8OZ9QnqJLMWkodoEJmL6DxwtoOtqdg=="
"resolved" "https://registry.npmjs.org/@jimp/gif/-/gif-0.9.5.tgz"
"version" "0.9.5"
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.9.5"
"core-js" "^3.4.1"
"omggif" "^1.0.9"
"@jimp/jpeg@^0.9.5":
"integrity" "sha512-cBpXqmeegsLzf/mYk1WpYov2RH1W944re5P61/ag6AMWEMQ51BoBdgBy5JABZIELg2GQxpoG+g/KxUshRzeIAg=="
"resolved" "https://registry.npmjs.org/@jimp/jpeg/-/jpeg-0.9.5.tgz"
"version" "0.9.5"
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.9.5"
"core-js" "^3.4.1"
"jpeg-js" "^0.3.4"
"@jimp/plugin-blit@^0.9.5", "@jimp/plugin-blit@>=0.3.5":
"integrity" "sha512-VmV99HeCPOyliY/uEGOaKO9EcqDxSBzKDGC7emNCLFzlbK4uty4/cYMKGKTBiZR9AS1rEd63LxrDtbHKR8CsqQ=="
"resolved" "https://registry.npmjs.org/@jimp/plugin-blit/-/plugin-blit-0.9.5.tgz"
"version" "0.9.5"
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.9.5"
"core-js" "^3.4.1"
"@jimp/plugin-blur@^0.9.5":
"integrity" "sha512-FnAEhMW9ZK8D6qCLDeMAloi4h7TCch9ZWFdonj49gwllpvLksBpnL9PTft4dFXCwZgOAq2apYwW7cwTAIfAw4A=="
"resolved" "https://registry.npmjs.org/@jimp/plugin-blur/-/plugin-blur-0.9.5.tgz"
"version" "0.9.5"
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.9.5"
"core-js" "^3.4.1"
"@jimp/plugin-color@^0.9.5":
"integrity" "sha512-2aFE0tRdhAKCCgh+tFLsLPOSgrk3ttl2TtTP5FAXeKmzlLj7FZ/JKj0waaGWZKdJ+uDxsVpX3EhuK3CfukIyrg=="
"resolved" "https://registry.npmjs.org/@jimp/plugin-color/-/plugin-color-0.9.5.tgz"
"version" "0.9.5"
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.9.5"
"core-js" "^3.4.1"
"tinycolor2" "^1.4.1"
"@jimp/plugin-contain@^0.9.5":
"integrity" "sha512-zhaCJnUqd8hhD8IXxbRALU6ZzCWWbQDulc8Tn8Hxnub0si7dlq/DxBQT7og6kCxswBj2zPBtRAHONEwLdt7Nfw=="
"resolved" "https://registry.npmjs.org/@jimp/plugin-contain/-/plugin-contain-0.9.5.tgz"
"version" "0.9.5"
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.9.5"
"core-js" "^3.4.1"
"@jimp/plugin-cover@^0.9.5":
"integrity" "sha512-rG7vtx7vV9mHCFR4YP9GzGEsaop0IkMidP3UFPULbDcBdEEkehEG7a0h2X4w/Nt07J3k8wVoXYTjrb/CXpWkaw=="
"resolved" "https://registry.npmjs.org/@jimp/plugin-cover/-/plugin-cover-0.9.5.tgz"
"version" "0.9.5"
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.9.5"
"core-js" "^3.4.1"
"@jimp/plugin-crop@^0.9.5", "@jimp/plugin-crop@>=0.3.5":
"integrity" "sha512-yoScC43YhYlswTKyL4fmawGwF73HyuIRpp1R3mXa6qbMA9mjX9QiqNdAIMB3UMHeBcIgkOD/Zy1f90/skBMpxg=="
"resolved" "https://registry.npmjs.org/@jimp/plugin-crop/-/plugin-crop-0.9.5.tgz"
"version" "0.9.5"
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.9.5"
"core-js" "^3.4.1"
"@jimp/plugin-displace@^0.9.5":
"integrity" "sha512-nwfB72qNP8kNyBnlaY0vgJys7RUjvI61Qp3AMMbKKaRSsthCx7aeKU9Cyv+AHMfcVkkt3NdTmh7ScE+hkNFUhA=="
"resolved" "https://registry.npmjs.org/@jimp/plugin-displace/-/plugin-displace-0.9.5.tgz"
"version" "0.9.5"
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.9.5"
"core-js" "^3.4.1"
"@jimp/plugin-dither@^0.9.5":
"integrity" "sha512-Pp1ehm5Hon6LcttRG+d+x1UN1ww00P4cyBnMVRR3NMhIfgc0IjQgojik9ZXax3nVj7XkqXJJh8f5uxC1cvYUnA=="
"resolved" "https://registry.npmjs.org/@jimp/plugin-dither/-/plugin-dither-0.9.5.tgz"
"version" "0.9.5"
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.9.5"
"core-js" "^3.4.1"
"@jimp/plugin-flip@^0.9.5":
"integrity" "sha512-rKbg8c9ePst3w2t1kxQt2H05/rUR5/pjjafhZ97s01pxH/SOJudy5d76nJGzRBYoaRnxpvDzpN+2+iA08wDY5Q=="
"resolved" "https://registry.npmjs.org/@jimp/plugin-flip/-/plugin-flip-0.9.5.tgz"
"version" "0.9.5"
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.9.5"
"core-js" "^3.4.1"
"@jimp/plugin-gaussian@^0.9.5":
"integrity" "sha512-8HloHpVPgSsoWekslJ5uUPK2ddoLrGXQAVOyo3BT2pVgwbL317+r96NxPGKTxrY20fqex9SQrjx3kHeSWbysEA=="
"resolved" "https://registry.npmjs.org/@jimp/plugin-gaussian/-/plugin-gaussian-0.9.5.tgz"
"version" "0.9.5"
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.9.5"
"core-js" "^3.4.1"
"@jimp/plugin-invert@^0.9.5":
"integrity" "sha512-tqfMqQqsU4ulaif0Kk/BydqmG5UbjT67dmMjwnDL7rke+ypJ8tzq7j9QeZ9SDFB+PxUQcy/kPEw/R2Ys7HHi8A=="
"resolved" "https://registry.npmjs.org/@jimp/plugin-invert/-/plugin-invert-0.9.5.tgz"
"version" "0.9.5"
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.9.5"
"core-js" "^3.4.1"
"@jimp/plugin-mask@^0.9.5":
"integrity" "sha512-lIOrKb/VT1laDIA1H1nPOdtOB4TVhMRlxanXoEP8uKdE6a2goqZHXbKLn9itkm0MxtsTlT9KIXwzGxjCV38B3w=="
"resolved" "https://registry.npmjs.org/@jimp/plugin-mask/-/plugin-mask-0.9.5.tgz"
"version" "0.9.5"
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.9.5"
"core-js" "^3.4.1"
"@jimp/plugin-normalize@^0.9.5":
"integrity" "sha512-gayxgPLDp2gynu2IacvdCtqw0bdcC2feUqYOBjTtCpAwIz1KP2Qd6qKjV1dAVGiLO9ESW5maMa0vIBiBkYOovg=="
"resolved" "https://registry.npmjs.org/@jimp/plugin-normalize/-/plugin-normalize-0.9.5.tgz"
"version" "0.9.5"
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.9.5"
"core-js" "^3.4.1"
"@jimp/plugin-print@^0.9.5":
"integrity" "sha512-/BUSyCfvVhuFdf+rBdH1wbuY8r9J0qhn4Icy7HqO58By7I+V7q7jayoeiLk+zEBsAXpCUbWiZG3KWNtZhLWeQg=="
"resolved" "https://registry.npmjs.org/@jimp/plugin-print/-/plugin-print-0.9.5.tgz"
"version" "0.9.5"
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.9.5"
"core-js" "^3.4.1"
"load-bmfont" "^1.4.0"
"@jimp/plugin-resize@^0.9.5", "@jimp/plugin-resize@>=0.3.5":
"integrity" "sha512-vIMleLPbEv0qTE1Mnc7mg5HSFc4l4FxlbDniVUvpi8ZMFa8IkigcTeAgXUKacevNL7uZ66MrnpQ49J3tNE28dQ=="
"resolved" "https://registry.npmjs.org/@jimp/plugin-resize/-/plugin-resize-0.9.5.tgz"
"version" "0.9.5"
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.9.5"
"core-js" "^3.4.1"
"@jimp/plugin-rotate@^0.9.5", "@jimp/plugin-rotate@>=0.3.5":
"integrity" "sha512-BHlhwUruHNQkOpsfzTE2uuSfmkj5eiIDRSAC8whupUGGXNgS67tZJB6u0qDRIeSP/gWV5tGGwXQNMn3AahwR1Q=="
"resolved" "https://registry.npmjs.org/@jimp/plugin-rotate/-/plugin-rotate-0.9.5.tgz"
"version" "0.9.5"
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.9.5"
"core-js" "^3.4.1"
"@jimp/plugin-scale@^0.9.5", "@jimp/plugin-scale@>=0.3.5":
"integrity" "sha512-PDU8F77EPFTcLBVDcJtGUvPXA2acG4KqJMZauHwZLZxuiDEvt9qsDQm4aTKcN/ku8oWZjfGBSOamhx/QNUqV5Q=="
"resolved" "https://registry.npmjs.org/@jimp/plugin-scale/-/plugin-scale-0.9.5.tgz"
"version" "0.9.5"
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.9.5"
"core-js" "^3.4.1"
"@jimp/plugins@^0.9.5":
"integrity" "sha512-3hvuXeRLj36ifpwE7I7g5Da9bKl/0y62t90ZN0hdQwhLBjRRF4u1e1JZpyu6EK98Bp+W/c8fJ2iuOsHadJOusg=="
"resolved" "https://registry.npmjs.org/@jimp/plugins/-/plugins-0.9.5.tgz"
"version" "0.9.5"
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/plugin-blit" "^0.9.5"
"@jimp/plugin-blur" "^0.9.5"
"@jimp/plugin-color" "^0.9.5"
"@jimp/plugin-contain" "^0.9.5"
"@jimp/plugin-cover" "^0.9.5"
"@jimp/plugin-crop" "^0.9.5"
"@jimp/plugin-displace" "^0.9.5"
"@jimp/plugin-dither" "^0.9.5"
"@jimp/plugin-flip" "^0.9.5"
"@jimp/plugin-gaussian" "^0.9.5"
"@jimp/plugin-invert" "^0.9.5"
"@jimp/plugin-mask" "^0.9.5"
"@jimp/plugin-normalize" "^0.9.5"
"@jimp/plugin-print" "^0.9.5"
"@jimp/plugin-resize" "^0.9.5"
"@jimp/plugin-rotate" "^0.9.5"
"@jimp/plugin-scale" "^0.9.5"
"core-js" "^3.4.1"
"timm" "^1.6.1"
"@jimp/png@^0.9.5":
"integrity" "sha512-0GPq/XixXcuWIA3gpMCUUj6rhxT78Hu9oDC9reaHUCcC/5cRTd5Eh7wLafZL8EfOZWV3mh2FZtWiY1xaNHHlBQ=="
"resolved" "https://registry.npmjs.org/@jimp/png/-/png-0.9.5.tgz"
"version" "0.9.5"
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.9.5"
"core-js" "^3.4.1"
"pngjs" "^3.3.3"
"@jimp/tiff@^0.9.5":
"integrity" "sha512-EcRtiHsAQ9aygRRMWhGTVfitfHwllgt93GE1L8d/iwSlu3e3IIV38MDINdluQUQMU5jcFBcX6eyVVvsgCleGiQ=="
"resolved" "https://registry.npmjs.org/@jimp/tiff/-/tiff-0.9.5.tgz"
"version" "0.9.5"
dependencies:
"@babel/runtime" "^7.7.2"
"core-js" "^3.4.1"
"utif" "^2.0.1"
"@jimp/types@^0.9.5":
"integrity" "sha512-62inaxx8zy24WMP+bsg6ZmgsL49oyoGUIGcjDKzvyAY/O6opD+UMNlArhl0xvCCdzriQxbljtSv/8uyHxz4Xbw=="
"resolved" "https://registry.npmjs.org/@jimp/types/-/types-0.9.5.tgz"
"version" "0.9.5"
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/bmp" "^0.9.5"
"@jimp/gif" "^0.9.5"
"@jimp/jpeg" "^0.9.5"
"@jimp/png" "^0.9.5"
"@jimp/tiff" "^0.9.5"
"core-js" "^3.4.1"
"timm" "^1.6.1"
"@jimp/utils@^0.9.5":
"integrity" "sha512-W9vse4/1AYmOjtIVACoBMdc/2te1zcPURhMYNEyiezCU7hWMdj/Z1mwiWFq3AYCgOG8GPVx0ZQzrgqUfUxfTHQ=="
"resolved" "https://registry.npmjs.org/@jimp/utils/-/utils-0.9.5.tgz"
"version" "0.9.5"
dependencies:
"@babel/runtime" "^7.7.2"
"core-js" "^3.4.1"
"@mrmlnc/readdir-enhanced@^2.2.1":
"integrity" "sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g=="
"resolved" "https://registry.npmjs.org/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz"
"version" "2.2.1"
dependencies:
"call-me-maybe" "^1.0.1"
"glob-to-regexp" "^0.3.0"
"@nodelib/fs.stat@^1.1.2":
"integrity" "sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw=="
"resolved" "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-1.1.3.tgz"
"version" "1.1.3"
"@sindresorhus/is@^0.7.0":
"integrity" "sha512-ONhaKPIufzzrlNbqtWFFd+jlnemX6lJAgq9ZeiZtS7I1PIf/la7CW4m83rTXRnVnsMbW2k56pGYu7AUFJD9Pow=="
"resolved" "https://registry.npmjs.org/@sindresorhus/is/-/is-0.7.0.tgz"
"version" "0.7.0"
"@socket.io/component-emitter@~3.1.0":
"integrity" "sha512-+9jVqKhRSpsc591z5vX+X5Yyw+he/HCB4iQ/RYxw35CEPaY1gnsNE43nf9n9AaYjAQrTiI/mOwKUKdUs9vf7Xg=="
"resolved" "https://registry.npmmirror.com/@socket.io/component-emitter/-/component-emitter-3.1.0.tgz"
"version" "3.1.0"
"@types/cookie@^0.4.1":
"integrity" "sha512-XW/Aa8APYr6jSVVA1y/DEIZX0/GMKLEVekNG727R8cs56ahETkRAy/3DR7+fJyh7oUgGwNQaRfXCun0+KbWY7Q=="
"resolved" "https://registry.npmmirror.com/@types/cookie/-/cookie-0.4.1.tgz"
"version" "0.4.1"
"@types/cors@^2.8.12":
"integrity" "sha512-vt+kDhq/M2ayberEtJcIN/hxXy1Pk+59g2FV/ZQceeaTyCtCucjL2Q7FXlFjtWn4n15KCr1NE2lNNFhp0lEThw=="
"resolved" "https://registry.npmmirror.com/@types/cors/-/cors-2.8.12.tgz"
"version" "2.8.12"
"@types/node@>=10.0.0":
"integrity" "sha512-CRpX21/kGdzjOpFsZSkcrXMGIBWMGNIHXXBVFSH+ggkftxg+XYP20TESbh+zFvFj3EQOl5byk0HTRn1IL6hbqg=="
"resolved" "https://registry.npmmirror.com/@types/node/-/node-18.11.9.tgz"
"version" "18.11.9"
"@types/q@^1.5.1":
"integrity" "sha512-ce5d3q03Ex0sy4R14722Rmt6MT07Ua+k4FwDfdcToYJcMKNtRVQvJ6JCAPdAmAnbRb6CsX6aYb9m96NGod9uTw=="
"resolved" "https://registry.npmjs.org/@types/q/-/q-1.5.2.tgz"
"version" "1.5.2"
"a-sync-waterfall@^1.0.0":
"integrity" "sha1-dba2qnJZi0l6El56J3DxT0yKH6c="
"resolved" "https://registry.npm.taobao.org/a-sync-waterfall/download/a-sync-waterfall-1.0.1.tgz"
"version" "1.0.1"
"abbrev@^1.1.1", "abbrev@1":
"integrity" "sha1-+PLIh60Qv2f2NPAFtph/7TF5qsg="
"resolved" "https://registry.npm.taobao.org/abbrev/download/abbrev-1.1.1.tgz"
"version" "1.1.1"
"accepts@~1.3.4", "accepts@~1.3.5":
"integrity" "sha1-UxvHJlF6OytB+FACHGzBXqq1B80="
"resolved" "https://registry.npm.taobao.org/accepts/download/accepts-1.3.7.tgz"
"version" "1.3.7"
dependencies:
"mime-types" "~2.1.24"
"negotiator" "0.6.2"
"acorn-jsx@^5.0.0":
"integrity" "sha1-KUrbcbVzmLBoABXwo4xWPuHbU4Q="
"resolved" "https://registry.npm.taobao.org/acorn-jsx/download/acorn-jsx-5.1.0.tgz?cache=0&sync_timestamp=1570991888898&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Facorn-jsx%2Fdownload%2Facorn-jsx-5.1.0.tgz"
"version" "5.1.0"
"acorn@^6.0.0 || ^7.0.0", "acorn@^6.0.7", "acorn@^6.1.1":
"integrity" "sha512-ZVA9k326Nwrj3Cj9jlh3wGFutC2ZornPNARZwsNYqQYgN0EsV2d53w5RN/co65Ohn4sUAUtb1rSUAOD6XN9idA=="
"resolved" "https://registry.npmjs.org/acorn/-/acorn-6.4.1.tgz"
"version" "6.4.1"
"ajv@^6.10.2", "ajv@^6.5.5", "ajv@^6.9.1":
"integrity" "sha1-086gTWsBeyiUrWkED+yLYj60vVI="
"resolved" "https://registry.npm.taobao.org/ajv/download/ajv-6.10.2.tgz?cache=0&sync_timestamp=1563141444360&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fajv%2Fdownload%2Fajv-6.10.2.tgz"
"version" "6.10.2"
dependencies:
"fast-deep-equal" "^2.0.1"
"fast-json-stable-stringify" "^2.0.0"
"json-schema-traverse" "^0.4.1"
"uri-js" "^4.2.2"
"align-text@^0.1.1", "align-text@^0.1.3":
"integrity" "sha1-DNkKVhCT810KmSVsIrcGlDP60Rc="
"resolved" "https://registry.npm.taobao.org/align-text/download/align-text-0.1.4.tgz"
"version" "0.1.4"
dependencies:
"kind-of" "^3.0.2"
"longest" "^1.0.1"
"repeat-string" "^1.5.2"
"amdefine@>=0.0.4":
"integrity" "sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU="
"resolved" "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz"
"version" "1.0.1"
"ansi-escapes@^3.2.0":
"integrity" "sha1-h4C5j/nb9WOBUtHx/lwde0RCl2s="
"resolved" "https://registry.npm.taobao.org/ansi-escapes/download/ansi-escapes-3.2.0.tgz"
"version" "3.2.0"
"ansi-regex@^2.0.0":
"integrity" "sha1-w7M6te42DYbg5ijwRorn7yfWVN8="
"resolved" "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz"
"version" "2.1.1"
"ansi-regex@^3.0.0":
"integrity" "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg="
"resolved" "https://registry.npm.taobao.org/ansi-regex/download/ansi-regex-3.0.0.tgz?cache=0&sync_timestamp=1570188663907&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fansi-regex%2Fdownload%2Fansi-regex-3.0.0.tgz"
"version" "3.0.0"
"ansi-regex@^4.1.0":
"integrity" "sha1-i5+PCM8ay4Q3Vqg5yox+MWjFGZc="
"resolved" "https://registry.npm.taobao.org/ansi-regex/download/ansi-regex-4.1.0.tgz?cache=0&sync_timestamp=1570188663907&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fansi-regex%2Fdownload%2Fansi-regex-4.1.0.tgz"
"version" "4.1.0"
"ansi-regex@^5.0.1":
"integrity" "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="
"resolved" "https://registry.npmmirror.com/ansi-regex/-/ansi-regex-5.0.1.tgz"
"version" "5.0.1"
"ansi-styles@^2.2.1":
"integrity" "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4="
"resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz"
"version" "2.2.1"
"ansi-styles@^3.2.0", "ansi-styles@^3.2.1":
"integrity" "sha1-QfuyAkPlCxK+DwS43tvwdSDOhB0="
"resolved" "https://registry.npm.taobao.org/ansi-styles/download/ansi-styles-3.2.1.tgz?cache=0&sync_timestamp=1573557628456&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fansi-styles%2Fdownload%2Fansi-styles-3.2.1.tgz"
"version" "3.2.1"
dependencies:
"color-convert" "^1.9.0"
"ansi-styles@^4.0.0":
"integrity" "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="
"resolved" "https://registry.npmmirror.com/ansi-styles/-/ansi-styles-4.3.0.tgz"
"version" "4.3.0"
dependencies:
"color-convert" "^2.0.1"
"any-base@^1.1.0":
"integrity" "sha512-uMgjozySS8adZZYePpaWs8cxB9/kdzmpX6SgJZ+wbz1K5eYk5QMYDVJaZKhxyIHUdnnJkfR7SVgStgH7LkGUyg=="
"resolved" "https://registry.npmjs.org/any-base/-/any-base-1.1.0.tgz"
"version" "1.1.0"
"any-promise@^1.1.0":
"integrity" "sha1-q8av7tzqUugJzcA3au0845Y10X8="
"resolved" "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz"
"version" "1.3.0"
"anymatch@^1.3.0":
"integrity" "sha1-VT3Lj5HjyImEXf26NMd3IbkLnXo="
"resolved" "https://registry.npm.taobao.org/anymatch/download/anymatch-1.3.2.tgz"
"version" "1.3.2"
dependencies:
"micromatch" "^2.1.5"
"normalize-path" "^2.0.0"
"anymatch@^2.0.0":
"integrity" "sha1-vLJLTzeTTZqnrBe0ra+J58du8us="
"resolved" "https://registry.npm.taobao.org/anymatch/download/anymatch-2.0.0.tgz"
"version" "2.0.0"
dependencies:
"micromatch" "^3.1.4"
"normalize-path" "^2.1.1"
"anymatch@~3.1.2":
"integrity" "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg=="
"resolved" "https://registry.npmmirror.com/anymatch/-/anymatch-3.1.2.tgz"
"version" "3.1.2"
dependencies:
"normalize-path" "^3.0.0"
"picomatch" "^2.0.4"
"aproba@^1.0.3":
"integrity" "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw=="
"resolved" "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz"
"version" "1.2.0"
"arch@^2.1.0":
"integrity" "sha512-BLM56aPo9vLLFVa8+/+pJLnrZ7QGGTVHWsCwieAWT9o9K8UeGaQbzZbGoabWLOo2ksBCztoXdqBZBplqLDDCSg=="
"resolved" "https://registry.npmjs.org/arch/-/arch-2.1.1.tgz"
"version" "2.1.1"
"archive-type@^4.0.0":
"integrity" "sha1-+S5yIzBW38aWlHJ0nCZ72wRrHXA="
"resolved" "https://registry.npmjs.org/archive-type/-/archive-type-4.0.0.tgz"
"version" "4.0.0"
dependencies:
"file-type" "^4.2.0"
"archy@^1.0.0":
"integrity" "sha1-+cjBN1fMHde8N5rHeyxipcKGjEA="
"resolved" "https://registry.npm.taobao.org/archy/download/archy-1.0.0.tgz?cache=0&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Farchy%2Fdownload%2Farchy-1.0.0.tgz"
"version" "1.0.0"
"are-we-there-yet@~1.1.2":
"integrity" "sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w=="
"resolved" "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz"
"version" "1.1.5"
dependencies:
"delegates" "^1.0.0"
"readable-stream" "^2.0.6"
"argparse@^1.0.7":
"integrity" "sha1-vNZ5HqWuCXJeF+WtmIE0zUCz2RE="
"resolved" "https://registry.npm.taobao.org/argparse/download/argparse-1.0.10.tgz"
"version" "1.0.10"
dependencies:
"sprintf-js" "~1.0.2"
"arr-diff@^2.0.0":
"integrity" "sha1-jzuCf5Vai9ZpaX5KQlasPOrjVs8="
"resolved" "https://registry.npm.taobao.org/arr-diff/download/arr-diff-2.0.0.tgz"
"version" "2.0.0"
dependencies:
"arr-flatten" "^1.0.1"
"arr-diff@^4.0.0":
"integrity" "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA="
"resolved" "https://registry.npm.taobao.org/arr-diff/download/arr-diff-4.0.0.tgz"
"version" "4.0.0"
"arr-flatten@^1.0.1", "arr-flatten@^1.1.0":
"integrity" "sha1-NgSLv/TntH4TZkQxbJlmnqWukfE="
"resolved" "https://registry.npm.taobao.org/arr-flatten/download/arr-flatten-1.1.0.tgz"
"version" "1.1.0"
"arr-union@^3.1.0":
"integrity" "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ="
"resolved" "https://registry.npm.taobao.org/arr-union/download/arr-union-3.1.0.tgz"
"version" "3.1.0"
"array-find-index@^1.0.1":
"integrity" "sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E="
"resolved" "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz"
"version" "1.0.2"
"array-union@^1.0.1":
"integrity" "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk="
"resolved" "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz"
"version" "1.0.2"
dependencies:
"array-uniq" "^1.0.1"
"array-uniq@^1.0.1":
"integrity" "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY="
"resolved" "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz"
"version" "1.0.3"
"array-unique@^0.2.1":
"integrity" "sha1-odl8yvy8JiXMcPrc6zalDFiwGlM="
"resolved" "https://registry.npm.taobao.org/array-unique/download/array-unique-0.2.1.tgz"
"version" "0.2.1"
"array-unique@^0.3.2":
"integrity" "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg="
"resolved" "https://registry.npm.taobao.org/array-unique/download/array-unique-0.3.2.tgz"
"version" "0.3.2"
"arrify@^1.0.1":
"integrity" "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0="
"resolved" "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz"
"version" "1.0.1"
"asap@^2.0.3":
"integrity" "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY="
"resolved" "https://registry.npm.taobao.org/asap/download/asap-2.0.6.tgz"
"version" "2.0.6"
"asn1@~0.2.3":
"integrity" "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg=="
"resolved" "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz"
"version" "0.2.4"
dependencies:
"safer-buffer" "~2.1.0"
"assert-plus@^1.0.0", "[email protected]":
"integrity" "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU="
"resolved" "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz"
"version" "1.0.0"
"assign-symbols@^1.0.0":
"integrity" "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c="
"resolved" "https://registry.npm.taobao.org/assign-symbols/download/assign-symbols-1.0.0.tgz"
"version" "1.0.0"
"astral-regex@^1.0.0":
"integrity" "sha1-bIw/uCfdQ+45GPJ7gngqt2WKb9k="
"resolved" "https://registry.npm.taobao.org/astral-regex/download/astral-regex-1.0.0.tgz"
"version" "1.0.0"
"integrity" "sha512-p4jj6Fws4Iy2m0iCmI2am2ZNZCgbdgE+P8F/8csmn2vx7ixXrO2zGcuNsD46X5uZSVecmkEy/M06X2vG8KD6dQ=="
"resolved" "https://registry.npmmirror.com/async-each-series/-/async-each-series-0.1.1.tgz"
"version" "0.1.1"
"async-each@^1.0.0", "async-each@^1.0.1":
"integrity" "sha1-tyfb+H12UWAvBvTUrDh/R9kbDL8="
"resolved" "https://registry.npm.taobao.org/async-each/download/async-each-1.0.3.tgz"
"version" "1.0.3"
"async@^2.6.0":
"integrity" "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA=="
"resolved" "https://registry.npmmirror.com/async/-/async-2.6.4.tgz"
"version" "2.6.4"
dependencies:
"lodash" "^4.17.14"
"async@~0.2.6":
"integrity" "sha1-trvgsGdLnXGXCMo43owjfLUmw9E="
"resolved" "https://registry.npm.taobao.org/async/download/async-0.2.10.tgz"
"version" "0.2.10"
"asynckit@^0.4.0":
"integrity" "sha1-x57Zf380y48robyXkLzDZkdLS3k="
"resolved" "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz"
"version" "0.4.0"
"atob@^2.1.1":
"integrity" "sha1-bZUX654DDSQ2ZmZR6GvZ9vE1M8k="
"resolved" "https://registry.npm.taobao.org/atob/download/atob-2.1.2.tgz"
"version" "2.1.2"
"aws-sign2@~0.7.0":
"integrity" "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg="
"resolved" "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz"
"version" "0.7.0"
"aws4@^1.8.0":
"integrity" "sha512-wMHVg2EOHaMRxbzgFJ9gtjOOCrI80OHLG14rxi28XwOW8ux6IiEbRCGGGqCtdAIg4FQCbW20k9RsT4y3gJlFug=="
"resolved" "https://registry.npmjs.org/aws4/-/aws4-1.9.1.tgz"
"version" "1.9.1"
"integrity" "sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg=="
"resolved" "https://registry.npmmirror.com/axios/-/axios-0.21.4.tgz"
"version" "0.21.4"
dependencies:
"follow-redirects" "^1.14.0"
"babel-eslint@^10.0.1":
"integrity" "sha1-gaLGab4PIF4ZRi/tJILTPkaHqIo="
"resolved" "https://registry.npm.taobao.org/babel-eslint/download/babel-eslint-10.0.3.tgz?cache=0&sync_timestamp=1574508319180&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fbabel-eslint%2Fdownload%2Fbabel-eslint-10.0.3.tgz"
"version" "10.0.3"
dependencies:
"@babel/code-frame" "^7.0.0"
"@babel/parser" "^7.0.0"
"@babel/traverse" "^7.0.0"
"@babel/types" "^7.0.0"
"eslint-visitor-keys" "^1.0.0"
"resolve" "^1.12.0"
"balanced-match@^1.0.0":
"integrity" "sha1-ibTRmasr7kneFk6gK4nORi1xt2c="
"resolved" "https://registry.npm.taobao.org/balanced-match/download/balanced-match-1.0.0.tgz"
"version" "1.0.0"
"base@^0.11.1":
"integrity" "sha1-e95c7RRbbVUakNuH+DxVi060io8="
"resolved" "https://registry.npm.taobao.org/base/download/base-0.11.2.tgz"
"version" "0.11.2"
dependencies:
"cache-base" "^1.0.1"
"class-utils" "^0.3.5"
"component-emitter" "^1.2.1"
"define-property" "^1.0.0"
"isobject" "^3.0.1"
"mixin-deep" "^1.2.0"
"pascalcase" "^0.1.1"
"base64-js@^1.0.2":
"integrity" "sha512-mLQ4i2QO1ytvGWFWmcngKO//JXAQueZvwEKtjgQFM4jIK0kU+ytMfplL8j+n5mspOfjHwoAg+9yhb7BwAHm36g=="
"resolved" "https://registry.npmjs.org/base64-js/-/base64-js-1.3.1.tgz"
"version" "1.3.1"
"base64id@~2.0.0", "[email protected]":
"integrity" "sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog=="
"resolved" "https://registry.npmmirror.com/base64id/-/base64id-2.0.0.tgz"
"version" "2.0.0"
"basic-auth@~2.0.0":
"integrity" "sha1-uZgnm/R844NEtPPPkW1Gebv1Hjo="
"resolved" "https://registry.npm.taobao.org/basic-auth/download/basic-auth-2.0.1.tgz"
"version" "2.0.1"
dependencies:
"safe-buffer" "5.1.2"
"integrity" "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw=="
"resolved" "https://registry.npmmirror.com/batch/-/batch-0.6.1.tgz"
"version" "0.6.1"
"bcrypt-pbkdf@^1.0.0":
"integrity" "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4="
"resolved" "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz"
"version" "1.0.2"
dependencies:
"tweetnacl" "^0.14.3"
"bignumber.js@^2.1.0":
"integrity" "sha1-g4qZLan51zfg9LLbC+YrsJ3Qxeg="
"resolved" "https://registry.npmjs.org/bignumber.js/-/bignumber.js-2.4.0.tgz"
"version" "2.4.0"
"bin-build@^3.0.0":
"integrity" "sha512-jcUOof71/TNAI2uM5uoUaDq2ePcVBQ3R/qhxAz1rX7UfvduAL/RXD3jXzvn8cVcDJdGVkiR1shal3OH0ImpuhA=="
"resolved" "https://registry.npmjs.org/bin-build/-/bin-build-3.0.0.tgz"
"version" "3.0.0"
dependencies:
"decompress" "^4.0.0"
"download" "^6.2.2"
"execa" "^0.7.0"
"p-map-series" "^1.0.0"
"tempfile" "^2.0.0"
"bin-check@^4.1.0":
"integrity" "sha512-b6weQyEUKsDGFlACWSIOfveEnImkJyK/FGW6FAG42loyoquvjdtOIqO6yBFzHyqyVVhNgNkQxxx09SFLK28YnA=="
"resolved" "https://registry.npmjs.org/bin-check/-/bin-check-4.1.0.tgz"
"version" "4.1.0"
dependencies:
"execa" "^0.7.0"
"executable" "^4.1.0"
"bin-version-check@^4.0.0":
"integrity" "sha512-sR631OrhC+1f8Cvs8WyVWOA33Y8tgwjETNPyyD/myRBXLkfS/vl74FmH/lFcRl9KY3zwGh7jFhvyk9vV3/3ilQ=="
"resolved" "https://registry.npmjs.org/bin-version-check/-/bin-version-check-4.0.0.tgz"
"version" "4.0.0"
dependencies:
"bin-version" "^3.0.0"
"semver" "^5.6.0"
"semver-truncate" "^1.1.2"
"bin-version@^3.0.0":
"integrity" "sha512-Mkfm4iE1VFt4xd4vH+gx+0/71esbfus2LsnCGe8Pi4mndSPyT+NGES/Eg99jx8/lUGWfu3z2yuB/bt5UB+iVbQ=="
"resolved" "https://registry.npmjs.org/bin-version/-/bin-version-3.1.0.tgz"
"version" "3.1.0"
dependencies:
"execa" "^1.0.0"
"find-versions" "^3.0.0"
"bin-wrapper@^4.0.0", "bin-wrapper@^4.0.1", "bin-wrapper@^4.1.0":
"integrity" "sha512-hfRmo7hWIXPkbpi0ZltboCMVrU+0ClXR/JgbCKKjlDjQf6igXa7OwdqNcFWQZPZTgiY7ZpzE3+LjjkLiTN2T7Q=="
"resolved" "https://registry.npmjs.org/bin-wrapper/-/bin-wrapper-4.1.0.tgz"
"version" "4.1.0"
dependencies:
"bin-check" "^4.1.0"
"bin-version-check" "^4.0.0"
"download" "^7.1.0"
"import-lazy" "^3.1.0"
"os-filter-obj" "^2.0.0"
"pify" "^4.0.1"
"binary-extensions@^1.0.0":
"integrity" "sha1-WYr+VHVbKGilMw0q/51Ou1Mgm2U="
"resolved" "https://registry.npm.taobao.org/binary-extensions/download/binary-extensions-1.13.1.tgz"
"version" "1.13.1"
"binary-extensions@^2.0.0":
"integrity" "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA=="
"resolved" "https://registry.npmmirror.com/binary-extensions/-/binary-extensions-2.2.0.tgz"
"version" "2.2.0"
"bl@^1.0.0":
"integrity" "sha512-e8tQYnZodmebYDWGH7KMRvtzKXaJHx3BbilrgZCfvyLUYdKpK1t5PSPmpkny/SgiTSCnjfLW7v5rlONXVFkQEA=="
"resolved" "https://registry.npmjs.org/bl/-/bl-1.2.2.tgz"
"version" "1.2.2"
dependencies:
"readable-stream" "^2.3.5"
"safe-buffer" "^5.1.1"
"bl@^4.0.1":
"integrity" "sha512-FL/TdvchukRCuWVxT0YMO/7+L5TNeNrVFvRU2IY63aUyv9mpt8splf2NEr6qXtPo5fya5a66YohQKvGNmLrWNA=="
"resolved" "https://registry.npmjs.org/bl/-/bl-4.0.1.tgz"
"version" "4.0.1"
dependencies:
"readable-stream" "^3.4.0"
"bluebird@^3.2.2", "bluebird@^3.4.0", "bluebird@^3.5.0", "bluebird@^3.5.1", "bluebird@^3.5.2", "bluebird@^3.5.3", "bluebird@^3.5.4":
"integrity" "sha1-nyKcFb4nJFT/qXOs4NvueaGww28="
"resolved" "https://registry.npm.taobao.org/bluebird/download/bluebird-3.7.2.tgz"
"version" "3.7.2"
"bmp-js@^0.1.0":
"integrity" "sha1-4Fpj95amwf8l9Hcex62twUjAcjM="
"resolved" "https://registry.npmjs.org/bmp-js/-/bmp-js-0.1.0.tgz"
"version" "0.1.0"
"integrity" "sha1-WtAUcJnROp84qnuZrx1ueGZu038="
"resolved" "https://registry.npmjs.org/bmp-js/-/bmp-js-0.0.1.tgz"
"version" "0.0.1"
"integrity" "sha1-ZBE+nHzxICs3btYHvzBibr5XsYo="
"resolved" "https://registry.npmjs.org/bmp-js/-/bmp-js-0.0.3.tgz"
"version" "0.0.3"
"boolbase@^1.0.0", "boolbase@~1.0.0":
"integrity" "sha1-aN/1++YMUes3cl6p4+0xDcwed24="
"resolved" "https://registry.npm.taobao.org/boolbase/download/boolbase-1.0.0.tgz"
"version" "1.0.0"
"brace-expansion@^1.1.7":
"integrity" "sha1-PH/L9SnYcibz0vUrlm/1Jx60Qd0="
"resolved" "https://registry.npm.taobao.org/brace-expansion/download/brace-expansion-1.1.11.tgz"
"version" "1.1.11"
dependencies:
"balanced-match" "^1.0.0"
"concat-map" "0.0.1"
"braces@^1.8.2":
"integrity" "sha1-uneWLhLf+WnWt2cR6RS3N4V79qc="
"resolved" "https://registry.npm.taobao.org/braces/download/braces-1.8.5.tgz"
"version" "1.8.5"
dependencies:
"expand-range" "^1.8.1"
"preserve" "^0.2.0"
"repeat-element" "^1.1.2"
"braces@^2.3.1", "braces@^2.3.2":
"integrity" "sha1-WXn9PxTNUxVl5fot8av/8d+u5yk="
"resolved" "https://registry.npm.taobao.org/braces/download/braces-2.3.2.tgz"
"version" "2.3.2"
dependencies:
"arr-flatten" "^1.1.0"
"array-unique" "^0.3.2"
"extend-shallow" "^2.0.1"
"fill-range" "^4.0.0"
"isobject" "^3.0.1"
"repeat-element" "^1.1.2"
"snapdragon" "^0.8.1"
"snapdragon-node" "^2.0.1"
"split-string" "^3.0.2"
"to-regex" "^3.0.1"
"braces@^3.0.2", "braces@~3.0.2":
"integrity" "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A=="
"resolved" "https://registry.npmmirror.com/braces/-/braces-3.0.2.tgz"
"version" "3.0.2"
dependencies:
"fill-range" "^7.0.1"
"integrity" "sha1-jfPNyiW/fVs1QtYVRdcwBT/OYEo="
"resolved" "https://registry.npm.taobao.org/browser-fingerprint/download/browser-fingerprint-0.0.1.tgz"
"version" "0.0.1"
"browser-sync-client@^2.27.10":
"integrity" "sha512-KCFKA1YDj6cNul0VsA28apohtBsdk5Wv8T82ClOZPZMZWxPj4Ny5AUbrj9UlAb/k6pdxE5HABrWDhP9+cjt4HQ=="
"resolved" "https://registry.npmmirror.com/browser-sync-client/-/browser-sync-client-2.27.10.tgz"
"version" "2.27.10"
dependencies:
"etag" "1.8.1"
"fresh" "0.5.2"
"mitt" "^1.1.3"
"rxjs" "^5.5.6"
"typescript" "^4.6.2"
"browser-sync-ui@^2.27.10":
"integrity" "sha512-elbJILq4Uo6OQv6gsvS3Y9vRAJlWu+h8j0JDkF0X/ua+3S6SVbbiWnZc8sNOFlG7yvVGIwBED3eaYQ0iBo1Dtw=="
"resolved" "https://registry.npmmirror.com/browser-sync-ui/-/browser-sync-ui-2.27.10.tgz"
"version" "2.27.10"
dependencies:
"async-each-series" "0.1.1"
"connect-history-api-fallback" "^1"
"immutable" "^3"
"server-destroy" "1.0.1"
"socket.io-client" "^4.4.1"
"stream-throttle" "^0.1.3"
"browser-sync@^2.18.13":
"integrity" "sha512-xKm+6KJmJu6RuMWWbFkKwOCSqQOxYe3nOrFkKI5Tr/ZzjPxyU3pFShKK3tWnazBo/3lYQzN7fzjixG8fwJh1Xw=="
"resolved" "https://registry.npmmirror.com/browser-sync/-/browser-sync-2.27.10.tgz"
"version" "2.27.10"
dependencies:
"browser-sync-client" "^2.27.10"
"browser-sync-ui" "^2.27.10"
"bs-recipes" "1.3.4"
"bs-snippet-injector" "^2.0.1"
"chokidar" "^3.5.1"
"connect" "3.6.6"
"connect-history-api-fallback" "^1"
"dev-ip" "^1.0.1"
"easy-extender" "^2.3.4"
"eazy-logger" "3.1.0"
"etag" "^1.8.1"
"fresh" "^0.5.2"
"fs-extra" "3.0.1"
"http-proxy" "^1.18.1"
"immutable" "^3"
"localtunnel" "^2.0.1"
"micromatch" "^4.0.2"
"opn" "5.3.0"
"portscanner" "2.2.0"
"qs" "6.2.3"
"raw-body" "^2.3.2"
"resp-modifier" "6.0.2"
"rx" "4.1.0"
"send" "0.16.2"
"serve-index" "1.9.1"
"serve-static" "1.13.2"
"server-destroy" "1.0.1"
"socket.io" "^4.4.1"
"ua-parser-js" "1.0.2"
"yargs" "^17.3.1"
"integrity" "sha512-BXvDkqhDNxXEjeGM8LFkSbR+jzmP/CYpCiVKYn+soB1dDldeU15EBNDkwVXndKuX35wnNUaPd0qSoQEAkmQtMw=="
"resolved" "https://registry.npmmirror.com/bs-recipes/-/bs-recipes-1.3.4.tgz"
"version" "1.3.4"
"bs-snippet-injector@^2.0.1":
"integrity" "sha512-4u8IgB+L9L+S5hknOj3ddNSb42436gsnGm1AuM15B7CdbkpQTyVWgIM5/JUBiKiRwGOR86uo0Lu/OsX+SAlJmw=="
"resolved" "https://registry.npmmirror.com/bs-snippet-injector/-/bs-snippet-injector-2.0.1.tgz"
"version" "2.0.1"
"buffer-alloc-unsafe@^1.1.0":
"integrity" "sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg=="
"resolved" "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz"
"version" "1.1.0"
"buffer-alloc@^1.1.0", "buffer-alloc@^1.2.0":
"integrity" "sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow=="