-
-
Notifications
You must be signed in to change notification settings - Fork 197
/
Copy pathyarn.lock
7957 lines (6842 loc) · 292 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":
"integrity" "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg=="
"resolved" "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz"
"version" "7.10.4"
dependencies:
"@babel/highlight" "^7.10.4"
"@babel/helper-validator-identifier@^7.10.4":
"integrity" "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw=="
"resolved" "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz"
"version" "7.10.4"
"@babel/highlight@^7.10.4":
"integrity" "sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA=="
"resolved" "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz"
"version" "7.10.4"
dependencies:
"@babel/helper-validator-identifier" "^7.10.4"
"chalk" "^2.0.0"
"js-tokens" "^4.0.0"
"@babel/runtime@^7.7.2":
"integrity" "sha512-TeWkU52so0mPtDcaCTxNBI/IHiz0pZgr8VEFqXFtZWpYD08ZB6FaSwVAS8MKRQAP3bYKiVjwysOJgMFY28o6Tw=="
"resolved" "https://registry.npmjs.org/@babel/runtime/-/runtime-7.11.2.tgz"
"version" "7.11.2"
dependencies:
"regenerator-runtime" "^0.13.4"
"@dsherret/to-absolute-glob@^2.0.2":
"integrity" "sha1-H2R13IvZdM6gei2vOGSzF7HdMyw="
"resolved" "https://registry.npmjs.org/@dsherret/to-absolute-glob/-/to-absolute-glob-2.0.2.tgz"
"version" "2.0.2"
dependencies:
"is-absolute" "^1.0.0"
"is-negated-glob" "^1.0.0"
"@jimp/bmp@^0.14.0":
"integrity" "sha512-5RkX6tSS7K3K3xNEb2ygPuvyL9whjanhoaB/WmmXlJS6ub4DjTqrapu8j4qnIWmO4YYtFeTbDTXV6v9P1yMA5A=="
"resolved" "https://registry.npmjs.org/@jimp/bmp/-/bmp-0.14.0.tgz"
"version" "0.14.0"
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.14.0"
"bmp-js" "^0.1.0"
"@jimp/core@^0.14.0":
"integrity" "sha512-S62FcKdtLtj3yWsGfJRdFXSutjvHg7aQNiFogMbwq19RP4XJWqS2nOphu7ScB8KrSlyy5nPF2hkWNhLRLyD82w=="
"resolved" "https://registry.npmjs.org/@jimp/core/-/core-0.14.0.tgz"
"version" "0.14.0"
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.14.0"
"any-base" "^1.1.0"
"buffer" "^5.2.0"
"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.14.0":
"integrity" "sha512-kQJMeH87+kWJdVw8F9GQhtsageqqxrvzg7yyOw3Tx/s7v5RToe8RnKyMM+kVtBJtNAG+Xyv/z01uYQ2jiZ3GwA=="
"resolved" "https://registry.npmjs.org/@jimp/custom/-/custom-0.14.0.tgz"
"version" "0.14.0"
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/core" "^0.14.0"
"@jimp/gif@^0.14.0":
"integrity" "sha512-DHjoOSfCaCz72+oGGEh8qH0zE6pUBaBxPxxmpYJjkNyDZP7RkbBkZJScIYeQ7BmJxmGN4/dZn+MxamoQlr+UYg=="
"resolved" "https://registry.npmjs.org/@jimp/gif/-/gif-0.14.0.tgz"
"version" "0.14.0"
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.14.0"
"gifwrap" "^0.9.2"
"omggif" "^1.0.9"
"@jimp/jpeg@^0.14.0":
"integrity" "sha512-561neGbr+87S/YVQYnZSTyjWTHBm9F6F1obYHiyU3wVmF+1CLbxY3FQzt4YolwyQHIBv36Bo0PY2KkkU8BEeeQ=="
"resolved" "https://registry.npmjs.org/@jimp/jpeg/-/jpeg-0.14.0.tgz"
"version" "0.14.0"
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.14.0"
"jpeg-js" "^0.4.0"
"@jimp/plugin-blit@^0.14.0":
"integrity" "sha512-YoYOrnVHeX3InfgbJawAU601iTZMwEBZkyqcP1V/S33Qnz9uzH1Uj1NtC6fNgWzvX6I4XbCWwtr4RrGFb5CFrw=="
"resolved" "https://registry.npmjs.org/@jimp/plugin-blit/-/plugin-blit-0.14.0.tgz"
"version" "0.14.0"
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.14.0"
"@jimp/plugin-blur@^0.14.0":
"integrity" "sha512-9WhZcofLrT0hgI7t0chf7iBQZib//0gJh9WcQMUt5+Q1Bk04dWs8vTgLNj61GBqZXgHSPzE4OpCrrLDBG8zlhQ=="
"resolved" "https://registry.npmjs.org/@jimp/plugin-blur/-/plugin-blur-0.14.0.tgz"
"version" "0.14.0"
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.14.0"
"@jimp/plugin-circle@^0.14.0":
"integrity" "sha512-o5L+wf6QA44tvTum5HeLyLSc5eVfIUd5ZDVi5iRfO4o6GT/zux9AxuTSkKwnjhsG8bn1dDmywAOQGAx7BjrQVA=="
"resolved" "https://registry.npmjs.org/@jimp/plugin-circle/-/plugin-circle-0.14.0.tgz"
"version" "0.14.0"
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.14.0"
"@jimp/plugin-color@^0.14.0":
"integrity" "sha512-JJz512SAILYV0M5LzBb9sbOm/XEj2fGElMiHAxb7aLI6jx+n0agxtHpfpV/AePTLm1vzzDxx6AJxXbKv355hBQ=="
"resolved" "https://registry.npmjs.org/@jimp/plugin-color/-/plugin-color-0.14.0.tgz"
"version" "0.14.0"
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.14.0"
"tinycolor2" "^1.4.1"
"@jimp/plugin-contain@^0.14.0":
"integrity" "sha512-RX2q233lGyaxiMY6kAgnm9ScmEkNSof0hdlaJAVDS1OgXphGAYAeSIAwzESZN4x3ORaWvkFefeVH9O9/698Evg=="
"resolved" "https://registry.npmjs.org/@jimp/plugin-contain/-/plugin-contain-0.14.0.tgz"
"version" "0.14.0"
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.14.0"
"@jimp/plugin-cover@^0.14.0":
"integrity" "sha512-0P/5XhzWES4uMdvbi3beUgfvhn4YuQ/ny8ijs5kkYIw6K8mHcl820HahuGpwWMx56DJLHRl1hFhJwo9CeTRJtQ=="
"resolved" "https://registry.npmjs.org/@jimp/plugin-cover/-/plugin-cover-0.14.0.tgz"
"version" "0.14.0"
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.14.0"
"@jimp/plugin-crop@^0.14.0":
"integrity" "sha512-Ojtih+XIe6/XSGtpWtbAXBozhCdsDMmy+THUJAGu2x7ZgKrMS0JotN+vN2YC3nwDpYkM+yOJImQeptSfZb2Sug=="
"resolved" "https://registry.npmjs.org/@jimp/plugin-crop/-/plugin-crop-0.14.0.tgz"
"version" "0.14.0"
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.14.0"
"@jimp/plugin-displace@^0.14.0":
"integrity" "sha512-c75uQUzMgrHa8vegkgUvgRL/PRvD7paFbFJvzW0Ugs8Wl+CDMGIPYQ3j7IVaQkIS+cAxv+NJ3TIRBQyBrfVEOg=="
"resolved" "https://registry.npmjs.org/@jimp/plugin-displace/-/plugin-displace-0.14.0.tgz"
"version" "0.14.0"
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.14.0"
"@jimp/plugin-dither@^0.14.0":
"integrity" "sha512-g8SJqFLyYexXQQsoh4dc1VP87TwyOgeTElBcxSXX2LaaMZezypmxQfLTzOFzZoK8m39NuaoH21Ou1Ftsq7LzVQ=="
"resolved" "https://registry.npmjs.org/@jimp/plugin-dither/-/plugin-dither-0.14.0.tgz"
"version" "0.14.0"
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.14.0"
"@jimp/plugin-fisheye@^0.14.0":
"integrity" "sha512-BFfUZ64EikCaABhCA6mR3bsltWhPpS321jpeIQfJyrILdpFsZ/OccNwCgpW1XlbldDHIoNtXTDGn3E+vCE7vDg=="
"resolved" "https://registry.npmjs.org/@jimp/plugin-fisheye/-/plugin-fisheye-0.14.0.tgz"
"version" "0.14.0"
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.14.0"
"@jimp/plugin-flip@^0.14.0":
"integrity" "sha512-WtL1hj6ryqHhApih+9qZQYA6Ye8a4HAmdTzLbYdTMrrrSUgIzFdiZsD0WeDHpgS/+QMsWwF+NFmTZmxNWqKfXw=="
"resolved" "https://registry.npmjs.org/@jimp/plugin-flip/-/plugin-flip-0.14.0.tgz"
"version" "0.14.0"
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.14.0"
"@jimp/plugin-gaussian@^0.14.0":
"integrity" "sha512-uaLwQ0XAQoydDlF9tlfc7iD9drYPriFe+jgYnWm8fbw5cN+eOIcnneEX9XCOOzwgLPkNCxGox6Kxjn8zY6GxtQ=="
"resolved" "https://registry.npmjs.org/@jimp/plugin-gaussian/-/plugin-gaussian-0.14.0.tgz"
"version" "0.14.0"
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.14.0"
"@jimp/plugin-invert@^0.14.0":
"integrity" "sha512-UaQW9X9vx8orQXYSjT5VcITkJPwDaHwrBbxxPoDG+F/Zgv4oV9fP+udDD6qmkgI9taU+44Fy+zm/J/gGcMWrdg=="
"resolved" "https://registry.npmjs.org/@jimp/plugin-invert/-/plugin-invert-0.14.0.tgz"
"version" "0.14.0"
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.14.0"
"@jimp/plugin-mask@^0.14.0":
"integrity" "sha512-tdiGM69OBaKtSPfYSQeflzFhEpoRZ+BvKfDEoivyTjauynbjpRiwB1CaiS8En1INTDwzLXTT0Be9SpI3LkJoEA=="
"resolved" "https://registry.npmjs.org/@jimp/plugin-mask/-/plugin-mask-0.14.0.tgz"
"version" "0.14.0"
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.14.0"
"@jimp/plugin-normalize@^0.14.0":
"integrity" "sha512-AfY8sqlsbbdVwFGcyIPy5JH/7fnBzlmuweb+Qtx2vn29okq6+HelLjw2b+VT2btgGUmWWHGEHd86oRGSoWGyEQ=="
"resolved" "https://registry.npmjs.org/@jimp/plugin-normalize/-/plugin-normalize-0.14.0.tgz"
"version" "0.14.0"
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.14.0"
"@jimp/plugin-print@^0.14.0":
"integrity" "sha512-MwP3sH+VS5AhhSTXk7pui+tEJFsxnTKFY3TraFJb8WFbA2Vo2qsRCZseEGwpTLhENB7p/JSsLvWoSSbpmxhFAQ=="
"resolved" "https://registry.npmjs.org/@jimp/plugin-print/-/plugin-print-0.14.0.tgz"
"version" "0.14.0"
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.14.0"
"load-bmfont" "^1.4.0"
"@jimp/plugin-resize@^0.14.0":
"integrity" "sha512-qFeMOyXE/Bk6QXN0GQo89+CB2dQcXqoxUcDb2Ah8wdYlKqpi53skABkgVy5pW3EpiprDnzNDboMltdvDslNgLQ=="
"resolved" "https://registry.npmjs.org/@jimp/plugin-resize/-/plugin-resize-0.14.0.tgz"
"version" "0.14.0"
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.14.0"
"@jimp/plugin-rotate@^0.14.0":
"integrity" "sha512-aGaicts44bvpTcq5Dtf93/8TZFu5pMo/61lWWnYmwJJU1RqtQlxbCLEQpMyRhKDNSfPbuP8nyGmaqXlM/82J0Q=="
"resolved" "https://registry.npmjs.org/@jimp/plugin-rotate/-/plugin-rotate-0.14.0.tgz"
"version" "0.14.0"
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.14.0"
"@jimp/plugin-scale@^0.14.0":
"integrity" "sha512-ZcJk0hxY5ZKZDDwflqQNHEGRblgaR+piePZm7dPwPUOSeYEH31P0AwZ1ziceR74zd8N80M0TMft+e3Td6KGBHw=="
"resolved" "https://registry.npmjs.org/@jimp/plugin-scale/-/plugin-scale-0.14.0.tgz"
"version" "0.14.0"
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.14.0"
"@jimp/plugin-shadow@^0.14.0":
"integrity" "sha512-p2igcEr/iGrLiTu0YePNHyby0WYAXM14c5cECZIVnq/UTOOIQ7xIcWZJ1lRbAEPxVVXPN1UibhZAbr3HAb5BjQ=="
"resolved" "https://registry.npmjs.org/@jimp/plugin-shadow/-/plugin-shadow-0.14.0.tgz"
"version" "0.14.0"
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.14.0"
"@jimp/plugin-threshold@^0.14.0":
"integrity" "sha512-N4BlDgm/FoOMV/DQM2rSpzsgqAzkP0DXkWZoqaQrlRxQBo4zizQLzhEL00T/YCCMKnddzgEhnByaocgaaa0fKw=="
"resolved" "https://registry.npmjs.org/@jimp/plugin-threshold/-/plugin-threshold-0.14.0.tgz"
"version" "0.14.0"
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.14.0"
"@jimp/plugins@^0.14.0":
"integrity" "sha512-vDO3XT/YQlFlFLq5TqNjQkISqjBHT8VMhpWhAfJVwuXIpilxz5Glu4IDLK6jp4IjPR6Yg2WO8TmRY/HI8vLrOw=="
"resolved" "https://registry.npmjs.org/@jimp/plugins/-/plugins-0.14.0.tgz"
"version" "0.14.0"
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/plugin-blit" "^0.14.0"
"@jimp/plugin-blur" "^0.14.0"
"@jimp/plugin-circle" "^0.14.0"
"@jimp/plugin-color" "^0.14.0"
"@jimp/plugin-contain" "^0.14.0"
"@jimp/plugin-cover" "^0.14.0"
"@jimp/plugin-crop" "^0.14.0"
"@jimp/plugin-displace" "^0.14.0"
"@jimp/plugin-dither" "^0.14.0"
"@jimp/plugin-fisheye" "^0.14.0"
"@jimp/plugin-flip" "^0.14.0"
"@jimp/plugin-gaussian" "^0.14.0"
"@jimp/plugin-invert" "^0.14.0"
"@jimp/plugin-mask" "^0.14.0"
"@jimp/plugin-normalize" "^0.14.0"
"@jimp/plugin-print" "^0.14.0"
"@jimp/plugin-resize" "^0.14.0"
"@jimp/plugin-rotate" "^0.14.0"
"@jimp/plugin-scale" "^0.14.0"
"@jimp/plugin-shadow" "^0.14.0"
"@jimp/plugin-threshold" "^0.14.0"
"timm" "^1.6.1"
"@jimp/png@^0.14.0":
"integrity" "sha512-0RV/mEIDOrPCcNfXSPmPBqqSZYwGADNRVUTyMt47RuZh7sugbYdv/uvKmQSiqRdR0L1sfbCBMWUEa5G/8MSbdA=="
"resolved" "https://registry.npmjs.org/@jimp/png/-/png-0.14.0.tgz"
"version" "0.14.0"
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/utils" "^0.14.0"
"pngjs" "^3.3.3"
"@jimp/tiff@^0.14.0":
"integrity" "sha512-zBYDTlutc7j88G/7FBCn3kmQwWr0rmm1e0FKB4C3uJ5oYfT8645lftUsvosKVUEfkdmOaMAnhrf4ekaHcb5gQw=="
"resolved" "https://registry.npmjs.org/@jimp/tiff/-/tiff-0.14.0.tgz"
"version" "0.14.0"
dependencies:
"@babel/runtime" "^7.7.2"
"utif" "^2.0.1"
"@jimp/types@^0.14.0":
"integrity" "sha512-hx3cXAW1KZm+b+XCrY3LXtdWy2U+hNtq0rPyJ7NuXCjU7lZR3vIkpz1DLJ3yDdS70hTi5QDXY3Cd9kd6DtloHQ=="
"resolved" "https://registry.npmjs.org/@jimp/types/-/types-0.14.0.tgz"
"version" "0.14.0"
dependencies:
"@babel/runtime" "^7.7.2"
"@jimp/bmp" "^0.14.0"
"@jimp/gif" "^0.14.0"
"@jimp/jpeg" "^0.14.0"
"@jimp/png" "^0.14.0"
"@jimp/tiff" "^0.14.0"
"timm" "^1.6.1"
"@jimp/utils@^0.14.0":
"integrity" "sha512-MY5KFYUru0y74IsgM/9asDwb3ERxWxXEu3CRCZEvE7DtT86y1bR1XgtlSliMrptjz4qbivNGMQSvUBpEFJDp1A=="
"resolved" "https://registry.npmjs.org/@jimp/utils/-/utils-0.14.0.tgz"
"version" "0.14.0"
dependencies:
"@babel/runtime" "^7.7.2"
"regenerator-runtime" "^0.13.3"
"@kwsites/file-exists@^1.1.1":
"integrity" "sha512-m9/5YGR18lIwxSFDwfE3oA7bWuq9kdau6ugN4H2rJeyhFQZcG9AgSHkQtSD15a8WvTgfz9aikZMrKPHvbpqFiw=="
"resolved" "https://registry.npmjs.org/@kwsites/file-exists/-/file-exists-1.1.1.tgz"
"version" "1.1.1"
dependencies:
"debug" "^4.1.1"
"@kwsites/promise-deferred@^1.1.1":
"integrity" "sha512-GaHYm+c0O9MjZRu0ongGBRbinu8gVAMd2UZjji6jVmqKtZluZnptXGWhz1E8j8D2HJ3f/yMxKAUC0b+57wncIw=="
"resolved" "https://registry.npmjs.org/@kwsites/promise-deferred/-/promise-deferred-1.1.1.tgz"
"version" "1.1.1"
"@nativescript/doctor@2.0.6":
"integrity" "sha512-OdjlCNkaOnMyHdygPd0MYAomZS+lzyaDPxEH5rQ4pr6sz48gSQRvtGIOCJHH3cJ03lQNTIMc3EuQBn7xsKSOWw=="
"resolved" "https://registry.npmjs.org/@nativescript/doctor/-/doctor-2.0.6.tgz"
"version" "2.0.6"
dependencies:
"lodash" "4.17.15"
"osenv" "0.1.3"
"semver" "5.5.1"
"shelljs" "~0.8.4"
"temp" "0.8.3"
"winreg" "1.2.2"
"yauzl" "2.10.0"
"@nativescript/schematics-executor@0.0.2":
"integrity" "sha512-3pA0cXbkwu55+He71QO1oRE18wQyquk5t6vpM4laAFatI5w8n2dyHYSzM7pM6bN57zpcP2sk5u1q3YtYv0d2MQ=="
"resolved" "https://registry.npmjs.org/@nativescript/schematics-executor/-/schematics-executor-0.0.2.tgz"
"version" "0.0.2"
"@nodelib/fs.scandir@2.1.3":
"integrity" "sha512-eGmwYQn3gxo4r7jdQnkrrN6bY478C3P+a/y72IJukF8LjB6ZHeB3c+Ehacj3sYeSmUXGlnA67/PmbM9CVwL7Dw=="
"resolved" "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.3.tgz"
"version" "2.1.3"
dependencies:
"@nodelib/fs.stat" "2.0.3"
"run-parallel" "^1.1.9"
"@nodelib/fs.stat@^2.0.2", "@nodelib/fs.stat@2.0.3":
"integrity" "sha512-bQBFruR2TAwoevBEd/NWMoAAtNGzTRgdrqnYCc7dhzfoNvqPzLyqlEQnzZ3kVnNrSp25iyxE00/3h2fqGAGArA=="
"resolved" "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.3.tgz"
"version" "2.0.3"
"@nodelib/fs.walk@^1.2.3":
"integrity" "sha512-1V9XOY4rDW0rehzbrcqAmHnz8e7SKvX27gh8Gt2WgB0+pdzdiLV83p72kZPU+jvMbS1qU5mauP2iOvO8rhmurQ=="
"resolved" "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.4.tgz"
"version" "1.2.4"
dependencies:
"@nodelib/fs.scandir" "2.1.3"
"fastq" "^1.6.0"
"@npmcli/ci-detect@^1.0.0":
"integrity" "sha512-oN3y7FAROHhrAt7Rr7PnTSwrHrZVRTS2ZbyxeQwSSYD0ifwM3YNgQqbaRmjcWoPyq77MjchusjJDspbzMmip1Q=="
"resolved" "https://registry.npmjs.org/@npmcli/ci-detect/-/ci-detect-1.3.0.tgz"
"version" "1.3.0"
"@npmcli/git@^2.0.1":
"integrity" "sha512-c/ODsV5ppjB12VDXKc6hzVNgg6ZJX/etILUn3WgF5NLAYBhQLJ3fBq6uB2jQD4OwqOzJdPT1/xA3Xh3aaWGk5w=="
"resolved" "https://registry.npmjs.org/@npmcli/git/-/git-2.0.3.tgz"
"version" "2.0.3"
dependencies:
"@npmcli/promise-spawn" "^1.1.0"
"lru-cache" "^6.0.0"
"mkdirp" "^1.0.3"
"npm-pick-manifest" "^6.0.0"
"promise-inflight" "^1.0.1"
"promise-retry" "^1.1.1"
"semver" "^7.3.2"
"unique-filename" "^1.1.1"
"which" "^2.0.2"
"@npmcli/installed-package-contents@^1.0.5":
"integrity" "sha512-aKIwguaaqb6ViwSOFytniGvLPb9SMCUm39TgM3SfUo7n0TxUMbwoXfpwyvQ4blm10lzbAwTsvjr7QZ85LvTi4A=="
"resolved" "https://registry.npmjs.org/@npmcli/installed-package-contents/-/installed-package-contents-1.0.5.tgz"
"version" "1.0.5"
dependencies:
"npm-bundled" "^1.1.1"
"npm-normalize-package-bin" "^1.0.1"
"read-package-json-fast" "^1.1.1"
"readdir-scoped-modules" "^1.1.0"
"@npmcli/move-file@^1.0.1":
"integrity" "sha512-Uv6h1sT+0DrblvIrolFtbvM1FgWm+/sy4B3pvLp67Zys+thcukzS5ekn7HsZFGpWP4Q3fYJCljbWQE/XivMRLw=="
"resolved" "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.0.1.tgz"
"version" "1.0.1"
dependencies:
"mkdirp" "^1.0.4"
"@npmcli/promise-spawn@^1.1.0", "@npmcli/promise-spawn@^1.2.0":
"integrity" "sha512-nFtqjVETliApiRdjbYwKwhlSHx2ZMagyj5b9YbNt0BWeeOVxJd47ZVE2u16vxDHyTOZvk+YLV7INwfAE9a2uow=="
"resolved" "https://registry.npmjs.org/@npmcli/promise-spawn/-/promise-spawn-1.2.0.tgz"
"version" "1.2.0"
dependencies:
"infer-owner" "^1.0.4"
"@npmcli/run-script@^1.3.0":
"integrity" "sha512-z7AzLmsMtVntMRJt35M5VAjb/jH6yH37Q8Ku011JVR7rEoy+p2a6/NkwqChCRZORlJaS9rwjXmZKM6UmwXLkqA=="
"resolved" "https://registry.npmjs.org/@npmcli/run-script/-/run-script-1.5.0.tgz"
"version" "1.5.0"
dependencies:
"@npmcli/promise-spawn" "^1.2.0"
"infer-owner" "^1.0.4"
"node-gyp" "^6.1.0"
"read-package-json-fast" "^1.1.3"
"@rigor789/resolve-package-path@^1.0.5":
"integrity" "sha512-HLAsQ6kN1o1OO9jDmSiGPG9T6Z+cNAAgAiVikIShKKtQY/u+MblMgDmEw8QkMDEJtNSoOdEt6M2Z/UFG5xHyzA=="
"resolved" "https://registry.npmjs.org/@rigor789/resolve-package-path/-/resolve-package-path-1.0.5.tgz"
"version" "1.0.5"
"@sindresorhus/is@^0.14.0":
"integrity" "sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ=="
"resolved" "https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz"
"version" "0.14.0"
"@sinonjs/commons@^1", "@sinonjs/commons@^1.6.0", "@sinonjs/commons@^1.7.0", "@sinonjs/commons@^1.7.2":
"integrity" "sha512-892K+kWUUi3cl+LlqEWIDrhvLgdL79tECi8JZUyq6IviKy/DNhuzCRlbHUjxK89f4ypPMMaFnFuR9Ie6DoIMsw=="
"resolved" "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.1.tgz"
"version" "1.8.1"
dependencies:
"type-detect" "4.0.8"
"@sinonjs/fake-timers@^6.0.0", "@sinonjs/fake-timers@^6.0.1":
"integrity" "sha512-MZPUxrmFubI36XS1DI3qmI0YdN1gks62JtFZvxR67ljjSNCeK6U08Zx4msEWOXuofgqUt6zPHSi1H9fbjR/NRA=="
"resolved" "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-6.0.1.tgz"
"version" "6.0.1"
dependencies:
"@sinonjs/commons" "^1.7.0"
"@sinonjs/formatio@^5.0.1":
"integrity" "sha512-KaiQ5pBf1MpS09MuA0kp6KBQt2JUOQycqVG1NZXvzeaXe5LGFqAKueIS0bw4w0P9r7KuBSVdUk5QjXsUdu2CxQ=="
"resolved" "https://registry.npmjs.org/@sinonjs/formatio/-/formatio-5.0.1.tgz"
"version" "5.0.1"
dependencies:
"@sinonjs/commons" "^1"
"@sinonjs/samsam" "^5.0.2"
"@sinonjs/samsam@^5.0.2", "@sinonjs/samsam@^5.0.3":
"integrity" "sha512-42nyaQOVunX5Pm6GRJobmzbS7iLI+fhERITnETXzzwDZh+TtDr/Au3yAvXVjFmZ4wEUaE4Y3NFZfKv0bV0cbtg=="
"resolved" "https://registry.npmjs.org/@sinonjs/samsam/-/samsam-5.1.0.tgz"
"version" "5.1.0"
dependencies:
"@sinonjs/commons" "^1.6.0"
"lodash.get" "^4.4.2"
"type-detect" "^4.0.8"
"@sinonjs/text-encoding@^0.7.1":
"integrity" "sha512-+iTbntw2IZPb/anVDbypzfQa+ay64MW0Zo8aJ8gZPWMMK6/OubMVb6lUPMagqjOPnmtauXnFCACVl3O7ogjeqQ=="
"resolved" "https://registry.npmjs.org/@sinonjs/text-encoding/-/text-encoding-0.7.1.tgz"
"version" "0.7.1"
"@szmarczak/http-timer@^1.1.2":
"integrity" "sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA=="
"resolved" "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-1.1.2.tgz"
"version" "1.1.2"
dependencies:
"defer-to-connect" "^1.0.1"
"@tootallnate/once@1":
"integrity" "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw=="
"resolved" "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz"
"version" "1.1.2"
"@ts-morph/common@~0.6.0":
"integrity" "sha512-pI35nZz5bs3tL3btSVX2cWkAE8rc80F+Fn4TwSC6bQvn7fgn9IyLXVcAfpG6X6NBY5wN9TkSWXn/QYUkBvR/Fw=="
"resolved" "https://registry.npmjs.org/@ts-morph/common/-/common-0.6.0.tgz"
"version" "0.6.0"
dependencies:
"@dsherret/to-absolute-glob" "^2.0.2"
"fast-glob" "^3.2.4"
"fs-extra" "^9.0.1"
"is-negated-glob" "^1.0.0"
"multimatch" "^4.0.0"
"typescript" "~4.0.2"
"@types/chai-as-promised@7.1.3":
"integrity" "sha512-FQnh1ohPXJELpKhzjuDkPLR2BZCAqed+a6xV4MI/T3XzHfd2FlarfUGUdZYgqYe8oxkYn0fchHEeHfHqdZ96sg=="
"resolved" "https://registry.npmjs.org/@types/chai-as-promised/-/chai-as-promised-7.1.3.tgz"
"version" "7.1.3"
dependencies:
"@types/chai" "*"
"@types/chai@*", "@types/chai@4.2.12":
"integrity" "sha512-aN5IAC8QNtSUdQzxu7lGBgYAOuU1tmRU4c9dIq5OKGf/SBVjXo+ffM2wEjudAWbgpOhy60nLoAGH1xm8fpCKFQ=="
"resolved" "https://registry.npmjs.org/@types/chai/-/chai-4.2.12.tgz"
"version" "4.2.12"
"@types/chokidar@2.1.3":
"integrity" "sha512-6qK3xoLLAhQVTucQGHTySwOVA1crHRXnJeLwqK6KIFkkKa2aoMFXh+WEi8PotxDtvN6MQJLyYN9ag9P6NLV81w=="
"resolved" "https://registry.npmjs.org/@types/chokidar/-/chokidar-2.1.3.tgz"
"version" "2.1.3"
dependencies:
"chokidar" "*"
"@types/color-convert@*":
"integrity" "sha512-OKGEfULrvSL2VRbkl/gnjjgbbF7ycIlpSsX7Nkab4MOWi5XxmgBYvuiQ7lcCFY5cPDz7MUNaKgxte2VRmtr4Fg=="
"resolved" "https://registry.npmjs.org/@types/color-convert/-/color-convert-1.9.0.tgz"
"version" "1.9.0"
dependencies:
"@types/color-name" "*"
"@types/color-name@*", "@types/color-name@^1.1.1":
"integrity" "sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ=="
"resolved" "https://registry.npmjs.org/@types/color-name/-/color-name-1.1.1.tgz"
"version" "1.1.1"
"@types/color@3.0.1":
"integrity" "sha512-oeUWVaAwI+xINDUx+3F2vJkl/vVB03VChFF/Gl3iQCdbcakjuoJyMOba+3BXRtnBhxZ7uBYqQBi9EpLnvSoztA=="
"resolved" "https://registry.npmjs.org/@types/color/-/color-3.0.1.tgz"
"version" "3.0.1"
dependencies:
"@types/color-convert" "*"
"@types/convert-source-map@^1.5.1":
"integrity" "sha512-laiDIXqqthjJlyAMYAXOtN3N8+UlbM+KvZi4BaY5ZOekmVkBs/UxfK5O0HWeJVG2eW8F+Mu2ww13fTX+kY1FlQ=="
"resolved" "https://registry.npmjs.org/@types/convert-source-map/-/convert-source-map-1.5.1.tgz"
"version" "1.5.1"
"@types/form-data@2.5.0":
"integrity" "sha512-23/wYiuckYYtFpL+4RPWiWmRQH2BjFuqCUi2+N3amB1a1Drv+i/byTrGvlLwRVLFNAZbwpbQ7JvTK+VCAPMbcg=="
"resolved" "https://registry.npmjs.org/@types/form-data/-/form-data-2.5.0.tgz"
"version" "2.5.0"
dependencies:
"form-data" "*"
"@types/glob@^7.1.3":
"integrity" "sha512-SEYeGAIQIQX8NN6LDKprLjbrd5dARM5EXsd8GI/A5l0apYI1fGMWgPHSe4ZKL4eozlAyI+doUE9XbYS4xCkQ1w=="
"resolved" "https://registry.npmjs.org/@types/glob/-/glob-7.1.3.tgz"
"version" "7.1.3"
dependencies:
"@types/minimatch" "*"
"@types/node" "*"
"@types/istextorbinary@^2.3.0":
"integrity" "sha512-8Xl9onTFM8VO6cgu6aYt5o45m9mh4xbhfjLtv9A13F64R5/wCwl2Xdrt6I+M6+8j/4ndkvxdBNPbLTFdYhn+iA=="
"resolved" "https://registry.npmjs.org/@types/istextorbinary/-/istextorbinary-2.3.0.tgz"
"version" "2.3.0"
dependencies:
"@types/node" "*"
"@types/lodash@4.14.158":
"integrity" "sha512-InCEXJNTv/59yO4VSfuvNrZHt7eeNtWQEgnieIA+mIC+MOWM9arOWG2eQ8Vhk6NbOre6/BidiXhkZYeDY9U35w=="
"resolved" "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.158.tgz"
"version" "4.14.158"
"@types/minimatch@*", "@types/minimatch@^3.0.3":
"integrity" "sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA=="
"resolved" "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.3.tgz"
"version" "3.0.3"
"@types/minimist@^1.2.0":
"integrity" "sha1-aaI6OtKcrwCX8G7aWbNh7i8GOfY="
"resolved" "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.0.tgz"
"version" "1.2.0"
"@types/minipass@*":
"integrity" "sha512-wuzZksN4w4kyfoOv/dlpov4NOunwutLA/q7uc00xU02ZyUY+aoM5PWIXEKBMnm0NHd4a+N71BMjq+x7+2Af1fg=="
"resolved" "https://registry.npmjs.org/@types/minipass/-/minipass-2.2.0.tgz"
"version" "2.2.0"
dependencies:
"@types/node" "*"
"@types/node-fetch@*":
"integrity" "sha512-o2WVNf5UhWRkxlf6eq+jMZDu7kjgpgJfl4xVNlvryc95O/6F2ld8ztKX+qu+Rjyet93WAWm5LjeX9H5FGkODvw=="
"resolved" "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.5.7.tgz"
"version" "2.5.7"
dependencies:
"@types/node" "*"
"form-data" "^3.0.0"
"@types/node@*", "@types/node@14.0.27":
"integrity" "sha512-kVrqXhbclHNHGu9ztnAwSncIgJv/FaxmzXJvGXNdcCpV1b8u1/Mi6z6m0vwy0LzKeXFTPLH0NzwmoJ3fNCIq0g=="
"resolved" "https://registry.npmjs.org/@types/node/-/node-14.0.27.tgz"
"version" "14.0.27"
"@types/normalize-package-data@^2.4.0":
"integrity" "sha512-f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA=="
"resolved" "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.0.tgz"
"version" "2.4.0"
"@types/npm-package-arg@*":
"integrity" "sha512-vbt5fb0y1svMhu++1lwtKmZL76d0uPChFlw7kEzyUmTwfmpHRcFb8i0R8ElT69q/L+QLgK2hgECivIAvaEDwag=="
"resolved" "https://registry.npmjs.org/@types/npm-package-arg/-/npm-package-arg-6.1.0.tgz"
"version" "6.1.0"
"@types/npm-registry-fetch@*":
"integrity" "sha512-3dtNw1VMy1gnaklK0746/cOkJYMvdY/3FNuRDR5ih+WUWIbgTR6JvKq6hmhW4G1/o6lPdjHECPaWcowXgWZDyg=="
"resolved" "https://registry.npmjs.org/@types/npm-registry-fetch/-/npm-registry-fetch-8.0.0.tgz"
"version" "8.0.0"
dependencies:
"@types/node" "*"
"@types/node-fetch" "*"
"@types/npm-package-arg" "*"
"@types/npmlog" "*"
"@types/ssri" "*"
"@types/npmlog@*":
"integrity" "sha512-4QQmOF5KlwfxJ5IGXFIudkeLCdMABz03RcUXu+LCb24zmln8QW6aDjuGl4d4XPVLf2j+FnjelHTP7dvceAFbhA=="
"resolved" "https://registry.npmjs.org/@types/npmlog/-/npmlog-4.1.2.tgz"
"version" "4.1.2"
"@types/ora@3.2.0":
"integrity" "sha512-jll99xUKpiFbIFZSQcxm4numfsLaOWBzWNaRk3PvTSE7BPqTzzOCFmS0mQ7m8qkTfmYhuYbehTGsxkvRLPC++w=="
"resolved" "https://registry.npmjs.org/@types/ora/-/ora-3.2.0.tgz"
"version" "3.2.0"
dependencies:
"ora" "*"
"@types/pacote@^11.1.0":
"integrity" "sha512-ULeeKzbZ3e5GRlqbVDUDgi0L0RYg4OJXLSrtOoyTmGJTAN7JdR0IyZ0kXCCjGzkZwh4ABM7TKISwyDkJqnbAgw=="
"resolved" "https://registry.npmjs.org/@types/pacote/-/pacote-11.1.0.tgz"
"version" "11.1.0"
dependencies:
"@types/node" "*"
"@types/npm-registry-fetch" "*"
"@types/npmlog" "*"
"@types/ssri" "*"
"@types/parse-json@^4.0.0":
"integrity" "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA=="
"resolved" "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz"
"version" "4.0.0"
"@types/prettier@2.1.0":
"integrity" "sha512-hiYA88aHiEIgDmeKlsyVsuQdcFn3Z2VuFd/Xm/HCnGnPD8UFU5BM128uzzRVVGEzKDKYUrRsRH9S2o+NUy/3IA=="
"resolved" "https://registry.npmjs.org/@types/prettier/-/prettier-2.1.0.tgz"
"version" "2.1.0"
"@types/prompts@2.0.9":
"integrity" "sha512-TORZP+FSjTYMWwKadftmqEn6bziN5RnfygehByGsjxoK5ydnClddtv6GikGWPvCm24oI+YBwck5WDxIIyNxUrA=="
"resolved" "https://registry.npmjs.org/@types/prompts/-/prompts-2.0.9.tgz"
"version" "2.0.9"
dependencies:
"@types/node" "*"
"@types/proper-lockfile@4.1.1":
"integrity" "sha512-HAjVfDa73pFgivViHyDu8HHHcds+W4MgOuZZAdyFJrHS8ngtCXmhl4hc2YXqSOwO6Bsa+iF2Sgxb2+gv874VOQ=="
"resolved" "https://registry.npmjs.org/@types/proper-lockfile/-/proper-lockfile-4.1.1.tgz"
"version" "4.1.1"
dependencies:
"@types/retry" "*"
"@types/pubnub@4.0.2":
"integrity" "sha512-FiyzZib5HpE0INXuTLiK0tRJFXhE/qEXk3chKcvtKiYj9CyuEuEzTRsHLx4pv03Yq7wwt7e8oGxl5Fjanl+NTA=="
"resolved" "https://registry.npmjs.org/@types/pubnub/-/pubnub-4.0.2.tgz"
"version" "4.0.2"
"@types/qr-image@3.2.3":
"integrity" "sha512-vM444NoJ+S8VMgdggUlBtK7Er6MJGdO97HsOmgDUsERL6Eiv9+Pjc3C0rkVAPW/AYnKDPLfCD9vmQlb0HRPdWw=="
"resolved" "https://registry.npmjs.org/@types/qr-image/-/qr-image-3.2.3.tgz"
"version" "3.2.3"
dependencies:
"@types/node" "*"
"@types/retry@*", "@types/retry@0.12.0":
"integrity" "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA=="
"resolved" "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz"
"version" "0.12.0"
"@types/semver@7.3.1":
"integrity" "sha512-ooD/FJ8EuwlDKOI6D9HWxgIgJjMg2cuziXm/42npDC8y4NjxplBUn9loewZiBNCt44450lHAU0OSb51/UqXeag=="
"resolved" "https://registry.npmjs.org/@types/semver/-/semver-7.3.1.tgz"
"version" "7.3.1"
dependencies:
"@types/node" "*"
"@types/shortid@0.0.29":
"integrity" "sha1-gJPuBBam4r8qpjOBCRFLP7/6Dps="
"resolved" "https://registry.npmjs.org/@types/shortid/-/shortid-0.0.29.tgz"
"version" "0.0.29"
"@types/sinon@9.0.4":
"integrity" "sha512-sJmb32asJZY6Z2u09bl0G2wglSxDlROlAejCjsnor+LzBMz17gu8IU7vKC/vWDnv9zEq2wqADHVXFjf4eE8Gdw=="
"resolved" "https://registry.npmjs.org/@types/sinon/-/sinon-9.0.4.tgz"
"version" "9.0.4"
dependencies:
"@types/sinonjs__fake-timers" "*"
"@types/sinonjs__fake-timers@*":
"integrity" "sha512-yYezQwGWty8ziyYLdZjwxyMb0CZR49h8JALHGrxjQHWlqGgc8kLdHEgWrgL0uZ29DMvEVBDnHU2Wg36zKSIUtA=="
"resolved" "https://registry.npmjs.org/@types/sinonjs__fake-timers/-/sinonjs__fake-timers-6.0.1.tgz"
"version" "6.0.1"
"@types/source-map@0.5.7":
"integrity" "sha512-LrnsgZIfJaysFkv9rRJp4/uAyqw87oVed3s1hhF83nwbo9c7MG9g5DqR0seHP+lkX4ldmMrVolPjQSe2ZfD0yA=="
"resolved" "https://registry.npmjs.org/@types/source-map/-/source-map-0.5.7.tgz"
"version" "0.5.7"
dependencies:
"source-map" "*"
"@types/ssri@*":
"integrity" "sha512-CJR8I0rHwuhpS6YBq1q+StUlQBuxoyfVVZ3O1FDiXH1HJtNm90lErBsZpr2zBMF2x5d9khvq105CQ03EXkZzAQ=="
"resolved" "https://registry.npmjs.org/@types/ssri/-/ssri-7.1.0.tgz"
"version" "7.1.0"
dependencies:
"@types/node" "*"
"@types/tar@4.0.3":
"integrity" "sha512-Z7AVMMlkI8NTWF0qGhC4QIX0zkV/+y0J8x7b/RsHrN0310+YNjoJd8UrApCiGBCWtKjxS9QhNqLi2UJNToh5hA=="
"resolved" "https://registry.npmjs.org/@types/tar/-/tar-4.0.3.tgz"
"version" "4.0.3"
dependencies:
"@types/minipass" "*"
"@types/node" "*"
"@types/temp@0.9.1":
"integrity" "sha512-yDQ8Y+oQi9V7VkexwE6NBSVyNuyNFeGI275yWXASc2DjmxNicMi9O50KxDpNlST1kBbV9jKYBHGXhgNYFMPqtA=="
"resolved" "https://registry.npmjs.org/@types/temp/-/temp-0.9.1.tgz"
"version" "0.9.1"
dependencies:
"@types/node" "*"
"@types/tunnel@0.0.1":
"integrity" "sha512-AOqu6bQu5MSWwYvehMXLukFHnupHrpZ8nvgae5Ggie9UwzDR1CCwoXgSSWNZJuyOlCdfdsWMA5F2LlmvyoTv8A=="
"resolved" "https://registry.npmjs.org/@types/tunnel/-/tunnel-0.0.1.tgz"
"version" "0.0.1"
dependencies:
"@types/node" "*"
"@types/universal-analytics@0.4.4":
"integrity" "sha512-9g3F0SGxVr4UDd6y07bWtFnkpSSX1Ake7U7AGHgSFrwM6pF53/fV85bfxT2JLWS/3sjLCcyzoYzQlCxpkVo7wA=="
"resolved" "https://registry.npmjs.org/@types/universal-analytics/-/universal-analytics-0.4.4.tgz"
"version" "0.4.4"
"@types/uuid@^8.3.0":
"integrity" "sha512-eQ9qFW/fhfGJF8WKHGEHZEyVWfZxrT+6CLIJGBcZPfxUh/+BnEj+UCGYMlr9qZuX/2AltsvwrGqp0LhEW8D0zQ=="
"resolved" "https://registry.npmjs.org/@types/uuid/-/uuid-8.3.0.tgz"
"version" "8.3.0"
"@types/ws@7.2.6":
"integrity" "sha512-Q07IrQUSNpr+cXU4E4LtkSIBPie5GLZyyMC1QtQYRLWz701+XcoVygGUZgvLqElq1nU4ICldMYPnexlBsg3dqQ=="
"resolved" "https://registry.npmjs.org/@types/ws/-/ws-7.2.6.tgz"
"version" "7.2.6"
dependencies:
"@types/node" "*"
"@types/xml2js@0.4.5":
"integrity" "sha512-yohU3zMn0fkhlape1nxXG2bLEGZRc1FeqF80RoHaYXJN7uibaauXfhzhOJr1Xh36sn+/tx21QAOf07b/xYVk1w=="
"resolved" "https://registry.npmjs.org/@types/xml2js/-/xml2js-0.4.5.tgz"
"version" "0.4.5"
dependencies:
"@types/node" "*"
"@types/yargs-parser@*":
"integrity" "sha512-FA/BWv8t8ZWJ+gEOnLLd8ygxH/2UFbAvgEonyfN6yWGLKc7zVjbpl2Y4CTjid9h2RfgPP6SEt6uHwEOply00yw=="
"resolved" "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-15.0.0.tgz"
"version" "15.0.0"
"@types/yargs@17.0.8":
"integrity" "sha512-wDeUwiUmem9FzsyysEwRukaEdDNcwbROvQ9QGRKaLI6t+IltNzbn4/i4asmB10auvZGQCzSQ6t0GSczEThlUXw=="
"resolved" "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.8.tgz"
"version" "17.0.8"
dependencies:
"@types/yargs-parser" "*"
"@yarnpkg/lockfile@^1.1.0":
"integrity" "sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ=="
"resolved" "https://registry.npmjs.org/@yarnpkg/lockfile/-/lockfile-1.1.0.tgz"
"version" "1.1.0"
"abbrev@1", "abbrev@1.0.x":
"integrity" "sha1-kbR5JYinc4wl813W9jdSovh3YTU="
"resolved" "https://registry.npmjs.org/abbrev/-/abbrev-1.0.9.tgz"
"version" "1.0.9"
"add-stream@^1.0.0":
"integrity" "sha1-anmQQ3ynNtXhKI25K9MmbV9csqo="
"resolved" "https://registry.npmjs.org/add-stream/-/add-stream-1.0.0.tgz"
"version" "1.0.0"
"agent-base@^4.1.0", "agent-base@^4.2.0", "agent-base@^4.3.0", "agent-base@4":
"integrity" "sha512-salcGninV0nPrwpGNn4VTXBb1SOuXQBiqbrNXoeizJsHrsL6ERFM2Ne3JUSBWRE6aeNJI2ROP/WEEIDUiDe3cg=="
"resolved" "https://registry.npmjs.org/agent-base/-/agent-base-4.3.0.tgz"
"version" "4.3.0"
dependencies:
"es6-promisify" "^5.0.0"
"agent-base@6":
"integrity" "sha512-01q25QQDwLSsyfhrKbn8yuur+JNw0H+0Y4JiGIKd3z9aYk/w/2kxD/Upc+t2ZBBSUNff50VjPsSW2YxM8QYKVg=="
"resolved" "https://registry.npmjs.org/agent-base/-/agent-base-6.0.1.tgz"
"version" "6.0.1"
dependencies:
"debug" "4"
"agentkeepalive@^3.1.0":
"integrity" "sha512-e0L/HNe6qkQ7H19kTlRRqUibEAwDK5AFk6y3PtMsuut2VAH6+Q4xZml1tNDJD7kSAyqmbG/K08K5WEJYtUrSlQ=="
"resolved" "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-3.5.2.tgz"
"version" "3.5.2"
dependencies:
"humanize-ms" "^1.2.1"
"agentkeepalive@^4.1.0":
"integrity" "sha512-wn8fw19xKZwdGPO47jivonaHRTd+nGOMP1z11sgGeQzDy2xd5FG0R67dIMcKHDE2cJ5y+YXV30XVGUBPRSY7Hg=="
"resolved" "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.1.3.tgz"
"version" "4.1.3"
dependencies:
"debug" "^4.1.0"
"depd" "^1.1.2"
"humanize-ms" "^1.2.1"
"aggregate-error@^3.0.0":
"integrity" "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA=="
"resolved" "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz"
"version" "3.1.0"
dependencies:
"clean-stack" "^2.0.0"
"indent-string" "^4.0.0"
"ajv@^6.12.3":
"integrity" "sha512-eienB2c9qVQs2KWexhkrdMLVDoIQCz5KSeLxwg9Lzk4DOfBtIK9PQwwufcsn1jjGuf9WZmqPMbGxOzfcuphJCQ=="
"resolved" "https://registry.npmjs.org/ajv/-/ajv-6.12.4.tgz"
"version" "6.12.4"
dependencies:
"fast-deep-equal" "^3.1.1"
"fast-json-stable-stringify" "^2.0.0"
"json-schema-traverse" "^0.4.1"
"uri-js" "^4.2.2"
"amdefine@>=0.0.4":
"integrity" "sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU="
"resolved" "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz"
"version" "1.0.1"
"ansi-colors@^4.1.1", "ansi-colors@4.1.1":
"integrity" "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA=="
"resolved" "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz"
"version" "4.1.1"
"ansi-escapes@^4.3.0":
"integrity" "sha512-JWF7ocqNrp8u9oqpgV+wH5ftbt+cfvv+PTjOvKLT3AdYly/LmORARfEVT1iyjwN+4MqE5UmVKoAdIBqeoCHgLA=="
"resolved" "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.1.tgz"
"version" "4.3.1"
dependencies:
"type-fest" "^0.11.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.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz"
"version" "3.0.0"
"ansi-regex@^4.1.0":
"integrity" "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg=="
"resolved" "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz"
"version" "4.1.0"
"ansi-regex@^5.0.0":
"integrity" "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg=="
"resolved" "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz"
"version" "5.0.0"
"ansi-regex@^5.0.1":
"integrity" "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="
"resolved" "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz"
"version" "5.0.1"
"ansi-styles@^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" "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA=="
"resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz"
"version" "3.2.1"
dependencies:
"color-convert" "^1.9.0"
"ansi-styles@^4.0.0", "ansi-styles@^4.1.0":
"integrity" "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA=="
"resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz"
"version" "4.2.1"
dependencies:
"@types/color-name" "^1.1.1"
"color-convert" "^2.0.1"
"ansicolors@~0.3.2":
"integrity" "sha1-ZlWX3oap/+Oqm/vmyuXG6kJrSXk="
"resolved" "https://registry.npmjs.org/ansicolors/-/ansicolors-0.3.2.tgz"
"version" "0.3.2"
"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"
"anymatch@^2.0.0":
"integrity" "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw=="
"resolved" "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz"
"version" "2.0.0"
dependencies:
"micromatch" "^3.1.4"
"normalize-path" "^2.1.1"
"anymatch@~3.1.1":
"integrity" "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg=="
"resolved" "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz"
"version" "3.1.1"
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"
"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" "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg=="
"resolved" "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz"
"version" "1.0.10"
dependencies:
"sprintf-js" "~1.0.2"
"arr-diff@^4.0.0":
"integrity" "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA="
"resolved" "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz"
"version" "4.0.0"
"arr-flatten@^1.1.0":
"integrity" "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg=="
"resolved" "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz"
"version" "1.1.0"
"arr-union@^3.1.0":
"integrity" "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ="
"resolved" "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz"
"version" "3.1.0"
"array-differ@^3.0.0":
"integrity" "sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg=="
"resolved" "https://registry.npmjs.org/array-differ/-/array-differ-3.0.0.tgz"
"version" "3.0.0"
"array-each@^1.0.1":
"integrity" "sha1-p5SvDAWrF1KEbudTofIRoFugxE8="
"resolved" "https://registry.npmjs.org/array-each/-/array-each-1.0.1.tgz"
"version" "1.0.1"
"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-ify@^1.0.0":
"integrity" "sha1-nlKHYrSpBmrRY6aWKjZEGOlibs4="
"resolved" "https://registry.npmjs.org/array-ify/-/array-ify-1.0.0.tgz"
"version" "1.0.0"
"array-slice@^1.0.0":
"integrity" "sha512-B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w=="
"resolved" "https://registry.npmjs.org/array-slice/-/array-slice-1.1.0.tgz"
"version" "1.1.0"
"array-union@^2.1.0":
"integrity" "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw=="
"resolved" "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz"
"version" "2.1.0"