-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathpackage-lock.json
3669 lines (3669 loc) · 145 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": "botkit-template",
"version": "1.0.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"@azure/ms-rest-js": {
"version": "1.9.1",
"resolved": "https://registry.npmjs.org/@azure/ms-rest-js/-/ms-rest-js-1.9.1.tgz",
"integrity": "sha512-F1crHKhmsvFLM9fsnDyCGFd2E2KR9GEZm5oBVV5D5k2EBQ7u7idtSJlSF6RDLDIrGWtc4NnFdYwsoiW8NLlBQg==",
"requires": {
"@types/tunnel": "0.0.0",
"axios": "^0.21.1",
"form-data": "^2.3.2",
"tough-cookie": "^2.4.3",
"tslib": "^1.9.2",
"tunnel": "0.0.6",
"uuid": "^3.2.1",
"xml2js": "^0.4.19"
},
"dependencies": {
"uuid": {
"version": "3.4.0",
"resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz",
"integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A=="
}
}
},
"@babel/polyfill": {
"version": "7.12.1",
"resolved": "https://registry.npmjs.org/@babel/polyfill/-/polyfill-7.12.1.tgz",
"integrity": "sha512-X0pi0V6gxLi6lFZpGmeNa4zxtwEmCs42isWLNjZZDE0Y8yVfgu0T2OAHlzBbdYlqbW/YXVvoBHpATEM+goCj8g==",
"requires": {
"core-js": "^2.6.5",
"regenerator-runtime": "^0.13.4"
}
},
"@babel/runtime-corejs2": {
"version": "7.14.8",
"resolved": "https://registry.npmjs.org/@babel/runtime-corejs2/-/runtime-corejs2-7.14.8.tgz",
"integrity": "sha512-Jj4fkQPFp73ia9y6BctEX5ypA1icbOVPtc9l0T1VnAv8EmzaN/Lm/WvnKNve1610VvHV69SLihpu9tHnVziBvw==",
"requires": {
"core-js": "^2.6.5",
"regenerator-runtime": "^0.13.4"
}
},
"@microsoft/recognizers-text": {
"version": "1.1.4",
"resolved": "https://registry.npmjs.org/@microsoft/recognizers-text/-/recognizers-text-1.1.4.tgz",
"integrity": "sha512-hlSVXcaX5i8JcjuUJpVxmy2Z/GxvFXarF0KVySCFop57wNEnrLWMHe4I4DjP866G19VyIKRw+vPA32pkGhZgTg=="
},
"@microsoft/recognizers-text-choice": {
"version": "1.1.4",
"resolved": "https://registry.npmjs.org/@microsoft/recognizers-text-choice/-/recognizers-text-choice-1.1.4.tgz",
"integrity": "sha512-4CddwFe4RVhZeJgW65ocBrEdeukBMghK8pgI0K0Qy2eA5ysPZQpeZ7BGSDz5QMQei5LPY+QaAQ3CHU+ORHoO7A==",
"requires": {
"@microsoft/recognizers-text": "~1.1.4",
"grapheme-splitter": "^1.0.2"
}
},
"@microsoft/recognizers-text-date-time": {
"version": "1.1.4",
"resolved": "https://registry.npmjs.org/@microsoft/recognizers-text-date-time/-/recognizers-text-date-time-1.1.4.tgz",
"integrity": "sha512-leMnjN+KYNwNvRD5T4G0ORUzkjlek/BBZDvQIjAujtyrd/pkViUnuouWIPkFT/dbSOxXML8et54CSk2KfHiWIA==",
"requires": {
"@microsoft/recognizers-text": "~1.1.4",
"@microsoft/recognizers-text-number": "~1.1.4",
"@microsoft/recognizers-text-number-with-unit": "~1.1.4",
"lodash.isequal": "^4.5.0",
"lodash.tonumber": "^4.0.3"
}
},
"@microsoft/recognizers-text-number": {
"version": "1.1.4",
"resolved": "https://registry.npmjs.org/@microsoft/recognizers-text-number/-/recognizers-text-number-1.1.4.tgz",
"integrity": "sha512-6EmlR+HR+eJBIX7sQby1vs6LJB64wxLowHaGpIU9OCXFvZ5Nb0QT8qh10rC40v3Mtrz4DpScXfSXr9tWkIO5MQ==",
"requires": {
"@microsoft/recognizers-text": "~1.1.4",
"bignumber.js": "^7.2.1",
"lodash.escaperegexp": "^4.1.2",
"lodash.sortby": "^4.7.0",
"lodash.trimend": "^4.5.1"
}
},
"@microsoft/recognizers-text-number-with-unit": {
"version": "1.1.4",
"resolved": "https://registry.npmjs.org/@microsoft/recognizers-text-number-with-unit/-/recognizers-text-number-with-unit-1.1.4.tgz",
"integrity": "sha512-zl+CfmfWK0x/x+iSgaBAevKTYO0F4+z7SYHAHztaaaGuX8FERw2jmUjSgVetm5KA3EveyCx0XYGU1mRNY8p7Eg==",
"requires": {
"@microsoft/recognizers-text": "~1.1.4",
"@microsoft/recognizers-text-number": "~1.1.4",
"lodash.escaperegexp": "^4.1.2",
"lodash.last": "^3.0.0",
"lodash.max": "^4.0.1"
}
},
"@microsoft/recognizers-text-sequence": {
"version": "1.1.4",
"resolved": "https://registry.npmjs.org/@microsoft/recognizers-text-sequence/-/recognizers-text-sequence-1.1.4.tgz",
"integrity": "sha512-rb5j8/aE7HSOdIxaVfCGFrj0wWPpSq0CuykFg/A/iJNPP+FnAU71bgP5HexrwQcpCsDinauisX7u0DKIChrHRA==",
"requires": {
"@microsoft/recognizers-text": "~1.1.4",
"grapheme-splitter": "^1.0.2"
}
},
"@microsoft/recognizers-text-suite": {
"version": "1.1.4",
"resolved": "https://registry.npmjs.org/@microsoft/recognizers-text-suite/-/recognizers-text-suite-1.1.4.tgz",
"integrity": "sha512-hNIaR4M2G0nNeI9WZxt9C0KYh/1vhjeKzX5Ds8XDdT0pxF7zwCSo19WNcPjrVK6aCOeZTw/ULofsAjdu9gSkcA==",
"requires": {
"@microsoft/recognizers-text": "~1.1.4",
"@microsoft/recognizers-text-choice": "~1.1.4",
"@microsoft/recognizers-text-date-time": "~1.1.4",
"@microsoft/recognizers-text-number": "~1.1.4",
"@microsoft/recognizers-text-number-with-unit": "~1.1.4",
"@microsoft/recognizers-text-sequence": "~1.1.4"
}
},
"@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==",
"optional": 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==",
"optional": true
},
"@nodelib/fs.walk": {
"version": "1.2.8",
"resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
"integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
"optional": true,
"requires": {
"@nodelib/fs.scandir": "2.1.5",
"fastq": "^1.6.0"
}
},
"@peculiar/asn1-schema": {
"version": "2.0.37",
"resolved": "https://registry.npmjs.org/@peculiar/asn1-schema/-/asn1-schema-2.0.37.tgz",
"integrity": "sha512-f/dozij2XCZZ7ayOWI88TbHt/1rk3zJ91O/xTtDdc8SttyF6pleu4RYBuFohkobA5HJn+bEcY6Cvq4x9feXokQ==",
"requires": {
"@types/asn1js": "^2.0.2",
"asn1js": "^2.1.1",
"pvtsutils": "^1.1.7",
"tslib": "^2.3.0"
},
"dependencies": {
"tslib": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.0.tgz",
"integrity": "sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg=="
}
}
},
"@peculiar/json-schema": {
"version": "1.1.12",
"resolved": "https://registry.npmjs.org/@peculiar/json-schema/-/json-schema-1.1.12.tgz",
"integrity": "sha512-coUfuoMeIB7B8/NMekxaDzLhaYmp0HZNPEjYRm9goRou8UZIC3z21s0sL9AWoCw4EG876QyO3kYrc61WNF9B/w==",
"requires": {
"tslib": "^2.0.0"
},
"dependencies": {
"tslib": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.0.tgz",
"integrity": "sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg=="
}
}
},
"@peculiar/webcrypto": {
"version": "1.1.7",
"resolved": "https://registry.npmjs.org/@peculiar/webcrypto/-/webcrypto-1.1.7.tgz",
"integrity": "sha512-aCNLYdHZkvGH+T8/YBOY33jrVGVuLIa3bpizeHXqwN+P4ZtixhA+kxEEWM1amZwUY2nY/iuj+5jdZn/zB7EPPQ==",
"requires": {
"@peculiar/asn1-schema": "^2.0.32",
"@peculiar/json-schema": "^1.1.12",
"pvtsutils": "^1.1.6",
"tslib": "^2.2.0",
"webcrypto-core": "^1.2.0"
},
"dependencies": {
"tslib": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-2.3.0.tgz",
"integrity": "sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg=="
}
}
},
"@tokenizer/token": {
"version": "0.3.0",
"resolved": "https://registry.npmjs.org/@tokenizer/token/-/token-0.3.0.tgz",
"integrity": "sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A=="
},
"@types/asn1js": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/@types/asn1js/-/asn1js-2.0.2.tgz",
"integrity": "sha512-t4YHCgtD+ERvH0FyxvNlYwJ2ezhqw7t+Ygh4urQ7dJER8i185JPv6oIM3ey5YQmGN6Zp9EMbpohkjZi9t3UxwA=="
},
"@types/bson": {
"version": "4.0.5",
"resolved": "https://registry.npmjs.org/@types/bson/-/bson-4.0.5.tgz",
"integrity": "sha512-vVLwMUqhYJSQ/WKcE60eFqcyuWse5fGH+NMAXHuKrUAPoryq3ATxk5o4bgYNtg5aOM4APVg7Hnb3ASqUYG0PKg==",
"requires": {
"@types/node": "*"
}
},
"@types/jsonwebtoken": {
"version": "7.2.8",
"resolved": "https://registry.npmjs.org/@types/jsonwebtoken/-/jsonwebtoken-7.2.8.tgz",
"integrity": "sha512-XENN3YzEB8D6TiUww0O8SRznzy1v+77lH7UmuN54xq/IHIsyWjWOzZuFFTtoiRuaE782uAoRwBe/wwow+vQXZw==",
"requires": {
"@types/node": "*"
}
},
"@types/mongodb": {
"version": "3.6.20",
"resolved": "https://registry.npmjs.org/@types/mongodb/-/mongodb-3.6.20.tgz",
"integrity": "sha512-WcdpPJCakFzcWWD9juKoZbRtQxKIMYF/JIAM4JrNHrMcnJL6/a2NWjXxW7fo9hxboxxkg+icff8d7+WIEvKgYQ==",
"requires": {
"@types/bson": "*",
"@types/node": "*"
}
},
"@types/node": {
"version": "16.4.13",
"resolved": "https://registry.npmjs.org/@types/node/-/node-16.4.13.tgz",
"integrity": "sha512-bLL69sKtd25w7p1nvg9pigE4gtKVpGTPojBFLMkGHXuUgap2sLqQt2qUnqmVCDfzGUL0DRNZP+1prIZJbMeAXg=="
},
"@types/redis": {
"version": "2.8.31",
"resolved": "https://registry.npmjs.org/@types/redis/-/redis-2.8.31.tgz",
"integrity": "sha512-daWrrTDYaa5iSDFbgzZ9gOOzyp2AJmYK59OlG/2KGBgYWF3lfs8GDKm1c//tik5Uc93hDD36O+qLPvzDolChbA==",
"requires": {
"@types/node": "*"
}
},
"@types/tunnel": {
"version": "0.0.0",
"resolved": "https://registry.npmjs.org/@types/tunnel/-/tunnel-0.0.0.tgz",
"integrity": "sha512-FGDp0iBRiBdPjOgjJmn1NH0KDLN+Z8fRmo+9J7XGBhubq1DPrGrbmG4UTlGzrpbCpesMqD0sWkzi27EYkOMHyg==",
"requires": {
"@types/node": "*"
}
},
"@types/ws": {
"version": "6.0.4",
"resolved": "https://registry.npmjs.org/@types/ws/-/ws-6.0.4.tgz",
"integrity": "sha512-PpPrX7SZW9re6+Ha8ojZG4Se8AZXgf0GK6zmfqEuCsY49LFDNXO3SByp44X3dFEqtB73lkCDAdUazhAjVPiNwg==",
"requires": {
"@types/node": "*"
}
},
"@unimodules/core": {
"version": "7.1.1",
"resolved": "https://registry.npmjs.org/@unimodules/core/-/core-7.1.1.tgz",
"integrity": "sha512-Sa7X+WkrhZzcckavjuQu4mq6BTPWsio7OITfoNNzjL0CEmfHfo3DNWQWoVyj+wCgMnjGUT1l3+q3AQlI+CaCLA==",
"optional": true,
"requires": {
"compare-versions": "^3.4.0"
}
},
"@unimodules/react-native-adapter": {
"version": "6.3.5",
"resolved": "https://registry.npmjs.org/@unimodules/react-native-adapter/-/react-native-adapter-6.3.5.tgz",
"integrity": "sha512-2AuETbNMGp6EEiEKK31CTrkmS9QWuZNNvUN9g+nWN/mgIi+vZQI9RubV+a2r5rlS5QH9l7rk+sjkcGLJoFn4EA==",
"optional": true,
"requires": {
"expo-modules-autolinking": "^0.0.3",
"invariant": "^2.2.4"
}
},
"@webex/common": {
"version": "1.133.1",
"resolved": "https://registry.npmjs.org/@webex/common/-/common-1.133.1.tgz",
"integrity": "sha512-6eF+DR+O6LM3gyC8mEu8vVMjBHYBMXvo/o9fO0860OBAq4ebG7C2kFQZikg6p24vgFomAH8K1Uao02bcSKcEnQ==",
"requires": {
"@babel/runtime-corejs2": "^7.14.8",
"@webex/common": "1.133.1",
"backoff": "^2.5.0",
"core-decorators": "^0.20.0",
"envify": "^4.1.0",
"lodash": "^4.17.21",
"safe-buffer": "^5.2.0",
"urlsafe-base64": "^1.0.0"
}
},
"@webex/common-timers": {
"version": "1.133.1",
"resolved": "https://registry.npmjs.org/@webex/common-timers/-/common-timers-1.133.1.tgz",
"integrity": "sha512-DioZQZ5FRGB6oFbUOQDF7Wlh6Wzq//C0bBLpvYPOkfkD15SN+Urt/KXpNfj1QqX0Q8wA1+5yjyx4c9VSs3voBw==",
"requires": {
"@babel/runtime-corejs2": "^7.14.8",
"envify": "^4.1.0"
}
},
"@webex/helper-html": {
"version": "1.133.1",
"resolved": "https://registry.npmjs.org/@webex/helper-html/-/helper-html-1.133.1.tgz",
"integrity": "sha512-kq2gg4F+nG1WlxMafutmFC+gOqmgNWPvV1Xaeh3AzlqQk9JCr8qHjoXnp2mIMcr1dS23dkISQtvACEOjLlIOEw==",
"requires": {
"@babel/runtime-corejs2": "^7.14.8",
"envify": "^4.1.0",
"lodash": "^4.17.21"
}
},
"@webex/helper-image": {
"version": "1.133.1",
"resolved": "https://registry.npmjs.org/@webex/helper-image/-/helper-image-1.133.1.tgz",
"integrity": "sha512-jyJ/tXkAo6BHT7OkFgSHIf9BJi5d5JmRJSywhhFEhseb7Ra6gClhbYZxerGBbzY1mW5D35u1Z4tYK612CEVgqw==",
"requires": {
"@babel/runtime-corejs2": "^7.14.8",
"@webex/http-core": "1.133.1",
"envify": "^4.1.0",
"exifr": "^5.0.3",
"gm": "^1.23.1",
"lodash": "^4.17.21",
"mime": "^2.4.4",
"safe-buffer": "^5.2.0"
},
"dependencies": {
"mime": {
"version": "2.5.2",
"resolved": "https://registry.npmjs.org/mime/-/mime-2.5.2.tgz",
"integrity": "sha512-tqkh47FzKeCPD2PUiPB6pkbMzsCasjxAfC62/Wap5qrUWcb+sFasXUC5I3gYM5iBM8v/Qpn4UK0x+j0iHyFPDg=="
}
}
},
"@webex/http-core": {
"version": "1.133.1",
"resolved": "https://registry.npmjs.org/@webex/http-core/-/http-core-1.133.1.tgz",
"integrity": "sha512-QXYwjLv5h8GHwOAVsBpAtJbTK1R2NDnAIue+T1iC/HeLB9PAuUOTgGX11NPaZKsSgRF8pyHAZJAg+1rRRi07DQ==",
"requires": {
"@babel/runtime-corejs2": "^7.14.8",
"@webex/common": "1.133.1",
"envify": "^4.1.0",
"file-type": "^16.0.1",
"global": "^4.4.0",
"is-function": "^1.0.1",
"lodash": "^4.17.21",
"parse-headers": "^2.0.2",
"qs": "^6.7.0",
"request": "^2.88.0",
"safe-buffer": "^5.2.0",
"xtend": "^4.0.2"
}
},
"@webex/internal-plugin-calendar": {
"version": "1.133.1",
"resolved": "https://registry.npmjs.org/@webex/internal-plugin-calendar/-/internal-plugin-calendar-1.133.1.tgz",
"integrity": "sha512-IFhjokoQfnxgvtcqLnTY8EjqOjC621SRYDksthrFk1ZuIjYtIW/QO6vTA4UIUsxeaGUT4KSdRIRM728oEkAjDw==",
"requires": {
"@babel/runtime-corejs2": "^7.14.8",
"@webex/internal-plugin-conversation": "1.133.1",
"@webex/internal-plugin-device": "1.133.1",
"@webex/internal-plugin-encryption": "1.133.1",
"@webex/webex-core": "1.133.1",
"btoa": "^1.2.1",
"envify": "^4.1.0",
"lodash": "^4.17.21"
}
},
"@webex/internal-plugin-conversation": {
"version": "1.133.1",
"resolved": "https://registry.npmjs.org/@webex/internal-plugin-conversation/-/internal-plugin-conversation-1.133.1.tgz",
"integrity": "sha512-vC1ThgB+yqhRhQeK5muCmT+KmkgtfHwIq2bKqomFWornGvZxzvPLTpehDP6xsfRp2dvBhWXyEzlTMC9FjopdQA==",
"requires": {
"@babel/runtime-corejs2": "^7.14.8",
"@webex/common": "1.133.1",
"@webex/helper-html": "1.133.1",
"@webex/helper-image": "1.133.1",
"@webex/internal-plugin-encryption": "1.133.1",
"@webex/internal-plugin-user": "1.133.1",
"@webex/webex-core": "1.133.1",
"crypto-js": "^3.1.9-1",
"envify": "^4.1.0",
"lodash": "^4.17.21",
"node-scr": "^0.3.0",
"uuid": "^3.3.2"
},
"dependencies": {
"uuid": {
"version": "3.4.0",
"resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz",
"integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A=="
}
}
},
"@webex/internal-plugin-device": {
"version": "1.133.1",
"resolved": "https://registry.npmjs.org/@webex/internal-plugin-device/-/internal-plugin-device-1.133.1.tgz",
"integrity": "sha512-00tqmEVRnhSfOP3Q6FSq/JizMnakfHFmZM4RcMNEw5wOrUKbxXIXJcfHO1T8SjlqdgZgIjrjAq8L1LqIUTlyPw==",
"requires": {
"@babel/runtime-corejs2": "^7.14.8",
"@webex/common": "1.133.1",
"@webex/common-timers": "1.133.1",
"@webex/http-core": "1.133.1",
"@webex/webex-core": "1.133.1",
"ampersand-collection": "^2.0.2",
"ampersand-state": "^5.0.3",
"envify": "^4.1.0",
"lodash": "^4.17.21"
}
},
"@webex/internal-plugin-encryption": {
"version": "1.133.1",
"resolved": "https://registry.npmjs.org/@webex/internal-plugin-encryption/-/internal-plugin-encryption-1.133.1.tgz",
"integrity": "sha512-AOekFadwjJy6RLHtvUJg97nEoG0KYIj3tRQR9pW073nWvPbBUXknpu8aaMDi5IrFalAyeRhWRmSVI0Oh6uWUkg==",
"requires": {
"@babel/runtime-corejs2": "^7.14.8",
"@webex/common": "1.133.1",
"@webex/common-timers": "1.133.1",
"@webex/http-core": "1.133.1",
"@webex/internal-plugin-device": "1.133.1",
"@webex/internal-plugin-mercury": "1.133.1",
"@webex/webex-core": "1.133.1",
"asn1js": "^2.0.26",
"debug": "^3.2.6",
"envify": "^4.1.0",
"isomorphic-webcrypto": "^2.3.8",
"lodash": "^4.17.21",
"node-jose": "^2.0.0",
"node-kms": "^0.4.0",
"node-scr": "^0.3.0",
"pkijs": "^2.1.84",
"safe-buffer": "^5.2.0",
"valid-url": "^1.0.9"
},
"dependencies": {
"debug": {
"version": "3.2.7",
"resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
"integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
"requires": {
"ms": "^2.1.1"
}
}
}
},
"@webex/internal-plugin-feature": {
"version": "1.133.1",
"resolved": "https://registry.npmjs.org/@webex/internal-plugin-feature/-/internal-plugin-feature-1.133.1.tgz",
"integrity": "sha512-OTgHlDM8CdA6NHV8XLGYG5gQ8KDIsvLZe1jJzdYMalmtrekW888P5EMjHt1NqtYUPbUjnzmFd0aFaCm0G6+Ypw==",
"requires": {
"@babel/runtime-corejs2": "^7.14.8",
"@webex/internal-plugin-device": "1.133.1",
"@webex/internal-plugin-mercury": "1.133.1",
"@webex/webex-core": "1.133.1",
"envify": "^4.1.0",
"lodash": "^4.17.21"
}
},
"@webex/internal-plugin-lyra": {
"version": "1.133.1",
"resolved": "https://registry.npmjs.org/@webex/internal-plugin-lyra/-/internal-plugin-lyra-1.133.1.tgz",
"integrity": "sha512-LNNj5Z5D4y4wv36gLTkBHkoQ31ychZpM99ZQ2vELo0TbZjJlmWiaHdHCBwXue9hcCpGcNXFQ09A2KaVp3v4/6g==",
"requires": {
"@babel/runtime-corejs2": "^7.14.8",
"@webex/common": "1.133.1",
"@webex/internal-plugin-conversation": "1.133.1",
"@webex/internal-plugin-encryption": "1.133.1",
"@webex/internal-plugin-feature": "1.133.1",
"@webex/internal-plugin-mercury": "1.133.1",
"@webex/webex-core": "1.133.1",
"envify": "^4.1.0"
}
},
"@webex/internal-plugin-mercury": {
"version": "1.133.1",
"resolved": "https://registry.npmjs.org/@webex/internal-plugin-mercury/-/internal-plugin-mercury-1.133.1.tgz",
"integrity": "sha512-Wnm/12wtX86NznXxyK0pcM4NAJz7LVtjIkrT2xwt4/SJ8s34TykaCQ2iWEEkcv1dLYWw+/mah0iRGmyn5Jwfvg==",
"requires": {
"@babel/runtime-corejs2": "^7.14.8",
"@webex/common": "1.133.1",
"@webex/common-timers": "1.133.1",
"@webex/internal-plugin-device": "1.133.1",
"@webex/internal-plugin-feature": "1.133.1",
"@webex/internal-plugin-metrics": "1.133.1",
"@webex/webex-core": "1.133.1",
"backoff": "^2.5.0",
"envify": "^4.1.0",
"lodash": "^4.17.21",
"uuid": "^3.3.2",
"ws": "^4.1.0"
},
"dependencies": {
"safe-buffer": {
"version": "5.1.2",
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
"integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="
},
"uuid": {
"version": "3.4.0",
"resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz",
"integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A=="
},
"ws": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/ws/-/ws-4.1.0.tgz",
"integrity": "sha512-ZGh/8kF9rrRNffkLFV4AzhvooEclrOH0xaugmqGsIfFgOE/pIz4fMc4Ef+5HSQqTEug2S9JZIWDR47duDSLfaA==",
"requires": {
"async-limiter": "~1.0.0",
"safe-buffer": "~5.1.0"
}
}
}
},
"@webex/internal-plugin-metrics": {
"version": "1.133.1",
"resolved": "https://registry.npmjs.org/@webex/internal-plugin-metrics/-/internal-plugin-metrics-1.133.1.tgz",
"integrity": "sha512-cluiXEslPzZJAtpIyXamxegc2/6JNYqU3GDxXG+K2jDBTnI8NsQ6XB84xrA6OIjsnxAEdSmoCzpwEIQlHgfsPQ==",
"requires": {
"@babel/runtime-corejs2": "^7.14.8",
"@webex/common": "1.133.1",
"@webex/common-timers": "1.133.1",
"@webex/internal-plugin-device": "1.133.1",
"@webex/webex-core": "1.133.1",
"envify": "^4.1.0"
}
},
"@webex/internal-plugin-presence": {
"version": "1.133.1",
"resolved": "https://registry.npmjs.org/@webex/internal-plugin-presence/-/internal-plugin-presence-1.133.1.tgz",
"integrity": "sha512-1QEhWI2iAXjhtnoSilZ/0ep1ljaKDTYZeHq59f7qsXh61KnrBGRNN16Bfh0ZCYWBS8LYe2mmyzKWavA3Naikew==",
"requires": {
"@babel/runtime-corejs2": "^7.14.8",
"@webex/internal-plugin-device": "1.133.1",
"@webex/webex-core": "1.133.1",
"envify": "^4.1.0",
"lodash": "^4.17.21"
}
},
"@webex/internal-plugin-search": {
"version": "1.133.1",
"resolved": "https://registry.npmjs.org/@webex/internal-plugin-search/-/internal-plugin-search-1.133.1.tgz",
"integrity": "sha512-Ck3zh0nUl7erYI/rQmVk1RAu1Suxz8K97UqIsYU5bS44aquzHcurhWNqcKDYLF8ymScxdo94hcrdStY57OHOEA==",
"requires": {
"@babel/runtime-corejs2": "^7.14.8",
"@webex/common": "1.133.1",
"@webex/internal-plugin-conversation": "1.133.1",
"@webex/internal-plugin-encryption": "1.133.1",
"@webex/webex-core": "1.133.1",
"envify": "^4.1.0",
"lodash": "^4.17.21"
}
},
"@webex/internal-plugin-support": {
"version": "1.133.1",
"resolved": "https://registry.npmjs.org/@webex/internal-plugin-support/-/internal-plugin-support-1.133.1.tgz",
"integrity": "sha512-+Ot3Y8Y88WMHsfSMQHQ1UvrPY2XCn9S+1kuKQ3iNbxGEZbKMzxxmhO8/LlRwghQm4pNy0gZk1WZY0GvTtmF1mQ==",
"requires": {
"@babel/runtime-corejs2": "^7.14.8",
"@webex/internal-plugin-device": "1.133.1",
"@webex/webex-core": "1.133.1",
"envify": "^4.1.0",
"lodash": "^4.17.21",
"uuid": "^3.3.2"
},
"dependencies": {
"uuid": {
"version": "3.4.0",
"resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz",
"integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A=="
}
}
},
"@webex/internal-plugin-user": {
"version": "1.133.1",
"resolved": "https://registry.npmjs.org/@webex/internal-plugin-user/-/internal-plugin-user-1.133.1.tgz",
"integrity": "sha512-B0uob9m3xWONIQ29GzZDNP5rQj6joC+awccYBOOmI+CzRN8x4qPtQ5ewhFtUDvonSw4KunYY5+clbZGoiEph6w==",
"requires": {
"@babel/runtime-corejs2": "^7.14.8",
"@webex/common": "1.133.1",
"@webex/internal-plugin-device": "1.133.1",
"@webex/webex-core": "1.133.1",
"envify": "^4.1.0",
"lodash": "^4.17.21"
}
},
"@webex/plugin-attachment-actions": {
"version": "1.133.1",
"resolved": "https://registry.npmjs.org/@webex/plugin-attachment-actions/-/plugin-attachment-actions-1.133.1.tgz",
"integrity": "sha512-Vo//WxxhVOR4kiQiSdTwvKsfHGYNIbO4i5AbbxHPgYWqJO1hbAXhq3bSgEj0rSRfQESSgS3AOC2fUYi+cH8kXw==",
"requires": {
"@babel/runtime-corejs2": "^7.14.8",
"@webex/common": "1.133.1",
"@webex/internal-plugin-conversation": "1.133.1",
"@webex/internal-plugin-mercury": "1.133.1",
"@webex/webex-core": "1.133.1",
"debug": "^3.2.6",
"envify": "^4.1.0",
"lodash": "^4.17.21"
},
"dependencies": {
"debug": {
"version": "3.2.7",
"resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
"integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
"requires": {
"ms": "^2.1.1"
}
}
}
},
"@webex/plugin-authorization": {
"version": "1.133.1",
"resolved": "https://registry.npmjs.org/@webex/plugin-authorization/-/plugin-authorization-1.133.1.tgz",
"integrity": "sha512-HuMwvnVATb606JCK3E71TVD29aZOVaOWJ2LMDu+gNbsCV9asi6btcGWUMZd/6ixsFe4LIrogLEDOudqoaytJfw==",
"requires": {
"@babel/runtime-corejs2": "^7.14.8",
"@webex/plugin-authorization-browser": "1.133.1",
"@webex/plugin-authorization-node": "1.133.1",
"envify": "^4.1.0"
}
},
"@webex/plugin-authorization-browser": {
"version": "1.133.1",
"resolved": "https://registry.npmjs.org/@webex/plugin-authorization-browser/-/plugin-authorization-browser-1.133.1.tgz",
"integrity": "sha512-E6FH9ZLiWTmz+sYRroD4c2eXWvNt3VQGXZ5lfLywZP6ptGTTPtYaZ0GVHMtzBWcW6sz3EpUKZLC05J/VNZn+Qw==",
"requires": {
"@babel/runtime-corejs2": "^7.14.8",
"@webex/common": "1.133.1",
"@webex/internal-plugin-device": "1.133.1",
"@webex/webex-core": "1.133.1",
"envify": "^4.1.0",
"lodash": "^4.17.21",
"uuid": "^3.3.2"
},
"dependencies": {
"uuid": {
"version": "3.4.0",
"resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz",
"integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A=="
}
}
},
"@webex/plugin-authorization-node": {
"version": "1.133.1",
"resolved": "https://registry.npmjs.org/@webex/plugin-authorization-node/-/plugin-authorization-node-1.133.1.tgz",
"integrity": "sha512-1T87o6K216F2QUhl1Pi6v3bEceWg+9IZIUzlsN4TYO2ukgUnM7yAF2mQkc9lK7ZeXpXoEUID27l80T1YZIPyGQ==",
"requires": {
"@babel/runtime-corejs2": "^7.14.8",
"@webex/common": "1.133.1",
"@webex/internal-plugin-device": "1.133.1",
"@webex/webex-core": "1.133.1",
"envify": "^4.1.0"
}
},
"@webex/plugin-device-manager": {
"version": "1.133.1",
"resolved": "https://registry.npmjs.org/@webex/plugin-device-manager/-/plugin-device-manager-1.133.1.tgz",
"integrity": "sha512-P+GM94YzZjkE5D9bF8RoS37FzaadC0TJY/28sAEuBk4K0na8e9dHMtlQguHarTdfOgZ36E/n/jQxCD8OJVkZ3g==",
"requires": {
"@babel/runtime-corejs2": "^7.14.8",
"@webex/internal-plugin-device": "1.133.1",
"@webex/internal-plugin-lyra": "1.133.1",
"@webex/internal-plugin-search": "1.133.1",
"@webex/webex-core": "1.133.1",
"envify": "^4.1.0",
"lodash": "^4.17.21",
"uuid": "^3.3.2"
},
"dependencies": {
"uuid": {
"version": "3.4.0",
"resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz",
"integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A=="
}
}
},
"@webex/plugin-logger": {
"version": "1.133.1",
"resolved": "https://registry.npmjs.org/@webex/plugin-logger/-/plugin-logger-1.133.1.tgz",
"integrity": "sha512-HduJufFXWulnIwjPXAF7PWQrFJNRs/PwZwuJMayg0sTpdV3Z7rj1oL9HDzcuXfjK8XL9rqnXnKi6qeh0uWic3g==",
"requires": {
"@babel/runtime-corejs2": "^7.14.8",
"@webex/common": "1.133.1",
"@webex/webex-core": "1.133.1",
"envify": "^4.1.0",
"lodash": "^4.17.21"
}
},
"@webex/plugin-meetings": {
"version": "1.133.1",
"resolved": "https://registry.npmjs.org/@webex/plugin-meetings/-/plugin-meetings-1.133.1.tgz",
"integrity": "sha512-f4vUDfnq852Vwps2w/7ygVIxJZVYZDUhANsZtw+6TLbd4BrKwAZD6c9+Tk5i5oHS4+Z4YEPlFkkIbEsaTotYfw==",
"requires": {
"@babel/runtime-corejs2": "^7.14.8",
"@webex/common": "1.133.1",
"@webex/common-timers": "1.133.1",
"@webex/internal-plugin-mercury": "1.133.1",
"@webex/webex-core": "1.133.1",
"bowser": "^2.11.0",
"btoa": "^1.2.1",
"envify": "^4.1.0",
"global": "^4.4.0",
"javascript-state-machine": "^3.1.0",
"lodash": "^4.17.21",
"readable-stream": "^3.6.0",
"sdp-transform": "^2.12.0",
"uuid": "^3.3.2",
"webrtc-adapter": "^7.7.0"
},
"dependencies": {
"uuid": {
"version": "3.4.0",
"resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz",
"integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A=="
}
}
},
"@webex/plugin-memberships": {
"version": "1.133.1",
"resolved": "https://registry.npmjs.org/@webex/plugin-memberships/-/plugin-memberships-1.133.1.tgz",
"integrity": "sha512-acQqWz4betMLxY900tKKz8hzahmC6vqfyy9xIMVkpKNPDo80MtccsevejBBqjd/77ho4LO5bnXoNmj1zPi4qFQ==",
"requires": {
"@babel/runtime-corejs2": "^7.14.8",
"@webex/common": "1.133.1",
"@webex/internal-plugin-conversation": "1.133.1",
"@webex/internal-plugin-mercury": "1.133.1",
"@webex/webex-core": "1.133.1",
"debug": "^3.2.6",
"envify": "^4.1.0",
"lodash": "^4.17.21"
},
"dependencies": {
"debug": {
"version": "3.2.7",
"resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
"integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
"requires": {
"ms": "^2.1.1"
}
}
}
},
"@webex/plugin-messages": {
"version": "1.133.1",
"resolved": "https://registry.npmjs.org/@webex/plugin-messages/-/plugin-messages-1.133.1.tgz",
"integrity": "sha512-XVcr2MA618/Vg+o7dYBj8amzzOgVUgPG/LVIljuSf3pTFu1oYOzciI/pAACQ4ZOVi0wLtvQEZtJa/t5AelfYnQ==",
"requires": {
"@babel/runtime-corejs2": "^7.14.8",
"@webex/common": "1.133.1",
"@webex/internal-plugin-conversation": "1.133.1",
"@webex/internal-plugin-mercury": "1.133.1",
"@webex/webex-core": "1.133.1",
"envify": "^4.1.0",
"lodash": "^4.17.21"
}
},
"@webex/plugin-people": {
"version": "1.133.1",
"resolved": "https://registry.npmjs.org/@webex/plugin-people/-/plugin-people-1.133.1.tgz",
"integrity": "sha512-Ei5246+nle+NXvrMQHK7wFDcbNUXQ1l32jTplKZHEg0vv9/IDEpe9Q4BVyLmd4zUWgobBpB7D8k4QXSEERdkhg==",
"requires": {
"@babel/runtime-corejs2": "^7.14.8",
"@webex/common": "1.133.1",
"@webex/webex-core": "1.133.1",
"envify": "^4.1.0"
}
},
"@webex/plugin-rooms": {
"version": "1.133.1",
"resolved": "https://registry.npmjs.org/@webex/plugin-rooms/-/plugin-rooms-1.133.1.tgz",
"integrity": "sha512-cra+ZGnD+sOm1TapVlQWpwnVqZEtuJKx9Tnl72ArQPD7g/EB2G9SGI2MwNV4PTF+917W4Bki1z58IbxI/gwJIA==",
"requires": {
"@babel/runtime-corejs2": "^7.14.8",
"@webex/common": "1.133.1",
"@webex/internal-plugin-conversation": "1.133.1",
"@webex/internal-plugin-mercury": "1.133.1",
"@webex/webex-core": "1.133.1",
"debug": "^3.2.6",
"envify": "^4.1.0",
"lodash": "^4.17.21"
},
"dependencies": {
"debug": {
"version": "3.2.7",
"resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
"integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
"requires": {
"ms": "^2.1.1"
}
}
}
},
"@webex/plugin-team-memberships": {
"version": "1.133.1",
"resolved": "https://registry.npmjs.org/@webex/plugin-team-memberships/-/plugin-team-memberships-1.133.1.tgz",
"integrity": "sha512-aOyLVkApC6zgiJWGLzlINmBUl+BsczxOjKXyBfMcJXfAFThIrnozcsmjuWppdfYFT6JIsY95CkFES3sWMy3iNQ==",
"requires": {
"@babel/runtime-corejs2": "^7.14.8",
"@webex/webex-core": "1.133.1",
"envify": "^4.1.0"
}
},
"@webex/plugin-teams": {
"version": "1.133.1",
"resolved": "https://registry.npmjs.org/@webex/plugin-teams/-/plugin-teams-1.133.1.tgz",
"integrity": "sha512-acrI/VUP6n8h+z24emtPL/we0AUwihDjHTT98MreLH75nYfSxXf3XVqyerwv6zk3lIk5Gg6drif7kzDda1nOhQ==",
"requires": {
"@babel/runtime-corejs2": "^7.14.8",
"@webex/webex-core": "1.133.1",
"envify": "^4.1.0"
}
},
"@webex/plugin-webhooks": {
"version": "1.133.1",
"resolved": "https://registry.npmjs.org/@webex/plugin-webhooks/-/plugin-webhooks-1.133.1.tgz",
"integrity": "sha512-l+8UAYgCXelmq9oPBTkdKXHlOAMzgzEXKyGnZPJ/psPlX/mUYkYcGhM27DiA52VwyT2TJTs63VkLZUSMbAL/vA==",
"requires": {
"@babel/runtime-corejs2": "^7.14.8",
"@webex/webex-core": "1.133.1",
"envify": "^4.1.0"
}
},
"@webex/storage-adapter-local-storage": {
"version": "1.133.1",
"resolved": "https://registry.npmjs.org/@webex/storage-adapter-local-storage/-/storage-adapter-local-storage-1.133.1.tgz",
"integrity": "sha512-SWY7tWhiz0LtlW1bDTuN/dLWX66anyak8suzQCj1fiD7rEMk7i9zNG/fRm5+30hYGewefzj6ghcSgkK3ykJcRw==",
"requires": {
"@babel/runtime-corejs2": "^7.14.8",
"@webex/webex-core": "1.133.1",
"envify": "^4.1.0"
}
},
"@webex/webex-core": {
"version": "1.133.1",
"resolved": "https://registry.npmjs.org/@webex/webex-core/-/webex-core-1.133.1.tgz",
"integrity": "sha512-lg5xi9m2eI5QjwHZweENRtHWy8PJwWU1C1lvQqzrBuZWU1nD5l0OtBr6k5prIbqlpYipnr/8mMJVMGQQxfYwbg==",
"requires": {
"@babel/runtime-corejs2": "^7.14.8",
"@webex/common": "1.133.1",
"@webex/common-timers": "1.133.1",
"@webex/http-core": "1.133.1",
"@webex/webex-core": "1.133.1",
"ampersand-collection": "^2.0.2",
"ampersand-events": "^2.0.2",
"ampersand-state": "^5.0.3",
"core-decorators": "^0.20.0",
"crypto-js": "^3.1.9-1",
"envify": "^4.1.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"uuid": "^3.3.2"
},
"dependencies": {
"jsonwebtoken": {
"version": "8.5.1",
"resolved": "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-8.5.1.tgz",
"integrity": "sha512-XjwVfRS6jTMsqYs0EsuJ4LGxXV14zQybNd4L2r0UvbVnSF9Af8x7p5MzbJ90Ioz/9TI41/hTCvznF/loiSzn8w==",
"requires": {
"jws": "^3.2.2",
"lodash.includes": "^4.3.0",
"lodash.isboolean": "^3.0.3",
"lodash.isinteger": "^4.0.4",
"lodash.isnumber": "^3.0.3",
"lodash.isplainobject": "^4.0.6",
"lodash.isstring": "^4.0.1",
"lodash.once": "^4.0.0",
"ms": "^2.1.1",
"semver": "^5.6.0"
}
},
"uuid": {
"version": "3.4.0",
"resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz",
"integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A=="
}
}
},
"accepts": {
"version": "1.3.7",
"resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz",
"integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==",
"requires": {
"mime-types": "~2.1.24",
"negotiator": "0.6.2"
}
},
"adal-node": {
"version": "0.2.2",
"resolved": "https://registry.npmjs.org/adal-node/-/adal-node-0.2.2.tgz",
"integrity": "sha512-luzQ9cXOjUlZoCiWeYbyR+nHwScSrPTDTbOInFphQs/PnwNz6wAIVkbsHEXtvYBnjLctByTTI8ccfpGX100oRQ==",
"requires": {
"@types/node": "^8.0.47",
"async": "^2.6.3",
"axios": "^0.21.1",
"date-utils": "*",
"jws": "3.x.x",
"underscore": ">= 1.3.1",
"uuid": "^3.1.0",
"xmldom": ">= 0.1.x",
"xpath.js": "~1.1.0"
},
"dependencies": {
"@types/node": {
"version": "8.10.66",
"resolved": "https://registry.npmjs.org/@types/node/-/node-8.10.66.tgz",
"integrity": "sha512-tktOkFUA4kXx2hhhrB8bIFb5TbwzS4uOhKEmwiD+NoiL0qtP2OQ9mFldbgD4dV1djrlBYP6eBuQZiWjuHUpqFw=="
},
"uuid": {
"version": "3.4.0",
"resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz",
"integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A=="
}
}
},
"ajv": {
"version": "6.12.6",
"resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
"integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
"requires": {
"fast-deep-equal": "^3.1.1",
"fast-json-stable-stringify": "^2.0.0",
"json-schema-traverse": "^0.4.1",
"uri-js": "^4.2.2"
}
},
"ampersand-class-extend": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/ampersand-class-extend/-/ampersand-class-extend-2.0.0.tgz",
"integrity": "sha1-Uolf+lkhdjSmGI/RhLEEj12Aiv8=",
"requires": {
"lodash": "^4.11.1"
}
},
"ampersand-collection": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/ampersand-collection/-/ampersand-collection-2.0.2.tgz",
"integrity": "sha512-IjDa4HTL/tdQDDL0SGyWk4AHD02iNtUSLRWkAsJ2biPvapljW9HNgIEIdbPnnR+7Gb9BJkjesaLNjVZfAMzeuA==",
"requires": {
"ampersand-class-extend": "^2.0.0",
"ampersand-events": "^2.0.1",
"ampersand-version": "^1.0.2",
"lodash": "^4.11.1"
}
},
"ampersand-events": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/ampersand-events/-/ampersand-events-2.0.2.tgz",
"integrity": "sha1-9AK8LhgwX6vZldvc07cFe73X00c=",
"requires": {
"ampersand-version": "^1.0.2",
"lodash": "^4.6.1"
}
},
"ampersand-state": {
"version": "5.0.3",
"resolved": "https://registry.npmjs.org/ampersand-state/-/ampersand-state-5.0.3.tgz",
"integrity": "sha512-sr904K5zvw6mkGjFHhTcfBIdpoJ6mn/HrFg7OleRmBpw3apLb3Z0gVrgRTb7kK1wOLI34vs4S+IXqNHUeqWCzw==",
"requires": {
"ampersand-events": "^2.0.1",
"ampersand-version": "^1.0.0",
"array-next": "~0.0.1",
"key-tree-store": "^1.3.0",
"lodash": "^4.12.0"
}
},
"ampersand-version": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/ampersand-version/-/ampersand-version-1.0.2.tgz",
"integrity": "sha1-/489TOrE0yzNg/a9Zpc5f3tZ4sA=",
"requires": {
"find-root": "^0.1.1",
"through2": "^0.6.3"
}
},
"ansi-styles": {
"version": "4.3.0",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
"optional": true,
"requires": {
"color-convert": "^2.0.1"
}
},
"array-flatten": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz",
"integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI="
},
"array-next": {
"version": "0.0.1",
"resolved": "https://registry.npmjs.org/array-next/-/array-next-0.0.1.tgz",
"integrity": "sha1-5eRmCkwn/agVH/d2QnXQCQAGK+E="
},
"array-parallel": {
"version": "0.1.3",
"resolved": "https://registry.npmjs.org/array-parallel/-/array-parallel-0.1.3.tgz",
"integrity": "sha1-j3hTCJJu1apHjEfmTRszS2wMlH0="
},
"array-series": {