-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage-lock.json
10581 lines (10581 loc) · 416 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": "repo-template",
"version": "1.0.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"@babel/code-frame": {
"version": "7.10.4",
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz",
"integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==",
"dev": true,
"requires": {
"@babel/highlight": "^7.10.4"
}
},
"@babel/core": {
"version": "7.12.10",
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.12.10.tgz",
"integrity": "sha512-eTAlQKq65zHfkHZV0sIVODCPGVgoo1HdBlbSLi9CqOzuZanMv2ihzY+4paiKr1mH+XmYESMAmJ/dpZ68eN6d8w==",
"dev": true,
"requires": {
"@babel/code-frame": "^7.10.4",
"@babel/generator": "^7.12.10",
"@babel/helper-module-transforms": "^7.12.1",
"@babel/helpers": "^7.12.5",
"@babel/parser": "^7.12.10",
"@babel/template": "^7.12.7",
"@babel/traverse": "^7.12.10",
"@babel/types": "^7.12.10",
"convert-source-map": "^1.7.0",
"debug": "^4.1.0",
"gensync": "^1.0.0-beta.1",
"json5": "^2.1.2",
"lodash": "^4.17.19",
"semver": "^5.4.1",
"source-map": "^0.5.0"
},
"dependencies": {
"@babel/generator": {
"version": "7.12.11",
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.11.tgz",
"integrity": "sha512-Ggg6WPOJtSi8yYQvLVjG8F/TlpWDlKx0OpS4Kt+xMQPs5OaGYWy+v1A+1TvxI6sAMGZpKWWoAQ1DaeQbImlItA==",
"dev": true,
"requires": {
"@babel/types": "^7.12.11",
"jsesc": "^2.5.1",
"source-map": "^0.5.0"
}
},
"@babel/helper-validator-identifier": {
"version": "7.12.11",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz",
"integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==",
"dev": true
},
"@babel/parser": {
"version": "7.12.11",
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.11.tgz",
"integrity": "sha512-N3UxG+uuF4CMYoNj8AhnbAcJF0PiuJ9KHuy1lQmkYsxTer/MAH9UBNHsBoAX/4s6NvlDD047No8mYVGGzLL4hg==",
"dev": true
},
"@babel/template": {
"version": "7.12.7",
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.12.7.tgz",
"integrity": "sha512-GkDzmHS6GV7ZeXfJZ0tLRBhZcMcY0/Lnb+eEbXDBfCAcZCjrZKe6p3J4we/D24O9Y8enxWAg1cWwof59yLh2ow==",
"dev": true,
"requires": {
"@babel/code-frame": "^7.10.4",
"@babel/parser": "^7.12.7",
"@babel/types": "^7.12.7"
}
},
"@babel/traverse": {
"version": "7.12.10",
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.10.tgz",
"integrity": "sha512-6aEtf0IeRgbYWzta29lePeYSk+YAFIC3kyqESeft8o5CkFlYIMX+EQDDWEiAQ9LHOA3d0oHdgrSsID/CKqXJlg==",
"dev": true,
"requires": {
"@babel/code-frame": "^7.10.4",
"@babel/generator": "^7.12.10",
"@babel/helper-function-name": "^7.10.4",
"@babel/helper-split-export-declaration": "^7.11.0",
"@babel/parser": "^7.12.10",
"@babel/types": "^7.12.10",
"debug": "^4.1.0",
"globals": "^11.1.0",
"lodash": "^4.17.19"
}
},
"@babel/types": {
"version": "7.12.11",
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.11.tgz",
"integrity": "sha512-ukA9SQtKThINm++CX1CwmliMrE54J6nIYB5XTwL5f/CLFW9owfls+YSU8tVW15RQ2w+a3fSbPjC6HdQNtWZkiA==",
"dev": true,
"requires": {
"@babel/helper-validator-identifier": "^7.12.11",
"lodash": "^4.17.19",
"to-fast-properties": "^2.0.0"
}
},
"semver": {
"version": "5.7.1",
"resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
"integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==",
"dev": true
},
"source-map": {
"version": "0.5.7",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
"integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=",
"dev": true
}
}
},
"@babel/generator": {
"version": "7.11.0",
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.11.0.tgz",
"integrity": "sha512-fEm3Uzw7Mc9Xi//qU20cBKatTfs2aOtKqmvy/Vm7RkJEGFQ4xc9myCfbXxqK//ZS8MR/ciOHw6meGASJuKmDfQ==",
"dev": true,
"requires": {
"@babel/types": "^7.11.0",
"jsesc": "^2.5.1",
"source-map": "^0.5.0"
},
"dependencies": {
"source-map": {
"version": "0.5.7",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
"integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=",
"dev": true
}
}
},
"@babel/helper-function-name": {
"version": "7.10.4",
"resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz",
"integrity": "sha512-YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ==",
"dev": true,
"requires": {
"@babel/helper-get-function-arity": "^7.10.4",
"@babel/template": "^7.10.4",
"@babel/types": "^7.10.4"
}
},
"@babel/helper-get-function-arity": {
"version": "7.10.4",
"resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz",
"integrity": "sha512-EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A==",
"dev": true,
"requires": {
"@babel/types": "^7.10.4"
}
},
"@babel/helper-member-expression-to-functions": {
"version": "7.12.7",
"resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.7.tgz",
"integrity": "sha512-DCsuPyeWxeHgh1Dus7APn7iza42i/qXqiFPWyBDdOFtvS581JQePsc1F/nD+fHrcswhLlRc2UpYS1NwERxZhHw==",
"dev": true,
"requires": {
"@babel/types": "^7.12.7"
},
"dependencies": {
"@babel/helper-validator-identifier": {
"version": "7.12.11",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz",
"integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==",
"dev": true
},
"@babel/types": {
"version": "7.12.11",
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.11.tgz",
"integrity": "sha512-ukA9SQtKThINm++CX1CwmliMrE54J6nIYB5XTwL5f/CLFW9owfls+YSU8tVW15RQ2w+a3fSbPjC6HdQNtWZkiA==",
"dev": true,
"requires": {
"@babel/helper-validator-identifier": "^7.12.11",
"lodash": "^4.17.19",
"to-fast-properties": "^2.0.0"
}
}
}
},
"@babel/helper-module-imports": {
"version": "7.12.5",
"resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.5.tgz",
"integrity": "sha512-SR713Ogqg6++uexFRORf/+nPXMmWIn80TALu0uaFb+iQIUoR7bOC7zBWyzBs5b3tBBJXuyD0cRu1F15GyzjOWA==",
"dev": true,
"requires": {
"@babel/types": "^7.12.5"
},
"dependencies": {
"@babel/helper-validator-identifier": {
"version": "7.12.11",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz",
"integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==",
"dev": true
},
"@babel/types": {
"version": "7.12.11",
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.11.tgz",
"integrity": "sha512-ukA9SQtKThINm++CX1CwmliMrE54J6nIYB5XTwL5f/CLFW9owfls+YSU8tVW15RQ2w+a3fSbPjC6HdQNtWZkiA==",
"dev": true,
"requires": {
"@babel/helper-validator-identifier": "^7.12.11",
"lodash": "^4.17.19",
"to-fast-properties": "^2.0.0"
}
}
}
},
"@babel/helper-module-transforms": {
"version": "7.12.1",
"resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.12.1.tgz",
"integrity": "sha512-QQzehgFAZ2bbISiCpmVGfiGux8YVFXQ0abBic2Envhej22DVXV9nCFaS5hIQbkyo1AdGb+gNME2TSh3hYJVV/w==",
"dev": true,
"requires": {
"@babel/helper-module-imports": "^7.12.1",
"@babel/helper-replace-supers": "^7.12.1",
"@babel/helper-simple-access": "^7.12.1",
"@babel/helper-split-export-declaration": "^7.11.0",
"@babel/helper-validator-identifier": "^7.10.4",
"@babel/template": "^7.10.4",
"@babel/traverse": "^7.12.1",
"@babel/types": "^7.12.1",
"lodash": "^4.17.19"
},
"dependencies": {
"@babel/generator": {
"version": "7.12.11",
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.11.tgz",
"integrity": "sha512-Ggg6WPOJtSi8yYQvLVjG8F/TlpWDlKx0OpS4Kt+xMQPs5OaGYWy+v1A+1TvxI6sAMGZpKWWoAQ1DaeQbImlItA==",
"dev": true,
"requires": {
"@babel/types": "^7.12.11",
"jsesc": "^2.5.1",
"source-map": "^0.5.0"
}
},
"@babel/parser": {
"version": "7.12.11",
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.11.tgz",
"integrity": "sha512-N3UxG+uuF4CMYoNj8AhnbAcJF0PiuJ9KHuy1lQmkYsxTer/MAH9UBNHsBoAX/4s6NvlDD047No8mYVGGzLL4hg==",
"dev": true
},
"@babel/traverse": {
"version": "7.12.10",
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.10.tgz",
"integrity": "sha512-6aEtf0IeRgbYWzta29lePeYSk+YAFIC3kyqESeft8o5CkFlYIMX+EQDDWEiAQ9LHOA3d0oHdgrSsID/CKqXJlg==",
"dev": true,
"requires": {
"@babel/code-frame": "^7.10.4",
"@babel/generator": "^7.12.10",
"@babel/helper-function-name": "^7.10.4",
"@babel/helper-split-export-declaration": "^7.11.0",
"@babel/parser": "^7.12.10",
"@babel/types": "^7.12.10",
"debug": "^4.1.0",
"globals": "^11.1.0",
"lodash": "^4.17.19"
}
},
"@babel/types": {
"version": "7.12.11",
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.11.tgz",
"integrity": "sha512-ukA9SQtKThINm++CX1CwmliMrE54J6nIYB5XTwL5f/CLFW9owfls+YSU8tVW15RQ2w+a3fSbPjC6HdQNtWZkiA==",
"dev": true,
"requires": {
"@babel/helper-validator-identifier": "^7.12.11",
"lodash": "^4.17.19",
"to-fast-properties": "^2.0.0"
},
"dependencies": {
"@babel/helper-validator-identifier": {
"version": "7.12.11",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz",
"integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==",
"dev": true
}
}
},
"source-map": {
"version": "0.5.7",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
"integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=",
"dev": true
}
}
},
"@babel/helper-optimise-call-expression": {
"version": "7.12.10",
"resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.10.tgz",
"integrity": "sha512-4tpbU0SrSTjjt65UMWSrUOPZTsgvPgGG4S8QSTNHacKzpS51IVWGDj0yCwyeZND/i+LSN2g/O63jEXEWm49sYQ==",
"dev": true,
"requires": {
"@babel/types": "^7.12.10"
},
"dependencies": {
"@babel/helper-validator-identifier": {
"version": "7.12.11",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz",
"integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==",
"dev": true
},
"@babel/types": {
"version": "7.12.11",
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.11.tgz",
"integrity": "sha512-ukA9SQtKThINm++CX1CwmliMrE54J6nIYB5XTwL5f/CLFW9owfls+YSU8tVW15RQ2w+a3fSbPjC6HdQNtWZkiA==",
"dev": true,
"requires": {
"@babel/helper-validator-identifier": "^7.12.11",
"lodash": "^4.17.19",
"to-fast-properties": "^2.0.0"
}
}
}
},
"@babel/helper-replace-supers": {
"version": "7.12.11",
"resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.11.tgz",
"integrity": "sha512-q+w1cqmhL7R0FNzth/PLLp2N+scXEK/L2AHbXUyydxp828F4FEa5WcVoqui9vFRiHDQErj9Zof8azP32uGVTRA==",
"dev": true,
"requires": {
"@babel/helper-member-expression-to-functions": "^7.12.7",
"@babel/helper-optimise-call-expression": "^7.12.10",
"@babel/traverse": "^7.12.10",
"@babel/types": "^7.12.11"
},
"dependencies": {
"@babel/generator": {
"version": "7.12.11",
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.11.tgz",
"integrity": "sha512-Ggg6WPOJtSi8yYQvLVjG8F/TlpWDlKx0OpS4Kt+xMQPs5OaGYWy+v1A+1TvxI6sAMGZpKWWoAQ1DaeQbImlItA==",
"dev": true,
"requires": {
"@babel/types": "^7.12.11",
"jsesc": "^2.5.1",
"source-map": "^0.5.0"
}
},
"@babel/helper-validator-identifier": {
"version": "7.12.11",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz",
"integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==",
"dev": true
},
"@babel/parser": {
"version": "7.12.11",
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.11.tgz",
"integrity": "sha512-N3UxG+uuF4CMYoNj8AhnbAcJF0PiuJ9KHuy1lQmkYsxTer/MAH9UBNHsBoAX/4s6NvlDD047No8mYVGGzLL4hg==",
"dev": true
},
"@babel/traverse": {
"version": "7.12.10",
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.10.tgz",
"integrity": "sha512-6aEtf0IeRgbYWzta29lePeYSk+YAFIC3kyqESeft8o5CkFlYIMX+EQDDWEiAQ9LHOA3d0oHdgrSsID/CKqXJlg==",
"dev": true,
"requires": {
"@babel/code-frame": "^7.10.4",
"@babel/generator": "^7.12.10",
"@babel/helper-function-name": "^7.10.4",
"@babel/helper-split-export-declaration": "^7.11.0",
"@babel/parser": "^7.12.10",
"@babel/types": "^7.12.10",
"debug": "^4.1.0",
"globals": "^11.1.0",
"lodash": "^4.17.19"
}
},
"@babel/types": {
"version": "7.12.11",
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.11.tgz",
"integrity": "sha512-ukA9SQtKThINm++CX1CwmliMrE54J6nIYB5XTwL5f/CLFW9owfls+YSU8tVW15RQ2w+a3fSbPjC6HdQNtWZkiA==",
"dev": true,
"requires": {
"@babel/helper-validator-identifier": "^7.12.11",
"lodash": "^4.17.19",
"to-fast-properties": "^2.0.0"
}
},
"source-map": {
"version": "0.5.7",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
"integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=",
"dev": true
}
}
},
"@babel/helper-simple-access": {
"version": "7.12.1",
"resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.12.1.tgz",
"integrity": "sha512-OxBp7pMrjVewSSC8fXDFrHrBcJATOOFssZwv16F3/6Xtc138GHybBfPbm9kfiqQHKhYQrlamWILwlDCeyMFEaA==",
"dev": true,
"requires": {
"@babel/types": "^7.12.1"
},
"dependencies": {
"@babel/helper-validator-identifier": {
"version": "7.12.11",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz",
"integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==",
"dev": true
},
"@babel/types": {
"version": "7.12.11",
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.11.tgz",
"integrity": "sha512-ukA9SQtKThINm++CX1CwmliMrE54J6nIYB5XTwL5f/CLFW9owfls+YSU8tVW15RQ2w+a3fSbPjC6HdQNtWZkiA==",
"dev": true,
"requires": {
"@babel/helper-validator-identifier": "^7.12.11",
"lodash": "^4.17.19",
"to-fast-properties": "^2.0.0"
}
}
}
},
"@babel/helper-split-export-declaration": {
"version": "7.11.0",
"resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.11.0.tgz",
"integrity": "sha512-74Vejvp6mHkGE+m+k5vHY93FX2cAtrw1zXrZXRlG4l410Nm9PxfEiVTn1PjDPV5SnmieiueY4AFg2xqhNFuuZg==",
"dev": true,
"requires": {
"@babel/types": "^7.11.0"
}
},
"@babel/helper-validator-identifier": {
"version": "7.10.4",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz",
"integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==",
"dev": true
},
"@babel/helpers": {
"version": "7.12.5",
"resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.12.5.tgz",
"integrity": "sha512-lgKGMQlKqA8meJqKsW6rUnc4MdUk35Ln0ATDqdM1a/UpARODdI4j5Y5lVfUScnSNkJcdCRAaWkspykNoFg9sJA==",
"dev": true,
"requires": {
"@babel/template": "^7.10.4",
"@babel/traverse": "^7.12.5",
"@babel/types": "^7.12.5"
},
"dependencies": {
"@babel/generator": {
"version": "7.12.11",
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.11.tgz",
"integrity": "sha512-Ggg6WPOJtSi8yYQvLVjG8F/TlpWDlKx0OpS4Kt+xMQPs5OaGYWy+v1A+1TvxI6sAMGZpKWWoAQ1DaeQbImlItA==",
"dev": true,
"requires": {
"@babel/types": "^7.12.11",
"jsesc": "^2.5.1",
"source-map": "^0.5.0"
}
},
"@babel/helper-validator-identifier": {
"version": "7.12.11",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz",
"integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==",
"dev": true
},
"@babel/parser": {
"version": "7.12.11",
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.11.tgz",
"integrity": "sha512-N3UxG+uuF4CMYoNj8AhnbAcJF0PiuJ9KHuy1lQmkYsxTer/MAH9UBNHsBoAX/4s6NvlDD047No8mYVGGzLL4hg==",
"dev": true
},
"@babel/traverse": {
"version": "7.12.10",
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.10.tgz",
"integrity": "sha512-6aEtf0IeRgbYWzta29lePeYSk+YAFIC3kyqESeft8o5CkFlYIMX+EQDDWEiAQ9LHOA3d0oHdgrSsID/CKqXJlg==",
"dev": true,
"requires": {
"@babel/code-frame": "^7.10.4",
"@babel/generator": "^7.12.10",
"@babel/helper-function-name": "^7.10.4",
"@babel/helper-split-export-declaration": "^7.11.0",
"@babel/parser": "^7.12.10",
"@babel/types": "^7.12.10",
"debug": "^4.1.0",
"globals": "^11.1.0",
"lodash": "^4.17.19"
}
},
"@babel/types": {
"version": "7.12.11",
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.11.tgz",
"integrity": "sha512-ukA9SQtKThINm++CX1CwmliMrE54J6nIYB5XTwL5f/CLFW9owfls+YSU8tVW15RQ2w+a3fSbPjC6HdQNtWZkiA==",
"dev": true,
"requires": {
"@babel/helper-validator-identifier": "^7.12.11",
"lodash": "^4.17.19",
"to-fast-properties": "^2.0.0"
}
},
"source-map": {
"version": "0.5.7",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
"integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=",
"dev": true
}
}
},
"@babel/highlight": {
"version": "7.10.4",
"resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz",
"integrity": "sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==",
"dev": true,
"requires": {
"@babel/helper-validator-identifier": "^7.10.4",
"chalk": "^2.0.0",
"js-tokens": "^4.0.0"
},
"dependencies": {
"ansi-styles": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
"integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
"dev": true,
"requires": {
"color-convert": "^1.9.0"
}
},
"chalk": {
"version": "2.4.2",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
"integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
"dev": true,
"requires": {
"ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5",
"supports-color": "^5.3.0"
}
},
"color-convert": {
"version": "1.9.3",
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
"integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
"dev": true,
"requires": {
"color-name": "1.1.3"
}
},
"color-name": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
"integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=",
"dev": true
},
"has-flag": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
"integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=",
"dev": true
},
"supports-color": {
"version": "5.5.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
"integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
"dev": true,
"requires": {
"has-flag": "^3.0.0"
}
}
}
},
"@babel/parser": {
"version": "7.11.0",
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.11.0.tgz",
"integrity": "sha512-qvRvi4oI8xii8NllyEc4MDJjuZiNaRzyb7Y7lup1NqJV8TZHF4O27CcP+72WPn/k1zkgJ6WJfnIbk4jTsVAZHw==",
"dev": true
},
"@babel/template": {
"version": "7.10.4",
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.10.4.tgz",
"integrity": "sha512-ZCjD27cGJFUB6nmCB1Enki3r+L5kJveX9pq1SvAUKoICy6CZ9yD8xO086YXdYhvNjBdnekm4ZnaP5yC8Cs/1tA==",
"dev": true,
"requires": {
"@babel/code-frame": "^7.10.4",
"@babel/parser": "^7.10.4",
"@babel/types": "^7.10.4"
}
},
"@babel/traverse": {
"version": "7.11.0",
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.11.0.tgz",
"integrity": "sha512-ZB2V+LskoWKNpMq6E5UUCrjtDUh5IOTAyIl0dTjIEoXum/iKWkoIEKIRDnUucO6f+2FzNkE0oD4RLKoPIufDtg==",
"dev": true,
"requires": {
"@babel/code-frame": "^7.10.4",
"@babel/generator": "^7.11.0",
"@babel/helper-function-name": "^7.10.4",
"@babel/helper-split-export-declaration": "^7.11.0",
"@babel/parser": "^7.11.0",
"@babel/types": "^7.11.0",
"debug": "^4.1.0",
"globals": "^11.1.0",
"lodash": "^4.17.19"
}
},
"@babel/types": {
"version": "7.11.0",
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.11.0.tgz",
"integrity": "sha512-O53yME4ZZI0jO1EVGtF1ePGl0LHirG4P1ibcD80XyzZcKhcMFeCXmh4Xb1ifGBIV233Qg12x4rBfQgA+tmOukA==",
"dev": true,
"requires": {
"@babel/helper-validator-identifier": "^7.10.4",
"lodash": "^4.17.19",
"to-fast-properties": "^2.0.0"
}
},
"@fullhuman/postcss-purgecss": {
"version": "3.1.3",
"resolved": "https://registry.npmjs.org/@fullhuman/postcss-purgecss/-/postcss-purgecss-3.1.3.tgz",
"integrity": "sha512-kwOXw8fZ0Lt1QmeOOrd+o4Ibvp4UTEBFQbzvWldjlKv5n+G9sXfIPn1hh63IQIL8K8vbvv1oYMJiIUbuy9bGaA==",
"requires": {
"purgecss": "^3.1.3"
}
},
"@hint/configuration-accessibility": {
"version": "2.0.8",
"resolved": "https://registry.npmjs.org/@hint/configuration-accessibility/-/configuration-accessibility-2.0.8.tgz",
"integrity": "sha512-o4WUIzm/2V4yUyPXvKEUkUtjo5QG/JTWqBRjsoz04dKiLO2n+Yr0MyifVEfYEtVbRPMH7Yp3BM53jiG70xgFBg==",
"optional": true,
"requires": {
"@hint/connector-puppeteer": "^2.5.5",
"@hint/formatter-html": "^4.3.0",
"@hint/formatter-summary": "^3.0.22",
"@hint/hint-axe": "^4.4.1"
}
},
"@hint/configuration-development": {
"version": "8.1.0",
"resolved": "https://registry.npmjs.org/@hint/configuration-development/-/configuration-development-8.1.0.tgz",
"integrity": "sha512-/fbJmM3hwNWoPd1/yXSPM1eVgGFKqtGej1a8STSzY++GPJhbP8bSaJnkbME8yKiZCqOTZl89YYOa8yHzPAN4ug==",
"optional": true,
"requires": {
"@hint/configuration-accessibility": "^2.0.8",
"@hint/configuration-progressive-web-apps": "^7.0.8",
"@hint/connector-local": "^3.2.8",
"@hint/formatter-html": "^4.3.0",
"@hint/formatter-json": "^3.1.19",
"@hint/formatter-summary": "^3.0.22",
"@hint/hint-babel-config": "^2.4.8",
"@hint/hint-button-type": "^3.0.3",
"@hint/hint-compat-api": "^4.4.0",
"@hint/hint-create-element-svg": "^1.3.7",
"@hint/hint-css-prefix-order": "^1.4.7",
"@hint/hint-disown-opener": "^4.0.3",
"@hint/hint-highest-available-document-mode": "^5.0.3",
"@hint/hint-leading-dot-classlist": "^1.0.0",
"@hint/hint-meta-charset-utf-8": "^4.0.3",
"@hint/hint-meta-viewport": "^5.0.3",
"@hint/hint-no-bom": "^4.2.7",
"@hint/hint-no-protocol-relative-urls": "^3.0.3",
"@hint/hint-scoped-svg-styles": "^1.3.7",
"@hint/hint-sri": "^4.0.3",
"@hint/hint-typescript-config": "^2.4.8",
"@hint/hint-webpack-config": "^2.4.8",
"@hint/parser-babel-config": "^2.1.23",
"@hint/parser-css": "^3.0.22",
"@hint/parser-html": "^3.0.18",
"@hint/parser-javascript": "^3.1.8",
"@hint/parser-jsx": "^1.0.9",
"@hint/parser-less": "^1.0.14",
"@hint/parser-sass": "^1.0.14",
"@hint/parser-typescript": "^1.0.9",
"@hint/parser-typescript-config": "^2.4.9",
"@hint/parser-webpack-config": "^2.1.22"
}
},
"@hint/configuration-progressive-web-apps": {
"version": "7.0.8",
"resolved": "https://registry.npmjs.org/@hint/configuration-progressive-web-apps/-/configuration-progressive-web-apps-7.0.8.tgz",
"integrity": "sha512-ACR9tg/3CFB/vxUEs7UrToFvvSKX+Vke9pS/1aHUSJ/mkriFecM6hTe1TD7a2Dz/9hwnnaH8dl9yiAwLqbe1sw==",
"optional": true,
"requires": {
"@hint/connector-jsdom": "^4.1.8",
"@hint/connector-puppeteer": "^2.5.5",
"@hint/formatter-html": "^4.3.0",
"@hint/formatter-summary": "^3.0.22",
"@hint/hint-apple-touch-icons": "^4.0.3",
"@hint/hint-manifest-app-name": "^2.4.8",
"@hint/hint-manifest-exists": "^2.4.8",
"@hint/hint-manifest-file-extension": "^3.0.3",
"@hint/hint-manifest-is-valid": "^3.3.8",
"@hint/parser-manifest": "^2.2.21"
}
},
"@hint/configuration-web-recommended": {
"version": "8.1.0",
"resolved": "https://registry.npmjs.org/@hint/configuration-web-recommended/-/configuration-web-recommended-8.1.0.tgz",
"integrity": "sha512-r/8K/1s7fKZpjiu/ivvn+SoxVKYc8/cGEYUas3tSRmdV5Na8teQWmQ37WVl62sMzIiHc7bcq7XLVz2vJsec4DQ==",
"optional": true,
"requires": {
"@hint/configuration-accessibility": "^2.0.8",
"@hint/connector-jsdom": "^4.1.8",
"@hint/connector-local": "^3.2.8",
"@hint/connector-puppeteer": "^2.5.5",
"@hint/formatter-html": "^4.3.0",
"@hint/formatter-json": "^3.1.19",
"@hint/formatter-stylish": "^3.1.19",
"@hint/formatter-summary": "^3.0.22",
"@hint/hint-button-type": "^3.0.3",
"@hint/hint-compat-api": "^4.4.0",
"@hint/hint-content-type": "^4.2.7",
"@hint/hint-create-element-svg": "^1.3.7",
"@hint/hint-css-prefix-order": "^1.4.7",
"@hint/hint-disown-opener": "^4.0.3",
"@hint/hint-highest-available-document-mode": "^5.0.3",
"@hint/hint-html-checker": "^3.3.7",
"@hint/hint-http-cache": "^4.0.3",
"@hint/hint-http-compression": "^5.2.7",
"@hint/hint-image-optimization-cloudinary": "^3.2.7",
"@hint/hint-leading-dot-classlist": "^1.0.0",
"@hint/hint-meta-charset-utf-8": "^4.0.3",
"@hint/hint-meta-viewport": "^5.0.3",
"@hint/hint-no-bom": "^4.2.7",
"@hint/hint-no-disallowed-headers": "^3.1.2",
"@hint/hint-no-friendly-error-pages": "^3.3.7",
"@hint/hint-no-html-only-headers": "^3.0.3",
"@hint/hint-no-http-redirects": "^3.0.3",
"@hint/hint-no-protocol-relative-urls": "^3.0.3",
"@hint/hint-no-vulnerable-javascript-libraries": "^2.12.1",
"@hint/hint-scoped-svg-styles": "^1.3.7",
"@hint/hint-sri": "^4.0.3",
"@hint/hint-ssllabs": "^2.4.7",
"@hint/hint-strict-transport-security": "^3.0.3",
"@hint/hint-stylesheet-limits": "^3.3.7",
"@hint/hint-validate-set-cookie-header": "^3.0.3",
"@hint/hint-x-content-type-options": "^4.0.3",
"@hint/parser-css": "^3.0.22",
"@hint/parser-html": "^3.0.18",
"@hint/parser-javascript": "^3.1.8"
}
},
"@hint/connector-jsdom": {
"version": "4.1.8",
"resolved": "https://registry.npmjs.org/@hint/connector-jsdom/-/connector-jsdom-4.1.8.tgz",
"integrity": "sha512-X4xKG3e3EZsKem22wT+SddGYVKANL6QuvuIrTr2J5IpzPpoBDhbkQ1rhpXPhTPCVXxRIMhrAJsU+wGHPKYVgbQ==",
"optional": true,
"requires": {
"@hint/utils": "^7.0.7",
"@hint/utils-connector-tools": "^4.0.22",
"@hint/utils-debug": "^1.0.3",
"@hint/utils-dom": "^2.1.4",
"@hint/utils-fs": "^1.0.6",
"@hint/utils-network": "^1.0.7",
"@hint/utils-types": "^1.1.1",
"canvas": "^2.6.1",
"jsdom": "^16.4.0",
"mutationobserver-shim": "^0.3.7"
}
},
"@hint/connector-local": {
"version": "3.2.8",
"resolved": "https://registry.npmjs.org/@hint/connector-local/-/connector-local-3.2.8.tgz",
"integrity": "sha512-OCodUAQutY6KgIWo0hrWsbQXxtOC6XYIwiaTw5LokeXWDho+P8XW1kSRZCpf6CPROy+5zyKMiDssTMA1MvIGDg==",
"optional": true,
"requires": {
"@hint/utils": "^7.0.7",
"@hint/utils-dom": "^2.1.4",
"@hint/utils-fs": "^1.0.6",
"@hint/utils-i18n": "^1.0.6",
"@hint/utils-network": "^1.0.7",
"chokidar": "^3.4.2",
"globby": "^11.0.1",
"jsdom": "^16.4.0"
}
},
"@hint/connector-puppeteer": {
"version": "2.5.5",
"resolved": "https://registry.npmjs.org/@hint/connector-puppeteer/-/connector-puppeteer-2.5.5.tgz",
"integrity": "sha512-5Qf5ZzeQTlYY5avmhq3l4gGuSD7Ea2OjgH68mWAQ1q8GDWLqzvAcxJr7qN9eNb0Ebf6ogR2OxoLxJ+msTPKUxw==",
"optional": true,
"requires": {
"@hint/utils": "^7.0.7",
"@hint/utils-connector-tools": "^4.0.22",
"@hint/utils-debug": "^1.0.3",
"@hint/utils-dom": "^2.1.4",
"@hint/utils-fs": "^1.0.6",
"@hint/utils-network": "^1.0.7",
"@hint/utils-types": "^1.1.1",
"is-ci": "^2.0.0",
"lockfile": "^1.0.4",
"puppeteer-core": "^5.3.1"
}
},
"@hint/formatter-html": {
"version": "4.3.0",
"resolved": "https://registry.npmjs.org/@hint/formatter-html/-/formatter-html-4.3.0.tgz",
"integrity": "sha512-8oNopbKGhVzzbIN1qb8+8iK5nfMTzfB9BU+mOi/aqdq2pawf8jSUMeXi2AHL+1xeRVgrTgWNs/FjMqIRL557fw==",
"optional": true,
"requires": {
"@hint/utils": "^7.0.7",
"@hint/utils-debug": "^1.0.3",
"@hint/utils-fs": "^1.0.6",
"@hint/utils-i18n": "^1.0.6",
"@hint/utils-types": "^1.1.1",
"ejs": "^3.1.5",
"fs-extra": "^9.0.1",
"lodash": "^4.17.20"
}
},
"@hint/formatter-json": {
"version": "3.1.19",
"resolved": "https://registry.npmjs.org/@hint/formatter-json/-/formatter-json-3.1.19.tgz",
"integrity": "sha512-iCdSC8oRbEEqM/u9SmjLLB13yCzH2QnhqeQwKpEaSN2mCICYjHKq0v4LhcLR2B8fy7q7e05IxiOKlkcwb+NeBg==",
"optional": true,
"requires": {
"@hint/utils": "^7.0.7",
"@hint/utils-debug": "^1.0.3",
"@hint/utils-fs": "^1.0.6",
"@hint/utils-i18n": "^1.0.6",
"@hint/utils-types": "^1.1.1",
"lodash": "^4.17.20"
}
},
"@hint/formatter-stylish": {
"version": "3.1.19",
"resolved": "https://registry.npmjs.org/@hint/formatter-stylish/-/formatter-stylish-3.1.19.tgz",
"integrity": "sha512-huQiBhTd87QCKGezeSOKIzhS3hGnKCCvoCqL/XPlsmGixfsmwtWFHtftwtURxW3dz9R+0EznRyjtayqYK+wZcg==",
"optional": true,
"requires": {
"@hint/utils": "^7.0.7",
"@hint/utils-debug": "^1.0.3",
"@hint/utils-fs": "^1.0.6",
"@hint/utils-i18n": "^1.0.6",
"@hint/utils-string": "^1.0.6",
"@hint/utils-types": "^1.1.1",
"chalk": "^4.0.0",
"lodash": "^4.17.20",
"log-symbols": "^4.0.0",
"strip-ansi": "^6.0.0",
"text-table": "^0.2.0"
}
},
"@hint/formatter-summary": {
"version": "3.0.22",
"resolved": "https://registry.npmjs.org/@hint/formatter-summary/-/formatter-summary-3.0.22.tgz",
"integrity": "sha512-ZTLVx+U0LaECNw7QuYMmZl8FR+vtXqN8+7A3VMHHdJ1Gd2gDtNiCZnRvtnbltXOdMadgPBKuh8TsXSqtpeNrMA==",
"optional": true,
"requires": {
"@hint/utils": "^7.0.7",
"@hint/utils-debug": "^1.0.3",
"@hint/utils-fs": "^1.0.6",
"@hint/utils-i18n": "^1.0.6",
"@hint/utils-types": "^1.1.1",
"chalk": "^4.0.0",
"lodash": "^4.17.20",
"log-symbols": "^4.0.0",
"strip-ansi": "^6.0.0",
"text-table": "^0.2.0"
}
},
"@hint/hint-apple-touch-icons": {
"version": "4.0.3",
"resolved": "https://registry.npmjs.org/@hint/hint-apple-touch-icons/-/hint-apple-touch-icons-4.0.3.tgz",
"integrity": "sha512-1n5lu7MQm0yJ1Wcwi9IlWS8hzqpmtB5MBL+Gg2S8g+AJGUQi86rT8i+sN1DDyUW4UUnnt9/5NUulJh4v4XzTgw==",
"optional": true,
"requires": {
"@hint/utils-debug": "^1.0.3",
"@hint/utils-i18n": "^1.0.6",
"@hint/utils-network": "^1.0.7",
"@hint/utils-string": "^1.0.6",
"@hint/utils-types": "^1.1.1",
"image-size": "^0.9.1"
}
},
"@hint/hint-axe": {
"version": "4.4.1",
"resolved": "https://registry.npmjs.org/@hint/hint-axe/-/hint-axe-4.4.1.tgz",
"integrity": "sha512-b2Z23MxQvysPWbYC8lV2mnr3mi3U/xRZ6RC7858echrWf9HDckByr+UH8yNHDFq/bpjZSNuRfbDl/A/i06X+Tw==",
"optional": true,
"requires": {
"@hint/utils-fs": "^1.0.6",
"@hint/utils-i18n": "^1.0.6",
"@hint/utils-types": "^1.1.1",
"axe-core": "^4.0.2"
}
},
"@hint/hint-babel-config": {
"version": "2.4.8",
"resolved": "https://registry.npmjs.org/@hint/hint-babel-config/-/hint-babel-config-2.4.8.tgz",
"integrity": "sha512-OIP4uLaGWC2wI5eT6af+mb1k5emz47SBzV0pdCHhKdah7xRPqHG8T3GJizDSCf/RqRq1YLGFYECr7UzRPlVAhA==",
"optional": true,
"requires": {
"@hint/utils-debug": "^1.0.3",
"@hint/utils-i18n": "^1.0.6",
"@hint/utils-types": "^1.1.1"
}
},
"@hint/hint-button-type": {
"version": "3.0.3",
"resolved": "https://registry.npmjs.org/@hint/hint-button-type/-/hint-button-type-3.0.3.tgz",
"integrity": "sha512-pKxqqNNcgAn1w2IWPxioEf/WlCNTuNZKeUEBTSuHMOF7hPbxgp1idF8yv7zR98Q/IQt0gHxz71krpfCn6J1h0A==",
"optional": true,
"requires": {
"@hint/utils-debug": "^1.0.3",
"@hint/utils-i18n": "^1.0.6",
"@hint/utils-types": "^1.1.1"
}
},
"@hint/hint-compat-api": {
"version": "4.4.0",
"resolved": "https://registry.npmjs.org/@hint/hint-compat-api/-/hint-compat-api-4.4.0.tgz",
"integrity": "sha512-5wjFtBFUtxIKtScsXdANzcskE1bN6yx7SeCj5bYzw5s9Hs6cKN4eSjwxPC2SkgMyTYjujuxvrBZDAq4acfcpbw==",
"optional": true,
"requires": {
"@hint/utils-compat-data": "^1.1.1",
"@hint/utils-css": "^1.0.6",
"@hint/utils-fs": "^1.0.6",
"@hint/utils-i18n": "^1.0.6",
"@hint/utils-types": "^1.1.1",
"lodash": "^4.17.20"
}
},
"@hint/hint-content-type": {
"version": "4.2.7",
"resolved": "https://registry.npmjs.org/@hint/hint-content-type/-/hint-content-type-4.2.7.tgz",
"integrity": "sha512-4UOnYDmKGZIOh1cvFl/rWtiJqi3NOJieQ71b26Mc+8SbYa2lAY772jrC7B5Ror/jPkZoOXUkbF77PBAEQo/SUA==",
"optional": true,
"requires": {
"@hint/utils": "^7.0.7",
"@hint/utils-debug": "^1.0.3",
"@hint/utils-i18n": "^1.0.6",
"@hint/utils-network": "^1.0.7",
"@hint/utils-string": "^1.0.6",
"@hint/utils-types": "^1.1.1",
"content-type": "^1.0.4"
}
},
"@hint/hint-create-element-svg": {
"version": "1.3.7",
"resolved": "https://registry.npmjs.org/@hint/hint-create-element-svg/-/hint-create-element-svg-1.3.7.tgz",
"integrity": "sha512-PqYgq8lHsVmIqJjuQ5b07gCxcHAcA4CDfNSuUz+w4mWNUIexoc48SuHwslZcFbSCkqhj/gFR6z4ubvv3DNK8ZQ==",
"optional": true,
"requires": {
"@hint/utils-debug": "^1.0.3",
"@hint/utils-fs": "^1.0.6",
"@hint/utils-i18n": "^1.0.6",
"@hint/utils-types": "^1.1.1"
}
},
"@hint/hint-css-prefix-order": {
"version": "1.4.7",
"resolved": "https://registry.npmjs.org/@hint/hint-css-prefix-order/-/hint-css-prefix-order-1.4.7.tgz",
"integrity": "sha512-HgcN5FQ8glxgxtvuDCZH23YWYj+NcM0M3YlpgbMP+Sx0cj+tqOQQiiVdBnTOG9XfcBaUWqBpF86HtFWydqz2CQ==",
"optional": true,
"requires": {
"@hint/utils-css": "^1.0.6",
"@hint/utils-debug": "^1.0.3",
"@hint/utils-fs": "^1.0.6",
"@hint/utils-i18n": "^1.0.6",
"@hint/utils-types": "^1.1.1",
"postcss": "^8.1.1"
}
},
"@hint/hint-disown-opener": {
"version": "4.0.3",
"resolved": "https://registry.npmjs.org/@hint/hint-disown-opener/-/hint-disown-opener-4.0.3.tgz",
"integrity": "sha512-KNjnd23vcqI8+0VjBQlMVGGAFF55ZEU0ZBsmds8W8jbahHfOEZ+7/LLLEAzMZ7RMwCN8Yv2TXGpVsc9p9B7hwg==",
"optional": true,
"requires": {
"@hint/utils-compat-data": "^1.1.1",
"@hint/utils-debug": "^1.0.3",
"@hint/utils-i18n": "^1.0.6",
"@hint/utils-network": "^1.0.7",
"@hint/utils-string": "^1.0.6",
"@hint/utils-types": "^1.1.1"
}
},
"@hint/hint-highest-available-document-mode": {
"version": "5.0.3",
"resolved": "https://registry.npmjs.org/@hint/hint-highest-available-document-mode/-/hint-highest-available-document-mode-5.0.3.tgz",
"integrity": "sha512-goo8deizuKdea/CX/1WRiBKJq2tAHKjKxyxE5n/bMl53a02DQ5iLd5Wv09o9uEaRqEqVg+Z9f0PcRTzdH+V2ng==",
"optional": true,
"requires": {
"@hint/utils-i18n": "^1.0.6",
"@hint/utils-network": "^1.0.7",
"@hint/utils-string": "^1.0.6",
"@hint/utils-types": "^1.1.1"
}
},
"@hint/hint-html-checker": {
"version": "3.3.7",
"resolved": "https://registry.npmjs.org/@hint/hint-html-checker/-/hint-html-checker-3.3.7.tgz",
"integrity": "sha512-jzGKdlAe062Z9roxp+QXAzSMR4miRKAekn8T0vzV1XkWAoKqHamt9FGnCie6L4pdKeUyVskj4AK8OnwZvjDoJQ==",
"optional": true,
"requires": {
"@hint/utils": "^7.0.7",
"@hint/utils-debug": "^1.0.3",
"@hint/utils-i18n": "^1.0.6",
"@hint/utils-network": "^1.0.7",
"@hint/utils-types": "^1.1.1",
"lodash": "^4.17.20"
}
},
"@hint/hint-http-cache": {
"version": "4.0.3",
"resolved": "https://registry.npmjs.org/@hint/hint-http-cache/-/hint-http-cache-4.0.3.tgz",
"integrity": "sha512-1r4kjaUd8u2ICFRO9Tz0rtlDGIs0H0lf5rRlUd/qcyLFZC7l0C5xnwXHoQsXOvl78OKDNiHGmlRvAlZ4aKwhSg==",
"optional": true,
"requires": {