This repository has been archived by the owner on Dec 4, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage-lock.json
13625 lines (13625 loc) · 536 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
{
"version": "0.16.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"@ava/babel-plugin-throws-helper": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/@ava/babel-plugin-throws-helper/-/babel-plugin-throws-helper-4.0.0.tgz",
"integrity": "sha512-3diBLIVBPPh3j4+hb5lo0I1D+S/O/VDJPI4Y502apBxmwEqjyXG4gTSPFUlm41sSZeZzMarT/Gzovw9kV7An0w==",
"dev": true
},
"@ava/babel-preset-stage-4": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/@ava/babel-preset-stage-4/-/babel-preset-stage-4-4.0.0.tgz",
"integrity": "sha512-lZEV1ZANzfzSYBU6WHSErsy7jLPbD1iIgAboASPMcKo7woVni5/5IKWeT0RxC8rY802MFktur3OKEw2JY1Tv2w==",
"dev": true,
"requires": {
"@babel/plugin-proposal-async-generator-functions": "^7.2.0",
"@babel/plugin-proposal-dynamic-import": "^7.5.0",
"@babel/plugin-proposal-optional-catch-binding": "^7.2.0",
"@babel/plugin-transform-dotall-regex": "^7.4.4",
"@babel/plugin-transform-modules-commonjs": "^7.5.0"
}
},
"@ava/babel-preset-transform-test-files": {
"version": "6.0.0",
"resolved": "https://registry.npmjs.org/@ava/babel-preset-transform-test-files/-/babel-preset-transform-test-files-6.0.0.tgz",
"integrity": "sha512-8eKhFzZp7Qcq1VLfoC75ggGT8nQs9q8fIxltU47yCB7Wi7Y8Qf6oqY1Bm0z04fIec24vEgr0ENhDHEOUGVDqnA==",
"dev": true,
"requires": {
"@ava/babel-plugin-throws-helper": "^4.0.0",
"babel-plugin-espower": "^3.0.1"
}
},
"@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": {
"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.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"
},
"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-annotate-as-pure": {
"version": "7.0.0",
"resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.0.0.tgz",
"integrity": "sha512-3UYcJUj9kvSLbLbUIfQTqzcy5VX7GRZ/CCDrnOaZorFFM01aXp1+GJwuFGV4NDDoAS+mOUyHcO6UD/RfqOks3Q==",
"dev": true,
"requires": {
"@babel/types": "^7.0.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-module-imports": {
"version": "7.0.0",
"resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.0.0.tgz",
"integrity": "sha512-aP/hlLq01DWNEiDg4Jn23i+CXxW/owM4WpDLFUbpjxe4NS3BhLVZQ5i7E0ZrxuQ/vwekIeciyamgB1UIYxxM6A==",
"dev": true,
"requires": {
"@babel/types": "^7.0.0"
}
},
"@babel/helper-module-transforms": {
"version": "7.5.5",
"resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.5.5.tgz",
"integrity": "sha512-jBeCvETKuJqeiaCdyaheF40aXnnU1+wkSiUs/IQg3tB85up1LyL8x77ClY8qJpuRJUcXQo+ZtdNESmZl4j56Pw==",
"dev": true,
"requires": {
"@babel/helper-module-imports": "^7.0.0",
"@babel/helper-simple-access": "^7.1.0",
"@babel/helper-split-export-declaration": "^7.4.4",
"@babel/template": "^7.4.4",
"@babel/types": "^7.5.5",
"lodash": "^4.17.13"
}
},
"@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-regex": {
"version": "7.5.5",
"resolved": "https://registry.npmjs.org/@babel/helper-regex/-/helper-regex-7.5.5.tgz",
"integrity": "sha512-CkCYQLkfkiugbRDO8eZn6lRuR8kzZoGXCg3149iTk5se7g6qykSpy3+hELSwquhu+TgHn8nkLiBwHvNX8Hofcw==",
"dev": true,
"requires": {
"lodash": "^4.17.13"
}
},
"@babel/helper-remap-async-to-generator": {
"version": "7.1.0",
"resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.1.0.tgz",
"integrity": "sha512-3fOK0L+Fdlg8S5al8u/hWE6vhufGSn0bN09xm2LXMy//REAF8kDCrYoOBKYmA8m5Nom+sV9LyLCwrFynA8/slg==",
"dev": true,
"requires": {
"@babel/helper-annotate-as-pure": "^7.0.0",
"@babel/helper-wrap-function": "^7.1.0",
"@babel/template": "^7.1.0",
"@babel/traverse": "^7.1.0",
"@babel/types": "^7.0.0"
}
},
"@babel/helper-simple-access": {
"version": "7.1.0",
"resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.1.0.tgz",
"integrity": "sha512-Vk+78hNjRbsiu49zAPALxTb+JUQCz1aolpd8osOF16BGnLtseD21nbHgLPGUwrXEurZgiCOUmvs3ExTu4F5x6w==",
"dev": true,
"requires": {
"@babel/template": "^7.1.0",
"@babel/types": "^7.0.0"
}
},
"@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/helper-wrap-function": {
"version": "7.2.0",
"resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.2.0.tgz",
"integrity": "sha512-o9fP1BZLLSrYlxYEYyl2aS+Flun5gtjTIG8iln+XuEzQTs0PLagAGSXUcqruJwD5fM48jzIEggCKpIfWTcR7pQ==",
"dev": true,
"requires": {
"@babel/helper-function-name": "^7.1.0",
"@babel/template": "^7.1.0",
"@babel/traverse": "^7.1.0",
"@babel/types": "^7.2.0"
}
},
"@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-proposal-async-generator-functions": {
"version": "7.2.0",
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.2.0.tgz",
"integrity": "sha512-+Dfo/SCQqrwx48ptLVGLdE39YtWRuKc/Y9I5Fy0P1DDBB9lsAHpjcEJQt+4IifuSOSTLBKJObJqMvaO1pIE8LQ==",
"dev": true,
"requires": {
"@babel/helper-plugin-utils": "^7.0.0",
"@babel/helper-remap-async-to-generator": "^7.1.0",
"@babel/plugin-syntax-async-generators": "^7.2.0"
}
},
"@babel/plugin-proposal-dynamic-import": {
"version": "7.5.0",
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.5.0.tgz",
"integrity": "sha512-x/iMjggsKTFHYC6g11PL7Qy58IK8H5zqfm9e6hu4z1iH2IRyAp9u9dL80zA6R76yFovETFLKz2VJIC2iIPBuFw==",
"dev": true,
"requires": {
"@babel/helper-plugin-utils": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0"
}
},
"@babel/plugin-proposal-optional-catch-binding": {
"version": "7.2.0",
"resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.2.0.tgz",
"integrity": "sha512-mgYj3jCcxug6KUcX4OBoOJz3CMrwRfQELPQ5560F70YQUBZB7uac9fqaWamKR1iWUzGiK2t0ygzjTScZnVz75g==",
"dev": true,
"requires": {
"@babel/helper-plugin-utils": "^7.0.0",
"@babel/plugin-syntax-optional-catch-binding": "^7.2.0"
}
},
"@babel/plugin-syntax-async-generators": {
"version": "7.2.0",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.2.0.tgz",
"integrity": "sha512-1ZrIRBv2t0GSlcwVoQ6VgSLpLgiN/FVQUzt9znxo7v2Ov4jJrs8RY8tv0wvDmFN3qIdMKWrmMMW6yZ0G19MfGg==",
"dev": true,
"requires": {
"@babel/helper-plugin-utils": "^7.0.0"
}
},
"@babel/plugin-syntax-dynamic-import": {
"version": "7.2.0",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.2.0.tgz",
"integrity": "sha512-mVxuJ0YroI/h/tbFTPGZR8cv6ai+STMKNBq0f8hFxsxWjl94qqhsb+wXbpNMDPU3cfR1TIsVFzU3nXyZMqyK4w==",
"dev": true,
"requires": {
"@babel/helper-plugin-utils": "^7.0.0"
}
},
"@babel/plugin-syntax-optional-catch-binding": {
"version": "7.2.0",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.2.0.tgz",
"integrity": "sha512-bDe4xKNhb0LI7IvZHiA13kff0KEfaGX/Hv4lMA9+7TEc63hMNvfKo6ZFpXhKuEp+II/q35Gc4NoMeDZyaUbj9w==",
"dev": true,
"requires": {
"@babel/helper-plugin-utils": "^7.0.0"
}
},
"@babel/plugin-transform-dotall-regex": {
"version": "7.6.2",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.6.2.tgz",
"integrity": "sha512-KGKT9aqKV+9YMZSkowzYoYEiHqgaDhGmPNZlZxX6UeHC4z30nC1J9IrZuGqbYFB1jaIGdv91ujpze0exiVK8bA==",
"dev": true,
"requires": {
"@babel/helper-plugin-utils": "^7.0.0",
"@babel/helper-regex": "^7.4.4",
"regexpu-core": "^4.6.0"
}
},
"@babel/plugin-transform-modules-commonjs": {
"version": "7.6.0",
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.6.0.tgz",
"integrity": "sha512-Ma93Ix95PNSEngqomy5LSBMAQvYKVe3dy+JlVJSHEXZR5ASL9lQBedMiCyVtmTLraIDVRE3ZjTZvmXXD2Ozw3g==",
"dev": true,
"requires": {
"@babel/helper-module-transforms": "^7.4.4",
"@babel/helper-plugin-utils": "^7.0.0",
"@babel/helper-simple-access": "^7.1.0",
"babel-plugin-dynamic-import-node": "^2.3.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"
}
},
"@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"
}
},
"@concordance/react": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/@concordance/react/-/react-2.0.0.tgz",
"integrity": "sha512-huLSkUuM2/P+U0uy2WwlKuixMsTODD8p4JVQBI4VKeopkiN0C7M3N9XYVawb4M+4spN5RrO/eLhk7KoQX6nsfA==",
"dev": true,
"requires": {
"arrify": "^1.0.1"
},
"dependencies": {
"arrify": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz",
"integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=",
"dev": true
}
}
},
"@destinationstransfers/ntp": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/@destinationstransfers/ntp/-/ntp-2.0.0.tgz",
"integrity": "sha512-0gYbtXpyNlk0p+jWy+lftUkB+uJIBjNUWTB2tv7/fxl8zO3pQsaVFDLFDozbQ1wnYw/PrHDeRdYwAg2frY48Tg=="
},
"@hint/configuration-accessibility": {
"version": "1.0.11",
"resolved": "https://registry.npmjs.org/@hint/configuration-accessibility/-/configuration-accessibility-1.0.11.tgz",
"integrity": "sha512-AObfzqtnFkGNAr67Km1jvHod9HhQHVeeUeAoNbtNWMuKwU7/5d6arGvSaO8A+mRt6sDb/yaT2SeZEFtQ7TQY3g==",
"optional": true,
"requires": {
"@hint/connector-puppeteer": "^2.4.0",
"@hint/formatter-html": "^4.1.10",
"@hint/formatter-summary": "^3.0.14",
"@hint/hint-axe": "^4.2.0"
}
},
"@hint/configuration-all": {
"version": "1.0.13",
"resolved": "https://registry.npmjs.org/@hint/configuration-all/-/configuration-all-1.0.13.tgz",
"integrity": "sha512-1X2pdAVO7Pai41X4kR2495QD3spUsT8XY7lhaDVH3K9ZEEfKB8DqlRwKXbR2eqg4AZP/whfHaC9M224ky/W2mQ==",
"requires": {
"@hint/configuration-accessibility": "^1.0.11",
"@hint/configuration-development": "^7.3.1",
"@hint/configuration-progressive-web-apps": "^6.0.11",
"@hint/configuration-web-recommended": "^7.2.7",
"@hint/connector-jsdom": "^4.1.0",
"@hint/connector-local": "^3.2.0",
"@hint/connector-puppeteer": "^2.4.0",
"@hint/extension-browser": "^1.2.1",
"@hint/formatter-codeframe": "^3.1.11",
"@hint/formatter-excel": "^3.1.11",
"@hint/formatter-html": "^4.1.10",
"@hint/formatter-json": "^3.1.11",
"@hint/formatter-stylish": "^3.1.11",
"@hint/formatter-summary": "^3.0.14",
"@hint/hint-amp-validator": "^2.9.13",
"@hint/hint-apple-touch-icons": "^3.1.11",
"@hint/hint-axe": "^4.2.0",
"@hint/hint-babel-config": "^2.3.11",
"@hint/hint-button-type": "^2.2.11",
"@hint/hint-compat-api": "^4.2.0",
"@hint/hint-content-type": "^4.1.11",
"@hint/hint-create-element-svg": "^1.2.11",
"@hint/hint-css-prefix-order": "^1.3.0",
"@hint/hint-disown-opener": "^3.2.11",
"@hint/hint-doctype": "^3.2.11",
"@hint/hint-highest-available-document-mode": "^4.1.11",
"@hint/hint-html-checker": "^3.2.11",
"@hint/hint-http-cache": "^3.2.11",
"@hint/hint-http-compression": "^5.1.11",
"@hint/hint-https-only": "^2.3.11",
"@hint/hint-image-optimization-cloudinary": "^3.1.11",
"@hint/hint-manifest-app-name": "^2.3.11",
"@hint/hint-manifest-exists": "^2.3.11",
"@hint/hint-manifest-file-extension": "^2.3.11",
"@hint/hint-manifest-is-valid": "^3.2.11",
"@hint/hint-meta-charset-utf-8": "^3.2.11",
"@hint/hint-meta-theme-color": "^3.1.11",
"@hint/hint-meta-viewport": "^4.1.11",
"@hint/hint-minified-js": "^2.3.11",
"@hint/hint-no-bom": "^4.1.11",
"@hint/hint-no-broken-links": "^4.1.11",
"@hint/hint-no-disallowed-headers": "^2.3.11",
"@hint/hint-no-friendly-error-pages": "^3.2.11",
"@hint/hint-no-html-only-headers": "^2.3.11",
"@hint/hint-no-http-redirects": "^2.3.11",
"@hint/hint-no-p3p": "^3.2.11",
"@hint/hint-no-protocol-relative-urls": "^2.3.11",
"@hint/hint-no-vulnerable-javascript-libraries": "^2.10.0",
"@hint/hint-performance-budget": "^2.3.11",
"@hint/hint-scoped-svg-styles": "^1.2.0",
"@hint/hint-sri": "^3.2.11",
"@hint/hint-ssllabs": "^2.3.11",
"@hint/hint-strict-transport-security": "^2.3.11",
"@hint/hint-stylesheet-limits": "^3.2.11",
"@hint/hint-typescript-config": "^2.3.11",
"@hint/hint-validate-set-cookie-header": "^2.3.11",
"@hint/hint-webpack-config": "^2.3.11",
"@hint/hint-x-content-type-options": "^3.2.11",
"@hint/parser-babel-config": "^2.1.14",
"@hint/parser-css": "^3.0.14",
"@hint/parser-html": "^3.0.11",
"@hint/parser-javascript": "^3.1.0",
"@hint/parser-jsx": "^1.0.1",
"@hint/parser-less": "^1.0.6",
"@hint/parser-manifest": "^2.2.12",
"@hint/parser-package-json": "^1.1.14",
"@hint/parser-sass": "^1.0.6",
"@hint/parser-typescript": "^1.0.1",
"@hint/parser-typescript-config": "^2.4.0",
"@hint/parser-webpack-config": "^2.1.14",
"vscode-webhint": "^1.4.1"
},
"dependencies": {
"@hint/configuration-accessibility": {
"version": "1.0.11",
"resolved": "https://registry.npmjs.org/@hint/configuration-accessibility/-/configuration-accessibility-1.0.11.tgz",
"integrity": "sha512-AObfzqtnFkGNAr67Km1jvHod9HhQHVeeUeAoNbtNWMuKwU7/5d6arGvSaO8A+mRt6sDb/yaT2SeZEFtQ7TQY3g==",
"requires": {
"@hint/connector-puppeteer": "^2.4.0",
"@hint/formatter-html": "^4.1.10",
"@hint/formatter-summary": "^3.0.14",
"@hint/hint-axe": "^4.2.0"
}
},
"@hint/configuration-progressive-web-apps": {
"version": "6.0.11",
"resolved": "https://registry.npmjs.org/@hint/configuration-progressive-web-apps/-/configuration-progressive-web-apps-6.0.11.tgz",
"integrity": "sha512-7Plc6mDH3uwnExjuziruoeIfrUVEaXAK2fodrhh5mp3sDyyqzvlhTeBmoDDs+gi1+W5zTQga7oCvY0qxgwiarQ==",
"requires": {
"@hint/connector-jsdom": "^4.1.0",
"@hint/connector-puppeteer": "^2.4.0",
"@hint/formatter-html": "^4.1.10",
"@hint/formatter-summary": "^3.0.14",
"@hint/hint-apple-touch-icons": "^3.1.11",
"@hint/hint-manifest-app-name": "^2.3.11",
"@hint/hint-manifest-exists": "^2.3.11",
"@hint/hint-manifest-file-extension": "^2.3.11",
"@hint/hint-manifest-is-valid": "^3.2.11",
"@hint/parser-manifest": "^2.2.12"
}
},
"@hint/configuration-web-recommended": {
"version": "7.2.7",
"resolved": "https://registry.npmjs.org/@hint/configuration-web-recommended/-/configuration-web-recommended-7.2.7.tgz",
"integrity": "sha512-CJZib+BR/RH4n88NHUNzjiWcHak7r83+eXSAfYbjRCahId494ZLfS0k19pwJUAkifkkwlYbp0dN+6+feLhWFjA==",
"requires": {
"@hint/configuration-accessibility": "^1.0.11",
"@hint/connector-jsdom": "^4.1.0",
"@hint/connector-local": "^3.2.0",
"@hint/connector-puppeteer": "^2.4.0",
"@hint/formatter-html": "^4.1.10",
"@hint/formatter-stylish": "^3.1.11",
"@hint/formatter-summary": "^3.0.14",
"@hint/hint-button-type": "^2.2.11",
"@hint/hint-compat-api": "^4.2.0",
"@hint/hint-content-type": "^4.1.11",
"@hint/hint-create-element-svg": "^1.2.11",
"@hint/hint-css-prefix-order": "^1.3.0",
"@hint/hint-disown-opener": "^3.2.11",
"@hint/hint-highest-available-document-mode": "^4.1.11",
"@hint/hint-html-checker": "^3.2.11",
"@hint/hint-http-cache": "^3.2.11",
"@hint/hint-http-compression": "^5.1.11",
"@hint/hint-image-optimization-cloudinary": "^3.1.11",
"@hint/hint-meta-charset-utf-8": "^3.2.11",
"@hint/hint-meta-viewport": "^4.1.11",
"@hint/hint-no-bom": "^4.1.11",
"@hint/hint-no-disallowed-headers": "^2.3.11",
"@hint/hint-no-friendly-error-pages": "^3.2.11",
"@hint/hint-no-html-only-headers": "^2.3.11",
"@hint/hint-no-http-redirects": "^2.3.11",
"@hint/hint-no-protocol-relative-urls": "^2.3.11",
"@hint/hint-no-vulnerable-javascript-libraries": "^2.10.0",
"@hint/hint-scoped-svg-styles": "^1.2.0",
"@hint/hint-sri": "^3.2.11",
"@hint/hint-ssllabs": "^2.3.11",
"@hint/hint-strict-transport-security": "^2.3.11",
"@hint/hint-stylesheet-limits": "^3.2.11",
"@hint/hint-validate-set-cookie-header": "^2.3.11",
"@hint/hint-x-content-type-options": "^3.2.11",
"@hint/parser-css": "^3.0.14",
"@hint/parser-html": "^3.0.11",
"@hint/parser-javascript": "^3.1.0"
}
},
"@hint/connector-jsdom": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/@hint/connector-jsdom/-/connector-jsdom-4.1.0.tgz",
"integrity": "sha512-47dnm6PWilRWlDP8nEKbDtG/xz8eH+NbI7xqo4MkilQfoahpX75AvCP2/V3qetfgz0FM+suTDYZ/V+QK6YolZQ==",
"requires": {
"@hint/utils": "^6.1.0",
"@hint/utils-connector-tools": "^4.0.14",
"@types/tough-cookie": "^2.3.5",
"canvas": "^2.6.0",
"jsdom": "^15.2.0",
"mutationobserver-shim": "^0.3.3"
}
},
"@hint/connector-local": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/@hint/connector-local/-/connector-local-3.2.0.tgz",
"integrity": "sha512-OpFhKekJka54xwsU/rv5B+Ju8HhxqU9vwstTn9iL8UK4Pj/yFnbTqdmxIQlvbfPgXd5HJoD8pNWBxo7jrLuVMg==",
"requires": {
"@hint/utils": "^6.1.0",
"chokidar": "^3.0.2",
"globby": "^10.0.1",
"jsdom": "^15.2.0"
}
},
"@hint/connector-puppeteer": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@hint/connector-puppeteer/-/connector-puppeteer-2.4.0.tgz",
"integrity": "sha512-SCoFxvmZ9yPhRSsTl33VBVDRWq/CbEIipiu8YTVpghecpnt3nF7P5Q349zaVk4eOVeej/hAwVUtLrDZYA2og3w==",
"requires": {
"@hint/utils": "^6.1.0",
"@hint/utils-connector-tools": "^4.0.14",
"is-ci": "^2.0.0",
"lockfile": "^1.0.4",
"puppeteer-core": "^1.20.0"
}
},
"@hint/formatter-html": {
"version": "4.1.10",
"resolved": "https://registry.npmjs.org/@hint/formatter-html/-/formatter-html-4.1.10.tgz",
"integrity": "sha512-9W13JSy8Kp9Rddx7dslQOentrFMaECh9htLBTHYeIAFhXd1UejmjfWxfn/Vpxma+T7CychjDFI+Ccv7Dm99MIg==",
"requires": {
"@hint/utils": "^6.1.0",
"ejs": "^2.7.1",
"fs-extra": "^8.0.1",
"lodash": "^4.17.15",
"moment": "^2.24.0"
}
},
"@hint/formatter-stylish": {
"version": "3.1.11",
"resolved": "https://registry.npmjs.org/@hint/formatter-stylish/-/formatter-stylish-3.1.11.tgz",
"integrity": "sha512-t3p+CgiSl1IVgZd0MRxdzkTZH5w7Q2ennHFsiKXsHQ1jjz1mtyepF+z32FqyS23lJP1ADNnU1PuFED10+c0Tgg==",
"requires": {
"@hint/utils": "^6.1.0",
"chalk": "^2.4.2",
"lodash": "^4.17.15",
"log-symbols": "^3.0.0",
"strip-ansi": "^5.1.0",
"text-table": "^0.2.0"
}
},
"@hint/formatter-summary": {
"version": "3.0.14",
"resolved": "https://registry.npmjs.org/@hint/formatter-summary/-/formatter-summary-3.0.14.tgz",
"integrity": "sha512-pX529VAo/FjakFDZXPDJVeAKg7LYZPm9iqUjwB8x0F1LVRBA7W0yGMCobtznMdr8F5DXHVrKqfxcfeDa2YjqWg==",
"requires": {
"@hint/utils": "^6.1.0",
"chalk": "^2.4.2",
"lodash": "^4.17.15",
"log-symbols": "^3.0.0",
"strip-ansi": "^5.1.0",
"text-table": "^0.2.0"
}
},
"@hint/hint-apple-touch-icons": {
"version": "3.1.11",
"resolved": "https://registry.npmjs.org/@hint/hint-apple-touch-icons/-/hint-apple-touch-icons-3.1.11.tgz",
"integrity": "sha512-W12fXsU0sqi1uzP0+05UOSmZtfWjlgwnSJDiE2iyFhHVCfP9ATC+1yAV2ozGi/LStJqJoo1qdjRJkCxbCCUIxQ==",
"requires": {
"@hint/utils": "^6.1.0",
"image-size": "^0.8.3"
}
},
"@hint/hint-axe": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/@hint/hint-axe/-/hint-axe-4.2.0.tgz",
"integrity": "sha512-hlOCVOA0abokzVSlBV6itgwWBFPSxf8irZriaSo9Why9shLBEjyB8aCdH4on3Vyn/7Vmn3fT0YrpjVtq6UnsBw==",
"requires": {
"@hint/utils": "^6.1.0",
"axe-core": "^3.4.0"
}
},
"@hint/hint-babel-config": {
"version": "2.3.11",
"resolved": "https://registry.npmjs.org/@hint/hint-babel-config/-/hint-babel-config-2.3.11.tgz",
"integrity": "sha512-zst8uI9vwMRiIgnvLEb7oZnehx82ndSQBb+qmPUXrghUG7Vnqk5siuoFHUMoTk4Ac5tuVN7rwHAzkEDitLbKHQ==",
"requires": {
"@hint/utils": "^6.1.0"
}
},
"@hint/hint-button-type": {
"version": "2.2.11",
"resolved": "https://registry.npmjs.org/@hint/hint-button-type/-/hint-button-type-2.2.11.tgz",
"integrity": "sha512-YbmCzvA2+7JRxLLQZq9m/zIaydsrb35vZXMWBY5vHTDVVkRrrfseXIMIxsnoCKUgDei2tWDPhpLuC2Uz41lNsA==",
"requires": {
"@hint/utils": "^6.1.0"
}
},
"@hint/hint-compat-api": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/@hint/hint-compat-api/-/hint-compat-api-4.2.0.tgz",
"integrity": "sha512-RZyLmD5pGHx0Ea4vdFxsz0AsKR8mBVHkVLZQ/BF8XSM/oa3nVgWL3gIdyxnsAfGxhSHCZt7mDSbCY26tWwCBHA==",
"requires": {
"@hint/utils": "^6.1.0",
"@hint/utils-compat-data": "^1.0.1",
"lodash": "^4.17.15"
}
},
"@hint/hint-content-type": {
"version": "4.1.11",
"resolved": "https://registry.npmjs.org/@hint/hint-content-type/-/hint-content-type-4.1.11.tgz",
"integrity": "sha512-bE6YbSvy0l3vdc+sUaWNXodNUMN/tPC3YNDCep9GHwUk6yUSBlLU62s0tQDb7PcaDOQKgmXoMgQ+ZkOm8VvMbg==",
"requires": {
"@hint/utils": "^6.1.0",
"content-type": "^1.0.4"
}
},
"@hint/hint-create-element-svg": {
"version": "1.2.11",
"resolved": "https://registry.npmjs.org/@hint/hint-create-element-svg/-/hint-create-element-svg-1.2.11.tgz",
"integrity": "sha512-ItsQmRDHNF8mfbnS+QN4ad0Y896LEhVWG6eAhLPneP8Mxje/DpHhmkXHGyzYIxiJoOMvfyAtmfWgdBVwrOzJzQ==",
"requires": {
"@hint/utils": "^6.1.0"
}
},
"@hint/hint-css-prefix-order": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/@hint/hint-css-prefix-order/-/hint-css-prefix-order-1.3.0.tgz",
"integrity": "sha512-i2HdnQWLGplu5Wmv3nalId3QR9ZNpom15N8agqTjIwgZ8PqMavEDDJoSgpKbGsiXLKJZuiCVD1RSuoKAn1tAvA==",
"requires": {
"@hint/utils": "^6.1.0",
"postcss": "^7.0.21"
}
},
"@hint/hint-disown-opener": {
"version": "3.2.11",
"resolved": "https://registry.npmjs.org/@hint/hint-disown-opener/-/hint-disown-opener-3.2.11.tgz",
"integrity": "sha512-NmAx3QCm0/ZHRkdP31yZZi0hoLGxBr9namstHZS4hCJ77qlBrnL/4x/zsZruW7S8QQfIH6tjAZmLeklQo3TTyA==",
"requires": {
"@hint/utils": "^6.1.0",
"@hint/utils-compat-data": "^1.0.1"
}
},
"@hint/hint-doctype": {
"version": "3.2.11",
"resolved": "https://registry.npmjs.org/@hint/hint-doctype/-/hint-doctype-3.2.11.tgz",
"integrity": "sha512-GYMfutfVEMRATeXNU1JRp4OzCLfcTNuAY2fbdqTjBCHBZBOKjFgYgDBUDKlFVGtkcoF+Gz+B/SrS7yZHyHFK7w=="
},
"@hint/hint-highest-available-document-mode": {
"version": "4.1.11",
"resolved": "https://registry.npmjs.org/@hint/hint-highest-available-document-mode/-/hint-highest-available-document-mode-4.1.11.tgz",
"integrity": "sha512-DypVCXTAbbJtJ2sexV44KrFOSG88JvNJQe7nEAMfSwvjdrXK7qd5hrhf+WQMwwzbiLaWKm7DZGiaxaRYrye/3w==",
"requires": {
"@hint/utils": "^6.1.0"
}
},
"@hint/hint-html-checker": {
"version": "3.2.11",
"resolved": "https://registry.npmjs.org/@hint/hint-html-checker/-/hint-html-checker-3.2.11.tgz",
"integrity": "sha512-0xqGhSm2yF4M/u+7aC68mtsuySo5d8PO3dVU5wug3lAqPmezVsU4mhgAyBqs5f0tJjmSgUHGkdrauOh5urJTMg==",
"requires": {
"@hint/utils": "^6.1.0",
"lodash": "^4.17.15"
}
},
"@hint/hint-http-cache": {
"version": "3.2.11",
"resolved": "https://registry.npmjs.org/@hint/hint-http-cache/-/hint-http-cache-3.2.11.tgz",
"integrity": "sha512-epeHkqxGij5iKEqkA5SWhiOfMbkMOgCoQ1ickd2PBgWDXczCmA6EuzEKVnfF9FlsmL9ONsD2WURt6rIwVrgVfQ==",
"requires": {
"@hint/utils": "^6.1.0"
}
},
"@hint/hint-http-compression": {
"version": "5.1.11",
"resolved": "https://registry.npmjs.org/@hint/hint-http-compression/-/hint-http-compression-5.1.11.tgz",
"integrity": "sha512-escfXld7eMzrNd2Hl/YnPo9ltIW+tgJy4vVhfnVS6HVDPN8fEU+4EZhNy85ST3PZzzxGBjRMmeC8NfW3cbXumw==",
"requires": {
"@hint/utils": "^6.1.0",
"iltorb": "^2.4.3"
}
},
"@hint/hint-https-only": {
"version": "2.3.11",
"resolved": "https://registry.npmjs.org/@hint/hint-https-only/-/hint-https-only-2.3.11.tgz",
"integrity": "sha512-5d2YWJFedfZNutpjsaO9sDzz7yYoPQ8hPe1fyBMnnu5z6Xf6wJHgg0+Ad/WTyjjKhePtQLEGF4nQST7T/te2uQ==",
"requires": {
"@hint/utils": "^6.1.0"
}
},
"@hint/hint-image-optimization-cloudinary": {
"version": "3.1.11",
"resolved": "https://registry.npmjs.org/@hint/hint-image-optimization-cloudinary/-/hint-image-optimization-cloudinary-3.1.11.tgz",
"integrity": "sha512-Ei+MRiynNNskAYNCNQHCdFyx2IPfVuSNZ+bmqavT1XN8WCJJAEV/umonI8jSIbcDkMDH9dqaasLAJd0dkeQksg==",
"requires": {
"@hint/utils": "^6.1.0",
"cloudinary": "^1.16.0",
"fs-extra": "^8.0.1",
"image-size": "^0.8.3"
}
},
"@hint/hint-manifest-app-name": {
"version": "2.3.11",
"resolved": "https://registry.npmjs.org/@hint/hint-manifest-app-name/-/hint-manifest-app-name-2.3.11.tgz",
"integrity": "sha512-DnYN6+bkTSAhaHtdtOputANwdYwKe8HYjMw0YCHFvvD+Qti0t6Q+N/YQ69uJtd54mzHn1wacoNJlZVhOskfxoA==",
"requires": {
"punycode": "^2.1.1"
}
},
"@hint/hint-manifest-exists": {
"version": "2.3.11",
"resolved": "https://registry.npmjs.org/@hint/hint-manifest-exists/-/hint-manifest-exists-2.3.11.tgz",
"integrity": "sha512-GCfkaOl8uTxtwTmmHEivAHApg94Q+o+PINERWNk+McmwGMuhLdof/hfe8Wh9qL9Uiy3887mDSzgl0RDmtDUMnw==",
"requires": {
"@hint/utils": "^6.1.0"
}
},
"@hint/hint-manifest-file-extension": {
"version": "2.3.11",
"resolved": "https://registry.npmjs.org/@hint/hint-manifest-file-extension/-/hint-manifest-file-extension-2.3.11.tgz",
"integrity": "sha512-9mY5THuf6GNbCwdtSHvLEhF4GRSUcJcUnH4U4Iy+h+omcghIyPbYmg+Gzn8C0PzpOi8rZmHK6OPkgrTMputk/Q==",
"requires": {
"@hint/utils": "^6.1.0"
}
},
"@hint/hint-manifest-is-valid": {
"version": "3.2.11",
"resolved": "https://registry.npmjs.org/@hint/hint-manifest-is-valid/-/hint-manifest-is-valid-3.2.11.tgz",
"integrity": "sha512-QMd7D6GanVl2R54WM115cF3AOpF+Z+cVQgRKqKcn4zzsLXxPNJurdcwogFidou5pxPGzwAXceU2Fo/BicuXOZg==",
"requires": {
"@hint/utils": "^6.1.0",
"@hint/utils-compat-data": "^1.0.1",
"bcp47": "^1.1.2",
"color-string": "^1.5.3"
}
},
"@hint/hint-meta-charset-utf-8": {
"version": "3.2.11",
"resolved": "https://registry.npmjs.org/@hint/hint-meta-charset-utf-8/-/hint-meta-charset-utf-8-3.2.11.tgz",
"integrity": "sha512-0nBla6sl3J9H6dTmgcnt3Ayuox0a7Gk22s81osbOqZdpf//ncvK/dk+RkZeCEBqxnUh0SiQ9Pl22jvq4CmkNAQ==",
"requires": {
"@hint/utils": "^6.1.0"
}
},
"@hint/hint-meta-viewport": {
"version": "4.1.11",
"resolved": "https://registry.npmjs.org/@hint/hint-meta-viewport/-/hint-meta-viewport-4.1.11.tgz",
"integrity": "sha512-N4IhdaRA56LEXavYAFIl4wFhtb5MgO6S6IIAahGVymLLrsWX6nj/fGQ1C+NMcrmmgSwPOSkrCnOkZplWscHUsQ==",
"requires": {
"@hint/utils": "^6.1.0",
"metaviewport-parser": "^0.2.0"
}
},
"@hint/hint-minified-js": {
"version": "2.3.11",
"resolved": "https://registry.npmjs.org/@hint/hint-minified-js/-/hint-minified-js-2.3.11.tgz",
"integrity": "sha512-UwaPk7YUb74b9t6DkKaXtr9H3Qfd2z5ZpPJf8luePrpCL0f5BMsFj58Sv1Lh0cA2GZFBiRS47T38smWIj8S7fQ==",
"requires": {
"@hint/utils": "^6.1.0"
}
},
"@hint/hint-no-bom": {
"version": "4.1.11",
"resolved": "https://registry.npmjs.org/@hint/hint-no-bom/-/hint-no-bom-4.1.11.tgz",
"integrity": "sha512-hgNLUpTKv8Je3IXaQiJ7/36lN/jGCIVriR6eRW1W57/i7Lu/F9SN0YVPGDhZKCCwIbB9F27fUEwC8+PL1Yimiw==",
"requires": {
"@hint/utils": "^6.1.0"
}
},
"@hint/hint-no-broken-links": {
"version": "4.1.11",
"resolved": "https://registry.npmjs.org/@hint/hint-no-broken-links/-/hint-no-broken-links-4.1.11.tgz",
"integrity": "sha512-dD5Gom0X/2s9i4ViEATeHDCOk8BkIVflIXyye1JVRQ1L9IqogIo/lwGhmv249SvEWY6ir3S7iwtZOGhXQ6rStg==",
"requires": {
"@hint/utils": "^6.1.0",
"@hint/utils-connector-tools": "^4.0.14"
}
},
"@hint/hint-no-disallowed-headers": {
"version": "2.3.11",
"resolved": "https://registry.npmjs.org/@hint/hint-no-disallowed-headers/-/hint-no-disallowed-headers-2.3.11.tgz",
"integrity": "sha512-1Hbhbk8WiH68XbS0dUsbv+OBFmOHJ5UjonaEYnQSIhDsHRWqACKOARz/CNOvMShHxMOj+DHCI/9juME9xG/RIQ==",
"requires": {
"@hint/utils": "^6.1.0"
}
},
"@hint/hint-no-friendly-error-pages": {
"version": "3.2.11",
"resolved": "https://registry.npmjs.org/@hint/hint-no-friendly-error-pages/-/hint-no-friendly-error-pages-3.2.11.tgz",
"integrity": "sha512-up65i6QfN/qSXqKg6IYkZCDfVEgfT7QdkHSFzKG3Jtw1J38iWYgwArwf7YXP4J9evSzqp1tXX3z08hzSGqj9uw==",
"requires": {
"@hint/utils": "^6.1.0"
}
},
"@hint/hint-no-html-only-headers": {
"version": "2.3.11",
"resolved": "https://registry.npmjs.org/@hint/hint-no-html-only-headers/-/hint-no-html-only-headers-2.3.11.tgz",
"integrity": "sha512-ixEALS2OgjeqkGNZLAcq7JIEMY5m7wfsPuT1fT24+QGiCKMTO4MqWP3kKI8JusuMd7I1xmW8EOAfmk1oGAYWEw==",
"requires": {
"@hint/utils": "^6.1.0"
}
},
"@hint/hint-no-http-redirects": {
"version": "2.3.11",
"resolved": "https://registry.npmjs.org/@hint/hint-no-http-redirects/-/hint-no-http-redirects-2.3.11.tgz",
"integrity": "sha512-oGM25jWbSwyUNXtgjPNYXWD5pDNAyVNQW0tt90fS/VPtFL3jUWsC/ZBoLSEiiacq9fG7vpd6si5jjK48XF0/rA==",
"requires": {
"@hint/utils": "^6.1.0"
}
},
"@hint/hint-no-p3p": {
"version": "3.2.11",
"resolved": "https://registry.npmjs.org/@hint/hint-no-p3p/-/hint-no-p3p-3.2.11.tgz",
"integrity": "sha512-LJR46iZypWxbhyIvAMVqdDyYUYbKAHJZD+/fOQP6T1bmYypk3Lna779Q+o0i5YbzsIzC0ZhquDf+44rLlfGXtg==",
"requires": {
"@hint/utils": "^6.1.0"
}
},
"@hint/hint-no-protocol-relative-urls": {
"version": "2.3.11",
"resolved": "https://registry.npmjs.org/@hint/hint-no-protocol-relative-urls/-/hint-no-protocol-relative-urls-2.3.11.tgz",
"integrity": "sha512-soyXg4+5graxrRwCDgern/v3xSUJ9XOgZ47f2UpUJ/rgzxdZonTR6Np/qwDmLsysFWt/B8SLxKCcotzm2vsydw==",
"requires": {
"@hint/utils": "^6.1.0"
}
},
"@hint/hint-no-vulnerable-javascript-libraries": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@hint/hint-no-vulnerable-javascript-libraries/-/hint-no-vulnerable-javascript-libraries-2.10.0.tgz",
"integrity": "sha512-qEWruLTiqgYLnO+idhZn2UyQF9oZ7R+NzlSrmX6WL7Y4IbMlAjxFsgIF7GWFTvSnWJvBEViWsjwOFotEp0jJ5w==",
"requires": {
"@hint/utils": "^6.1.0",
"js-library-detector": "^5.6.0",
"lodash": "^4.17.15",
"semver": "^6.3.0"
}
},
"@hint/hint-performance-budget": {
"version": "2.3.11",
"resolved": "https://registry.npmjs.org/@hint/hint-performance-budget/-/hint-performance-budget-2.3.11.tgz",
"integrity": "sha512-2AUO1WxDG90DCkfdjRfPA7TlIXHU/eN1slq63Jjdwhw8ql4X9MW2SccnwXcFAm0GU5v8RGgLeG/cDS3DdaRiHA==",
"requires": {
"@hint/utils": "^6.1.0"
}
},
"@hint/hint-sri": {
"version": "3.2.11",
"resolved": "https://registry.npmjs.org/@hint/hint-sri/-/hint-sri-3.2.11.tgz",
"integrity": "sha512-+E3O/HDQye5XWVWaLwhu6fK0CuU5WoK2M+zdr2e62FYGwJl8yzdWozYiLDP0B5/fpC/3nU7/ICgOsVYRUNdzqg==",
"requires": {
"@hint/utils": "^6.1.0"
}
},
"@hint/hint-ssllabs": {
"version": "2.3.11",
"resolved": "https://registry.npmjs.org/@hint/hint-ssllabs/-/hint-ssllabs-2.3.11.tgz",
"integrity": "sha512-LMTkz+NdUCqCcaPy55JpQflwP1JfO8kUJdYT8Tsr+KbLgfahDS5UHK27EhK/SNHumDIoepLTWZBGJQFACBTJ5g==",
"requires": {
"@hint/utils": "^6.1.0",
"node-ssllabs": "^1.1.2"
}
},
"@hint/hint-strict-transport-security": {
"version": "2.3.11",
"resolved": "https://registry.npmjs.org/@hint/hint-strict-transport-security/-/hint-strict-transport-security-2.3.11.tgz",
"integrity": "sha512-xKZE3SM7xxY0NU883d7A9onxuqL6X0T1QQP3JDrbbiGsxFNFYii9+TEZwx54Lt/rM99kZgJSHLGUcvPoCa9hrg==",
"requires": {
"@hint/utils": "^6.1.0"
}
},
"@hint/hint-stylesheet-limits": {
"version": "3.2.11",
"resolved": "https://registry.npmjs.org/@hint/hint-stylesheet-limits/-/hint-stylesheet-limits-3.2.11.tgz",
"integrity": "sha512-1xOLEowC7q+tY0G09/zgfBjxaSiGvzjVTMW8AvRFRA7HiIr7VvqmXgz3PdSyFPCt04rcYat/tbfdq4mx5V+hAQ=="
},
"@hint/hint-typescript-config": {
"version": "2.3.11",
"resolved": "https://registry.npmjs.org/@hint/hint-typescript-config/-/hint-typescript-config-2.3.11.tgz",
"integrity": "sha512-pwCBOIgI3d0i8Z0JyKL7k78FW8QZfRKcRxoLw4on2NJ1YmWakFewtUiH8V2fQxIbCdohXtneLszY91r6D2nV3Q==",
"requires": {
"@hint/utils": "^6.1.0"
}
},
"@hint/hint-validate-set-cookie-header": {
"version": "2.3.11",
"resolved": "https://registry.npmjs.org/@hint/hint-validate-set-cookie-header/-/hint-validate-set-cookie-header-2.3.11.tgz",
"integrity": "sha512-cG1iArwwXIoEhGqybLotcqZDu3yq0l81b5/iE1CJT0pCOzxTwRMfCDI1yCvoKSTwZZ+eNSkuN+eXuG4HtfNmdA==",
"requires": {
"@hint/utils": "^6.1.0"
}
},
"@hint/hint-webpack-config": {
"version": "2.3.11",
"resolved": "https://registry.npmjs.org/@hint/hint-webpack-config/-/hint-webpack-config-2.3.11.tgz",
"integrity": "sha512-urZafEMb0Fx1as/qcl7TfmEiDzf+AXc/Y6Kd7uAFSLSkaI3DQXcD9dSY0iNfCGbaolG3TXtJW2YwN/IE3f6qaQ==",
"requires": {
"@hint/utils": "^6.1.0"
}
},
"@hint/hint-x-content-type-options": {
"version": "3.2.11",
"resolved": "https://registry.npmjs.org/@hint/hint-x-content-type-options/-/hint-x-content-type-options-3.2.11.tgz",
"integrity": "sha512-tIB9RtgpNrsTKHt6WxyldeEb47cDfFI/2MNtV0XSQpePKjBEqM7rK0ep6WXNkMuOReH71irY8Jr7NRFhGrdCAg==",
"requires": {
"@hint/utils": "^6.1.0"
}
},
"@hint/parser-babel-config": {
"version": "2.1.14",
"resolved": "https://registry.npmjs.org/@hint/parser-babel-config/-/parser-babel-config-2.1.14.tgz",
"integrity": "sha512-/yCR2gO8G70C6WOUCr7fHsNoFZwUluWyG7PW4rbCtkAvPbdf+Gvqd+ru/LmMqzlLXgU9DDXqjnHjcwclGldIfQ==",
"requires": {
"@hint/utils": "^6.1.0",
"lodash": "^4.17.15"
}
},
"@hint/parser-css": {
"version": "3.0.14",
"resolved": "https://registry.npmjs.org/@hint/parser-css/-/parser-css-3.0.14.tgz",
"integrity": "sha512-qEKJz5JjtpflrAhLjTd2DJg+tYycLlbAd+lrpB9U6UiE5OC9G6sMzht76fSK/3p+S/KFj/0fYo+63yrvCUeAtw==",
"requires": {
"@hint/utils": "^6.1.0",
"postcss": "^7.0.21",
"postcss-safe-parser": "^4.0.1"
}
},
"@hint/parser-html": {
"version": "3.0.11",
"resolved": "https://registry.npmjs.org/@hint/parser-html/-/parser-html-3.0.11.tgz",
"integrity": "sha512-TYcSinQyKdn8TcRXOzjURBgtPcXA6xYFBINx6EzST5bak72kcUWwAPBnWb5GLVcDB7aoaPYxALdXnT3rabD8qA==",
"requires": {
"@hint/utils": "^6.1.0"
}
},
"@hint/parser-javascript": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/@hint/parser-javascript/-/parser-javascript-3.1.0.tgz",
"integrity": "sha512-8p4YRoanSL7ZlZWlEkgargIOvJEcelfJtozWAZfJzXjKVIGAtd85JdXA6Vp0lPdMx/ESZg1l5556Iy4rtDYOiw==",
"requires": {
"@hint/utils": "^6.1.0",
"@types/estree-jsx": "^0.0.0",
"acorn": "^7.1.0",
"acorn-jsx": "^5.0.2",
"acorn-jsx-walk": "^2.0.0",
"acorn-walk": "^7.0.0"
}
},
"@hint/parser-less": {