-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage-lock.json
13076 lines (13076 loc) · 469 KB
/
package-lock.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"requires": true,
"lockfileVersion": 1,
"dependencies": {
"@babel/code-frame": {
"version": "7.5.5",
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.5.5.tgz",
"integrity": "sha512-27d4lZoomVyo51VegxI20xZPuSHusqbQag/ztrBC7wegWoQ1nLREPVSKSW8byhTlzTKyNE4ifaTA6lCp7JjpFw==",
"dev": true,
"requires": {
"@babel/highlight": "^7.0.0"
}
},
"@babel/core": {
"version": "7.6.2",
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.6.2.tgz",
"integrity": "sha512-l8zto/fuoZIbncm+01p8zPSDZu/VuuJhAfA7d/AbzM09WR7iVhavvfNDYCNpo1VvLk6E6xgAoP9P+/EMJHuRkQ==",
"dev": true,
"requires": {
"@babel/code-frame": "^7.5.5",
"@babel/generator": "^7.6.2",
"@babel/helpers": "^7.6.2",
"@babel/parser": "^7.6.2",
"@babel/template": "^7.6.0",
"@babel/traverse": "^7.6.2",
"@babel/types": "^7.6.0",
"convert-source-map": "^1.1.0",
"debug": "^4.1.0",
"json5": "^2.1.0",
"lodash": "^4.17.13",
"resolve": "^1.3.2",
"semver": "^5.4.1",
"source-map": "^0.5.0"
},
"dependencies": {
"debug": {
"version": "4.1.1",
"resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz",
"integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==",
"dev": true,
"requires": {
"ms": "^2.1.1"
}
},
"json5": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/json5/-/json5-2.1.0.tgz",
"integrity": "sha512-8Mh9h6xViijj36g7Dxi+Y4S6hNGV96vcJZr/SrlHh1LR/pEn/8j/+qIBbs44YKl69Lrfctp4QD+AdWLTMqEZAQ==",
"dev": true,
"requires": {
"minimist": "^1.2.0"
}
},
"ms": {
"version": "2.1.2",
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
"integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
"dev": true
},
"semver": {
"version": "5.7.1",
"resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
"integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==",
"dev": true
}
}
},
"@babel/generator": {
"version": "7.6.2",
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.6.2.tgz",
"integrity": "sha512-j8iHaIW4gGPnViaIHI7e9t/Hl8qLjERI6DcV9kEpAIDJsAOrcnXqRS7t+QbhL76pwbtqP+QCQLL0z1CyVmtjjQ==",
"dev": true,
"requires": {
"@babel/types": "^7.6.0",
"jsesc": "^2.5.1",
"lodash": "^4.17.13",
"source-map": "^0.5.0"
}
},
"@babel/helper-function-name": {
"version": "7.1.0",
"resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.1.0.tgz",
"integrity": "sha512-A95XEoCpb3TO+KZzJ4S/5uW5fNe26DjBGqf1o9ucyLyCmi1dXq/B3c8iaWTfBk3VvetUxl16e8tIrd5teOCfGw==",
"dev": true,
"requires": {
"@babel/helper-get-function-arity": "^7.0.0",
"@babel/template": "^7.1.0",
"@babel/types": "^7.0.0"
}
},
"@babel/helper-get-function-arity": {
"version": "7.0.0",
"resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0.tgz",
"integrity": "sha512-r2DbJeg4svYvt3HOS74U4eWKsUAMRH01Z1ds1zx8KNTPtpTL5JAsdFv8BNyOpVqdFhHkkRDIg5B4AsxmkjAlmQ==",
"dev": true,
"requires": {
"@babel/types": "^7.0.0"
}
},
"@babel/helper-plugin-utils": {
"version": "7.0.0",
"resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.0.0.tgz",
"integrity": "sha512-CYAOUCARwExnEixLdB6sDm2dIJ/YgEAKDM1MOeMeZu9Ld/bDgVo8aiWrXwcY7OBh+1Ea2uUcVRcxKk0GJvW7QA==",
"dev": true
},
"@babel/helper-split-export-declaration": {
"version": "7.4.4",
"resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.4.4.tgz",
"integrity": "sha512-Ro/XkzLf3JFITkW6b+hNxzZ1n5OQ80NvIUdmHspih1XAhtN3vPTuUFT4eQnela+2MaZ5ulH+iyP513KJrxbN7Q==",
"dev": true,
"requires": {
"@babel/types": "^7.4.4"
}
},
"@babel/helpers": {
"version": "7.6.2",
"resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.6.2.tgz",
"integrity": "sha512-3/bAUL8zZxYs1cdX2ilEE0WobqbCmKWr/889lf2SS0PpDcpEIY8pb1CCyz0pEcX3pEb+MCbks1jIokz2xLtGTA==",
"dev": true,
"requires": {
"@babel/template": "^7.6.0",
"@babel/traverse": "^7.6.2",
"@babel/types": "^7.6.0"
}
},
"@babel/highlight": {
"version": "7.5.0",
"resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.5.0.tgz",
"integrity": "sha512-7dV4eu9gBxoM0dAnj/BCFDW9LFU0zvTrkq0ugM7pnHEgguOEeOz1so2ZghEdzviYzQEED0r4EAgpsBChKy1TRQ==",
"dev": true,
"requires": {
"chalk": "^2.0.0",
"esutils": "^2.0.2",
"js-tokens": "^4.0.0"
}
},
"@babel/parser": {
"version": "7.6.2",
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.6.2.tgz",
"integrity": "sha512-mdFqWrSPCmikBoaBYMuBulzTIKuXVPtEISFbRRVNwMWpCms/hmE2kRq0bblUHaNRKrjRlmVbx1sDHmjmRgD2Xg==",
"dev": true
},
"@babel/plugin-syntax-object-rest-spread": {
"version": "7.2.0",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.2.0.tgz",
"integrity": "sha512-t0JKGgqk2We+9may3t0xDdmneaXmyxq0xieYcKHxIsrJO64n1OiMWNUtc5gQK1PA0NpdCRrtZp4z+IUaKugrSA==",
"dev": true,
"requires": {
"@babel/helper-plugin-utils": "^7.0.0"
}
},
"@babel/template": {
"version": "7.6.0",
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.6.0.tgz",
"integrity": "sha512-5AEH2EXD8euCk446b7edmgFdub/qfH1SN6Nii3+fyXP807QRx9Q73A2N5hNwRRslC2H9sNzaFhsPubkS4L8oNQ==",
"dev": true,
"requires": {
"@babel/code-frame": "^7.0.0",
"@babel/parser": "^7.6.0",
"@babel/types": "^7.6.0"
}
},
"@babel/traverse": {
"version": "7.6.2",
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.6.2.tgz",
"integrity": "sha512-8fRE76xNwNttVEF2TwxJDGBLWthUkHWSldmfuBzVRmEDWOtu4XdINTgN7TDWzuLg4bbeIMLvfMFD9we5YcWkRQ==",
"dev": true,
"requires": {
"@babel/code-frame": "^7.5.5",
"@babel/generator": "^7.6.2",
"@babel/helper-function-name": "^7.1.0",
"@babel/helper-split-export-declaration": "^7.4.4",
"@babel/parser": "^7.6.2",
"@babel/types": "^7.6.0",
"debug": "^4.1.0",
"globals": "^11.1.0",
"lodash": "^4.17.13"
},
"dependencies": {
"debug": {
"version": "4.1.1",
"resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz",
"integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==",
"dev": true,
"requires": {
"ms": "^2.1.1"
}
},
"ms": {
"version": "2.1.2",
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
"integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
"dev": true
}
}
},
"@babel/types": {
"version": "7.6.1",
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.6.1.tgz",
"integrity": "sha512-X7gdiuaCmA0uRjCmRtYJNAVCc/q+5xSgsfKJHqMN4iNLILX39677fJE1O40arPMh0TTtS9ItH67yre6c7k6t0g==",
"dev": true,
"requires": {
"esutils": "^2.0.2",
"lodash": "^4.17.13",
"to-fast-properties": "^2.0.0"
}
},
"@cnakazawa/watch": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/@cnakazawa/watch/-/watch-1.0.3.tgz",
"integrity": "sha512-r5160ogAvGyHsal38Kux7YYtodEKOj89RGb28ht1jh3SJb08VwRwAKKJL0bGb04Zd/3r9FL3BFIc3bBidYffCA==",
"dev": true,
"requires": {
"exec-sh": "^0.3.2",
"minimist": "^1.2.0"
}
},
"@hint/configuration-accessibility": {
"version": "1.0.8",
"resolved": "https://registry.npmjs.org/@hint/configuration-accessibility/-/configuration-accessibility-1.0.8.tgz",
"integrity": "sha512-W5QHubOjOwj19II+Jnbwc0SnmyAzcMHtc7fynE/s9LN0/rXhXz5Pu+R2GGhtd63rLn0ZOXNzgoRuAhJNV6RfGQ==",
"dev": true,
"optional": true,
"requires": {
"@hint/connector-puppeteer": "^2.2.1",
"@hint/formatter-html": "^4.1.7",
"@hint/formatter-summary": "^3.0.11",
"@hint/hint-axe": "^4.1.4"
}
},
"@hint/configuration-development": {
"version": "7.2.3",
"resolved": "https://registry.npmjs.org/@hint/configuration-development/-/configuration-development-7.2.3.tgz",
"integrity": "sha512-wiPzzY/ovNHfmA012TMGR5uCroR8YFLVNetjgJ9Fc7L91tNbydXD28xE401XkrIHNXwB1EqAIDDw5mK7BvjUHg==",
"dev": true,
"optional": true,
"requires": {
"@hint/configuration-accessibility": "^1.0.8",
"@hint/configuration-progressive-web-apps": "^6.0.8",
"@hint/connector-local": "^3.1.8",
"@hint/formatter-html": "^4.1.7",
"@hint/formatter-summary": "^3.0.11",
"@hint/hint-babel-config": "^2.3.8",
"@hint/hint-button-type": "^2.2.8",
"@hint/hint-compat-api": "^4.1.1",
"@hint/hint-create-element-svg": "^1.2.8",
"@hint/hint-css-prefix-order": "^1.2.8",
"@hint/hint-disown-opener": "^3.2.8",
"@hint/hint-highest-available-document-mode": "^4.1.8",
"@hint/hint-meta-charset-utf-8": "^3.2.8",
"@hint/hint-meta-viewport": "^4.1.8",
"@hint/hint-no-bom": "^4.1.8",
"@hint/hint-no-protocol-relative-urls": "^2.3.8",
"@hint/hint-scoped-svg-styles": "^1.1.2",
"@hint/hint-sri": "^3.2.8",
"@hint/hint-typescript-config": "^2.3.8",
"@hint/hint-webpack-config": "^2.3.8",
"@hint/parser-babel-config": "^2.1.11",
"@hint/parser-css": "^3.0.11",
"@hint/parser-html": "^3.0.9",
"@hint/parser-less": "^1.0.3",
"@hint/parser-sass": "^1.0.3",
"@hint/parser-typescript-config": "^2.3.8",
"@hint/parser-webpack-config": "^2.1.11"
}
},
"@hint/configuration-progressive-web-apps": {
"version": "6.0.8",
"resolved": "https://registry.npmjs.org/@hint/configuration-progressive-web-apps/-/configuration-progressive-web-apps-6.0.8.tgz",
"integrity": "sha512-nWEFXgPQScqVFocBeOCF7bAYM3JQZeTseUL7uijNPcrwvUyxKOm79+E/oOZbsm0VlZdDy8mwmZZNNDjgLStWYw==",
"dev": true,
"optional": true,
"requires": {
"@hint/connector-jsdom": "^4.0.11",
"@hint/connector-puppeteer": "^2.2.1",
"@hint/formatter-html": "^4.1.7",
"@hint/formatter-summary": "^3.0.11",
"@hint/hint-apple-touch-icons": "^3.1.8",
"@hint/hint-manifest-app-name": "^2.3.8",
"@hint/hint-manifest-exists": "^2.3.8",
"@hint/hint-manifest-file-extension": "^2.3.8",
"@hint/hint-manifest-is-valid": "^3.2.8",
"@hint/parser-manifest": "^2.2.9"
}
},
"@hint/configuration-web-recommended": {
"version": "7.2.3",
"resolved": "https://registry.npmjs.org/@hint/configuration-web-recommended/-/configuration-web-recommended-7.2.3.tgz",
"integrity": "sha512-SJW7ud13kK3NMTYnM3k20N3bOPn2Pkn0NtQ+Uyq4n6W8TBOSEMJXqopqsHUDfKVv7H9im0uofh4QlQ3GxMAiyA==",
"dev": true,
"optional": true,
"requires": {
"@hint/configuration-accessibility": "^1.0.8",
"@hint/connector-jsdom": "^4.0.11",
"@hint/connector-local": "^3.1.8",
"@hint/connector-puppeteer": "^2.2.1",
"@hint/formatter-html": "^4.1.7",
"@hint/formatter-stylish": "^3.1.8",
"@hint/formatter-summary": "^3.0.11",
"@hint/hint-button-type": "^2.2.8",
"@hint/hint-compat-api": "^4.1.1",
"@hint/hint-content-type": "^4.1.8",
"@hint/hint-create-element-svg": "^1.2.8",
"@hint/hint-css-prefix-order": "^1.2.8",
"@hint/hint-disown-opener": "^3.2.8",
"@hint/hint-highest-available-document-mode": "^4.1.8",
"@hint/hint-html-checker": "^3.2.8",
"@hint/hint-http-cache": "^3.2.8",
"@hint/hint-http-compression": "^5.1.8",
"@hint/hint-image-optimization-cloudinary": "^3.1.8",
"@hint/hint-meta-charset-utf-8": "^3.2.8",
"@hint/hint-meta-viewport": "^4.1.8",
"@hint/hint-no-bom": "^4.1.8",
"@hint/hint-no-disallowed-headers": "^2.3.8",
"@hint/hint-no-friendly-error-pages": "^3.2.8",
"@hint/hint-no-html-only-headers": "^2.3.8",
"@hint/hint-no-http-redirects": "^2.3.8",
"@hint/hint-no-protocol-relative-urls": "^2.3.8",
"@hint/hint-no-vulnerable-javascript-libraries": "^2.9.8",
"@hint/hint-scoped-svg-styles": "^1.1.2",
"@hint/hint-sri": "^3.2.8",
"@hint/hint-ssllabs": "^2.3.8",
"@hint/hint-strict-transport-security": "^2.3.8",
"@hint/hint-stylesheet-limits": "^3.2.8",
"@hint/hint-validate-set-cookie-header": "^2.3.8",
"@hint/hint-x-content-type-options": "^3.2.8",
"@hint/parser-css": "^3.0.11",
"@hint/parser-html": "^3.0.9",
"@hint/parser-javascript": "^3.0.11"
}
},
"@hint/connector-jsdom": {
"version": "4.0.11",
"resolved": "https://registry.npmjs.org/@hint/connector-jsdom/-/connector-jsdom-4.0.11.tgz",
"integrity": "sha512-DGRDI7CQk0hUJin572dw0js7zI6ZzsoOlsTiF+Si/Gi3ngnjXvP5MO0RghlZcR7b2wNx4TLcSwt8SwcTfwsWGg==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils": "^5.0.1",
"@hint/utils-connector-tools": "^4.0.11",
"canvas": "^2.6.0",
"jsdom": "^15.1.1",
"mutationobserver-shim": "^0.3.3",
"whatwg-fetch": "^3.0.0"
}
},
"@hint/connector-local": {
"version": "3.1.8",
"resolved": "https://registry.npmjs.org/@hint/connector-local/-/connector-local-3.1.8.tgz",
"integrity": "sha512-af3OgX9j/m++ND5ypQgmB+AbWmE2zF2kXaMxJe+cqYLhs/Vy6jnRFnOCDP/EuNnUZpjiiV0f6GVuzZaIcN9VAQ==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils": "^5.0.1",
"chokidar": "^3.0.2",
"globby": "^10.0.1",
"jsdom": "^15.1.1"
}
},
"@hint/connector-puppeteer": {
"version": "2.2.1",
"resolved": "https://registry.npmjs.org/@hint/connector-puppeteer/-/connector-puppeteer-2.2.1.tgz",
"integrity": "sha512-x38N5GQllUEvigtcRTiuya9CO3Im/TszB8uGqKh7TqMUtHNAe7HGYCDGenJzQ57+k/iAAcJ18PgnfBmul+LhHA==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils": "^5.0.1",
"@hint/utils-connector-tools": "^4.0.11",
"is-ci": "^2.0.0",
"lockfile": "^1.0.4",
"puppeteer-core": "^1.20.0"
}
},
"@hint/formatter-html": {
"version": "4.1.7",
"resolved": "https://registry.npmjs.org/@hint/formatter-html/-/formatter-html-4.1.7.tgz",
"integrity": "sha512-8SvQymolf1SZeO1E9FKwB6YaC8OIv+P0bKKSfWSnormZkdRV03Gi2C0bL/AMKy4sQlHe6rvI8cKrZK+YAUNj5w==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils": "^5.0.1",
"ejs": "^2.7.1",
"fs-extra": "^8.0.1",
"lodash": "^4.17.15",
"moment": "^2.24.0"
}
},
"@hint/formatter-stylish": {
"version": "3.1.8",
"resolved": "https://registry.npmjs.org/@hint/formatter-stylish/-/formatter-stylish-3.1.8.tgz",
"integrity": "sha512-NjxXFFjBR3rdJX52jvxiF6461nXQxexNl/8fwNkeMLfk4Ipr3ra2gi1jjDiKTKN81n4u+nhgHNmVgZYQU+3O8w==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils": "^5.0.1",
"chalk": "^2.4.2",
"lodash": "^4.17.15",
"log-symbols": "^3.0.0",
"strip-ansi": "^5.1.0",
"text-table": "^0.2.0"
},
"dependencies": {
"ansi-regex": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz",
"integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==",
"dev": true,
"optional": true
},
"log-symbols": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-3.0.0.tgz",
"integrity": "sha512-dSkNGuI7iG3mfvDzUuYZyvk5dD9ocYCYzNU6CYDE6+Xqd+gwme6Z00NS3dUh8mq/73HaEtT7m6W+yUPtU6BZnQ==",
"dev": true,
"optional": true,
"requires": {
"chalk": "^2.4.2"
}
},
"strip-ansi": {
"version": "5.2.0",
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz",
"integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==",
"dev": true,
"optional": true,
"requires": {
"ansi-regex": "^4.1.0"
}
}
}
},
"@hint/formatter-summary": {
"version": "3.0.11",
"resolved": "https://registry.npmjs.org/@hint/formatter-summary/-/formatter-summary-3.0.11.tgz",
"integrity": "sha512-ETlwoLgaMUrD8oKOlenPUGrMf7vWzYegT5LoHKLo1taAIPdTbs5oA7MnWxyj4KUUFi7J7SYkQl5zgH9l9Rq8Tg==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils": "^5.0.1",
"chalk": "^2.4.2",
"lodash": "^4.17.15",
"log-symbols": "^3.0.0",
"strip-ansi": "^5.1.0",
"text-table": "^0.2.0"
},
"dependencies": {
"ansi-regex": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz",
"integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==",
"dev": true,
"optional": true
},
"log-symbols": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-3.0.0.tgz",
"integrity": "sha512-dSkNGuI7iG3mfvDzUuYZyvk5dD9ocYCYzNU6CYDE6+Xqd+gwme6Z00NS3dUh8mq/73HaEtT7m6W+yUPtU6BZnQ==",
"dev": true,
"optional": true,
"requires": {
"chalk": "^2.4.2"
}
},
"strip-ansi": {
"version": "5.2.0",
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz",
"integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==",
"dev": true,
"optional": true,
"requires": {
"ansi-regex": "^4.1.0"
}
}
}
},
"@hint/hint-apple-touch-icons": {
"version": "3.1.8",
"resolved": "https://registry.npmjs.org/@hint/hint-apple-touch-icons/-/hint-apple-touch-icons-3.1.8.tgz",
"integrity": "sha512-hE/uPSfH/Q2TOb31UlwL8cRnlwbnvh0mt5qXoNOaIJ5VcOSUPnO6y3ToA+01y870CkiXPZhtIk54Gv5JR2bMXQ==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils": "^5.0.1",
"image-size": "^0.7.4"
}
},
"@hint/hint-axe": {
"version": "4.1.4",
"resolved": "https://registry.npmjs.org/@hint/hint-axe/-/hint-axe-4.1.4.tgz",
"integrity": "sha512-eFPcidMsMvMWK9u1RuSTOO2bccctfbZs8+Ty0ahGxZkcPsbForYE47sBbCE37vmKH8Ewa2XJ+rmJCwGbi0PCqw==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils": "^5.0.1",
"axe-core": "^3.3.2"
}
},
"@hint/hint-babel-config": {
"version": "2.3.8",
"resolved": "https://registry.npmjs.org/@hint/hint-babel-config/-/hint-babel-config-2.3.8.tgz",
"integrity": "sha512-NubsenUFR4ojLOef0Phk4xOp3cOWeJnlDuWiOSrZuRERImraqx4W6SdyqyobSvvGr0m0UtGvLpPM0Bd/fh7B8Q==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils": "^5.0.1"
}
},
"@hint/hint-button-type": {
"version": "2.2.8",
"resolved": "https://registry.npmjs.org/@hint/hint-button-type/-/hint-button-type-2.2.8.tgz",
"integrity": "sha512-menv/y9jDKahktbZkmBehpqEj9jN4tO6UWxpWbJXp8jFxp9xUmQWx+kfbRoaQyyI8G4kDLAHaftvQRrPOwwSLg==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils": "^5.0.1"
}
},
"@hint/hint-compat-api": {
"version": "4.1.1",
"resolved": "https://registry.npmjs.org/@hint/hint-compat-api/-/hint-compat-api-4.1.1.tgz",
"integrity": "sha512-EcbLdjjsblh1r1j/reb7212aHguYTRxt16w868NdPEoTF8LXP78SoZQSra/WSPhdguws9I+pSXco+hOpufGNNA==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils": "^5.0.1"
}
},
"@hint/hint-content-type": {
"version": "4.1.8",
"resolved": "https://registry.npmjs.org/@hint/hint-content-type/-/hint-content-type-4.1.8.tgz",
"integrity": "sha512-l+1BTZoC0+16p4aB8PiF/e1YV1h9UCvVPDoMuJqiczHveYUhiMp0GIEJA1g7ZwMpPTQ4dC29Z4yhCjJRfY54IQ==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils": "^5.0.1",
"content-type": "^1.0.4"
}
},
"@hint/hint-create-element-svg": {
"version": "1.2.8",
"resolved": "https://registry.npmjs.org/@hint/hint-create-element-svg/-/hint-create-element-svg-1.2.8.tgz",
"integrity": "sha512-/jy9lzcE4IZdo2R5L7WwI5cI9WBpD+d9CdA/1oqN2gyeY0Sxn67ywMSZjdMyNX9EfOaYSqtGlYq7fDyyEkJTwQ==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils": "^5.0.1"
}
},
"@hint/hint-css-prefix-order": {
"version": "1.2.8",
"resolved": "https://registry.npmjs.org/@hint/hint-css-prefix-order/-/hint-css-prefix-order-1.2.8.tgz",
"integrity": "sha512-UndaCtJiN0LAyHObSEjn3Un3dBLABEPlJI6xdyJ6KcM7uKvZpTCB7Bk3DWpJYuVZXG024SCEXLIBc+ZkeN2rlA==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils": "^5.0.1",
"postcss": "^7.0.18"
}
},
"@hint/hint-disown-opener": {
"version": "3.2.8",
"resolved": "https://registry.npmjs.org/@hint/hint-disown-opener/-/hint-disown-opener-3.2.8.tgz",
"integrity": "sha512-Nf6Sbx12jmdUL7rK9SNHRK681WFSO71sj+ZON9Sn313OIYcrXRrmfVK/YrNanjL5b+pkKtA9Gcr0/5jfTQi0QA==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils": "^5.0.1"
}
},
"@hint/hint-highest-available-document-mode": {
"version": "4.1.8",
"resolved": "https://registry.npmjs.org/@hint/hint-highest-available-document-mode/-/hint-highest-available-document-mode-4.1.8.tgz",
"integrity": "sha512-SsND7S8qv/wXCWIr4tiEOsLk1i6UvJn18dmNrBdmc1rPa8fVhvaLMIZcrhMz0eVOyX33yz84oIHThdYPnAPAsg==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils": "^5.0.1"
}
},
"@hint/hint-html-checker": {
"version": "3.2.8",
"resolved": "https://registry.npmjs.org/@hint/hint-html-checker/-/hint-html-checker-3.2.8.tgz",
"integrity": "sha512-R0oA/hGLi3nxzWPklS4OjNkZX97B426l9BZ+d2svYTLfdfQDniOlzmEzOzYIpWstAMVi9UVr4ZADpsRrJUBJmw==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils": "^5.0.1",
"lodash": "^4.17.15"
}
},
"@hint/hint-http-cache": {
"version": "3.2.8",
"resolved": "https://registry.npmjs.org/@hint/hint-http-cache/-/hint-http-cache-3.2.8.tgz",
"integrity": "sha512-KbMYaF+XlTjlrKS3QkemnLKJD++L3wr90RiZIAlrYn8+Q9DWg1ZGeQ47GwVMDAkjtkB0qPtlDuFXk2Z1T2sxwQ==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils": "^5.0.1"
}
},
"@hint/hint-http-compression": {
"version": "5.1.8",
"resolved": "https://registry.npmjs.org/@hint/hint-http-compression/-/hint-http-compression-5.1.8.tgz",
"integrity": "sha512-krKnHoiyYvdxZEtiyBqwma7+w3BbXBpwHFhVp99HoAEwz+AKaXdhroLBFEHzGg2fXmTsXGfpb9nx4NItXGJiAQ==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils": "^5.0.1",
"iltorb": "^2.4.3"
}
},
"@hint/hint-image-optimization-cloudinary": {
"version": "3.1.8",
"resolved": "https://registry.npmjs.org/@hint/hint-image-optimization-cloudinary/-/hint-image-optimization-cloudinary-3.1.8.tgz",
"integrity": "sha512-wasN4WLpsDMnn7ao3Sk9XDlnXwVcMtGJqf/m+/9bwIIUa0BOQoMng8RDDwY6/y9bhwioRlkEK4rrfh9jY7vPwg==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils": "^5.0.1",
"cloudinary": "^1.15.0",
"fs-extra": "^8.0.1",
"image-size": "^0.7.4"
}
},
"@hint/hint-manifest-app-name": {
"version": "2.3.8",
"resolved": "https://registry.npmjs.org/@hint/hint-manifest-app-name/-/hint-manifest-app-name-2.3.8.tgz",
"integrity": "sha512-rKexanijqeXqSJ9jLStfwv+7J0kB5S/WM8kRt542Y/9inr1u8yUUrdthw8Hi7mLeEucZ7uHxoC6VJDPjwTJocg==",
"dev": true,
"optional": true,
"requires": {
"punycode": "^2.1.1"
},
"dependencies": {
"punycode": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz",
"integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==",
"dev": true,
"optional": true
}
}
},
"@hint/hint-manifest-exists": {
"version": "2.3.8",
"resolved": "https://registry.npmjs.org/@hint/hint-manifest-exists/-/hint-manifest-exists-2.3.8.tgz",
"integrity": "sha512-blSD4dnl0tFUJ5OUuksJFK46SX2FHVBFXXo+1VmVE9j0rAF2u/axPe7/9c35+MzqOsbsxuNcpCcK0b6tlQyn2g==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils": "^5.0.1"
}
},
"@hint/hint-manifest-file-extension": {
"version": "2.3.8",
"resolved": "https://registry.npmjs.org/@hint/hint-manifest-file-extension/-/hint-manifest-file-extension-2.3.8.tgz",
"integrity": "sha512-IacxYMUZJR63861WlGSX8OJmExd2Bfn46rieYXw79B9cBFsYR6xj3qQiqo69/AEE+t6DJeyyGmhjZqNGILgUWg==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils": "^5.0.1"
}
},
"@hint/hint-manifest-is-valid": {
"version": "3.2.8",
"resolved": "https://registry.npmjs.org/@hint/hint-manifest-is-valid/-/hint-manifest-is-valid-3.2.8.tgz",
"integrity": "sha512-LFtPAidGmMDSg4EzmX8/At0NmvMv90jIHVjXo5Ya6J1RWoHMc5UYVxwsF/On3qfLmmKooP+DtZMgWFSZ5xrikg==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils": "^5.0.1",
"bcp47": "^1.1.2",
"color-string": "^1.5.3"
}
},
"@hint/hint-meta-charset-utf-8": {
"version": "3.2.8",
"resolved": "https://registry.npmjs.org/@hint/hint-meta-charset-utf-8/-/hint-meta-charset-utf-8-3.2.8.tgz",
"integrity": "sha512-yuiBkSIDYLtw/gv8Xf03YC9cmt7VHAzD2X3ujbaOc4yxP+n2LIO4X2ecZqHsWX38wmG+NLLAv1f19O6HqOWy0Q==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils": "^5.0.1"
}
},
"@hint/hint-meta-viewport": {
"version": "4.1.8",
"resolved": "https://registry.npmjs.org/@hint/hint-meta-viewport/-/hint-meta-viewport-4.1.8.tgz",
"integrity": "sha512-Q5uicj9QwIiPRyPrCwoYHzsMYjSWmP7bZ78ThRuFupUmSwsfn3A+eqiUFbYsC1PxtBSxjXkVHhWa0r0AfxJ9XQ==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils": "^5.0.1",
"metaviewport-parser": "^0.2.0"
}
},
"@hint/hint-no-bom": {
"version": "4.1.8",
"resolved": "https://registry.npmjs.org/@hint/hint-no-bom/-/hint-no-bom-4.1.8.tgz",
"integrity": "sha512-X1LWHXiRNUFK8IpzydSGYjxIcNw2Fssy6xDeOrFrxMkL2pubFuXia7odg/yj2UUPQ9T2TKMnGLvlmFCP6ginQw==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils": "^5.0.1"
}
},
"@hint/hint-no-disallowed-headers": {
"version": "2.3.8",
"resolved": "https://registry.npmjs.org/@hint/hint-no-disallowed-headers/-/hint-no-disallowed-headers-2.3.8.tgz",
"integrity": "sha512-XC7G/00cB0VmwRSqgP+w/gZ6BYRfcEs6/O9QGvQAcyUYgmXtqOvoawWpeFe+czd+/GHITx6vkoIx5CNfHn3wuQ==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils": "^5.0.1"
}
},
"@hint/hint-no-friendly-error-pages": {
"version": "3.2.8",
"resolved": "https://registry.npmjs.org/@hint/hint-no-friendly-error-pages/-/hint-no-friendly-error-pages-3.2.8.tgz",
"integrity": "sha512-EIKWMgQWoDGFv/gEb6fhWgWhgSRVaXrk08G8jp2dgImrceSKRXY3CDlIndAFjPpMmrNuxiq7sq0lPRHv+FuLwg==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils": "^5.0.1"
}
},
"@hint/hint-no-html-only-headers": {
"version": "2.3.8",
"resolved": "https://registry.npmjs.org/@hint/hint-no-html-only-headers/-/hint-no-html-only-headers-2.3.8.tgz",
"integrity": "sha512-64e1qVySB5DwexElhUT87TqbHVZUiKijOVYDs3VYk6fQ4VqzLIrE9Kyep7H3JzqzG56xmMIzmhjXK3crXZNDew==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils": "^5.0.1"
}
},
"@hint/hint-no-http-redirects": {
"version": "2.3.8",
"resolved": "https://registry.npmjs.org/@hint/hint-no-http-redirects/-/hint-no-http-redirects-2.3.8.tgz",
"integrity": "sha512-fk/F8ticz37s3VsMcjQuH/yAZjll9RsSpU2lnuOxZS+GAPlswOnK3GtpwsOIgyuy8+tohlskq6JZJm7JGxg9jw==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils": "^5.0.1"
}
},
"@hint/hint-no-protocol-relative-urls": {
"version": "2.3.8",
"resolved": "https://registry.npmjs.org/@hint/hint-no-protocol-relative-urls/-/hint-no-protocol-relative-urls-2.3.8.tgz",
"integrity": "sha512-1thkID4/INCzNc25txQPsjC8AkjZbakeFSbEqTm7YH4SFMAvGa/yTcsBnnkGnk+K0NsxEpYg3x4J4ieuqno4lw==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils": "^5.0.1"
}
},
"@hint/hint-no-vulnerable-javascript-libraries": {
"version": "2.9.8",
"resolved": "https://registry.npmjs.org/@hint/hint-no-vulnerable-javascript-libraries/-/hint-no-vulnerable-javascript-libraries-2.9.8.tgz",
"integrity": "sha512-OVOeqSFzVhcbjFMlr2u6msmEMoRxSx9YV57x+p5JFUlOA977WVLUFBAKFQo4Utwr9ZtrdlHyxbKTdSzB/VhB6w==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils": "^5.0.1",
"js-library-detector": "^5.4.0",
"lodash": "^4.17.15",
"semver": "^6.3.0"
}
},
"@hint/hint-scoped-svg-styles": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/@hint/hint-scoped-svg-styles/-/hint-scoped-svg-styles-1.1.2.tgz",
"integrity": "sha512-VUZFT8zYrwq3HejTmSullQxLPh/0UWRoE1cqPipdgv6nsgiSW3+mR3kIVruqSykeRa7ccrMUvA0JgP+gmNsJQg==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils": "^5.0.1"
}
},
"@hint/hint-sri": {
"version": "3.2.8",
"resolved": "https://registry.npmjs.org/@hint/hint-sri/-/hint-sri-3.2.8.tgz",
"integrity": "sha512-Gb2ljCmLpYROD9eNP56GEbracr2W+bC/io08HgTn790oWZ9ojFADc1tQOMBDhGVFyupVYHGDzRW61gNN+rRHKA==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils": "^5.0.1"
}
},
"@hint/hint-ssllabs": {
"version": "2.3.8",
"resolved": "https://registry.npmjs.org/@hint/hint-ssllabs/-/hint-ssllabs-2.3.8.tgz",
"integrity": "sha512-pfyfvJFasV2ybaPl2hADTl94H3j1oNU5iBpYHwzecOW8PNeYnBRPiLMl9tpj25k1ky66UKjhI9gGiODHcCmRFQ==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils": "^5.0.1",
"node-ssllabs": "^1.1.2"
}
},
"@hint/hint-strict-transport-security": {
"version": "2.3.8",
"resolved": "https://registry.npmjs.org/@hint/hint-strict-transport-security/-/hint-strict-transport-security-2.3.8.tgz",
"integrity": "sha512-2GvEQtMME0KMq3HHC88I6pkcV3EKfMHS9gQAkEly4YriPXUkiMDkyrFKQ6AVOgMUfSsboG3bkcM4nKMdzDd5Ow==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils": "^5.0.1"
}
},
"@hint/hint-stylesheet-limits": {
"version": "3.2.8",
"resolved": "https://registry.npmjs.org/@hint/hint-stylesheet-limits/-/hint-stylesheet-limits-3.2.8.tgz",
"integrity": "sha512-uMDt4oIjQVJ1sT69m7Ch61J0iNcCVXI0l4I0yKMSgigXQzbtPC+P06EzMVZOCt4QVBkFulhrr6Nv6ZNfxscOkg==",
"dev": true,
"optional": true
},
"@hint/hint-typescript-config": {
"version": "2.3.8",
"resolved": "https://registry.npmjs.org/@hint/hint-typescript-config/-/hint-typescript-config-2.3.8.tgz",
"integrity": "sha512-5qv+Ghs+ACm1zSTMU1j4G/atTXnUU8A/fh7US1n6yeugzJVHMNB12WSLyDyGBsgotleIdIO0yF5DxDqtiPqbWw==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils": "^5.0.1"
}
},
"@hint/hint-validate-set-cookie-header": {
"version": "2.3.8",
"resolved": "https://registry.npmjs.org/@hint/hint-validate-set-cookie-header/-/hint-validate-set-cookie-header-2.3.8.tgz",
"integrity": "sha512-/2jwpbPBHKM0kb2P1Haw0qUnwQRgcxjgoQ/l0QdloFe9p3Cu17t39lEX8HZ3jp5NaX6nQhUEt3wgb0jRogIBpQ==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils": "^5.0.1"
}
},
"@hint/hint-webpack-config": {
"version": "2.3.8",
"resolved": "https://registry.npmjs.org/@hint/hint-webpack-config/-/hint-webpack-config-2.3.8.tgz",
"integrity": "sha512-mZllrp65KSKDMi61LYyeVW+QaT+59QI95FG7GMqq1Sj5ehh0tlimCWeYuMZkNqMh1OKJXSg+o3vIkCLNHtK9TQ==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils": "^5.0.1"
}
},
"@hint/hint-x-content-type-options": {
"version": "3.2.8",
"resolved": "https://registry.npmjs.org/@hint/hint-x-content-type-options/-/hint-x-content-type-options-3.2.8.tgz",
"integrity": "sha512-v+36cHTwHAXnRIjcSIOIJrDFCsYy6As7OjqdzGci1SlIXovBFuFXMqGubL/cWTrL+1Ti5lQDvKLoEKXIrabt4Q==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils": "^5.0.1"
}
},
"@hint/parser-babel-config": {
"version": "2.1.11",
"resolved": "https://registry.npmjs.org/@hint/parser-babel-config/-/parser-babel-config-2.1.11.tgz",
"integrity": "sha512-tPCX1pnyXqtC87MQ7nvsGOOBdwoxRoDYGOIXd1fmgdAH1mMNnxLPSJVtcGe1YKTShVuCUyRDJFoTwsMaMYk2mA==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils": "^5.0.1",
"lodash": "^4.17.15"
}
},
"@hint/parser-css": {
"version": "3.0.11",
"resolved": "https://registry.npmjs.org/@hint/parser-css/-/parser-css-3.0.11.tgz",
"integrity": "sha512-/TN8GJkuNnZqrZf0FRnhCAfYN4x7+gIKxNec9Q0cVWAMdLt0m1awOBOyZTP+eWCKAL01xuc+xBhF3f7PNhZclQ==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils": "^5.0.1",
"postcss": "^7.0.18",
"postcss-safe-parser": "^4.0.1"
}
},
"@hint/parser-html": {
"version": "3.0.9",
"resolved": "https://registry.npmjs.org/@hint/parser-html/-/parser-html-3.0.9.tgz",
"integrity": "sha512-lu27ULCJ0ox1BGhcCzLbWaArDCBQ15em9jd0Oj+mUjWz0JaGj/Cn3dbcL6Ak3dqtCw34hD+l5uI9IMjcr70UeA==",
"dev": true,
"optional": true,
"requires": {
"jsdom": "^15.1.1"
}
},
"@hint/parser-javascript": {
"version": "3.0.11",
"resolved": "https://registry.npmjs.org/@hint/parser-javascript/-/parser-javascript-3.0.11.tgz",
"integrity": "sha512-4NeeANyW9ru5wfK3J+LZ16eUZllVLA9BWBSHl7dZij9cM+Un1gnG7eLCaQcuZwNXn/A413zURTrnLSFN9dBtWw==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils": "^5.0.1",
"acorn": "^7.0.0",
"acorn-walk": "^7.0.0"
}
},
"@hint/parser-less": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/@hint/parser-less/-/parser-less-1.0.3.tgz",
"integrity": "sha512-KQtY5GBwCZeo79hTVOXoRYvaKl5ZefwGEMEJIdk/3Sf35QKSd2rSxVn8qSlYnEM4gyIMsVzIdRe9sWreWoeYcQ==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils": "^5.0.1",
"postcss": "^7.0.18",
"postcss-less": "^3.1.4"
}
},
"@hint/parser-manifest": {
"version": "2.2.9",
"resolved": "https://registry.npmjs.org/@hint/parser-manifest/-/parser-manifest-2.2.9.tgz",
"integrity": "sha512-24Gi03IlsYWlyijLfOivkWIiv7WEKMwKf8lEV+Ts9uZCEafH/thWOc4kAI5DvpgYBUx4veox6Dz0TiIi3qf5Qg==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils": "^5.0.1"
}
},
"@hint/parser-sass": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/@hint/parser-sass/-/parser-sass-1.0.3.tgz",
"integrity": "sha512-EnvIHW6zKCuhs2bkSBlI2Oz9TnQHF2CxlCboJU76Rlg2fOtQfBffvmYDkaSj5MGzdnZEaCKsyUMeJ9QG2cnctQ==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils": "^5.0.1",
"postcss": "^7.0.18",
"postcss-sass": "^0.4.1",
"postcss-scss": "^2.0.0"
}
},
"@hint/parser-typescript-config": {
"version": "2.3.8",
"resolved": "https://registry.npmjs.org/@hint/parser-typescript-config/-/parser-typescript-config-2.3.8.tgz",
"integrity": "sha512-oJ48HT4I1hes2Nm7STCAZ4ORVJT8mmiNiH19+PzL4qapFgcObs52miZybD6FRJ2SW2EEEymR/d/2e1h4QzXKdw==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils": "^5.0.1",
"lodash": "^4.17.15"
}
},
"@hint/parser-webpack-config": {
"version": "2.1.11",
"resolved": "https://registry.npmjs.org/@hint/parser-webpack-config/-/parser-webpack-config-2.1.11.tgz",
"integrity": "sha512-O3u0Eos5sJDHjAuS3kW3rOdAbt4y2qXjaWM1McNfp/PFJ6C+pQlHvf9vQapetwduSkuE+20f9Z5cyjc4JDT48w==",
"dev": true,
"optional": true,
"requires": {
"@hint/utils": "^5.0.1"
}
},
"@hint/utils": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/@hint/utils/-/utils-5.0.1.tgz",
"integrity": "sha512-gLQkavV8BSbZqrjXkSkrsksSpdu7k6QFT0M7fN8bshU6zhigxshxJi6hNrb26IwnebK3khLw55dePbX5wurO6Q==",
"dev": true,
"requires": {
"@types/parse5": "^5.0.2",
"ajv": "^6.10.1",
"applicationinsights": "^1.4.2",
"configstore": "^5.0.0",
"content-type": "^1.0.4",
"css-select": "^2.0.2",
"debug": "^4.1.1",
"eventemitter2": "^5.0.1",
"file-type": "^12.3.0",
"file-url": "^3.0.0",
"globby": "^10.0.1",
"is-svg": "^4.2.0",
"is-wsl": "^2.1.0",
"jsonc-parser": "^2.1.1",
"lodash": "^4.17.15",
"mdn-browser-compat-data": "^0.0.93",
"npm-registry-fetch": "^4.0.0",
"parse5": "^5.1.0",
"parse5-htmlparser2-tree-adapter": "^5.1.0",
"postcss": "^7.0.18",
"postcss-selector-parser": "^6.0.2",
"postcss-value-parser": "^4.0.2",
"request": "^2.88.0",
"semver": "^6.3.0",
"strip-bom": "^4.0.0",
"strip-json-comments": "^3.0.1"
},
"dependencies": {
"debug": {
"version": "4.1.1",
"resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz",
"integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==",
"dev": true,
"requires": {
"ms": "^2.1.1"
}