generated from SelmaNdapanda/readme-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package-lock.json
7300 lines (7300 loc) · 306 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
{
"requires": true,
"lockfileVersion": 1,
"dependencies": {
"@ampproject/remapping": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.0.tgz",
"integrity": "sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==",
"requires": {
"@jridgewell/gen-mapping": "^0.1.0",
"@jridgewell/trace-mapping": "^0.3.9"
}
},
"@babel/code-frame": {
"version": "7.18.6",
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz",
"integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==",
"requires": {
"@babel/highlight": "^7.18.6"
}
},
"@babel/compat-data": {
"version": "7.18.8",
"resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.18.8.tgz",
"integrity": "sha512-HSmX4WZPPK3FUxYp7g2T6EyO8j96HlZJlxmKPSh6KAcqwyDrfx7hKjXpAW/0FhFfTJsR0Yt4lAjLI2coMptIHQ=="
},
"@babel/core": {
"version": "7.18.10",
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.18.10.tgz",
"integrity": "sha512-JQM6k6ENcBFKVtWvLavlvi/mPcpYZ3+R+2EySDEMSMbp7Mn4FexlbbJVrx2R7Ijhr01T8gyqrOaABWIOgxeUyw==",
"requires": {
"@ampproject/remapping": "^2.1.0",
"@babel/code-frame": "^7.18.6",
"@babel/generator": "^7.18.10",
"@babel/helper-compilation-targets": "^7.18.9",
"@babel/helper-module-transforms": "^7.18.9",
"@babel/helpers": "^7.18.9",
"@babel/parser": "^7.18.10",
"@babel/template": "^7.18.10",
"@babel/traverse": "^7.18.10",
"@babel/types": "^7.18.10",
"convert-source-map": "^1.7.0",
"debug": "^4.1.0",
"gensync": "^1.0.0-beta.2",
"json5": "^2.2.1",
"semver": "^6.3.0"
}
},
"@babel/generator": {
"version": "7.18.12",
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.18.12.tgz",
"integrity": "sha512-dfQ8ebCN98SvyL7IxNMCUtZQSq5R7kxgN+r8qYTGDmmSion1hX2C0zq2yo1bsCDhXixokv1SAWTZUMYbO/V5zg==",
"requires": {
"@babel/types": "^7.18.10",
"@jridgewell/gen-mapping": "^0.3.2",
"jsesc": "^2.5.1"
},
"dependencies": {
"@jridgewell/gen-mapping": {
"version": "0.3.2",
"resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz",
"integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==",
"requires": {
"@jridgewell/set-array": "^1.0.1",
"@jridgewell/sourcemap-codec": "^1.4.10",
"@jridgewell/trace-mapping": "^0.3.9"
}
}
}
},
"@babel/helper-compilation-targets": {
"version": "7.18.9",
"resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.18.9.tgz",
"integrity": "sha512-tzLCyVmqUiFlcFoAPLA/gL9TeYrF61VLNtb+hvkuVaB5SUjW7jcfrglBIX1vUIoT7CLP3bBlIMeyEsIl2eFQNg==",
"requires": {
"@babel/compat-data": "^7.18.8",
"@babel/helper-validator-option": "^7.18.6",
"browserslist": "^4.20.2",
"semver": "^6.3.0"
}
},
"@babel/helper-environment-visitor": {
"version": "7.18.9",
"resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz",
"integrity": "sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg=="
},
"@babel/helper-function-name": {
"version": "7.18.9",
"resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.18.9.tgz",
"integrity": "sha512-fJgWlZt7nxGksJS9a0XdSaI4XvpExnNIgRP+rVefWh5U7BL8pPuir6SJUmFKRfjWQ51OtWSzwOxhaH/EBWWc0A==",
"requires": {
"@babel/template": "^7.18.6",
"@babel/types": "^7.18.9"
}
},
"@babel/helper-hoist-variables": {
"version": "7.18.6",
"resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz",
"integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==",
"requires": {
"@babel/types": "^7.18.6"
}
},
"@babel/helper-module-imports": {
"version": "7.18.6",
"resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz",
"integrity": "sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==",
"requires": {
"@babel/types": "^7.18.6"
}
},
"@babel/helper-module-transforms": {
"version": "7.18.9",
"resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.18.9.tgz",
"integrity": "sha512-KYNqY0ICwfv19b31XzvmI/mfcylOzbLtowkw+mfvGPAQ3kfCnMLYbED3YecL5tPd8nAYFQFAd6JHp2LxZk/J1g==",
"requires": {
"@babel/helper-environment-visitor": "^7.18.9",
"@babel/helper-module-imports": "^7.18.6",
"@babel/helper-simple-access": "^7.18.6",
"@babel/helper-split-export-declaration": "^7.18.6",
"@babel/helper-validator-identifier": "^7.18.6",
"@babel/template": "^7.18.6",
"@babel/traverse": "^7.18.9",
"@babel/types": "^7.18.9"
}
},
"@babel/helper-simple-access": {
"version": "7.18.6",
"resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.18.6.tgz",
"integrity": "sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g==",
"requires": {
"@babel/types": "^7.18.6"
}
},
"@babel/helper-split-export-declaration": {
"version": "7.18.6",
"resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz",
"integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==",
"requires": {
"@babel/types": "^7.18.6"
}
},
"@babel/helper-string-parser": {
"version": "7.18.10",
"resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.18.10.tgz",
"integrity": "sha512-XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw=="
},
"@babel/helper-validator-identifier": {
"version": "7.18.6",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz",
"integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g=="
},
"@babel/helper-validator-option": {
"version": "7.18.6",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz",
"integrity": "sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw=="
},
"@babel/helpers": {
"version": "7.18.9",
"resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.18.9.tgz",
"integrity": "sha512-Jf5a+rbrLoR4eNdUmnFu8cN5eNJT6qdTdOg5IHIzq87WwyRw9PwguLFOWYgktN/60IP4fgDUawJvs7PjQIzELQ==",
"requires": {
"@babel/template": "^7.18.6",
"@babel/traverse": "^7.18.9",
"@babel/types": "^7.18.9"
}
},
"@babel/highlight": {
"version": "7.18.6",
"resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz",
"integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==",
"requires": {
"@babel/helper-validator-identifier": "^7.18.6",
"chalk": "^2.0.0",
"js-tokens": "^4.0.0"
},
"dependencies": {
"chalk": {
"version": "2.4.2",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
"integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
"requires": {
"ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5",
"supports-color": "^5.3.0"
}
}
}
},
"@babel/parser": {
"version": "7.18.11",
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.11.tgz",
"integrity": "sha512-9JKn5vN+hDt0Hdqn1PiJ2guflwP+B6Ga8qbDuoF0PzzVhrzsKIJo8yGqVk6CmMHiMei9w1C1Bp9IMJSIK+HPIQ=="
},
"@babel/template": {
"version": "7.18.10",
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.10.tgz",
"integrity": "sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==",
"requires": {
"@babel/code-frame": "^7.18.6",
"@babel/parser": "^7.18.10",
"@babel/types": "^7.18.10"
}
},
"@babel/traverse": {
"version": "7.18.11",
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.11.tgz",
"integrity": "sha512-TG9PiM2R/cWCAy6BPJKeHzNbu4lPzOSZpeMfeNErskGpTJx6trEvFaVCbDvpcxwy49BKWmEPwiW8mrysNiDvIQ==",
"requires": {
"@babel/code-frame": "^7.18.6",
"@babel/generator": "^7.18.10",
"@babel/helper-environment-visitor": "^7.18.9",
"@babel/helper-function-name": "^7.18.9",
"@babel/helper-hoist-variables": "^7.18.6",
"@babel/helper-split-export-declaration": "^7.18.6",
"@babel/parser": "^7.18.11",
"@babel/types": "^7.18.10",
"debug": "^4.1.0",
"globals": "^11.1.0"
}
},
"@babel/types": {
"version": "7.18.10",
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.10.tgz",
"integrity": "sha512-MJvnbEiiNkpjo+LknnmRrqbY1GPUUggjv+wQVjetM/AONoupqRALB7I6jGqNUAZsKcRIEu2J6FRFvsczljjsaQ==",
"requires": {
"@babel/helper-string-parser": "^7.18.10",
"@babel/helper-validator-identifier": "^7.18.6",
"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==",
"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": {
"ajv": {
"version": "6.12.6",
"resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
"integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
"requires": {
"fast-deep-equal": "^3.1.1",
"fast-json-stable-stringify": "^2.0.0",
"json-schema-traverse": "^0.4.1",
"uri-js": "^4.2.2"
}
},
"globals": {
"version": "13.17.0",
"resolved": "https://registry.npmjs.org/globals/-/globals-13.17.0.tgz",
"integrity": "sha512-1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw==",
"requires": {
"type-fest": "^0.20.2"
}
},
"ignore": {
"version": "4.0.6",
"resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz",
"integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg=="
},
"json-schema-traverse": {
"version": "0.4.1",
"resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
"integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="
},
"strip-json-comments": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz",
"integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig=="
},
"type-fest": {
"version": "0.20.2",
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz",
"integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ=="
}
}
},
"@gar/promisify": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.3.tgz",
"integrity": "sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw=="
},
"@hint/configuration-accessibility": {
"version": "2.0.22",
"resolved": "https://registry.npmjs.org/@hint/configuration-accessibility/-/configuration-accessibility-2.0.22.tgz",
"integrity": "sha512-Eswl2SmhWjO5wPO2qwB7L7UcBcnWXV5Q+gjyqd0KKDNRtYB3KUv+0EsWg2f2am0JVZIJznWI1s0qiNfXBtjXOQ==",
"requires": {
"@hint/connector-puppeteer": "^2.5.19",
"@hint/formatter-html": "^4.3.12",
"@hint/formatter-summary": "^3.0.34",
"@hint/hint-axe": "^4.4.15"
}
},
"@hint/configuration-development": {
"version": "8.3.9",
"resolved": "https://registry.npmjs.org/@hint/configuration-development/-/configuration-development-8.3.9.tgz",
"integrity": "sha512-ud6daM/tJTHSgA4R+tgXymnd7AU43ullykLdwUF1A1U9kBft40MPNVITzvXiKXw3b1Xkr7hhj4rEO+/fqaslew==",
"requires": {
"@hint/configuration-accessibility": "^2.0.22",
"@hint/configuration-progressive-web-apps": "^7.0.23",
"@hint/connector-local": "^3.2.22",
"@hint/formatter-html": "^4.3.12",
"@hint/formatter-json": "^3.1.31",
"@hint/formatter-summary": "^3.0.34",
"@hint/hint-babel-config": "^2.4.22",
"@hint/hint-button-type": "^3.0.17",
"@hint/hint-compat-api": "^4.5.1",
"@hint/hint-create-element-svg": "^1.3.21",
"@hint/hint-css-prefix-order": "^1.5.1",
"@hint/hint-disown-opener": "^4.0.17",
"@hint/hint-highest-available-document-mode": "^5.0.17",
"@hint/hint-leading-dot-classlist": "^1.0.14",
"@hint/hint-meta-charset-utf-8": "^4.0.17",
"@hint/hint-meta-viewport": "^5.0.17",
"@hint/hint-no-bom": "^4.2.21",
"@hint/hint-no-inline-styles": "^1.0.13",
"@hint/hint-no-protocol-relative-urls": "^3.1.1",
"@hint/hint-scoped-svg-styles": "^1.3.21",
"@hint/hint-sri": "^4.0.17",
"@hint/hint-typescript-config": "^2.5.9",
"@hint/hint-webpack-config": "^2.4.23",
"@hint/parser-babel-config": "^2.1.37",
"@hint/parser-css": "^3.0.34",
"@hint/parser-html": "^3.1.0",
"@hint/parser-javascript": "^3.1.20",
"@hint/parser-jsx": "^1.1.1",
"@hint/parser-less": "^1.0.26",
"@hint/parser-sass": "^1.0.26",
"@hint/parser-typescript": "^1.0.21",
"@hint/parser-typescript-config": "^2.4.24",
"@hint/parser-webpack-config": "^2.1.36"
}
},
"@hint/configuration-progressive-web-apps": {
"version": "7.0.23",
"resolved": "https://registry.npmjs.org/@hint/configuration-progressive-web-apps/-/configuration-progressive-web-apps-7.0.23.tgz",
"integrity": "sha512-9okV4lFSgI2LZycdJXkHJBDTBkribzti2K/8lwUfTNLxYVr1fxTiznHD3sxK7emKacju5W4SXvqYghE25eNbLg==",
"requires": {
"@hint/connector-jsdom": "^4.1.22",
"@hint/connector-puppeteer": "^2.5.19",
"@hint/formatter-html": "^4.3.12",
"@hint/formatter-summary": "^3.0.34",
"@hint/hint-apple-touch-icons": "^4.0.17",
"@hint/hint-manifest-app-name": "^2.4.23",
"@hint/hint-manifest-exists": "^2.4.23",
"@hint/hint-manifest-file-extension": "^3.0.18",
"@hint/hint-manifest-is-valid": "^3.4.14",
"@hint/parser-manifest": "^2.3.14"
}
},
"@hint/configuration-web-recommended": {
"version": "8.2.14",
"resolved": "https://registry.npmjs.org/@hint/configuration-web-recommended/-/configuration-web-recommended-8.2.14.tgz",
"integrity": "sha512-EX99ySsOoM7OF2c43vBN+O4Bi46Qxs85fYtVKn29Fv+5WmBdPx9c6Xu4+LN8mbhrEje9U5Okzyu+G5jlL2utyA==",
"requires": {
"@hint/configuration-accessibility": "^2.0.22",
"@hint/connector-jsdom": "^4.1.22",
"@hint/connector-local": "^3.2.22",
"@hint/connector-puppeteer": "^2.5.19",
"@hint/formatter-html": "^4.3.12",
"@hint/formatter-json": "^3.1.31",
"@hint/formatter-stylish": "^3.1.31",
"@hint/formatter-summary": "^3.0.34",
"@hint/hint-button-type": "^3.0.17",
"@hint/hint-compat-api": "^4.5.1",
"@hint/hint-content-type": "^4.2.21",
"@hint/hint-create-element-svg": "^1.3.21",
"@hint/hint-css-prefix-order": "^1.5.1",
"@hint/hint-disown-opener": "^4.0.17",
"@hint/hint-highest-available-document-mode": "^5.0.17",
"@hint/hint-html-checker": "^3.3.21",
"@hint/hint-http-cache": "^4.0.17",
"@hint/hint-http-compression": "^5.2.21",
"@hint/hint-image-optimization-cloudinary": "^3.2.21",
"@hint/hint-leading-dot-classlist": "^1.0.14",
"@hint/hint-meta-charset-utf-8": "^4.0.17",
"@hint/hint-meta-viewport": "^5.0.17",
"@hint/hint-no-bom": "^4.2.21",
"@hint/hint-no-disallowed-headers": "^3.1.16",
"@hint/hint-no-friendly-error-pages": "^3.3.21",
"@hint/hint-no-html-only-headers": "^3.0.17",
"@hint/hint-no-http-redirects": "^3.0.17",
"@hint/hint-no-inline-styles": "^1.0.13",
"@hint/hint-no-protocol-relative-urls": "^3.1.1",
"@hint/hint-no-vulnerable-javascript-libraries": "^2.12.16",
"@hint/hint-scoped-svg-styles": "^1.3.21",
"@hint/hint-sri": "^4.0.17",
"@hint/hint-ssllabs": "^2.4.21",
"@hint/hint-strict-transport-security": "^3.0.17",
"@hint/hint-stylesheet-limits": "^3.3.21",
"@hint/hint-validate-set-cookie-header": "^3.0.17",
"@hint/hint-x-content-type-options": "^4.0.17",
"@hint/parser-css": "^3.0.34",
"@hint/parser-html": "^3.1.0",
"@hint/parser-javascript": "^3.1.20"
}
},
"@hint/connector-jsdom": {
"version": "4.1.22",
"resolved": "https://registry.npmjs.org/@hint/connector-jsdom/-/connector-jsdom-4.1.22.tgz",
"integrity": "sha512-F7AU1F5lRuAEUysAf6aurqcOX2WDscG7vWMIqJ2gXzoBltRQgLJRGQclFD1xLiAIeTHA46lPDIyyBRE+oLaEzA==",
"requires": {
"@hint/utils": "^7.0.19",
"@hint/utils-connector-tools": "^4.0.36",
"@hint/utils-debug": "^1.0.10",
"@hint/utils-dom": "^2.2.0",
"@hint/utils-fs": "^1.0.14",
"@hint/utils-network": "^1.0.21",
"@hint/utils-types": "^1.2.0",
"canvas": "^2.9.1",
"jsdom": "^19.0.0",
"mutationobserver-shim": "^0.3.7"
}
},
"@hint/connector-local": {
"version": "3.2.22",
"resolved": "https://registry.npmjs.org/@hint/connector-local/-/connector-local-3.2.22.tgz",
"integrity": "sha512-/TJvcp82QtucPWma+ZwoNDakHau+cu5UOEzNvcq0hsCGwvhr+MH7IYB38NxCdXdO7QNTVWpTUF+tVO8k8Ux9IA==",
"requires": {
"@hint/utils": "^7.0.19",
"@hint/utils-dom": "^2.2.0",
"@hint/utils-fs": "^1.0.14",
"@hint/utils-i18n": "^1.0.13",
"@hint/utils-network": "^1.0.21",
"chokidar": "^3.5.3",
"globby": "^11.0.4",
"jsdom": "^19.0.0"
}
},
"@hint/connector-puppeteer": {
"version": "2.5.19",
"resolved": "https://registry.npmjs.org/@hint/connector-puppeteer/-/connector-puppeteer-2.5.19.tgz",
"integrity": "sha512-ubHFUY4TFb42QxQ591GpCSA1v1ofUJHany8fxwueaqJF5pLm+34cQ7sSZWzI89UQazWlv23SlTJDPyr/AnW0kA==",
"requires": {
"@hint/utils": "^7.0.19",
"@hint/utils-connector-tools": "^4.0.36",
"@hint/utils-debug": "^1.0.10",
"@hint/utils-dom": "^2.2.0",
"@hint/utils-fs": "^1.0.14",
"@hint/utils-network": "^1.0.21",
"@hint/utils-types": "^1.2.0",
"is-ci": "^3.0.1",
"lockfile": "^1.0.4",
"puppeteer-core": "^13.0.1"
}
},
"@hint/formatter-html": {
"version": "4.3.12",
"resolved": "https://registry.npmjs.org/@hint/formatter-html/-/formatter-html-4.3.12.tgz",
"integrity": "sha512-B9rDHH7U3naFMXCMxManMNO627TixmzIVujj5XL62fTfS2/kD0v2KetKj8XRTaiVCHJHdrkZAHINbtmLaI5luw==",
"requires": {
"@hint/utils": "^7.0.19",
"@hint/utils-debug": "^1.0.10",
"@hint/utils-fs": "^1.0.14",
"@hint/utils-i18n": "^1.0.13",
"@hint/utils-types": "^1.2.0",
"ejs": "^3.1.8",
"fs-extra": "^10.1.0",
"lodash": "^4.17.21"
}
},
"@hint/formatter-json": {
"version": "3.1.31",
"resolved": "https://registry.npmjs.org/@hint/formatter-json/-/formatter-json-3.1.31.tgz",
"integrity": "sha512-V2IPWDOB1jK/g0d2rH5R7wbTnCoDMNDoBVhlvWSp1pMAJAGd2kpVE1kWlSW7QSGKmfKlkRzZr+jlbehboG4Dbg==",
"requires": {
"@hint/utils": "^7.0.19",
"@hint/utils-debug": "^1.0.10",
"@hint/utils-fs": "^1.0.14",
"@hint/utils-i18n": "^1.0.13",
"@hint/utils-types": "^1.2.0",
"lodash": "^4.17.21"
}
},
"@hint/formatter-stylish": {
"version": "3.1.31",
"resolved": "https://registry.npmjs.org/@hint/formatter-stylish/-/formatter-stylish-3.1.31.tgz",
"integrity": "sha512-ZVzqfHBnkX5LpK2bO1xyK+Ys8/kyAZmeflZhts7K6bJQ8M2RQ8YDi9QvAK62MDvqxlgKKRdSZPrvG4QzFFHLAQ==",
"requires": {
"@hint/utils": "^7.0.19",
"@hint/utils-debug": "^1.0.10",
"@hint/utils-fs": "^1.0.14",
"@hint/utils-i18n": "^1.0.13",
"@hint/utils-string": "^1.0.12",
"@hint/utils-types": "^1.2.0",
"chalk": "^4.1.2",
"lodash": "^4.17.21",
"strip-ansi": "^6.0.0",
"text-table": "^0.2.0"
}
},
"@hint/formatter-summary": {
"version": "3.0.34",
"resolved": "https://registry.npmjs.org/@hint/formatter-summary/-/formatter-summary-3.0.34.tgz",
"integrity": "sha512-k1RR/ajppDnpujsuq4nGPbiGacAagd9WgfsE/++0oAd7Ocr0wzDfTi39u8i8Z/3pAHENB7ooVlW12uPwqc90+Q==",
"requires": {
"@hint/utils": "^7.0.19",
"@hint/utils-debug": "^1.0.10",
"@hint/utils-fs": "^1.0.14",
"@hint/utils-i18n": "^1.0.13",
"@hint/utils-types": "^1.2.0",
"chalk": "^4.1.2",
"lodash": "^4.17.21",
"strip-ansi": "^6.0.0",
"text-table": "^0.2.0"
}
},
"@hint/hint-apple-touch-icons": {
"version": "4.0.17",
"resolved": "https://registry.npmjs.org/@hint/hint-apple-touch-icons/-/hint-apple-touch-icons-4.0.17.tgz",
"integrity": "sha512-TOz4J5p1PKxJ9gAWywQKSrvPXXyFu47191XwL4GENVjuEn6+PMKuras/oKfpntVpvA7gFw2wx0WGuaPi5MSnWA==",
"requires": {
"@hint/utils-debug": "^1.0.10",
"@hint/utils-i18n": "^1.0.13",
"@hint/utils-network": "^1.0.21",
"@hint/utils-string": "^1.0.12",
"@hint/utils-types": "^1.2.0",
"image-size": "^1.0.1"
}
},
"@hint/hint-axe": {
"version": "4.4.15",
"resolved": "https://registry.npmjs.org/@hint/hint-axe/-/hint-axe-4.4.15.tgz",
"integrity": "sha512-g5NUIfreIklO3DaYph3DHK76zZW2bYJK4uDoATBG/jwXndfFBXuOcI0/SKFKzcpT7bUyp3nfR2HPnHmQAeRAjg==",
"requires": {
"@hint/utils-i18n": "^1.0.13",
"@hint/utils-types": "^1.2.0",
"axe-core": "^4.4.1"
}
},
"@hint/hint-babel-config": {
"version": "2.4.22",
"resolved": "https://registry.npmjs.org/@hint/hint-babel-config/-/hint-babel-config-2.4.22.tgz",
"integrity": "sha512-8w44zO3FTRuyOQzAqdxdvrY6ePjluMqlHDOMp57F9oux01kCdFqIbIyfNNvVP/Y32U/WVt4vBP5mp1kWIvM3ew==",
"requires": {
"@hint/utils-debug": "^1.0.10",
"@hint/utils-i18n": "^1.0.13",
"@hint/utils-types": "^1.2.0"
}
},
"@hint/hint-button-type": {
"version": "3.0.17",
"resolved": "https://registry.npmjs.org/@hint/hint-button-type/-/hint-button-type-3.0.17.tgz",
"integrity": "sha512-vfeX0GJ8pr/iwkD0KeGKhAR34tZQuHgJ1QVVJZswD2HkdTef8soKFOTYFur4n7mglBNXzOHJgjR4jWuGHX9+DA==",
"requires": {
"@hint/utils-debug": "^1.0.10",
"@hint/utils-i18n": "^1.0.13",
"@hint/utils-types": "^1.2.0"
}
},
"@hint/hint-compat-api": {
"version": "4.5.1",
"resolved": "https://registry.npmjs.org/@hint/hint-compat-api/-/hint-compat-api-4.5.1.tgz",
"integrity": "sha512-ydi65dndXqBsPHFXNRFDf+w40hwnZ4bHL+ctiAuzJiYxFyPS64aHBs3fC9wAgX8JBE2YgR1puDB18ACxpujTGA==",
"requires": {
"@hint/utils-compat-data": "^1.1.10",
"@hint/utils-css": "^1.0.13",
"@hint/utils-fs": "^1.0.14",
"@hint/utils-i18n": "^1.0.13",
"@hint/utils-types": "^1.2.0",
"lodash": "^4.17.21"
}
},
"@hint/hint-content-type": {
"version": "4.2.21",
"resolved": "https://registry.npmjs.org/@hint/hint-content-type/-/hint-content-type-4.2.21.tgz",
"integrity": "sha512-uaRr1A559HlzXAadr+6rPc5u66aj4oH4cfVz1ezA6uVR53xFoMn6Prn3eW7hY7q7VCWMdathErH3c9Zvp8585Q==",
"requires": {
"@hint/utils": "^7.0.19",
"@hint/utils-debug": "^1.0.10",
"@hint/utils-i18n": "^1.0.13",
"@hint/utils-network": "^1.0.21",
"@hint/utils-string": "^1.0.12",
"@hint/utils-types": "^1.2.0",
"content-type": "^1.0.4"
}
},
"@hint/hint-create-element-svg": {
"version": "1.3.21",
"resolved": "https://registry.npmjs.org/@hint/hint-create-element-svg/-/hint-create-element-svg-1.3.21.tgz",
"integrity": "sha512-bJL+rBC/ZfQZdggLtViKk9nV0MhB6MgrxwKlkq+4PAE8QCysB58BxTDIgWpe4u15M+LtFzvTrVT9bNMJNOd5yw==",
"requires": {
"@hint/utils-debug": "^1.0.10",
"@hint/utils-fs": "^1.0.14",
"@hint/utils-i18n": "^1.0.13",
"@hint/utils-types": "^1.2.0"
}
},
"@hint/hint-css-prefix-order": {
"version": "1.5.1",
"resolved": "https://registry.npmjs.org/@hint/hint-css-prefix-order/-/hint-css-prefix-order-1.5.1.tgz",
"integrity": "sha512-mD7Qvc9zo8faiXAGQd4ob8mnKx3kxnBnV2AsOqsed5iTCAPs3Y7/h7LwZaG2TsMJwhPpOy+SRMw6Owr9hvzLAg==",
"requires": {
"@hint/utils-css": "^1.0.13",
"@hint/utils-debug": "^1.0.10",
"@hint/utils-fs": "^1.0.14",
"@hint/utils-i18n": "^1.0.13",
"@hint/utils-types": "^1.2.0",
"postcss": "^8.4.13"
},
"dependencies": {
"postcss": {
"version": "8.4.16",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.16.tgz",
"integrity": "sha512-ipHE1XBvKzm5xI7hiHCZJCSugxvsdq2mPnsq5+UF+VHCjiBvtDrlxJfMBToWaP9D5XlgNmcFGqoHmUn0EYEaRQ==",
"requires": {
"nanoid": "^3.3.4",
"picocolors": "^1.0.0",
"source-map-js": "^1.0.2"
}
}
}
},
"@hint/hint-disown-opener": {
"version": "4.0.17",
"resolved": "https://registry.npmjs.org/@hint/hint-disown-opener/-/hint-disown-opener-4.0.17.tgz",
"integrity": "sha512-5Crmmy5GBaHcPjXvqwWOv5CuxFtsEkcZzt55BDPh0VR6TmtSzuZLOqO7BCxVw6ujZLEOMqdnF6tPvlGVSjHKOA==",
"requires": {
"@hint/utils-compat-data": "^1.1.10",
"@hint/utils-debug": "^1.0.10",
"@hint/utils-i18n": "^1.0.13",
"@hint/utils-network": "^1.0.21",
"@hint/utils-string": "^1.0.12",
"@hint/utils-types": "^1.2.0"
}
},
"@hint/hint-highest-available-document-mode": {
"version": "5.0.17",
"resolved": "https://registry.npmjs.org/@hint/hint-highest-available-document-mode/-/hint-highest-available-document-mode-5.0.17.tgz",
"integrity": "sha512-FfpOc32LAFjdx8/AuyGwZs4wxKEwA6B6dq6vBdAl+Qr/t/pMDLYoV1FszJJxV0nbl6Q1Bcp++wTJJcIBM3sjWA==",
"requires": {
"@hint/utils-i18n": "^1.0.13",
"@hint/utils-network": "^1.0.21",
"@hint/utils-string": "^1.0.12",
"@hint/utils-types": "^1.2.0"
}
},
"@hint/hint-html-checker": {
"version": "3.3.21",
"resolved": "https://registry.npmjs.org/@hint/hint-html-checker/-/hint-html-checker-3.3.21.tgz",
"integrity": "sha512-+FvFm8p59GHwGddL0rdfInn+197qScj89vEjbucUCjnaPc+UB2TIQgvDf1ccoRN23jQ/v95uSe8qZ+SimI0tQg==",
"requires": {
"@hint/utils": "^7.0.19",
"@hint/utils-debug": "^1.0.10",
"@hint/utils-i18n": "^1.0.13",
"@hint/utils-network": "^1.0.21",
"@hint/utils-types": "^1.2.0",
"lodash": "^4.17.21"
}
},
"@hint/hint-http-cache": {
"version": "4.0.17",
"resolved": "https://registry.npmjs.org/@hint/hint-http-cache/-/hint-http-cache-4.0.17.tgz",
"integrity": "sha512-IERV3Vk7hKXWKgKGCN2c0kzIWvSjts2tMaWOllErcTd48Rdv7Nk2hJZMnY86xsl7HamgMZI68LoaWMi/CIUFBQ==",
"requires": {
"@hint/utils-debug": "^1.0.10",
"@hint/utils-i18n": "^1.0.13",
"@hint/utils-network": "^1.0.21",
"@hint/utils-types": "^1.2.0"
}
},
"@hint/hint-http-compression": {
"version": "5.2.21",
"resolved": "https://registry.npmjs.org/@hint/hint-http-compression/-/hint-http-compression-5.2.21.tgz",
"integrity": "sha512-78SmILcumQQu1XhfvizOTvwX9m8TW69MwW5WN7dY0u0IIQPe/4noB2aJkVHvQe65VTI0orFeU1NKdS5EiHLonQ==",
"requires": {
"@hint/utils": "^7.0.19",
"@hint/utils-i18n": "^1.0.13",
"@hint/utils-network": "^1.0.21",
"@hint/utils-string": "^1.0.12",
"@hint/utils-types": "^1.2.0"
}
},
"@hint/hint-image-optimization-cloudinary": {
"version": "3.2.21",
"resolved": "https://registry.npmjs.org/@hint/hint-image-optimization-cloudinary/-/hint-image-optimization-cloudinary-3.2.21.tgz",
"integrity": "sha512-oy7QaqwroM+JD2QCT14y1ug6zymWEXM6qHuCsCD1PhCBTvgy1IoubC2jy7G+8j6XmKaO5GlD//pJ8Y1x6jQLLA==",
"requires": {
"@hint/utils": "^7.0.19",
"@hint/utils-i18n": "^1.0.13",
"@hint/utils-string": "^1.0.12",
"@hint/utils-types": "^1.2.0",
"cloudinary": "^1.28.1",
"fs-extra": "^10.1.0",
"image-size": "^1.0.1"
}
},
"@hint/hint-leading-dot-classlist": {
"version": "1.0.14",
"resolved": "https://registry.npmjs.org/@hint/hint-leading-dot-classlist/-/hint-leading-dot-classlist-1.0.14.tgz",
"integrity": "sha512-2sLj6e5IgktxqGXqpjzo7DOob2L1oyxs5PI0uEgNASlE2sf2bG8/dXUoUyE3Zmc+ZlrjnxACIfhYgHTs4+0mEQ==",
"requires": {
"@hint/utils-debug": "^1.0.10",
"@hint/utils-fs": "^1.0.14",
"@hint/utils-i18n": "^1.0.13",
"@hint/utils-types": "^1.2.0"
}
},
"@hint/hint-manifest-app-name": {
"version": "2.4.23",
"resolved": "https://registry.npmjs.org/@hint/hint-manifest-app-name/-/hint-manifest-app-name-2.4.23.tgz",
"integrity": "sha512-dsDZqhUwMRf9y5Xmz8cJ/0DUyt35AXSrNOjsMIgUuTNVt1Yar20z6SysZTk/FWzRXdlayYcZzqNC9l7CCucvXg==",
"requires": {
"@hint/utils-i18n": "^1.0.13",
"@hint/utils-types": "^1.2.0",
"punycode": "^2.1.1"
}
},
"@hint/hint-manifest-exists": {
"version": "2.4.23",
"resolved": "https://registry.npmjs.org/@hint/hint-manifest-exists/-/hint-manifest-exists-2.4.23.tgz",
"integrity": "sha512-yduuZDu/h51nBg4l98UawxO6nm71y9hkRi7wsqHqT4CKGRlBX9honYna6I5HpKRAGk58KLj6YNjhB3LESNZtEw==",
"requires": {
"@hint/utils-i18n": "^1.0.13",
"@hint/utils-string": "^1.0.12",
"@hint/utils-types": "^1.2.0"
}
},
"@hint/hint-manifest-file-extension": {
"version": "3.0.18",
"resolved": "https://registry.npmjs.org/@hint/hint-manifest-file-extension/-/hint-manifest-file-extension-3.0.18.tgz",
"integrity": "sha512-uJf2TYA0L9E8PT10/g8enzscnKkwWVmxxQeUlV0LOp5wio0rynNAAv+jE7h7SL+IgOMPo9m+tRHUzRs0lqhsbA==",
"requires": {
"@hint/utils-fs": "^1.0.14",
"@hint/utils-i18n": "^1.0.13",
"@hint/utils-string": "^1.0.12",
"@hint/utils-types": "^1.2.0"
}
},
"@hint/hint-manifest-is-valid": {
"version": "3.4.14",
"resolved": "https://registry.npmjs.org/@hint/hint-manifest-is-valid/-/hint-manifest-is-valid-3.4.14.tgz",
"integrity": "sha512-8P6RoPaVfeWFZki5OC6rgV0D1zR3zXUcG84SGNUEeNeW7aDkTevZsGn8vorS23Djdu1IZ3W3XODA/IlWcSCjGQ==",
"requires": {
"@hint/utils-compat-data": "^1.1.10",
"@hint/utils-i18n": "^1.0.13",
"@hint/utils-string": "^1.0.12",
"@hint/utils-types": "^1.2.0",
"bcp47": "^1.1.2",
"color-string": "^1.9.0"
}
},
"@hint/hint-meta-charset-utf-8": {
"version": "4.0.17",
"resolved": "https://registry.npmjs.org/@hint/hint-meta-charset-utf-8/-/hint-meta-charset-utf-8-4.0.17.tgz",
"integrity": "sha512-c7FP8/w2K3U/A7mGLihW9pwTG5nQyP4k+dKcjRzOvK3Rl4ecG+KCk2BCbP/Nupa/nk6E9fI5KDNuNhiti1q7LQ==",
"requires": {
"@hint/utils-i18n": "^1.0.13",
"@hint/utils-string": "^1.0.12",
"@hint/utils-types": "^1.2.0"
}
},
"@hint/hint-meta-viewport": {
"version": "5.0.17",
"resolved": "https://registry.npmjs.org/@hint/hint-meta-viewport/-/hint-meta-viewport-5.0.17.tgz",
"integrity": "sha512-8265mtCWwok19SqOQye+4jx3MhdIhczTUW0rpQj3+dvPzQ6nBo8ejar4RUspuR+zSGnvVLAK0wt0fY5gqrwAAw==",
"requires": {
"@hint/utils-i18n": "^1.0.13",
"@hint/utils-string": "^1.0.12",
"@hint/utils-types": "^1.2.0",
"metaviewport-parser": "^0.2.0"
}
},
"@hint/hint-no-bom": {
"version": "4.2.21",
"resolved": "https://registry.npmjs.org/@hint/hint-no-bom/-/hint-no-bom-4.2.21.tgz",
"integrity": "sha512-xitUpXgy+8hvHm2ssGN83clgNTxk/qaJGx+SkaxdgScUWxGoAVwu2tVofwdPwBNle/zbuhjpGRHW02HWW46NJw==",
"requires": {
"@hint/utils": "^7.0.19",
"@hint/utils-debug": "^1.0.10",
"@hint/utils-i18n": "^1.0.13",
"@hint/utils-network": "^1.0.21",
"@hint/utils-types": "^1.2.0"
}
},
"@hint/hint-no-disallowed-headers": {
"version": "3.1.16",
"resolved": "https://registry.npmjs.org/@hint/hint-no-disallowed-headers/-/hint-no-disallowed-headers-3.1.16.tgz",
"integrity": "sha512-Udc/gli33WTj5Posz8rrArj8opf7PTRYiXyVY88I2QnuzDUQEFE4tBknzneEkJDFrCjWL4/yWkvZIg9BI1J0IQ==",
"requires": {
"@hint/utils-debug": "^1.0.10",
"@hint/utils-i18n": "^1.0.13",
"@hint/utils-network": "^1.0.21",
"@hint/utils-string": "^1.0.12",
"@hint/utils-types": "^1.2.0"
}
},
"@hint/hint-no-friendly-error-pages": {
"version": "3.3.21",
"resolved": "https://registry.npmjs.org/@hint/hint-no-friendly-error-pages/-/hint-no-friendly-error-pages-3.3.21.tgz",
"integrity": "sha512-4RYow+jRXJcOkhf2H09Jk1M9B03rzbG6qcNIDQ4jJJh7Ip2F+kavgtvRFGEmhc+iuMlaARlepGahMdGWK/NGFQ==",
"requires": {
"@hint/utils-debug": "^1.0.10",
"@hint/utils-i18n": "^1.0.13",
"@hint/utils-network": "^1.0.21",
"@hint/utils-types": "^1.2.0"
}
},
"@hint/hint-no-html-only-headers": {
"version": "3.0.17",
"resolved": "https://registry.npmjs.org/@hint/hint-no-html-only-headers/-/hint-no-html-only-headers-3.0.17.tgz",
"integrity": "sha512-H5Ao8LXew32cgO8nkhTabmNcY9ZKm/vaQReeiZHmTCvdzO5GRC6vuzxJS/r78pjDB4LpljSSGZjfRVj2G9WKqg==",
"requires": {
"@hint/utils-debug": "^1.0.10",
"@hint/utils-i18n": "^1.0.13",
"@hint/utils-network": "^1.0.21",
"@hint/utils-string": "^1.0.12",
"@hint/utils-types": "^1.2.0"
}
},
"@hint/hint-no-http-redirects": {
"version": "3.0.17",
"resolved": "https://registry.npmjs.org/@hint/hint-no-http-redirects/-/hint-no-http-redirects-3.0.17.tgz",
"integrity": "sha512-WlM5pnpDyeapobahFYbyJb9jt1VbH1BA6DHqCYCS7Mgkfa2wq01VqfluPRv8Saf09uj1Sd0E02oRyy8lw1xryQ==",
"requires": {
"@hint/utils-i18n": "^1.0.13",
"@hint/utils-types": "^1.2.0"
}
},
"@hint/hint-no-inline-styles": {
"version": "1.0.13",
"resolved": "https://registry.npmjs.org/@hint/hint-no-inline-styles/-/hint-no-inline-styles-1.0.13.tgz",
"integrity": "sha512-LDBEzuh1agzBKHVBQJ8R+yVqU6QT0cmFCDQ3kcG3DNQhT7SwKQaQYQmJ8eGOWqxIsYzYKj70aeHgiE9lJGLW+A==",
"requires": {
"@hint/utils-debug": "^1.0.10",
"@hint/utils-i18n": "^1.0.13",
"@hint/utils-types": "^1.2.0"
}
},
"@hint/hint-no-protocol-relative-urls": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/@hint/hint-no-protocol-relative-urls/-/hint-no-protocol-relative-urls-3.1.1.tgz",
"integrity": "sha512-soexhsD1X/JCS8Wqn6OKPDdq0PhI7fvQpNvzVOKablsgRgS8iih+Zb0Chj1rLdLPZpr8PIExqQP7ILa1ZOeTPw==",
"requires": {
"@hint/utils-debug": "^1.0.10",
"@hint/utils-i18n": "^1.0.13",
"@hint/utils-network": "^1.0.21",
"@hint/utils-string": "^1.0.12",
"@hint/utils-types": "^1.2.0"
}
},
"@hint/hint-no-vulnerable-javascript-libraries": {
"version": "2.12.16",
"resolved": "https://registry.npmjs.org/@hint/hint-no-vulnerable-javascript-libraries/-/hint-no-vulnerable-javascript-libraries-2.12.16.tgz",
"integrity": "sha512-Xhsa3s4Z3qovKv7y9AmmAAXmMxciMVzHzYo1MmbNpS7uf4yDZX4gIoyzsGHEC8LDI12vtJrTk/re+N8kZARBNg==",
"requires": {
"@hint/utils": "^7.0.19",
"@hint/utils-debug": "^1.0.10",
"@hint/utils-fs": "^1.0.14",
"@hint/utils-i18n": "^1.0.13",
"@hint/utils-network": "^1.0.21",
"@hint/utils-types": "^1.2.0",
"js-library-detector": "^6.5.0",
"lodash": "^4.17.21",
"semver": "^7.3.5"
},
"dependencies": {
"semver": {
"version": "7.3.7",
"resolved": "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz",
"integrity": "sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==",
"requires": {
"lru-cache": "^6.0.0"
}
}
}
},
"@hint/hint-scoped-svg-styles": {
"version": "1.3.21",
"resolved": "https://registry.npmjs.org/@hint/hint-scoped-svg-styles/-/hint-scoped-svg-styles-1.3.21.tgz",
"integrity": "sha512-6E2CyCMpZL4ZSxXjW8JPfZ0tFsbfVFyeP7V5nakieZVSA/BwBA/Xi6MSiVxU5suVSXE1kXYhRnwsvy+KEVkrwg==",
"requires": {
"@hint/utils-css": "^1.0.13",
"@hint/utils-debug": "^1.0.10",
"@hint/utils-fs": "^1.0.14",
"@hint/utils-i18n": "^1.0.13",
"@hint/utils-types": "^1.2.0"
}
},
"@hint/hint-sri": {
"version": "4.0.17",
"resolved": "https://registry.npmjs.org/@hint/hint-sri/-/hint-sri-4.0.17.tgz",
"integrity": "sha512-p6GhEeIke2wAh1OOdhb/oD0fO7CvtYEGA8P0bGh4hbJEvKtAVZIi7qKOtwdFAx5QFq5i7tUHHi5As6HqAKxZFw==",
"requires": {
"@hint/utils-debug": "^1.0.10",
"@hint/utils-fs": "^1.0.14",
"@hint/utils-i18n": "^1.0.13",
"@hint/utils-network": "^1.0.21",
"@hint/utils-string": "^1.0.12",
"@hint/utils-types": "^1.2.0"
}
},
"@hint/hint-ssllabs": {
"version": "2.4.21",
"resolved": "https://registry.npmjs.org/@hint/hint-ssllabs/-/hint-ssllabs-2.4.21.tgz",
"integrity": "sha512-dPOMerTvBKWSjZ38ZSizz4wq6q+9h4pDjY4V6rxlhLooBZzea3oujA/QEi5Sb5uX8Iwrb85ShlfNHn3L6kTZUQ==",
"requires": {
"@hint/utils": "^7.0.19",
"@hint/utils-debug": "^1.0.10",
"@hint/utils-i18n": "^1.0.13",
"@hint/utils-network": "^1.0.21",
"@hint/utils-types": "^1.2.0",
"got": "^11.8.3"
}
},
"@hint/hint-strict-transport-security": {
"version": "3.0.17",
"resolved": "https://registry.npmjs.org/@hint/hint-strict-transport-security/-/hint-strict-transport-security-3.0.17.tgz",
"integrity": "sha512-yLscNVZWrVd8Vs28sjXNYiA0x1vN9clStOcDXQAmZTw3Qy4CcsfMbS1Y8zYU3pWg6B3m5WURQx7akMEyj8YvXA==",
"requires": {
"@hint/utils-debug": "^1.0.10",
"@hint/utils-i18n": "^1.0.13",
"@hint/utils-network": "^1.0.21",
"@hint/utils-string": "^1.0.12",
"@hint/utils-types": "^1.2.0"
}
},
"@hint/hint-stylesheet-limits": {
"version": "3.3.21",
"resolved": "https://registry.npmjs.org/@hint/hint-stylesheet-limits/-/hint-stylesheet-limits-3.3.21.tgz",
"integrity": "sha512-fabJFCEQCa8bOmHR/7FjQtKTt6oixe8uJCxGE2sV3ld6PEPLDPpnyMltS0cf2+X8JqBN3SZl7prFgve7rdLoCQ==",
"requires": {
"@hint/utils-i18n": "^1.0.13",
"@hint/utils-types": "^1.2.0"
}
},
"@hint/hint-typescript-config": {
"version": "2.5.9",
"resolved": "https://registry.npmjs.org/@hint/hint-typescript-config/-/hint-typescript-config-2.5.9.tgz",
"integrity": "sha512-806gbRZNwtcvi2iZr0EVvoe9+XlPO6RYC62oaEXfFUlLiRI9v78nti2C2zW0LzkG7DZormoFCkPn2913IYGxTQ==",
"requires": {
"@hint/utils": "^7.0.19",
"@hint/utils-debug": "^1.0.10",
"@hint/utils-i18n": "^1.0.13",
"@hint/utils-types": "^1.2.0"
}
},
"@hint/hint-validate-set-cookie-header": {
"version": "3.0.17",
"resolved": "https://registry.npmjs.org/@hint/hint-validate-set-cookie-header/-/hint-validate-set-cookie-header-3.0.17.tgz",
"integrity": "sha512-VOKXnzmvM3NGRDvnOpJF7m+DRRbu3u2qzrfhmQeKSqX1KIoV88xokPqDb241xoIQEWPmDCsrQdW+l4vy3fzxaw==",
"requires": {
"@hint/utils-debug": "^1.0.10",
"@hint/utils-i18n": "^1.0.13",
"@hint/utils-network": "^1.0.21",
"@hint/utils-string": "^1.0.12",
"@hint/utils-types": "^1.2.0"
}
},
"@hint/hint-webpack-config": {
"version": "2.4.23",
"resolved": "https://registry.npmjs.org/@hint/hint-webpack-config/-/hint-webpack-config-2.4.23.tgz",
"integrity": "sha512-zhP9zvVt55+ya4pMzLoq7+ySwh70uBl9B8fXl+x3bO4AHP+r4jwQDmmvVSIiwsjoE0FqePnKRwnyWGO92qtzAQ==",
"requires": {
"@hint/utils-debug": "^1.0.10",
"@hint/utils-i18n": "^1.0.13",
"@hint/utils-types": "^1.2.0"
}
},
"@hint/hint-x-content-type-options": {
"version": "4.0.17",
"resolved": "https://registry.npmjs.org/@hint/hint-x-content-type-options/-/hint-x-content-type-options-4.0.17.tgz",
"integrity": "sha512-6DR4QQ5LuDyAW4kvkGI6dog1yOnxNEbADoeJtRy3EBAqNLOHp9+bQeeU1di/lNnrZsNnS115z4XEWHvzOx8W0A==",
"requires": {
"@hint/utils-debug": "^1.0.10",
"@hint/utils-i18n": "^1.0.13",
"@hint/utils-network": "^1.0.21",
"@hint/utils-string": "^1.0.12",
"@hint/utils-types": "^1.2.0"
}
},
"@hint/parser-babel-config": {
"version": "2.1.37",
"resolved": "https://registry.npmjs.org/@hint/parser-babel-config/-/parser-babel-config-2.1.37.tgz",
"integrity": "sha512-ixneWb2S8NyZMdGJKytfBnVgokljJdX/InHTTmrvykynl+9IDsDQA/fZnnNY3amPSd9kLgv9oHCZDw2iEE5oyw==",
"requires": {
"@hint/utils-fs": "^1.0.14",
"@hint/utils-json": "^1.0.22",
"@hint/utils-network": "^1.0.21",
"lodash": "^4.17.21"
}
},
"@hint/parser-css": {
"version": "3.0.34",
"resolved": "https://registry.npmjs.org/@hint/parser-css/-/parser-css-3.0.34.tgz",
"integrity": "sha512-tYZSgKo3R00KJ2WnIZNvVo8rs4rA5A2Tvq1ECwi2QXXM2qvD6bM5gnLRgrVfCsW3EfuWMKr5QccSzV0DlmnOhA==",
"requires": {
"@hint/utils": "^7.0.19",
"@hint/utils-string": "^1.0.12",