-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
3157 lines (2712 loc) · 112 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/helper-validator-identifier@^7.14.9":
"integrity" "sha1-Ig35k7/pBKSmsCq08zhaXr9uI4k="
"resolved" "https://registry.nlark.com/@babel/helper-validator-identifier/download/@babel/helper-validator-identifier-7.15.7.tgz?cache=0&sync_timestamp=1631920000984&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Fhelper-validator-identifier%2Fdownload%2F%40babel%2Fhelper-validator-identifier-7.15.7.tgz"
"version" "7.15.7"
"@babel/parser@^7.6.0", "@babel/parser@^7.9.6":
"integrity" "sha1-e6zcvnG9w/+TbVEMFdzqfPC5kBY="
"resolved" "https://registry.npmmirror.com/@babel/parser/download/@babel/parser-7.15.8.tgz"
"version" "7.15.8"
"@babel/types@^7.6.1", "@babel/types@^7.9.6":
"integrity" "sha1-mavcSCGLKIHAWN0KerBbmcm+dY8="
"resolved" "https://registry.nlark.com/@babel/types/download/@babel/types-7.15.6.tgz?cache=0&sync_timestamp=1631216408117&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.15.6.tgz"
"version" "7.15.6"
dependencies:
"@babel/helper-validator-identifier" "^7.14.9"
"to-fast-properties" "^2.0.0"
"@types/babel-types@*", "@types/babel-types@^7.0.0":
"integrity" "sha512-qZLoYeXSTgQuK1h7QQS16hqLGdmqtRmN8w/rl3Au/l5x/zkHx+a4VHrHyBsi1I1vtK2oBHxSzKIu0R5p6spdOA=="
"resolved" "https://registry.npmjs.org/@types/babel-types/-/babel-types-7.0.9.tgz"
"version" "7.0.9"
"@types/babylon@^6.16.2":
"integrity" "sha512-xH2e58elpj1X4ynnKp9qSnWlsRTIs6n3tgLGNfwAGHwePw0mulHQllV34n0T25uYSu1k0hRKkWXF890B1yS47w=="
"resolved" "https://registry.npmjs.org/@types/babylon/-/babylon-6.16.5.tgz"
"version" "6.16.5"
dependencies:
"@types/babel-types" "*"
"a-sync-waterfall@^1.0.0":
"integrity" "sha512-RYTOHHdWipFUliRFMCS4X2Yn2X8M87V/OpSqWzKKOGhzqyUxzyVmhHDH9sAvG+ZuQf/TAOFsLCpMw09I1ufUnA=="
"resolved" "https://registry.npmjs.org/a-sync-waterfall/-/a-sync-waterfall-1.0.1.tgz"
"version" "1.0.1"
"abbrev@^1.1.1":
"integrity" "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q=="
"resolved" "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz"
"version" "1.1.1"
"accepts@~1.3.5":
"integrity" "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA=="
"resolved" "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz"
"version" "1.3.7"
dependencies:
"mime-types" "~2.1.24"
"negotiator" "0.6.2"
"acorn-globals@^3.0.0":
"integrity" "sha1-/YJw9x+7SZawBPqIDuXUZXOnMb8="
"resolved" "https://registry.npmjs.org/acorn-globals/-/acorn-globals-3.1.0.tgz"
"version" "3.1.0"
dependencies:
"acorn" "^4.0.4"
"acorn@^3.1.0":
"integrity" "sha1-ReN/s56No/JbruP/U2niu18iAXo="
"resolved" "https://registry.npmjs.org/acorn/-/acorn-3.3.0.tgz"
"version" "3.3.0"
"acorn@^4.0.4":
"integrity" "sha1-EFSVrlNh1pe9GVyCUZLhrX8lN4c="
"resolved" "https://registry.npmjs.org/acorn/-/acorn-4.0.13.tgz"
"version" "4.0.13"
"acorn@^7.1.1":
"integrity" "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A=="
"resolved" "https://registry.npmmirror.com/acorn/-/acorn-7.4.1.tgz"
"version" "7.4.1"
"acorn@~4.0.2":
"integrity" "sha1-EFSVrlNh1pe9GVyCUZLhrX8lN4c="
"resolved" "https://registry.npmjs.org/acorn/-/acorn-4.0.13.tgz"
"version" "4.0.13"
"address@>=0.0.1":
"integrity" "sha1-vxEWycdYxRt6kz0pa3LCIe2UKLY="
"resolved" "https://registry.nlark.com/address/download/address-1.1.2.tgz"
"version" "1.1.2"
"align-text@^0.1.1", "align-text@^0.1.3":
"integrity" "sha1-DNkKVhCT810KmSVsIrcGlDP60Rc="
"resolved" "https://registry.npmjs.org/align-text/-/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-regex@^2.0.0":
"integrity" "sha1-w7M6te42DYbg5ijwRorn7yfWVN8="
"resolved" "https://registry.nlark.com/ansi-regex/download/ansi-regex-2.1.1.tgz?cache=0&sync_timestamp=1631634988487&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fansi-regex%2Fdownload%2Fansi-regex-2.1.1.tgz"
"version" "2.1.1"
"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-styles@^2.2.1":
"integrity" "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4="
"resolved" "https://registry.nlark.com/ansi-styles/download/ansi-styles-2.2.1.tgz"
"version" "2.2.1"
"ansi-styles@^4.1.0":
"integrity" "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="
"resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz"
"version" "4.3.0"
dependencies:
"color-convert" "^2.0.1"
"any-promise@^1.2.0":
"integrity" "sha1-q8av7tzqUugJzcA3au0845Y10X8="
"resolved" "https://registry.nlark.com/any-promise/download/any-promise-1.3.0.tgz"
"version" "1.3.0"
"anymatch@^1.3.0":
"integrity" "sha1-VT3Lj5HjyImEXf26NMd3IbkLnXo="
"resolved" "https://registry.nlark.com/anymatch/download/anymatch-1.3.2.tgz"
"version" "1.3.2"
dependencies:
"micromatch" "^2.1.5"
"normalize-path" "^2.0.0"
"anymatch@~3.1.2":
"integrity" "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg=="
"resolved" "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz"
"version" "3.1.2"
dependencies:
"normalize-path" "^3.0.0"
"picomatch" "^2.0.4"
"archy@^1.0.0":
"integrity" "sha1-+cjBN1fMHde8N5rHeyxipcKGjEA="
"resolved" "https://registry.npmjs.org/archy/-/archy-1.0.0.tgz"
"version" "1.0.0"
"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"
"argparse@^2.0.1":
"integrity" "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q=="
"resolved" "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz"
"version" "2.0.1"
"arr-diff@^2.0.0":
"integrity" "sha1-jzuCf5Vai9ZpaX5KQlasPOrjVs8="
"resolved" "https://registry.nlark.com/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.nlark.com/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.nlark.com/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.nlark.com/arr-union/download/arr-union-3.1.0.tgz"
"version" "3.1.0"
"array-unique@^0.2.1":
"integrity" "sha1-odl8yvy8JiXMcPrc6zalDFiwGlM="
"resolved" "https://registry.nlark.com/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.nlark.com/array-unique/download/array-unique-0.3.2.tgz"
"version" "0.3.2"
"asap@^2.0.3", "asap@~2.0.3":
"integrity" "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY="
"resolved" "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz"
"version" "2.0.6"
"assert-never@^1.2.1":
"integrity" "sha1-EfDjY78UYgX7CBk7XHuQ9NHPRP4="
"resolved" "https://registry.npm.taobao.org/assert-never/download/assert-never-1.2.1.tgz"
"version" "1.2.1"
"assign-symbols@^1.0.0":
"integrity" "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c="
"resolved" "https://registry.nlark.com/assign-symbols/download/assign-symbols-1.0.0.tgz"
"version" "1.0.0"
"async-each@^1.0.0":
"integrity" "sha1-tyfb+H12UWAvBvTUrDh/R9kbDL8="
"resolved" "https://registry.nlark.com/async-each/download/async-each-1.0.3.tgz"
"version" "1.0.3"
"atob@^2.1.2":
"integrity" "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg=="
"resolved" "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz"
"version" "2.1.2"
"babel-runtime@^6.26.0":
"integrity" "sha1-llxwWGaOgrVde/4E/yM3vItWR/4="
"resolved" "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz"
"version" "6.26.0"
dependencies:
"core-js" "^2.4.0"
"regenerator-runtime" "^0.11.0"
"babel-types@^6.26.0":
"integrity" "sha1-o7Bz+Uq0nrb6Vc1lInozQ4BjJJc="
"resolved" "https://registry.npmjs.org/babel-types/-/babel-types-6.26.0.tgz"
"version" "6.26.0"
dependencies:
"babel-runtime" "^6.26.0"
"esutils" "^2.0.2"
"lodash" "^4.17.4"
"to-fast-properties" "^1.0.3"
"integrity" "sha1-9m7Ncpg1eu5ElV8jWm71QhkQSxE="
"resolved" "https://registry.nlark.com/babel-walk/download/babel-walk-3.0.0-canary-5.tgz"
"version" "3.0.0-canary-5"
dependencies:
"@babel/types" "^7.9.6"
"babylon@^6.18.0":
"integrity" "sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ=="
"resolved" "https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz"
"version" "6.18.0"
"balanced-match@^1.0.0":
"integrity" "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="
"resolved" "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz"
"version" "1.0.2"
"base@^0.11.1":
"integrity" "sha1-e95c7RRbbVUakNuH+DxVi060io8="
"resolved" "https://registry.nlark.com/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"
"basic-auth@~2.0.1":
"integrity" "sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg=="
"resolved" "https://registry.npmjs.org/basic-auth/-/basic-auth-2.0.1.tgz"
"version" "2.0.1"
dependencies:
"safe-buffer" "5.1.2"
"binary-extensions@^1.0.0":
"integrity" "sha1-WYr+VHVbKGilMw0q/51Ou1Mgm2U="
"resolved" "https://registry.nlark.com/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.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz"
"version" "2.2.0"
"bindings@^1.5.0":
"integrity" "sha1-EDU8npRTNLwFEabZCzj7x8nFBN8="
"resolved" "https://registry.nlark.com/bindings/download/bindings-1.5.0.tgz?cache=0&sync_timestamp=1624608043149&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fbindings%2Fdownload%2Fbindings-1.5.0.tgz"
"version" "1.5.0"
dependencies:
"file-uri-to-path" "1.0.0"
"bluebird@^3.2.2", "bluebird@^3.4.0", "bluebird@^3.5.0", "bluebird@^3.5.1", "bluebird@^3.5.2", "bluebird@^3.5.5":
"integrity" "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg=="
"resolved" "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz"
"version" "3.7.2"
"boolbase@^1.0.0":
"integrity" "sha1-aN/1++YMUes3cl6p4+0xDcwed24="
"resolved" "https://registry.nlark.com/boolbase/download/boolbase-1.0.0.tgz"
"version" "1.0.0"
"brace-expansion@^1.1.7":
"integrity" "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA=="
"resolved" "https://registry.npmjs.org/brace-expansion/-/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.nlark.com/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":
"integrity" "sha1-WXn9PxTNUxVl5fot8av/8d+u5yk="
"resolved" "https://registry.nlark.com/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.1", "braces@~3.0.2":
"integrity" "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A=="
"resolved" "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz"
"version" "3.0.2"
dependencies:
"fill-range" "^7.0.1"
"integrity" "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg="
"resolved" "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz"
"version" "3.0.0"
"cache-base@^1.0.1":
"integrity" "sha1-Cn9GQWgxyLZi7jb+TnxZ129marI="
"resolved" "https://registry.nlark.com/cache-base/download/cache-base-1.0.1.tgz"
"version" "1.0.1"
dependencies:
"collection-visit" "^1.0.0"
"component-emitter" "^1.2.1"
"get-value" "^2.0.6"
"has-value" "^1.0.0"
"isobject" "^3.0.1"
"set-value" "^2.0.0"
"to-object-path" "^0.3.0"
"union-value" "^1.0.0"
"unset-value" "^1.0.0"
"call-bind@^1.0.2":
"integrity" "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA=="
"resolved" "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz"
"version" "1.0.2"
dependencies:
"function-bind" "^1.1.1"
"get-intrinsic" "^1.0.2"
"camel-case@^4.0.0":
"integrity" "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw=="
"resolved" "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz"
"version" "4.1.2"
dependencies:
"pascal-case" "^3.1.2"
"tslib" "^2.0.3"
"camelcase@^1.0.2":
"integrity" "sha1-m7UwTS4LVmmLLHWLCKPqqdqlijk="
"resolved" "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz"
"version" "1.2.1"
"center-align@^0.1.1":
"integrity" "sha1-qg0yYptu6XIgBBHL1EYckHvCt60="
"resolved" "https://registry.npmjs.org/center-align/-/center-align-0.1.3.tgz"
"version" "0.1.3"
dependencies:
"align-text" "^0.1.3"
"lazy-cache" "^1.0.3"
"chalk@^1.1.1":
"integrity" "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg="
"resolved" "https://registry.nlark.com/chalk/download/chalk-1.1.3.tgz?cache=0&sync_timestamp=1627646614989&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-1.1.3.tgz"
"version" "1.1.3"
dependencies:
"ansi-styles" "^2.2.1"
"escape-string-regexp" "^1.0.2"
"has-ansi" "^2.0.0"
"strip-ansi" "^3.0.0"
"supports-color" "^2.0.0"
"chalk@^4.0.0":
"integrity" "sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg=="
"resolved" "https://registry.npmjs.org/chalk/-/chalk-4.1.1.tgz"
"version" "4.1.1"
dependencies:
"ansi-styles" "^4.1.0"
"supports-color" "^7.1.0"
"character-parser@^2.1.1", "character-parser@^2.2.0":
"integrity" "sha1-x84o821LzZdE5f/CxfzeHHMmH8A="
"resolved" "https://registry.npmjs.org/character-parser/-/character-parser-2.2.0.tgz"
"version" "2.2.0"
dependencies:
"is-regex" "^1.0.3"
"cheerio-select@^1.5.0":
"integrity" "sha1-+vPa6zGxfF4anavO4oiq+Kr6WCM="
"resolved" "https://registry.nlark.com/cheerio-select/download/cheerio-select-1.5.0.tgz"
"version" "1.5.0"
dependencies:
"css-select" "^4.1.3"
"css-what" "^5.0.1"
"domelementtype" "^2.2.0"
"domhandler" "^4.2.0"
"domutils" "^2.7.0"
"cheerio@^1.0.0-rc.10":
"integrity" "sha1-K6Pc38wm55VvwfRA5h1RxkM3nz4="
"resolved" "https://registry.nlark.com/cheerio/download/cheerio-1.0.0-rc.10.tgz?cache=0&sync_timestamp=1623169700794&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fcheerio%2Fdownload%2Fcheerio-1.0.0-rc.10.tgz"
"version" "1.0.0-rc.10"
dependencies:
"cheerio-select" "^1.5.0"
"dom-serializer" "^1.3.2"
"domhandler" "^4.2.0"
"htmlparser2" "^6.1.0"
"parse5" "^6.0.1"
"parse5-htmlparser2-tree-adapter" "^6.0.1"
"tslib" "^2.2.0"
"chokidar@^1.5.2":
"integrity" "sha1-eY5ol3gVHIB2tLNg5e3SjNortGg="
"resolved" "https://registry.nlark.com/chokidar/download/chokidar-1.7.0.tgz"
"version" "1.7.0"
dependencies:
"anymatch" "^1.3.0"
"async-each" "^1.0.0"
"glob-parent" "^2.0.0"
"inherits" "^2.0.1"
"is-binary-path" "^1.0.0"
"is-glob" "^2.0.0"
"path-is-absolute" "^1.0.0"
"readdirp" "^2.0.0"
optionalDependencies:
"fsevents" "^1.0.0"
"chokidar@^3.0.0", "chokidar@^3.3.0":
"integrity" "sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ=="
"resolved" "https://registry.npmjs.org/chokidar/-/chokidar-3.5.2.tgz"
"version" "3.5.2"
dependencies:
"anymatch" "~3.1.2"
"braces" "~3.0.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"
optionalDependencies:
"fsevents" "~2.3.2"
"class-utils@^0.3.5":
"integrity" "sha1-+TNprouafOAv1B+q0MqDAzGQxGM="
"resolved" "https://registry.nlark.com/class-utils/download/class-utils-0.3.6.tgz"
"version" "0.3.6"
dependencies:
"arr-union" "^3.1.0"
"define-property" "^0.2.5"
"isobject" "^3.0.0"
"static-extend" "^0.1.1"
"clean-css@^4.1.11":
"integrity" "sha512-VcMWDN54ZN/DS+g58HYL5/n4Zrqe8vHJpGA8KdgUXFU4fuP/aHNw8eld9SyEIyabIMJX/0RaY/fplOo5hYLSFA=="
"resolved" "https://registry.npmjs.org/clean-css/-/clean-css-4.2.3.tgz"
"version" "4.2.3"
dependencies:
"source-map" "~0.6.0"
"clipboard@^2.0.0":
"integrity" "sha512-Y6WO0unAIQp5bLmk1zdThRhgJt/x3ks6f30s3oE3H1mgIEU33XyQjEf8gsf6DxC7NPX8Y1SsNWjUjL/ywLnnbQ=="
"resolved" "https://registry.npmjs.org/clipboard/-/clipboard-2.0.8.tgz"
"version" "2.0.8"
dependencies:
"good-listener" "^1.2.2"
"select" "^1.1.2"
"tiny-emitter" "^2.0.0"
"cliui@^2.1.0":
"integrity" "sha1-S0dXYP+AJkx2LDoXGQMukcf+oNE="
"resolved" "https://registry.npmjs.org/cliui/-/cliui-2.1.0.tgz"
"version" "2.1.0"
dependencies:
"center-align" "^0.1.1"
"right-align" "^0.1.1"
"wordwrap" "0.0.2"
"collection-visit@^1.0.0":
"integrity" "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA="
"resolved" "https://registry.nlark.com/collection-visit/download/collection-visit-1.0.0.tgz"
"version" "1.0.0"
dependencies:
"map-visit" "^1.0.0"
"object-visit" "^1.0.0"
"color-convert@^2.0.1":
"integrity" "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ=="
"resolved" "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz"
"version" "2.0.1"
dependencies:
"color-name" "~1.1.4"
"color-name@~1.1.4":
"integrity" "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
"resolved" "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz"
"version" "1.1.4"
"command-exists@^1.2.8":
"integrity" "sha512-LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w=="
"resolved" "https://registry.npmjs.org/command-exists/-/command-exists-1.2.9.tgz"
"version" "1.2.9"
"commander@^5.1.0":
"integrity" "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg=="
"resolved" "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz"
"version" "5.1.0"
"component-emitter@^1.2.1":
"integrity" "sha1-FuQHD7qK4ptnnyIVhT7hgasuq8A="
"resolved" "https://registry.nlark.com/component-emitter/download/component-emitter-1.3.0.tgz"
"version" "1.3.0"
"compressible@~2.0.16":
"integrity" "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg=="
"resolved" "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz"
"version" "2.0.18"
dependencies:
"mime-db" ">= 1.43.0 < 2"
"compression@^1.7.4":
"integrity" "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ=="
"resolved" "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz"
"version" "1.7.4"
dependencies:
"accepts" "~1.3.5"
"bytes" "3.0.0"
"compressible" "~2.0.16"
"debug" "2.6.9"
"on-headers" "~1.0.2"
"safe-buffer" "5.1.2"
"vary" "~1.1.2"
"integrity" "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s="
"resolved" "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz"
"version" "0.0.1"
"connect@^3.7.0":
"integrity" "sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ=="
"resolved" "https://registry.npmjs.org/connect/-/connect-3.7.0.tgz"
"version" "3.7.0"
dependencies:
"debug" "2.6.9"
"finalhandler" "1.1.2"
"parseurl" "~1.3.3"
"utils-merge" "1.0.1"
"constantinople@^3.0.1", "constantinople@^3.1.2":
"integrity" "sha512-yePcBqEFhLOqSBtwYOGGS1exHo/s1xjekXiinh4itpNQGCu4KA1euPh1fg07N2wMITZXQkBz75Ntdt1ctGZouw=="
"resolved" "https://registry.npmjs.org/constantinople/-/constantinople-3.1.2.tgz"
"version" "3.1.2"
dependencies:
"@types/babel-types" "^7.0.0"
"@types/babylon" "^6.16.2"
"babel-types" "^6.26.0"
"babylon" "^6.18.0"
"constantinople@^4.0.1":
"integrity" "sha512-vCrqcSIq4//Gx74TXXCGnHpulY1dskqLTFGDmhrGxzeXL8lF8kvXv6mpNWlJj1uD4DW23D4ljAqbY4RRaaUZIw=="
"resolved" "https://registry.npmmirror.com/constantinople/-/constantinople-4.0.1.tgz"
"version" "4.0.1"
dependencies:
"@babel/parser" "^7.6.0"
"@babel/types" "^7.6.1"
"copy-descriptor@^0.1.0":
"integrity" "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40="
"resolved" "https://registry.nlark.com/copy-descriptor/download/copy-descriptor-0.1.1.tgz"
"version" "0.1.1"
"copy-to@~2.0.1":
"integrity" "sha1-JoD7uAaKSNCGVrYJgJK9r8kG9KU="
"resolved" "https://registry.npmmirror.com/copy-to/download/copy-to-2.0.1.tgz"
"version" "2.0.1"
"core-js@^2.4.0":
"integrity" "sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ=="
"resolved" "https://registry.npmjs.org/core-js/-/core-js-2.6.12.tgz"
"version" "2.6.12"
"core-util-is@~1.0.0":
"integrity" "sha1-pgQtNjTCsn6TKPg3uWX6yDgI24U="
"resolved" "https://registry.nlark.com/core-util-is/download/core-util-is-1.0.3.tgz"
"version" "1.0.3"
"cross-spawn@^7.0.0":
"integrity" "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w=="
"resolved" "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz"
"version" "7.0.3"
dependencies:
"path-key" "^3.1.0"
"shebang-command" "^2.0.0"
"which" "^2.0.1"
"css-parse@~2.0.0":
"integrity" "sha1-pGjuZnwW2BzPBcWMONKpfHgNv9Q="
"resolved" "https://registry.npmjs.org/css-parse/-/css-parse-2.0.0.tgz"
"version" "2.0.0"
dependencies:
"css" "^2.0.0"
"integrity" "sha1-Mh9s9zeCpv91ERE5D8BeLGV9jJs="
"resolved" "https://registry.npmjs.org/css-parse/-/css-parse-1.7.0.tgz"
"version" "1.7.0"
"css-select@^4.1.3":
"integrity" "sha1-pwRA9wMX8maRGK10/xBeZYSccGc="
"resolved" "https://registry.nlark.com/css-select/download/css-select-4.1.3.tgz"
"version" "4.1.3"
dependencies:
"boolbase" "^1.0.0"
"css-what" "^5.0.0"
"domhandler" "^4.2.0"
"domutils" "^2.6.0"
"nth-check" "^2.0.0"
"css-what@^5.0.0", "css-what@^5.0.1":
"integrity" "sha1-P3tweq32M7r2LCzrhXm1RbtA9/4="
"resolved" "https://registry.npmmirror.com/css-what/download/css-what-5.1.0.tgz?cache=0&sync_timestamp=1633864103961&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fcss-what%2Fdownload%2Fcss-what-5.1.0.tgz"
"version" "5.1.0"
"css@^2.0.0":
"integrity" "sha512-oUnjmWpy0niI3x/mPL8dVEI1l7MnG3+HHyRPHf+YFSbK+svOhXpmSOcDURUh2aOCgl2grzrOPt1nHLuCVFULLw=="
"resolved" "https://registry.npmjs.org/css/-/css-2.2.4.tgz"
"version" "2.2.4"
dependencies:
"inherits" "^2.0.3"
"source-map" "^0.6.1"
"source-map-resolve" "^0.5.2"
"urix" "^0.1.0"
"cuid@^2.1.4":
"integrity" "sha512-xiEMER6E7TlTPnDxrM4eRiC6TRgjNX9xzEZ5U/Se2YJKr7Mq4pJn/2XEHjl3STcSh96GmkHPcBXLES8M29wyyg=="
"resolved" "https://registry.npmjs.org/cuid/-/cuid-2.1.8.tgz"
"version" "2.1.8"
"debug@*", "debug@^2.2.0", "debug@^2.3.3", "[email protected]":
"integrity" "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA=="
"resolved" "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz"
"version" "2.6.9"
dependencies:
"ms" "2.0.0"
"debug@~3.1.0":
"integrity" "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g=="
"resolved" "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz"
"version" "3.1.0"
dependencies:
"ms" "2.0.0"
"decamelize@^1.0.0":
"integrity" "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA="
"resolved" "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz"
"version" "1.2.0"
"decode-uri-component@^0.2.0":
"integrity" "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU="
"resolved" "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz"
"version" "0.2.0"
"deepmerge@^4.2.2":
"integrity" "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg=="
"resolved" "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz"
"version" "4.2.2"
"default-user-agent@^1.0.0":
"integrity" "sha1-FsRu/cq6PtxF8k8r1IaLAbfCrcY="
"resolved" "https://registry.nlark.com/default-user-agent/download/default-user-agent-1.0.0.tgz"
"version" "1.0.0"
dependencies:
"os-name" "~1.0.3"
"define-property@^0.2.5":
"integrity" "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY="
"resolved" "https://registry.nlark.com/define-property/download/define-property-0.2.5.tgz"
"version" "0.2.5"
dependencies:
"is-descriptor" "^0.1.0"
"define-property@^1.0.0":
"integrity" "sha1-dp66rz9KY6rTr56NMEybvnm/sOY="
"resolved" "https://registry.nlark.com/define-property/download/define-property-1.0.0.tgz"
"version" "1.0.0"
dependencies:
"is-descriptor" "^1.0.0"
"define-property@^2.0.2":
"integrity" "sha1-1Flono1lS6d+AqgX+HENcCyxbp0="
"resolved" "https://registry.nlark.com/define-property/download/define-property-2.0.2.tgz"
"version" "2.0.2"
dependencies:
"is-descriptor" "^1.0.2"
"isobject" "^3.0.1"
"delegate@^3.1.2":
"integrity" "sha512-IofjkYBZaZivn0V8nnsMJGBr4jVLxHDheKSW88PyxS5QC4Vo9ZbZVvhzlSxY87fVq3STR6r+4cGepyHkcWOQSw=="
"resolved" "https://registry.npmjs.org/delegate/-/delegate-3.2.0.tgz"
"version" "3.2.0"
"depd@~1.1.2":
"integrity" "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak="
"resolved" "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz"
"version" "1.1.2"
"depd@~2.0.0":
"integrity" "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw=="
"resolved" "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz"
"version" "2.0.0"
"destroy@~1.0.4":
"integrity" "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA="
"resolved" "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz"
"version" "1.0.4"
"digest-header@^0.0.1":
"integrity" "sha1-Ecz23uxXZqw3l0TZAcEsuklRS+Y="
"resolved" "https://registry.nlark.com/digest-header/download/digest-header-0.0.1.tgz"
"version" "0.0.1"
dependencies:
"utility" "0.1.11"
"doctypes@^1.1.0":
"integrity" "sha1-6oCxBqh1OHdOijpKWv4pPeSJ4Kk="
"resolved" "https://registry.npmjs.org/doctypes/-/doctypes-1.1.0.tgz"
"version" "1.1.0"
"dom-serializer@^1.0.1", "dom-serializer@^1.3.2":
"integrity" "sha512-5c54Bk5Dw4qAxNOI1pFEizPSjVsx5+bpJKmL2kPn8JhBUq2q09tTCa3mjijun2NfK78NMouDYNMBkOrPZiS+ig=="
"resolved" "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.3.2.tgz"
"version" "1.3.2"
dependencies:
"domelementtype" "^2.0.1"
"domhandler" "^4.2.0"
"entities" "^2.0.0"
"domelementtype@^2.0.1", "domelementtype@^2.2.0":
"integrity" "sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A=="
"resolved" "https://registry.npmjs.org/domelementtype/-/domelementtype-2.2.0.tgz"
"version" "2.2.0"
"domhandler@^4.0.0", "domhandler@^4.2.0":
"integrity" "sha512-zk7sgt970kzPks2Bf+dwT/PLzghLnsivb9CcxkvR8Mzr66Olr0Ofd8neSbglHJHaHa2MadfoSdNlKYAaafmWfA=="
"resolved" "https://registry.npmjs.org/domhandler/-/domhandler-4.2.0.tgz"
"version" "4.2.0"
dependencies:
"domelementtype" "^2.2.0"
"domutils@^2.5.2", "domutils@^2.6.0", "domutils@^2.7.0":
"integrity" "sha512-8eaHa17IwJUPAiB+SoTYBo5mCdeMgdcAoXJ59m6DT1vw+5iLS3gNoqYaRowaBKtGVrOF1Jz4yDTgYKLK2kvfJg=="
"resolved" "https://registry.npmjs.org/domutils/-/domutils-2.7.0.tgz"
"version" "2.7.0"
dependencies:
"dom-serializer" "^1.0.1"
"domelementtype" "^2.2.0"
"domhandler" "^4.2.0"
"integrity" "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0="
"resolved" "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz"
"version" "1.1.1"
"ejs@^2.6.1":
"integrity" "sha512-7vmuyh5+kuUyJKePhQfRQBhXV5Ce+RnaeeQArKu1EAMpL3WbgMt5WG6uQZpEVvYSSsxMXRKOewtDk9RaTKXRlA=="
"resolved" "https://registry.npmjs.org/ejs/-/ejs-2.7.4.tgz"
"version" "2.7.4"
"integrity" "sha1-R5Y2v6P+Ox3r1SCH8KyyBLTxnIg="
"resolved" "https://registry.nlark.com/ejs/download/ejs-2.5.6.tgz"
"version" "2.5.6"
"encodeurl@~1.0.2":
"integrity" "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k="
"resolved" "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz"
"version" "1.0.2"
"entities@^2.0.0":
"integrity" "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A=="
"resolved" "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz"
"version" "2.2.0"
"escape-html@~1.0.3":
"integrity" "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg="
"resolved" "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz"
"version" "1.0.3"
"escape-string-regexp@^1.0.2", "escape-string-regexp@^1.0.5":
"integrity" "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ="
"resolved" "https://registry.nlark.com/escape-string-regexp/download/escape-string-regexp-1.0.5.tgz"
"version" "1.0.5"
"esprima@^4.0.0":
"integrity" "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A=="
"resolved" "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz"
"version" "4.0.1"
"esutils@^2.0.2":
"integrity" "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g=="
"resolved" "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz"
"version" "2.0.3"
"etag@~1.8.1":
"integrity" "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc="
"resolved" "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz"
"version" "1.8.1"
"expand-brackets@^0.1.4":
"integrity" "sha1-3wcoTjQqgHzXM6xa9yQR5YHRF3s="
"resolved" "https://registry.nlark.com/expand-brackets/download/expand-brackets-0.1.5.tgz"
"version" "0.1.5"
dependencies:
"is-posix-bracket" "^0.1.0"
"expand-brackets@^2.1.4":
"integrity" "sha1-t3c14xXOMPa27/D4OwQVGiJEliI="
"resolved" "https://registry.nlark.com/expand-brackets/download/expand-brackets-2.1.4.tgz"
"version" "2.1.4"
dependencies:
"debug" "^2.3.3"
"define-property" "^0.2.5"
"extend-shallow" "^2.0.1"
"posix-character-classes" "^0.1.0"
"regex-not" "^1.0.0"
"snapdragon" "^0.8.1"
"to-regex" "^3.0.1"
"expand-range@^1.8.1":
"integrity" "sha1-opnv/TNf4nIeuujiV+x5ZE/IUzc="
"resolved" "https://registry.nlark.com/expand-range/download/expand-range-1.8.2.tgz"
"version" "1.8.2"
dependencies:
"fill-range" "^2.1.0"
"extend-shallow@^2.0.1":
"integrity" "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8="
"resolved" "https://registry.nlark.com/extend-shallow/download/extend-shallow-2.0.1.tgz"
"version" "2.0.1"
dependencies:
"is-extendable" "^0.1.0"
"extend-shallow@^3.0.0", "extend-shallow@^3.0.2":
"integrity" "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg="
"resolved" "https://registry.nlark.com/extend-shallow/download/extend-shallow-3.0.2.tgz"
"version" "3.0.2"
dependencies:
"assign-symbols" "^1.0.0"
"is-extendable" "^1.0.1"
"extglob@^0.3.1":
"integrity" "sha1-Lhj/PS9JqydlzskCPwEdqo2DSaE="
"resolved" "https://registry.nlark.com/extglob/download/extglob-0.3.2.tgz"
"version" "0.3.2"
dependencies:
"is-extglob" "^1.0.0"
"extglob@^2.0.4":
"integrity" "sha1-rQD+TcYSqSMuhxhxHcXLWrAoVUM="
"resolved" "https://registry.nlark.com/extglob/download/extglob-2.0.4.tgz"
"version" "2.0.4"
dependencies:
"array-unique" "^0.3.2"
"define-property" "^1.0.0"
"expand-brackets" "^2.1.4"
"extend-shallow" "^2.0.1"
"fragment-cache" "^0.2.1"
"regex-not" "^1.0.0"
"snapdragon" "^0.8.1"
"to-regex" "^3.0.1"
"integrity" "sha1-VTp7hEb/b2hDWcRF8eN6BdrMM90="
"resolved" "https://registry.nlark.com/file-uri-to-path/download/file-uri-to-path-1.0.0.tgz"
"version" "1.0.0"
"filename-regex@^2.0.0":
"integrity" "sha1-wcS5vuPglyXdsQa3XB4wH+LxiyY="
"resolved" "https://registry.nlark.com/filename-regex/download/filename-regex-2.0.1.tgz"
"version" "2.0.1"
"fill-range@^2.1.0":
"integrity" "sha1-6x53OrsFbc2N8r/favWbizqTZWU="
"resolved" "https://registry.nlark.com/fill-range/download/fill-range-2.2.4.tgz"
"version" "2.2.4"
dependencies:
"is-number" "^2.1.0"
"isobject" "^2.0.0"
"randomatic" "^3.0.0"
"repeat-element" "^1.1.2"
"repeat-string" "^1.5.2"
"fill-range@^4.0.0":
"integrity" "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc="
"resolved" "https://registry.nlark.com/fill-range/download/fill-range-4.0.0.tgz"
"version" "4.0.0"
dependencies:
"extend-shallow" "^2.0.1"
"is-number" "^3.0.0"
"repeat-string" "^1.6.1"
"to-regex-range" "^2.1.0"
"fill-range@^7.0.1":
"integrity" "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ=="
"resolved" "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz"
"version" "7.0.1"
dependencies:
"to-regex-range" "^5.0.1"
"integrity" "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA=="
"resolved" "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz"
"version" "1.1.2"
dependencies:
"debug" "2.6.9"
"encodeurl" "~1.0.2"
"escape-html" "~1.0.3"
"on-finished" "~2.3.0"
"parseurl" "~1.3.3"
"statuses" "~1.5.0"
"unpipe" "~1.0.0"
"for-in@^1.0.1", "for-in@^1.0.2":
"integrity" "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA="
"resolved" "https://registry.nlark.com/for-in/download/for-in-1.0.2.tgz"
"version" "1.0.2"
"for-own@^0.1.4":
"integrity" "sha1-UmXGgaTylNq78XyVCbZ2OqhFEM4="
"resolved" "https://registry.nlark.com/for-own/download/for-own-0.1.5.tgz"
"version" "0.1.5"
dependencies:
"for-in" "^1.0.1"
"fragment-cache@^0.2.1":
"integrity" "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk="
"resolved" "https://registry.nlark.com/fragment-cache/download/fragment-cache-0.2.1.tgz"
"version" "0.2.1"
dependencies:
"map-cache" "^0.2.2"
"integrity" "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac="
"resolved" "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz"
"version" "0.5.2"
"fs.realpath@^1.0.0":
"integrity" "sha1-FQStJSMVjKpA20onh8sBQRmU6k8="
"resolved" "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz"
"version" "1.0.0"
"fsevents@^1.0.0":
"integrity" "sha1-8yXLBFVZJCi88Rs4M3DvcOO/zDg="
"resolved" "https://registry.nlark.com/fsevents/download/fsevents-1.2.13.tgz"
"version" "1.2.13"
dependencies:
"bindings" "^1.5.0"
"nan" "^2.12.1"
"fsevents@~2.3.2":
"integrity" "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA=="
"resolved" "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz"
"version" "2.3.2"
"function-bind@^1.1.1":
"integrity" "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A=="
"resolved" "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz"
"version" "1.1.1"
"get-intrinsic@^1.0.2":
"integrity" "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q=="
"resolved" "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz"
"version" "1.1.1"
dependencies:
"function-bind" "^1.1.1"
"has" "^1.0.3"