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 0
/
package-lock.json
13213 lines (13213 loc) · 532 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": "apiconsole-docker",
"version": "0.2.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"@advanced-rest-client/arc-definitions": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-definitions/-/arc-definitions-3.1.1.tgz",
"integrity": "sha512-AbnR14AdFwlVSqWF83senQVM5JjllBoRq5uCGBGw8gLhIXylG+nlk+9sOLlpWCeAaxYiiGGqw/Lw4Ke57xf6Hw==",
"dev": true
},
"@advanced-rest-client/arc-electron-payload-processor": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-electron-payload-processor/-/arc-electron-payload-processor-1.0.2.tgz",
"integrity": "sha512-I52FrPrW+8i444YCbxlWMaO1EtXDu1OxKNrEE7QArrn5f9b6Bg0nzU4bpSTb6CZpEdLFU9IGAKeQYooLaumsRw==",
"dev": true,
"requires": {
"@advanced-rest-client/arc-types": "^0.2.20",
"esm": "^3.2.25"
}
},
"@advanced-rest-client/arc-events": {
"version": "0.2.13",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-events/-/arc-events-0.2.13.tgz",
"integrity": "sha512-I5Cx+jYqS4BXoJ1+noWMDbUefTctCqmzZkpfxF0brld8icn/lAeaHV9yu4rizdjx+sc3ps+Co57SmIC9MrTvYw==",
"dev": true,
"requires": {
"@advanced-rest-client/arc-types": "^0.2.40"
}
},
"@advanced-rest-client/arc-fit-mixin": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-fit-mixin/-/arc-fit-mixin-1.2.1.tgz",
"integrity": "sha512-r7QWIOKRRY4+Cn7/cILJKMf63V5nlb/Ej6B58DftLXOMJ5hqKPKdJWuXB+DRHAwAEfF+FhCmY5HfibSmCskj+Q==",
"dev": true,
"requires": {
"@open-wc/dedupe-mixin": "^1.3.0"
}
},
"@advanced-rest-client/arc-headers": {
"version": "0.1.7",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-headers/-/arc-headers-0.1.7.tgz",
"integrity": "sha512-6J/jo9WfTW9piJ+/REvF8b8VJLBfFVdOFCKfucRqqT2EMOdZOa2X/zulRwpBesZPezZ5b6Pik7DscUY4I9ORwg==",
"dev": true,
"requires": {
"@advanced-rest-client/arc-definitions": "^3.1.1",
"@advanced-rest-client/arc-events": "^0.2.13",
"@advanced-rest-client/arc-icons": "^3.2.2",
"@advanced-rest-client/arc-types": "^0.2.47",
"@advanced-rest-client/clipboard-copy": "^3.0.1",
"@advanced-rest-client/code-mirror": "^3.1.4",
"@advanced-rest-client/events-target-mixin": "^3.2.3",
"@anypoint-web-components/anypoint-autocomplete": "^0.2.8",
"@anypoint-web-components/anypoint-button": "^1.1.1",
"@anypoint-web-components/anypoint-input": "^0.2.23",
"@anypoint-web-components/anypoint-switch": "^0.1.4",
"@open-wc/dedupe-mixin": "^1.3.0",
"lit-element": "^2.4.0",
"lit-html": "^1.3.0"
}
},
"@advanced-rest-client/arc-icons": {
"version": "3.2.2",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-icons/-/arc-icons-3.2.2.tgz",
"integrity": "sha512-4KC2Amg7Bzaty0q0H2QsyZlfx0ceFdyN/WGrj1UXF98RdXtmKX8tBK9PrgHSnuaBWw1l/u/ZmjmXle6uXG6xvA==",
"dev": true,
"requires": {
"@polymer/iron-icon": "^3.0.1",
"@polymer/iron-iconset-svg": "^3.0.1",
"lit-element": "^2.4.0",
"lit-html": "^1.3.0"
}
},
"@advanced-rest-client/arc-marked": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-marked/-/arc-marked-1.1.0.tgz",
"integrity": "sha512-MxDtVlOBLz/ovzRrG69+OWMQWDvE6M1/+NxS3FvsAYAxRCtbyJpzqJOvo3BOtX46U9icWgBGWP8Pzx7ixzCFww==",
"dev": true,
"requires": {
"dompurify": "^2.1.1",
"lit-element": "^2.4.0",
"lit-html": "^1.3.0",
"marked": "^0.7.0"
}
},
"@advanced-rest-client/arc-models": {
"version": "4.2.8",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-models/-/arc-models-4.2.8.tgz",
"integrity": "sha512-xzybGC14UKbxP0WHLOz81VCsuSH4hsqUF92B/yWYliYrNbTNjtNpu+xqeYHelCAA2uWLwgFqYVEmvHqHZput0w==",
"dev": true,
"requires": {
"@advanced-rest-client/arc-electron-payload-processor": "^1.0.1",
"@advanced-rest-client/arc-events": "^0.2.13",
"@advanced-rest-client/arc-url": "^0.1.3",
"@advanced-rest-client/pouchdb-quick-search": "^2.0.3",
"@advanced-rest-client/uuid-generator": "^3.1.1",
"pouchdb": "^7.2.2"
}
},
"@advanced-rest-client/arc-overlay-mixin": {
"version": "1.1.7",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-overlay-mixin/-/arc-overlay-mixin-1.1.7.tgz",
"integrity": "sha512-Q3JHK2F0S5lFv3Xrp9DYuswzXC0O421i3PkGELfaznvRnuOD/0r8irlgShWXWltQbl9A79uKG11mnfU37aRXUA==",
"dev": true,
"requires": {
"@advanced-rest-client/arc-fit-mixin": "^1.2.1",
"@advanced-rest-client/arc-resizable-mixin": "^1.1.2",
"@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.0",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-resizable-mixin/-/arc-resizable-mixin-1.2.0.tgz",
"integrity": "sha512-hc8XjY6CfQDANuf0TfsfE6EWJwlXBZTtmv2h4luLZgHz55XPlWO7w2XI/YAZX6xQpcsR3cGv0eDnj9CkOaCcCQ==",
"dev": true,
"requires": {
"@open-wc/dedupe-mixin": "^1.3.0"
}
},
"@advanced-rest-client/arc-response": {
"version": "0.1.6",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-response/-/arc-response-0.1.6.tgz",
"integrity": "sha512-3WEbjTySTZElnfq8DnW8ojsht2yqjOHCNpiMv9s/mUvb8thHXyEIryXj/TipOR8rD7CctkwyzsYv4JNt73feLA==",
"dev": true,
"requires": {
"@advanced-rest-client/arc-events": "^0.2.13",
"@advanced-rest-client/arc-headers": "^0.1.5",
"@advanced-rest-client/arc-icons": "^3.2.2",
"@advanced-rest-client/arc-types": "^0.2.43",
"@advanced-rest-client/date-time": "^3.0.2",
"@advanced-rest-client/prism-highlight": "^4.0.2",
"@anypoint-web-components/anypoint-button": "^1.0.15",
"@anypoint-web-components/anypoint-item": "^1.0.5",
"@anypoint-web-components/anypoint-listbox": "^1.1.6",
"@anypoint-web-components/anypoint-menu-button": "^0.1.4",
"@polymer/paper-progress": "^3.0.0",
"lit-element": "^2.4.0",
"lit-html": "^1.3.0",
"prismjs": "^1.22.0"
}
},
"@advanced-rest-client/arc-types": {
"version": "0.2.49",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-types/-/arc-types-0.2.49.tgz",
"integrity": "sha512-bAGqtedKqocYXJgkvkSrrBW6acmcGYYZq96oSVY5lWIvAqkXjgqz8ryXuoeoZ/qxBzwYAxAOmjteUkJTqFJshA==",
"dev": true
},
"@advanced-rest-client/arc-url": {
"version": "0.1.3",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-url/-/arc-url-0.1.3.tgz",
"integrity": "sha512-TiNPDIe45PCfy1pNJY2naga/rfhaW8n/J3+VmizyowldBk68wqcpmETLnNz0GXJcpTImez4jaE74oYzmAUjLHA==",
"dev": true,
"requires": {
"@advanced-rest-client/arc-events": "^0.2.6",
"@advanced-rest-client/arc-icons": "^3.1.2",
"@advanced-rest-client/arc-models": "^4.2.6",
"@advanced-rest-client/arc-overlay-mixin": "^1.1.7",
"@advanced-rest-client/arc-resizable-mixin": "^1.2.0",
"@advanced-rest-client/events-target-mixin": "^3.2.3",
"@anypoint-web-components/anypoint-autocomplete": "^0.2.7",
"@anypoint-web-components/anypoint-button": "^1.1.1",
"@anypoint-web-components/anypoint-collapse": "^0.1.0",
"@anypoint-web-components/anypoint-input": "^0.2.23",
"@anypoint-web-components/anypoint-switch": "^0.1.4",
"@anypoint-web-components/validatable-mixin": "^1.1.3",
"@polymer/iron-form": "^3.0.1",
"lit-element": "^2.4.0",
"lit-html": "^1.3.0"
}
},
"@advanced-rest-client/authorization-method": {
"version": "0.2.3",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/authorization-method/-/authorization-method-0.2.3.tgz",
"integrity": "sha512-97sH3dHVJTcPMY/aFEejdKSP9aJ5hNFoM170xvQ8o9rlX5D0rvSG4hEOWUJ3Dyq5G6iyoQ/FWRWznjCxEOqFzA==",
"dev": true,
"requires": {
"@advanced-rest-client/arc-events": "^0.2.13",
"@advanced-rest-client/arc-icons": "^3.2.2",
"@advanced-rest-client/arc-types": "^0.2.47",
"@advanced-rest-client/clipboard-copy": "^3.0.1",
"@advanced-rest-client/events-target-mixin": "^3.2.3",
"@advanced-rest-client/oauth2-scope-selector": "^4.0.0",
"@anypoint-web-components/anypoint-button": "^1.1.1",
"@anypoint-web-components/anypoint-checkbox": "^1.1.3",
"@anypoint-web-components/anypoint-dialog": "^0.1.6",
"@anypoint-web-components/anypoint-dropdown-menu": "^0.1.20",
"@anypoint-web-components/anypoint-input": "^0.2.23",
"@anypoint-web-components/anypoint-item": "^1.0.8",
"@anypoint-web-components/anypoint-listbox": "^1.1.6",
"@anypoint-web-components/anypoint-switch": "^0.1.4",
"@open-wc/dedupe-mixin": "^1.3.0",
"@polymer/paper-spinner": "^3.0.2",
"lit-element": "^2.4.0",
"lit-html": "^1.3.0"
}
},
"@advanced-rest-client/clipboard-copy": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/clipboard-copy/-/clipboard-copy-3.0.1.tgz",
"integrity": "sha512-nuadCt6g/bhhbiUcC64yyPsZIgyWwSJvB6dD2Xpoe1G78FhqYU3bCLPco4iN5voFlo9TgDryxOaagPwcz/AUqA==",
"dev": true
},
"@advanced-rest-client/code-mirror": {
"version": "3.1.4",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/code-mirror/-/code-mirror-3.1.4.tgz",
"integrity": "sha512-GgFx6Go0owxXx5/m+Fw2anT7QSvhaTG7B1uZ3Yi9TKnrGDGW/fYJqkNhbZtjvtza/KxBNh/lfz8MKTpuNTK3lQ==",
"dev": true,
"requires": {
"@anypoint-web-components/anypoint-item": "^1.0.8",
"@anypoint-web-components/anypoint-listbox": "^1.1.6",
"@anypoint-web-components/validatable-mixin": "^1.1.3",
"@polymer/paper-styles": "^3.0.0",
"@types/codemirror": "^0.0.100",
"codemirror": "^5.58.3",
"lit-element": "^2.4.0"
}
},
"@advanced-rest-client/code-mirror-linter": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/code-mirror-linter/-/code-mirror-linter-3.0.2.tgz",
"integrity": "sha512-jFdQsRztepCvGGRZbKTILeLxJTzycsw5iJ2pf5SmEiQlANOwBqXUp/9KvSkZksck/QnDsZDrJASv1MQ9OnJzhg==",
"dev": true,
"requires": {
"codemirror": "^5.58.1",
"jsonlint": "^1.6.3",
"lit-element": "^2.4.0"
}
},
"@advanced-rest-client/content-type-selector": {
"version": "3.1.3",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/content-type-selector/-/content-type-selector-3.1.3.tgz",
"integrity": "sha512-H2Z1mLbLbY1aVHqq16d9WTt7F8eG/XmfFbOFP0ZHAUfoa6l7ibsTJFMtrLR7IouOHiWSZJJPLZnOApwrrgUoIg==",
"dev": true,
"requires": {
"@advanced-rest-client/events-target-mixin": "^3.0.0",
"@anypoint-web-components/anypoint-dropdown-menu": "^0.1.10",
"@anypoint-web-components/anypoint-item": "^1.0.3",
"@anypoint-web-components/anypoint-listbox": "^1.0.3",
"lit-element": "^2.0.1"
}
},
"@advanced-rest-client/date-time": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/date-time/-/date-time-3.0.2.tgz",
"integrity": "sha512-e5hJSVex/EHMo0YWZprOZUQs4KO/Bkt0KAUzjGrOZbpoafuK1Zs1Szu52KtEh7iui9jaTloWqhasrpnkqsgMDQ==",
"dev": true
},
"@advanced-rest-client/events-target-mixin": {
"version": "3.2.3",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/events-target-mixin/-/events-target-mixin-3.2.3.tgz",
"integrity": "sha512-rXdou8ZqOhtb8BEp5YFJXi1i3xugIuH3k154mdcuObkd5LR/HEHdACKKaYyGe7ATmaBy5mzvr7l4WZFpiTigNg==",
"dev": true,
"requires": {
"@open-wc/dedupe-mixin": "^1.2.18"
}
},
"@advanced-rest-client/files-payload-editor": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/files-payload-editor/-/files-payload-editor-3.1.0.tgz",
"integrity": "sha512-5NJ3GyJx0eUhxHlzzU8bYsFlugh5LjSWOtECgcIbh1Tcf4w5rdppkV4sILKw0TTeP16peqOq7jlvxV066ZK9eg==",
"dev": true,
"requires": {
"@advanced-rest-client/arc-icons": "^3.1.0",
"@anypoint-web-components/anypoint-button": "^1.1.1",
"@anypoint-web-components/validatable-mixin": "^1.1.1",
"lit-element": "^2.3.1"
}
},
"@advanced-rest-client/form-data-editor": {
"version": "3.0.7",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/form-data-editor/-/form-data-editor-3.0.7.tgz",
"integrity": "sha512-x/zUrwt3JCXioxHkpUKrpv/BtKVj5YREV0Eqid8RJSpypZS1fp7ylWrvVl1G82pwkRdmlIiQVgRj+rjn9Y3PTA==",
"dev": true,
"requires": {
"@advanced-rest-client/arc-icons": "^3.0.2",
"@advanced-rest-client/arc-marked": "^1.0.4",
"@advanced-rest-client/markdown-styles": "^3.1.0",
"@advanced-rest-client/payload-parser-mixin": "^3.0.0",
"@anypoint-web-components/anypoint-button": "^1.0.12",
"@anypoint-web-components/anypoint-checkbox": "^1.0.1",
"@anypoint-web-components/anypoint-input": "^0.2.5",
"@anypoint-web-components/validatable-mixin": "^1.0.2",
"@api-components/api-form-mixin": "^3.0.3",
"@api-components/api-property-form-item": "^3.0.9",
"@polymer/iron-form": "^3.0.0",
"lit-element": "^2.2.1"
}
},
"@advanced-rest-client/headers-parser-mixin": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/headers-parser-mixin/-/headers-parser-mixin-3.2.0.tgz",
"integrity": "sha512-/kpQtZ4xZGuISolGekDyVO/WLRc/nYCYSpk2FMUbtn1X6mU52xzuVObnCbX4ySCrwjztEpXlu0h3si/UwXqJBw==",
"dev": true,
"requires": {
"@open-wc/dedupe-mixin": "^1.2.17"
}
},
"@advanced-rest-client/http-code-snippets": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/http-code-snippets/-/http-code-snippets-3.2.1.tgz",
"integrity": "sha512-3DC3IcY5A0CxZ+yLuwNkJSbdf0i5odMBjJ7R1HL5vX3Uny5RVKtzXmYN8lJMRIGjjbbkHHCJqSbB8HXjOcGceg==",
"dev": true,
"requires": {
"@anypoint-web-components/anypoint-button": "^1.1.1",
"@anypoint-web-components/anypoint-tabs": "^0.1.12",
"@polymer/prism-element": "^3.0.0",
"lit-element": "^2.4.0",
"prismjs": "^1.23.0"
}
},
"@advanced-rest-client/http-method-selector": {
"version": "3.0.5",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/http-method-selector/-/http-method-selector-3.0.5.tgz",
"integrity": "sha512-h2sDgIAKeYHVR3OsVg+/BEIjT89C8Yp9y69VnixvvEPeWx42/gj9jCY2qTtdZpjbkfVKPnyDffSFGBpqKBkBwA==",
"dev": true,
"requires": {
"@advanced-rest-client/arc-icons": "^3.0.4",
"@advanced-rest-client/events-target-mixin": "^3.0.0",
"@anypoint-web-components/anypoint-button": "^1.0.12",
"@anypoint-web-components/anypoint-dropdown-menu": "^0.1.11",
"@anypoint-web-components/anypoint-input": "^0.2.9",
"@anypoint-web-components/anypoint-item": "^1.0.4",
"@anypoint-web-components/anypoint-listbox": "^1.0.3",
"@anypoint-web-components/anypoint-radio-button": "^0.1.3",
"lit-element": "^2.0.1",
"lit-html": "^1.1.2"
}
},
"@advanced-rest-client/json-table": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/json-table/-/json-table-3.2.0.tgz",
"integrity": "sha512-RCMhLzlRgIk2gK57LzJPHi9Czgr2jLj++eDStwpTUvETdwdLIt1ijDzfeHIMTGeNQAG1C2IZTytIV1L1npRsKg==",
"dev": true,
"requires": {
"@advanced-rest-client/arc-icons": "^3.1.0",
"@anypoint-web-components/anypoint-button": "^1.1.1",
"@anypoint-web-components/anypoint-dropdown-menu": "^0.1.16",
"@anypoint-web-components/anypoint-item": "^1.0.7",
"@anypoint-web-components/anypoint-listbox": "^1.1.4",
"@open-wc/dedupe-mixin": "^1.2.17",
"lit-element": "^2.3.1"
}
},
"@advanced-rest-client/markdown-styles": {
"version": "3.1.3",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/markdown-styles/-/markdown-styles-3.1.3.tgz",
"integrity": "sha512-Vru2fA8P1SEtqEEw8HJ2B6bqFZIZhgHB1em93N5EkJlFWU6J97Zt5njoz3iWVbqdZyLerRFbR2t436SzbV4gfg==",
"dev": true,
"requires": {
"lit-element": "^2.4.0"
}
},
"@advanced-rest-client/multipart-payload-editor": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/multipart-payload-editor/-/multipart-payload-editor-4.1.0.tgz",
"integrity": "sha512-KXKWYpVrbDon1qQgVNTEobCUEB6ucpb7aJWL6cUZVxOkts2dQJPj1reSzzSYJSHPxDomb27xnEfRbovL38B5jw==",
"dev": true,
"requires": {
"@advanced-rest-client/arc-icons": "^3.0.5",
"@advanced-rest-client/arc-marked": "^1.0.6",
"@advanced-rest-client/clipboard-copy": "^3.0.1",
"@advanced-rest-client/markdown-styles": "^3.1.2",
"@advanced-rest-client/multipart-payload-transformer": "^3.0.0",
"@advanced-rest-client/prism-highlight": "^4.0.2",
"@anypoint-web-components/anypoint-button": "^1.0.15",
"@anypoint-web-components/anypoint-input": "^0.2.14",
"@anypoint-web-components/validatable-mixin": "^1.0.2",
"@api-components/api-form-mixin": "^3.0.4",
"@api-components/api-property-form-item": "^3.0.12",
"@api-components/api-view-model-transformer": "^4.1.0",
"@polymer/iron-form": "^3.0.0",
"@polymer/paper-toast": "^3.0.0",
"@polymer/prism-element": "^3.0.0",
"lit-element": "^2.3.1",
"lit-html": "^1.2.1",
"prismjs": "^1.20.0"
}
},
"@advanced-rest-client/multipart-payload-transformer": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/multipart-payload-transformer/-/multipart-payload-transformer-3.0.0.tgz",
"integrity": "sha512-P3uejpZL7SBSCvkruwlKKTtfmkPUuKK5CKO92Tbgq7Tscb1bmZQ9jYxeS2XfroDiG0It2zyJqFoXIwSSOLwpoA==",
"dev": true,
"requires": {
"lit-element": "^2.2.1"
}
},
"@advanced-rest-client/oauth-authorization": {
"version": "5.0.4",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/oauth-authorization/-/oauth-authorization-5.0.4.tgz",
"integrity": "sha512-1hdT7hEz/QRx6499dYiPSYnKdYD+C0NLIBtvRN+qYSoqFK3dlxhKcvVVdmMVCgXB1mwbJYeQR2zPJ4V946xoMw==",
"dev": true,
"requires": {
"@advanced-rest-client/arc-events": "^0.2.13",
"@advanced-rest-client/arc-types": "^0.2.47",
"@advanced-rest-client/events-target-mixin": "^3.2.3",
"@advanced-rest-client/headers-parser-mixin": "^3.2.0",
"@polymer/iron-meta": "^3.0.0",
"lit-element": "^2.4.0"
}
},
"@advanced-rest-client/oauth2-scope-selector": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/oauth2-scope-selector/-/oauth2-scope-selector-4.0.0.tgz",
"integrity": "sha512-PbK3pTD9Dr57rDAlaOoN1JSuoljsFQsI+vm0nUt48wTXtFNx3EV/26JdeZ1QfTvKWGPFDlOsEut8oMSaokIPHw==",
"dev": true,
"requires": {
"@advanced-rest-client/arc-icons": "^3.1.2",
"@anypoint-web-components/anypoint-autocomplete": "^0.2.7",
"@anypoint-web-components/anypoint-button": "^1.1.1",
"@anypoint-web-components/anypoint-control-mixins": "^1.1.3",
"@anypoint-web-components/anypoint-input": "^0.2.22",
"@anypoint-web-components/validatable-mixin": "^1.1.3",
"@polymer/paper-toast": "^3.0.0",
"lit-element": "^2.4.0",
"lit-html": "^1.3.0"
}
},
"@advanced-rest-client/payload-parser-mixin": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/payload-parser-mixin/-/payload-parser-mixin-3.0.0.tgz",
"integrity": "sha512-I0ZqVIWVx8Mdvx5eDJeYyhUm8nd12BaQoODjdTLw8bKp/+F0g7K1wv0AMDvdiXq2Pj9PGeufIMPBXngM5bp0WA==",
"dev": true,
"requires": {
"@polymer/polymer": "^3.0.0"
}
},
"@advanced-rest-client/pouchdb-mapreduce-no-ddocs": {
"version": "3.0.3",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/pouchdb-mapreduce-no-ddocs/-/pouchdb-mapreduce-no-ddocs-3.0.3.tgz",
"integrity": "sha512-5gqGWnlLQxLJov/6WE7iuz/LOE0xZJcRI7o2lnxBVore3sj+F3R4OjRjiL8wiZvykEMSdX7Qy+BhFMUrKMvWSw==",
"dev": true,
"requires": {
"inherits": "2.0.1",
"pouchdb-binary-utils": "6.4.3",
"pouchdb-collate": "1.2.0",
"pouchdb-errors": "6.4.3",
"pouchdb-mapreduce-utils": "6.4.3",
"pouchdb-md5": "6.4.3",
"pouchdb-promise": "6.4.3",
"pouchdb-utils": "6.4.3",
"scope-eval": "0.0.3",
"spark-md5": "2.0.2"
},
"dependencies": {
"inherits": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz",
"integrity": "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=",
"dev": true
},
"pouchdb-promise": {
"version": "6.4.3",
"resolved": "https://registry.npmjs.org/pouchdb-promise/-/pouchdb-promise-6.4.3.tgz",
"integrity": "sha512-ruJaSFXwzsxRHQfwNHjQfsj58LBOY1RzGzde4PM5CWINZwFjCQAhZwfMrch2o/0oZT6d+Xtt0HTWhq35p3b0qw==",
"dev": true,
"requires": {
"lie": "3.1.1"
}
},
"spark-md5": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/spark-md5/-/spark-md5-2.0.2.tgz",
"integrity": "sha1-N7djhHdjrn56zvLKUjPQHmSaeLc=",
"dev": true
}
}
},
"@advanced-rest-client/pouchdb-quick-search": {
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/pouchdb-quick-search/-/pouchdb-quick-search-2.0.3.tgz",
"integrity": "sha512-nOJo7AT037UTPQY5CFiVqk4NucwjNiPGWyF/QU8dXPqyK2ZgxjiN/wyRzcpLvIYj6MO2JepQFdfW8nx35cJxXw==",
"dev": true,
"requires": {
"@advanced-rest-client/pouchdb-mapreduce-no-ddocs": "^3.0.0",
"json-stable-stringify": "^1.0.1",
"lunr": "0.7.1",
"md5": "^2.2.1",
"pouchdb-extend": "^0.1.0",
"pouchdb-promise": "5.4.4",
"uniq": "^1.0.1"
}
},
"@advanced-rest-client/prism-highlight": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/prism-highlight/-/prism-highlight-4.0.2.tgz",
"integrity": "sha512-wk9u0wLgkap21140jYfyhy6O88L8o7VTgd1auPQTLncHcoMN3r6MCcIVi6xqsKebhJpO4TxkbERLfU9F2r+f9w==",
"dev": true,
"requires": {
"lit-element": "^2.0.1",
"prismjs": "^1.11.0"
}
},
"@advanced-rest-client/raw-payload-editor": {
"version": "3.0.6",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/raw-payload-editor/-/raw-payload-editor-3.0.6.tgz",
"integrity": "sha512-c6uZRDHfOKn90vY+FC3xsvEmmD5j91gtSTVWwDQOWp4HMF4GEP4huS6oTjXsLxdF15fifIBmnI1cF+BIrCf+bg==",
"dev": true,
"requires": {
"@advanced-rest-client/arc-resizable-mixin": "^1.0.0",
"@advanced-rest-client/code-mirror": "^3.0.3",
"@advanced-rest-client/code-mirror-linter": "^3.0.0",
"@advanced-rest-client/events-target-mixin": "^3.0.0",
"@advanced-rest-client/payload-parser-mixin": "^3.0.0",
"@anypoint-web-components/anypoint-button": "^1.0.12",
"@polymer/paper-toast": "^3.0.0",
"lit-element": "^2.2.1"
}
},
"@advanced-rest-client/uuid-generator": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/uuid-generator/-/uuid-generator-3.1.1.tgz",
"integrity": "sha512-FGC/8jodMca8j4qlSxn4+D+5PrrJfUzYkCxkfjNp9uSzMEuuSiBONIwKVKoCSu6HehBHvLpuGdmIh4KLE6RMJg==",
"dev": true
},
"@anypoint-web-components/anypoint-autocomplete": {
"version": "0.2.8",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-autocomplete/-/anypoint-autocomplete-0.2.8.tgz",
"integrity": "sha512-VprriG126tHjkzfopJ/fWykGa5VW1n/bawqnkv46IFZj2+yVDEj+0U/7wQMlKzvkKopj7rVQYlD9rn7lbNc1PQ==",
"dev": true,
"requires": {
"@anypoint-web-components/anypoint-dropdown": "^1.1.4",
"@anypoint-web-components/anypoint-item": "^1.0.8",
"@anypoint-web-components/anypoint-listbox": "^1.1.6",
"@polymer/paper-progress": "^3.0.0",
"@polymer/paper-ripple": "^3.0.2",
"lit-element": "^2.4.0"
}
},
"@anypoint-web-components/anypoint-button": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-button/-/anypoint-button-1.1.1.tgz",
"integrity": "sha512-S+cfMd5GRepD+133ajGwCNGG+nzTQnH88kcXzbG+Nsl2yC7FQRNNO6N0VQFsfuRl7e+FwWAp3W2iM/HxoAO1kg==",
"dev": true,
"requires": {
"@anypoint-web-components/anypoint-control-mixins": "^1.1.1",
"@polymer/paper-ripple": "^3.0.2",
"lit-element": "^2.3.1"
}
},
"@anypoint-web-components/anypoint-checkbox": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-checkbox/-/anypoint-checkbox-1.1.3.tgz",
"integrity": "sha512-z/yfnAMyXb/dyKIvE6Dm/5UJ6U1dm+nJ+p2Ss9Vx6awAtpcHfsjZd1mAwsdeiTzgN8qgFlhdCxMkNBctQmbmxA==",
"dev": true,
"requires": {
"@anypoint-web-components/anypoint-control-mixins": "^1.1.3",
"@anypoint-web-components/anypoint-form-mixins": "^1.2.2",
"lit-element": "^2.4.0"
}
},
"@anypoint-web-components/anypoint-collapse": {
"version": "0.1.0",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-collapse/-/anypoint-collapse-0.1.0.tgz",
"integrity": "sha512-EVl5sVD3ErRN2MNOcWNck/huuRW5/RJVGuK/YK+dWwg602OQ9L2RbLLJrS0GQ7hh8al/1DmhdmGauK73QkTM1A==",
"dev": true,
"requires": {
"@advanced-rest-client/arc-resizable-mixin": "^1.1.0",
"lit-element": "^2.2.1",
"lit-html": "^1.1.2"
}
},
"@anypoint-web-components/anypoint-control-mixins": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-control-mixins/-/anypoint-control-mixins-1.1.3.tgz",
"integrity": "sha512-LRhwEav2ZpDBRKiGo3Upu4B0ur/j8+2JxeqHGwxcXc8ORuiJLVxcorURuKhLyvEjk5fP5pI0S0KGIUj66N1KQg==",
"dev": true,
"requires": {
"@open-wc/dedupe-mixin": "^1.3.0"
}
},
"@anypoint-web-components/anypoint-dialog": {
"version": "0.1.6",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-dialog/-/anypoint-dialog-0.1.6.tgz",
"integrity": "sha512-BAne4mYs8zp2RlzoB8RWDqRIHvke7ezMQj8qGT6xgHO96j5p8uF2tjbaX5Py50JXeMDsvj8JuZUPJFlzqAxWOA==",
"dev": true,
"requires": {
"@advanced-rest-client/arc-overlay-mixin": "^1.1.6",
"@open-wc/dedupe-mixin": "^1.3.0",
"lit-element": "^2.4.0",
"lit-html": "^1.3.0"
}
},
"@anypoint-web-components/anypoint-dropdown": {
"version": "1.1.4",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-dropdown/-/anypoint-dropdown-1.1.4.tgz",
"integrity": "sha512-t84wYqpeljd2+41Ci/ME82o1R2qL1gn3mLTmHx3J+oS8ou0FOGhSHKKuxchF0Y87ydE1fGmWdE6Im4FIwLUCKQ==",
"dev": true,
"requires": {
"@advanced-rest-client/arc-overlay-mixin": "^1.1.7",
"@anypoint-web-components/anypoint-control-mixins": "^1.1.3",
"lit-element": "^2.4.0",
"lit-html": "^1.3.0"
}
},
"@anypoint-web-components/anypoint-dropdown-menu": {
"version": "0.1.20",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-dropdown-menu/-/anypoint-dropdown-menu-0.1.20.tgz",
"integrity": "sha512-iqV6KkorsP7vUtNX/zKv3Pxy/oktXbijdjCDjHwzxJ/jzuokJc+Y4VhnLdQ3B0dNUn+D2Mg3lhppy1FwLl6oZg==",
"dev": true,
"requires": {
"@anypoint-web-components/anypoint-button": "^1.1.1",
"@anypoint-web-components/anypoint-control-mixins": "^1.1.3",
"@anypoint-web-components/anypoint-dropdown": "^1.1.4",
"@anypoint-web-components/validatable-mixin": "^1.1.3",
"lit-element": "^2.4.0",
"lit-html": "^1.3.0"
}
},
"@anypoint-web-components/anypoint-form-mixins": {
"version": "1.2.2",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-form-mixins/-/anypoint-form-mixins-1.2.2.tgz",
"integrity": "sha512-Z9aC5WZOr58GnabwPhVq8OpZ6Yk6RU/HGX/uC9mP2h5cohTqCCwZBgyDmRE5YzjBidaWR+9mCUPKJsxl9Z9AEA==",
"dev": true,
"requires": {
"@anypoint-web-components/validatable-mixin": "^1.1.3",
"@open-wc/dedupe-mixin": "^1.3.0"
}
},
"@anypoint-web-components/anypoint-input": {
"version": "0.2.24",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-input/-/anypoint-input-0.2.24.tgz",
"integrity": "sha512-IFxwuolKXBtGDmWGqfmdlJwzGlAJr7fE56tNqMrdqCNHEEJvxcWBxIXiWDfnN7SctuqQDkX1Oz+o9wIe3k2tlw==",
"dev": true,
"requires": {
"@advanced-rest-client/arc-icons": "^3.1.2",
"@anypoint-web-components/anypoint-button": "^1.1.1",
"@anypoint-web-components/anypoint-control-mixins": "^1.1.3",
"@anypoint-web-components/validatable-mixin": "^1.1.3",
"@open-wc/dedupe-mixin": "^1.3.0",
"lit-element": "^2.4.0",
"lit-html": "^1.3.0"
}
},
"@anypoint-web-components/anypoint-item": {
"version": "1.0.8",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-item/-/anypoint-item-1.0.8.tgz",
"integrity": "sha512-eqS74CXXIHHyU0Q9QbubfOqURQBLlZETRSJ/qs3AE47Hg6qO1Hr8DNy15qwECGsdm/rZ611K73ZJCuQtC0FRSA==",
"dev": true,
"requires": {
"@anypoint-web-components/anypoint-control-mixins": "^1.1.2",
"@anypoint-web-components/anypoint-styles": "^1.0.1",
"lit-element": "^2.4.0",
"lit-html": "^1.3.0"
}
},
"@anypoint-web-components/anypoint-listbox": {
"version": "1.1.6",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-listbox/-/anypoint-listbox-1.1.6.tgz",
"integrity": "sha512-YkQuORirn6k+erAeB1H1OZgFqc7gOPcGaJoH+TuXW8Sb5gdburU8UtdTnO9CvZ/a+pCcIE35EgrdcInBglXGiQ==",
"dev": true,
"requires": {
"@anypoint-web-components/anypoint-menu-mixin": "^1.1.7",
"lit-element": "^2.4.0",
"lit-html": "^1.3.0"
}
},
"@anypoint-web-components/anypoint-menu-button": {
"version": "0.1.4",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-menu-button/-/anypoint-menu-button-0.1.4.tgz",
"integrity": "sha512-wPGgvTYZtegArAqsMkA+M7b9UodW2bFPkG/87s/FEj9MXUrLAarevqNq/oHeKBCq598Sl5P2o2XG5fZm5AX8Qg==",
"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-radio-button": {
"version": "0.1.6",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-radio-button/-/anypoint-radio-button-0.1.6.tgz",
"integrity": "sha512-WOT4jXDoa40tPxySjF39pidATUvnlBO7UmqTTNLzsCjxSUy9hETP2yxE7ok4Qe6tvI5vHfaTxcho535a5X0tTQ==",
"dev": true,
"requires": {
"@anypoint-web-components/anypoint-form-mixins": "^1.2.1",
"@anypoint-web-components/anypoint-menu-mixin": "^1.1.7",
"@anypoint-web-components/anypoint-styles": "^1.0.1",
"lit-element": "^2.4.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.4",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-switch/-/anypoint-switch-0.1.4.tgz",
"integrity": "sha512-ltjgMHFuWC80V1+FDI34M+Q6gnNXs0+skfuM6/bbL0SPup5wttQc5OGrZcje7PwxExstUNHIF9+oLzPbHjfShQ==",
"dev": true,
"requires": {
"@anypoint-web-components/anypoint-control-mixins": "^1.1.1",
"@anypoint-web-components/anypoint-form-mixins": "^1.2.0",
"lit-element": "^2.3.1"
}
},
"@anypoint-web-components/anypoint-tabs": {
"version": "0.1.12",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-tabs/-/anypoint-tabs-0.1.12.tgz",
"integrity": "sha512-t3Qe9JPRJCof5LMMVDcOqltDnGvpigUboxASVrovuf0iPeDYgPWjJ59pNgeLFnT20LGsZVgEAGWBnOuuK5XGuw==",
"dev": true,
"requires": {
"@advanced-rest-client/arc-resizable-mixin": "^1.1.1",
"@anypoint-web-components/anypoint-button": "^1.1.1",
"@anypoint-web-components/anypoint-control-mixins": "^1.1.2",
"@anypoint-web-components/anypoint-menu-mixin": "^1.1.7",
"@polymer/iron-icon": "^3.0.1",
"@polymer/paper-ripple": "^3.0.2",
"lit-element": "^2.4.0",
"lit-html": "^1.3.0"
}
},
"@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.1",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/validator-mixin/-/validator-mixin-1.1.1.tgz",
"integrity": "sha512-SHBFXn/uHP5ptQY/ZV/DzEb0dBYldQF1Rti1q+3lfbUcYiA59QdfsPvOmre6a64NeaHagV/aMd4zj3FNH5hAXg==",
"dev": true,
"requires": {
"@open-wc/dedupe-mixin": "^1.2.17"
}
},
"@api-components/amf-helper-mixin": {
"version": "4.3.4",
"resolved": "https://registry.npmjs.org/@api-components/amf-helper-mixin/-/amf-helper-mixin-4.3.4.tgz",
"integrity": "sha512-YJg3gmckxI07Rw8B/5DCZMHoEC/Exl+FF1wDThfcN35UfE7yBrcAEQ4zbGcMHdloZQDPpg7B/KAV5g9pzdD/KQ==",
"dev": true
},
"@api-components/api-annotation-document": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/@api-components/api-annotation-document/-/api-annotation-document-4.1.0.tgz",
"integrity": "sha512-LP8dX2WqEkPUYF9BM4AV+LyUII/rTN1URbXNy0MilMfupR+oNjBymxhvd59gsDYpJKtHPJwdiKfx4+nWXakCJQ==",
"dev": true,
"requires": {
"@advanced-rest-client/arc-icons": "^3.0.5",
"@api-components/amf-helper-mixin": "^4.0.17",
"lit-element": "^2.2.1",
"lit-html": "^1.1.2"
}
},
"@api-components/api-authorization": {
"version": "0.5.1",
"resolved": "https://registry.npmjs.org/@api-components/api-authorization/-/api-authorization-0.5.1.tgz",
"integrity": "sha512-zH3P/yxtZw74lw0ZS3ePpm1JTWK75u7JkqQct3or9y78jzfLqugZD6zAWhea4oql+3pZq6nD4saV9nVEouMAAQ==",
"dev": true,
"requires": {
"@advanced-rest-client/arc-icons": "^3.2.2",
"@advanced-rest-client/arc-marked": "^1.1.0",
"@advanced-rest-client/arc-types": "^0.2.47",
"@advanced-rest-client/authorization-method": "^0.2.3",
"@advanced-rest-client/events-target-mixin": "^3.1.1",
"@anypoint-web-components/anypoint-button": "^1.1.1",
"@anypoint-web-components/anypoint-dropdown-menu": "^0.1.14",
"@anypoint-web-components/anypoint-item": "^1.0.5",
"@anypoint-web-components/anypoint-listbox": "^1.0.4",
"@api-components/amf-helper-mixin": "^4.3.4",
"@api-components/api-forms": "^0.1.2",
"@open-wc/dedupe-mixin": "^1.3.0",
"lit-element": "^2.3.1",
"lit-html": "^1.2.1"
}
},
"@api-components/api-body-document": {
"version": "4.2.1",
"resolved": "https://registry.npmjs.org/@api-components/api-body-document/-/api-body-document-4.2.1.tgz",
"integrity": "sha512-VK6ZsSX4Vw4KFGrlhmoC7VHjlC8ueH9lkX6okn2iLb9MoXNMptsAJ6Z6iFpaWLsSbpuJyeA6WsVjQx8j49RbhQ==",
"dev": true,
"requires": {
"@advanced-rest-client/arc-icons": "^3.0.4",
"@advanced-rest-client/arc-marked": "^1.0.6",
"@advanced-rest-client/markdown-styles": "^3.1.1",
"@anypoint-web-components/anypoint-button": "^1.0.15",
"@api-components/amf-helper-mixin": "^4.1.8",
"@api-components/api-resource-example-document": "^4.1.1",
"@api-components/api-schema-document": "^4.0.3",
"@api-components/api-type-document": "^4.2.2",
"@api-components/raml-aware": "^3.0.0",
"@polymer/iron-collapse": "^3.0.0",
"lit-element": "^2.4.0"
}
},
"@api-components/api-body-editor": {
"version": "4.0.6",
"resolved": "https://registry.npmjs.org/@api-components/api-body-editor/-/api-body-editor-4.0.6.tgz",
"integrity": "sha512-n+y3K29cCBgG4nWbmq1Gs1vtUbkI7Q23rMyxZofQ//TErwLK9y6K21KGJGHLUiEWjW5qYtTA+5LmRoB6mdKh+g==",
"dev": true,
"requires": {
"@advanced-rest-client/clipboard-copy": "^3.0.1",
"@advanced-rest-client/content-type-selector": "^3.1.3",
"@advanced-rest-client/events-target-mixin": "^3.1.1",
"@advanced-rest-client/files-payload-editor": "^3.0.4",
"@advanced-rest-client/form-data-editor": "^3.0.7",
"@advanced-rest-client/multipart-payload-editor": "^4.0.1",
"@advanced-rest-client/raw-payload-editor": "^3.0.6",
"@anypoint-web-components/anypoint-button": "^1.0.15",
"@anypoint-web-components/anypoint-dropdown-menu": "^0.1.14",
"@anypoint-web-components/anypoint-item": "^1.0.5",
"@anypoint-web-components/anypoint-listbox": "^1.0.4",
"@api-components/amf-helper-mixin": "^4.1.1",
"@api-components/api-example-generator": "^4.2.0",
"@api-components/api-form-mixin": "^3.0.4",
"@api-components/api-view-model-transformer": "^4.0.3",
"@api-components/raml-aware": "^3.0.0",
"lit-element": "^2.3.1",
"lit-html": "^1.2.1"
}
},
"@api-components/api-console-ext-comm": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/@api-components/api-console-ext-comm/-/api-console-ext-comm-3.0.0.tgz",
"integrity": "sha512-aHpuDhsUFUp5tNy0cMtWG52uCOMPMSU+Owpj5JleqnAuHC7bBrBM+qntAZK9PNHm8itRNG+2bov3CwBzdt5bXA==",
"dev": true,
"requires": {
"lit-element": "^2.0.1"
}
},
"@api-components/api-documentation": {
"version": "6.0.1",
"resolved": "https://registry.npmjs.org/@api-components/api-documentation/-/api-documentation-6.0.1.tgz",
"integrity": "sha512-RA9oHqQZqVF/SrXVXFQpHTbBSMOoFChsejoPks7UHSx8mMVq6wEpYpmOuTxtmbW1KQM1m31eoaQmrvQ2TMeSsA==",
"dev": true,
"requires": {
"@advanced-rest-client/events-target-mixin": "^3.2.3",
"@api-components/amf-helper-mixin": "^4.3.4",
"@api-components/api-documentation-document": "^4.0.2",
"@api-components/api-endpoint-documentation": "^6.0.0",
"@api-components/api-method-documentation": "^5.1.9",
"@api-components/api-security-documentation": "^4.0.5",
"@api-components/api-server-selector": "^0.6.3",
"@api-components/api-summary": "^4.3.0",
"@api-components/api-type-documentation": "^4.1.0",
"lit-element": "^2.4.0",
"lit-html": "^1.3.0"
}
},
"@api-components/api-documentation-document": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@api-components/api-documentation-document/-/api-documentation-document-4.0.2.tgz",
"integrity": "sha512-zHwLytXjYAgeEfjGPtjz+aVATuL5MQrsIY4ro1giMx5DprkQyVodZ86fZG1bO80kyWINpQXNfKfselnVDAWubQ==",
"dev": true,
"requires": {
"@advanced-rest-client/arc-marked": "^1.0.4",
"@advanced-rest-client/markdown-styles": "^3.1.0",
"@api-components/amf-helper-mixin": "^4.0.13",
"lit-element": "^2.2.1"
}
},
"@api-components/api-endpoint-documentation": {
"version": "6.0.0",
"resolved": "https://registry.npmjs.org/@api-components/api-endpoint-documentation/-/api-endpoint-documentation-6.0.0.tgz",
"integrity": "sha512-CvfB+dWvjsveF5Lt69WEvGK+8HCMjImiek9hgTBFxU428BO5MiYOvZbSgjvwfbRZwn8H1FItsVifd+O8XI7K4w==",
"dev": true,
"requires": {
"@advanced-rest-client/arc-icons": "^3.2.2",
"@advanced-rest-client/arc-marked": "^1.0.6",
"@advanced-rest-client/clipboard-copy": "^3.0.1",
"@advanced-rest-client/http-code-snippets": "^3.2.1",
"@advanced-rest-client/markdown-styles": "^3.1.2",
"@anypoint-web-components/anypoint-button": "^1.0.15",
"@anypoint-web-components/anypoint-collapse": "^0.1.0",
"@api-components/amf-helper-mixin": "^4.3.4",
"@api-components/api-annotation-document": "^4.0.3",
"@api-components/api-example-generator": "^4.4.6",
"@api-components/api-method-documentation": "^5.1.9",
"@api-components/api-parameters-document": "^4.0.5",
"@api-components/api-request": "^0.1.1",
"@api-components/http-method-label": "^3.1.3",
"lit-element": "^2.3.1",
"lit-html": "^1.2.1"
}
},
"@api-components/api-example-generator": {
"version": "4.4.6",
"resolved": "https://registry.npmjs.org/@api-components/api-example-generator/-/api-example-generator-4.4.6.tgz",
"integrity": "sha512-5C2oVvtrw1AO487nbReOjxJLCDV8r72ggJloqHwY9/U232iq0zumKKQ5zZUIlilRyNQvGj//n8ck4oItcmpVEQ==",
"dev": true,
"requires": {
"@api-components/amf-helper-mixin": "^4.1.8",
"lit-element": "^2.4.0"
}
},
"@api-components/api-form-mixin": {
"version": "3.1.3",
"resolved": "https://registry.npmjs.org/@api-components/api-form-mixin/-/api-form-mixin-3.1.3.tgz",
"integrity": "sha512-U+8F/vau3KhG6LEJFW10JdaO482YKvkJamtD2KHYgtdHNmmzQUy2C3vZuesdorUpl5ZbaBM0Em03atTFzNYGlg==",
"dev": true,
"requires": {
"@api-components/api-view-model-transformer": "^4.1.1",
"lit-element": "^2.3.1"
}
},
"@api-components/api-forms": {
"version": "0.1.2",
"resolved": "https://registry.npmjs.org/@api-components/api-forms/-/api-forms-0.1.2.tgz",
"integrity": "sha512-62Jx4wEHmnsSmj886IeZ4tSA6/MTQp0ureTxkqdRd6uO0ryXdhOXGH6AZhel/rouLsyKAoMhR6HKvb5L5v3RZw==",
"dev": true,
"requires": {
"@advanced-rest-client/arc-icons": "^3.2.2",
"@advanced-rest-client/arc-types": "^0.2.47",
"@anypoint-web-components/anypoint-button": "^1.1.1",
"@anypoint-web-components/anypoint-checkbox": "^1.1.3",
"@anypoint-web-components/anypoint-dropdown-menu": "^0.1.20",
"@anypoint-web-components/anypoint-input": "^0.2.23",
"@anypoint-web-components/anypoint-item": "^1.0.8",
"@anypoint-web-components/anypoint-listbox": "^1.1.6",
"@anypoint-web-components/validatable-mixin": "^1.1.3",
"@api-components/amf-helper-mixin": "^4.2.0",
"@api-components/api-example-generator": "^4.4.5",
"@open-wc/dedupe-mixin": "^1.3.0",
"lit-element": "^2.4.0",
"lit-html": "^1.3.0"
}
},
"@api-components/api-headers": {
"version": "0.1.0",
"resolved": "https://registry.npmjs.org/@api-components/api-headers/-/api-headers-0.1.0.tgz",
"integrity": "sha512-PM2uAMt65b/cJfU13AxlbZFgnr/JGWrImYx+bjUdCx+WF2uV3gSh56kHS7+S+AD/kcNWYSAAIxoFmdsa0Q7kmQ==",
"dev": true,
"requires": {
"@advanced-rest-client/arc-headers": "^0.1.7",
"@anypoint-web-components/anypoint-button": "^1.1.1",
"@anypoint-web-components/anypoint-switch": "^0.1.4",
"@api-components/amf-helper-mixin": "^4.3.2",
"@api-components/api-forms": "^0.1.2",
"lit-element": "^2.4.0",
"lit-html": "^1.3.0"
}
},
"@api-components/api-headers-document": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/@api-components/api-headers-document/-/api-headers-document-4.2.0.tgz",
"integrity": "sha512-8ipyXIrhHV3YHtd/FIuzijMkuB2v+7VYphBwI7J0c+ZaX+vyt8iXFL15619SPLnQ9RTrQW2u33t32I9kX55dHg==",
"dev": true,
"requires": {
"@advanced-rest-client/arc-icons": "^3.2.2",
"@anypoint-web-components/anypoint-button": "^1.0.14",
"@anypoint-web-components/anypoint-collapse": "^0.1.0",
"@api-components/api-type-document": "^4.2.4",
"lit-element": "^2.2.1"
}
},
"@api-components/api-method-documentation": {
"version": "5.1.9",
"resolved": "https://registry.npmjs.org/@api-components/api-method-documentation/-/api-method-documentation-5.1.9.tgz",
"integrity": "sha512-Vih4O3Wd3h+TEWj3EMPHGsLy9nGelaM1AV9Upux9kzOZ+NnxQr+9KISET/ernUvM/hMTMU9EB76all4iDlntKQ==",
"dev": true,
"requires": {
"@advanced-rest-client/arc-icons": "^3.2.2",
"@advanced-rest-client/arc-marked": "^1.1.0",
"@advanced-rest-client/clipboard-copy": "^3.0.1",
"@advanced-rest-client/http-code-snippets": "^3.2.1",
"@advanced-rest-client/markdown-styles": "^3.1.3",
"@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/api-annotation-document": "^4.1.0",
"@api-components/api-body-document": "^4.2.1",
"@api-components/api-example-generator": "^4.4.6",
"@api-components/api-headers-document": "^4.2.0",