-
Notifications
You must be signed in to change notification settings - Fork 0
/
package-lock.json
8124 lines (8124 loc) · 323 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": "capstone-1",
"version": "1.0.0",
"lockfileVersion": 1,
"requires": true,
"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.16.7",
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.7.tgz",
"integrity": "sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg==",
"requires": {
"@babel/highlight": "^7.16.7"
}
},
"@babel/compat-data": {
"version": "7.18.5",
"resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.18.5.tgz",
"integrity": "sha512-BxhE40PVCBxVEJsSBhB6UWyAuqJRxGsAw8BdHMJ3AKGydcwuWW4kOO3HmqBQAdcq/OP+/DlTVxLvsCzRTnZuGg=="
},
"@babel/core": {
"version": "7.18.5",
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.18.5.tgz",
"integrity": "sha512-MGY8vg3DxMnctw0LdvSEojOsumc70g0t18gNyUdAZqB1Rpd1Bqo/svHGvt+UJ6JcGX+DIekGFDxxIWofBxLCnQ==",
"requires": {
"@ampproject/remapping": "^2.1.0",
"@babel/code-frame": "^7.16.7",
"@babel/generator": "^7.18.2",
"@babel/helper-compilation-targets": "^7.18.2",
"@babel/helper-module-transforms": "^7.18.0",
"@babel/helpers": "^7.18.2",
"@babel/parser": "^7.18.5",
"@babel/template": "^7.16.7",
"@babel/traverse": "^7.18.5",
"@babel/types": "^7.18.4",
"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.2",
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.18.2.tgz",
"integrity": "sha512-W1lG5vUwFvfMd8HVXqdfbuG7RuaSrTCCD8cl8fP8wOivdbtbIg2Db3IWUcgvfxKbbn6ZBGYRW/Zk1MIwK49mgw==",
"requires": {
"@babel/types": "^7.18.2",
"@jridgewell/gen-mapping": "^0.3.0",
"jsesc": "^2.5.1"
},
"dependencies": {
"@jridgewell/gen-mapping": {
"version": "0.3.1",
"resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.1.tgz",
"integrity": "sha512-GcHwniMlA2z+WFPWuY8lp3fsza0I8xPFMWL5+n8LYyP6PSvPrXf4+n8stDHZY2DM0zy9sVkRDy1jDI4XGzYVqg==",
"requires": {
"@jridgewell/set-array": "^1.0.0",
"@jridgewell/sourcemap-codec": "^1.4.10",
"@jridgewell/trace-mapping": "^0.3.9"
}
}
}
},
"@babel/helper-compilation-targets": {
"version": "7.18.2",
"resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.18.2.tgz",
"integrity": "sha512-s1jnPotJS9uQnzFtiZVBUxe67CuBa679oWFHpxYYnTpRL/1ffhyX44R9uYiXoa/pLXcY9H2moJta0iaanlk/rQ==",
"requires": {
"@babel/compat-data": "^7.17.10",
"@babel/helper-validator-option": "^7.16.7",
"browserslist": "^4.20.2",
"semver": "^6.3.0"
}
},
"@babel/helper-environment-visitor": {
"version": "7.18.2",
"resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.2.tgz",
"integrity": "sha512-14GQKWkX9oJzPiQQ7/J36FTXcD4kSp8egKjO9nINlSKiHITRA9q/R74qu8S9xlc/b/yjsJItQUeeh3xnGN0voQ=="
},
"@babel/helper-function-name": {
"version": "7.17.9",
"resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.17.9.tgz",
"integrity": "sha512-7cRisGlVtiVqZ0MW0/yFB4atgpGLWEHUVYnb448hZK4x+vih0YO5UoS11XIYtZYqHd0dIPMdUSv8q5K4LdMnIg==",
"requires": {
"@babel/template": "^7.16.7",
"@babel/types": "^7.17.0"
}
},
"@babel/helper-hoist-variables": {
"version": "7.16.7",
"resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.7.tgz",
"integrity": "sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg==",
"requires": {
"@babel/types": "^7.16.7"
}
},
"@babel/helper-module-imports": {
"version": "7.16.7",
"resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz",
"integrity": "sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg==",
"requires": {
"@babel/types": "^7.16.7"
}
},
"@babel/helper-module-transforms": {
"version": "7.18.0",
"resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.18.0.tgz",
"integrity": "sha512-kclUYSUBIjlvnzN2++K9f2qzYKFgjmnmjwL4zlmU5f8ZtzgWe8s0rUPSTGy2HmK4P8T52MQsS+HTQAgZd3dMEA==",
"requires": {
"@babel/helper-environment-visitor": "^7.16.7",
"@babel/helper-module-imports": "^7.16.7",
"@babel/helper-simple-access": "^7.17.7",
"@babel/helper-split-export-declaration": "^7.16.7",
"@babel/helper-validator-identifier": "^7.16.7",
"@babel/template": "^7.16.7",
"@babel/traverse": "^7.18.0",
"@babel/types": "^7.18.0"
}
},
"@babel/helper-simple-access": {
"version": "7.18.2",
"resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.18.2.tgz",
"integrity": "sha512-7LIrjYzndorDY88MycupkpQLKS1AFfsVRm2k/9PtKScSy5tZq0McZTj+DiMRynboZfIqOKvo03pmhTaUgiD6fQ==",
"requires": {
"@babel/types": "^7.18.2"
}
},
"@babel/helper-split-export-declaration": {
"version": "7.16.7",
"resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz",
"integrity": "sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw==",
"requires": {
"@babel/types": "^7.16.7"
}
},
"@babel/helper-validator-identifier": {
"version": "7.16.7",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz",
"integrity": "sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw=="
},
"@babel/helper-validator-option": {
"version": "7.16.7",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.16.7.tgz",
"integrity": "sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ=="
},
"@babel/helpers": {
"version": "7.18.2",
"resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.18.2.tgz",
"integrity": "sha512-j+d+u5xT5utcQSzrh9p+PaJX94h++KN+ng9b9WEJq7pkUPAd61FGqhjuUEdfknb3E/uDBb7ruwEeKkIxNJPIrg==",
"requires": {
"@babel/template": "^7.16.7",
"@babel/traverse": "^7.18.2",
"@babel/types": "^7.18.2"
}
},
"@babel/highlight": {
"version": "7.17.12",
"resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.17.12.tgz",
"integrity": "sha512-7yykMVF3hfZY2jsHZEEgLc+3x4o1O+fYyULu11GynEUQNwB6lua+IIQn1FiJxNucd5UlyJryrwsOh8PL9Sn8Qg==",
"requires": {
"@babel/helper-validator-identifier": "^7.16.7",
"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.5",
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.5.tgz",
"integrity": "sha512-YZWVaglMiplo7v8f1oMQ5ZPQr0vn7HPeZXxXWsxXJRjGVrzUFn9OxFQl1sb5wzfootjA/yChhW84BV+383FSOw=="
},
"@babel/template": {
"version": "7.16.7",
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.16.7.tgz",
"integrity": "sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w==",
"requires": {
"@babel/code-frame": "^7.16.7",
"@babel/parser": "^7.16.7",
"@babel/types": "^7.16.7"
}
},
"@babel/traverse": {
"version": "7.18.5",
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.5.tgz",
"integrity": "sha512-aKXj1KT66sBj0vVzk6rEeAO6Z9aiiQ68wfDgge3nHhA/my6xMM/7HGQUNumKZaoa2qUPQ5whJG9aAifsxUKfLA==",
"requires": {
"@babel/code-frame": "^7.16.7",
"@babel/generator": "^7.18.2",
"@babel/helper-environment-visitor": "^7.18.2",
"@babel/helper-function-name": "^7.17.9",
"@babel/helper-hoist-variables": "^7.16.7",
"@babel/helper-split-export-declaration": "^7.16.7",
"@babel/parser": "^7.18.5",
"@babel/types": "^7.18.4",
"debug": "^4.1.0",
"globals": "^11.1.0"
}
},
"@babel/types": {
"version": "7.18.4",
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.4.tgz",
"integrity": "sha512-ThN1mBcMq5pG/Vm2IcBmPPfyPXbd8S02rS+OBIDENdufvqC7Z/jHPCv9IcP01277aKtDI8g/2XysBN4hA8niiw==",
"requires": {
"@babel/helper-validator-identifier": "^7.16.7",
"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": {
"ajv": {
"version": "6.12.6",
"resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
"integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
"dev": true,
"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.15.0",
"resolved": "https://registry.npmjs.org/globals/-/globals-13.15.0.tgz",
"integrity": "sha512-bpzcOlgDhMG070Av0Vy5Owklpv1I6+j96GhUI7Rh7IzDCKLzboflLrrfqMu8NquDbiR4EOQk7XzJwqVJxicxog==",
"dev": true,
"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==",
"dev": true
},
"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==",
"dev": true
},
"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==",
"dev": true
},
"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==",
"dev": true
}
}
},
"@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==",
"dev": true
},
"@hint/configuration-accessibility": {
"version": "2.0.20",
"resolved": "https://registry.npmjs.org/@hint/configuration-accessibility/-/configuration-accessibility-2.0.20.tgz",
"integrity": "sha512-928ynzvpgKHG19Bj2jIdL0bIl6xQZXUdnfw3jqE5XUDGj5jFv9kRHmXEAcaqhMgbj9EwXGGnU0E4YspHr//HbA==",
"dev": true,
"optional": true,
"requires": {
"@hint/connector-puppeteer": "^2.5.17",
"@hint/formatter-html": "^4.3.10",
"@hint/formatter-summary": "^3.0.32",
"@hint/hint-axe": "^4.4.13"
}
},
"@hint/configuration-development": {
"version": "8.3.7",
"resolved": "https://registry.npmjs.org/@hint/configuration-development/-/configuration-development-8.3.7.tgz",
"integrity": "sha512-It054HDVtsHH6aLp9Ba+Wtxv0nuD3QD6IbUAfRtJdgRu38B5rjQP+rY8ntEykPf2N5yJhuma8r8kWBrUXUovZw==",
"dev": true,
"optional": true,
"requires": {
"@hint/configuration-accessibility": "^2.0.20",
"@hint/configuration-progressive-web-apps": "^7.0.21",
"@hint/connector-local": "^3.2.20",
"@hint/formatter-html": "^4.3.10",
"@hint/formatter-json": "^3.1.29",
"@hint/formatter-summary": "^3.0.32",
"@hint/hint-babel-config": "^2.4.20",
"@hint/hint-button-type": "^3.0.15",
"@hint/hint-compat-api": "^4.4.12",
"@hint/hint-create-element-svg": "^1.3.19",
"@hint/hint-css-prefix-order": "^1.4.19",
"@hint/hint-disown-opener": "^4.0.15",
"@hint/hint-highest-available-document-mode": "^5.0.15",
"@hint/hint-leading-dot-classlist": "^1.0.12",
"@hint/hint-meta-charset-utf-8": "^4.0.15",
"@hint/hint-meta-viewport": "^5.0.15",
"@hint/hint-no-bom": "^4.2.19",
"@hint/hint-no-inline-styles": "^1.0.11",
"@hint/hint-no-protocol-relative-urls": "^3.0.15",
"@hint/hint-scoped-svg-styles": "^1.3.19",
"@hint/hint-sri": "^4.0.15",
"@hint/hint-typescript-config": "^2.5.7",
"@hint/hint-webpack-config": "^2.4.21",
"@hint/parser-babel-config": "^2.1.35",
"@hint/parser-css": "^3.0.32",
"@hint/parser-html": "^3.0.27",
"@hint/parser-javascript": "^3.1.18",
"@hint/parser-jsx": "^1.0.19",
"@hint/parser-less": "^1.0.24",
"@hint/parser-sass": "^1.0.24",
"@hint/parser-typescript": "^1.0.19",
"@hint/parser-typescript-config": "^2.4.22",
"@hint/parser-webpack-config": "^2.1.34"
}
},
"@hint/configuration-progressive-web-apps": {
"version": "7.0.21",
"resolved": "https://registry.npmjs.org/@hint/configuration-progressive-web-apps/-/configuration-progressive-web-apps-7.0.21.tgz",
"integrity": "sha512-Shgg50jkeWu1PDjwqS2Oy9JQrbUyfpw8UxtPlZUho6w0/f+GT8g7573jny/LUe+G5JtO2ksBM8l3Hi7Xnhho6Q==",
"dev": true,
"optional": true,
"requires": {
"@hint/connector-jsdom": "^4.1.20",
"@hint/connector-puppeteer": "^2.5.17",
"@hint/formatter-html": "^4.3.10",
"@hint/formatter-summary": "^3.0.32",
"@hint/hint-apple-touch-icons": "^4.0.15",
"@hint/hint-manifest-app-name": "^2.4.21",
"@hint/hint-manifest-exists": "^2.4.21",
"@hint/hint-manifest-file-extension": "^3.0.16",
"@hint/hint-manifest-is-valid": "^3.4.12",
"@hint/parser-manifest": "^2.3.12"
}
},
"@hint/configuration-web-recommended": {
"version": "8.2.12",
"resolved": "https://registry.npmjs.org/@hint/configuration-web-recommended/-/configuration-web-recommended-8.2.12.tgz",
"integrity": "sha512-vlIxpMMKOSLevratBvAPFjCrxRa+R6ao13z75Tud+jkwPB50I2kDnB+pQqJeCJ0ieDGAb/AAvrxRBpwdGoLZog==",
"dev": true,
"optional": true,
"requires": {
"@hint/configuration-accessibility": "^2.0.20",
"@hint/connector-jsdom": "^4.1.20",
"@hint/connector-local": "^3.2.20",
"@hint/connector-puppeteer": "^2.5.17",
"@hint/formatter-html": "^4.3.10",
"@hint/formatter-json": "^3.1.29",
"@hint/formatter-stylish": "^3.1.29",
"@hint/formatter-summary": "^3.0.32",
"@hint/hint-button-type": "^3.0.15",
"@hint/hint-compat-api": "^4.4.12",
"@hint/hint-content-type": "^4.2.19",
"@hint/hint-create-element-svg": "^1.3.19",
"@hint/hint-css-prefix-order": "^1.4.19",
"@hint/hint-disown-opener": "^4.0.15",
"@hint/hint-highest-available-document-mode": "^5.0.15",
"@hint/hint-html-checker": "^3.3.19",
"@hint/hint-http-cache": "^4.0.15",
"@hint/hint-http-compression": "^5.2.19",
"@hint/hint-image-optimization-cloudinary": "^3.2.19",
"@hint/hint-leading-dot-classlist": "^1.0.12",
"@hint/hint-meta-charset-utf-8": "^4.0.15",
"@hint/hint-meta-viewport": "^5.0.15",
"@hint/hint-no-bom": "^4.2.19",
"@hint/hint-no-disallowed-headers": "^3.1.14",
"@hint/hint-no-friendly-error-pages": "^3.3.19",
"@hint/hint-no-html-only-headers": "^3.0.15",
"@hint/hint-no-http-redirects": "^3.0.15",
"@hint/hint-no-inline-styles": "^1.0.11",
"@hint/hint-no-protocol-relative-urls": "^3.0.15",
"@hint/hint-no-vulnerable-javascript-libraries": "^2.12.14",
"@hint/hint-scoped-svg-styles": "^1.3.19",
"@hint/hint-sri": "^4.0.15",
"@hint/hint-ssllabs": "^2.4.19",
"@hint/hint-strict-transport-security": "^3.0.15",
"@hint/hint-stylesheet-limits": "^3.3.19",
"@hint/hint-validate-set-cookie-header": "^3.0.15",
"@hint/hint-x-content-type-options": "^4.0.15",
"@hint/parser-css": "^3.0.32",
"@hint/parser-html": "^3.0.27",
"@hint/parser-javascript": "^3.1.18"
}
},
"@hint/connector-jsdom": {
"version": "4.1.20",
"resolved": "https://registry.npmjs.org/@hint/connector-jsdom/-/connector-jsdom-4.1.20.tgz",
"integrity": "sha512-+VrOoYP14CIldaDRCZTX7WUPaoDnzYCH44dQ2o4PVMiHHMYs2c/7V3l6sXpIJuQBJLQCqiVuCn/kuLfzHyn0tA==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils": "^7.0.17",
"@hint/utils-connector-tools": "^4.0.34",
"@hint/utils-debug": "^1.0.10",
"@hint/utils-dom": "^2.1.13",
"@hint/utils-fs": "^1.0.14",
"@hint/utils-network": "^1.0.19",
"@hint/utils-types": "^1.1.7",
"canvas": "^2.9.1",
"jsdom": "^19.0.0",
"mutationobserver-shim": "^0.3.7"
}
},
"@hint/connector-local": {
"version": "3.2.20",
"resolved": "https://registry.npmjs.org/@hint/connector-local/-/connector-local-3.2.20.tgz",
"integrity": "sha512-0FJx9texFV+S/BQS1NHocGKva+Za7OLn1cKfGGA1fXxGIvvOKnP7MMbungit0ciDeVoxDTcPT9cMbXXo2TJAuQ==",
"dev": true,
"requires": {
"@hint/utils": "^7.0.17",
"@hint/utils-dom": "^2.1.13",
"@hint/utils-fs": "^1.0.14",
"@hint/utils-i18n": "^1.0.12",
"@hint/utils-network": "^1.0.19",
"chokidar": "^3.5.3",
"globby": "^11.0.4",
"jsdom": "^19.0.0"
}
},
"@hint/connector-puppeteer": {
"version": "2.5.17",
"resolved": "https://registry.npmjs.org/@hint/connector-puppeteer/-/connector-puppeteer-2.5.17.tgz",
"integrity": "sha512-ycXrf3aAAr8pA7/Wpa+qr37o5qw5cjNZMA70O+HQYN2OmfR430IGlpRdBTPZKBcdnkSZUBZ034O2Ht+zo+qhAA==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils": "^7.0.17",
"@hint/utils-connector-tools": "^4.0.34",
"@hint/utils-debug": "^1.0.10",
"@hint/utils-dom": "^2.1.13",
"@hint/utils-fs": "^1.0.14",
"@hint/utils-network": "^1.0.19",
"@hint/utils-types": "^1.1.7",
"is-ci": "^3.0.1",
"lockfile": "^1.0.4",
"puppeteer-core": "^13.0.1"
}
},
"@hint/formatter-html": {
"version": "4.3.10",
"resolved": "https://registry.npmjs.org/@hint/formatter-html/-/formatter-html-4.3.10.tgz",
"integrity": "sha512-FCrApYc2zBCpxgQuZGzegoapd7NijBLZCdarp7NPzhcC8KpJrz/Y2RohPvOrWAojoBAQmiFDyWB/C9X40zAjbQ==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils": "^7.0.17",
"@hint/utils-debug": "^1.0.10",
"@hint/utils-fs": "^1.0.14",
"@hint/utils-i18n": "^1.0.12",
"@hint/utils-types": "^1.1.7",
"ejs": "^3.1.7",
"fs-extra": "^10.1.0",
"lodash": "^4.17.21"
}
},
"@hint/formatter-json": {
"version": "3.1.29",
"resolved": "https://registry.npmjs.org/@hint/formatter-json/-/formatter-json-3.1.29.tgz",
"integrity": "sha512-CD2chtuxdg1RzTXmXC1QFQBzqYHZuv6+r9+MOoXEkvlY3m4iJ8FBSikXYjs0xC67e+WDpHQBFPv1AkFVlMaYFg==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils": "^7.0.17",
"@hint/utils-debug": "^1.0.10",
"@hint/utils-fs": "^1.0.14",
"@hint/utils-i18n": "^1.0.12",
"@hint/utils-types": "^1.1.7",
"lodash": "^4.17.21"
}
},
"@hint/formatter-stylish": {
"version": "3.1.29",
"resolved": "https://registry.npmjs.org/@hint/formatter-stylish/-/formatter-stylish-3.1.29.tgz",
"integrity": "sha512-KA+obK2JqS0QY6vizSk+IZdH2Dn2GPgjICI/3kmtcFfh4h06tS1cVL8dOvhrlKZGR3ILApetAF0EgwChn0Otzg==",
"dev": true,
"requires": {
"@hint/utils": "^7.0.17",
"@hint/utils-debug": "^1.0.10",
"@hint/utils-fs": "^1.0.14",
"@hint/utils-i18n": "^1.0.12",
"@hint/utils-string": "^1.0.12",
"@hint/utils-types": "^1.1.7",
"chalk": "^4.1.2",
"lodash": "^4.17.21",
"strip-ansi": "^6.0.0",
"text-table": "^0.2.0"
}
},
"@hint/formatter-summary": {
"version": "3.0.32",
"resolved": "https://registry.npmjs.org/@hint/formatter-summary/-/formatter-summary-3.0.32.tgz",
"integrity": "sha512-UEjxBeMsWT9/TqfG3PSdBmNk3X7xzqsMf7rP43vQAPHWlzAs3R6P5rSDZCxFoMEL2FFl0QZxarh+cbUvZ8VD7g==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils": "^7.0.17",
"@hint/utils-debug": "^1.0.10",
"@hint/utils-fs": "^1.0.14",
"@hint/utils-i18n": "^1.0.12",
"@hint/utils-types": "^1.1.7",
"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.15",
"resolved": "https://registry.npmjs.org/@hint/hint-apple-touch-icons/-/hint-apple-touch-icons-4.0.15.tgz",
"integrity": "sha512-WtPRB3u9cnvIF7uEADKldgATho6dug6gWfp8JWcXCDVzmG3SrSuORVWo6pzn8qoh6tLfaNIOatyeO1BQwsywjw==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils-debug": "^1.0.10",
"@hint/utils-i18n": "^1.0.12",
"@hint/utils-network": "^1.0.19",
"@hint/utils-string": "^1.0.12",
"@hint/utils-types": "^1.1.7",
"image-size": "^1.0.1"
}
},
"@hint/hint-axe": {
"version": "4.4.13",
"resolved": "https://registry.npmjs.org/@hint/hint-axe/-/hint-axe-4.4.13.tgz",
"integrity": "sha512-3EDRQfiFU58RGEpdZ1GUPeByq/r5No1iAsbddL2SDOFNmogbMmXpH+2j3BC+MNAMX51wORBfXOJRlPHPT3Ne0A==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils-i18n": "^1.0.12",
"@hint/utils-types": "^1.1.7",
"axe-core": "^4.4.1"
}
},
"@hint/hint-babel-config": {
"version": "2.4.20",
"resolved": "https://registry.npmjs.org/@hint/hint-babel-config/-/hint-babel-config-2.4.20.tgz",
"integrity": "sha512-NXqxhy6J0yJBe7nEKLSgzfFbjY+vgyhI5lZ2OAR/tzS8eTjf/MYj2X5acFhZUWqIp/VmhCMuscJIASWQiI/O2g==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils-debug": "^1.0.10",
"@hint/utils-i18n": "^1.0.12",
"@hint/utils-types": "^1.1.7"
}
},
"@hint/hint-button-type": {
"version": "3.0.15",
"resolved": "https://registry.npmjs.org/@hint/hint-button-type/-/hint-button-type-3.0.15.tgz",
"integrity": "sha512-dwN2bx1UPYJDBNX2wpzvlYM1z80GbaB/BOHE86ADVkwdBhDdYiQ1s9nJ2NYQFSl++QjSI/BALaVK8Podpx9Xbg==",
"dev": true,
"requires": {
"@hint/utils-debug": "^1.0.10",
"@hint/utils-i18n": "^1.0.12",
"@hint/utils-types": "^1.1.7"
}
},
"@hint/hint-compat-api": {
"version": "4.4.12",
"resolved": "https://registry.npmjs.org/@hint/hint-compat-api/-/hint-compat-api-4.4.12.tgz",
"integrity": "sha512-VLd67TBY7ddsiMuC4UxVoyhbACE0X3yDZCmZs8AhiSFJE7+mloVFM5OHYhTzcdTQ4m8zAl1qE6zci6CfkdHiqQ==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils-compat-data": "^1.1.9",
"@hint/utils-css": "^1.0.12",
"@hint/utils-fs": "^1.0.14",
"@hint/utils-i18n": "^1.0.12",
"@hint/utils-types": "^1.1.7",
"lodash": "^4.17.21"
}
},
"@hint/hint-content-type": {
"version": "4.2.19",
"resolved": "https://registry.npmjs.org/@hint/hint-content-type/-/hint-content-type-4.2.19.tgz",
"integrity": "sha512-a8+BnNEwmQKH4ipf78fhVECmUB+YQ14BoN2EwlqRFKSKTfv+8UWnZPz/iltUk06rfUfGg0k+NslTk6nayOULFA==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils": "^7.0.17",
"@hint/utils-debug": "^1.0.10",
"@hint/utils-i18n": "^1.0.12",
"@hint/utils-network": "^1.0.19",
"@hint/utils-string": "^1.0.12",
"@hint/utils-types": "^1.1.7",
"content-type": "^1.0.4"
}
},
"@hint/hint-create-element-svg": {
"version": "1.3.19",
"resolved": "https://registry.npmjs.org/@hint/hint-create-element-svg/-/hint-create-element-svg-1.3.19.tgz",
"integrity": "sha512-o6qfMhgD7LPqD2RE+QKPY5jnpoWreU5WcZeTpQkWg9UfLlWxg1tvuvtsN4hlh2fzf4WWpeR/dwjYg5/drpqG+Q==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils-debug": "^1.0.10",
"@hint/utils-fs": "^1.0.14",
"@hint/utils-i18n": "^1.0.12",
"@hint/utils-types": "^1.1.7"
}
},
"@hint/hint-css-prefix-order": {
"version": "1.4.19",
"resolved": "https://registry.npmjs.org/@hint/hint-css-prefix-order/-/hint-css-prefix-order-1.4.19.tgz",
"integrity": "sha512-az6pQtDBPjkpI6OKC/jE5h0iU4hB2vGHBRUJXvkx+WulRz7I53tdS4hw2EAbRKtgOktAIrgrEtAzTpykMlR1Hg==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils-css": "^1.0.12",
"@hint/utils-debug": "^1.0.10",
"@hint/utils-fs": "^1.0.14",
"@hint/utils-i18n": "^1.0.12",
"@hint/utils-types": "^1.1.7",
"postcss": "^8.4.13"
},
"dependencies": {
"postcss": {
"version": "8.4.14",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.14.tgz",
"integrity": "sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==",
"dev": true,
"optional": true,
"requires": {
"nanoid": "^3.3.4",
"picocolors": "^1.0.0",
"source-map-js": "^1.0.2"
}
}
}
},
"@hint/hint-disown-opener": {
"version": "4.0.15",
"resolved": "https://registry.npmjs.org/@hint/hint-disown-opener/-/hint-disown-opener-4.0.15.tgz",
"integrity": "sha512-ODBpHd3Tc19ctY6L4/lQ45qZ+2VmaYAQhhfSPl1y6E29hRIGG/gBF1AXzWH+nb+dAggzaR0z5MxnJkbyLPX78Q==",
"dev": true,
"requires": {
"@hint/utils-compat-data": "^1.1.9",
"@hint/utils-debug": "^1.0.10",
"@hint/utils-i18n": "^1.0.12",
"@hint/utils-network": "^1.0.19",
"@hint/utils-string": "^1.0.12",
"@hint/utils-types": "^1.1.7"
}
},
"@hint/hint-highest-available-document-mode": {
"version": "5.0.15",
"resolved": "https://registry.npmjs.org/@hint/hint-highest-available-document-mode/-/hint-highest-available-document-mode-5.0.15.tgz",
"integrity": "sha512-Xrs5yPQ92Akp2z8q8DFRxigI6nSG6CV9v2bvPvO3bbg9wK/rjNcl3t5jU+uFHgj2HPedhX0QK1EQULhnqZZ2qQ==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils-i18n": "^1.0.12",
"@hint/utils-network": "^1.0.19",
"@hint/utils-string": "^1.0.12",
"@hint/utils-types": "^1.1.7"
}
},
"@hint/hint-html-checker": {
"version": "3.3.19",
"resolved": "https://registry.npmjs.org/@hint/hint-html-checker/-/hint-html-checker-3.3.19.tgz",
"integrity": "sha512-wCq722TDYZ7+HzJJZ4OtJ58ncMXFMx3YN5z4KMPVJLaZ+oQ1XgLo2Uzqk82g/KdkZz+9JphfvfbIQkBLRc3Kxw==",
"dev": true,
"requires": {
"@hint/utils": "^7.0.17",
"@hint/utils-debug": "^1.0.10",
"@hint/utils-i18n": "^1.0.12",
"@hint/utils-network": "^1.0.19",
"@hint/utils-types": "^1.1.7",
"lodash": "^4.17.21"
}
},
"@hint/hint-http-cache": {
"version": "4.0.15",
"resolved": "https://registry.npmjs.org/@hint/hint-http-cache/-/hint-http-cache-4.0.15.tgz",
"integrity": "sha512-yyJJvxJCD8VvDMcjrvBWoPEvqMA/o00GvBKEae16IfW3BVsYbaWWwxImj/6qfyRNOT1osQJWFA0FrcW5CrSLVg==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils-debug": "^1.0.10",
"@hint/utils-i18n": "^1.0.12",
"@hint/utils-network": "^1.0.19",
"@hint/utils-types": "^1.1.7"
}
},
"@hint/hint-http-compression": {
"version": "5.2.19",
"resolved": "https://registry.npmjs.org/@hint/hint-http-compression/-/hint-http-compression-5.2.19.tgz",
"integrity": "sha512-I1X30Ka8R3yEHydaOkoYZbi/LT9uoyrZaCIzPgpVEtdYU8I9c9UZJnlzaB9D0hwDOIm8UUDDvjLcrQMFwS6Caw==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils": "^7.0.17",
"@hint/utils-i18n": "^1.0.12",
"@hint/utils-network": "^1.0.19",
"@hint/utils-string": "^1.0.12",
"@hint/utils-types": "^1.1.7"
}
},
"@hint/hint-image-optimization-cloudinary": {
"version": "3.2.19",
"resolved": "https://registry.npmjs.org/@hint/hint-image-optimization-cloudinary/-/hint-image-optimization-cloudinary-3.2.19.tgz",
"integrity": "sha512-mU6xXPkZ6XyNIIpQiNxzfyo7JLzCF8wO8n3e6STI0GGv0txM+ceATzXMItxp+WHUZ3yBjshZWAvOJWrdkaPkAQ==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils": "^7.0.17",
"@hint/utils-i18n": "^1.0.12",
"@hint/utils-string": "^1.0.12",
"@hint/utils-types": "^1.1.7",
"cloudinary": "^1.28.1",
"fs-extra": "^10.1.0",
"image-size": "^1.0.1"
}
},
"@hint/hint-leading-dot-classlist": {
"version": "1.0.12",
"resolved": "https://registry.npmjs.org/@hint/hint-leading-dot-classlist/-/hint-leading-dot-classlist-1.0.12.tgz",
"integrity": "sha512-liYi4ZmxBheUKiYEexrRNc52DlcchuG1b2IXOm/tUN1EXTkkeKnJqhXc6o94sCvTPw7rWQRmON9j9d78L7+iJg==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils-debug": "^1.0.10",
"@hint/utils-fs": "^1.0.14",
"@hint/utils-i18n": "^1.0.12",
"@hint/utils-types": "^1.1.7"
}
},
"@hint/hint-manifest-app-name": {
"version": "2.4.21",
"resolved": "https://registry.npmjs.org/@hint/hint-manifest-app-name/-/hint-manifest-app-name-2.4.21.tgz",
"integrity": "sha512-8fFHB3anPvFxRXBYOVmqovYGLioCxjsz3nkvsb7DtQZwfm47EAkx2MYZUmcTEy+wF1+D6wNPi7DhpXKedfBpNQ==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils-i18n": "^1.0.12",
"@hint/utils-types": "^1.1.7",
"punycode": "^2.1.1"
}
},
"@hint/hint-manifest-exists": {
"version": "2.4.21",
"resolved": "https://registry.npmjs.org/@hint/hint-manifest-exists/-/hint-manifest-exists-2.4.21.tgz",
"integrity": "sha512-pcHdy68akyKSF7GzZ87eOQQ2aQGfj5Z6BkwBLnRVgTJ+b4v4+myw0f2yrzfeYbZOCYGejrYz1iKkNChDFDXzlQ==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils-i18n": "^1.0.12",
"@hint/utils-string": "^1.0.12",
"@hint/utils-types": "^1.1.7"
}
},
"@hint/hint-manifest-file-extension": {
"version": "3.0.16",
"resolved": "https://registry.npmjs.org/@hint/hint-manifest-file-extension/-/hint-manifest-file-extension-3.0.16.tgz",
"integrity": "sha512-kb1lmXb3inuN81usFteCpNYMmhDhh8/uoggvNprTRi6F14AI8BfkNi2g0KQbzsVm/t2StLUhP/QHmFPCyJfRFg==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils-fs": "^1.0.14",
"@hint/utils-i18n": "^1.0.12",
"@hint/utils-string": "^1.0.12",
"@hint/utils-types": "^1.1.7"
}
},
"@hint/hint-manifest-is-valid": {
"version": "3.4.12",
"resolved": "https://registry.npmjs.org/@hint/hint-manifest-is-valid/-/hint-manifest-is-valid-3.4.12.tgz",
"integrity": "sha512-kZ9FZgslqzCglem2RrLJxteBEER08zY6ARJZpHhgY7H7CRel5f41bbVaSvzueL2YyfDSrQY+SzunqcYb4jhAYw==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils-compat-data": "^1.1.9",
"@hint/utils-i18n": "^1.0.12",
"@hint/utils-string": "^1.0.12",
"@hint/utils-types": "^1.1.7",
"bcp47": "^1.1.2",
"color-string": "^1.9.0"
}
},
"@hint/hint-meta-charset-utf-8": {
"version": "4.0.15",
"resolved": "https://registry.npmjs.org/@hint/hint-meta-charset-utf-8/-/hint-meta-charset-utf-8-4.0.15.tgz",
"integrity": "sha512-wd3f9JhNkD6p0XBaDUqZvuE3dren2FzlVTet8ewoEz+yj6bFmSaYbcLOCZgpKs6MPfV9izQgqu104uzpNXstnw==",
"dev": true,
"requires": {
"@hint/utils-i18n": "^1.0.12",
"@hint/utils-string": "^1.0.12",
"@hint/utils-types": "^1.1.7"
}
},
"@hint/hint-meta-viewport": {
"version": "5.0.15",
"resolved": "https://registry.npmjs.org/@hint/hint-meta-viewport/-/hint-meta-viewport-5.0.15.tgz",
"integrity": "sha512-G8OOY/1Y1FJaC/It5Mxz7CqsE5IOEEzoiSKGRJ3jq9DeFd6i+yUO5CtIPCdO/pR1+GKA5VBYBF2iwylwiWC+lw==",
"dev": true,
"requires": {
"@hint/utils-i18n": "^1.0.12",
"@hint/utils-string": "^1.0.12",
"@hint/utils-types": "^1.1.7",
"metaviewport-parser": "^0.2.0"
}
},
"@hint/hint-no-bom": {
"version": "4.2.19",
"resolved": "https://registry.npmjs.org/@hint/hint-no-bom/-/hint-no-bom-4.2.19.tgz",
"integrity": "sha512-lvkw3omVxloS1RFPsFZjN2TF63EjMbI6M5wUefvDqsjsSiANfziklLFZjJLf3o5bhOrbuhyxoDh3m7JClY1Ohw==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils": "^7.0.17",
"@hint/utils-debug": "^1.0.10",
"@hint/utils-i18n": "^1.0.12",
"@hint/utils-network": "^1.0.19",
"@hint/utils-types": "^1.1.7"
}
},
"@hint/hint-no-disallowed-headers": {
"version": "3.1.14",
"resolved": "https://registry.npmjs.org/@hint/hint-no-disallowed-headers/-/hint-no-disallowed-headers-3.1.14.tgz",
"integrity": "sha512-XxR9ByJye2km0xR2LRkSlzyuAfQCcM+Qkw3j1dpuEYRLPEbhuFfxYQeb1c/o9FUu/vtbsBN6V9PJOfBEeivxNg==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils-debug": "^1.0.10",
"@hint/utils-i18n": "^1.0.12",
"@hint/utils-network": "^1.0.19",
"@hint/utils-string": "^1.0.12",
"@hint/utils-types": "^1.1.7"
}
},
"@hint/hint-no-friendly-error-pages": {
"version": "3.3.19",
"resolved": "https://registry.npmjs.org/@hint/hint-no-friendly-error-pages/-/hint-no-friendly-error-pages-3.3.19.tgz",
"integrity": "sha512-zZQ2Qn0rzYXKgItORLwJAMkO3TsoLd5JGuZ6Grm4Si5CD9TGbceEmmmWiSjxlmjaHj5NWq2oJtsr1B3tyAeTsw==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils-debug": "^1.0.10",
"@hint/utils-i18n": "^1.0.12",
"@hint/utils-network": "^1.0.19",
"@hint/utils-types": "^1.1.7"
}
},
"@hint/hint-no-html-only-headers": {
"version": "3.0.15",
"resolved": "https://registry.npmjs.org/@hint/hint-no-html-only-headers/-/hint-no-html-only-headers-3.0.15.tgz",
"integrity": "sha512-n5l0Ry5oQojLMuRTtilgB/2aHb2MvLj7dYpnJwLdGvUawg16J3/JX7MqkZTNMiosdPya2WAXcOttHY+VlEDCkQ==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils-debug": "^1.0.10",
"@hint/utils-i18n": "^1.0.12",
"@hint/utils-network": "^1.0.19",
"@hint/utils-string": "^1.0.12",
"@hint/utils-types": "^1.1.7"
}
},
"@hint/hint-no-http-redirects": {
"version": "3.0.15",
"resolved": "https://registry.npmjs.org/@hint/hint-no-http-redirects/-/hint-no-http-redirects-3.0.15.tgz",
"integrity": "sha512-HvBxo9vKUXNVwaPom2qcpgz/rpo5OfBh2dm5BF4f81noMLQPeaYjE2vBSs7xV+KI/MwMTVR/yoC7uSEPc2kilA==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils-i18n": "^1.0.12",
"@hint/utils-types": "^1.1.7"
}
},
"@hint/hint-no-inline-styles": {
"version": "1.0.11",
"resolved": "https://registry.npmjs.org/@hint/hint-no-inline-styles/-/hint-no-inline-styles-1.0.11.tgz",
"integrity": "sha512-dDcvSRZ4/V8g1E9o8gCZLCsVsIopiaTifXQS0jFb73tkmha2f9peYy1y0BCNMVXZIeMLYNOG9us883VM4ENKzw==",
"dev": true,
"requires": {
"@hint/utils-debug": "^1.0.10",
"@hint/utils-i18n": "^1.0.12",
"@hint/utils-types": "^1.1.7"
}
},
"@hint/hint-no-protocol-relative-urls": {
"version": "3.0.15",
"resolved": "https://registry.npmjs.org/@hint/hint-no-protocol-relative-urls/-/hint-no-protocol-relative-urls-3.0.15.tgz",
"integrity": "sha512-534rkoiDZxKG0YTbLL5V//yVp5yIdCxl4SjX6fBg3xo2D0sP5zepP7iO2eHK2Udl1S5T95zsqI0OSJSlkd79iA==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils-debug": "^1.0.10",
"@hint/utils-i18n": "^1.0.12",
"@hint/utils-network": "^1.0.19",
"@hint/utils-string": "^1.0.12",
"@hint/utils-types": "^1.1.7"
}
},
"@hint/hint-no-vulnerable-javascript-libraries": {
"version": "2.12.14",
"resolved": "https://registry.npmjs.org/@hint/hint-no-vulnerable-javascript-libraries/-/hint-no-vulnerable-javascript-libraries-2.12.14.tgz",
"integrity": "sha512-bfeXXsEz2hplfWOJA8Oaq96abCmjeBME76ZmIuNFfbZ8ZRRE0bQkcmcwv0MewC8yDdmv8WgoXrjuu7nI3OITIw==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils": "^7.0.17",
"@hint/utils-debug": "^1.0.10",
"@hint/utils-fs": "^1.0.14",
"@hint/utils-i18n": "^1.0.12",
"@hint/utils-network": "^1.0.19",
"@hint/utils-types": "^1.1.7",
"js-library-detector": "^6.4.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==",
"dev": true,
"optional": true,
"requires": {
"lru-cache": "^6.0.0"
}
}
}
},
"@hint/hint-scoped-svg-styles": {
"version": "1.3.19",
"resolved": "https://registry.npmjs.org/@hint/hint-scoped-svg-styles/-/hint-scoped-svg-styles-1.3.19.tgz",
"integrity": "sha512-rAREbkRaNgzy+pVFQJ/B0x+vegChcac3lcfwikBTMSm6Bql0ivPBIbiDTt/fcXAKeYqHjPXr3lNB3XwTkjGUKQ==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils-css": "^1.0.12",
"@hint/utils-debug": "^1.0.10",
"@hint/utils-fs": "^1.0.14",
"@hint/utils-i18n": "^1.0.12",
"@hint/utils-types": "^1.1.7"
}
},
"@hint/hint-sri": {
"version": "4.0.15",
"resolved": "https://registry.npmjs.org/@hint/hint-sri/-/hint-sri-4.0.15.tgz",
"integrity": "sha512-clwAB5oKjL2kdFbPbBt0rq375U94Nn1fbwRs76voRu5HfbvZADU9SFoWQaasAA+lorh5vHth9h/k95fdbXIfQw==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils-debug": "^1.0.10",
"@hint/utils-fs": "^1.0.14",
"@hint/utils-i18n": "^1.0.12",
"@hint/utils-network": "^1.0.19",
"@hint/utils-string": "^1.0.12",
"@hint/utils-types": "^1.1.7"
}
},
"@hint/hint-ssllabs": {
"version": "2.4.19",
"resolved": "https://registry.npmjs.org/@hint/hint-ssllabs/-/hint-ssllabs-2.4.19.tgz",
"integrity": "sha512-9ftEFh/NPt/oFgxAKqs9Gee2UWZjNeTQ0gyvm9XVUoGhYs3b2CLf5aCTe4HuaVSE6pPOtMcGSiCBi24yP0dSfg==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils": "^7.0.17",
"@hint/utils-debug": "^1.0.10",
"@hint/utils-i18n": "^1.0.12",
"@hint/utils-network": "^1.0.19",
"@hint/utils-types": "^1.1.7",
"got": "^11.8.3"