forked from howdyai/botkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package-lock.json
9104 lines (9104 loc) · 388 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",
"version": "0.6.11",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"@ciscospark/common": {
"version": "1.28.5",
"resolved": "https://registry.npmjs.org/@ciscospark/common/-/common-1.28.5.tgz",
"integrity": "sha1-AYVJ3l0kUPWVr/K0/iL7ZsD0MOg=",
"requires": {
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz",
"backoff": "2.5.0",
"core-decorators": "0.20.0",
"envify": "4.1.0",
"lodash": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz",
"urlsafe-base64": "1.0.0"
}
},
"@ciscospark/common-evented": {
"version": "1.28.5",
"resolved": "https://registry.npmjs.org/@ciscospark/common-evented/-/common-evented-1.28.5.tgz",
"integrity": "sha1-JDRfTN3oiuVVSGrTcEWPbx0ZWHw=",
"requires": {
"@ciscospark/common": "1.28.5",
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz",
"envify": "4.1.0"
}
},
"@ciscospark/common-timers": {
"version": "1.28.5",
"resolved": "https://registry.npmjs.org/@ciscospark/common-timers/-/common-timers-1.28.5.tgz",
"integrity": "sha1-e076dnmXOQyn0TYFQqethRGWly4=",
"requires": {
"envify": "4.1.0"
}
},
"@ciscospark/http-core": {
"version": "1.28.5",
"resolved": "https://registry.npmjs.org/@ciscospark/http-core/-/http-core-1.28.5.tgz",
"integrity": "sha1-IfpQceFiZ0bobg2Pto/AyuRDZ4U=",
"requires": {
"@ciscospark/common": "1.28.5",
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz",
"envify": "4.1.0",
"file-type": "3.9.0",
"global": "4.3.2",
"is-function": "1.0.1",
"lodash": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz",
"parse-headers": "2.0.1",
"qs": "6.5.1",
"request": "2.81.0",
"xtend": "4.0.1"
},
"dependencies": {
"qs": {
"version": "6.5.1",
"resolved": "https://registry.npmjs.org/qs/-/qs-6.5.1.tgz",
"integrity": "sha512-eRzhrN1WSINYCDCbrz796z37LOe3m5tmW7RQf6oBntukAG1nmovJvhnwHHRMAfeoItc1m2Hk02WER2aQ/iqs+A=="
}
}
},
"@ciscospark/internal-plugin-feature": {
"version": "1.28.5",
"resolved": "https://registry.npmjs.org/@ciscospark/internal-plugin-feature/-/internal-plugin-feature-1.28.5.tgz",
"integrity": "sha1-5vsasAjpotgQS+d+MQxeD1r9n1Q=",
"requires": {
"@ciscospark/internal-plugin-wdm": "1.28.5",
"@ciscospark/spark-core": "1.28.5",
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz",
"envify": "4.1.0",
"lodash": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz"
}
},
"@ciscospark/internal-plugin-locus": {
"version": "1.28.5",
"resolved": "https://registry.npmjs.org/@ciscospark/internal-plugin-locus/-/internal-plugin-locus-1.28.5.tgz",
"integrity": "sha1-FFwDgasKgBd12rbAQ8Bv2P65Lvw=",
"requires": {
"@ciscospark/internal-plugin-mercury": "1.28.5",
"@ciscospark/spark-core": "1.28.5",
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz",
"envify": "4.1.0",
"lodash": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz",
"uuid": "3.2.1"
},
"dependencies": {
"uuid": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/uuid/-/uuid-3.2.1.tgz",
"integrity": "sha512-jZnMwlb9Iku/O3smGWvZhauCf6cvvpKi4BKRiliS3cxnI+Gz9j5MEpTz2UFuXiKPJocb7gnsLHwiS05ige5BEA=="
}
}
},
"@ciscospark/internal-plugin-mercury": {
"version": "1.28.5",
"resolved": "https://registry.npmjs.org/@ciscospark/internal-plugin-mercury/-/internal-plugin-mercury-1.28.5.tgz",
"integrity": "sha1-/UMIxT3K6y/H/A+zal+4kyvOMog=",
"requires": {
"@ciscospark/common": "1.28.5",
"@ciscospark/common-timers": "1.28.5",
"@ciscospark/internal-plugin-feature": "1.28.5",
"@ciscospark/internal-plugin-metrics": "1.28.5",
"@ciscospark/internal-plugin-wdm": "1.28.5",
"@ciscospark/spark-core": "1.28.5",
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz",
"backoff": "2.5.0",
"envify": "4.1.0",
"lodash": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz",
"string": "3.3.3",
"uuid": "3.2.1",
"ws": "4.1.0"
},
"dependencies": {
"uuid": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/uuid/-/uuid-3.2.1.tgz",
"integrity": "sha512-jZnMwlb9Iku/O3smGWvZhauCf6cvvpKi4BKRiliS3cxnI+Gz9j5MEpTz2UFuXiKPJocb7gnsLHwiS05ige5BEA=="
},
"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": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.0.tgz",
"safe-buffer": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz"
}
}
}
},
"@ciscospark/internal-plugin-metrics": {
"version": "1.28.5",
"resolved": "https://registry.npmjs.org/@ciscospark/internal-plugin-metrics/-/internal-plugin-metrics-1.28.5.tgz",
"integrity": "sha1-vLjYXRQS3UtelbCSVyHk3FJ/dRU=",
"requires": {
"@ciscospark/common": "1.28.5",
"@ciscospark/common-timers": "1.28.5",
"@ciscospark/internal-plugin-wdm": "1.28.5",
"@ciscospark/spark-core": "1.28.5",
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz",
"envify": "4.1.0"
}
},
"@ciscospark/internal-plugin-wdm": {
"version": "1.28.5",
"resolved": "https://registry.npmjs.org/@ciscospark/internal-plugin-wdm/-/internal-plugin-wdm-1.28.5.tgz",
"integrity": "sha1-Oz8FbbvY95tOeK4VMR4Cbaq9Mns=",
"requires": {
"@ciscospark/common": "1.28.5",
"@ciscospark/common-timers": "1.28.5",
"@ciscospark/http-core": "1.28.5",
"@ciscospark/spark-core": "1.28.5",
"ampersand-collection": "2.0.2",
"ampersand-state": "5.0.3",
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz",
"envify": "4.1.0",
"lodash": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz"
}
},
"@ciscospark/media-engine-webrtc": {
"version": "1.28.5",
"resolved": "https://registry.npmjs.org/@ciscospark/media-engine-webrtc/-/media-engine-webrtc-1.28.5.tgz",
"integrity": "sha1-TXzQ+GVNtGkSWSPOD3cE2gGMY68=",
"requires": {
"@ciscospark/common": "1.28.5",
"@ciscospark/common-evented": "1.28.5",
"ampersand-events": "2.0.2",
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz",
"core-decorators": "0.20.0",
"envify": "4.1.0",
"lodash": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz",
"lodash-decorators": "4.5.0",
"sdp-transform": "2.4.0",
"webrtc-adapter": "6.1.1"
}
},
"@ciscospark/plugin-authorization": {
"version": "1.28.5",
"resolved": "https://registry.npmjs.org/@ciscospark/plugin-authorization/-/plugin-authorization-1.28.5.tgz",
"integrity": "sha1-+MYH5M8VExmyEC98JYl1iLBYtBA=",
"requires": {
"@ciscospark/plugin-authorization-browser": "1.28.5",
"@ciscospark/plugin-authorization-node": "1.28.5",
"envify": "4.1.0"
}
},
"@ciscospark/plugin-authorization-browser": {
"version": "1.28.5",
"resolved": "https://registry.npmjs.org/@ciscospark/plugin-authorization-browser/-/plugin-authorization-browser-1.28.5.tgz",
"integrity": "sha1-SRgOm0PGDm7w1SSwZkkJfeiBbV4=",
"requires": {
"@ciscospark/common": "1.28.5",
"@ciscospark/internal-plugin-wdm": "1.28.5",
"@ciscospark/spark-core": "1.28.5",
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz",
"envify": "4.1.0",
"lodash": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz",
"uuid": "3.2.1"
},
"dependencies": {
"uuid": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/uuid/-/uuid-3.2.1.tgz",
"integrity": "sha512-jZnMwlb9Iku/O3smGWvZhauCf6cvvpKi4BKRiliS3cxnI+Gz9j5MEpTz2UFuXiKPJocb7gnsLHwiS05ige5BEA=="
}
}
},
"@ciscospark/plugin-authorization-node": {
"version": "1.28.5",
"resolved": "https://registry.npmjs.org/@ciscospark/plugin-authorization-node/-/plugin-authorization-node-1.28.5.tgz",
"integrity": "sha1-CYGO4JQBxh8n9JMoAP/Yf/2m1EQ=",
"requires": {
"@ciscospark/common": "1.28.5",
"@ciscospark/internal-plugin-wdm": "1.28.5",
"@ciscospark/spark-core": "1.28.5",
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz",
"envify": "4.1.0"
}
},
"@ciscospark/plugin-logger": {
"version": "1.28.5",
"resolved": "https://registry.npmjs.org/@ciscospark/plugin-logger/-/plugin-logger-1.28.5.tgz",
"integrity": "sha1-gllr8d3VGPT6rKR+Ned/02eZX7Q=",
"requires": {
"@ciscospark/common": "1.28.5",
"@ciscospark/spark-core": "1.28.5",
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz",
"envify": "4.1.0",
"lodash": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz"
}
},
"@ciscospark/plugin-memberships": {
"version": "1.28.5",
"resolved": "https://registry.npmjs.org/@ciscospark/plugin-memberships/-/plugin-memberships-1.28.5.tgz",
"integrity": "sha1-wNAHRJ+ti+RyVHJsuVOrA6whlsw=",
"requires": {
"@ciscospark/spark-core": "1.28.5",
"envify": "4.1.0"
}
},
"@ciscospark/plugin-messages": {
"version": "1.28.5",
"resolved": "https://registry.npmjs.org/@ciscospark/plugin-messages/-/plugin-messages-1.28.5.tgz",
"integrity": "sha1-NQdn+cgGrnzPODe9DdHbN5tzhsg=",
"requires": {
"@ciscospark/spark-core": "1.28.5",
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz",
"envify": "4.1.0",
"lodash": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz"
}
},
"@ciscospark/plugin-people": {
"version": "1.28.5",
"resolved": "https://registry.npmjs.org/@ciscospark/plugin-people/-/plugin-people-1.28.5.tgz",
"integrity": "sha1-TM8ku2yrXaTtkl1+pXO2WIFHmNo=",
"requires": {
"@ciscospark/common": "1.28.5",
"@ciscospark/spark-core": "1.28.5",
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz",
"envify": "4.1.0"
}
},
"@ciscospark/plugin-phone": {
"version": "1.29.0",
"resolved": "https://registry.npmjs.org/@ciscospark/plugin-phone/-/plugin-phone-1.29.0.tgz",
"integrity": "sha1-LNE7/Kt8FZ8mzm/yD7eXqmdxIAg=",
"requires": {
"@ciscospark/common": "1.28.5",
"@ciscospark/common-timers": "1.28.5",
"@ciscospark/internal-plugin-locus": "1.28.5",
"@ciscospark/internal-plugin-metrics": "1.28.5",
"@ciscospark/media-engine-webrtc": "1.28.5",
"@ciscospark/plugin-people": "1.28.5",
"@ciscospark/spark-core": "1.28.5",
"ampersand-collection": "2.0.2",
"ampersand-collection-lodash-mixin": "4.0.0",
"ampersand-state": "5.0.3",
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz",
"detectrtc": "1.3.5",
"envify": "4.1.0",
"lodash": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz",
"lodash-decorators": "4.5.0",
"sdp-transform": "2.4.0",
"uuid": "3.2.1"
},
"dependencies": {
"uuid": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/uuid/-/uuid-3.2.1.tgz",
"integrity": "sha512-jZnMwlb9Iku/O3smGWvZhauCf6cvvpKi4BKRiliS3cxnI+Gz9j5MEpTz2UFuXiKPJocb7gnsLHwiS05ige5BEA=="
}
}
},
"@ciscospark/plugin-rooms": {
"version": "1.28.5",
"resolved": "https://registry.npmjs.org/@ciscospark/plugin-rooms/-/plugin-rooms-1.28.5.tgz",
"integrity": "sha1-XU09U43xERjdh1q7EOZo7Af0Z/M=",
"requires": {
"@ciscospark/spark-core": "1.28.5",
"envify": "4.1.0"
}
},
"@ciscospark/plugin-team-memberships": {
"version": "1.28.5",
"resolved": "https://registry.npmjs.org/@ciscospark/plugin-team-memberships/-/plugin-team-memberships-1.28.5.tgz",
"integrity": "sha1-z+t6+juoPe+KGH+3m8TkFwdJev8=",
"requires": {
"@ciscospark/spark-core": "1.28.5",
"envify": "4.1.0"
}
},
"@ciscospark/plugin-teams": {
"version": "1.28.5",
"resolved": "https://registry.npmjs.org/@ciscospark/plugin-teams/-/plugin-teams-1.28.5.tgz",
"integrity": "sha1-kyh60hfJpdqhpYmICFA4X0jfuOI=",
"requires": {
"@ciscospark/spark-core": "1.28.5",
"envify": "4.1.0"
}
},
"@ciscospark/plugin-webhooks": {
"version": "1.28.5",
"resolved": "https://registry.npmjs.org/@ciscospark/plugin-webhooks/-/plugin-webhooks-1.28.5.tgz",
"integrity": "sha1-HcGIU/ICgIxu93aB2bjWmohUQg4=",
"requires": {
"@ciscospark/spark-core": "1.28.5",
"envify": "4.1.0"
}
},
"@ciscospark/spark-core": {
"version": "1.28.5",
"resolved": "https://registry.npmjs.org/@ciscospark/spark-core/-/spark-core-1.28.5.tgz",
"integrity": "sha1-u5ihfMmVyIgniQWDFSnDysb4ddQ=",
"requires": {
"@ciscospark/common": "1.28.5",
"@ciscospark/common-timers": "1.28.5",
"@ciscospark/http-core": "1.28.5",
"ampersand-collection": "2.0.2",
"ampersand-events": "2.0.2",
"ampersand-state": "5.0.3",
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz",
"envify": "4.1.0",
"lodash": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz",
"uuid": "3.2.1"
},
"dependencies": {
"uuid": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/uuid/-/uuid-3.2.1.tgz",
"integrity": "sha512-jZnMwlb9Iku/O3smGWvZhauCf6cvvpKi4BKRiliS3cxnI+Gz9j5MEpTz2UFuXiKPJocb7gnsLHwiS05ige5BEA=="
}
}
},
"@ciscospark/storage-adapter-local-storage": {
"version": "1.28.5",
"resolved": "https://registry.npmjs.org/@ciscospark/storage-adapter-local-storage/-/storage-adapter-local-storage-1.28.5.tgz",
"integrity": "sha1-ufNYGkgMpnuP/v0p7XzL0LBlt90=",
"requires": {
"@ciscospark/spark-core": "1.28.5",
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz",
"envify": "4.1.0"
}
},
"@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.7.1"
},
"dependencies": {
"ltx": {
"version": "2.7.1",
"resolved": "https://registry.npmjs.org/ltx/-/ltx-2.7.1.tgz",
"integrity": "sha1-Dly9y1vxeM+ngx6kHcMj2XQiMVo=",
"requires": {
"inherits": "2.0.3"
}
}
}
},
"@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.7.1"
},
"dependencies": {
"ltx": {
"version": "2.7.1",
"resolved": "https://registry.npmjs.org/ltx/-/ltx-2.7.1.tgz",
"integrity": "sha1-Dly9y1vxeM+ngx6kHcMj2XQiMVo=",
"requires": {
"inherits": "2.0.3"
}
}
}
},
"ajv": {
"version": "4.11.8",
"resolved": "https://registry.npmjs.org/ajv/-/ajv-4.11.8.tgz",
"integrity": "sha1-gv+wKynmYq5TvcIK8VlHcGc5xTY=",
"requires": {
"co": "4.6.0",
"json-stable-stringify": "1.0.1"
},
"dependencies": {
"json-stable-stringify": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz",
"integrity": "sha1-mnWdOcXy/1A/1TAGRu1EX4jE+a8=",
"requires": {
"jsonify": "0.0.0"
}
},
"jsonify": {
"version": "0.0.0",
"resolved": "https://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz",
"integrity": "sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM="
}
}
},
"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": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz"
}
},
"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.2",
"ampersand-version": "1.0.2",
"lodash": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz"
}
},
"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.2",
"lodash": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz"
}
},
"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": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz"
}
},
"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.2",
"ampersand-version": "1.0.2",
"array-next": "0.0.1",
"key-tree-store": "1.3.0",
"lodash": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz"
}
},
"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.2",
"through2": "0.6.5"
}
},
"ansi-escapes": {
"version": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-1.4.0.tgz",
"integrity": "sha1-06ioOzGapneTZisT52HHkRQiMG4="
},
"ansi-regex": {
"version": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz",
"integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA=="
},
"ansi-styles": {
"version": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
"integrity": "sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA=="
},
"array-back": {
"version": "https://registry.npmjs.org/array-back/-/array-back-1.0.4.tgz",
"integrity": "sha512-1WxbZvrmyhkNoeYcizokbmh5oiOCIfyvGtcqbK3Ls1v1fKcquzxnQSceOx6tzq7jmai2kFLWIpGND2cLhH6TPw==",
"requires": {
"typical": "https://registry.npmjs.org/typical/-/typical-2.6.1.tgz"
}
},
"array-flatten": {
"version": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz",
"integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg=="
},
"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": "https://registry.npmjs.org/asn1/-/asn1-0.2.3.tgz",
"integrity": "sha512-6i37w/+EhlWlGUJff3T/Q8u1RGmP5wgbiwYnOnbOqvtrPxT63/sYFyP9RcpxtxGymtfA075IvmOnL7ycNOWl3w=="
},
"assert-plus": {
"version": "https://registry.npmjs.org/assert-plus/-/assert-plus-0.2.0.tgz",
"integrity": "sha512-u1L0ZLywRziOVjUhRxI0Qg9G+4RnFB9H/Rq40YWn0dieDgO7vAYeJz6jKAO6t/aruzlDFLAPkQTT87e+f8Imaw=="
},
"async": {
"version": "2.6.0",
"resolved": "https://registry.npmjs.org/async/-/async-2.6.0.tgz",
"integrity": "sha512-xAfGg1/NTLBBKlHFmnd7PlmUW9KhVQIUuSrYem9xzFUZy13ScvtyGGejaae9iAVRiRq9+Cx7DPFaAAhCpyxyPw==",
"requires": {
"lodash": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz"
}
},
"async-limiter": {
"version": "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": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.6.0.tgz",
"integrity": "sha512-JnJpAS0p9RmixkOvW2XwDxxzs1bd4/VAGIl6Q0EC5YOo+p+hqIhtDhn/nmFnB/xUNXbLkpE2mOjgVIBRKD4xYw=="
},
"aws4": {
"version": "https://registry.npmjs.org/aws4/-/aws4-1.6.0.tgz",
"integrity": "sha512-tkleq4Df8UWu/7xf/tfbo7t2vDa07bcONGnKhl0QXKQsh3fJ0yJ1M5wzpy8BtBSENQw/9VTsthMhLG+yXHfStQ=="
},
"babel-polyfill": {
"version": "https://registry.npmjs.org/babel-polyfill/-/babel-polyfill-6.26.0.tgz",
"integrity": "sha1-N5k3q8Z9eJWXCtxiHyhM2WbPIVM=",
"requires": {
"babel-runtime": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz",
"core-js": "https://registry.npmjs.org/core-js/-/core-js-2.5.0.tgz",
"regenerator-runtime": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz"
},
"dependencies": {
"regenerator-runtime": {
"version": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz",
"integrity": "sha1-M2w+/BIgrc7dosn6tntaeVWjNlg="
}
}
},
"babel-runtime": {
"version": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz",
"integrity": "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=",
"requires": {
"core-js": "https://registry.npmjs.org/core-js/-/core-js-2.5.0.tgz",
"regenerator-runtime": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.0.tgz"
}
},
"back": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/back/-/back-1.0.2.tgz",
"integrity": "sha1-qT9ebOaXKZhNWQGiuxbjsBpNY2k=",
"requires": {
"xtend": "4.0.1"
}
},
"backoff": {
"version": "2.5.0",
"resolved": "https://registry.npmjs.org/backoff/-/backoff-2.5.0.tgz",
"integrity": "sha1-9hbtqdPktmuMp/ynn2lXIsX44m8=",
"requires": {
"precond": "0.2.3"
}
},
"balanced-match": {
"version": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz",
"integrity": "sha512-9Y0g0Q8rmSt+H33DfKv7FOc3v+iRI+o1lbzt8jGcIosYW37IIW/2XVYq5NPdmaD5NQ59Nk26Kl/vZbwW9Fr8vg==",
"dev": true
},
"base64url": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/base64url/-/base64url-2.0.0.tgz",
"integrity": "sha1-6sFuA+oUOO/5Qj1puqNiYu0fcLs="
},
"bcrypt-pbkdf": {
"version": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz",
"integrity": "sha512-vY4sOrSlpwNZXsinfJ0HpbSkFft4nhSVLeUrQ4j2ydGmBOiVY83aMJStJATBy0C3+XdaYa990kIA1qkC2mUq6g==",
"optional": true,
"requires": {
"tweetnacl": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz"
}
},
"bindings": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/bindings/-/bindings-1.3.0.tgz",
"integrity": "sha512-DpLh5EzMR2kzvX1KIlVC0VkC3iZtHKTgdtZ0a3pglBZdaQFjt5S9g9xd1lE+YvXyfd6mtCeRnrUfOLYiTMlNSw=="
},
"bluebird": {
"version": "3.5.1",
"resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.5.1.tgz",
"integrity": "sha512-MKiLiV+I1AA596t9w1sQJ8jkiSr5+ZKi0WKrYGUn6d1Fx+Ij4tIj+m2WMQSGczs5jZVxV339chE8iwk6F64wjA=="
},
"body-parser": {
"version": "1.17.2",
"resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.17.2.tgz",
"integrity": "sha1-+IkqvI+eYn1Crtr7yma/WrmRBO4=",
"requires": {
"bytes": "2.4.0",
"content-type": "1.0.2",
"debug": "2.6.7",
"depd": "1.1.0",
"http-errors": "1.6.1",
"iconv-lite": "0.4.15",
"on-finished": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz",
"qs": "https://registry.npmjs.org/qs/-/qs-6.4.0.tgz",
"raw-body": "2.2.0",
"type-is": "https://registry.npmjs.org/type-is/-/type-is-1.6.15.tgz"
},
"dependencies": {
"bytes": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/bytes/-/bytes-2.4.0.tgz",
"integrity": "sha1-fZcZb51br39pNeJZhVSe3SpsIzk="
},
"content-type": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.2.tgz",
"integrity": "sha1-t9ETrueo3Se9IRM8TcJSnfFyHu0="
},
"debug": {
"version": "2.6.7",
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.7.tgz",
"integrity": "sha1-krrR9tBbu2u6Isyoi80OyJTChh4=",
"requires": {
"ms": "2.0.0"
},
"dependencies": {
"ms": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
"integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g="
}
}
},
"depd": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/depd/-/depd-1.1.0.tgz",
"integrity": "sha1-4b2Cxqq2ztlluXuIsX7T5SjKGMM="
},
"http-errors": {
"version": "1.6.1",
"resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.1.tgz",
"integrity": "sha1-X4uO2YrKVFZWv1cplzh/kEpyIlc=",
"requires": {
"depd": "1.1.0",
"inherits": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz",
"setprototypeof": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.0.3.tgz",
"statuses": "https://registry.npmjs.org/statuses/-/statuses-1.4.0.tgz"
},
"dependencies": {
"inherits": {
"version": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz",
"integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw=="
},
"setprototypeof": {
"version": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.0.3.tgz",
"integrity": "sha512-9jphSf3UbIgpOX/RKvX02iw/rN2TKdusnsPpGfO/rkcsrd+IRqgHZb4VGnmL0Cynps8Nj2hN45wsi30BzrHDIw=="
}
}
},
"iconv-lite": {
"version": "0.4.15",
"resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.15.tgz",
"integrity": "sha1-/iZaIYrGpXz+hUkn6dBMGYJe3es="
},
"raw-body": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.2.0.tgz",
"integrity": "sha1-mUl2z2pQlqQRYoQEkvC9xdbn+5Y=",
"requires": {
"bytes": "2.4.0",
"iconv-lite": "0.4.15",
"unpipe": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz"
},
"dependencies": {
"unpipe": {
"version": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz",
"integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ=="
}
}
}
}
},
"boom": {
"version": "https://registry.npmjs.org/boom/-/boom-2.10.1.tgz",
"integrity": "sha512-KbiZEa9/vofNcVJXGwdWWn25reQ3V3dHBWbS07FTF3/TOehLnm9GEhJV4T6ZvGPkShRpmUqYwnaCrkj0mRnP6Q==",
"requires": {
"hoek": "https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz"
},
"dependencies": {
"hoek": {
"version": "https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz",
"integrity": "sha512-V6Yw1rIcYV/4JsnggjBU0l4Kr+EXhpwqXRusENU1Xx6ro00IHPHYNynCuBTOZAPlr3AAmLvchH9I7N/VUdvOwQ=="
}
}
},
"botbuilder": {
"version": "3.8.4",
"resolved": "https://registry.npmjs.org/botbuilder/-/botbuilder-3.8.4.tgz",
"integrity": "sha1-/O3EK5J+zwUMJL5SDBKAgkQ3pwg=",
"requires": {
"async": "https://registry.npmjs.org/async/-/async-1.5.2.tgz",
"base64url": "https://registry.npmjs.org/base64url/-/base64url-2.0.0.tgz",
"chrono-node": "1.3.4",
"jsonwebtoken": "7.4.1",
"promise": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz",
"request": "2.81.0",
"rsa-pem-from-mod-exp": "https://registry.npmjs.org/rsa-pem-from-mod-exp/-/rsa-pem-from-mod-exp-0.8.4.tgz",
"sprintf-js": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.1.tgz",
"url-join": "https://registry.npmjs.org/url-join/-/url-join-1.1.0.tgz"
},
"dependencies": {
"async": {
"version": "https://registry.npmjs.org/async/-/async-1.5.2.tgz",
"integrity": "sha512-nSVgobk4rv61R9PUSDtYt7mPVB2olxNR5RWJcAsH676/ef11bUZwvu7+RGYrYauVdDPcO519v68wRhXQtxsV9w=="
},
"base64url": {
"version": "https://registry.npmjs.org/base64url/-/base64url-2.0.0.tgz",
"integrity": "sha512-udc4PeFuYpYAg8XbWZ3pcFXlyT42CqTGozT1xNApY+KWp2+FuyJg9bvp+zR+q9XnuPy4tt6B4+MuXw2dYo4l7A=="
},
"chrono-node": {
"version": "1.3.4",
"resolved": "https://registry.npmjs.org/chrono-node/-/chrono-node-1.3.4.tgz",
"integrity": "sha1-/CqSCGNuCdb9exLZSuJECTfeJL0=",
"requires": {
"moment": "https://registry.npmjs.org/moment/-/moment-2.18.1.tgz"
},
"dependencies": {
"moment": {
"version": "https://registry.npmjs.org/moment/-/moment-2.18.1.tgz",
"integrity": "sha512-QGcnVKRSEhbWy2i0pqFhjWMCczL/YU5ICMB3maUavFcyUqBszRnzsswvOaGOqSfWZ/R+dMnb9gGBuRT4LMTdVQ=="
}
}
},
"hoek": {
"version": "2.16.3",
"resolved": "https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz",
"integrity": "sha1-ILt0A9POo5jpHcRxCo/xuCdKJe0="
},
"jsonwebtoken": {
"version": "7.4.1",
"resolved": "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-7.4.1.tgz",
"integrity": "sha1-fKMk9SFfi+A5zTWmxFu4y3SkSPs=",
"requires": {
"joi": "https://registry.npmjs.org/joi/-/joi-6.10.1.tgz",
"jws": "https://registry.npmjs.org/jws/-/jws-3.1.4.tgz",
"lodash.once": "https://registry.npmjs.org/lodash.once/-/lodash.once-4.1.1.tgz",
"ms": "2.0.0",
"xtend": "4.0.1"
},
"dependencies": {
"joi": {
"version": "https://registry.npmjs.org/joi/-/joi-6.10.1.tgz",
"integrity": "sha512-K6+OwGaWM1sBEu+XMbgC4zDmg6hnddS2DWiCVtjnhkcrzv+ejSfh7HGUsoxmWQkv6kHEsVFAywttfkpmIE2QwQ==",
"requires": {
"hoek": "2.16.3",
"isemail": "1.2.0",
"moment": "2.21.0",
"topo": "1.1.0"
}
},
"lodash.once": {
"version": "https://registry.npmjs.org/lodash.once/-/lodash.once-4.1.1.tgz",
"integrity": "sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg=="
},
"moment": {
"version": "2.21.0",
"resolved": "https://registry.npmjs.org/moment/-/moment-2.21.0.tgz",
"integrity": "sha512-TCZ36BjURTeFTM/CwRcViQlfkMvL1/vFISuNLO5GkcVm1+QHfbSiNqZuWeMFjj1/3+uAjXswgRk30j1kkLYJBQ=="
},
"ms": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
"integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g="
},
"xtend": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz",
"integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68="
}
}
},
"promise": {
"version": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz",
"integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==",
"requires": {
"asap": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz"
},
"dependencies": {
"asap": {
"version": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz",
"integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA=="
}
}
}
}
},
"botkit-studio-sdk": {
"version": "1.0.8",
"resolved": "https://registry.npmjs.org/botkit-studio-sdk/-/botkit-studio-sdk-1.0.8.tgz",
"integrity": "sha1-focHv7hGKBPAgVXTqIpaSQhFzPU=",
"requires": {
"promise": "7.3.1",
"request": "2.81.0"
},
"dependencies": {
"promise": {
"version": "7.3.1",
"resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz",
"integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==",
"requires": {
"asap": "2.0.6"
}
}
}
},
"brace-expansion": {
"version": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.8.tgz",
"integrity": "sha512-Dnfc9ROAPrkkeLIUweEbh7LFT9Mc53tO/bbM044rKjhgAEyIGKvKXg97PM/kRizZIfUHaROZIoeEaWao+Unzfw==",
"dev": true,
"requires": {
"balanced-match": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz",
"concat-map": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz"
}
},
"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="
},
"camelcase": {
"version": "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz",
"integrity": "sha1-m7UwTS4LVmmLLHWLCKPqqdqlijk="
},
"caseless": {
"version": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz",
"integrity": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw=="
},
"chalk": {
"version": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
"integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
"requires": {
"ansi-styles": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
"escape-string-regexp": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
"has-ansi": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz",
"strip-ansi": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
"supports-color": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz"
}
},
"charenc": {
"version": "https://registry.npmjs.org/charenc/-/charenc-0.0.2.tgz",
"integrity": "sha1-wKHS86cJLgN3S/qD8UwPxXkKhmc="
},
"ciscospark": {
"version": "1.29.0",
"resolved": "https://registry.npmjs.org/ciscospark/-/ciscospark-1.29.0.tgz",
"integrity": "sha1-rfHsBb/f4mRxM5TF/mdvLAWyRTg=",
"requires": {
"@ciscospark/internal-plugin-wdm": "1.28.5",
"@ciscospark/plugin-authorization": "1.28.5",
"@ciscospark/plugin-logger": "1.28.5",
"@ciscospark/plugin-memberships": "1.28.5",
"@ciscospark/plugin-messages": "1.28.5",
"@ciscospark/plugin-people": "1.28.5",
"@ciscospark/plugin-phone": "1.29.0",
"@ciscospark/plugin-rooms": "1.28.5",
"@ciscospark/plugin-team-memberships": "1.28.5",
"@ciscospark/plugin-teams": "1.28.5",
"@ciscospark/plugin-webhooks": "1.28.5",
"@ciscospark/spark-core": "1.28.5",
"@ciscospark/storage-adapter-local-storage": "1.28.5",
"babel-polyfill": "https://registry.npmjs.org/babel-polyfill/-/babel-polyfill-6.26.0.tgz",
"envify": "4.1.0",
"lodash": "https://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz"
}
},
"cli-cursor": {
"version": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-1.0.2.tgz",
"integrity": "sha1-ZNo/fValRBLll5S9Ytw1KV6PKYc=",
"requires": {
"restore-cursor": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-1.0.1.tgz"
}
},
"cli-width": {
"version": "https://registry.npmjs.org/cli-width/-/cli-width-1.1.1.tgz",
"integrity": "sha1-pNKT72frt7iNSk1CwMzwDE0eNm0="
},
"cliui": {
"version": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz",
"integrity": "sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0=",
"requires": {
"string-width": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz",
"strip-ansi": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz",
"wrap-ansi": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz"
}
},
"clone": {
"version": "https://registry.npmjs.org/clone/-/clone-2.1.1.tgz",
"integrity": "sha1-0hfR6WERjjrJpLi7oyhVU79kfNs="
},
"co": {
"version": "4.6.0",
"resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz",
"integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ="
},
"code-point-at": {
"version": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz",
"integrity": "sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA=="
},
"combined-stream": {
"version": "1.0.6",
"resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.6.tgz",
"integrity": "sha1-cj599ugBrFYTETp+RFqbactjKBg=",
"requires": {
"delayed-stream": "1.0.0"
}
},
"command-line-args": {
"version": "4.0.6",
"resolved": "https://registry.npmjs.org/command-line-args/-/command-line-args-4.0.6.tgz",
"integrity": "sha1-D/h6HdFZiQ3K6yoAWr2uceVQWfw=",
"requires": {
"array-back": "https://registry.npmjs.org/array-back/-/array-back-1.0.4.tgz",
"find-replace": "https://registry.npmjs.org/find-replace/-/find-replace-1.0.3.tgz",
"typical": "https://registry.npmjs.org/typical/-/typical-2.6.1.tgz"
}
},
"commander": {
"version": "2.14.1",
"resolved": "https://registry.npmjs.org/commander/-/commander-2.14.1.tgz",
"integrity": "sha512-+YR16o3rK53SmWHU3rEM3tPAh2rwb1yPcQX5irVn7mb0gXbwuCCrnkbV5+PBfETdfg1vui07nM6PCG1zndcjQw=="
},
"concat-map": {
"version": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
"integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==",
"dev": true
},
"concat-stream": {
"version": "1.6.1",
"resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.1.tgz",
"integrity": "sha512-gslSSJx03QKa59cIKqeJO9HQ/WZMotvYJCuaUULrLpjj8oG40kV2Z+gz82pVxlTkOADi4PJxQPPfhl1ELYrrXw==",
"requires": {
"inherits": "2.0.3",
"readable-stream": "2.3.5",
"typedarray": "0.0.6"
},
"dependencies": {
"core-util-is": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz",
"integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac="
},
"isarray": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
"integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE="
},
"process-nextick-args": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz",
"integrity": "sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw=="
},
"readable-stream": {
"version": "2.3.5",
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.5.tgz",