-
Notifications
You must be signed in to change notification settings - Fork 0
/
package-lock.json
8847 lines (8847 loc) · 338 KB
/
package-lock.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"name": "awesome_books",
"version": "1.0.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"@azure/abort-controller": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/@azure/abort-controller/-/abort-controller-1.0.4.tgz",
"integrity": "sha512-lNUmDRVGpanCsiUN3NWxFTdwmdFI53xwhkTFfHDGTYk46ca7Ind3nanJc+U6Zj9Tv+9nTCWRBscWEW1DyKOpTw==",
"dev": true,
"requires": {
"tslib": "^2.0.0"
}
},
"@azure/core-asynciterator-polyfill": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/@azure/core-asynciterator-polyfill/-/core-asynciterator-polyfill-1.0.0.tgz",
"integrity": "sha512-kmv8CGrPfN9SwMwrkiBK9VTQYxdFQEGe0BmQk+M8io56P9KNzpAxcWE/1fxJj7uouwN4kXF0BHW8DNlgx+wtCg==",
"dev": true
},
"@azure/core-auth": {
"version": "1.3.2",
"resolved": "https://registry.npmjs.org/@azure/core-auth/-/core-auth-1.3.2.tgz",
"integrity": "sha512-7CU6DmCHIZp5ZPiZ9r3J17lTKMmYsm/zGvNkjArQwPkrLlZ1TZ+EUYfGgh2X31OLMVAQCTJZW4cXHJi02EbJnA==",
"dev": true,
"requires": {
"@azure/abort-controller": "^1.0.0",
"tslib": "^2.2.0"
}
},
"@azure/core-http": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/@azure/core-http/-/core-http-2.1.0.tgz",
"integrity": "sha512-Pzj87F4b1RH4PFDUpxkZqCdDZ35c5AjDCt3lsTn3i7yCtrXasEm6PVJYhjwsvYYmtgM7aDZIXexcu/qLLf7kyA==",
"dev": true,
"requires": {
"@azure/abort-controller": "^1.0.0",
"@azure/core-asynciterator-polyfill": "^1.0.0",
"@azure/core-auth": "^1.3.0",
"@azure/core-tracing": "1.0.0-preview.13",
"@azure/logger": "^1.0.0",
"@types/node-fetch": "^2.5.0",
"@types/tunnel": "^0.0.1",
"form-data": "^3.0.0",
"node-fetch": "^2.6.0",
"process": "^0.11.10",
"tough-cookie": "^4.0.0",
"tslib": "^2.2.0",
"tunnel": "^0.0.6",
"uuid": "^8.3.0",
"xml2js": "^0.4.19"
}
},
"@azure/core-tracing": {
"version": "1.0.0-preview.13",
"resolved": "https://registry.npmjs.org/@azure/core-tracing/-/core-tracing-1.0.0-preview.13.tgz",
"integrity": "sha512-KxDlhXyMlh2Jhj2ykX6vNEU0Vou4nHr025KoSEiz7cS3BNiHNaZcdECk/DmLkEB0as5T7b/TpRcehJ5yV6NeXQ==",
"dev": true,
"requires": {
"@opentelemetry/api": "^1.0.1",
"tslib": "^2.2.0"
}
},
"@azure/logger": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@azure/logger/-/logger-1.0.2.tgz",
"integrity": "sha512-YZNjNV0vL3nN2nedmcjQBcpCTo3oqceXmgiQtEm6fLpucjRZyQKAQruhCmCpRlB1iykqKJJ/Y8CDmT5rIE6IJw==",
"dev": true,
"requires": {
"tslib": "^2.0.0"
}
},
"@babel/code-frame": {
"version": "7.14.5",
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.14.5.tgz",
"integrity": "sha512-9pzDqyc6OLDaqe+zbACgFkb6fKMNG6CObKpnYXChRsvYGyEdc7CA2BaqeOM+vOtCS5ndmJicPJhKAwYRI6UfFw==",
"dev": true,
"requires": {
"@babel/highlight": "^7.14.5"
}
},
"@babel/compat-data": {
"version": "7.15.0",
"resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.15.0.tgz",
"integrity": "sha512-0NqAC1IJE0S0+lL1SWFMxMkz1pKCNCjI4tr2Zx4LJSXxCLAdr6KyArnY+sno5m3yH9g737ygOyPABDsnXkpxiA==",
"dev": true
},
"@babel/core": {
"version": "7.15.0",
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.15.0.tgz",
"integrity": "sha512-tXtmTminrze5HEUPn/a0JtOzzfp0nk+UEXQ/tqIJo3WDGypl/2OFQEMll/zSFU8f/lfmfLXvTaORHF3cfXIQMw==",
"dev": true,
"requires": {
"@babel/code-frame": "^7.14.5",
"@babel/generator": "^7.15.0",
"@babel/helper-compilation-targets": "^7.15.0",
"@babel/helper-module-transforms": "^7.15.0",
"@babel/helpers": "^7.14.8",
"@babel/parser": "^7.15.0",
"@babel/template": "^7.14.5",
"@babel/traverse": "^7.15.0",
"@babel/types": "^7.15.0",
"convert-source-map": "^1.7.0",
"debug": "^4.1.0",
"gensync": "^1.0.0-beta.2",
"json5": "^2.1.2",
"semver": "^6.3.0",
"source-map": "^0.5.0"
},
"dependencies": {
"semver": {
"version": "6.3.0",
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
"integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
"dev": true
}
}
},
"@babel/generator": {
"version": "7.15.0",
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.15.0.tgz",
"integrity": "sha512-eKl4XdMrbpYvuB505KTta4AV9g+wWzmVBW69tX0H2NwKVKd2YJbKgyK6M8j/rgLbmHOYJn6rUklV677nOyJrEQ==",
"dev": true,
"requires": {
"@babel/types": "^7.15.0",
"jsesc": "^2.5.1",
"source-map": "^0.5.0"
}
},
"@babel/helper-compilation-targets": {
"version": "7.15.0",
"resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.15.0.tgz",
"integrity": "sha512-h+/9t0ncd4jfZ8wsdAsoIxSa61qhBYlycXiHWqJaQBCXAhDCMbPRSMTGnZIkkmt1u4ag+UQmuqcILwqKzZ4N2A==",
"dev": true,
"requires": {
"@babel/compat-data": "^7.15.0",
"@babel/helper-validator-option": "^7.14.5",
"browserslist": "^4.16.6",
"semver": "^6.3.0"
},
"dependencies": {
"semver": {
"version": "6.3.0",
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
"integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
"dev": true
}
}
},
"@babel/helper-function-name": {
"version": "7.14.5",
"resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.14.5.tgz",
"integrity": "sha512-Gjna0AsXWfFvrAuX+VKcN/aNNWonizBj39yGwUzVDVTlMYJMK2Wp6xdpy72mfArFq5uK+NOuexfzZlzI1z9+AQ==",
"dev": true,
"requires": {
"@babel/helper-get-function-arity": "^7.14.5",
"@babel/template": "^7.14.5",
"@babel/types": "^7.14.5"
}
},
"@babel/helper-get-function-arity": {
"version": "7.14.5",
"resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.14.5.tgz",
"integrity": "sha512-I1Db4Shst5lewOM4V+ZKJzQ0JGGaZ6VY1jYvMghRjqs6DWgxLCIyFt30GlnKkfUeFLpJt2vzbMVEXVSXlIFYUg==",
"dev": true,
"requires": {
"@babel/types": "^7.14.5"
}
},
"@babel/helper-hoist-variables": {
"version": "7.14.5",
"resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.14.5.tgz",
"integrity": "sha512-R1PXiz31Uc0Vxy4OEOm07x0oSjKAdPPCh3tPivn/Eo8cvz6gveAeuyUUPB21Hoiif0uoPQSSdhIPS3352nvdyQ==",
"dev": true,
"requires": {
"@babel/types": "^7.14.5"
}
},
"@babel/helper-member-expression-to-functions": {
"version": "7.15.0",
"resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.15.0.tgz",
"integrity": "sha512-Jq8H8U2kYiafuj2xMTPQwkTBnEEdGKpT35lJEQsRRjnG0LW3neucsaMWLgKcwu3OHKNeYugfw+Z20BXBSEs2Lg==",
"dev": true,
"requires": {
"@babel/types": "^7.15.0"
}
},
"@babel/helper-module-imports": {
"version": "7.14.5",
"resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.14.5.tgz",
"integrity": "sha512-SwrNHu5QWS84XlHwGYPDtCxcA0hrSlL2yhWYLgeOc0w7ccOl2qv4s/nARI0aYZW+bSwAL5CukeXA47B/1NKcnQ==",
"dev": true,
"requires": {
"@babel/types": "^7.14.5"
}
},
"@babel/helper-module-transforms": {
"version": "7.15.0",
"resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.15.0.tgz",
"integrity": "sha512-RkGiW5Rer7fpXv9m1B3iHIFDZdItnO2/BLfWVW/9q7+KqQSDY5kUfQEbzdXM1MVhJGcugKV7kRrNVzNxmk7NBg==",
"dev": true,
"requires": {
"@babel/helper-module-imports": "^7.14.5",
"@babel/helper-replace-supers": "^7.15.0",
"@babel/helper-simple-access": "^7.14.8",
"@babel/helper-split-export-declaration": "^7.14.5",
"@babel/helper-validator-identifier": "^7.14.9",
"@babel/template": "^7.14.5",
"@babel/traverse": "^7.15.0",
"@babel/types": "^7.15.0"
}
},
"@babel/helper-optimise-call-expression": {
"version": "7.14.5",
"resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.14.5.tgz",
"integrity": "sha512-IqiLIrODUOdnPU9/F8ib1Fx2ohlgDhxnIDU7OEVi+kAbEZcyiF7BLU8W6PfvPi9LzztjS7kcbzbmL7oG8kD6VA==",
"dev": true,
"requires": {
"@babel/types": "^7.14.5"
}
},
"@babel/helper-replace-supers": {
"version": "7.15.0",
"resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.15.0.tgz",
"integrity": "sha512-6O+eWrhx+HEra/uJnifCwhwMd6Bp5+ZfZeJwbqUTuqkhIT6YcRhiZCOOFChRypOIe0cV46kFrRBlm+t5vHCEaA==",
"dev": true,
"requires": {
"@babel/helper-member-expression-to-functions": "^7.15.0",
"@babel/helper-optimise-call-expression": "^7.14.5",
"@babel/traverse": "^7.15.0",
"@babel/types": "^7.15.0"
}
},
"@babel/helper-simple-access": {
"version": "7.14.8",
"resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.14.8.tgz",
"integrity": "sha512-TrFN4RHh9gnWEU+s7JloIho2T76GPwRHhdzOWLqTrMnlas8T9O7ec+oEDNsRXndOmru9ymH9DFrEOxpzPoSbdg==",
"dev": true,
"requires": {
"@babel/types": "^7.14.8"
}
},
"@babel/helper-split-export-declaration": {
"version": "7.14.5",
"resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.14.5.tgz",
"integrity": "sha512-hprxVPu6e5Kdp2puZUmvOGjaLv9TCe58E/Fl6hRq4YiVQxIcNvuq6uTM2r1mT/oPskuS9CgR+I94sqAYv0NGKA==",
"dev": true,
"requires": {
"@babel/types": "^7.14.5"
}
},
"@babel/helper-validator-identifier": {
"version": "7.14.9",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.9.tgz",
"integrity": "sha512-pQYxPY0UP6IHISRitNe8bsijHex4TWZXi2HwKVsjPiltzlhse2znVcm9Ace510VT1kxIHjGJCZZQBX2gJDbo0g==",
"dev": true
},
"@babel/helper-validator-option": {
"version": "7.14.5",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.14.5.tgz",
"integrity": "sha512-OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow==",
"dev": true
},
"@babel/helpers": {
"version": "7.14.8",
"resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.14.8.tgz",
"integrity": "sha512-ZRDmI56pnV+p1dH6d+UN6GINGz7Krps3+270qqI9UJ4wxYThfAIcI5i7j5vXC4FJ3Wap+S9qcebxeYiqn87DZw==",
"dev": true,
"requires": {
"@babel/template": "^7.14.5",
"@babel/traverse": "^7.14.8",
"@babel/types": "^7.14.8"
}
},
"@babel/highlight": {
"version": "7.14.5",
"resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.14.5.tgz",
"integrity": "sha512-qf9u2WFWVV0MppaL877j2dBtQIDgmidgjGk5VIMw3OadXvYaXn66U1BFlH2t4+t3i+8PhedppRv+i40ABzd+gg==",
"dev": true,
"requires": {
"@babel/helper-validator-identifier": "^7.14.5",
"chalk": "^2.0.0",
"js-tokens": "^4.0.0"
}
},
"@babel/parser": {
"version": "7.15.2",
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.15.2.tgz",
"integrity": "sha512-bMJXql1Ss8lFnvr11TZDH4ArtwlAS5NG9qBmdiFW2UHHm6MVoR+GDc5XE2b9K938cyjc9O6/+vjjcffLDtfuDg==",
"dev": true
},
"@babel/template": {
"version": "7.14.5",
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.14.5.tgz",
"integrity": "sha512-6Z3Po85sfxRGachLULUhOmvAaOo7xCvqGQtxINai2mEGPFm6pQ4z5QInFnUrRpfoSV60BnjyF5F3c+15fxFV1g==",
"dev": true,
"requires": {
"@babel/code-frame": "^7.14.5",
"@babel/parser": "^7.14.5",
"@babel/types": "^7.14.5"
}
},
"@babel/traverse": {
"version": "7.15.0",
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.15.0.tgz",
"integrity": "sha512-392d8BN0C9eVxVWd8H6x9WfipgVH5IaIoLp23334Sc1vbKKWINnvwRpb4us0xtPaCumlwbTtIYNA0Dv/32sVFw==",
"dev": true,
"requires": {
"@babel/code-frame": "^7.14.5",
"@babel/generator": "^7.15.0",
"@babel/helper-function-name": "^7.14.5",
"@babel/helper-hoist-variables": "^7.14.5",
"@babel/helper-split-export-declaration": "^7.14.5",
"@babel/parser": "^7.15.0",
"@babel/types": "^7.15.0",
"debug": "^4.1.0",
"globals": "^11.1.0"
}
},
"@babel/types": {
"version": "7.15.0",
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.15.0.tgz",
"integrity": "sha512-OBvfqnllOIdX4ojTHpwZbpvz4j3EWyjkZEdmjH0/cgsd6QOdSgU8rLSk6ard/pcW7rlmjdVSX/AWOaORR1uNOQ==",
"dev": true,
"requires": {
"@babel/helper-validator-identifier": "^7.14.9",
"to-fast-properties": "^2.0.0"
}
},
"@eslint/eslintrc": {
"version": "0.4.3",
"resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.3.tgz",
"integrity": "sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==",
"dev": true,
"requires": {
"ajv": "^6.12.4",
"debug": "^4.1.1",
"espree": "^7.3.0",
"globals": "^13.9.0",
"ignore": "^4.0.6",
"import-fresh": "^3.2.1",
"js-yaml": "^3.13.1",
"minimatch": "^3.0.4",
"strip-json-comments": "^3.1.1"
},
"dependencies": {
"globals": {
"version": "13.10.0",
"resolved": "https://registry.npmjs.org/globals/-/globals-13.10.0.tgz",
"integrity": "sha512-piHC3blgLGFjvOuMmWZX60f+na1lXFDhQXBf1UYp2fXPXqvEUbOhNwi6BsQ0bQishwedgnjkwv1d9zKf+MWw3g==",
"dev": true,
"requires": {
"type-fest": "^0.20.2"
}
}
}
},
"@hint/configuration-accessibility": {
"version": "2.0.11",
"resolved": "https://registry.npmjs.org/@hint/configuration-accessibility/-/configuration-accessibility-2.0.11.tgz",
"integrity": "sha512-Uh4+rCYFBYU1SVQEFS347kui1/gID9t0JcfWvvXTct+5lWi0/RgTJZYGVPWPgQQECsWNyMjbvCBH6BBptv4MfQ==",
"dev": true,
"optional": true,
"requires": {
"@hint/connector-puppeteer": "^2.5.8",
"@hint/formatter-html": "^4.3.3",
"@hint/formatter-summary": "^3.0.25",
"@hint/hint-axe": "^4.4.4"
}
},
"@hint/configuration-development": {
"version": "8.2.2",
"resolved": "https://registry.npmjs.org/@hint/configuration-development/-/configuration-development-8.2.2.tgz",
"integrity": "sha512-d+6Ke4HgCraVeOk7Tj7J5LUa6aI6HnjtwuvlNHJkYJqYYBF7cGyzRhq9fbS4JVTWi7vbIDqf5dnC0HRaBu2d/w==",
"dev": true,
"optional": true,
"requires": {
"@hint/configuration-accessibility": "^2.0.11",
"@hint/configuration-progressive-web-apps": "^7.0.11",
"@hint/connector-local": "^3.2.11",
"@hint/formatter-html": "^4.3.3",
"@hint/formatter-json": "^3.1.22",
"@hint/formatter-summary": "^3.0.25",
"@hint/hint-babel-config": "^2.4.11",
"@hint/hint-button-type": "^3.0.6",
"@hint/hint-compat-api": "^4.4.3",
"@hint/hint-create-element-svg": "^1.3.10",
"@hint/hint-css-prefix-order": "^1.4.10",
"@hint/hint-disown-opener": "^4.0.6",
"@hint/hint-highest-available-document-mode": "^5.0.6",
"@hint/hint-leading-dot-classlist": "^1.0.3",
"@hint/hint-meta-charset-utf-8": "^4.0.6",
"@hint/hint-meta-viewport": "^5.0.6",
"@hint/hint-no-bom": "^4.2.10",
"@hint/hint-no-inline-styles": "^1.0.2",
"@hint/hint-no-protocol-relative-urls": "^3.0.6",
"@hint/hint-scoped-svg-styles": "^1.3.10",
"@hint/hint-sri": "^4.0.6",
"@hint/hint-typescript-config": "^2.4.11",
"@hint/hint-webpack-config": "^2.4.11",
"@hint/parser-babel-config": "^2.1.26",
"@hint/parser-css": "^3.0.25",
"@hint/parser-html": "^3.0.20",
"@hint/parser-javascript": "^3.1.11",
"@hint/parser-jsx": "^1.0.12",
"@hint/parser-less": "^1.0.17",
"@hint/parser-sass": "^1.0.17",
"@hint/parser-typescript": "^1.0.12",
"@hint/parser-typescript-config": "^2.4.12",
"@hint/parser-webpack-config": "^2.1.25"
}
},
"@hint/configuration-progressive-web-apps": {
"version": "7.0.11",
"resolved": "https://registry.npmjs.org/@hint/configuration-progressive-web-apps/-/configuration-progressive-web-apps-7.0.11.tgz",
"integrity": "sha512-tIZ9cS55XqNVH5IEJSr2mGUhZdOkHKG/cpQ9D5ccvgZZf9QzIAmmqaGtvZtjpaM0s8SvcLTAkINGuCnXws/A7g==",
"dev": true,
"optional": true,
"requires": {
"@hint/connector-jsdom": "^4.1.11",
"@hint/connector-puppeteer": "^2.5.8",
"@hint/formatter-html": "^4.3.3",
"@hint/formatter-summary": "^3.0.25",
"@hint/hint-apple-touch-icons": "^4.0.6",
"@hint/hint-manifest-app-name": "^2.4.11",
"@hint/hint-manifest-exists": "^2.4.11",
"@hint/hint-manifest-file-extension": "^3.0.6",
"@hint/hint-manifest-is-valid": "^3.4.2",
"@hint/parser-manifest": "^2.3.2"
}
},
"@hint/configuration-web-recommended": {
"version": "8.2.2",
"resolved": "https://registry.npmjs.org/@hint/configuration-web-recommended/-/configuration-web-recommended-8.2.2.tgz",
"integrity": "sha512-g+h+8EAg5wm8RNP0lW9C4Z8UStokdSaT4AWZrlJUYNHwH4fEn7xsEVl8egdhCQM8MzZMIukYruCxYEqgrFHMjA==",
"dev": true,
"optional": true,
"requires": {
"@hint/configuration-accessibility": "^2.0.11",
"@hint/connector-jsdom": "^4.1.11",
"@hint/connector-local": "^3.2.11",
"@hint/connector-puppeteer": "^2.5.8",
"@hint/formatter-html": "^4.3.3",
"@hint/formatter-json": "^3.1.22",
"@hint/formatter-stylish": "^3.1.22",
"@hint/formatter-summary": "^3.0.25",
"@hint/hint-button-type": "^3.0.6",
"@hint/hint-compat-api": "^4.4.3",
"@hint/hint-content-type": "^4.2.10",
"@hint/hint-create-element-svg": "^1.3.10",
"@hint/hint-css-prefix-order": "^1.4.10",
"@hint/hint-disown-opener": "^4.0.6",
"@hint/hint-highest-available-document-mode": "^5.0.6",
"@hint/hint-html-checker": "^3.3.10",
"@hint/hint-http-cache": "^4.0.6",
"@hint/hint-http-compression": "^5.2.10",
"@hint/hint-image-optimization-cloudinary": "^3.2.10",
"@hint/hint-leading-dot-classlist": "^1.0.3",
"@hint/hint-meta-charset-utf-8": "^4.0.6",
"@hint/hint-meta-viewport": "^5.0.6",
"@hint/hint-no-bom": "^4.2.10",
"@hint/hint-no-disallowed-headers": "^3.1.5",
"@hint/hint-no-friendly-error-pages": "^3.3.10",
"@hint/hint-no-html-only-headers": "^3.0.6",
"@hint/hint-no-http-redirects": "^3.0.6",
"@hint/hint-no-inline-styles": "^1.0.2",
"@hint/hint-no-protocol-relative-urls": "^3.0.6",
"@hint/hint-no-vulnerable-javascript-libraries": "^2.12.4",
"@hint/hint-scoped-svg-styles": "^1.3.10",
"@hint/hint-sri": "^4.0.6",
"@hint/hint-ssllabs": "^2.4.10",
"@hint/hint-strict-transport-security": "^3.0.6",
"@hint/hint-stylesheet-limits": "^3.3.10",
"@hint/hint-validate-set-cookie-header": "^3.0.6",
"@hint/hint-x-content-type-options": "^4.0.6",
"@hint/parser-css": "^3.0.25",
"@hint/parser-html": "^3.0.20",
"@hint/parser-javascript": "^3.1.11"
}
},
"@hint/connector-jsdom": {
"version": "4.1.11",
"resolved": "https://registry.npmjs.org/@hint/connector-jsdom/-/connector-jsdom-4.1.11.tgz",
"integrity": "sha512-YakjF5/lFf3OFeRnV8TRn0iOTz1D2oqf4x3mzesPzTKZa9zvWPLHLfAX7gBDBLz8NYz1tCxfSOMeFfXGZCss3w==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils": "^7.0.10",
"@hint/utils-connector-tools": "^4.0.25",
"@hint/utils-debug": "^1.0.5",
"@hint/utils-dom": "^2.1.6",
"@hint/utils-fs": "^1.0.9",
"@hint/utils-network": "^1.0.10",
"@hint/utils-types": "^1.1.3",
"canvas": "^2.8.0",
"jsdom": "^16.5.3",
"mutationobserver-shim": "^0.3.7"
}
},
"@hint/connector-local": {
"version": "3.2.11",
"resolved": "https://registry.npmjs.org/@hint/connector-local/-/connector-local-3.2.11.tgz",
"integrity": "sha512-ZVll5GwZX3+lmi2jZ0mATS6OFnNn/qdIu31Qy8iSJRaQRbtMGFw6uoxOyjAX1MXBdTasafAYmhIIV2O1uMExCw==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils": "^7.0.10",
"@hint/utils-dom": "^2.1.6",
"@hint/utils-fs": "^1.0.9",
"@hint/utils-i18n": "^1.0.8",
"@hint/utils-network": "^1.0.10",
"chokidar": "^3.5.1",
"globby": "^11.0.3",
"jsdom": "^16.5.3"
}
},
"@hint/connector-puppeteer": {
"version": "2.5.8",
"resolved": "https://registry.npmjs.org/@hint/connector-puppeteer/-/connector-puppeteer-2.5.8.tgz",
"integrity": "sha512-SY0SsE4Zn5JmJDuFfgLTA3TD1Sy8ID3DwlwBnzbN7/Sp7oysVaaYLFaeJHTlGQzQ1d6LAoYvbjddqrlhM3+k8w==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils": "^7.0.10",
"@hint/utils-connector-tools": "^4.0.25",
"@hint/utils-debug": "^1.0.5",
"@hint/utils-dom": "^2.1.6",
"@hint/utils-fs": "^1.0.9",
"@hint/utils-network": "^1.0.10",
"@hint/utils-types": "^1.1.3",
"is-ci": "^3.0.0",
"lockfile": "^1.0.4",
"puppeteer-core": "^10.0.0"
}
},
"@hint/formatter-html": {
"version": "4.3.3",
"resolved": "https://registry.npmjs.org/@hint/formatter-html/-/formatter-html-4.3.3.tgz",
"integrity": "sha512-F4loRGmtqtpHDoGKC3D8mGih1oG3mLYdDuVHKj3QBXXWg3Jp7T37FijO+BCNTzRmhys8Uf89pVpf8qQmBkDJUQ==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils": "^7.0.10",
"@hint/utils-debug": "^1.0.5",
"@hint/utils-fs": "^1.0.9",
"@hint/utils-i18n": "^1.0.8",
"@hint/utils-types": "^1.1.3",
"ejs": "^3.1.6",
"fs-extra": "^10.0.0",
"lodash": "^4.17.21"
}
},
"@hint/formatter-json": {
"version": "3.1.22",
"resolved": "https://registry.npmjs.org/@hint/formatter-json/-/formatter-json-3.1.22.tgz",
"integrity": "sha512-E8jAHo0cVOWvT0GRhyMfSMJcn9OfxnGfhxCl6kG+uXT11yZLHWRW7zeUuhsfAtKMEPysJ/KSGUqXDsWp6W28XQ==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils": "^7.0.10",
"@hint/utils-debug": "^1.0.5",
"@hint/utils-fs": "^1.0.9",
"@hint/utils-i18n": "^1.0.8",
"@hint/utils-types": "^1.1.3",
"lodash": "^4.17.21"
}
},
"@hint/formatter-stylish": {
"version": "3.1.22",
"resolved": "https://registry.npmjs.org/@hint/formatter-stylish/-/formatter-stylish-3.1.22.tgz",
"integrity": "sha512-pPiROkl4mCPeGbOsQ7l7s5xd5ZYVeMkEEsIranczbQvyssx11XNtbVmLef8ZcX/Fc8FggX1tf7/e/HqjnwRqFw==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils": "^7.0.10",
"@hint/utils-debug": "^1.0.5",
"@hint/utils-fs": "^1.0.9",
"@hint/utils-i18n": "^1.0.8",
"@hint/utils-string": "^1.0.8",
"@hint/utils-types": "^1.1.3",
"chalk": "^4.0.0",
"lodash": "^4.17.21",
"log-symbols": "^4.1.0",
"strip-ansi": "^6.0.0",
"text-table": "^0.2.0"
},
"dependencies": {
"ansi-styles": {
"version": "4.3.0",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
"dev": true,
"optional": true,
"requires": {
"color-convert": "^2.0.1"
}
},
"chalk": {
"version": "4.1.2",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
"dev": true,
"optional": true,
"requires": {
"ansi-styles": "^4.1.0",
"supports-color": "^7.1.0"
}
},
"color-convert": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
"dev": true,
"optional": true,
"requires": {
"color-name": "~1.1.4"
}
},
"color-name": {
"version": "1.1.4",
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
"dev": true,
"optional": true
},
"has-flag": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
"dev": true,
"optional": true
},
"supports-color": {
"version": "7.2.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
"dev": true,
"optional": true,
"requires": {
"has-flag": "^4.0.0"
}
}
}
},
"@hint/formatter-summary": {
"version": "3.0.25",
"resolved": "https://registry.npmjs.org/@hint/formatter-summary/-/formatter-summary-3.0.25.tgz",
"integrity": "sha512-sCIkPSlHf4GoR8hIMTZUtQIiy4D06PdfaJComMQRF86yKsYdLsQ/e7kqo2g83yvbcV7GMNDbOJL9WU6uGJiHvQ==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils": "^7.0.10",
"@hint/utils-debug": "^1.0.5",
"@hint/utils-fs": "^1.0.9",
"@hint/utils-i18n": "^1.0.8",
"@hint/utils-types": "^1.1.3",
"chalk": "^4.0.0",
"lodash": "^4.17.21",
"log-symbols": "^4.1.0",
"strip-ansi": "^6.0.0",
"text-table": "^0.2.0"
},
"dependencies": {
"ansi-styles": {
"version": "4.3.0",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
"dev": true,
"optional": true,
"requires": {
"color-convert": "^2.0.1"
}
},
"chalk": {
"version": "4.1.2",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
"dev": true,
"optional": true,
"requires": {
"ansi-styles": "^4.1.0",
"supports-color": "^7.1.0"
}
},
"color-convert": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
"dev": true,
"optional": true,
"requires": {
"color-name": "~1.1.4"
}
},
"color-name": {
"version": "1.1.4",
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
"dev": true,
"optional": true
},
"has-flag": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
"dev": true,
"optional": true
},
"supports-color": {
"version": "7.2.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
"dev": true,
"optional": true,
"requires": {
"has-flag": "^4.0.0"
}
}
}
},
"@hint/hint-apple-touch-icons": {
"version": "4.0.6",
"resolved": "https://registry.npmjs.org/@hint/hint-apple-touch-icons/-/hint-apple-touch-icons-4.0.6.tgz",
"integrity": "sha512-mOYc9Mc9w568LRYCOzyyPhs/cgwaF1MQopHCe+wb11Xu1sIOTis6IoMOy7mKTCxroPASDy1Pa/eMoWSXZvdJ4Q==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils-debug": "^1.0.5",
"@hint/utils-i18n": "^1.0.8",
"@hint/utils-network": "^1.0.10",
"@hint/utils-string": "^1.0.8",
"@hint/utils-types": "^1.1.3",
"image-size": "^1.0.0"
}
},
"@hint/hint-axe": {
"version": "4.4.4",
"resolved": "https://registry.npmjs.org/@hint/hint-axe/-/hint-axe-4.4.4.tgz",
"integrity": "sha512-LsQ/PQghgMYf6U8XcX0Berpt8be4hu4D3jajI14FEf1p8bH9mAU2KtiUeRsWiXomuTLgn6dmodFeGquxwKukkw==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils-fs": "^1.0.9",
"@hint/utils-i18n": "^1.0.8",
"@hint/utils-types": "^1.1.3",
"axe-core": "^4.1.2"
}
},
"@hint/hint-babel-config": {
"version": "2.4.11",
"resolved": "https://registry.npmjs.org/@hint/hint-babel-config/-/hint-babel-config-2.4.11.tgz",
"integrity": "sha512-Z6fpj5Q+bLAol9VdWe5dgxz6J/o+N8VyEPxoOJEwXhmSt44kxV3+Fa9WvY0LNFGXxmG/IXlxXD/OQOv/3F1gGw==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils-debug": "^1.0.5",
"@hint/utils-i18n": "^1.0.8",
"@hint/utils-types": "^1.1.3"
}
},
"@hint/hint-button-type": {
"version": "3.0.6",
"resolved": "https://registry.npmjs.org/@hint/hint-button-type/-/hint-button-type-3.0.6.tgz",
"integrity": "sha512-Vf91oE8qZFi4orUvPx5mqsAm/7mAdC/J4zDN1mUJEeQAI7Mc+U+n5D4n8Zod55ycPMUUE5C1VZcmLnzmtkkmlg==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils-debug": "^1.0.5",
"@hint/utils-i18n": "^1.0.8",
"@hint/utils-types": "^1.1.3"
}
},
"@hint/hint-compat-api": {
"version": "4.4.3",
"resolved": "https://registry.npmjs.org/@hint/hint-compat-api/-/hint-compat-api-4.4.3.tgz",
"integrity": "sha512-qErd4uPFgArTjDyi1RQfN0HUb3HhQKqTvF9T23giDGMvBb8sEknya3f3xQ7VW8XIcKOL4V1NDN+WEbuT2dF/ew==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils-compat-data": "^1.1.3",
"@hint/utils-css": "^1.0.8",
"@hint/utils-fs": "^1.0.9",
"@hint/utils-i18n": "^1.0.8",
"@hint/utils-types": "^1.1.3",
"lodash": "^4.17.21"
}
},
"@hint/hint-content-type": {
"version": "4.2.10",
"resolved": "https://registry.npmjs.org/@hint/hint-content-type/-/hint-content-type-4.2.10.tgz",
"integrity": "sha512-Qqo0qKgkzuBSjrZQ57gdGVbSwSX3yKHlA5by2UzeN1paUoD5CLs7MdDn1yuqr643y9vXo1rxJYiFkzhxTHH0rg==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils": "^7.0.10",
"@hint/utils-debug": "^1.0.5",
"@hint/utils-i18n": "^1.0.8",
"@hint/utils-network": "^1.0.10",
"@hint/utils-string": "^1.0.8",
"@hint/utils-types": "^1.1.3",
"content-type": "^1.0.4"
}
},
"@hint/hint-create-element-svg": {
"version": "1.3.10",
"resolved": "https://registry.npmjs.org/@hint/hint-create-element-svg/-/hint-create-element-svg-1.3.10.tgz",
"integrity": "sha512-AH8Ohig5IeKm9xzsZyeAuYr0qFXx64ZEz8I/YNmNd1AlZmIrBFHs23gmoYs85lSI5GEzWbWKTVhLyidAh9v8uw==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils-debug": "^1.0.5",
"@hint/utils-fs": "^1.0.9",
"@hint/utils-i18n": "^1.0.8",
"@hint/utils-types": "^1.1.3"
}
},
"@hint/hint-css-prefix-order": {
"version": "1.4.10",
"resolved": "https://registry.npmjs.org/@hint/hint-css-prefix-order/-/hint-css-prefix-order-1.4.10.tgz",
"integrity": "sha512-KJ2HKC6nQg3LFQkJ0B6wSc7yRsNo2IWQzXmpGoJA/tGhkGfVk/cWlolsnGBm/KF/86KViXDxmTLXq3Wur91ehQ==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils-css": "^1.0.8",
"@hint/utils-debug": "^1.0.5",
"@hint/utils-fs": "^1.0.9",
"@hint/utils-i18n": "^1.0.8",
"@hint/utils-types": "^1.1.3",
"postcss": "^8.3.0"
},
"dependencies": {
"postcss": {
"version": "8.3.6",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.3.6.tgz",
"integrity": "sha512-wG1cc/JhRgdqB6WHEuyLTedf3KIRuD0hG6ldkFEZNCjRxiC+3i6kkWUUbiJQayP28iwG35cEmAbe98585BYV0A==",
"dev": true,
"optional": true,
"requires": {
"colorette": "^1.2.2",
"nanoid": "^3.1.23",
"source-map-js": "^0.6.2"
}
}
}
},
"@hint/hint-disown-opener": {
"version": "4.0.6",
"resolved": "https://registry.npmjs.org/@hint/hint-disown-opener/-/hint-disown-opener-4.0.6.tgz",
"integrity": "sha512-YLPnu+3O5xx7yWd9Te7K+X9cHCK3V6bGi+p6FOG9DBTuDJBivQghrhZ2TYphQxa/88zZs2iXyBR1VP3pRe+Erw==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils-compat-data": "^1.1.3",
"@hint/utils-debug": "^1.0.5",
"@hint/utils-i18n": "^1.0.8",
"@hint/utils-network": "^1.0.10",
"@hint/utils-string": "^1.0.8",
"@hint/utils-types": "^1.1.3"
}
},
"@hint/hint-highest-available-document-mode": {
"version": "5.0.6",
"resolved": "https://registry.npmjs.org/@hint/hint-highest-available-document-mode/-/hint-highest-available-document-mode-5.0.6.tgz",
"integrity": "sha512-NFs4YEgTMWT0dHslE9TqsdZoN3HCfX50uEsYWc8gSm9o4OZtlDw352haiDwC0+BWJvkjigjnFCF7N5wKv0+JBg==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils-i18n": "^1.0.8",
"@hint/utils-network": "^1.0.10",
"@hint/utils-string": "^1.0.8",
"@hint/utils-types": "^1.1.3"
}
},
"@hint/hint-html-checker": {
"version": "3.3.10",
"resolved": "https://registry.npmjs.org/@hint/hint-html-checker/-/hint-html-checker-3.3.10.tgz",
"integrity": "sha512-inn4+4MDDYEgVweSwIKI7wwsPWlP0TYCnyB60bH+wMbJWvADMJZedj/+Q2OcatRA85YSmDff+x2XLECBiCfEkw==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils": "^7.0.10",
"@hint/utils-debug": "^1.0.5",
"@hint/utils-i18n": "^1.0.8",
"@hint/utils-network": "^1.0.10",
"@hint/utils-types": "^1.1.3",
"lodash": "^4.17.21"
}
},
"@hint/hint-http-cache": {
"version": "4.0.6",
"resolved": "https://registry.npmjs.org/@hint/hint-http-cache/-/hint-http-cache-4.0.6.tgz",
"integrity": "sha512-lqU1P4Ii7JDqeqVQewEUkaJKrA3mKo2cvnBclm5EY9r0KUZvM95Fq4ONknOMugdSPozApYM2uhP8Dn3XuHfXEg==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils-debug": "^1.0.5",
"@hint/utils-i18n": "^1.0.8",
"@hint/utils-network": "^1.0.10",
"@hint/utils-types": "^1.1.3"
}
},
"@hint/hint-http-compression": {
"version": "5.2.10",
"resolved": "https://registry.npmjs.org/@hint/hint-http-compression/-/hint-http-compression-5.2.10.tgz",
"integrity": "sha512-K6ifH4/ropFdOALmpje9rd5wZFcneO4g1qJjb3njRj7i9loqq8DDjBWs6xwNeXohwsfUn31KmniWw9LgtG6arg==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils": "^7.0.10",
"@hint/utils-i18n": "^1.0.8",
"@hint/utils-network": "^1.0.10",
"@hint/utils-string": "^1.0.8",
"@hint/utils-types": "^1.1.3"
}
},
"@hint/hint-image-optimization-cloudinary": {
"version": "3.2.10",
"resolved": "https://registry.npmjs.org/@hint/hint-image-optimization-cloudinary/-/hint-image-optimization-cloudinary-3.2.10.tgz",
"integrity": "sha512-p9k8NLlrfFE3r6Gm7cSG7Jn1PeXXM9PUzzt+iClpRJPJ9wBf3bUzM/9IJU+AdsDlQ+KlC/CA3pnO7RHGgo0u+w==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils": "^7.0.10",
"@hint/utils-i18n": "^1.0.8",
"@hint/utils-string": "^1.0.8",
"@hint/utils-types": "^1.1.3",
"cloudinary": "^1.25.2",
"fs-extra": "^10.0.0",
"image-size": "^1.0.0"
}
},
"@hint/hint-leading-dot-classlist": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/@hint/hint-leading-dot-classlist/-/hint-leading-dot-classlist-1.0.3.tgz",
"integrity": "sha512-R1sFcyFVctaVtt5QcxLSnzDfEeQDA0ZpBOk4MrPKNTYZdEqPMUKtrwrdlyW3KH/asulFAp+6I18eKp9x4wOofA==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils-debug": "^1.0.5",
"@hint/utils-fs": "^1.0.9",
"@hint/utils-i18n": "^1.0.8",
"@hint/utils-types": "^1.1.3"
}
},
"@hint/hint-manifest-app-name": {
"version": "2.4.11",
"resolved": "https://registry.npmjs.org/@hint/hint-manifest-app-name/-/hint-manifest-app-name-2.4.11.tgz",
"integrity": "sha512-naVLNyV+clJNuBOGubtwJDTOZH58OsFCp+WB9HBztPP+i25bPHqe4xNm8R0f5+y+T+nNY4cGN0tXRrMQwYqeuQ==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils-i18n": "^1.0.8",
"@hint/utils-types": "^1.1.3",
"punycode": "^2.1.1"
}
},
"@hint/hint-manifest-exists": {
"version": "2.4.11",
"resolved": "https://registry.npmjs.org/@hint/hint-manifest-exists/-/hint-manifest-exists-2.4.11.tgz",
"integrity": "sha512-ldXSXcWxLnsuozCMmqjnlMOPKiSghxyFh6ky/QEeGP5p19brb0kMtFW6RnsU7DjWnY9LSTgMpk3DT9ZpExToXA==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils-i18n": "^1.0.8",
"@hint/utils-string": "^1.0.8",
"@hint/utils-types": "^1.1.3"
}
},
"@hint/hint-manifest-file-extension": {
"version": "3.0.6",
"resolved": "https://registry.npmjs.org/@hint/hint-manifest-file-extension/-/hint-manifest-file-extension-3.0.6.tgz",
"integrity": "sha512-Yvci5O1jHmkajxcz8hxV1fRJo0A4RMguq2p27ZEe17rQx7INHxKuc7p8yRUGEAa5P9nyMqXkKNxSwgymyzg6kg==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils-fs": "^1.0.9",
"@hint/utils-i18n": "^1.0.8",
"@hint/utils-string": "^1.0.8",
"@hint/utils-types": "^1.1.3"
}
},
"@hint/hint-manifest-is-valid": {
"version": "3.4.2",
"resolved": "https://registry.npmjs.org/@hint/hint-manifest-is-valid/-/hint-manifest-is-valid-3.4.2.tgz",
"integrity": "sha512-MBUmmpg4pLR1lOrVK62kL3DCwGgyLu6ZVJJUesqysN5ykHyNGmr4j72YmiVPYRnuy1qz6S9qmVmO0VO1CuWg7g==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils-compat-data": "^1.1.3",
"@hint/utils-i18n": "^1.0.8",
"@hint/utils-string": "^1.0.8",
"@hint/utils-types": "^1.1.3",
"bcp47": "^1.1.2",
"color-string": "^1.5.5"
}
},
"@hint/hint-meta-charset-utf-8": {
"version": "4.0.6",
"resolved": "https://registry.npmjs.org/@hint/hint-meta-charset-utf-8/-/hint-meta-charset-utf-8-4.0.6.tgz",