This repository has been archived by the owner on May 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package-lock.json
7044 lines (7044 loc) · 270 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": "@advanced-rest-client/arc-marked",
"version": "1.1.2",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"@advanced-rest-client/arc-demo-helper": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-demo-helper/-/arc-demo-helper-3.0.2.tgz",
"integrity": "sha512-x7+ms1tR6f+OsJU34SAvrbbM47rwL5YE9zKHrXmzc7gfaIHWjMCEcoXLblD0z+cGX7dN18CmvX1a7sA6w03k1Q==",
"dev": true,
"requires": {
"@advanced-rest-client/arc-icons": "^3.3.3",
"@anypoint-web-components/anypoint-button": "^1.2.1",
"@anypoint-web-components/anypoint-dropdown-menu": "^0.1.21",
"@anypoint-web-components/anypoint-item": "^1.1.2",
"@anypoint-web-components/anypoint-listbox": "^1.1.7",
"@anypoint-web-components/anypoint-menu-button": "^0.1.5",
"@anypoint-web-components/anypoint-switch": "^0.1.10",
"@anypoint-web-components/anypoint-tabs": "^0.1.17",
"@api-components/amf-helper-mixin": "^4.3.10",
"@api-components/api-navigation": "^4.2.8",
"@api-components/raml-aware": "^3.0.0",
"@open-wc/dedupe-mixin": "^1.3.0",
"@polymer/font-roboto": "^3.0.2",
"lit-element": "^2.5.1",
"lit-html": "^1.4.1",
"prismjs": "^1.23.0"
}
},
"@advanced-rest-client/arc-fit-mixin": {
"version": "1.2.2",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-fit-mixin/-/arc-fit-mixin-1.2.2.tgz",
"integrity": "sha512-fakoD1QuLM3QswgnlZXEWJ3SAHEFziF8BnNLWGN4BpBF1vu6y9nJDBEC+SpOaz0yvMa07BCRD7InJ+2ZEX41vA==",
"dev": true,
"requires": {
"@open-wc/dedupe-mixin": "^1.3.0"
}
},
"@advanced-rest-client/arc-icons": {
"version": "3.3.3",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-icons/-/arc-icons-3.3.3.tgz",
"integrity": "sha512-bmiVGfNo463p2cb1Mvy2KF5QvUV/dL0JG+H6AivYJdNNFTeEAt5a2s+K/QkWHCLPAK/gKdgyrUxBZtxRIguJ1A==",
"dev": true,
"requires": {
"lit-element": "^2.4.0",
"lit-html": "^1.3.0"
}
},
"@advanced-rest-client/arc-overlay-mixin": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-overlay-mixin/-/arc-overlay-mixin-1.2.0.tgz",
"integrity": "sha512-NYUspnkQLGudh9NM8vNzORjMYjv2PvL4NiS5Jj4VLvF234Z29iKOpRh+m3+ESmouEs6nZyvh4T/DNGrsD4c+fA==",
"dev": true,
"requires": {
"@advanced-rest-client/arc-fit-mixin": "^1.2.2",
"@advanced-rest-client/arc-resizable-mixin": "^1.2.0",
"@open-wc/dedupe-mixin": "^1.3.0",
"lit-element": "^2.4.0",
"lit-html": "^1.3.0"
}
},
"@advanced-rest-client/arc-resizable-mixin": {
"version": "1.2.2",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-resizable-mixin/-/arc-resizable-mixin-1.2.2.tgz",
"integrity": "sha512-Z7+dfxTP7nqPgfxVgYduUVVg2ApTw767zYL1SRpUZx/v2AMZsSXB1bvWqVCatAzpQPNcZwWbCTChtwL5Nh7omQ==",
"dev": true,
"requires": {
"@open-wc/dedupe-mixin": "^1.3.0"
}
},
"@anypoint-web-components/anypoint-button": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-button/-/anypoint-button-1.2.1.tgz",
"integrity": "sha512-YQshPA8iNgUr2yBcVOAi4P+yFrid6dSFU+5Uu3PfY2BupnwKCMQqJ3wkcLizQXpMwuaJMXZr/1mXjIFKtx0F2w==",
"dev": true,
"requires": {
"@anypoint-web-components/anypoint-control-mixins": "^1.2.0",
"@polymer/paper-ripple": "^3.0.2",
"lit-element": "^2.5.1"
}
},
"@anypoint-web-components/anypoint-collapse": {
"version": "0.1.2",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-collapse/-/anypoint-collapse-0.1.2.tgz",
"integrity": "sha512-+arHE/rxvtXLs01R9XNrLPWEO5n7f8KcmvKhiq7Er5pqt49O6VbZIcdqEHiuhRigjsObE3/x0SP4OMuDMrO9fw==",
"dev": true,
"requires": {
"@advanced-rest-client/arc-resizable-mixin": "^1.2.0",
"lit-element": "^2.5.1",
"lit-html": "^1.4.1"
}
},
"@anypoint-web-components/anypoint-control-mixins": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-control-mixins/-/anypoint-control-mixins-1.2.0.tgz",
"integrity": "sha512-EMseskbHaRBJpyV60m6tWCtr1MGMZV/Hc6yD5XO1fH4WCg8kihgqXWeR22Y5qOv7YaALwWwBrG2cDCG8TNyxHw==",
"dev": true,
"requires": {
"@open-wc/dedupe-mixin": "^1.3.0"
}
},
"@anypoint-web-components/anypoint-dropdown": {
"version": "1.1.6",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-dropdown/-/anypoint-dropdown-1.1.6.tgz",
"integrity": "sha512-pYbyAud5HnkeSiR+jy4pYbf0O+dBySApITzvqw3aAL1P+OiiSuOlHg+ghYL4q4HQCWF5rRhu+Hiv8CrVcS/bkQ==",
"dev": true,
"requires": {
"@advanced-rest-client/arc-overlay-mixin": "^1.2.0",
"@anypoint-web-components/anypoint-control-mixins": "^1.2.0",
"lit-element": "^2.5.1",
"lit-html": "^1.4.1"
}
},
"@anypoint-web-components/anypoint-dropdown-menu": {
"version": "0.1.21",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-dropdown-menu/-/anypoint-dropdown-menu-0.1.21.tgz",
"integrity": "sha512-AQJHAFfWAOwSB5iQHjume65udiDva31NSGLWRnCov06VHlph+iO2ztp1iuMZLrJQLFiIYUc+uYFta6gmG8jtVQ==",
"dev": true,
"requires": {
"@anypoint-web-components/anypoint-button": "^1.2.0",
"@anypoint-web-components/anypoint-control-mixins": "^1.2.0",
"@anypoint-web-components/anypoint-dropdown": "^1.1.5",
"@anypoint-web-components/validatable-mixin": "^1.1.3",
"lit-element": "^2.5.1",
"lit-html": "^1.4.1"
}
},
"@anypoint-web-components/anypoint-form-mixins": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-form-mixins/-/anypoint-form-mixins-1.3.0.tgz",
"integrity": "sha512-gm+474ZGNQSJcPcGKT1Ixmp3hDtFpfBDn8HawwJV8MxXkTIYdgfz3B6WpKu4VvYLJIlk9GJb4MbbNMK+hJ6XMA==",
"dev": true,
"requires": {
"@anypoint-web-components/validatable-mixin": "^1.1.3",
"@open-wc/dedupe-mixin": "^1.3.0"
}
},
"@anypoint-web-components/anypoint-item": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-item/-/anypoint-item-1.1.2.tgz",
"integrity": "sha512-AD702ZKg6AW+0wUlE/UHMLcVUGlwgDXRjhmtMSH5vp1gGBbg4OzhiUN8/kwLiWIC5O4yyikUBpFmuD09VGQc1A==",
"dev": true,
"requires": {
"@anypoint-web-components/anypoint-control-mixins": "^1.2.0",
"@anypoint-web-components/anypoint-styles": "^1.0.1",
"lit-element": "^2.5.1",
"lit-html": "^1.4.1"
}
},
"@anypoint-web-components/anypoint-listbox": {
"version": "1.1.7",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-listbox/-/anypoint-listbox-1.1.7.tgz",
"integrity": "sha512-F4VueUMEdH8unfJ5Wyqv4QO8Cfl/F1lkq0o7vrKPafYyK455ArIx1CCsgUUUhXAG8+T4WZie5xfnqVRr+uYWpA==",
"dev": true,
"requires": {
"@anypoint-web-components/anypoint-menu-mixin": "^1.1.7",
"lit-element": "^2.5.1",
"lit-html": "^1.4.1"
}
},
"@anypoint-web-components/anypoint-menu-button": {
"version": "0.1.5",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-menu-button/-/anypoint-menu-button-0.1.5.tgz",
"integrity": "sha512-sZKu3qLbRrGX9RMxKayS9jS41eTmaktYQXsrR9v32MbenMyI+FJ0IIZEidxSq5WFbYoLYih/iCaK57sFMepr9g==",
"dev": true,
"requires": {
"@anypoint-web-components/anypoint-control-mixins": "^1.1.3",
"@anypoint-web-components/anypoint-dropdown": "^1.1.4",
"lit-element": "^2.4.0",
"lit-html": "^1.3.0"
}
},
"@anypoint-web-components/anypoint-menu-mixin": {
"version": "1.1.8",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-menu-mixin/-/anypoint-menu-mixin-1.1.8.tgz",
"integrity": "sha512-Aq4hEcDeVQc/aCStExqaSOz2soVrwmlwpbW0VdILCIUjCVCIK5WbLvCeYY7H6SVYZpNhCwgfYAELYCTII+e6oQ==",
"dev": true,
"requires": {
"@anypoint-web-components/anypoint-selector": "^1.1.6",
"@open-wc/dedupe-mixin": "^1.3.0",
"lit-element": "^2.4.0",
"lit-html": "^1.3.0"
}
},
"@anypoint-web-components/anypoint-selector": {
"version": "1.1.7",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-selector/-/anypoint-selector-1.1.7.tgz",
"integrity": "sha512-icQ7BCTWw6emq+8zW/tiaKwa7Nux7iJQ9rQIAeWFP43Z6no19yhUFGMbBnr6L3Kdzpo7O+goQPQQiXskd3tJUA==",
"dev": true,
"requires": {
"@open-wc/dedupe-mixin": "^1.3.0",
"lit-element": "^2.4.0",
"lit-html": "^1.3.0"
}
},
"@anypoint-web-components/anypoint-styles": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-styles/-/anypoint-styles-1.0.1.tgz",
"integrity": "sha512-sTsbaVSWuFEaOjFL+9t++E95rV+aQqtnbqqIEhhLei7P/z0v/ySfRxATnyjq6YgfHN0D2axZ3uk7l6nEN6YKHQ==",
"dev": true,
"requires": {
"lit-element": "^2.2.1",
"lit-html": "^1.1.2"
}
},
"@anypoint-web-components/anypoint-switch": {
"version": "0.1.10",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-switch/-/anypoint-switch-0.1.10.tgz",
"integrity": "sha512-EXE+6nF52TBOcx8sXDLmVmR9jliZzsG3zsPm6BFbWLofO0E6ZqPy7y6+yhyaIMCyl8M5GZWE9n+w7oyDQvELxQ==",
"dev": true,
"requires": {
"@anypoint-web-components/anypoint-control-mixins": "^1.2.0",
"@anypoint-web-components/anypoint-form-mixins": "^1.3.0",
"lit-element": "^2.5.1"
}
},
"@anypoint-web-components/anypoint-tabs": {
"version": "0.1.17",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-tabs/-/anypoint-tabs-0.1.17.tgz",
"integrity": "sha512-hBAoU0hjp8GusWKK/F2Urt1OvCn7KgEfOdYUahjb6u242lvUkOaMfP9kD1Qp92fRa9mA/wjL7tsNtnWeZ7hTQQ==",
"dev": true,
"requires": {
"@advanced-rest-client/arc-resizable-mixin": "^1.2.1",
"@anypoint-web-components/anypoint-button": "^1.2.0",
"@anypoint-web-components/anypoint-control-mixins": "^1.2.0",
"@anypoint-web-components/anypoint-menu-mixin": "^1.1.8",
"@polymer/paper-ripple": "^3.0.2",
"lit-element": "^2.5.1",
"lit-html": "^1.4.1"
}
},
"@anypoint-web-components/validatable-mixin": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/validatable-mixin/-/validatable-mixin-1.1.3.tgz",
"integrity": "sha512-cObFmNCIWxbGoYEO7cMUEEB4LQ4n3HEgk1gS7LB/TZSvXzzth00f3lbxkvQsubBIFVEOKFUq5Lo8vuG81t0/2w==",
"dev": true,
"requires": {
"@anypoint-web-components/validator-mixin": "^1.1.1",
"@open-wc/dedupe-mixin": "^1.3.0"
}
},
"@anypoint-web-components/validator-mixin": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/validator-mixin/-/validator-mixin-1.1.2.tgz",
"integrity": "sha512-J5dqcdwW47W+7B10stowMsaQclV2VEe2vZ3SD6lVnQS63MWEZeCa2jTdaJ3RuE5+vSBoKoUfBiHqOdcpnGLL2w==",
"dev": true,
"requires": {
"@open-wc/dedupe-mixin": "^1.3.0"
}
},
"@api-components/amf-helper-mixin": {
"version": "4.3.11",
"resolved": "https://registry.npmjs.org/@api-components/amf-helper-mixin/-/amf-helper-mixin-4.3.11.tgz",
"integrity": "sha512-vmgbJnrXQikfozUKxxas8Re2Ok6y0/GH454J0GazAGxwzymx2EA+sxyrt12pT+p7fyu5CymUDt97sDBCdCTvzA==",
"dev": true
},
"@api-components/api-navigation": {
"version": "4.2.8",
"resolved": "https://registry.npmjs.org/@api-components/api-navigation/-/api-navigation-4.2.8.tgz",
"integrity": "sha512-biv4bYyiLW0VSNVkeW73ZpZ1wuT9yoCEIQ8jFIOxzZ0syQc587gSfim+4zdj+FAFAGooU3Z3nN40KVXJpzubKg==",
"dev": true,
"requires": {
"@advanced-rest-client/arc-icons": "^3.2.2",
"@anypoint-web-components/anypoint-button": "^1.1.1",
"@anypoint-web-components/anypoint-collapse": "^0.1.0",
"@api-components/amf-helper-mixin": "^4.3.4",
"@api-components/http-method-label": "^3.1.3",
"@api-components/raml-aware": "^3.0.0",
"lit-element": "^2.3.1",
"lit-html": "^1.2.1"
}
},
"@api-components/http-method-label": {
"version": "3.1.4",
"resolved": "https://registry.npmjs.org/@api-components/http-method-label/-/http-method-label-3.1.4.tgz",
"integrity": "sha512-KKLSoTkRDWhdSYAcHQQdsd/F1Gx0Xp+GuyzFZZv+4twjCX7UAoabOrdef6+6IBSlw3bc9ec3npfFr2Ko6D+gFg==",
"dev": true,
"requires": {
"lit-element": "^2.4.0",
"lit-html": "^1.3.0"
}
},
"@api-components/raml-aware": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/@api-components/raml-aware/-/raml-aware-3.0.0.tgz",
"integrity": "sha512-lWIjd8Wq6tYJmF8ZXyUgQdGq+vhXP7pKY/QcPQdKOn2IXb4/gqTglebtXnxjME41+uKSPQoMSKTEVT/PwX93qQ==",
"dev": true
},
"@babel/code-frame": {
"version": "7.14.5",
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.14.5.tgz",
"integrity": "sha512-9pzDqyc6OLDaqe+zbACgFkb6fKMNG6CObKpnYXChRsvYGyEdc7CA2BaqeOM+vOtCS5ndmJicPJhKAwYRI6UfFw==",
"dev": true,
"requires": {
"@babel/highlight": "^7.14.5"
}
},
"@babel/helper-validator-identifier": {
"version": "7.14.5",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.5.tgz",
"integrity": "sha512-5lsetuxCLilmVGyiLEfoHBRX8UCFD+1m2x3Rj97WrW3V7H3u4RWRXA4evMjImCsin2J2YT0QaVDGf+z8ondbAg==",
"dev": true
},
"@babel/highlight": {
"version": "7.14.5",
"resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.14.5.tgz",
"integrity": "sha512-qf9u2WFWVV0MppaL877j2dBtQIDgmidgjGk5VIMw3OadXvYaXn66U1BFlH2t4+t3i+8PhedppRv+i40ABzd+gg==",
"dev": true,
"requires": {
"@babel/helper-validator-identifier": "^7.14.5",
"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/runtime": {
"version": "7.14.5",
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.14.5.tgz",
"integrity": "sha512-121rumjddw9c3NCQ55KGkyE1h/nzWhU/owjhw0l4mQrkzz4x9SGS1X8gFLraHwX7td3Yo4QTL+qj0NcIzN87BA==",
"dev": true,
"requires": {
"regenerator-runtime": "^0.13.4"
}
},
"@babel/runtime-corejs3": {
"version": "7.14.5",
"resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.14.5.tgz",
"integrity": "sha512-cBbwXj3F2xjnQJ0ERaFRLjxhUSBYsQPXJ7CERz/ecx6q6hzQ99eTflAPFC3ks4q/IG4CWupNVdflc4jlFBJVsg==",
"dev": true,
"requires": {
"core-js-pure": "^3.14.0",
"regenerator-runtime": "^0.13.4"
}
},
"@commitlint/cli": {
"version": "12.1.4",
"resolved": "https://registry.npmjs.org/@commitlint/cli/-/cli-12.1.4.tgz",
"integrity": "sha512-ZR1WjXLvqEffYyBPT0XdnSxtt3Ty1TMoujEtseW5o3vPnkA1UNashAMjQVg/oELqfaiAMnDw8SERPMN0e/0kLg==",
"dev": true,
"requires": {
"@commitlint/format": "^12.1.4",
"@commitlint/lint": "^12.1.4",
"@commitlint/load": "^12.1.4",
"@commitlint/read": "^12.1.4",
"@commitlint/types": "^12.1.4",
"lodash": "^4.17.19",
"resolve-from": "5.0.0",
"resolve-global": "1.0.0",
"yargs": "^16.2.0"
}
},
"@commitlint/config-conventional": {
"version": "12.1.4",
"resolved": "https://registry.npmjs.org/@commitlint/config-conventional/-/config-conventional-12.1.4.tgz",
"integrity": "sha512-ZIdzmdy4o4WyqywMEpprRCrehjCSQrHkaRTVZV411GyLigFQHlEBSJITAihLAWe88Qy/8SyoIe5uKvAsV5vRqQ==",
"dev": true,
"requires": {
"conventional-changelog-conventionalcommits": "^4.3.1"
}
},
"@commitlint/ensure": {
"version": "12.1.4",
"resolved": "https://registry.npmjs.org/@commitlint/ensure/-/ensure-12.1.4.tgz",
"integrity": "sha512-MxHIBuAG9M4xl33qUfIeMSasbv3ktK0W+iygldBxZOL4QSYC2Gn66pZAQMnV9o3V+sVFHoAK2XUKqBAYrgbEqw==",
"dev": true,
"requires": {
"@commitlint/types": "^12.1.4",
"lodash": "^4.17.19"
}
},
"@commitlint/execute-rule": {
"version": "12.1.4",
"resolved": "https://registry.npmjs.org/@commitlint/execute-rule/-/execute-rule-12.1.4.tgz",
"integrity": "sha512-h2S1j8SXyNeABb27q2Ok2vD1WfxJiXvOttKuRA9Or7LN6OQoC/KtT3844CIhhWNteNMu/wE0gkTqGxDVAnJiHg==",
"dev": true
},
"@commitlint/format": {
"version": "12.1.4",
"resolved": "https://registry.npmjs.org/@commitlint/format/-/format-12.1.4.tgz",
"integrity": "sha512-h28ucMaoRjVvvgS6Bdf85fa/+ZZ/iu1aeWGCpURnQV7/rrVjkhNSjZwGlCOUd5kDV1EnZ5XdI7L18SUpRjs26g==",
"dev": true,
"requires": {
"@commitlint/types": "^12.1.4",
"chalk": "^4.0.0"
}
},
"@commitlint/is-ignored": {
"version": "12.1.4",
"resolved": "https://registry.npmjs.org/@commitlint/is-ignored/-/is-ignored-12.1.4.tgz",
"integrity": "sha512-uTu2jQU2SKvtIRVLOzMQo3KxDtO+iJ1p0olmncwrqy4AfPLgwoyCP2CiULq5M7xpR3+dE3hBlZXbZTQbD7ycIw==",
"dev": true,
"requires": {
"@commitlint/types": "^12.1.4",
"semver": "7.3.5"
}
},
"@commitlint/lint": {
"version": "12.1.4",
"resolved": "https://registry.npmjs.org/@commitlint/lint/-/lint-12.1.4.tgz",
"integrity": "sha512-1kZ8YDp4to47oIPFELUFGLiLumtPNKJigPFDuHt2+f3Q3IKdQ0uk53n3CPl4uoyso/Og/EZvb1mXjFR/Yce4cA==",
"dev": true,
"requires": {
"@commitlint/is-ignored": "^12.1.4",
"@commitlint/parse": "^12.1.4",
"@commitlint/rules": "^12.1.4",
"@commitlint/types": "^12.1.4"
}
},
"@commitlint/load": {
"version": "12.1.4",
"resolved": "https://registry.npmjs.org/@commitlint/load/-/load-12.1.4.tgz",
"integrity": "sha512-Keszi0IOjRzKfxT+qES/n+KZyLrxy79RQz8wWgssCboYjKEp+wC+fLCgbiMCYjI5k31CIzIOq/16J7Ycr0C0EA==",
"dev": true,
"requires": {
"@commitlint/execute-rule": "^12.1.4",
"@commitlint/resolve-extends": "^12.1.4",
"@commitlint/types": "^12.1.4",
"chalk": "^4.0.0",
"cosmiconfig": "^7.0.0",
"lodash": "^4.17.19",
"resolve-from": "^5.0.0"
}
},
"@commitlint/message": {
"version": "12.1.4",
"resolved": "https://registry.npmjs.org/@commitlint/message/-/message-12.1.4.tgz",
"integrity": "sha512-6QhalEKsKQ/Y16/cTk5NH4iByz26fqws2ub+AinHPtM7Io0jy4e3rym9iE+TkEqiqWZlUigZnTwbPvRJeSUBaA==",
"dev": true
},
"@commitlint/parse": {
"version": "12.1.4",
"resolved": "https://registry.npmjs.org/@commitlint/parse/-/parse-12.1.4.tgz",
"integrity": "sha512-yqKSAsK2V4X/HaLb/yYdrzs6oD/G48Ilt0EJ2Mp6RJeWYxG14w/Out6JrneWnr/cpzemyN5hExOg6+TB19H/Lw==",
"dev": true,
"requires": {
"@commitlint/types": "^12.1.4",
"conventional-changelog-angular": "^5.0.11",
"conventional-commits-parser": "^3.0.0"
}
},
"@commitlint/read": {
"version": "12.1.4",
"resolved": "https://registry.npmjs.org/@commitlint/read/-/read-12.1.4.tgz",
"integrity": "sha512-TnPQSJgD8Aod5Xeo9W4SaYKRZmIahukjcCWJ2s5zb3ZYSmj6C85YD9cR5vlRyrZjj78ItLUV/X4FMWWVIS38Jg==",
"dev": true,
"requires": {
"@commitlint/top-level": "^12.1.4",
"@commitlint/types": "^12.1.4",
"fs-extra": "^9.0.0",
"git-raw-commits": "^2.0.0"
}
},
"@commitlint/resolve-extends": {
"version": "12.1.4",
"resolved": "https://registry.npmjs.org/@commitlint/resolve-extends/-/resolve-extends-12.1.4.tgz",
"integrity": "sha512-R9CoUtsXLd6KSCfsZly04grsH6JVnWFmVtWgWs1KdDpdV+G3TSs37tColMFqglpkx3dsWu8dsPD56+D9YnJfqg==",
"dev": true,
"requires": {
"import-fresh": "^3.0.0",
"lodash": "^4.17.19",
"resolve-from": "^5.0.0",
"resolve-global": "^1.0.0"
}
},
"@commitlint/rules": {
"version": "12.1.4",
"resolved": "https://registry.npmjs.org/@commitlint/rules/-/rules-12.1.4.tgz",
"integrity": "sha512-W8m6ZSjg7RuIsIfzQiFHa48X5mcPXeKT9yjBxVmjHvYfS2FDBf1VxCQ7vO0JTVIdV4ohjZ0eKg/wxxUuZHJAZg==",
"dev": true,
"requires": {
"@commitlint/ensure": "^12.1.4",
"@commitlint/message": "^12.1.4",
"@commitlint/to-lines": "^12.1.4",
"@commitlint/types": "^12.1.4"
}
},
"@commitlint/to-lines": {
"version": "12.1.4",
"resolved": "https://registry.npmjs.org/@commitlint/to-lines/-/to-lines-12.1.4.tgz",
"integrity": "sha512-TParumvbi8bdx3EdLXz2MaX+e15ZgoCqNUgqHsRLwyqLUTRbqCVkzrfadG1UcMQk8/d5aMbb327ZKG3Q4BRorw==",
"dev": true
},
"@commitlint/top-level": {
"version": "12.1.4",
"resolved": "https://registry.npmjs.org/@commitlint/top-level/-/top-level-12.1.4.tgz",
"integrity": "sha512-d4lTJrOT/dXlpY+NIt4CUl77ciEzYeNVc0VFgUQ6VA+b1rqYD2/VWFjBlWVOrklxtSDeKyuEhs36RGrppEFAvg==",
"dev": true,
"requires": {
"find-up": "^5.0.0"
},
"dependencies": {
"find-up": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
"integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
"dev": true,
"requires": {
"locate-path": "^6.0.0",
"path-exists": "^4.0.0"
}
},
"locate-path": {
"version": "6.0.0",
"resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
"integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
"dev": true,
"requires": {
"p-locate": "^5.0.0"
}
},
"p-limit": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
"integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
"dev": true,
"requires": {
"yocto-queue": "^0.1.0"
}
},
"p-locate": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
"integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
"dev": true,
"requires": {
"p-limit": "^3.0.2"
}
}
}
},
"@commitlint/types": {
"version": "12.1.4",
"resolved": "https://registry.npmjs.org/@commitlint/types/-/types-12.1.4.tgz",
"integrity": "sha512-KRIjdnWNUx6ywz+SJvjmNCbQKcKP6KArhjZhY2l+CWKxak0d77SOjggkMwFTiSgLODOwmuLTbarR2ZfWPiPMlw==",
"dev": true,
"requires": {
"chalk": "^4.0.0"
}
},
"@emmetio/extract-abbreviation": {
"version": "0.1.6",
"resolved": "https://registry.npmjs.org/@emmetio/extract-abbreviation/-/extract-abbreviation-0.1.6.tgz",
"integrity": "sha512-Ce3xE2JvTSEbASFbRbA1gAIcMcZWdS2yUYRaQbeM0nbOzaZrUYfa3ePtcriYRZOZmr+CkKA+zbjhvTpIOAYVcw==",
"dev": true
},
"@eslint/eslintrc": {
"version": "0.4.2",
"resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.2.tgz",
"integrity": "sha512-8nmGq/4ycLpIwzvhI4tNDmQztZ8sp+hI7cyG8i1nQDhkAbRzHpXPidRAHlNvCZQpJTKw5ItIpMw9RSToGF00mg==",
"dev": true,
"requires": {
"ajv": "^6.12.4",
"debug": "^4.1.1",
"espree": "^7.3.0",
"globals": "^13.9.0",
"ignore": "^4.0.6",
"import-fresh": "^3.2.1",
"js-yaml": "^3.13.1",
"minimatch": "^3.0.4",
"strip-json-comments": "^3.1.1"
}
},
"@nodelib/fs.scandir": {
"version": "2.1.5",
"resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
"integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
"dev": true,
"requires": {
"@nodelib/fs.stat": "2.0.5",
"run-parallel": "^1.1.9"
}
},
"@nodelib/fs.stat": {
"version": "2.0.5",
"resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
"integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
"dev": true
},
"@nodelib/fs.walk": {
"version": "1.2.7",
"resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.7.tgz",
"integrity": "sha512-BTIhocbPBSrRmHxOAJFtR18oLhxTtAFDAvL8hY1S3iU8k+E60W/YFs4jrixGzQjMpF4qPXxIQHcjVD9dz1C2QA==",
"dev": true,
"requires": {
"@nodelib/fs.scandir": "2.1.5",
"fastq": "^1.6.0"
}
},
"@open-wc/chai-dom-equals": {
"version": "0.12.36",
"resolved": "https://registry.npmjs.org/@open-wc/chai-dom-equals/-/chai-dom-equals-0.12.36.tgz",
"integrity": "sha512-Gt1fa37h4rtWPQGETSU4n1L678NmMi9KwHM1sH+JCGcz45rs8DBPx7MUVeGZ+HxRlbEI5t9LU2RGGv6xT2OlyA==",
"dev": true,
"requires": {
"@open-wc/semantic-dom-diff": "^0.13.16",
"@types/chai": "^4.1.7"
},
"dependencies": {
"@open-wc/semantic-dom-diff": {
"version": "0.13.21",
"resolved": "https://registry.npmjs.org/@open-wc/semantic-dom-diff/-/semantic-dom-diff-0.13.21.tgz",
"integrity": "sha512-BONpjHcGX2zFa9mfnwBCLEmlDsOHzT+j6Qt1yfK3MzFXFtAykfzFjAgaxPetu0YbBlCfXuMlfxI4vlRGCGMvFg==",
"dev": true
}
}
},
"@open-wc/dedupe-mixin": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/@open-wc/dedupe-mixin/-/dedupe-mixin-1.3.0.tgz",
"integrity": "sha512-UfdK1MPnR6T7f3svzzYBfu3qBkkZ/KsPhcpc3JYhsUY4hbpwNF9wEQtD4Z+/mRqMTJrKg++YSxIxE0FBhY3RIw==",
"dev": true
},
"@open-wc/eslint-config": {
"version": "4.3.0",
"resolved": "https://registry.npmjs.org/@open-wc/eslint-config/-/eslint-config-4.3.0.tgz",
"integrity": "sha512-kCxFWQ1AR4meTmWJGnK36LJYqDJeFGjlj6n4vLjAW3/c1VUyYQKL90vrNKy/OHS9kTjc9dcH5D64myAbNx6r1w==",
"dev": true,
"requires": {
"eslint": "^7.6.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-html": "^6.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-lit": "^1.2.0",
"eslint-plugin-lit-a11y": "^1.0.1",
"eslint-plugin-no-only-tests": "^2.4.0",
"eslint-plugin-wc": "^1.2.0"
}
},
"@open-wc/scoped-elements": {
"version": "1.3.3",
"resolved": "https://registry.npmjs.org/@open-wc/scoped-elements/-/scoped-elements-1.3.3.tgz",
"integrity": "sha512-vFIQVYYjFw67odUE4JzZOpctnF7S/2DX+S+clrL3bQPql7HvEnV0wMFwOWUavQTuCJi0rfU8GTcNMiUybio+Yg==",
"dev": true,
"requires": {
"@open-wc/dedupe-mixin": "^1.3.0",
"lit-html": "^1.0.0"
}
},
"@open-wc/semantic-dom-diff": {
"version": "0.19.4",
"resolved": "https://registry.npmjs.org/@open-wc/semantic-dom-diff/-/semantic-dom-diff-0.19.4.tgz",
"integrity": "sha512-jiqM40e8WKOPIzf48lFlf+2eHhNiIeumprFQ05xCrktRQtvUlBpYNIQ0427z/aGr+56p8KIiWzx1K/0lbLWaqw==",
"dev": true,
"requires": {
"@types/chai": "^4.2.11"
}
},
"@open-wc/testing": {
"version": "2.5.33",
"resolved": "https://registry.npmjs.org/@open-wc/testing/-/testing-2.5.33.tgz",
"integrity": "sha512-+EJNs0i+VV4nE+BrG70l2DNGXOZTSrluruaaU06HUSk57ZlKa+kIxWmkLxCOLlbgnQgrPrQWxbs3lgB1tIx/YA==",
"dev": true,
"requires": {
"@open-wc/chai-dom-equals": "^0.12.36",
"@open-wc/semantic-dom-diff": "^0.19.3",
"@open-wc/testing-helpers": "^1.8.12",
"@types/chai": "^4.2.11",
"@types/chai-dom": "^0.0.9",
"@types/mocha": "^5.2.7",
"@types/sinon-chai": "^3.2.3",
"chai": "^4.2.0",
"chai-a11y-axe": "^1.3.1",
"chai-dom": "^1.8.1",
"mocha": "^6.2.2",
"sinon-chai": "^3.5.0"
}
},
"@open-wc/testing-helpers": {
"version": "1.8.12",
"resolved": "https://registry.npmjs.org/@open-wc/testing-helpers/-/testing-helpers-1.8.12.tgz",
"integrity": "sha512-+4exEHYvnFqI1RGDDIKFHPZ7Ws5NK1epvEku3zLaOYN3zc+huX19SndNc5+X++v8A+quN/iXbHlh80ROyNaYDA==",
"dev": true,
"requires": {
"@open-wc/scoped-elements": "^1.2.4",
"lit-element": "^2.2.1",
"lit-html": "^1.0.0"
}
},
"@polymer/font-roboto": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/@polymer/font-roboto/-/font-roboto-3.0.2.tgz",
"integrity": "sha512-tx5TauYSmzsIvmSqepUPDYbs4/Ejz2XbZ1IkD7JEGqkdNUJlh+9KU85G56Tfdk/xjEZ8zorFfN09OSwiMrIQWA==",
"dev": true
},
"@polymer/iron-a11y-keys-behavior": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/@polymer/iron-a11y-keys-behavior/-/iron-a11y-keys-behavior-3.0.1.tgz",
"integrity": "sha512-lnrjKq3ysbBPT/74l0Fj0U9H9C35Tpw2C/tpJ8a+5g8Y3YJs1WSZYnEl1yOkw6sEyaxOq/1DkzH0+60gGu5/PQ==",
"dev": true,
"requires": {
"@polymer/polymer": "^3.0.0"
}
},
"@polymer/paper-ripple": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/@polymer/paper-ripple/-/paper-ripple-3.0.2.tgz",
"integrity": "sha512-DnLNvYIMsiayeICroYxx6Q6Hg1cUU8HN2sbutXazlemAlGqdq80qz3TIaVdbpbt/pvjcFGX2HtntMlPstCge8Q==",
"dev": true,
"requires": {
"@polymer/iron-a11y-keys-behavior": "^3.0.0-pre.26",
"@polymer/polymer": "^3.0.0"
}
},
"@polymer/polymer": {
"version": "3.4.1",
"resolved": "https://registry.npmjs.org/@polymer/polymer/-/polymer-3.4.1.tgz",
"integrity": "sha512-KPWnhDZibtqKrUz7enIPOiO4ZQoJNOuLwqrhV2MXzIt3VVnUVJVG5ORz4Z2sgO+UZ+/UZnPD0jqY+jmw/+a9mQ==",
"dev": true,
"requires": {
"@webcomponents/shadycss": "^1.9.1"
}
},
"@rollup/plugin-node-resolve": {
"version": "11.2.1",
"resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-11.2.1.tgz",
"integrity": "sha512-yc2n43jcqVyGE2sqV5/YCmocy9ArjVAP/BeXyTtADTBBX6V0e5UMqwO8CdQ0kzjb6zu5P1qMzsScCMRvE9OlVg==",
"dev": true,
"requires": {
"@rollup/pluginutils": "^3.1.0",
"@types/resolve": "1.17.1",
"builtin-modules": "^3.1.0",
"deepmerge": "^4.2.2",
"is-module": "^1.0.0",
"resolve": "^1.19.0"
}
},
"@rollup/pluginutils": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-3.1.0.tgz",
"integrity": "sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==",
"dev": true,
"requires": {
"@types/estree": "0.0.39",
"estree-walker": "^1.0.1",
"picomatch": "^2.2.2"
}
},
"@sinonjs/commons": {
"version": "1.8.3",
"resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.3.tgz",
"integrity": "sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ==",
"dev": true,
"requires": {
"type-detect": "4.0.8"
}
},
"@sinonjs/fake-timers": {
"version": "7.1.2",
"resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-7.1.2.tgz",
"integrity": "sha512-iQADsW4LBMISqZ6Ci1dupJL9pprqwcVFTcOsEmQOEhW+KLCVn/Y4Jrvg2k19fIHCp+iFprriYPTdRcQR8NbUPg==",
"dev": true,
"requires": {
"@sinonjs/commons": "^1.7.0"
}
},
"@sinonjs/samsam": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/@sinonjs/samsam/-/samsam-6.0.2.tgz",
"integrity": "sha512-jxPRPp9n93ci7b8hMfJOFDPRLFYadN6FSpeROFTR4UNF4i5b+EK6m4QXPO46BDhFgRy1JuS87zAnFOzCUwMJcQ==",
"dev": true,
"requires": {
"@sinonjs/commons": "^1.6.0",
"lodash.get": "^4.4.2",
"type-detect": "^4.0.8"
}
},
"@sinonjs/text-encoding": {
"version": "0.7.1",
"resolved": "https://registry.npmjs.org/@sinonjs/text-encoding/-/text-encoding-0.7.1.tgz",
"integrity": "sha512-+iTbntw2IZPb/anVDbypzfQa+ay64MW0Zo8aJ8gZPWMMK6/OubMVb6lUPMagqjOPnmtauXnFCACVl3O7ogjeqQ==",
"dev": true
},
"@types/accepts": {
"version": "1.3.5",
"resolved": "https://registry.npmjs.org/@types/accepts/-/accepts-1.3.5.tgz",
"integrity": "sha512-jOdnI/3qTpHABjM5cx1Hc0sKsPoYCp+DP/GJRGtDlPd7fiV9oXGGIcjW/ZOxLIvjGz8MA+uMZI9metHlgqbgwQ==",
"dev": true,
"requires": {
"@types/node": "*"
}
},
"@types/body-parser": {
"version": "1.19.0",
"resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.0.tgz",
"integrity": "sha512-W98JrE0j2K78swW4ukqMleo8R7h/pFETjM2DQ90MF6XK2i4LO4W3gQ71Lt4w3bfm2EvVSyWHplECvB5sK22yFQ==",
"dev": true,
"requires": {
"@types/connect": "*",
"@types/node": "*"
}
},
"@types/chai": {
"version": "4.2.18",
"resolved": "https://registry.npmjs.org/@types/chai/-/chai-4.2.18.tgz",
"integrity": "sha512-rS27+EkB/RE1Iz3u0XtVL5q36MGDWbgYe7zWiodyKNUnthxY0rukK5V36eiUCtCisB7NN8zKYH6DO2M37qxFEQ==",
"dev": true
},
"@types/chai-dom": {
"version": "0.0.9",
"resolved": "https://registry.npmjs.org/@types/chai-dom/-/chai-dom-0.0.9.tgz",
"integrity": "sha512-jj4F2NJog2/GBYsyJ8+NvhnWUBbPY4MUAKLdPJE6+568rw12GGXvj0ycUuP5nndVrnJgozmJAoMTvxvjJATXWw==",
"dev": true,
"requires": {
"@types/chai": "*"
}
},
"@types/co-body": {
"version": "5.1.0",
"resolved": "https://registry.npmjs.org/@types/co-body/-/co-body-5.1.0.tgz",
"integrity": "sha512-iRL97yYTJNGFv495U63ikKG9r60thDtQ403jEzBEFR4IY6kMxw2IfcPoxI8+HY3nRNLrwHFYuCnWGEB/0hFVwg==",
"dev": true,
"requires": {
"@types/node": "*",
"@types/qs": "*"
}
},
"@types/command-line-args": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/@types/command-line-args/-/command-line-args-5.0.0.tgz",
"integrity": "sha512-4eOPXyn5DmP64MCMF8ePDvdlvlzt2a+F8ZaVjqmh2yFCpGjc1kI3kGnCFYX9SCsGTjQcWIyVZ86IHCEyjy/MNg==",
"dev": true
},
"@types/connect": {
"version": "3.4.34",
"resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.34.tgz",
"integrity": "sha512-ePPA/JuI+X0vb+gSWlPKOY0NdNAie/rPUqX2GUPpbZwiKTkSPhjXWuee47E4MtE54QVzGCQMQkAL6JhV2E1+cQ==",
"dev": true,
"requires": {
"@types/node": "*"
}
},
"@types/content-disposition": {
"version": "0.5.3",
"resolved": "https://registry.npmjs.org/@types/content-disposition/-/content-disposition-0.5.3.tgz",
"integrity": "sha512-P1bffQfhD3O4LW0ioENXUhZ9OIa0Zn+P7M+pWgkCKaT53wVLSq0mrKksCID/FGHpFhRSxRGhgrQmfhRuzwtKdg==",
"dev": true
},
"@types/convert-source-map": {
"version": "1.5.1",
"resolved": "https://registry.npmjs.org/@types/convert-source-map/-/convert-source-map-1.5.1.tgz",
"integrity": "sha512-laiDIXqqthjJlyAMYAXOtN3N8+UlbM+KvZi4BaY5ZOekmVkBs/UxfK5O0HWeJVG2eW8F+Mu2ww13fTX+kY1FlQ==",
"dev": true
},
"@types/cookies": {
"version": "0.7.6",
"resolved": "https://registry.npmjs.org/@types/cookies/-/cookies-0.7.6.tgz",
"integrity": "sha512-FK4U5Qyn7/Sc5ih233OuHO0qAkOpEcD/eG6584yEiLKizTFRny86qHLe/rej3HFQrkBuUjF4whFliAdODbVN/w==",
"dev": true,
"requires": {
"@types/connect": "*",
"@types/express": "*",
"@types/keygrip": "*",
"@types/node": "*"
}
},
"@types/debounce": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/@types/debounce/-/debounce-1.2.0.tgz",
"integrity": "sha512-bWG5wapaWgbss9E238T0R6bfo5Fh3OkeoSt245CM7JJwVwpw6MEBCbIxLq5z8KzsE3uJhzcIuQkyiZmzV3M/Dw==",
"dev": true
},
"@types/dompurify": {
"version": "2.2.2",
"resolved": "https://registry.npmjs.org/@types/dompurify/-/dompurify-2.2.2.tgz",
"integrity": "sha512-8nNWfAa8/oZjH3OLY5Wsxu9ueo0NwVUotIi353g0P2+N5BuTLJyAVOnF4xBUY0NyFUGJHY05o1pO2bqLto+lmA==",
"dev": true,
"requires": {
"@types/trusted-types": "*"
}
},
"@types/estree": {
"version": "0.0.39",
"resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz",
"integrity": "sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==",
"dev": true
},
"@types/express": {
"version": "4.17.12",
"resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.12.tgz",
"integrity": "sha512-pTYas6FrP15B1Oa0bkN5tQMNqOcVXa9j4FTFtO8DWI9kppKib+6NJtfTOOLcwxuuYvcX2+dVG6et1SxW/Kc17Q==",
"dev": true,
"requires": {
"@types/body-parser": "*",
"@types/express-serve-static-core": "^4.17.18",
"@types/qs": "*",
"@types/serve-static": "*"
}
},
"@types/express-serve-static-core": {
"version": "4.17.21",
"resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.21.tgz",
"integrity": "sha512-gwCiEZqW6f7EoR8TTEfalyEhb1zA5jQJnRngr97+3pzMaO1RKoI1w2bw07TK72renMUVWcWS5mLI6rk1NqN0nA==",
"dev": true,
"requires": {
"@types/node": "*",
"@types/qs": "*",
"@types/range-parser": "*"
}
},
"@types/http-assert": {
"version": "1.5.1",
"resolved": "https://registry.npmjs.org/@types/http-assert/-/http-assert-1.5.1.tgz",
"integrity": "sha512-PGAK759pxyfXE78NbKxyfRcWYA/KwW17X290cNev/qAsn9eQIxkH4shoNBafH37wewhDG/0p1cHPbK6+SzZjWQ==",
"dev": true
},
"@types/http-errors": {
"version": "1.8.0",
"resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-1.8.0.tgz",
"integrity": "sha512-2aoSC4UUbHDj2uCsCxcG/vRMXey/m17bC7UwitVm5hn22nI8O8Y9iDpA76Orc+DWkQ4zZrOKEshCqR/jSuXAHA==",
"dev": true
},
"@types/istanbul-lib-coverage": {
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz",
"integrity": "sha512-sz7iLqvVUg1gIedBOvlkxPlc8/uVzyS5OwGz1cKjXzkl3FpL3al0crU8YGU1WoHkxn0Wxbw5tyi6hvzJKNzFsw==",
"dev": true
},
"@types/istanbul-lib-report": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz",
"integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==",
"dev": true,
"requires": {
"@types/istanbul-lib-coverage": "*"
}
},
"@types/istanbul-reports": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz",
"integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==",
"dev": true,
"requires": {
"@types/istanbul-lib-report": "*"
}
},
"@types/json5": {
"version": "0.0.29",
"resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz",
"integrity": "sha1-7ihweulOEdK4J7y+UnC86n8+ce4=",
"dev": true
},
"@types/keygrip": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@types/keygrip/-/keygrip-1.0.2.tgz",
"integrity": "sha512-GJhpTepz2udxGexqos8wgaBx4I/zWIDPh/KOGEwAqtuGDkOUJu5eFvwmdBX4AmB8Odsr+9pHCQqiAqDL/yKMKw==",
"dev": true
},
"@types/koa": {