-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage-lock.json
11615 lines (11615 loc) · 431 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-es6",
"version": "1.0.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "awesome-books-es6",
"version": "1.0.0",
"license": "ISC",
"devDependencies": {
"hint": "^7.1.8"
}
},
"node_modules/@hint/configuration-development": {
"version": "8.3.16",
"resolved": "https://registry.npmjs.org/@hint/configuration-development/-/configuration-development-8.3.16.tgz",
"integrity": "sha512-iDEz1P+t03jEbAJUClJlUppmnaJKnNe2N9CthE2c8cu5DLLmiiPnZdgNaCS/mPU5ejQhwMDj22rDIIcthMn11w==",
"dev": true,
"optional": true,
"dependencies": {
"@hint/configuration-accessibility": "^2.0.25",
"@hint/configuration-progressive-web-apps": "^7.0.26",
"@hint/connector-local": "^3.2.25",
"@hint/formatter-html": "^4.3.15",
"@hint/formatter-json": "^3.1.34",
"@hint/formatter-summary": "^3.0.37",
"@hint/hint-babel-config": "^2.4.25",
"@hint/hint-button-type": "^3.0.20",
"@hint/hint-compat-api": "^4.5.5",
"@hint/hint-create-element-svg": "^1.3.24",
"@hint/hint-css-prefix-order": "^1.5.5",
"@hint/hint-detect-css-reflows": "^1.0.4",
"@hint/hint-disown-opener": "^4.0.20",
"@hint/hint-highest-available-document-mode": "^5.0.20",
"@hint/hint-leading-dot-classlist": "^1.0.17",
"@hint/hint-meta-charset-utf-8": "^4.0.20",
"@hint/hint-meta-viewport": "^5.0.20",
"@hint/hint-no-bom": "^4.2.24",
"@hint/hint-no-inline-styles": "^1.0.16",
"@hint/hint-no-protocol-relative-urls": "^3.1.4",
"@hint/hint-scoped-svg-styles": "^1.3.25",
"@hint/hint-sri": "^4.0.20",
"@hint/hint-typescript-config": "^2.5.12",
"@hint/hint-webpack-config": "^2.4.26",
"@hint/parser-babel-config": "^2.1.40",
"@hint/parser-css": "^3.0.38",
"@hint/parser-html": "^3.1.3",
"@hint/parser-javascript": "^3.1.23",
"@hint/parser-jsx": "^1.1.4",
"@hint/parser-less": "^1.0.30",
"@hint/parser-sass": "^1.0.30",
"@hint/parser-typescript": "^1.0.24",
"@hint/parser-typescript-config": "^2.4.27",
"@hint/parser-webpack-config": "^2.1.39"
},
"peerDependencies": {
"hint": "^7.0.0"
}
},
"node_modules/@hint/configuration-development/node_modules/@hint/configuration-accessibility": {
"version": "2.0.25",
"resolved": "https://registry.npmjs.org/@hint/configuration-accessibility/-/configuration-accessibility-2.0.25.tgz",
"integrity": "sha512-SJ+vGi+p3hML4OcW+VOu2e9UUX+6SW7YEdXdfnr6VBZi+Mls45mnhw6g3U+B5sYzskblFF/odaHHhzszzgXCrA==",
"dev": true,
"optional": true,
"dependencies": {
"@hint/connector-puppeteer": "^2.5.22",
"@hint/formatter-html": "^4.3.15",
"@hint/formatter-summary": "^3.0.37",
"@hint/hint-axe": "^4.4.18"
},
"peerDependencies": {
"hint": "^7.0.0"
}
},
"node_modules/@hint/configuration-development/node_modules/@hint/connector-local": {
"version": "3.2.25",
"resolved": "https://registry.npmjs.org/@hint/connector-local/-/connector-local-3.2.25.tgz",
"integrity": "sha512-ARlY/dMyXpboaOZjhShZE3F9equ+y/FWapkiLwdT/7VmTTnpwx4M2UON0f+YNdNMpICrznHFpaNKeTDDSZElTw==",
"dev": true,
"optional": true,
"dependencies": {
"@hint/utils": "^7.0.22",
"@hint/utils-dom": "^2.2.3",
"@hint/utils-fs": "^1.0.15",
"@hint/utils-i18n": "^1.0.14",
"@hint/utils-network": "^1.0.24",
"chokidar": "^3.5.3",
"globby": "^11.0.4",
"jsdom": "^21.1.0"
},
"peerDependencies": {
"hint": "^7.0.0"
}
},
"node_modules/@hint/configuration-development/node_modules/@hint/connector-puppeteer": {
"version": "2.5.22",
"resolved": "https://registry.npmjs.org/@hint/connector-puppeteer/-/connector-puppeteer-2.5.22.tgz",
"integrity": "sha512-OB8UmxwInT4dNatcNdFaKBnRigUyCXl9bRPzsOaqjI80bdZXqc/7zYqx7b0DJp0rDZL4EKKHEhfp2E+UOfOJ7g==",
"dev": true,
"optional": true,
"dependencies": {
"@hint/utils": "^7.0.22",
"@hint/utils-connector-tools": "^4.0.39",
"@hint/utils-debug": "^1.0.10",
"@hint/utils-dom": "^2.2.3",
"@hint/utils-fs": "^1.0.15",
"@hint/utils-network": "^1.0.24",
"@hint/utils-types": "^1.2.0",
"is-ci": "^3.0.1",
"lockfile": "^1.0.4",
"puppeteer-core": "^13.0.1"
},
"peerDependencies": {
"hint": "^7.0.0"
}
},
"node_modules/@hint/configuration-development/node_modules/@hint/formatter-html": {
"version": "4.3.15",
"resolved": "https://registry.npmjs.org/@hint/formatter-html/-/formatter-html-4.3.15.tgz",
"integrity": "sha512-hspmzrumdVzj+y9G+94Uz5sEtk1lb+aC+4NFImHiN7ksAVrQ4QPORJpbRswUa0W4f9h/hP9z8RRO8RPJiRMJcA==",
"dev": true,
"optional": true,
"dependencies": {
"@hint/utils": "^7.0.22",
"@hint/utils-debug": "^1.0.10",
"@hint/utils-fs": "^1.0.15",
"@hint/utils-i18n": "^1.0.14",
"@hint/utils-types": "^1.2.0",
"ejs": "^3.1.8",
"fs-extra": "^11.1.0",
"lodash": "^4.17.21"
},
"peerDependencies": {
"hint": "^7.0.0"
}
},
"node_modules/@hint/configuration-development/node_modules/@hint/formatter-json": {
"version": "3.1.34",
"resolved": "https://registry.npmjs.org/@hint/formatter-json/-/formatter-json-3.1.34.tgz",
"integrity": "sha512-TLkjpy9fXs4lgnuD9n2Q68qL4bbvTyru9VzsALhArBkIaz2h5BvZbyy4Y94+2nAUOG4euic7vNw/lcMCkG9eEg==",
"dev": true,
"optional": true,
"dependencies": {
"@hint/utils": "^7.0.22",
"@hint/utils-debug": "^1.0.10",
"@hint/utils-fs": "^1.0.15",
"@hint/utils-i18n": "^1.0.14",
"@hint/utils-types": "^1.2.0",
"lodash": "^4.17.21"
},
"peerDependencies": {
"hint": "^7.0.0"
}
},
"node_modules/@hint/configuration-development/node_modules/@hint/formatter-summary": {
"version": "3.0.37",
"resolved": "https://registry.npmjs.org/@hint/formatter-summary/-/formatter-summary-3.0.37.tgz",
"integrity": "sha512-InHYMCJ6qfKb/lY2+mdEUXpjnGNQdfXuOuv3z3dPGu1VRF2PinZQtl05z9C2bKeb3N1XgXjUtxl3Te0+OJQ7aw==",
"dev": true,
"optional": true,
"dependencies": {
"@hint/utils": "^7.0.22",
"@hint/utils-debug": "^1.0.10",
"@hint/utils-fs": "^1.0.15",
"@hint/utils-i18n": "^1.0.14",
"@hint/utils-types": "^1.2.0",
"chalk": "^4.1.2",
"lodash": "^4.17.21",
"strip-ansi": "^6.0.0",
"text-table": "^0.2.0"
},
"peerDependencies": {
"hint": "^7.0.0"
}
},
"node_modules/@hint/configuration-development/node_modules/@hint/hint-axe": {
"version": "4.4.18",
"resolved": "https://registry.npmjs.org/@hint/hint-axe/-/hint-axe-4.4.18.tgz",
"integrity": "sha512-MNisrv8A9wrgvFHAK99a4/fDn+DrGV+iu4Ae/hz5P+/Yr5OBMNV9AvYbf7r24GxnD0D6NRG1HiKgB5VpbWE1NA==",
"dev": true,
"optional": true,
"dependencies": {
"@hint/utils-i18n": "^1.0.14",
"@hint/utils-network": "^1.0.24",
"@hint/utils-types": "^1.2.0",
"axe-core": "^4.4.1"
},
"peerDependencies": {
"hint": "^7.0.0"
}
},
"node_modules/@hint/configuration-development/node_modules/@hint/hint-babel-config": {
"version": "2.4.25",
"resolved": "https://registry.npmjs.org/@hint/hint-babel-config/-/hint-babel-config-2.4.25.tgz",
"integrity": "sha512-gONXfl2XjwFDiTcJx/F875MoIfJLfpcX4O2+odVCnWBMihR9/UkS55iSn8UGodPVdP2Tirebr56sLFppXt+PqQ==",
"dev": true,
"optional": true,
"dependencies": {
"@hint/utils-debug": "^1.0.10",
"@hint/utils-i18n": "^1.0.14",
"@hint/utils-types": "^1.2.0"
},
"peerDependencies": {
"@hint/parser-babel-config": "^2.0.0",
"hint": "^7.0.0"
}
},
"node_modules/@hint/configuration-development/node_modules/@hint/hint-button-type": {
"version": "3.0.20",
"resolved": "https://registry.npmjs.org/@hint/hint-button-type/-/hint-button-type-3.0.20.tgz",
"integrity": "sha512-pV7fa65aQmF78uhW/Gx5pGYXVHmy55FedKaqvqj9hLpn0tSbAonRmihUyY3eW8kGMBsuPOWDh0C7kSKB7TKDmw==",
"dev": true,
"optional": true,
"dependencies": {
"@hint/utils-debug": "^1.0.10",
"@hint/utils-i18n": "^1.0.14",
"@hint/utils-types": "^1.2.0"
},
"peerDependencies": {
"hint": "^7.0.0"
}
},
"node_modules/@hint/configuration-development/node_modules/@hint/hint-compat-api": {
"version": "4.5.5",
"resolved": "https://registry.npmjs.org/@hint/hint-compat-api/-/hint-compat-api-4.5.5.tgz",
"integrity": "sha512-uOLs5ndKy8Wbowy73macVavmED3Yn6see3kZZEVrcQJRGnDsX3zP8ZhBoxaqVPjo5kjvFc5fbTHbmZjKsGywkw==",
"dev": true,
"optional": true,
"dependencies": {
"@hint/utils-compat-data": "^1.1.11",
"@hint/utils-css": "^1.0.14",
"@hint/utils-fs": "^1.0.15",
"@hint/utils-i18n": "^1.0.14",
"@hint/utils-types": "^1.2.0",
"lodash": "^4.17.21"
},
"peerDependencies": {
"@hint/parser-css": "^3.0.0",
"hint": "^7.0.0"
}
},
"node_modules/@hint/configuration-development/node_modules/@hint/hint-create-element-svg": {
"version": "1.3.24",
"resolved": "https://registry.npmjs.org/@hint/hint-create-element-svg/-/hint-create-element-svg-1.3.24.tgz",
"integrity": "sha512-rzzyfA1q3obF0FRlDdksZM9W7eeutfMwbUR4ToPw5JdYmtK0w82/lypue9Z6q/4yg8Tr54+PWRIJr9C8URTdgQ==",
"dev": true,
"optional": true,
"dependencies": {
"@hint/utils-debug": "^1.0.10",
"@hint/utils-fs": "^1.0.15",
"@hint/utils-i18n": "^1.0.14",
"@hint/utils-types": "^1.2.0"
},
"peerDependencies": {
"@hint/parser-javascript": "^3.0.0",
"hint": "^7.0.0"
}
},
"node_modules/@hint/configuration-development/node_modules/@hint/hint-css-prefix-order": {
"version": "1.5.5",
"resolved": "https://registry.npmjs.org/@hint/hint-css-prefix-order/-/hint-css-prefix-order-1.5.5.tgz",
"integrity": "sha512-FsLFDbwyIrL6HJkoken/jhkhYMDPMkrOBRAoQRQzGn1wXVo5ujg+dwSD3jv//Nt8hqube52oRBc1Ajra6t1d2g==",
"dev": true,
"optional": true,
"dependencies": {
"@hint/utils-css": "^1.0.14",
"@hint/utils-debug": "^1.0.10",
"@hint/utils-fs": "^1.0.15",
"@hint/utils-i18n": "^1.0.14",
"@hint/utils-types": "^1.2.0",
"postcss": "^8.4.13"
},
"peerDependencies": {
"@hint/parser-css": "^3.0.0",
"hint": "^7.0.0"
}
},
"node_modules/@hint/configuration-development/node_modules/@hint/hint-detect-css-reflows": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/@hint/hint-detect-css-reflows/-/hint-detect-css-reflows-1.0.4.tgz",
"integrity": "sha512-/aybA/2fndz+MLalEqYWx+UOQuo8YOC9sUXTFPw0vam+j5Ha9fdeSEfBoVbcEFYUpiSU/ou3Y/phfcsn8l5Z/A==",
"dev": true,
"optional": true,
"dependencies": {
"@hint/utils-css": "^1.0.14",
"@hint/utils-debug": "^1.0.10",
"@hint/utils-fs": "^1.0.15",
"@hint/utils-i18n": "^1.0.14",
"@hint/utils-types": "^1.2.0",
"postcss": "^8.4.13"
},
"peerDependencies": {
"@hint/parser-css": "^3.0.0",
"hint": "^7.0.0"
}
},
"node_modules/@hint/configuration-development/node_modules/@hint/hint-disown-opener": {
"version": "4.0.20",
"resolved": "https://registry.npmjs.org/@hint/hint-disown-opener/-/hint-disown-opener-4.0.20.tgz",
"integrity": "sha512-hBrlFXnAbNOAlqeSU08k6IIdI85NJYRLD6g7VUTZ/wNOaKh6TN+zMnP7Kvc1KNJ4BGxMWGELRP4RMTWxRykVVA==",
"dev": true,
"optional": true,
"dependencies": {
"@hint/utils-compat-data": "^1.1.11",
"@hint/utils-debug": "^1.0.10",
"@hint/utils-i18n": "^1.0.14",
"@hint/utils-network": "^1.0.24",
"@hint/utils-string": "^1.0.13",
"@hint/utils-types": "^1.2.0"
},
"peerDependencies": {
"hint": "^7.0.0"
}
},
"node_modules/@hint/configuration-development/node_modules/@hint/hint-highest-available-document-mode": {
"version": "5.0.20",
"resolved": "https://registry.npmjs.org/@hint/hint-highest-available-document-mode/-/hint-highest-available-document-mode-5.0.20.tgz",
"integrity": "sha512-NwXzOt2TL7SJsUJ9v29lXsa02+tWzd9xadq113PY9UKsWfzKTaLvxVycLEAYWwXXKrWbNdVNncz79UXbLG2tcg==",
"dev": true,
"optional": true,
"dependencies": {
"@hint/utils-i18n": "^1.0.14",
"@hint/utils-network": "^1.0.24",
"@hint/utils-string": "^1.0.13",
"@hint/utils-types": "^1.2.0"
},
"peerDependencies": {
"hint": "^7.0.0"
}
},
"node_modules/@hint/configuration-development/node_modules/@hint/hint-leading-dot-classlist": {
"version": "1.0.17",
"resolved": "https://registry.npmjs.org/@hint/hint-leading-dot-classlist/-/hint-leading-dot-classlist-1.0.17.tgz",
"integrity": "sha512-Hc3QYh2oSEV27WkmS+rUYrFbgkReMrD/prDX5wEKzr6AUPw5gTMBcsl+PAmeo4tQE+ONVn8KF+zwik9S2tUOuA==",
"dev": true,
"optional": true,
"dependencies": {
"@hint/utils-debug": "^1.0.10",
"@hint/utils-fs": "^1.0.15",
"@hint/utils-i18n": "^1.0.14",
"@hint/utils-types": "^1.2.0"
},
"peerDependencies": {
"@hint/parser-javascript": "^3.0.0",
"hint": "^7.0.0"
}
},
"node_modules/@hint/configuration-development/node_modules/@hint/hint-meta-charset-utf-8": {
"version": "4.0.20",
"resolved": "https://registry.npmjs.org/@hint/hint-meta-charset-utf-8/-/hint-meta-charset-utf-8-4.0.20.tgz",
"integrity": "sha512-3TsEAvylKJ+O68ZFoxIyWSXAa81YsbdBLbxq79/znPJkmPIyI5zrIANdL/JPRQzvmCNaygFhfZmq2qDAkt6mbA==",
"dev": true,
"optional": true,
"dependencies": {
"@hint/utils-i18n": "^1.0.14",
"@hint/utils-string": "^1.0.13",
"@hint/utils-types": "^1.2.0"
},
"peerDependencies": {
"hint": "^7.0.0"
}
},
"node_modules/@hint/configuration-development/node_modules/@hint/hint-meta-viewport": {
"version": "5.0.20",
"resolved": "https://registry.npmjs.org/@hint/hint-meta-viewport/-/hint-meta-viewport-5.0.20.tgz",
"integrity": "sha512-LjLyQK7nToFX4lQgGfwW9neJamoKhesX0Yw25dYoEsefXE8tsbTopqlzWlQAW/DmWRYbaWbzmXHerlFsBfffoA==",
"dev": true,
"optional": true,
"dependencies": {
"@hint/utils-i18n": "^1.0.14",
"@hint/utils-string": "^1.0.13",
"@hint/utils-types": "^1.2.0",
"metaviewport-parser": "^0.3.0"
},
"peerDependencies": {
"hint": "^7.0.0"
}
},
"node_modules/@hint/configuration-development/node_modules/@hint/hint-no-bom": {
"version": "4.2.24",
"resolved": "https://registry.npmjs.org/@hint/hint-no-bom/-/hint-no-bom-4.2.24.tgz",
"integrity": "sha512-5oDSlblOTsWhouH+vqBRO80KAcZkpDIqd708bCWrUlyF3C7klGVnyHu7OpnaDXqLGUuWW86koo0ndcP3s7ehYw==",
"dev": true,
"optional": true,
"dependencies": {
"@hint/utils": "^7.0.22",
"@hint/utils-debug": "^1.0.10",
"@hint/utils-i18n": "^1.0.14",
"@hint/utils-network": "^1.0.24",
"@hint/utils-types": "^1.2.0"
},
"peerDependencies": {
"hint": "^7.0.0"
}
},
"node_modules/@hint/configuration-development/node_modules/@hint/hint-no-inline-styles": {
"version": "1.0.16",
"resolved": "https://registry.npmjs.org/@hint/hint-no-inline-styles/-/hint-no-inline-styles-1.0.16.tgz",
"integrity": "sha512-dwocVuPVRn/k8v2WRLfMK10TmRwsrxr8nia9Vt1E+eFZgFnWaMRiErvwb3uZj3stnwv8r42cfCkcvgWCczbaVQ==",
"dev": true,
"optional": true,
"dependencies": {
"@hint/utils-debug": "^1.0.10",
"@hint/utils-i18n": "^1.0.14",
"@hint/utils-types": "^1.2.0"
},
"peerDependencies": {
"hint": "^7.0.0"
}
},
"node_modules/@hint/configuration-development/node_modules/@hint/hint-no-protocol-relative-urls": {
"version": "3.1.4",
"resolved": "https://registry.npmjs.org/@hint/hint-no-protocol-relative-urls/-/hint-no-protocol-relative-urls-3.1.4.tgz",
"integrity": "sha512-VnH7piIsrSkb7wYjzO8zkLMHpHDWrFChBeK9idd95bjUjwSqSYyR01aRVd+YKbkqUlX6D+3PuWQFz5UY4+P7Fg==",
"dev": true,
"optional": true,
"dependencies": {
"@hint/utils-debug": "^1.0.10",
"@hint/utils-i18n": "^1.0.14",
"@hint/utils-network": "^1.0.24",
"@hint/utils-string": "^1.0.13",
"@hint/utils-types": "^1.2.0"
},
"peerDependencies": {
"hint": "^7.0.0"
}
},
"node_modules/@hint/configuration-development/node_modules/@hint/hint-scoped-svg-styles": {
"version": "1.3.25",
"resolved": "https://registry.npmjs.org/@hint/hint-scoped-svg-styles/-/hint-scoped-svg-styles-1.3.25.tgz",
"integrity": "sha512-w89eqJ0nAUW8oAkWf7kgUX1MC53VxPmIuKERQgDxJSlieyiZdjh22sCjfS6gLyBPX3H+wCBilPIpSXjoshwEPA==",
"dev": true,
"optional": true,
"dependencies": {
"@hint/utils-css": "^1.0.14",
"@hint/utils-debug": "^1.0.10",
"@hint/utils-fs": "^1.0.15",
"@hint/utils-i18n": "^1.0.14",
"@hint/utils-types": "^1.2.0"
},
"peerDependencies": {
"@hint/parser-css": "^3.0.0",
"hint": "^7.0.0"
}
},
"node_modules/@hint/configuration-development/node_modules/@hint/hint-sri": {
"version": "4.0.20",
"resolved": "https://registry.npmjs.org/@hint/hint-sri/-/hint-sri-4.0.20.tgz",
"integrity": "sha512-HItjKDJ0Eq3XFC2sqb9Ux8WcsM1E+9xZiZgCxiJh5uqP8AkYeSj3oj3CwallrLM8YCzIMVspY6GuFtaejl0IOg==",
"dev": true,
"optional": true,
"dependencies": {
"@hint/utils-debug": "^1.0.10",
"@hint/utils-fs": "^1.0.15",
"@hint/utils-i18n": "^1.0.14",
"@hint/utils-network": "^1.0.24",
"@hint/utils-string": "^1.0.13",
"@hint/utils-types": "^1.2.0"
},
"peerDependencies": {
"hint": "^7.0.0"
}
},
"node_modules/@hint/configuration-development/node_modules/@hint/hint-typescript-config": {
"version": "2.5.12",
"resolved": "https://registry.npmjs.org/@hint/hint-typescript-config/-/hint-typescript-config-2.5.12.tgz",
"integrity": "sha512-Jlu58ja5YnMdb9XLfQqg0tooQ10XYRLVdhRgNeWWf+U8U4lPTXTQ6RRmvQLZEUwQFzTs7gqWpPDG30FiI/gwwA==",
"dev": true,
"optional": true,
"dependencies": {
"@hint/utils": "^7.0.22",
"@hint/utils-debug": "^1.0.10",
"@hint/utils-i18n": "^1.0.14",
"@hint/utils-types": "^1.2.0"
},
"peerDependencies": {
"@hint/parser-typescript-config": "^2.0.0",
"hint": "^7.0.0"
}
},
"node_modules/@hint/configuration-development/node_modules/@hint/hint-webpack-config": {
"version": "2.4.26",
"resolved": "https://registry.npmjs.org/@hint/hint-webpack-config/-/hint-webpack-config-2.4.26.tgz",
"integrity": "sha512-vHGJtBpb5J9ADZLhvEEeHdpkrHeHZ+djVLlC9iDkho7SaIHD/XC151GX6zE86Z+/KF8aWPzWU6tfr2iAA1Z1bw==",
"dev": true,
"optional": true,
"dependencies": {
"@hint/utils-debug": "^1.0.10",
"@hint/utils-i18n": "^1.0.14",
"@hint/utils-types": "^1.2.0"
},
"peerDependencies": {
"@hint/parser-babel-config": "^2.0.0",
"@hint/parser-typescript-config": "^2.0.0",
"@hint/parser-webpack-config": "^2.0.0",
"hint": "^7.0.0"
}
},
"node_modules/@hint/configuration-development/node_modules/@hint/parser-babel-config": {
"version": "2.1.40",
"resolved": "https://registry.npmjs.org/@hint/parser-babel-config/-/parser-babel-config-2.1.40.tgz",
"integrity": "sha512-+E7PJbI/mNd/in3DBxUR54+wDd44euhCkbWU4xLr1DBuMyYgCa6CDGG7hCjWpidhl5aSFFygGlQj/5V26s8uIA==",
"dev": true,
"optional": true,
"dependencies": {
"@hint/utils-fs": "^1.0.15",
"@hint/utils-json": "^1.0.25",
"@hint/utils-network": "^1.0.24",
"lodash": "^4.17.21"
},
"peerDependencies": {
"hint": "^7.0.0"
}
},
"node_modules/@hint/configuration-development/node_modules/@hint/parser-css": {
"version": "3.0.38",
"resolved": "https://registry.npmjs.org/@hint/parser-css/-/parser-css-3.0.38.tgz",
"integrity": "sha512-gVsQZWw4DUVJJ1th+Vl59Alv5YBuLsnJfTN/wc52C0qC98cvB7MK7fEatpaqtIyfLzzua2DxNsatl2MYxDNn+g==",
"dev": true,
"optional": true,
"dependencies": {
"@hint/utils-debug": "^1.0.10",
"@hint/utils-string": "^1.0.13",
"postcss": "^8.4.13",
"postcss-safe-parser": "^6.0.0"
},
"peerDependencies": {
"hint": "^7.0.0"
}
},
"node_modules/@hint/configuration-development/node_modules/@hint/parser-html": {
"version": "3.1.3",
"resolved": "https://registry.npmjs.org/@hint/parser-html/-/parser-html-3.1.3.tgz",
"integrity": "sha512-MPUq+BIFzDkY8YNmSqCDjLpzjjQ5jtOZHAOR9PpUenZGZHO7eIrMlqGDhYZUDKhNAU1YR1sW5FhayTd/NeDAvw==",
"dev": true,
"optional": true,
"dependencies": {
"@hint/utils-dom": "^2.2.3"
},
"peerDependencies": {
"hint": "^7.0.0"
}
},
"node_modules/@hint/configuration-development/node_modules/@hint/parser-javascript": {
"version": "3.1.23",
"resolved": "https://registry.npmjs.org/@hint/parser-javascript/-/parser-javascript-3.1.23.tgz",
"integrity": "sha512-LmKIfNQzquRRP8l5gOyKi/2D9qI+6qlnHqLO5uk/AHfQpGDxKs19qkdP8TINs/W/O0Wd6se9lViGvDdTK4iivA==",
"dev": true,
"optional": true,
"dependencies": {
"@hint/utils": "^7.0.22",
"@hint/utils-debug": "^1.0.10",
"@types/estree-jsx": "^0.0.1",
"acorn": "^8.8.2",
"acorn-jsx": "^5.3.2",
"acorn-jsx-walk": "^2.0.0",
"acorn-walk": "^8.2.0"
},
"peerDependencies": {
"hint": "^7.0.0"
}
},
"node_modules/@hint/configuration-development/node_modules/@hint/parser-jsx": {
"version": "1.1.4",
"resolved": "https://registry.npmjs.org/@hint/parser-jsx/-/parser-jsx-1.1.4.tgz",
"integrity": "sha512-DeL5wJwUyfJwlWeDFZIJqe7vdirPzTfj+HMoLGjVyrP9LXClDAy6JSvRoUiMR/9r5POKU7anu58v8dPD5bgtrQ==",
"dev": true,
"optional": true,
"dependencies": {
"@hint/utils-debug": "^1.0.10",
"@hint/utils-dom": "^2.2.3",
"parse5": "^6.0.1",
"parse5-htmlparser2-tree-adapter": "^6.0.1"
},
"peerDependencies": {
"@hint/parser-javascript": "^3.0.0",
"hint": "^7.0.0"
}
},
"node_modules/@hint/configuration-development/node_modules/@hint/parser-less": {
"version": "1.0.30",
"resolved": "https://registry.npmjs.org/@hint/parser-less/-/parser-less-1.0.30.tgz",
"integrity": "sha512-jehPgv1SYMxNDDfHJ+It/DpwASC+bFhJ5t07nL9jRtPdQ+3K8poleRaL3Ds7j9nK+EFpP8uR8pQQHyKnFTa33A==",
"dev": true,
"optional": true,
"dependencies": {
"@hint/utils-debug": "^1.0.10",
"@hint/utils-string": "^1.0.13",
"postcss": "^8.4.13",
"postcss-less": "^5.0.0"
},
"peerDependencies": {
"hint": "^7.0.0"
}
},
"node_modules/@hint/configuration-development/node_modules/@hint/parser-sass": {
"version": "1.0.30",
"resolved": "https://registry.npmjs.org/@hint/parser-sass/-/parser-sass-1.0.30.tgz",
"integrity": "sha512-G2PZWU+kZy/IEg4UX69Ts6h7VW6Gyi1QX+g4MWN4pvM2/3NW3IZ1Zpyed927uBRv09oVvObZoHIieE+ZB1B0Eg==",
"dev": true,
"optional": true,
"dependencies": {
"@hint/utils-debug": "^1.0.10",
"@hint/utils-string": "^1.0.13",
"postcss": "^8.4.13",
"postcss-sass": "^0.5.0",
"postcss-scss": "^4.0.4"
},
"peerDependencies": {
"hint": "^7.0.0"
}
},
"node_modules/@hint/configuration-development/node_modules/@hint/parser-typescript": {
"version": "1.0.24",
"resolved": "https://registry.npmjs.org/@hint/parser-typescript/-/parser-typescript-1.0.24.tgz",
"integrity": "sha512-exIFHKO4l6enfPU2CeEOT4GjjEDo8XX5QE4DlLECCkL6UBb+rdQRSc/lfU2nl0iIqINPpms2YRgom3jIdm8KjQ==",
"dev": true,
"optional": true,
"dependencies": {
"@hint/parser-javascript": "^3.1.23",
"@hint/utils-debug": "^1.0.10",
"@typescript-eslint/typescript-estree": "^5.50.0"
},
"peerDependencies": {
"@hint/parser-javascript": "^3.0.0",
"hint": "^7.0.0"
}
},
"node_modules/@hint/configuration-development/node_modules/@hint/parser-typescript-config": {
"version": "2.4.27",
"resolved": "https://registry.npmjs.org/@hint/parser-typescript-config/-/parser-typescript-config-2.4.27.tgz",
"integrity": "sha512-rYz8yWaMK6S9byqutVDsU1b98hHN0AgHFFXiCbTW3CMHSNhlFYPG+H8KMmT94y47geSlPgUUIp/EpJ48V/nv7A==",
"dev": true,
"optional": true,
"dependencies": {
"@hint/utils-fs": "^1.0.15",
"@hint/utils-json": "^1.0.25",
"@hint/utils-network": "^1.0.24",
"lodash": "^4.17.21"
},
"peerDependencies": {
"hint": "^7.0.0"
}
},
"node_modules/@hint/configuration-development/node_modules/@hint/parser-webpack-config": {
"version": "2.1.39",
"resolved": "https://registry.npmjs.org/@hint/parser-webpack-config/-/parser-webpack-config-2.1.39.tgz",
"integrity": "sha512-V4CzhOEpW2HGjmqldgGDZa9JOVe6XasP05QG45sc5H+wnpjbe+GLEyffRVRXrc1+mgLTiS5gyNDynmGvpsPung==",
"dev": true,
"optional": true,
"dependencies": {
"@hint/utils": "^7.0.22",
"@hint/utils-network": "^1.0.24"
},
"peerDependencies": {
"hint": "^7.0.0"
}
},
"node_modules/@hint/configuration-development/node_modules/@hint/utils-compat-data": {
"version": "1.1.11",
"resolved": "https://registry.npmjs.org/@hint/utils-compat-data/-/utils-compat-data-1.1.11.tgz",
"integrity": "sha512-YhQ8f3akbLqTRgSBiD3GEeeGFQ7KX1rLrwozT2LdWvxf5HZ9W4TMQl5msIQnIG5sRtmJhOwwbZ5al5iC7LAAqw==",
"dev": true,
"optional": true,
"dependencies": {
"@hint/utils-css": "^1.0.14",
"@mdn/browser-compat-data": "^4.1.10",
"mdn-data": "^2.0.27",
"postcss-selector-parser": "^6.0.8",
"postcss-value-parser": "^4.2.0",
"semver": "^7.3.5"
}
},
"node_modules/@hint/configuration-development/node_modules/@hint/utils-connector-tools": {
"version": "4.0.39",
"resolved": "https://registry.npmjs.org/@hint/utils-connector-tools/-/utils-connector-tools-4.0.39.tgz",
"integrity": "sha512-e1TMVO6ZuoD10/EtdIZywbVY9irciaDuekMfZr5Hj1jz2HaCmsXEW2RoYTYk9uHwPHODTB+rz7voQdW7TGqreQ==",
"dev": true,
"optional": true,
"dependencies": {
"@hint/utils": "^7.0.22",
"@hint/utils-debug": "^1.0.10",
"@hint/utils-network": "^1.0.24",
"@hint/utils-string": "^1.0.13",
"@hint/utils-types": "^1.2.0",
"data-urls": "^3.0.2",
"https": "^1.0.0",
"iconv-lite": "^0.6.3",
"node-fetch": "^2.6.7"
},
"peerDependencies": {
"hint": "^7.0.0"
}
},
"node_modules/@hint/configuration-development/node_modules/@hint/utils-css": {
"version": "1.0.14",
"resolved": "https://registry.npmjs.org/@hint/utils-css/-/utils-css-1.0.14.tgz",
"integrity": "sha512-b7l/Zneoo6Q3PAotdFYOrEJWZR9x03RP7mJSwrAfC1VV4MBwJcZ/sOoMNkTAko5MvVX4gxO0me0ct466LQZilA==",
"dev": true,
"optional": true
},
"node_modules/@hint/configuration-development/node_modules/@hint/utils-dom": {
"version": "2.2.3",
"resolved": "https://registry.npmjs.org/@hint/utils-dom/-/utils-dom-2.2.3.tgz",
"integrity": "sha512-l7CKhIunWiQGzOVoMmWHSRcAev40U3ClYTZ5Mip0cI7MKmvB/1AS2b91e+Lqi+4/BtQ2PHdUCI1YxIRSFiGbUw==",
"dev": true,
"optional": true,
"dependencies": {
"@hint/utils-debug": "^1.0.10",
"@hint/utils-types": "^1.2.0",
"@types/parse5": "^6.0.3",
"css-select": "^4.3.0",
"eventemitter2": "^6.4.5",
"parse5": "^6.0.1",
"parse5-htmlparser2-tree-adapter": "^6.0.1"
}
},
"node_modules/@hint/configuration-development/node_modules/@hint/utils-i18n": {
"version": "1.0.14",
"resolved": "https://registry.npmjs.org/@hint/utils-i18n/-/utils-i18n-1.0.14.tgz",
"integrity": "sha512-zGHqJk4uDurJevpFeGkOk9+kh51STlWiPeaIPdgimswAOj3j3IJjXixH8TmnPtBR86CAQ2z1c7q8OHhYQLvaAA==",
"dev": true,
"optional": true,
"dependencies": {
"@hint/utils-types": "^1.2.0"
}
},
"node_modules/@hint/configuration-development/node_modules/@mapbox/node-pre-gyp": {
"version": "1.0.10",
"resolved": "https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.10.tgz",
"integrity": "sha512-4ySo4CjzStuprMwk35H5pPbkymjv1SF3jGLj6rAHp/xT/RF7TL7bd9CTm1xDY49K2qF7jmR/g7k+SkLETP6opA==",
"dev": true,
"optional": true,
"peer": true,
"dependencies": {
"detect-libc": "^2.0.0",
"https-proxy-agent": "^5.0.0",
"make-dir": "^3.1.0",
"node-fetch": "^2.6.7",
"nopt": "^5.0.0",
"npmlog": "^5.0.1",
"rimraf": "^3.0.2",
"semver": "^7.3.5",
"tar": "^6.1.11"
},
"bin": {
"node-pre-gyp": "bin/node-pre-gyp"
}
},
"node_modules/@hint/configuration-development/node_modules/@mdn/browser-compat-data": {
"version": "4.2.1",
"resolved": "https://registry.npmjs.org/@mdn/browser-compat-data/-/browser-compat-data-4.2.1.tgz",
"integrity": "sha512-EWUguj2kd7ldmrF9F+vI5hUOralPd+sdsUnYbRy33vZTuZkduC1shE9TtEMEjAQwyfyMb4ole5KtjF8MsnQOlA==",
"dev": true,
"optional": true
},
"node_modules/@hint/configuration-development/node_modules/@tootallnate/once": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz",
"integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==",
"dev": true,
"optional": true,
"engines": {
"node": ">= 10"
}
},
"node_modules/@hint/configuration-development/node_modules/@types/parse5": {
"version": "6.0.3",
"resolved": "https://registry.npmjs.org/@types/parse5/-/parse5-6.0.3.tgz",
"integrity": "sha512-SuT16Q1K51EAVPz1K29DJ/sXjhSQ0zjvsypYJ6tlwVsRV9jwW5Adq2ch8Dq8kDBCkYnELS7N7VNCSB5nC56t/g==",
"dev": true,
"optional": true
},
"node_modules/@hint/configuration-development/node_modules/@typescript-eslint/types": {
"version": "5.57.1",
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.57.1.tgz",
"integrity": "sha512-bSs4LOgyV3bJ08F5RDqO2KXqg3WAdwHCu06zOqcQ6vqbTJizyBhuh1o1ImC69X4bV2g1OJxbH71PJqiO7Y1RuA==",
"dev": true,
"optional": true,
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/typescript-eslint"
}
},
"node_modules/@hint/configuration-development/node_modules/@typescript-eslint/typescript-estree": {
"version": "5.57.1",
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.57.1.tgz",
"integrity": "sha512-A2MZqD8gNT0qHKbk2wRspg7cHbCDCk2tcqt6ScCFLr5Ru8cn+TCfM786DjPhqwseiS+PrYwcXht5ztpEQ6TFTw==",
"dev": true,
"optional": true,
"dependencies": {
"@typescript-eslint/types": "5.57.1",
"@typescript-eslint/visitor-keys": "5.57.1",
"debug": "^4.3.4",
"globby": "^11.1.0",
"is-glob": "^4.0.3",
"semver": "^7.3.7",
"tsutils": "^3.21.0"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/typescript-eslint"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
}
},
"node_modules/@hint/configuration-development/node_modules/@typescript-eslint/visitor-keys": {
"version": "5.57.1",
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.57.1.tgz",
"integrity": "sha512-RjQrAniDU0CEk5r7iphkm731zKlFiUjvcBS2yHAg8WWqFMCaCrD0rKEVOMUyMMcbGPZ0bPp56srkGWrgfZqLRA==",
"dev": true,
"optional": true,
"dependencies": {
"@typescript-eslint/types": "5.57.1",
"eslint-visitor-keys": "^3.3.0"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/typescript-eslint"
}
},
"node_modules/@hint/configuration-development/node_modules/abab": {
"version": "2.0.6",
"resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz",
"integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==",
"dev": true,
"optional": true
},
"node_modules/@hint/configuration-development/node_modules/acorn": {
"version": "8.8.2",
"resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz",
"integrity": "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==",
"dev": true,
"optional": true,
"bin": {
"acorn": "bin/acorn"
},
"engines": {
"node": ">=0.4.0"
}
},
"node_modules/@hint/configuration-development/node_modules/acorn-jsx": {
"version": "5.3.2",
"resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
"integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==",
"dev": true,
"optional": true,
"peerDependencies": {
"acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
}
},
"node_modules/@hint/configuration-development/node_modules/acorn-jsx-walk": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/acorn-jsx-walk/-/acorn-jsx-walk-2.0.0.tgz",
"integrity": "sha512-uuo6iJj4D4ygkdzd6jPtcxs8vZgDX9YFIkqczGImoypX2fQ4dVImmu3UzA4ynixCIMTrEOWW+95M2HuBaCEOVA==",
"dev": true,
"optional": true
},
"node_modules/@hint/configuration-development/node_modules/acorn-walk": {
"version": "8.2.0",
"resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz",
"integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==",
"dev": true,
"optional": true,
"engines": {
"node": ">=0.4.0"
}
},
"node_modules/@hint/configuration-development/node_modules/agent-base": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz",
"integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==",
"dev": true,
"optional": true,
"dependencies": {
"debug": "4"
},
"engines": {
"node": ">= 6.0.0"
}
},
"node_modules/@hint/configuration-development/node_modules/async": {
"version": "3.2.4",
"resolved": "https://registry.npmjs.org/async/-/async-3.2.4.tgz",
"integrity": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==",
"dev": true,
"optional": true
},
"node_modules/@hint/configuration-development/node_modules/asynckit": {
"version": "0.4.0",
"resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
"integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==",
"dev": true,
"optional": true
},
"node_modules/@hint/configuration-development/node_modules/axe-core": {
"version": "4.6.3",
"resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.6.3.tgz",
"integrity": "sha512-/BQzOX780JhsxDnPpH4ZiyrJAzcd8AfzFPkv+89veFSr1rcMjuq2JDCwypKaPeB6ljHp9KjXhPpjgCvQlWYuqg==",
"dev": true,
"optional": true,
"engines": {
"node": ">=4"
}
},
"node_modules/@hint/configuration-development/node_modules/balanced-match": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
"integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
"dev": true,
"optional": true
},
"node_modules/@hint/configuration-development/node_modules/brace-expansion": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz",
"integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
"dev": true,
"optional": true,
"dependencies": {
"balanced-match": "^1.0.0"
}
},
"node_modules/@hint/configuration-development/node_modules/braces": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
"integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
"dev": true,
"optional": true,
"dependencies": {
"fill-range": "^7.0.1"
},
"engines": {
"node": ">=8"
}
},
"node_modules/@hint/configuration-development/node_modules/canvas": {
"version": "2.11.2",
"resolved": "https://registry.npmjs.org/canvas/-/canvas-2.11.2.tgz",
"integrity": "sha512-ItanGBMrmRV7Py2Z+Xhs7cT+FNt5K0vPL4p9EZ/UX/Mu7hFbkxSjKF2KVtPwX7UYWp7dRKnrTvReflgrItJbdw==",
"dev": true,
"hasInstallScript": true,
"optional": true,
"peer": true,
"dependencies": {
"@mapbox/node-pre-gyp": "^1.0.0",
"nan": "^2.17.0",
"simple-get": "^3.0.3"
},
"engines": {
"node": ">=6"
}
},
"node_modules/@hint/configuration-development/node_modules/chokidar": {
"version": "3.5.3",
"resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz",
"integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==",
"dev": true,
"funding": [
{
"type": "individual",
"url": "https://paulmillr.com/funding/"
}
],
"optional": true,
"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"
},
"engines": {
"node": ">= 8.10.0"
},
"optionalDependencies": {
"fsevents": "~2.3.2"
}
},
"node_modules/@hint/configuration-development/node_modules/combined-stream": {
"version": "1.0.8",
"resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
"integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
"dev": true,
"optional": true,