forked from CiscoDevNet/botkit-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage-lock.json
3067 lines (3067 loc) · 118 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.2.6",
"resolved": "https://registry.npmjs.org/@azure/ms-rest-js/-/ms-rest-js-1.2.6.tgz",
"integrity": "sha512-8cmDpxsQjVdveJwYKtNnkJorxEORLYJu9UHaUvLZA6yHExzDeISHAcSVWE0J05+VkJtqheVHF17M+2ro18Cdnw==",
"requires": {
"axios": "^0.18.0",
"form-data": "^2.3.2",
"tough-cookie": "^2.4.3",
"tslib": "^1.9.2",
"uuid": "^3.2.1",
"xml2js": "^0.4.19"
}
},
"@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"
}
},
"@types/bson": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/@types/bson/-/bson-4.0.0.tgz",
"integrity": "sha512-pq/rqJwJWkbS10crsG5bgnrisL8pML79KlMKQMoQwLUjlPAkrUHMvHJ3oGwE7WHR61Lv/nadMwXVAD2b+fpD8Q==",
"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.3.10",
"resolved": "https://registry.npmjs.org/@types/mongodb/-/mongodb-3.3.10.tgz",
"integrity": "sha512-0irlIjqs0UVcs+1ih7qdA9Rs4gkN9hBX7PI6IBWYu/kcMQ52L+oLW19gKT8wBJD2uMBkgT4mVKDmEo6ygObnHA==",
"requires": {
"@types/bson": "*",
"@types/node": "*"
}
},
"@types/node": {
"version": "12.12.7",
"resolved": "https://registry.npmjs.org/@types/node/-/node-12.12.7.tgz",
"integrity": "sha512-E6Zn0rffhgd130zbCbAr/JdXfXkoOUFAKNs/rF8qnafSJ8KYaA/j3oz7dcwal+lYjLA7xvdd5J4wdYpCTlP8+w=="
},
"@types/redis": {
"version": "2.8.14",
"resolved": "https://registry.npmjs.org/@types/redis/-/redis-2.8.14.tgz",
"integrity": "sha512-255dzsOLJdXFHBio9/aMHGozNkoiBUgc+g2nlNjbTSp5qcAlmpm4Z6Xs3pKOBLNIKdZbA2BkUxWvYSIwKra0Yw==",
"requires": {
"@types/node": "*"
}
},
"@webex/common": {
"version": "1.80.46",
"resolved": "https://registry.npmjs.org/@webex/common/-/common-1.80.46.tgz",
"integrity": "sha512-1yxk4bYRsE+NDjybrlUPT8oWJ2unAvWc4tO8ikS48Ts8MxIuPcSlwvzm4CYriSZbxHi2cGUAoMpR3keBZiK0og==",
"requires": {
"@webex/common": "1.80.46",
"babel-runtime": "^6.26.0",
"backoff": "^2.5.0",
"core-decorators": "^0.20.0",
"envify": "^4.1.0",
"lodash": "^4.17.15",
"urlsafe-base64": "^1.0.0"
}
},
"@webex/common-timers": {
"version": "1.80.46",
"resolved": "https://registry.npmjs.org/@webex/common-timers/-/common-timers-1.80.46.tgz",
"integrity": "sha512-7ZLUUVVYFFcQnUXiwMQ+rRyxngeSx+olEluoO7uO8Saig9sNAA0dLhrxXqTj799U9e3WdFPDVqjd38VEdMtgbg==",
"requires": {
"envify": "^4.1.0"
}
},
"@webex/helper-html": {
"version": "1.80.46",
"resolved": "https://registry.npmjs.org/@webex/helper-html/-/helper-html-1.80.46.tgz",
"integrity": "sha512-/UPBYvErMjFYAw+Pwwp+zOZSSISTYMmrPK0fmoTAt2QMEKz26/bQT1JSTPL4eyvKpfaq8tdJbQ0c17tgyF78+A==",
"requires": {
"babel-runtime": "^6.26.0",
"envify": "^4.1.0",
"lodash": "^4.17.15"
}
},
"@webex/helper-image": {
"version": "1.80.46",
"resolved": "https://registry.npmjs.org/@webex/helper-image/-/helper-image-1.80.46.tgz",
"integrity": "sha512-oodRzz9yue8cOqyqnSJp4qvV50JRVID694Ksl6Kw0N3PTfPfKkq6GCSEudLBAjRwafqUu6tJh6IsGLJj0PKihw==",
"requires": {
"@webex/http-core": "1.80.46",
"babel-runtime": "^6.26.0",
"envify": "^4.1.0",
"exif": "^0.6.0",
"gm": "^1.23.1",
"lodash": "^4.17.15",
"mime-types": "^2.1.24"
}
},
"@webex/http-core": {
"version": "1.80.46",
"resolved": "https://registry.npmjs.org/@webex/http-core/-/http-core-1.80.46.tgz",
"integrity": "sha512-IaQ+JNUg58up8+qbpV2LylZuJEPrCjhORVZqLq2teVp+hjPfAnT75/H4uq/J+L+Aso9/E348iXppveFlC8LTew==",
"requires": {
"@webex/common": "1.80.46",
"babel-runtime": "^6.26.0",
"envify": "^4.1.0",
"file-type": "^3.9.0",
"global": "^4.4.0",
"is-function": "^1.0.1",
"lodash": "^4.17.15",
"parse-headers": "^2.0.2",
"qs": "^6.7.0",
"request": "^2.88.0",
"xtend": "^4.0.2"
},
"dependencies": {
"qs": {
"version": "6.9.1",
"resolved": "https://registry.npmjs.org/qs/-/qs-6.9.1.tgz",
"integrity": "sha512-Cxm7/SS/y/Z3MHWSxXb8lIFqgqBowP5JMlTUFyJN88y0SGQhVmZnqFK/PeuMX9LzUyWsqqhNxIyg0jlzq946yA=="
}
}
},
"@webex/internal-plugin-calendar": {
"version": "1.80.46",
"resolved": "https://registry.npmjs.org/@webex/internal-plugin-calendar/-/internal-plugin-calendar-1.80.46.tgz",
"integrity": "sha512-6571BVC4b/1vumvx/W1V3L+spv930NuaZcAnb32F94EpEz6j6c49QXRLJ0EtawPOBG2uZ6cxlhO7Ao6wgeBzrQ==",
"requires": {
"@webex/internal-plugin-conversation": "1.80.46",
"@webex/internal-plugin-encryption": "1.80.46",
"@webex/internal-plugin-wdm": "1.80.46",
"@webex/webex-core": "1.80.46",
"babel-runtime": "^6.26.0",
"envify": "^4.1.0",
"lodash": "^4.17.15"
}
},
"@webex/internal-plugin-conversation": {
"version": "1.80.46",
"resolved": "https://registry.npmjs.org/@webex/internal-plugin-conversation/-/internal-plugin-conversation-1.80.46.tgz",
"integrity": "sha512-f5xpURBb32pej8GqrOWPHUt+CbEHjz4Cp3GUNJ8+1fp4WBwL+teVXLjVHbM2ft6M/HiZ6BXpFHG3HsSkLcuN7A==",
"requires": {
"@webex/common": "1.80.46",
"@webex/helper-html": "1.80.46",
"@webex/helper-image": "1.80.46",
"@webex/internal-plugin-encryption": "1.80.46",
"@webex/internal-plugin-user": "1.80.46",
"@webex/webex-core": "1.80.46",
"babel-runtime": "^6.26.0",
"envify": "^4.1.0",
"lodash": "^4.17.15",
"uuid": "^3.3.2"
}
},
"@webex/internal-plugin-encryption": {
"version": "1.80.46",
"resolved": "https://registry.npmjs.org/@webex/internal-plugin-encryption/-/internal-plugin-encryption-1.80.46.tgz",
"integrity": "sha512-NhHY/GL9xpji6YHhixHeMLqV8C887Quv+YKifiJxWl9OUQv2g66ItYRqZteE1Cljzb7JItB8fe2iVSWzRWdypg==",
"requires": {
"@webex/common": "1.80.46",
"@webex/common-timers": "1.80.46",
"@webex/http-core": "1.80.46",
"@webex/internal-plugin-mercury": "1.80.46",
"@webex/internal-plugin-wdm": "1.80.46",
"@webex/webex-core": "1.80.46",
"babel-runtime": "^6.26.0",
"debug": "^3.2.6",
"envify": "^4.1.0",
"lodash": "^4.17.15",
"node-jose": "^0.11.1",
"node-kms": "^0.3.2",
"node-scr": "^0.2.2"
},
"dependencies": {
"debug": {
"version": "3.2.6",
"resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz",
"integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==",
"requires": {
"ms": "^2.1.1"
}
},
"ms": {
"version": "2.1.2",
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
"integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
}
}
},
"@webex/internal-plugin-feature": {
"version": "1.80.46",
"resolved": "https://registry.npmjs.org/@webex/internal-plugin-feature/-/internal-plugin-feature-1.80.46.tgz",
"integrity": "sha512-93Jk1NXMFROO5TCi719gWFjyisjopQHfeQH8v2lf0CkUjLV5iJfA5bZg1HDZJuwXKOalR2jw9qVPYzxZ1qEWvQ==",
"requires": {
"@webex/internal-plugin-mercury": "1.80.46",
"@webex/internal-plugin-wdm": "1.80.46",
"@webex/webex-core": "1.80.46",
"babel-runtime": "^6.26.0",
"envify": "^4.1.0",
"lodash": "^4.17.15"
}
},
"@webex/internal-plugin-lyra": {
"version": "1.80.46",
"resolved": "https://registry.npmjs.org/@webex/internal-plugin-lyra/-/internal-plugin-lyra-1.80.46.tgz",
"integrity": "sha512-lNZPYxMmI8Ey96EDd9+9suw+UlsFv8Yl7A7s3m1dCe8KVmYrhVqHHr7AhfMJa/q/2B5hSzZv9MGcNT9T5fJ61w==",
"requires": {
"@webex/common": "1.80.46",
"@webex/internal-plugin-conversation": "1.80.46",
"@webex/internal-plugin-encryption": "1.80.46",
"@webex/internal-plugin-feature": "1.80.46",
"@webex/internal-plugin-mercury": "1.80.46",
"@webex/webex-core": "1.80.46",
"babel-runtime": "^6.26.0",
"envify": "^4.1.0"
}
},
"@webex/internal-plugin-mercury": {
"version": "1.80.46",
"resolved": "https://registry.npmjs.org/@webex/internal-plugin-mercury/-/internal-plugin-mercury-1.80.46.tgz",
"integrity": "sha512-Y+Qlmi8ajSvMJ4Q4HT7Ny5JM8CeSEQ9EZuHRiTR63U5fsrz848QAkHYxq7Fp7fmZBLQNgZmetA0kiPdZ5gH50Q==",
"requires": {
"@webex/common": "1.80.46",
"@webex/common-timers": "1.80.46",
"@webex/internal-plugin-feature": "1.80.46",
"@webex/internal-plugin-metrics": "1.80.46",
"@webex/internal-plugin-wdm": "1.80.46",
"@webex/webex-core": "1.80.46",
"babel-runtime": "^6.26.0",
"backoff": "^2.5.0",
"envify": "^4.1.0",
"lodash": "^4.17.15",
"uuid": "^3.3.2",
"ws": "^4.1.0"
}
},
"@webex/internal-plugin-metrics": {
"version": "1.80.46",
"resolved": "https://registry.npmjs.org/@webex/internal-plugin-metrics/-/internal-plugin-metrics-1.80.46.tgz",
"integrity": "sha512-ijFDWaTzzo1y6koznNNnwI/c5KiwR7NBMWH5LpTQd4/u/pkDE/ig6PQ/dpOj25sEJG/j9ljyfmIqB51LQig3Nw==",
"requires": {
"@webex/common": "1.80.46",
"@webex/common-timers": "1.80.46",
"@webex/internal-plugin-wdm": "1.80.46",
"@webex/webex-core": "1.80.46",
"babel-runtime": "^6.26.0",
"envify": "^4.1.0"
}
},
"@webex/internal-plugin-presence": {
"version": "1.80.46",
"resolved": "https://registry.npmjs.org/@webex/internal-plugin-presence/-/internal-plugin-presence-1.80.46.tgz",
"integrity": "sha512-wNxM57GOu94sMCrix4BaGXoX2z90FFM7IB0uRnaypkN3PoOqEm1SiLSabya7SjcGjxIcuxPzObyQFsDiHoHE2Q==",
"requires": {
"@webex/internal-plugin-wdm": "1.80.46",
"@webex/webex-core": "1.80.46",
"babel-runtime": "^6.26.0",
"envify": "^4.1.0",
"lodash": "^4.17.15"
}
},
"@webex/internal-plugin-search": {
"version": "1.80.46",
"resolved": "https://registry.npmjs.org/@webex/internal-plugin-search/-/internal-plugin-search-1.80.46.tgz",
"integrity": "sha512-u454C0NP+7GrJdD7PAA7Mf84KJHiTIlRV0rxl2Y77X1HSTkAuRNikfaSqyIRydh68M73NNzDatYIR61+TrlMEQ==",
"requires": {
"@webex/common": "1.80.46",
"@webex/internal-plugin-encryption": "1.80.46",
"@webex/webex-core": "1.80.46",
"babel-runtime": "^6.26.0",
"envify": "^4.1.0",
"lodash": "^4.17.15"
}
},
"@webex/internal-plugin-user": {
"version": "1.80.46",
"resolved": "https://registry.npmjs.org/@webex/internal-plugin-user/-/internal-plugin-user-1.80.46.tgz",
"integrity": "sha512-IEJ9ZxSHKVOdPPz2qPYQloVBtBF9YzkCU0ZVhJchiS0d796yLsRK9q4pXI1Rh8c2kuzIudwEdESO6uCkjRoQEA==",
"requires": {
"@webex/common": "1.80.46",
"@webex/internal-plugin-wdm": "1.80.46",
"@webex/webex-core": "1.80.46",
"babel-runtime": "^6.26.0",
"envify": "^4.1.0",
"lodash": "^4.17.15"
}
},
"@webex/internal-plugin-wdm": {
"version": "1.80.46",
"resolved": "https://registry.npmjs.org/@webex/internal-plugin-wdm/-/internal-plugin-wdm-1.80.46.tgz",
"integrity": "sha512-XEzrthD4G/KQlr6MiANpqfUh4qIIb3iLFwWoM1FFN/zMpQlf9+pPJqjrSaAoGMZz4TnRfz22dfX8jUGE+Tmy/A==",
"requires": {
"@webex/common": "1.80.46",
"@webex/common-timers": "1.80.46",
"@webex/http-core": "1.80.46",
"@webex/webex-core": "1.80.46",
"ampersand-collection": "^2.0.2",
"ampersand-state": "^5.0.3",
"babel-runtime": "^6.26.0",
"envify": "^4.1.0",
"lodash": "^4.17.15"
}
},
"@webex/plugin-attachment-actions": {
"version": "1.80.46",
"resolved": "https://registry.npmjs.org/@webex/plugin-attachment-actions/-/plugin-attachment-actions-1.80.46.tgz",
"integrity": "sha512-Q5A9g0u2RJ5VeZOicbC8DhKGb8oAhoIxbOAkVDe5UaBNWfrT6Gr+H4ggHCCRLip3S5/Jutj6VGUPCvD3yspKaQ==",
"requires": {
"@webex/internal-plugin-conversation": "1.80.46",
"@webex/internal-plugin-mercury": "1.80.46",
"@webex/webex-core": "1.80.46",
"babel-runtime": "^6.26.0",
"envify": "^4.1.0"
}
},
"@webex/plugin-authorization": {
"version": "1.80.46",
"resolved": "https://registry.npmjs.org/@webex/plugin-authorization/-/plugin-authorization-1.80.46.tgz",
"integrity": "sha512-iyHR0Hol8QMTr/Q1SZk29SQhN5rmKUn0OOpOwNY8otnxmq0hknyX/Dd7ro8RtAzRkTvOx7I68gN1M4nelROFzQ==",
"requires": {
"@webex/plugin-authorization-browser": "1.80.46",
"@webex/plugin-authorization-node": "1.80.46",
"envify": "^4.1.0"
}
},
"@webex/plugin-authorization-browser": {
"version": "1.80.46",
"resolved": "https://registry.npmjs.org/@webex/plugin-authorization-browser/-/plugin-authorization-browser-1.80.46.tgz",
"integrity": "sha512-6eTUhJlGLO69ZlITV3PoEhGEE77yIKg1v7wW0i8ZwUdEEviPVYBl9uKLOv3yyvSIhyCi54ruDbhVR/HtUpsyng==",
"requires": {
"@webex/common": "1.80.46",
"@webex/internal-plugin-wdm": "1.80.46",
"@webex/webex-core": "1.80.46",
"babel-runtime": "^6.26.0",
"envify": "^4.1.0",
"lodash": "^4.17.15",
"uuid": "^3.3.2"
}
},
"@webex/plugin-authorization-node": {
"version": "1.80.46",
"resolved": "https://registry.npmjs.org/@webex/plugin-authorization-node/-/plugin-authorization-node-1.80.46.tgz",
"integrity": "sha512-x7oTUBHM6SV+udeg4GKWck2KaWl/1QZiPYaGsGgJyPfepsUU//ONk1ZD6rNlt+uqYTHw5EDys1si9LEta5VolA==",
"requires": {
"@webex/common": "1.80.46",
"@webex/internal-plugin-wdm": "1.80.46",
"@webex/webex-core": "1.80.46",
"babel-runtime": "^6.26.0",
"envify": "^4.1.0"
}
},
"@webex/plugin-device-manager": {
"version": "1.80.46",
"resolved": "https://registry.npmjs.org/@webex/plugin-device-manager/-/plugin-device-manager-1.80.46.tgz",
"integrity": "sha512-puCiffBL9XD1MYsbIUmgUsoFjPsnyCU3VvqBmsuxYSaTvl2URkayUgQ+nCO89QJZieB0hG6gNNBrgIEc0hQ7+g==",
"requires": {
"@webex/internal-plugin-lyra": "1.80.46",
"@webex/internal-plugin-search": "1.80.46",
"@webex/internal-plugin-wdm": "1.80.46",
"@webex/webex-core": "1.80.46",
"babel-runtime": "^6.26.0",
"envify": "^4.1.0",
"lodash": "^4.17.15",
"uuid": "^3.3.2"
}
},
"@webex/plugin-logger": {
"version": "1.80.46",
"resolved": "https://registry.npmjs.org/@webex/plugin-logger/-/plugin-logger-1.80.46.tgz",
"integrity": "sha512-ZGJ/KgzQNQh5XFFwyV/6JM0up5fENreFpZ/tefLptiaO3rpL8lfxoA0UR6KDpAewTWqnjqY09XqkJ1bTv7jNvw==",
"requires": {
"@webex/common": "1.80.46",
"@webex/webex-core": "1.80.46",
"babel-runtime": "^6.26.0",
"envify": "^4.1.0",
"lodash": "^4.17.15"
}
},
"@webex/plugin-meetings": {
"version": "1.80.46",
"resolved": "https://registry.npmjs.org/@webex/plugin-meetings/-/plugin-meetings-1.80.46.tgz",
"integrity": "sha512-M9tBGFsv9DHxaKnL6rDGchu+HAfvQgO+k7rHQXEjIBz5fqcoJ/fc+dU87L87vkYumKZlDIlCx4WvK/t357J+Kw==",
"requires": {
"@webex/common": "1.80.46",
"@webex/common-timers": "1.80.46",
"@webex/internal-plugin-mercury": "1.80.46",
"@webex/webex-core": "1.80.46",
"babel-runtime": "^6.26.0",
"bowser": "1.9.4",
"btoa": "^1.2.1",
"envify": "^4.1.0",
"global": "^4.4.0",
"javascript-state-machine": "^3.1.0",
"lodash": "^4.17.15",
"sdp-transform": "^2.12.0",
"uuid": "^3.3.2"
}
},
"@webex/plugin-memberships": {
"version": "1.80.46",
"resolved": "https://registry.npmjs.org/@webex/plugin-memberships/-/plugin-memberships-1.80.46.tgz",
"integrity": "sha512-YKwDFbLqyuuI2XCY9MTDNvjLeM6HugtG48l+QehHmy3sRneeazUYgBu6JLI1IzYubLxanQijrqDeGJDwnGQESA==",
"requires": {
"@webex/common": "1.80.46",
"@webex/internal-plugin-conversation": "1.80.46",
"@webex/internal-plugin-mercury": "1.80.46",
"@webex/webex-core": "1.80.46",
"babel-runtime": "^6.26.0",
"debug": "^3.2.6",
"envify": "^4.1.0",
"lodash": "^4.17.15"
},
"dependencies": {
"debug": {
"version": "3.2.6",
"resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz",
"integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==",
"requires": {
"ms": "^2.1.1"
}
},
"ms": {
"version": "2.1.2",
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
"integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
}
}
},
"@webex/plugin-messages": {
"version": "1.80.46",
"resolved": "https://registry.npmjs.org/@webex/plugin-messages/-/plugin-messages-1.80.46.tgz",
"integrity": "sha512-jkbTQGoh8V2rDbpEFyQpEW2ojgeFHJWZkg4/6usoYpjaQem6YYptApv73CwiyNm7XCalyTRqY7ptZa5C6GJGkg==",
"requires": {
"@webex/common": "1.80.46",
"@webex/internal-plugin-conversation": "1.80.46",
"@webex/internal-plugin-mercury": "1.80.46",
"@webex/webex-core": "1.80.46",
"babel-runtime": "^6.26.0",
"debug": "^3.2.6",
"envify": "^4.1.0",
"lodash": "^4.17.15"
},
"dependencies": {
"debug": {
"version": "3.2.6",
"resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz",
"integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==",
"requires": {
"ms": "^2.1.1"
}
},
"ms": {
"version": "2.1.2",
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
"integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
}
}
},
"@webex/plugin-people": {
"version": "1.80.46",
"resolved": "https://registry.npmjs.org/@webex/plugin-people/-/plugin-people-1.80.46.tgz",
"integrity": "sha512-yCE9ceb4lSvIDShAnUV390iMeNX6ZzCwEmq29xkEDEv11uzNplLhByg2WXJfd88rzBqBmFZwcw6jxEbjJhwy4Q==",
"requires": {
"@webex/common": "1.80.46",
"@webex/webex-core": "1.80.46",
"babel-runtime": "^6.26.0",
"envify": "^4.1.0"
}
},
"@webex/plugin-rooms": {
"version": "1.80.46",
"resolved": "https://registry.npmjs.org/@webex/plugin-rooms/-/plugin-rooms-1.80.46.tgz",
"integrity": "sha512-/vS+6WB6ocJiBckZPYP/c4r9N5e4ybokTCIdtQSYmPOCV/iZJHKAg/vHlLSCg1/TJvghMhbYeK+ywph5VU6jhQ==",
"requires": {
"@webex/common": "1.80.46",
"@webex/internal-plugin-conversation": "1.80.46",
"@webex/internal-plugin-mercury": "1.80.46",
"@webex/webex-core": "1.80.46",
"babel-runtime": "^6.26.0",
"debug": "^3.2.6",
"envify": "^4.1.0",
"lodash": "^4.17.15"
},
"dependencies": {
"debug": {
"version": "3.2.6",
"resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz",
"integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==",
"requires": {
"ms": "^2.1.1"
}
},
"ms": {
"version": "2.1.2",
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
"integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
}
}
},
"@webex/plugin-team-memberships": {
"version": "1.80.46",
"resolved": "https://registry.npmjs.org/@webex/plugin-team-memberships/-/plugin-team-memberships-1.80.46.tgz",
"integrity": "sha512-DCP2KzXa0MJYDmEmxsQ+k1y96tJaFKz3itNs8ZohUIwXLk7K8XhnknGjQ/fWv4xacsRzAeBbNvm3S9gO7oJNVg==",
"requires": {
"@webex/webex-core": "1.80.46",
"envify": "^4.1.0"
}
},
"@webex/plugin-teams": {
"version": "1.80.46",
"resolved": "https://registry.npmjs.org/@webex/plugin-teams/-/plugin-teams-1.80.46.tgz",
"integrity": "sha512-nLumrH6oROtEImOUh7leywNJ92Gl6rdPHnxyp5M3ClhYVV3xy/eFO6RI3Npyf+Py3tactGwGclhMOkJ/8oLTtw==",
"requires": {
"@webex/webex-core": "1.80.46",
"envify": "^4.1.0"
}
},
"@webex/plugin-webhooks": {
"version": "1.80.46",
"resolved": "https://registry.npmjs.org/@webex/plugin-webhooks/-/plugin-webhooks-1.80.46.tgz",
"integrity": "sha512-hG1Fweba3V2bu+j8uhz5UduJF/OaR4yWNYMxyLC8IGq73rQaPSkwPej+b6HabGXcdqVUnbn+aCJBbEKlSIdV8A==",
"requires": {
"@webex/webex-core": "1.80.46",
"envify": "^4.1.0"
}
},
"@webex/storage-adapter-local-storage": {
"version": "1.80.46",
"resolved": "https://registry.npmjs.org/@webex/storage-adapter-local-storage/-/storage-adapter-local-storage-1.80.46.tgz",
"integrity": "sha512-d52IAUxeMKPN76vli5IYtrzah2/jTpY0Ereqik15A12qtiiZUt4wbsjVsMPUGQlf84I6cCVj8dfnOM7CKcriZg==",
"requires": {
"@webex/webex-core": "1.80.46",
"babel-runtime": "^6.26.0",
"envify": "^4.1.0"
}
},
"@webex/webex-core": {
"version": "1.80.46",
"resolved": "https://registry.npmjs.org/@webex/webex-core/-/webex-core-1.80.46.tgz",
"integrity": "sha512-vVwy1P1qzAK3T3PXsm45J9T+fSl4iCHujtCS3QO7OlulA7D9A4t/+4H7nN5fUgKD4WZ9vN38tKZ4kuJYJSanIw==",
"requires": {
"@webex/common": "1.80.46",
"@webex/common-timers": "1.80.46",
"@webex/http-core": "1.80.46",
"@webex/webex-core": "1.80.46",
"ampersand-collection": "^2.0.2",
"ampersand-events": "^2.0.2",
"ampersand-state": "^5.0.3",
"babel-runtime": "^6.26.0",
"core-decorators": "^0.20.0",
"envify": "^4.1.0",
"lodash": "^4.17.15",
"uuid": "^3.3.2"
}
},
"abbrev": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz",
"integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q=="
},
"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"
}
},
"adm-zip": {
"version": "0.4.11",
"resolved": "https://registry.npmjs.org/adm-zip/-/adm-zip-0.4.11.tgz",
"integrity": "sha512-L8vcjDTCOIJk7wFvmlEUN7AsSb8T+2JrdP7KINBjzr24TJ5Mwj590sLu3BC7zNZowvJWa/JtPmD8eJCzdtDWjA=="
},
"ajv": {
"version": "6.10.2",
"resolved": "https://registry.npmjs.org/ajv/-/ajv-6.10.2.tgz",
"integrity": "sha512-TXtUUEYHuaTEbLZWIKUr5pmBuhDLy+8KYtPYdcV8qC+pOZL+NKqYwvWSRrVXHn+ZmRRAu8vJTAznH7Oag6RVRw==",
"requires": {
"fast-deep-equal": "^2.0.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"
}
},
"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": {
"version": "0.1.5",
"resolved": "https://registry.npmjs.org/array-series/-/array-series-0.1.5.tgz",
"integrity": "sha1-3103v8XC7wdV4qpPkv6ufUtaly8="
},
"asn1": {
"version": "0.2.4",
"resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz",
"integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==",
"requires": {
"safer-buffer": "~2.1.0"
}
},
"assert": {
"version": "1.5.0",
"resolved": "https://registry.npmjs.org/assert/-/assert-1.5.0.tgz",
"integrity": "sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==",
"requires": {
"object-assign": "^4.1.1",
"util": "0.10.3"
}
},
"assert-plus": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz",
"integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU="
},
"async-limiter": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz",
"integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ=="
},
"asynckit": {
"version": "0.4.0",
"resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
"integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k="
},
"aws-sign2": {
"version": "0.7.0",
"resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz",
"integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg="
},
"aws4": {
"version": "1.8.0",
"resolved": "https://registry.npmjs.org/aws4/-/aws4-1.8.0.tgz",
"integrity": "sha512-ReZxvNHIOv88FlT7rxcXIIC0fPt4KZqZbOlivyWtXLt8ESx84zd3kMC6iK5jVeS2qt+g7ftS7ye4fi06X5rtRQ=="
},
"axios": {
"version": "0.18.1",
"resolved": "https://registry.npmjs.org/axios/-/axios-0.18.1.tgz",
"integrity": "sha512-0BfJq4NSfQXd+SkFdrvFbG7addhYSBA2mQwISr46pD6E5iqkWg02RAs8vyTT/j0RTnoYmeXauBuSv1qKwR179g==",
"requires": {
"follow-redirects": "1.5.10",
"is-buffer": "^2.0.2"
}
},
"b64u": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/b64u/-/b64u-2.0.0.tgz",
"integrity": "sha512-N3SnhKhQtwm9a4+rdNT0JvnNdPlRwpQZN4tfJwOE3/qJVzM+OlYj/Iz2n1S3KXAQmKHaRwWUNW5gEnjuD8cXHg=="
},
"babel-polyfill": {
"version": "6.26.0",
"resolved": "https://registry.npmjs.org/babel-polyfill/-/babel-polyfill-6.26.0.tgz",
"integrity": "sha1-N5k3q8Z9eJWXCtxiHyhM2WbPIVM=",
"requires": {
"babel-runtime": "^6.26.0",
"core-js": "^2.5.0",
"regenerator-runtime": "^0.10.5"
},
"dependencies": {
"regenerator-runtime": {
"version": "0.10.5",
"resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz",
"integrity": "sha1-M2w+/BIgrc7dosn6tntaeVWjNlg="
}
}
},
"babel-runtime": {
"version": "6.26.0",
"resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz",
"integrity": "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=",
"requires": {
"core-js": "^2.4.0",
"regenerator-runtime": "^0.11.0"
}
},
"backoff": {
"version": "2.5.0",
"resolved": "https://registry.npmjs.org/backoff/-/backoff-2.5.0.tgz",
"integrity": "sha1-9hbtqdPktmuMp/ynn2lXIsX44m8=",
"requires": {
"precond": "0.2"
}
},
"balanced-match": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz",
"integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c="
},
"base64url": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/base64url/-/base64url-3.0.1.tgz",
"integrity": "sha512-ir1UPr3dkwexU7FdV8qBBbNDRUhMmIekYMFZfi+C/sLNnRESKPl23nB9b2pltqfOQNnGzsDdId90AEtG5tCx4A=="
},
"bcrypt-pbkdf": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz",
"integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=",
"requires": {
"tweetnacl": "^0.14.3"
}
},
"bignumber.js": {
"version": "7.2.1",
"resolved": "https://registry.npmjs.org/bignumber.js/-/bignumber.js-7.2.1.tgz",
"integrity": "sha512-S4XzBk5sMB+Rcb/LNcpzXr57VRTxgAvaAEDAl1AwRx27j00hT84O6OkteE7u8UB3NuaaygCRrEpqox4uDOrbdQ=="
},
"body-parser": {
"version": "1.19.0",
"resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz",
"integrity": "sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==",
"requires": {
"bytes": "3.1.0",
"content-type": "~1.0.4",
"debug": "2.6.9",
"depd": "~1.1.2",
"http-errors": "1.7.2",
"iconv-lite": "0.4.24",
"on-finished": "~2.3.0",
"qs": "6.7.0",
"raw-body": "2.4.0",
"type-is": "~1.6.17"
},
"dependencies": {
"debug": {
"version": "2.6.9",
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
"requires": {
"ms": "2.0.0"
}
},
"qs": {
"version": "6.7.0",
"resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz",
"integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ=="
}
}
},
"botbuilder": {
"version": "4.6.1",
"resolved": "https://registry.npmjs.org/botbuilder/-/botbuilder-4.6.1.tgz",
"integrity": "sha512-uBJExq/iuwMJABBo1KZ6V/LJZ+50ziKdtyGQw0FRCnyXqV6PF2GL0VqqQCtHFTWkMVd70NBOQEmBxfvp5XuNoA==",
"requires": {
"@types/node": "^10.12.18",
"botbuilder-core": "^4.6.1",
"botframework-connector": "^4.6.1",
"filenamify": "^4.1.0",
"fs-extra": "^7.0.1"
},
"dependencies": {
"@types/node": {
"version": "10.17.5",
"resolved": "https://registry.npmjs.org/@types/node/-/node-10.17.5.tgz",
"integrity": "sha512-RElZIr/7JreF1eY6oD5RF3kpmdcreuQPjg5ri4oQ5g9sq7YWU8HkfB3eH8GwAwxf5OaCh0VPi7r4N/yoTGelrA=="
}
}
},
"botbuilder-adapter-webex": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/botbuilder-adapter-webex/-/botbuilder-adapter-webex-1.0.4.tgz",
"integrity": "sha512-Ep0K/zsZHkDXQXuTex4A8imzRxYKX1MXNKHzrYMc3epMNKaJgdWXQthh4nP6ac3CUsgdIZ/AB4yHrzn+hLoj8A==",
"requires": {
"botbuilder": "^4.6.0",
"botkit": "^4.6.0",
"debug": "^4.1.0",
"url": "^0.11.0",
"webex": "^1.80.36"
},
"dependencies": {
"debug": {
"version": "4.1.1",
"resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz",
"integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==",
"requires": {
"ms": "^2.1.1"
}
},
"ms": {
"version": "2.1.2",
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
"integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
}
}
},
"botbuilder-core": {
"version": "4.6.1",
"resolved": "https://registry.npmjs.org/botbuilder-core/-/botbuilder-core-4.6.1.tgz",
"integrity": "sha512-PsGsh1jWY7TjTGx9ZdPp6Rmep+8upatRZiKvVw2yY/sN8asfSgaHAzheTwz0e24ZKxXzoU+GV2ozKe2ctxzlWg==",
"requires": {
"assert": "^1.4.1",
"botframework-schema": "^4.6.1"
}
},
"botbuilder-dialogs": {
"version": "4.6.1",
"resolved": "https://registry.npmjs.org/botbuilder-dialogs/-/botbuilder-dialogs-4.6.1.tgz",
"integrity": "sha512-fx/T1YM3EB7SKLGi8VZCKhM9gmsBAZdrsW3Lqm6zZRS8w7hTN2nklSeIFE6KagtLh+2KBNZP6Dhb2SdHWGHl3w==",
"requires": {
"@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-suite": "1.1.4",
"@types/node": "^10.12.18",
"botbuilder-core": "^4.6.1",
"cldr-data": "^35.1.0",
"globalize": "^1.4.2"
},
"dependencies": {
"@types/node": {
"version": "10.17.5",
"resolved": "https://registry.npmjs.org/@types/node/-/node-10.17.5.tgz",
"integrity": "sha512-RElZIr/7JreF1eY6oD5RF3kpmdcreuQPjg5ri4oQ5g9sq7YWU8HkfB3eH8GwAwxf5OaCh0VPi7r4N/yoTGelrA=="
}
}
},
"botbuilder-storage-mongodb": {
"version": "0.9.5",
"resolved": "https://registry.npmjs.org/botbuilder-storage-mongodb/-/botbuilder-storage-mongodb-0.9.5.tgz",
"integrity": "sha512-2BjzwSfQQP45yD5C3nZm4aIYn+7KZTpwQwQRYXt2g0oOYfoA4CLhbjGBbyjguR4Fp129aTJ+UOPA1C062w0lDQ==",
"requires": {
"@types/mongodb": "^3.1.19",
"botbuilder": "^4.2.0",
"mongodb": "^3.1.11",
"request": "^2.88.0"
}
},
"botbuilder-storage-redis": {
"version": "1.0.9",
"resolved": "https://registry.npmjs.org/botbuilder-storage-redis/-/botbuilder-storage-redis-1.0.9.tgz",
"integrity": "sha512-tyCQ1adPrW7tDRxZYCUqCUmPsFF1zJTlPTAlJ2dZzsK2WIxcaeLbsKuyzFukNBfoP77A0CfN1lxWZH+tlJ7yhA==",
"requires": {
"@types/redis": "^2.8.13",
"botbuilder": "^4.5.2",
"redis": "^2.8.0"
}
},
"botframework-connector": {
"version": "4.6.1",
"resolved": "https://registry.npmjs.org/botframework-connector/-/botframework-connector-4.6.1.tgz",
"integrity": "sha512-ErnJ46FhfUbkwYZNbD81a3BgLTUySniozTgMw+5+cFjhJgEI+DcqLE+bnNkpV7+F/nfitDw4rpNiAEQDfDXcjw==",
"requires": {
"@azure/ms-rest-js": "1.2.6",
"@types/jsonwebtoken": "7.2.8",
"@types/node": "^10.12.18",
"base64url": "^3.0.0",
"botframework-schema": "^4.6.1",
"form-data": "^2.3.3",
"jsonwebtoken": "8.0.1",
"node-fetch": "^2.2.1",
"rsa-pem-from-mod-exp": "^0.8.4"
},
"dependencies": {
"@types/node": {
"version": "10.17.5",
"resolved": "https://registry.npmjs.org/@types/node/-/node-10.17.5.tgz",
"integrity": "sha512-RElZIr/7JreF1eY6oD5RF3kpmdcreuQPjg5ri4oQ5g9sq7YWU8HkfB3eH8GwAwxf5OaCh0VPi7r4N/yoTGelrA=="
}
}
},
"botframework-schema": {
"version": "4.6.1",
"resolved": "https://registry.npmjs.org/botframework-schema/-/botframework-schema-4.6.1.tgz",