-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage-lock.json
3859 lines (3859 loc) · 144 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": "buildSessions",
"requires": true,
"lockfileVersion": 1,
"dependencies": {
"@babel/runtime": {
"version": "7.0.0-beta.55",
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.0.0-beta.55.tgz",
"integrity": "sha1-C8M6paasCwEvN+JbnmqqLkiakWs=",
"requires": {
"core-js": "^2.5.7",
"regenerator-runtime": "^0.12.0"
},
"dependencies": {
"core-js": {
"version": "2.5.7",
"resolved": "https://registry.npmjs.org/core-js/-/core-js-2.5.7.tgz",
"integrity": "sha512-RszJCAxg/PP6uzXVXL6BsxSXx/B05oJAQ2vkJRjyjrEcNVycaqOmNb5OTxZPE3xa5gwZduqza6L9JOCenh/Ecw=="
},
"regenerator-runtime": {
"version": "0.12.1",
"resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.12.1.tgz",
"integrity": "sha512-odxIc1/vDlo4iZcfXqRYFj0vpXFNoGdKMAUieAlFYO6m/nl5e9KR/beGf41z4a1FI+aQgtjhuaSlDxQ0hmkrHg=="
}
}
},
"@ciscospark/common": {
"version": "1.49.3",
"resolved": "https://registry.npmjs.org/@ciscospark/common/-/common-1.49.3.tgz",
"integrity": "sha512-2UglFHC4RZinL6SIQSZy+JOTRGylk/zU6iESQGsCgZS3Vn9wrPNUWAqXw00KIldGkTd0q3WFEbO5mZlBpHOyKg==",
"requires": {
"babel-runtime": "^6.23.0",
"backoff": "^2.5.0",
"core-decorators": "^0.20.0",
"envify": "^4.1.0",
"lodash": "^4.17.4",
"urlsafe-base64": "^1.0.0"
}
},
"@ciscospark/common-evented": {
"version": "1.49.3",
"resolved": "https://registry.npmjs.org/@ciscospark/common-evented/-/common-evented-1.49.3.tgz",
"integrity": "sha512-Nq+9iT0UiiBofuAbUr0Kb3MV0i4ozP3Uy5P89ypF/DX5Wa0TcCcko3RgOlBsEbcRCr2CKL9eYlrkM1Ktu9fdPA==",
"requires": {
"@ciscospark/common": "1.49.3",
"babel-runtime": "^6.23.0",
"envify": "^4.1.0"
}
},
"@ciscospark/common-timers": {
"version": "1.49.3",
"resolved": "https://registry.npmjs.org/@ciscospark/common-timers/-/common-timers-1.49.3.tgz",
"integrity": "sha512-OPMEn0uuBzLHyCp7o5uq9Vr4QNov6BHEsVktaJ/U7WddnNfdvcx/kzrA9xgQDEtXdTEhFQ3KA41AfYeuANt9+g==",
"requires": {
"envify": "^4.1.0"
}
},
"@ciscospark/http-core": {
"version": "1.49.3",
"resolved": "https://registry.npmjs.org/@ciscospark/http-core/-/http-core-1.49.3.tgz",
"integrity": "sha512-wl3BykB4xX3vfJbnzvEl8iklTn3zXOjTyKqgkZwaOFLSg3L+7xQnns+CpL7TvQoIzl7BBB0L1c3mKWsMqVYQhw==",
"requires": {
"@ciscospark/common": "1.49.3",
"babel-runtime": "^6.23.0",
"envify": "^4.1.0",
"file-type": "^3.9.0",
"global": "^4.3.1",
"is-function": "^1.0.1",
"lodash": "^4.17.4",
"parse-headers": "^2.0.1",
"qs": "^6.5.1",
"request": "^2.81.0",
"xtend": "^4.0.1"
}
},
"@ciscospark/internal-plugin-feature": {
"version": "1.49.3",
"resolved": "https://registry.npmjs.org/@ciscospark/internal-plugin-feature/-/internal-plugin-feature-1.49.3.tgz",
"integrity": "sha512-S9JObkFNE1UrwXox1+XixenMzSe3IZRkN+4jA5dpB+Og/Qd4iyTvnr/A0nONe/mL++2XsEaaIEMgg0oErcMdfw==",
"requires": {
"@ciscospark/internal-plugin-wdm": "1.49.3",
"@ciscospark/spark-core": "1.49.3",
"babel-runtime": "^6.23.0",
"envify": "^4.1.0",
"lodash": "^4.17.4"
}
},
"@ciscospark/internal-plugin-locus": {
"version": "1.49.3",
"resolved": "https://registry.npmjs.org/@ciscospark/internal-plugin-locus/-/internal-plugin-locus-1.49.3.tgz",
"integrity": "sha512-dpvIC0nA7+deVqeuyCyjcw7GcL/N4zmu33z6b4AqsAuPmLjgIYazo2YhVvhpXb1OLjF073FTVXtkKUVIpAG1fw==",
"requires": {
"@ciscospark/internal-plugin-mercury": "1.49.3",
"@ciscospark/spark-core": "1.49.3",
"babel-runtime": "^6.23.0",
"envify": "^4.1.0",
"lodash": "^4.17.4",
"uuid": "^3.2.1"
}
},
"@ciscospark/internal-plugin-mercury": {
"version": "1.49.3",
"resolved": "https://registry.npmjs.org/@ciscospark/internal-plugin-mercury/-/internal-plugin-mercury-1.49.3.tgz",
"integrity": "sha512-HKglAX6wAU9XeL85OoBGYAQVF5juSKCoafNVjVw0G9EBuOYBN7f4Y139l6feNnJbaplvIy67bSp+5+WwdfEuOw==",
"requires": {
"@ciscospark/common": "1.49.3",
"@ciscospark/common-timers": "1.49.3",
"@ciscospark/internal-plugin-feature": "1.49.3",
"@ciscospark/internal-plugin-metrics": "1.49.3",
"@ciscospark/internal-plugin-wdm": "1.49.3",
"@ciscospark/spark-core": "1.49.3",
"babel-runtime": "^6.23.0",
"backoff": "^2.5.0",
"envify": "^4.1.0",
"lodash": "^4.17.4",
"uuid": "^3.2.1",
"ws": "^4.0.0"
},
"dependencies": {
"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"
}
}
}
},
"@ciscospark/internal-plugin-metrics": {
"version": "1.49.3",
"resolved": "https://registry.npmjs.org/@ciscospark/internal-plugin-metrics/-/internal-plugin-metrics-1.49.3.tgz",
"integrity": "sha512-iBe3ZvDTveYFnmMzga2/NPeRSQslJb5i71obr/noUlhRo6tdUXTQBlJ+hrwPnOxpNY7oA80YXDaku0X6GB5phg==",
"requires": {
"@ciscospark/common": "1.49.3",
"@ciscospark/common-timers": "1.49.3",
"@ciscospark/internal-plugin-wdm": "1.49.3",
"@ciscospark/spark-core": "1.49.3",
"babel-runtime": "^6.23.0",
"envify": "^4.1.0"
}
},
"@ciscospark/internal-plugin-wdm": {
"version": "1.49.3",
"resolved": "https://registry.npmjs.org/@ciscospark/internal-plugin-wdm/-/internal-plugin-wdm-1.49.3.tgz",
"integrity": "sha512-5338PRuSvY4uxpu85Wc1cZeQzhjVwFcu17i3Qe7lBHeKzEQRvtKad1Kc/jFyPxdbS81uCFvWQoJ0pEJd6HFuOw==",
"requires": {
"@ciscospark/common": "1.49.3",
"@ciscospark/common-timers": "1.49.3",
"@ciscospark/http-core": "1.49.3",
"@ciscospark/spark-core": "1.49.3",
"ampersand-collection": "^2.0.2",
"ampersand-state": "^5.0.2",
"babel-runtime": "^6.23.0",
"envify": "^4.1.0",
"lodash": "^4.17.4"
}
},
"@ciscospark/media-engine-webrtc": {
"version": "1.49.3",
"resolved": "https://registry.npmjs.org/@ciscospark/media-engine-webrtc/-/media-engine-webrtc-1.49.3.tgz",
"integrity": "sha512-NtwpvEh+P3Jrh9bgylTeMTFbQQ+9Ox43G/Ha7aUOQMCNSGySbm4wI01RrqmJidNl+fxFRu2iJ+iNG6R+lCKXfA==",
"requires": {
"@ciscospark/common": "1.49.3",
"@ciscospark/common-evented": "1.49.3",
"ampersand-events": "^2.0.2",
"babel-runtime": "^6.23.0",
"bowser": "^1.6.0",
"core-decorators": "^0.20.0",
"envify": "^4.1.0",
"lodash": "^4.17.4",
"lodash-decorators": "^4.3.4",
"sdp-transform": "^2.4.0",
"webrtc-adapter": "^6.1.0"
}
},
"@ciscospark/plugin-authorization": {
"version": "1.49.3",
"resolved": "https://registry.npmjs.org/@ciscospark/plugin-authorization/-/plugin-authorization-1.49.3.tgz",
"integrity": "sha512-GN/0mpecnAZfSb5NV81YXzgHqM+IOmwYYn6aOlazpG6AHRFm5U3Nm5FI9EF8XbFzFv7ECIGxDf/BsmH0PbgDrA==",
"requires": {
"@ciscospark/plugin-authorization-browser": "1.49.3",
"@ciscospark/plugin-authorization-node": "1.49.3",
"envify": "^4.1.0"
}
},
"@ciscospark/plugin-authorization-browser": {
"version": "1.49.3",
"resolved": "https://registry.npmjs.org/@ciscospark/plugin-authorization-browser/-/plugin-authorization-browser-1.49.3.tgz",
"integrity": "sha512-8AR3DL56o+5tCMoMuj3aqC0702ip7vzIMoRfgPV54HSVzljY3xpdpEdyElIN45U6UdTwvLGPS+I69MjUo5/98Q==",
"requires": {
"@ciscospark/common": "1.49.3",
"@ciscospark/internal-plugin-wdm": "1.49.3",
"@ciscospark/spark-core": "1.49.3",
"babel-runtime": "^6.23.0",
"envify": "^4.1.0",
"lodash": "^4.17.4",
"uuid": "^3.2.1"
}
},
"@ciscospark/plugin-authorization-node": {
"version": "1.49.3",
"resolved": "https://registry.npmjs.org/@ciscospark/plugin-authorization-node/-/plugin-authorization-node-1.49.3.tgz",
"integrity": "sha512-+LoniykLRiYq5rQOZ0HZcJWa2srcojc/bdfwJbm/zWykSWmLI94pIxpyKhahnqzEicoy/agGMh169gtymTICWw==",
"requires": {
"@ciscospark/common": "1.49.3",
"@ciscospark/internal-plugin-wdm": "1.49.3",
"@ciscospark/spark-core": "1.49.3",
"babel-runtime": "^6.23.0",
"envify": "^4.1.0"
}
},
"@ciscospark/plugin-logger": {
"version": "1.49.3",
"resolved": "https://registry.npmjs.org/@ciscospark/plugin-logger/-/plugin-logger-1.49.3.tgz",
"integrity": "sha512-zpqHm7a30bbX6iCm1qjajg3xTgifppOdkk5LLYqC+Vofe7tXMFhJOVy0YmJD7NpWDVT/nLv7HCwnSJ5XNG4MoQ==",
"requires": {
"@ciscospark/common": "1.49.3",
"@ciscospark/spark-core": "1.49.3",
"babel-runtime": "^6.23.0",
"envify": "^4.1.0",
"lodash": "^4.17.4"
}
},
"@ciscospark/plugin-memberships": {
"version": "1.49.3",
"resolved": "https://registry.npmjs.org/@ciscospark/plugin-memberships/-/plugin-memberships-1.49.3.tgz",
"integrity": "sha512-bsfsBwhjaxllJv1DizkJSXrEoZWjxsWARrj7MUjIbfKqhU1ClAf6yOAhUtHoxB/7fy4wp1Ith2u8S2PRK4byzw==",
"requires": {
"@ciscospark/spark-core": "1.49.3",
"envify": "^4.1.0"
}
},
"@ciscospark/plugin-messages": {
"version": "1.49.3",
"resolved": "https://registry.npmjs.org/@ciscospark/plugin-messages/-/plugin-messages-1.49.3.tgz",
"integrity": "sha512-Jd1D2opdVT6tBt0Fmtw5++ZBc/jprzjdAyJiQTo2TDHFElW161jJV1LSVXfdiurMIadcVc6bEOwLl7LLTvEezg==",
"requires": {
"@ciscospark/spark-core": "1.49.3",
"babel-runtime": "^6.23.0",
"envify": "^4.1.0",
"lodash": "^4.17.4"
}
},
"@ciscospark/plugin-people": {
"version": "1.49.3",
"resolved": "https://registry.npmjs.org/@ciscospark/plugin-people/-/plugin-people-1.49.3.tgz",
"integrity": "sha512-9YKBiVugcbPR0RYtxWHgEaVhMoKd1eVDeg1lh5zBRX9/MzKbcxeNZnmQ64XbmEPe1rHGaCLSPrq1QBLGPi2xkw==",
"requires": {
"@ciscospark/common": "1.49.3",
"@ciscospark/spark-core": "1.49.3",
"babel-runtime": "^6.23.0",
"envify": "^4.1.0"
}
},
"@ciscospark/plugin-phone": {
"version": "1.49.3",
"resolved": "https://registry.npmjs.org/@ciscospark/plugin-phone/-/plugin-phone-1.49.3.tgz",
"integrity": "sha512-vdS97GJuFCTN0yrZiFQrKIlDdx0INWvsiPso5cUHI1ij+SnYZPlJo1x2NG4ZGftHsXnnWalFbrntvu2BQ/ANxw==",
"requires": {
"@ciscospark/common": "1.49.3",
"@ciscospark/common-timers": "1.49.3",
"@ciscospark/internal-plugin-locus": "1.49.3",
"@ciscospark/internal-plugin-metrics": "1.49.3",
"@ciscospark/media-engine-webrtc": "1.49.3",
"@ciscospark/plugin-people": "1.49.3",
"@ciscospark/spark-core": "1.49.3",
"ampersand-collection": "^2.0.2",
"ampersand-collection-lodash-mixin": "^4.0.0",
"ampersand-state": "^5.0.2",
"babel-runtime": "^6.23.0",
"detectrtc": "^1.3.4",
"envify": "^4.1.0",
"lodash": "^4.17.4",
"lodash-decorators": "^4.3.4",
"sdp-transform": "^2.4.0",
"uuid": "^3.2.1"
}
},
"@ciscospark/plugin-rooms": {
"version": "1.49.3",
"resolved": "https://registry.npmjs.org/@ciscospark/plugin-rooms/-/plugin-rooms-1.49.3.tgz",
"integrity": "sha512-clNjgjNOwO1GshjZxOJmEciZbkedEi75Hii+nPxz7en+URqiuyVVbLfNoUF3kDbHISyK2XBivSwp02H2gOfFvQ==",
"requires": {
"@ciscospark/spark-core": "1.49.3",
"envify": "^4.1.0"
}
},
"@ciscospark/plugin-team-memberships": {
"version": "1.49.3",
"resolved": "https://registry.npmjs.org/@ciscospark/plugin-team-memberships/-/plugin-team-memberships-1.49.3.tgz",
"integrity": "sha512-kyj3s0PikyWhGYnhdqFW42zLJMc9erFSvFyOryta/znLOrZxsNuEcPEaCxDsJEKBSU2ijp/WgIOxc54IwbepNw==",
"requires": {
"@ciscospark/spark-core": "1.49.3",
"envify": "^4.1.0"
}
},
"@ciscospark/plugin-teams": {
"version": "1.49.3",
"resolved": "https://registry.npmjs.org/@ciscospark/plugin-teams/-/plugin-teams-1.49.3.tgz",
"integrity": "sha512-hMCaeieMyoF8GMRr4hOSTzFFtxr1JmhUsEV/RKYo0AHWSwgpKxc8/5YY3Zwy/T0m+ksLkU5FMC/i5xrsTLcmQQ==",
"requires": {
"@ciscospark/spark-core": "1.49.3",
"envify": "^4.1.0"
}
},
"@ciscospark/plugin-webhooks": {
"version": "1.49.3",
"resolved": "https://registry.npmjs.org/@ciscospark/plugin-webhooks/-/plugin-webhooks-1.49.3.tgz",
"integrity": "sha512-NI+BUUBPJ9XXESOJYvyFJj9/bc0AqiPn+PtNwPNTVE12l60uwB4HPctzCNSv0cfQ104k/Gxh5Pj/LQQ1fl99pg==",
"requires": {
"@ciscospark/spark-core": "1.49.3",
"envify": "^4.1.0"
}
},
"@ciscospark/spark-core": {
"version": "1.49.3",
"resolved": "https://registry.npmjs.org/@ciscospark/spark-core/-/spark-core-1.49.3.tgz",
"integrity": "sha512-uytTxIOa4l4PK++DQhKruMzIxAGIZw+6vdMf3YssmheSRxGnWkZ3idLoiqWq3D2GLvLl/aHNiYDgQL917cLKBQ==",
"requires": {
"@ciscospark/common": "1.49.3",
"@ciscospark/common-timers": "1.49.3",
"@ciscospark/http-core": "1.49.3",
"@ciscospark/spark-core": "1.49.3",
"ampersand-collection": "^2.0.2",
"ampersand-events": "^2.0.2",
"ampersand-state": "^5.0.2",
"babel-runtime": "^6.23.0",
"core-decorators": "^0.20.0",
"envify": "^4.1.0",
"lodash": "^4.17.4",
"uuid": "^3.2.1"
}
},
"@ciscospark/storage-adapter-local-storage": {
"version": "1.49.3",
"resolved": "https://registry.npmjs.org/@ciscospark/storage-adapter-local-storage/-/storage-adapter-local-storage-1.49.3.tgz",
"integrity": "sha512-hLK7noJBj50K2dWCVax7yqVzgsi3vrRu3uee9p5wc1V1AHiriSvsC9IVcKI0R/OzOezL7ciVv8ujLROVaVCa2w==",
"requires": {
"@ciscospark/spark-core": "1.49.3",
"babel-runtime": "^6.23.0",
"envify": "^4.1.0"
}
},
"@types/async": {
"version": "2.4.1",
"resolved": "https://registry.npmjs.org/@types/async/-/async-2.4.1.tgz",
"integrity": "sha512-C09BK/wXzbW+/JK9zckhe+FeSbg7NmvVjUWwApnw7ksRpUq3ecGLiq2Aw1LlY4Z/VmtdhSaIs7jO5/MWRYMcOA=="
},
"@types/body-parser": {
"version": "1.17.0",
"resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.17.0.tgz",
"integrity": "sha512-a2+YeUjPkztKJu5aIF2yArYFQQp8d51wZ7DavSHjFuY1mqVgidGyzEQ41JIVNy82fXj8yPgy2vJmfIywgESW6w==",
"requires": {
"@types/connect": "*",
"@types/node": "*"
}
},
"@types/caseless": {
"version": "0.12.1",
"resolved": "https://registry.npmjs.org/@types/caseless/-/caseless-0.12.1.tgz",
"integrity": "sha512-FhlMa34NHp9K5MY1Uz8yb+ZvuX0pnvn3jScRSNAb75KHGB8d3rEU6hqMs3Z2vjuytcMfRg6c5CHMc3wtYyD2/A=="
},
"@types/connect": {
"version": "3.4.32",
"resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.32.tgz",
"integrity": "sha512-4r8qa0quOvh7lGD0pre62CAb1oni1OO6ecJLGCezTmhQ8Fz50Arx9RUszryR8KlgK6avuSXvviL6yWyViQABOg==",
"requires": {
"@types/node": "*"
}
},
"@types/express": {
"version": "4.16.1",
"resolved": "https://registry.npmjs.org/@types/express/-/express-4.16.1.tgz",
"integrity": "sha512-V0clmJow23WeyblmACoxbHBu2JKlE5TiIme6Lem14FnPW9gsttyHtk6wq7njcdIWH1njAaFgR8gW09lgY98gQg==",
"requires": {
"@types/body-parser": "*",
"@types/express-serve-static-core": "*",
"@types/serve-static": "*"
}
},
"@types/express-serve-static-core": {
"version": "4.16.1",
"resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.16.1.tgz",
"integrity": "sha512-QgbIMRU1EVRry5cIu1ORCQP4flSYqLM1lS5LYyGWfKnFT3E58f0gKto7BR13clBFVrVZ0G0rbLZ1hUpSkgQQOA==",
"requires": {
"@types/node": "*",
"@types/range-parser": "*"
}
},
"@types/form-data": {
"version": "2.2.1",
"resolved": "https://registry.npmjs.org/@types/form-data/-/form-data-2.2.1.tgz",
"integrity": "sha512-JAMFhOaHIciYVh8fb5/83nmuO/AHwmto+Hq7a9y8FzLDcC1KCU344XDOMEmahnrTFlHjgh4L0WJFczNIX2GxnQ==",
"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/mime": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/@types/mime/-/mime-2.0.1.tgz",
"integrity": "sha512-FwI9gX75FgVBJ7ywgnq/P7tw+/o1GUbtP0KzbtusLigAOgIgNISRK0ZPl4qertvXSIE8YbsVJueQ90cDt9YYyw=="
},
"@types/node": {
"version": "9.6.44",
"resolved": "https://registry.npmjs.org/@types/node/-/node-9.6.44.tgz",
"integrity": "sha512-hR+jK4kSOX+u5aQ6Zj6az5N4l1AeXH37/sOenbgxJvkO450C5qQL4/1twdufIMLC3o3hNfJNrPfQn0ivMdKfPg=="
},
"@types/range-parser": {
"version": "1.2.3",
"resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.3.tgz",
"integrity": "sha512-ewFXqrQHlFsgc09MK5jP5iR7vumV/BYayNC6PgJO2LPe8vrnNFyjQjSppfEngITi0qvfKtzFvgKymGheFM9UOA=="
},
"@types/request": {
"version": "2.48.1",
"resolved": "https://registry.npmjs.org/@types/request/-/request-2.48.1.tgz",
"integrity": "sha512-ZgEZ1TiD+KGA9LiAAPPJL68Id2UWfeSO62ijSXZjFJArVV+2pKcsVHmrcu+1oiE3q6eDGiFiSolRc4JHoerBBg==",
"requires": {
"@types/caseless": "*",
"@types/form-data": "*",
"@types/node": "*",
"@types/tough-cookie": "*"
}
},
"@types/serve-static": {
"version": "1.13.2",
"resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.13.2.tgz",
"integrity": "sha512-/BZ4QRLpH/bNYgZgwhKEh+5AsboDBcUdlBYgzoLX0fpj3Y2gp6EApyOlM3bK53wQS/OE1SrdSYBAbux2D1528Q==",
"requires": {
"@types/express-serve-static-core": "*",
"@types/mime": "*"
}
},
"@types/sprintf-js": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/@types/sprintf-js/-/sprintf-js-1.1.2.tgz",
"integrity": "sha512-hkgzYF+qnIl8uTO8rmUSVSfQ8BIfMXC4yJAF4n8BE758YsKBZvFC4NumnAegj7KmylP0liEZNpb9RRGFMbFejA=="
},
"@types/tough-cookie": {
"version": "2.3.5",
"resolved": "https://registry.npmjs.org/@types/tough-cookie/-/tough-cookie-2.3.5.tgz",
"integrity": "sha512-SCcK7mvGi3+ZNz833RRjFIxrn4gI1PPR3NtuIS+6vMkvmsGjosqTJwRt5bAEFLRz+wtJMWv8+uOnZf2hi2QXTg=="
},
"@types/url-join": {
"version": "0.8.3",
"resolved": "https://registry.npmjs.org/@types/url-join/-/url-join-0.8.3.tgz",
"integrity": "sha512-bM7dzLHuCqDNlbeOxvo/KfweN3La4d9C1VFGCgefxiZXn0JcRtyGDwWCSUEO8RrMhnx/LGhDOXP8TTokM1grSA=="
},
"@xmpp/jid": {
"version": "0.0.2",
"resolved": "https://registry.npmjs.org/@xmpp/jid/-/jid-0.0.2.tgz",
"integrity": "sha1-DVKMqdWNr8gzZlVk/+YvMyoxZ/I="
},
"@xmpp/streamparser": {
"version": "0.0.6",
"resolved": "https://registry.npmjs.org/@xmpp/streamparser/-/streamparser-0.0.6.tgz",
"integrity": "sha1-EYAz6p23yGoctGED8mnr/3n28eo=",
"requires": {
"@xmpp/xml": "^0.1.3",
"inherits": "^2.0.3",
"ltx": "^2.5.0"
}
},
"@xmpp/xml": {
"version": "0.1.3",
"resolved": "https://registry.npmjs.org/@xmpp/xml/-/xml-0.1.3.tgz",
"integrity": "sha1-HxQ5nlPkGWiFWGmPbGLnHjmoam4=",
"requires": {
"inherits": "^2.0.3",
"ltx": "^2.6.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=="
},
"abort-controller": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-2.0.2.tgz",
"integrity": "sha512-JXEYGxxMwiNl9EUdLysK0K0DwB7ENw6KeeaLHgofijTfJYPB/vOer3Mb+IcP913dCfWiQsd05MmVNl0H5PanrQ==",
"requires": {
"event-target-shim": "^5.0.0"
}
},
"accepts": {
"version": "1.3.5",
"resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.5.tgz",
"integrity": "sha1-63d99gEXI6OxTopywIBcjoZ0a9I=",
"requires": {
"mime-types": "~2.1.18",
"negotiator": "0.6.1"
}
},
"agent-base": {
"version": "4.2.1",
"resolved": "https://registry.npmjs.org/agent-base/-/agent-base-4.2.1.tgz",
"integrity": "sha512-JVwXMr9nHYTUXsBFKUqhJwvlcYU/blreOEUkhNR2eXZIvwd+c+o5V4MgDPKWnMS/56awN3TRzIP+KoPn+roQtg==",
"requires": {
"es6-promisify": "^5.0.0"
}
},
"ajv": {
"version": "6.9.2",
"resolved": "https://registry.npmjs.org/ajv/-/ajv-6.9.2.tgz",
"integrity": "sha512-4UFy0/LgDo7Oa/+wOAlj44tp9K78u38E5/359eSrqEp1Z5PdVfimCcs7SluXMP755RUQu6d2b4AvF0R1C9RZjg==",
"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-collection-lodash-mixin": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/ampersand-collection-lodash-mixin/-/ampersand-collection-lodash-mixin-4.0.0.tgz",
"integrity": "sha1-DtBHqOc8sHC8NrZ4pGPjgqyNtt0=",
"requires": {
"ampersand-version": "^1.0.0",
"lodash": "^4.6.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-regex": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz",
"integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8="
},
"ansi-styles": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
"integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
"requires": {
"color-convert": "^1.9.0"
}
},
"aproba": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz",
"integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw=="
},
"are-we-there-yet": {
"version": "1.1.5",
"resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz",
"integrity": "sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w==",
"requires": {
"delegates": "^1.0.0",
"readable-stream": "^2.0.6"
}
},
"argv-tools": {
"version": "0.1.1",
"resolved": "https://registry.npmjs.org/argv-tools/-/argv-tools-0.1.1.tgz",
"integrity": "sha512-Cc0dBvx4dvrjjKpyDA6w8RlNAw8Su30NvZbWl/Tv9ZALEVlLVkWQiHMi84Q0xNfpVuSaiQbYkdmWK8g1PLGhKw==",
"requires": {
"array-back": "^2.0.0",
"find-replace": "^2.0.1"
}
},
"array-back": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/array-back/-/array-back-2.0.0.tgz",
"integrity": "sha512-eJv4pLLufP3g5kcZry0j6WXpIbzYw9GUB4mVJZno9wfwiBxbizTnHCw3VJb07cBihbFX48Y7oSrW9y+gt4glyw==",
"requires": {
"typical": "^2.6.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="
},
"asap": {
"version": "2.0.6",
"resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz",
"integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY="
},
"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-plus": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz",
"integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU="
},
"async": {
"version": "2.6.2",
"resolved": "https://registry.npmjs.org/async/-/async-2.6.2.tgz",
"integrity": "sha512-H1qVYh1MYhEEFLsP97cVKqCGo7KfCyTt6uEWqsTBr9SO84oK9Uwbyd/yCW+6rKJLHksBNUVWZDAjfS+Ccx0Bbg==",
"requires": {
"lodash": "^4.17.11"
}
},
"async-limiter": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.0.tgz",
"integrity": "sha512-jp/uFnooOiO+L211eZOoSyzpOITMXx1rBITauYykG3BRYPu8h0UcxsPNB04RR5vo4Tyz3+ay17tR6JVf9qzYWg=="
},
"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.0",
"resolved": "https://registry.npmjs.org/axios/-/axios-0.18.0.tgz",
"integrity": "sha1-MtU+SFHv3AoRmTts0AB4nXDAUQI=",
"requires": {
"follow-redirects": "^1.3.0",
"is-buffer": "^1.1.5"
}
},
"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"
}
},
"back": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/back/-/back-1.0.2.tgz",
"integrity": "sha1-qT9ebOaXKZhNWQGiuxbjsBpNY2k=",
"requires": {
"xtend": "^4.0.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": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/bcrypt/-/bcrypt-1.0.3.tgz",
"integrity": "sha512-pRyDdo73C8Nim3jwFJ7DWe3TZCgwDfWZ6nHS5LSdU77kWbj1frruvdndP02AOavtD4y8v6Fp2dolbHgp4SDrfg==",
"requires": {
"nan": "2.6.2",
"node-pre-gyp": "0.6.36"
}
},
"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"
}
},
"block-stream": {
"version": "0.0.9",
"resolved": "https://registry.npmjs.org/block-stream/-/block-stream-0.0.9.tgz",
"integrity": "sha1-E+v+d4oDIFz+A3UUgeu0szAMEmo=",
"requires": {
"inherits": "~2.0.0"
}
},
"body-parser": {
"version": "1.18.3",
"resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.18.3.tgz",
"integrity": "sha1-WykhmP/dVTs6DyDe0FkrlWlVyLQ=",
"requires": {
"bytes": "3.0.0",
"content-type": "~1.0.4",
"debug": "2.6.9",
"depd": "~1.1.2",
"http-errors": "~1.6.3",
"iconv-lite": "0.4.23",
"on-finished": "~2.3.0",
"qs": "6.5.2",
"raw-body": "2.3.3",
"type-is": "~1.6.16"
}
},
"botbuilder": {
"version": "3.16.0",
"resolved": "https://registry.npmjs.org/botbuilder/-/botbuilder-3.16.0.tgz",
"integrity": "sha512-Gf51aNfvBuAxKSXQ+1SV/P1lzuRMyMyIqvjUUSqpjbtW6lFkPHhCmJIM0Dgxbflq78EXXisIYZQgAqsUNYeVQQ==",
"requires": {
"@types/async": "^2.0.48",
"@types/express": "^4.11.1",
"@types/form-data": "^2.2.1",
"@types/jsonwebtoken": "^7.2.6",
"@types/node": "^9.6.1",
"@types/request": "^2.47.0",
"@types/sprintf-js": "^1.1.0",
"@types/url-join": "^0.8.1",
"async": "^1.5.2",
"base64url": "^3.0.0",
"chrono-node": "^1.1.3",
"jsonwebtoken": "^8.2.2",
"promise": "^7.1.1",
"request": "^2.88.0",
"rsa-pem-from-mod-exp": "^0.8.4",
"sprintf-js": "^1.0.3",
"url-join": "^1.1.0"
},
"dependencies": {
"async": {
"version": "1.5.2",
"resolved": "https://registry.npmjs.org/async/-/async-1.5.2.tgz",
"integrity": "sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo="
}
}
},
"botkit": {
"version": "0.7.4",
"resolved": "https://registry.npmjs.org/botkit/-/botkit-0.7.4.tgz",
"integrity": "sha512-HMVWQ4fY6Xyb62SrFrEbBgKDaJiT7gbs2lva4SPdoq47jFkzgJ1wDKqkTsW+p+WMSVsHx9OaLKwyzxkrr0t6Gg==",
"requires": {
"async": "^2.6.1",
"back": "^1.0.2",
"body-parser": "^1.18.3",
"botbuilder": "^3.16.0",
"botkit-studio-sdk": "^1.0.8",
"chalk": "^2.4.1",
"ciscospark": "^1.48.0",
"clone": "2.1.2",
"command-line-args": "^5.0.2",
"command-line-usage": "^5.0.5",
"debug": "^4.1.0",
"email-addresses": "^3.0.2",
"express": "^4.16.4",
"googleapis": "^34.0.0",
"https-proxy-agent": "^2.2.1",
"jfs": "^0.3.0",
"localtunnel": "^1.9.1",
"md5": "^2.2.1",
"mustache": "^3.0.0",
"prompts": "^1.1.1",
"request": "^2.88.0",
"requestretry": "^3.0.2",
"simple-xmpp": "^1.3.0",
"twilio": "^3.23.1",
"ware": "^1.3.0",
"ws": "^6.1.0"
},
"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.1",
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz",
"integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg=="
}
}
},
"botkit-studio-sdk": {
"version": "1.0.9",
"resolved": "https://registry.npmjs.org/botkit-studio-sdk/-/botkit-studio-sdk-1.0.9.tgz",
"integrity": "sha512-B+WBPeAFJ8aAuXYbkS7sOx6YtV0m2IXwn0xMxKhjRtIES9q10PjABZX5aLao8wtwWJ2PXggMhJJqbmLejn8PWA==",
"requires": {
"promise": "^8.0.2",
"request": "^2.88.0"
},
"dependencies": {
"promise": {
"version": "8.0.2",
"resolved": "https://registry.npmjs.org/promise/-/promise-8.0.2.tgz",
"integrity": "sha512-EIyzM39FpVOMbqgzEHhxdrEhtOSDOtjMZQ0M6iVfCE+kWNgCkAyOdnuCWqfmflylftfadU6FkiMgHZA2kUzwRw==",
"requires": {
"asap": "~2.0.6"
}
}
}
},
"bowser": {
"version": "1.9.4",
"resolved": "https://registry.npmjs.org/bowser/-/bowser-1.9.4.tgz",
"integrity": "sha512-9IdMmj2KjigRq6oWhmwv1W36pDuA4STQZ8q6YO9um+x07xgYNCD3Oou+WP/3L1HNz7iqythGet3/p4wvc8AAwQ=="
},
"brace-expansion": {
"version": "1.1.11",
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
"integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
"requires": {
"balanced-match": "^1.0.0",
"concat-map": "0.0.1"
}
},
"browser-request": {
"version": "0.3.3",
"resolved": "https://registry.npmjs.org/browser-request/-/browser-request-0.3.3.tgz",
"integrity": "sha1-ns5bWsqJopkyJC4Yv5M975h2zBc="
},
"buffer-equal-constant-time": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz",
"integrity": "sha1-+OcRMvf/5uAaXJaXpMbz5I1cyBk="
},
"bytes": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz",
"integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg="
},
"camelcase": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz",
"integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo="
},
"caseless": {
"version": "0.12.0",
"resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz",
"integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw="
},
"chalk": {
"version": "2.4.2",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
"integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
"requires": {
"ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5",
"supports-color": "^5.3.0"
}
},
"charenc": {
"version": "0.0.2",
"resolved": "https://registry.npmjs.org/charenc/-/charenc-0.0.2.tgz",
"integrity": "sha1-wKHS86cJLgN3S/qD8UwPxXkKhmc="
},
"chrono-node": {
"version": "1.3.11",
"resolved": "https://registry.npmjs.org/chrono-node/-/chrono-node-1.3.11.tgz",
"integrity": "sha512-jDWRnY6nYvzfV3HPYBqo+tot7tcsUs9i3arGbMdI0TouPSXP2C2y/Ctp27rxKTQDi6yuTxAB2cw+Q6igGhOhdQ==",
"requires": {
"moment": "2.21.0"
}
},
"ciscospark": {
"version": "1.49.3",
"resolved": "https://registry.npmjs.org/ciscospark/-/ciscospark-1.49.3.tgz",
"integrity": "sha512-nwj3KJ0yklpu2m5ngs0ycrsREWCnaZZpppniisA1lZA0YInFGCya9y+yfXN+6A6FVcg56QdUnEkQQ+tq9CyP+g==",
"requires": {
"@ciscospark/internal-plugin-wdm": "1.49.3",
"@ciscospark/plugin-authorization": "1.49.3",
"@ciscospark/plugin-logger": "1.49.3",
"@ciscospark/plugin-memberships": "1.49.3",
"@ciscospark/plugin-messages": "1.49.3",
"@ciscospark/plugin-people": "1.49.3",
"@ciscospark/plugin-phone": "1.49.3",
"@ciscospark/plugin-rooms": "1.49.3",
"@ciscospark/plugin-team-memberships": "1.49.3",
"@ciscospark/plugin-teams": "1.49.3",
"@ciscospark/plugin-webhooks": "1.49.3",
"@ciscospark/spark-core": "1.49.3",
"@ciscospark/storage-adapter-local-storage": "1.49.3",
"babel-polyfill": "^6.23.0",
"envify": "^4.1.0",
"lodash": "^4.17.4"
}
},
"cliui": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz",
"integrity": "sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0=",
"requires": {
"string-width": "^1.0.1",
"strip-ansi": "^3.0.1",
"wrap-ansi": "^2.0.0"
}
},
"clone": {
"version": "2.1.2",
"resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz",
"integrity": "sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18="
},
"co": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/co/-/co-3.1.0.tgz",
"integrity": "sha1-TqVOpaCJOBUxheFSEMaNkJK8G3g="
},
"code-point-at": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz",
"integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c="
},
"color-convert": {
"version": "1.9.3",
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
"integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
"requires": {
"color-name": "1.1.3"
}
},
"color-name": {