This repository has been archived by the owner on Nov 15, 2024. It is now read-only.
forked from advanced-rest-client/arc-electron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package-lock.json
14233 lines (14233 loc) · 570 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",
"version": "15.0.7",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"7zip-bin": {
"version": "5.0.3",
"resolved": "https://registry.npmjs.org/7zip-bin/-/7zip-bin-5.0.3.tgz",
"integrity": "sha512-GLyWIFBbGvpKPGo55JyRZAo4lVbnBiD52cKlw/0Vt+wnmKvWJkpZvsjVoaIolyBXDeAQKSicRtqFNPem9w0WYA==",
"dev": true
},
"@advanced-rest-client/about-arc-electron": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/about-arc-electron/-/about-arc-electron-3.0.0.tgz",
"integrity": "sha512-f/NTYbavju+VwpH3pxKrzGwBx5IwF1uaBfLeJZ7kwjAyY6ICZRUuz4Wkn5TA816ns1HGtvzaIIB/eDU0ySDnhQ==",
"dev": true,
"requires": {
"@advanced-rest-client/arc-icons": "^3.0.2",
"@advanced-rest-client/arc-settings-panel": "^3.0.2",
"@anypoint-web-components/anypoint-button": "^1.0.10",
"@anypoint-web-components/anypoint-dropdown-menu": "^0.1.10",
"@anypoint-web-components/anypoint-item": "^1.0.4",
"@anypoint-web-components/anypoint-listbox": "^1.0.3",
"@anypoint-web-components/anypoint-switch": "^0.1.2",
"lit-element": "^2.2.1"
}
},
"@advanced-rest-client/app-analytics": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/app-analytics/-/app-analytics-3.0.1.tgz",
"integrity": "sha512-QN7Nw6tVymzf0eWqF5DA1oS8jLtUj8b3sWgkSZZegEvUEy4fyaPtsKDrmvMkbn9MbL5GVOcR5v8lIJkYuUaBXA==",
"dev": true,
"requires": {
"@advanced-rest-client/uuid-generator": "^3.0.1"
}
},
"@advanced-rest-client/arc-app-mixin": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-app-mixin/-/arc-app-mixin-4.0.2.tgz",
"integrity": "sha512-URiEyQcfMoK+WPy5GZZtvSpl5FcLv8oorLOymPVNiKshnmCpH1vkKrBTxzSKVcWtjIeTDKqfQLMiae/3oZJvLA==",
"dev": true,
"requires": {
"@advanced-rest-client/app-analytics": "^3.0.1",
"@advanced-rest-client/arc-data-export": "^3.2.0",
"@advanced-rest-client/arc-data-import": "^3.1.0",
"@advanced-rest-client/arc-icons": "^3.0.5",
"@advanced-rest-client/arc-info-messages": "^3.0.0",
"@advanced-rest-client/arc-license-dialog": "^3.0.0",
"@advanced-rest-client/arc-menu": "^3.0.1",
"@advanced-rest-client/arc-messages-service": "^3.0.1",
"@advanced-rest-client/arc-models": "^3.0.3",
"@advanced-rest-client/arc-request-logic": "^3.0.3",
"@advanced-rest-client/arc-request-workspace": "^4.0.1",
"@advanced-rest-client/arc-settings-panel": "^3.0.2",
"@advanced-rest-client/authorization-data-saver": "^3.0.0",
"@advanced-rest-client/cookie-manager": "^3.0.1",
"@advanced-rest-client/environment-selector": "^3.0.2",
"@advanced-rest-client/export-panel": "^3.2.0",
"@advanced-rest-client/google-drive-browser": "^3.1.0",
"@advanced-rest-client/history-panel": "^3.0.4",
"@advanced-rest-client/import-panel": "^3.0.0",
"@advanced-rest-client/oauth-authorization": "^3.0.1",
"@advanced-rest-client/project-details": "^3.0.1",
"@advanced-rest-client/request-hooks-logic": "^3.0.0",
"@advanced-rest-client/response-history-saver": "^3.0.1",
"@advanced-rest-client/saved-requests-panel": "^3.0.1",
"@advanced-rest-client/variables-drawer-editor": "^3.0.0",
"@advanced-rest-client/variables-evaluator": "^3.0.0",
"@advanced-rest-client/variables-manager": "^3.0.1",
"@advanced-rest-client/variables-preview-overlay": "^3.0.2",
"@advanced-rest-client/websocket-panel": "^3.0.0",
"@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",
"@anypoint-web-components/anypoint-menu-button": "^0.1.0",
"@polymer/app-layout": "^3.1.0",
"@polymer/iron-media-query": "^3.0.1",
"@polymer/paper-toast": "^3.0.1",
"lit-element": "^2.2.1"
}
},
"@advanced-rest-client/arc-data-export": {
"version": "3.3.2",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-data-export/-/arc-data-export-3.3.2.tgz",
"integrity": "sha512-JBtE5EJZ3W55uqEsXz1tzMgCzFQjDe6b4W3Qvg5DJgqTBjzKHTDBDACqAnnvGF41vTJlxr2ZZeu+tNCQIdMglA==",
"dev": true,
"requires": {
"pouchdb": "^7.1.1"
}
},
"@advanced-rest-client/arc-data-import": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-data-import/-/arc-data-import-3.1.1.tgz",
"integrity": "sha512-ARQiiTymVVylMJqtFP6u3aiarOT0IErZjVu6kQvuEik6jgjlBs2GOSR+2dlYhR5mEIzDOME84iy5aC4J9JPQrg==",
"dev": true,
"requires": {
"lit-element": "^2.2.1",
"pouchdb": "^7.1.1"
}
},
"@advanced-rest-client/arc-definitions": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-definitions/-/arc-definitions-3.1.0.tgz",
"integrity": "sha512-cv8Qqfa/NGcWgnRTiV2O7bclfYp/FnZDn0cKLUkpzQJzZT/bP/aNfd8qZpCwFKpkIFXgKuT0IZXuoQj3F4qTLg==",
"dev": true
},
"@advanced-rest-client/arc-electron-helpers": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-electron-helpers/-/arc-electron-helpers-1.1.1.tgz",
"integrity": "sha512-VGToC7N0DvpPP9qS7CSsYlFFVKEjWWg9Qc2bMrRfagT3fIBwT26GYwX41jAAASfClfpwp3axfKWKhjLwJ++guw==",
"requires": {
"esm": "^3.2.25"
}
},
"@advanced-rest-client/arc-electron-payload-processor": {
"version": "0.4.0",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-electron-payload-processor/-/arc-electron-payload-processor-0.4.0.tgz",
"integrity": "sha512-vORRUrm5lSg3o+gd1ZJtd6N4hekOy6DOlBYrGC8Eek//dL6QZGi9rbxlHRZrtjj5bGQ8ln0may6D/A7LXZYRnA==",
"requires": {
"esm": "^3.2.25"
}
},
"@advanced-rest-client/arc-file-drop-mixin": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-file-drop-mixin/-/arc-file-drop-mixin-3.0.1.tgz",
"integrity": "sha512-Ro0PuRGcMlh9pXAGbJqQswJkoyCosjb1Ag9pmIzH79RnnsonRbn+Wk/RqHFlOyO0WbjNP7JgdUK7clHaKcqYFw==",
"dev": true
},
"@advanced-rest-client/arc-fit-mixin": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-fit-mixin/-/arc-fit-mixin-1.2.0.tgz",
"integrity": "sha512-wwskq51MwrvkO0P0zX20PFNIgpeENfu6+Oky7C8y6KpwGtovkasr+YBKCosW1A7Gg/PWsoLiLzAyyZvRhqbhrA==",
"dev": true,
"requires": {
"@open-wc/dedupe-mixin": "^1.2.17"
}
},
"@advanced-rest-client/arc-icons": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-icons/-/arc-icons-3.1.0.tgz",
"integrity": "sha512-tM0lxKLcFvalWjIEG7lNbtrOe94SDq7EEgdZi24Oh3DScbX0YgCM7FH1gI51P9mP6iCas4x0cQF6wjmW7lFZ2Q==",
"dev": true,
"requires": {
"@polymer/iron-icon": "^3.0.1",
"@polymer/iron-iconset-svg": "^3.0.1",
"lit-element": "^2.2.1",
"lit-html": "^1.1.2"
}
},
"@advanced-rest-client/arc-info-messages": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-info-messages/-/arc-info-messages-3.0.0.tgz",
"integrity": "sha512-lSi+hHUs3jX3YSJVuJxGKf4ck/t07KivCxr8bNB7NtYItwpuFunVY/UO/6HWBuiuJLDHij8UBhnvyIM9GZKVjA==",
"dev": true,
"requires": {
"@advanced-rest-client/arc-icons": "^3.0.2",
"@advanced-rest-client/date-time": "^3.0.0",
"@anypoint-web-components/anypoint-button": "^1.0.10",
"@polymer/paper-toast": "^3.0.0",
"lit-element": "^2.2.1"
}
},
"@advanced-rest-client/arc-license-dialog": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-license-dialog/-/arc-license-dialog-3.0.0.tgz",
"integrity": "sha512-0+nqxqV2IIfBYMcIIMEF/t9RUvAN/c10xdC6T+kOwLt62eky17oj/MJ25zXA4QO9P3JhH2i3bQZIpEUC+IivLw==",
"dev": true,
"requires": {
"@anypoint-web-components/anypoint-button": "^1.0.11",
"@anypoint-web-components/anypoint-dialog": "^0.1.1",
"lit-element": "^2.2.1"
}
},
"@advanced-rest-client/arc-marked": {
"version": "1.0.6",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-marked/-/arc-marked-1.0.6.tgz",
"integrity": "sha512-ixB0944OQGqN63BpDikx1QI4BODe7xWuQpWaI1KHsf68uxgQ40FqvGviEqXErcCf7qRoAI4nB5NnZXbd6IBagA==",
"dev": true,
"requires": {
"dompurify": "^2.0.7",
"lit-element": "^2.2.1",
"lit-html": "^1.1.2",
"marked": "^0.7.0"
}
},
"@advanced-rest-client/arc-menu": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-menu/-/arc-menu-3.0.1.tgz",
"integrity": "sha512-vXIq8HVXIMpXQYKzuQz/AYDRZ4N8CNAManBcCs9cNiHspVBnCJpSZuhlVlUpBG8G2qEPzWHK/3x+KU/BLKngUQ==",
"dev": true,
"requires": {
"@advanced-rest-client/arc-file-drop-mixin": "^3.0.1",
"@advanced-rest-client/arc-icons": "^3.0.2",
"@advanced-rest-client/arc-models": "^3.0.1",
"@advanced-rest-client/history-list-mixin": "^3.0.1",
"@advanced-rest-client/projects-list-consumer-mixin": "^3.0.1",
"@advanced-rest-client/requests-list-mixin": "^3.0.1",
"@advanced-rest-client/saved-list-mixin": "^3.0.2",
"@advanced-rest-client/uuid-generator": "^3.0.2",
"@anypoint-web-components/anypoint-button": "^1.0.12",
"@anypoint-web-components/anypoint-item": "^1.0.4",
"@anypoint-web-components/anypoint-listbox": "^1.0.3",
"@anypoint-web-components/anypoint-menu-button": "^0.1.0",
"@anypoint-web-components/anypoint-menu-mixin": "^1.0.2",
"@anypoint-web-components/anypoint-tabs": "^0.1.7",
"@api-components/http-method-label": "^3.0.0",
"@polymer/paper-progress": "^3.0.0",
"lit-element": "^2.2.1"
}
},
"@advanced-rest-client/arc-messages-service": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-messages-service/-/arc-messages-service-3.0.1.tgz",
"integrity": "sha512-sCxUdN1mHBodNz4Z5BE9M2ZGJg0zAb/iWEEtmM+CEWvQxNLOWQBzn+IAPtsvIN+TlioF8Nqs+b8IrHLx23i+KQ==",
"dev": true,
"requires": {
"@polymer/iron-ajax": "^3.0.0",
"lit-element": "^2.2.1"
}
},
"@advanced-rest-client/arc-models": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-models/-/arc-models-3.2.0.tgz",
"integrity": "sha512-CiWV548Vj1eBBFTvENsS9uCh+9q2BBLLy+JBDUBTj4ewatLl5DdJjAxvX7G8LBdpmobQsrorEGguWuBGHq9jYg==",
"dev": true,
"requires": {
"@advanced-rest-client/arc-electron-payload-processor": "^0.4.0",
"@advanced-rest-client/pouchdb-quick-search": "^2.0.3",
"@advanced-rest-client/uuid-generator": "^3.1.0",
"@types/pouchdb": "^6.4.0",
"pouchdb": "^7.2.1"
}
},
"@advanced-rest-client/arc-onboarding": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-onboarding/-/arc-onboarding-3.0.1.tgz",
"integrity": "sha512-1beQ/4/4aCXB2a3QPAehV+Iul2XS47VbsuOtzgbzav8iVsqwTHzZykpb40tnOn8/ZVE7jo42w8ic9asx2aywWQ==",
"dev": true,
"requires": {
"@advanced-rest-client/arc-icons": "^3.0.0",
"@advanced-rest-client/arc-overlay-mixin": "^1.0.0",
"@advanced-rest-client/arc-resizable-mixin": "^1.0.0",
"@anypoint-web-components/anypoint-button": "^1.0.10",
"@anypoint-web-components/anypoint-radio-button": "^0.1.2",
"@anypoint-web-components/anypoint-selector": "^1.0.2",
"lit-element": "^2.2.1"
}
},
"@advanced-rest-client/arc-overlay-mixin": {
"version": "1.1.5",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-overlay-mixin/-/arc-overlay-mixin-1.1.5.tgz",
"integrity": "sha512-cZcouVjAvyI8ODmZ8XgzGLZ8hnTNUKCZxdnpGJg+EaCePEMm77CqfLggzd0NJI/mgvVl2pScvTu7D1UEkPhoVQ==",
"dev": true,
"requires": {
"@advanced-rest-client/arc-fit-mixin": "^1.2.0",
"@advanced-rest-client/arc-resizable-mixin": "^1.1.0",
"@open-wc/dedupe-mixin": "^1.2.17",
"lit-element": "^2.3.1",
"lit-html": "^1.2.1"
}
},
"@advanced-rest-client/arc-request-logic": {
"version": "3.0.3",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-request-logic/-/arc-request-logic-3.0.3.tgz",
"integrity": "sha512-1NZMPoUtR6h4CdVf0yiilPGSMbQGaMXXj7ES7M8Sa4OBa2Hbs/IUbySYWdYJ6OJEHY1bQPiQeKVkycKNdfpkog==",
"dev": true,
"requires": {
"@advanced-rest-client/events-target-mixin": "^3.0.0",
"@advanced-rest-client/headers-parser-mixin": "^3.0.0",
"@advanced-rest-client/variables-evaluator": "^3.0.0",
"lit-element": "^2.2.1"
}
},
"@advanced-rest-client/arc-request-workspace": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-request-workspace/-/arc-request-workspace-4.0.2.tgz",
"integrity": "sha512-7CMgIyRfZ6W+X8WJRja3i2C03R+UAWwh0hNegAdG42Z34qCxhgMD217g7lCWdDPsnyLaWVlkukNXPJePTT7J7Q==",
"dev": true,
"requires": {
"@advanced-rest-client/arc-file-drop-mixin": "^3.0.1",
"@advanced-rest-client/arc-icons": "^3.0.5",
"@advanced-rest-client/arc-marked": "^1.0.6",
"@advanced-rest-client/arc-resizable-mixin": "^1.0.0",
"@advanced-rest-client/bottom-sheet": "^3.0.0",
"@advanced-rest-client/date-time": "^3.0.0",
"@advanced-rest-client/export-options": "^3.2.0",
"@advanced-rest-client/markdown-styles": "^3.1.1",
"@advanced-rest-client/request-panel": "^4.0.2",
"@advanced-rest-client/saved-request-detail": "^3.0.3",
"@advanced-rest-client/saved-request-editor": "^3.0.3",
"@advanced-rest-client/uuid-generator": "^3.0.0",
"@advanced-rest-client/web-url-input": "^3.0.2",
"@anypoint-web-components/anypoint-button": "^1.0.15",
"@anypoint-web-components/anypoint-input": "^0.2.13",
"@anypoint-web-components/anypoint-item": "^1.0.5",
"@anypoint-web-components/anypoint-tabs": "^0.1.10",
"@polymer/iron-collapse": "^3.0.1",
"@polymer/paper-progress": "^3.0.0",
"@polymer/paper-toast": "^3.0.0",
"lit-element": "^2.2.1"
}
},
"@advanced-rest-client/arc-resizable-mixin": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-resizable-mixin/-/arc-resizable-mixin-1.1.0.tgz",
"integrity": "sha512-31uKGT0qSxc6DUwr88287IdbtnN/nyXZZoDJCym61RurbjhSqyBIkYEE+EISe6HfziZlapXYcId/ti1ch3xBvw==",
"dev": true,
"requires": {
"@open-wc/dedupe-mixin": "^1.2.17"
}
},
"@advanced-rest-client/arc-scroll-target-mixin": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-scroll-target-mixin/-/arc-scroll-target-mixin-1.0.2.tgz",
"integrity": "sha512-RoIU/2Mboa04cZMwypPr3Foc0fTkftRyhHXPdXu/F0/rzH2LW+j1LD9vGXz0kUr7HeAoIrR/ApCFNYA+0XTLnA==",
"dev": true
},
"@advanced-rest-client/arc-scroll-threshold": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-scroll-threshold/-/arc-scroll-threshold-1.0.0.tgz",
"integrity": "sha512-nBf54Ad+WDGl4WgTnhzuPYQ+m2gtDocEBu11PBX8Q32E2TkYdaP0PCac4nOnus2+3J3IPHAL4/em6gyuaftX6w==",
"dev": true,
"requires": {
"@advanced-rest-client/arc-scroll-target-mixin": "1.0.2",
"lit-element": "^2.0.1"
}
},
"@advanced-rest-client/arc-settings-panel": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-settings-panel/-/arc-settings-panel-3.0.2.tgz",
"integrity": "sha512-o3U4cQUoSQxR3EXVrnkcgDO5En66uvaFitqf36QEqdp0SsyY4wRLW0XncbYDnv2MYuFgHJqb1cJvkYCjfUIS9w==",
"dev": true,
"requires": {
"@advanced-rest-client/arc-icons": "^3.0.2",
"@advanced-rest-client/export-panel": "^3.1.0",
"@anypoint-web-components/anypoint-button": "^1.0.10",
"@anypoint-web-components/anypoint-checkbox": "^1.0.1",
"@anypoint-web-components/anypoint-dialog": "^0.1.1",
"@anypoint-web-components/anypoint-dropdown-menu": "^0.1.10",
"@anypoint-web-components/anypoint-input": "^0.2.4",
"@anypoint-web-components/anypoint-item": "^1.0.4",
"@anypoint-web-components/anypoint-listbox": "^1.0.3",
"@anypoint-web-components/anypoint-switch": "^0.1.2",
"@anypoint-web-components/anypoint-tabs": "^0.1.0",
"lit-element": "^2.2.1"
}
},
"@advanced-rest-client/auth-dialogs": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/auth-dialogs/-/auth-dialogs-3.0.0.tgz",
"integrity": "sha512-zZE6h4ovPnUCO/NnBgYaT+guOpOXh+0+kHs+1LXi1mK3ieO36qWgtOcpnLKhatommT8HoJUJffXot7VYW0jPiw==",
"dev": true,
"requires": {
"@anypoint-web-components/anypoint-button": "^1.0.10",
"@anypoint-web-components/anypoint-dialog": "^0.1.1",
"@anypoint-web-components/anypoint-input": "^0.2.5",
"lit-element": "^2.2.1"
}
},
"@advanced-rest-client/auth-methods": {
"version": "5.0.11",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/auth-methods/-/auth-methods-5.0.11.tgz",
"integrity": "sha512-/M870yviq1QLmCMwubXLlmiLH/ibhZoqsIegfg3HYdMitvwGX8hXb6APQ0gYDLuJT8GK2zDUvnaIXeBuERUHbA==",
"dev": true,
"requires": {
"@advanced-rest-client/arc-icons": "^3.0.3",
"@advanced-rest-client/arc-marked": "^1.0.6",
"@advanced-rest-client/client-certificates-consumer-mixin": "^1.0.0",
"@advanced-rest-client/clipboard-copy": "^3.0.1",
"@advanced-rest-client/date-time": "^3.0.2",
"@advanced-rest-client/events-target-mixin": "^3.0.0",
"@advanced-rest-client/markdown-styles": "^3.1.0",
"@advanced-rest-client/oauth2-scope-selector": "^3.0.3",
"@anypoint-web-components/anypoint-button": "^1.0.11",
"@anypoint-web-components/anypoint-checkbox": "^1.0.1",
"@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",
"@api-components/amf-helper-mixin": "^4.0.16",
"@api-components/api-form-mixin": "^3.0.3",
"@api-components/api-property-form-item": "^3.0.11",
"@api-components/api-view-model-transformer": "^4.0.1",
"@polymer/iron-form": "^3.0.0",
"@polymer/iron-meta": "^3.0.0",
"@polymer/paper-ripple": "^3.0.0",
"@polymer/paper-spinner": "^3.0.2",
"@polymer/paper-toast": "^3.0.0",
"lit-element": "^2.0.1"
}
},
"@advanced-rest-client/authorization-data-saver": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/authorization-data-saver/-/authorization-data-saver-3.0.0.tgz",
"integrity": "sha512-QOBjypqWeyVBCZKcU4R1cGzZSk6BSLpdErHKsfrDFpo5dDgVdOz0lS9vVtXMnxv6WyqgbP9kpB+JG6kGbkxxdQ==",
"dev": true,
"requires": {
"@advanced-rest-client/auth-dialogs": "^3.0.0",
"@advanced-rest-client/headers-parser-mixin": "^3.0.0",
"lit-element": "^2.2.1"
}
},
"@advanced-rest-client/authorization-method": {
"version": "0.1.15",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/authorization-method/-/authorization-method-0.1.15.tgz",
"integrity": "sha512-R5RKsqbMQw4fcrV0WP5Dxt8U/0N+IkheJH8ZZyiwNGlvq5fdSiCN/Um3VXC1L6RCW7ymFLjNMBS+FhY1HgZOWA==",
"dev": true,
"requires": {
"@advanced-rest-client/arc-icons": "^3.1.0",
"@advanced-rest-client/clipboard-copy": "^3.0.1",
"@advanced-rest-client/events-target-mixin": "^3.2.0",
"@advanced-rest-client/oauth2-scope-selector": "^3.0.4",
"@anypoint-web-components/anypoint-button": "^1.1.1",
"@anypoint-web-components/anypoint-dropdown-menu": "^0.1.14",
"@anypoint-web-components/anypoint-input": "^0.2.15",
"@anypoint-web-components/anypoint-item": "^1.0.5",
"@anypoint-web-components/anypoint-listbox": "^1.1.0",
"@anypoint-web-components/anypoint-switch": "^0.1.3",
"@open-wc/dedupe-mixin": "^1.2.17",
"@polymer/paper-spinner": "^3.0.2",
"lit-element": "^2.3.1",
"lit-html": "^1.2.1"
}
},
"@advanced-rest-client/authorization-panel": {
"version": "4.0.3",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/authorization-panel/-/authorization-panel-4.0.3.tgz",
"integrity": "sha512-sNys0WHs662twVRfEYOcjl1usLdCMwNOXfcrdyC/NAQ8Hcs8/F1qRjBc8DxUbHw2vmV8oqnuPXSEEY9KGeWE+g==",
"dev": true,
"requires": {
"@advanced-rest-client/auth-methods": "^5.0.6",
"@advanced-rest-client/events-target-mixin": "^3.0.0",
"@anypoint-web-components/anypoint-dropdown-menu": "^0.1.12",
"@anypoint-web-components/anypoint-item": "^1.0.4",
"@anypoint-web-components/anypoint-listbox": "^1.0.3",
"@api-components/amf-helper-mixin": "^4.0.17",
"@polymer/iron-meta": "^3.0.0",
"cryptojslib": "^3.1.2",
"jsrsasign": "^8.0.12",
"lit-element": "^2.0.1"
}
},
"@advanced-rest-client/authorization-selector": {
"version": "0.1.2",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/authorization-selector/-/authorization-selector-0.1.2.tgz",
"integrity": "sha512-kBowKZKECjNUwEcBxU/Dca0mqKeeS9YnkmvpaapJoT9uPvCj3SxuOz7L0UWmtiqbDu07QgQP4wOJ0WzxyexKuw==",
"dev": true,
"requires": {
"@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",
"@anypoint-web-components/anypoint-selector": "^1.1.3",
"lit-element": "^2.3.1",
"lit-html": "^1.2.1"
}
},
"@advanced-rest-client/bottom-sheet": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/bottom-sheet/-/bottom-sheet-3.1.0.tgz",
"integrity": "sha512-HZqdlFhVTLy1DLmffrEeIziy3qssU+zqeelR9ZrlL9BCTDPcdwjz5PEtR5AXdTYX+m112qqUtlFQLUo4+0TUVw==",
"dev": true,
"requires": {
"@advanced-rest-client/arc-overlay-mixin": "^1.0.1",
"@polymer/iron-a11y-announcer": "^3.0.0",
"lit-element": "^2.0.1"
}
},
"@advanced-rest-client/cc-authorization-method": {
"version": "0.1.3",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/cc-authorization-method/-/cc-authorization-method-0.1.3.tgz",
"integrity": "sha512-LreFc/yaDAvEunIGGAonrRz+07KGZKucKphMj0NvZSU/WjLtGllzUgy0jXdCYoitzsL7jzB5wX+mjOqGQQypZg==",
"dev": true,
"requires": {
"@advanced-rest-client/authorization-method": "^0.1.7",
"@advanced-rest-client/client-certificates-consumer-mixin": "^1.0.2",
"@advanced-rest-client/date-time": "^3.0.2",
"@anypoint-web-components/anypoint-button": "^1.0.15",
"@anypoint-web-components/anypoint-item": "^1.0.5",
"@anypoint-web-components/anypoint-radio-button": "^0.1.4",
"lit-element": "^2.0.1",
"lit-html": "^1.0.0"
}
},
"@advanced-rest-client/client-certificates-consumer-mixin": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/client-certificates-consumer-mixin/-/client-certificates-consumer-mixin-1.0.2.tgz",
"integrity": "sha512-Kp08RsejjAqY88N2RFtaU0qsjyZd9fT16sAleLs2HLFT7AycDWnMZdwDyLlVu3j4ru1tnq+G+Cc3aMuo/8j5MQ==",
"dev": true,
"requires": {
"lit-element": "^2.2.1"
}
},
"@advanced-rest-client/client-certificates-panel": {
"version": "1.0.6",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/client-certificates-panel/-/client-certificates-panel-1.0.6.tgz",
"integrity": "sha512-BycIdS5j21QJTEYCYuW/uJ6E4f5ZQrw4Oe6FpAJbpVQCs4Z7lxjdyzdEuQvj4OdCwlN8nn4RV8gRZoetnNr/qQ==",
"dev": true,
"requires": {
"@advanced-rest-client/arc-icons": "^3.0.5",
"@advanced-rest-client/bottom-sheet": "^3.1.0",
"@advanced-rest-client/client-certificates-consumer-mixin": "^1.0.2",
"@advanced-rest-client/date-time": "^3.0.2",
"@advanced-rest-client/export-options": "^3.2.0",
"@anypoint-web-components/anypoint-button": "^1.0.15",
"@anypoint-web-components/anypoint-dialog": "^0.1.0",
"@anypoint-web-components/anypoint-input": "^0.2.13",
"@anypoint-web-components/anypoint-item": "^1.0.5",
"@anypoint-web-components/anypoint-listbox": "^1.0.4",
"@anypoint-web-components/anypoint-menu-button": "^0.1.0",
"@anypoint-web-components/anypoint-switch": "^0.1.3",
"@polymer/paper-fab": "^3.0.0",
"@polymer/paper-progress": "^3.0.0",
"@polymer/paper-toast": "^3.0.0",
"lit-element": "^2.2.1",
"lit-html": "^1.1.2"
}
},
"@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.0.3",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/code-mirror/-/code-mirror-3.0.3.tgz",
"integrity": "sha512-ahiQXZik987M7mH/pSywS3o6Rciy3dbXuIDV904z5Mm2RbKi9oUQTi/rMwlaJS9x9rNoI7yMl0Bt65Mf7xfH4Q==",
"dev": true,
"requires": {
"@anypoint-web-components/validatable-mixin": "^1.0.2",
"@polymer/paper-styles": "^3.0.0",
"codemirror": "^5.49.2",
"lit-element": "^2.2.1"
}
},
"@advanced-rest-client/code-mirror-hint": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/code-mirror-hint/-/code-mirror-hint-3.0.2.tgz",
"integrity": "sha512-T9uD0NO8IDxFqCVzzDlrGEMCAxtAPOutRZBrxU4MYqYHoNADHcv9C0bPefQqZV63KgApc6LBTWuzT4v1kelWkA==",
"requires": {
"@anypoint-web-components/anypoint-item": "^1.0.5",
"@anypoint-web-components/anypoint-listbox": "^1.0.4",
"lit-element": "^2.0.1",
"lit-html": "^1.1.2"
}
},
"@advanced-rest-client/code-mirror-linter": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/code-mirror-linter/-/code-mirror-linter-3.0.1.tgz",
"integrity": "sha512-dZCfQ5jtFjH9d3QXZ9yDejOfLloopcJYmHGNpvkr9IsYyorLpQ41PRWIaCb2l0Hg+PCaNYElER/G7CYcrNjv1w==",
"requires": {
"codemirror": "^5.52.2",
"jsonlint": "^1.6.3",
"lit-element": "^2.3.1"
}
},
"@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/cookie-details": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/cookie-details/-/cookie-details-3.0.1.tgz",
"integrity": "sha512-yHMvUbB/1KnUnQVwrC+Jw7OKl6WdFUjOTBKI1IRXIurOvFixwZlszO4vbL9wl8jL8oAFoCRS5jHM9kgFPnfPPA==",
"dev": true,
"requires": {
"@advanced-rest-client/arc-icons": "^3.0.5",
"@advanced-rest-client/arc-resizable-mixin": "^1.0.0",
"@advanced-rest-client/date-time": "^3.0.0",
"@anypoint-web-components/anypoint-button": "^1.0.15",
"@polymer/iron-icon": "^3.0.0",
"lit-element": "^2.3.1"
}
},
"@advanced-rest-client/cookie-editor": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/cookie-editor/-/cookie-editor-3.0.2.tgz",
"integrity": "sha512-e5OtJKYwgOjyMU/PVkNRs1aapb+DqSEu3Wy3vOptETT/lHa1KRLEInsFwU6GJhVM0Gc61YXI3/rg4/5Uv4Moow==",
"dev": true,
"requires": {
"@advanced-rest-client/arc-resizable-mixin": "^1.0.0",
"@anypoint-web-components/anypoint-button": "^1.0.15",
"@anypoint-web-components/anypoint-checkbox": "^1.0.2",
"@anypoint-web-components/anypoint-input": "^0.2.13",
"@polymer/iron-form": "^3.0.0",
"lit-element": "^2.3.1"
}
},
"@advanced-rest-client/cookie-manager": {
"version": "3.0.3",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/cookie-manager/-/cookie-manager-3.0.3.tgz",
"integrity": "sha512-qW1IFFiARGIFFP7CV7a93DKGh3gFyGSHgRtklP2GYtKWy4lFWCYH6wVpop8UpU/he+BjlAGFgiEs8mVqyeDhaQ==",
"dev": true,
"requires": {
"@advanced-rest-client/arc-icons": "^3.0.5",
"@advanced-rest-client/bottom-sheet": "^3.1.0",
"@advanced-rest-client/cookie-details": "^3.0.1",
"@advanced-rest-client/cookie-editor": "^3.0.2",
"@advanced-rest-client/cookies-list-items": "^3.0.1",
"@advanced-rest-client/export-options": "^3.2.0",
"@anypoint-web-components/anypoint-button": "^1.0.15",
"@anypoint-web-components/anypoint-dialog": "^0.1.0",
"@anypoint-web-components/anypoint-item": "^1.0.5",
"@anypoint-web-components/anypoint-listbox": "^1.0.4",
"@anypoint-web-components/anypoint-menu-button": "^0.1.0",
"@polymer/paper-fab": "^3.0.0",
"@polymer/paper-progress": "^3.0.0",
"@polymer/paper-toast": "^3.0.0",
"lit-element": "^2.3.1",
"lit-html": "^1.2.1"
}
},
"@advanced-rest-client/cookie-parser": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/cookie-parser/-/cookie-parser-3.2.0.tgz",
"integrity": "sha512-eZw8tU4RD+Trn9eqDVPr8KHosuSEMPa74bOOQ9rDuTGI9iquBaq3PyS5bc/ZFPxBdYAj8Ft0fQ/t2AkYEcDlcQ==",
"requires": {
"esm": "^3.2.25"
}
},
"@advanced-rest-client/cookies-list-items": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/cookies-list-items/-/cookies-list-items-3.0.1.tgz",
"integrity": "sha512-8+XLLJBlrQpcK9aWHRpUV6f8bWLL/lM63LDPxVlVJH6/Eh+32yaOsoNme+xIoggT8Ixlaf1qdaaNb5Ai78UKhQ==",
"dev": true,
"requires": {
"@advanced-rest-client/arc-icons": "^3.0.5",
"@anypoint-web-components/anypoint-button": "^1.0.15",
"@anypoint-web-components/anypoint-input": "^0.2.13",
"@anypoint-web-components/anypoint-item": "^1.0.5",
"@anypoint-web-components/anypoint-listbox": "^1.0.4",
"@anypoint-web-components/anypoint-menu-button": "^0.1.0",
"@anypoint-web-components/anypoint-menu-mixin": "^1.0.2",
"lit-element": "^2.3.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/electron-amf-service": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/electron-amf-service/-/electron-amf-service-3.0.0.tgz",
"integrity": "sha512-RZNc5KoGYnkYDYEBVxPzucicQZxhQ/NgYVQwBH2crW7UUT1NHZdyNiKo2XD5HcPbO8RNqWYHinTg0uvK1mRWlA==",
"requires": {
"amf-client-js": "^4.0.3",
"esm": "^3.2.25",
"fs-extra": "^8.1.0",
"tmp": "0.1.0",
"unzipper": "^0.10.4"
}
},
"@advanced-rest-client/electron-drive": {
"version": "0.4.0",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/electron-drive/-/electron-drive-0.4.0.tgz",
"integrity": "sha512-UAEdJ+6vt9S44wZMm59utLHL6a2A8MpqkSnY6OI7AnQKdcCl8OnC4cu92MvTNlLhqe2V2BEhFVTLQLp43B4CWw==",
"requires": {
"@advanced-rest-client/electron-oauth2": "^2.0.0",
"esm": "^3.2.25"
}
},
"@advanced-rest-client/electron-oauth2": {
"version": "2.1.3",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/electron-oauth2/-/electron-oauth2-2.1.3.tgz",
"integrity": "sha512-EjsSiV+VDZQYTP3LGBc1Brkivg3eKRwFtTANapwuD2yZRuo80sWadc1xHZIZczdwa0oI8oHPSbOPnuG8mwe4bg==",
"requires": {
"electron-store": "^5.1.0",
"esm": "^3.2.25",
"fs-extra": "^8.1.0"
}
},
"@advanced-rest-client/electron-request": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/electron-request/-/electron-request-2.4.0.tgz",
"integrity": "sha512-cMGXNJtT9cetW1ELHZkRLXgx4DYsBPVWioNR5GAyZx/qoZFYdJL1Q0Jc4urhw2BPPaEt0ziFH9AFC+hqFQelww==",
"requires": {
"@advanced-rest-client/cookie-parser": "^3.2.0",
"electron-log": "^4.2.0",
"esm": "^3.2.25",
"form-data": "^3.0.0"
}
},
"@advanced-rest-client/electron-session-state": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/electron-session-state/-/electron-session-state-2.1.1.tgz",
"integrity": "sha512-QNtqBX08+26bnTdpZ1VqWGYWu8VMyWru0dk5dXOv3r3XtRMPhH06HSg5YTvRNEC094bqVWWEyoG8ox8tRf9QRg==",
"requires": {
"@advanced-rest-client/arc-electron-helpers": "^1.1.1",
"@advanced-rest-client/cookie-parser": "^3.1.0",
"esm": "^3.2.25"
}
},
"@advanced-rest-client/environment-selector": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/environment-selector/-/environment-selector-3.0.2.tgz",
"integrity": "sha512-wWifjHyppkx9sZ94NW9D0yDs5cqEFA0Cq0wkQ3IzDn+87Hu81E57PXSJSODrQiNT4CCHzL9ajVW3G9uptE2+xw==",
"dev": true,
"requires": {
"@advanced-rest-client/variables-consumer-mixin": "^3.0.4",
"@anypoint-web-components/anypoint-dropdown-menu": "^0.1.11",
"@anypoint-web-components/anypoint-item": "^1.0.4",
"@anypoint-web-components/anypoint-listbox": "^1.0.3",
"lit-element": "^2.2.1"
}
},
"@advanced-rest-client/error-message": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/error-message/-/error-message-3.0.1.tgz",
"integrity": "sha512-D2k4kF4QKs8DHhZ+sHdX+RqYifPuiobNayDNQMa3Nv24h54hRyBYHwbAIsk35v998Y0z4wJxg0AJGtciPtcExA==",
"dev": true,
"requires": {
"@advanced-rest-client/arc-icons": "^3.0.0",
"@polymer/iron-icon": "^3.0.0",
"lit-element": "^2.2.1"
}
},
"@advanced-rest-client/eslint-config": {
"version": "1.1.5",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/eslint-config/-/eslint-config-1.1.5.tgz",
"integrity": "sha512-OMwAJf1Vuo3hRThKEa5Ga/nc4bw8+yfGuX1HLjHqH6JiorSvasuhfjHyKbfYX3LKp7zXCSViEWalVyQ2yMO0QA==",
"dev": true,
"requires": {
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-html": "^6.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-wc": "^1.2.0"
}
},
"@advanced-rest-client/events-target-mixin": {
"version": "3.2.2",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/events-target-mixin/-/events-target-mixin-3.2.2.tgz",
"integrity": "sha512-b8/k45Ju0+FgM8FQaShLaVJEXKLcheLNtf1PCtQRgetQOT0FO0L6mHlVHVbjH8B9uaP5qMO19ZDSjh5kW6D4uw==",
"dev": true,
"requires": {
"@open-wc/dedupe-mixin": "^1.2.17"
}
},
"@advanced-rest-client/exchange-search-panel": {
"version": "3.0.3",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/exchange-search-panel/-/exchange-search-panel-3.0.3.tgz",
"integrity": "sha512-nKvJyEa7uc/rJBDRhCRp9GiVZtbZbyv23ubQUOcow5+jfhyw3HeuYDMMWvefJQZ5v0v/YadeX2QGMXF6Fh8BwA==",
"dev": true,
"requires": {
"@advanced-rest-client/arc-icons": "^3.0.0",
"@advanced-rest-client/star-rating": "^1.0.0",
"@anypoint-web-components/anypoint-button": "^1.0.10",
"@anypoint-web-components/anypoint-input": "^0.2.5",
"@anypoint-web-components/anypoint-item": "^1.0.4",
"@anypoint-web-components/anypoint-signin": "^4.0.2",
"@polymer/iron-ajax": "^3.0.0",
"@polymer/iron-media-query": "^3.0.1",
"@polymer/paper-progress": "^3.0.0",
"@polymer/paper-toast": "^3.0.0",
"lit-element": "^2.2.1",
"lit-html": "^1.1.2"
}
},
"@advanced-rest-client/export-options": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/export-options/-/export-options-3.2.0.tgz",
"integrity": "sha512-DZst0HZk6ec5WI7uyv0k6O+H4RVEWWxJxFPdt3HJ2wduuk3bapy12OsAlaCfN0bi2USIUAYdRx0u24xW+8H31g==",
"dev": true,
"requires": {
"@advanced-rest-client/arc-icons": "^3.0.2",
"@anypoint-web-components/anypoint-button": "^1.0.11",
"@anypoint-web-components/anypoint-checkbox": "^1.0.1",
"@anypoint-web-components/anypoint-chip-input": "^0.2.0",
"@anypoint-web-components/anypoint-dropdown-menu": "^0.1.12",
"@anypoint-web-components/anypoint-input": "^0.2.6",
"@anypoint-web-components/anypoint-item": "^1.0.4",
"@anypoint-web-components/anypoint-listbox": "^1.0.3",
"@polymer/iron-form": "^3.0.0",
"lit-element": "^2.2.1"
}
},
"@advanced-rest-client/export-panel": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/export-panel/-/export-panel-3.2.0.tgz",
"integrity": "sha512-RCP+IopFVvDRW0AOUMHsxFHi61I//4vYazJMJ92LCRAGfZZ4Ekt+qBVEj0rQ2WrFW/p0jt25oHozFc1m+703Bg==",
"dev": true,
"requires": {
"@advanced-rest-client/arc-icons": "^3.0.2",
"@anypoint-web-components/anypoint-button": "^1.0.12",
"@anypoint-web-components/anypoint-checkbox": "^1.0.1",
"@anypoint-web-components/anypoint-dropdown-menu": "^0.1.12",
"@anypoint-web-components/anypoint-input": "^0.2.6",
"@anypoint-web-components/anypoint-item": "^1.0.4",
"@anypoint-web-components/anypoint-listbox": "^1.0.3",
"@polymer/iron-form": "^3.0.0",
"@polymer/paper-spinner": "^3.0.0",
"@polymer/paper-toast": "^3.0.0",
"lit-element": "^2.0.1"
}
},
"@advanced-rest-client/file-drop": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/file-drop/-/file-drop-3.2.0.tgz",
"integrity": "sha512-JHz3QFbEqn3R8kAFkE/Zc6Y/kQwNnf0f4qHSg37d0vA+cPWNkne4FCAwCl0JAtrHxCiWhk6IHdQYvyf8wh4lDQ==",
"dev": true,
"requires": {
"@anypoint-web-components/anypoint-button": "^1.1.1",
"lit-element": "^2.3.1"
}
},
"@advanced-rest-client/file-reader": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/file-reader/-/file-reader-3.0.1.tgz",
"integrity": "sha512-8lDo0OnRyFkM4VOQXir7Y+ymEU+Djxc4lFgcXE8C5YqMqHnVEtDa4noUu/4T8bG9PluTTDaunQiHKEqHx7mw/Q==",
"dev": true,
"requires": {
"lit-element": "^2.3.1"
}
},
"@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/google-drive-browser": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/google-drive-browser/-/google-drive-browser-3.1.0.tgz",
"integrity": "sha512-KHsccr03AZ7gtYan/MAZCHAQU78FGkpzc2zXRw4VHWKoqfJXIMlttZj0t/pJc00SAfH0BXu7RpsaMVhCiNSnUw==",
"dev": true,
"requires": {
"@advanced-rest-client/arc-icons": "^3.0.2",
"@advanced-rest-client/arc-scroll-threshold": "^1.0.0",
"@advanced-rest-client/date-time": "^3.0.2",
"@advanced-rest-client/error-message": "^3.0.1",
"@advanced-rest-client/events-target-mixin": "^3.0.0",
"@anypoint-web-components/anypoint-button": "^1.0.11",
"@anypoint-web-components/anypoint-input": "^0.2.5",
"@anypoint-web-components/anypoint-item": "^1.0.3",
"@anypoint-web-components/anypoint-listbox": "^1.0.3",
"@polymer/iron-ajax": "^3.0.0",
"@polymer/paper-progress": "^3.0.0",
"@polymer/paper-spinner": "^3.0.0",
"lit-element": "^2.2.1"
}
},
"@advanced-rest-client/headers-list-view": {
"version": "3.0.3",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/headers-list-view/-/headers-list-view-3.0.3.tgz",
"integrity": "sha512-PqDjw/W0OvdBqwkZcllUVsNN65Rh3RX8lr2NWxOJbGynRwo0lta6fiAG+Pr52w9USjDN1MlYPfW690EAMUM7kw==",
"dev": true,
"requires": {
"@advanced-rest-client/headers-parser-mixin": "^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/history-list-mixin": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/history-list-mixin/-/history-list-mixin-3.0.2.tgz",
"integrity": "sha512-A662VGpwefgLBz1JncTO1eYwr28yj8vpXq9rqrMjqqbQojvkf6iOJUE1NZJFcAxXBxx3k7QiGizT85/8epg/Jw==",
"dev": true,
"requires": {
"@advanced-rest-client/arc-models": "^3.1.1",
"lit-html": "^1.2.1"
}
},
"@advanced-rest-client/history-panel": {
"version": "3.0.4",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/history-panel/-/history-panel-3.0.4.tgz",
"integrity": "sha512-7AgkvG+8JGryMIhGS0EoZf26cTea9iSnWhxCinvVIkaAzMjr8eCT34j57MR0CebkcAcCXafJQMzCz6wPR+Bn0w==",
"dev": true,
"requires": {
"@advanced-rest-client/arc-icons": "^3.0.2",
"@advanced-rest-client/bottom-sheet": "^3.1.0",
"@advanced-rest-client/export-options": "^3.2.0",
"@advanced-rest-client/history-list-mixin": "^3.0.0",
"@advanced-rest-client/requests-list-mixin": "^3.0.1",
"@advanced-rest-client/saved-request-detail": "^3.0.3",
"@advanced-rest-client/saved-request-editor": "^3.0.3",
"@anypoint-web-components/anypoint-button": "^1.0.11",
"@anypoint-web-components/anypoint-checkbox": "^1.0.1",
"@anypoint-web-components/anypoint-dialog": "^0.1.1",
"@anypoint-web-components/anypoint-input": "^0.2.6",
"@anypoint-web-components/anypoint-item": "^1.0.4",
"@anypoint-web-components/anypoint-listbox": "^1.0.3",
"@anypoint-web-components/anypoint-menu-button": "^0.1.0",
"@anypoint-web-components/anypoint-menu-mixin": "^1.0.2",
"@api-components/http-method-label": "^3.0.1",
"@polymer/iron-icon": "^3.0.0",
"@polymer/paper-fab": "^3.0.0",
"@polymer/paper-progress": "^3.0.0",
"@polymer/paper-toast": "^3.0.0",
"lit-element": "^2.2.1",
"lit-html": "^1.1.2"
}
},
"@advanced-rest-client/host-rules-editor": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/host-rules-editor/-/host-rules-editor-3.0.1.tgz",
"integrity": "sha512-HGpdDUz79k3wxBapKIl/gLpNXW50Y0Z/osN4BJoWKTmyKYcr7EDutqZMG8kMyRB1PaG5uMG739XVqE2miIFoVw==",
"dev": true,
"requires": {
"@advanced-rest-client/arc-icons": "^3.0.2",
"@advanced-rest-client/bottom-sheet": "^3.1.0",
"@advanced-rest-client/export-options": "^3.2.0",
"@advanced-rest-client/uuid-generator": "^3.0.0",
"@anypoint-web-components/anypoint-button": "^1.0.11",
"@anypoint-web-components/anypoint-checkbox": "^1.0.1",
"@anypoint-web-components/anypoint-dialog": "^0.1.0",
"@anypoint-web-components/anypoint-input": "^0.2.6",
"@anypoint-web-components/anypoint-item": "^1.0.3",
"@anypoint-web-components/anypoint-listbox": "^1.0.3",
"@anypoint-web-components/anypoint-menu-button": "^0.1.0",
"@polymer/iron-collapse": "^3.0.0",
"@polymer/paper-fab": "^3.0.0",
"@polymer/paper-progress": "^3.0.0",
"@polymer/paper-toast": "^3.0.0",
"@polymer/polymer": "^3.2.0",
"lit-element": "^2.2.1",
"lit-html": "^1.1.2"
}
},
"@advanced-rest-client/http-code-snippets": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/http-code-snippets/-/http-code-snippets-3.1.2.tgz",
"integrity": "sha512-pT8ftoBLkPrQKMF32wL6fQ386pcAjRpw48CgxuMAA/zzxMgdCG45ovNA4fGvq4va8LPu2OQJKfX17sPkvW8esA==",
"dev": true,
"requires": {
"@anypoint-web-components/anypoint-button": "^1.0.15",
"@anypoint-web-components/anypoint-tabs": "^0.1.10",
"@polymer/prism-element": "^3.0.0",
"lit-element": "^2.2.1",
"prismjs": "^1.19.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/import-panel": {