forked from howdyai/botkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package-lock.json
8363 lines (8363 loc) · 299 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.7.4",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"@babel/code-frame": {
"version": "7.0.0",
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.0.0.tgz",
"integrity": "sha512-OfC2uemaknXr87bdLUkWog7nYuliM9Ij5HUcajsVcMCpQrcLmtxRbVFTIqmcSkSeYRBFBRxs2FiUqFJDLdiebA==",
"dev": true,
"requires": {
"@babel/highlight": "^7.0.0"
}
},
"@babel/core": {
"version": "7.3.3",
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.3.3.tgz",
"integrity": "sha512-w445QGI2qd0E0GlSnq6huRZWPMmQGCp5gd5ZWS4hagn0EiwzxD5QMFkpchyusAyVC1n27OKXzQ0/88aVU9n4xQ==",
"dev": true,
"requires": {
"@babel/code-frame": "^7.0.0",
"@babel/generator": "^7.3.3",
"@babel/helpers": "^7.2.0",
"@babel/parser": "^7.3.3",
"@babel/template": "^7.2.2",
"@babel/traverse": "^7.2.2",
"@babel/types": "^7.3.3",
"convert-source-map": "^1.1.0",
"debug": "^4.1.0",
"json5": "^2.1.0",
"lodash": "^4.17.11",
"resolve": "^1.3.2",
"semver": "^5.4.1",
"source-map": "^0.5.0"
}
},
"@babel/generator": {
"version": "7.3.3",
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.3.3.tgz",
"integrity": "sha512-aEADYwRRZjJyMnKN7llGIlircxTCofm3dtV5pmY6ob18MSIuipHpA2yZWkPlycwu5HJcx/pADS3zssd8eY7/6A==",
"dev": true,
"requires": {
"@babel/types": "^7.3.3",
"jsesc": "^2.5.1",
"lodash": "^4.17.11",
"source-map": "^0.5.0",
"trim-right": "^1.0.1"
}
},
"@babel/helper-function-name": {
"version": "7.1.0",
"resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.1.0.tgz",
"integrity": "sha512-A95XEoCpb3TO+KZzJ4S/5uW5fNe26DjBGqf1o9ucyLyCmi1dXq/B3c8iaWTfBk3VvetUxl16e8tIrd5teOCfGw==",
"dev": true,
"requires": {
"@babel/helper-get-function-arity": "^7.0.0",
"@babel/template": "^7.1.0",
"@babel/types": "^7.0.0"
}
},
"@babel/helper-get-function-arity": {
"version": "7.0.0",
"resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0.tgz",
"integrity": "sha512-r2DbJeg4svYvt3HOS74U4eWKsUAMRH01Z1ds1zx8KNTPtpTL5JAsdFv8BNyOpVqdFhHkkRDIg5B4AsxmkjAlmQ==",
"dev": true,
"requires": {
"@babel/types": "^7.0.0"
}
},
"@babel/helper-plugin-utils": {
"version": "7.0.0",
"resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.0.0.tgz",
"integrity": "sha512-CYAOUCARwExnEixLdB6sDm2dIJ/YgEAKDM1MOeMeZu9Ld/bDgVo8aiWrXwcY7OBh+1Ea2uUcVRcxKk0GJvW7QA==",
"dev": true
},
"@babel/helper-split-export-declaration": {
"version": "7.0.0",
"resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.0.0.tgz",
"integrity": "sha512-MXkOJqva62dfC0w85mEf/LucPPS/1+04nmmRMPEBUB++hiiThQ2zPtX/mEWQ3mtzCEjIJvPY8nuwxXtQeQwUag==",
"dev": true,
"requires": {
"@babel/types": "^7.0.0"
}
},
"@babel/helpers": {
"version": "7.3.1",
"resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.3.1.tgz",
"integrity": "sha512-Q82R3jKsVpUV99mgX50gOPCWwco9Ec5Iln/8Vyu4osNIOQgSrd9RFrQeUvmvddFNoLwMyOUWU+5ckioEKpDoGA==",
"dev": true,
"requires": {
"@babel/template": "^7.1.2",
"@babel/traverse": "^7.1.5",
"@babel/types": "^7.3.0"
}
},
"@babel/highlight": {
"version": "7.0.0",
"resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.0.0.tgz",
"integrity": "sha512-UFMC4ZeFC48Tpvj7C8UgLvtkaUuovQX+5xNWrsIoMG8o2z+XFKjKaN9iVmS84dPwVN00W4wPmqvYoZF3EGAsfw==",
"dev": true,
"requires": {
"chalk": "^2.0.0",
"esutils": "^2.0.2",
"js-tokens": "^4.0.0"
},
"dependencies": {
"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==",
"dev": true,
"requires": {
"color-convert": "^1.9.0"
}
},
"chalk": {
"version": "2.4.1",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz",
"integrity": "sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==",
"dev": true,
"requires": {
"ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5",
"supports-color": "^5.3.0"
}
},
"js-tokens": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
"integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
"dev": true
},
"supports-color": {
"version": "5.5.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
"integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
"dev": true,
"requires": {
"has-flag": "^3.0.0"
}
}
}
},
"@babel/parser": {
"version": "7.3.3",
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.3.3.tgz",
"integrity": "sha512-xsH1CJoln2r74hR+y7cg2B5JCPaTh+Hd+EbBRk9nWGSNspuo6krjhX0Om6RnRQuIvFq8wVXCLKH3kwKDYhanSg==",
"dev": true
},
"@babel/plugin-syntax-object-rest-spread": {
"version": "7.2.0",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.2.0.tgz",
"integrity": "sha512-t0JKGgqk2We+9may3t0xDdmneaXmyxq0xieYcKHxIsrJO64n1OiMWNUtc5gQK1PA0NpdCRrtZp4z+IUaKugrSA==",
"dev": true,
"requires": {
"@babel/helper-plugin-utils": "^7.0.0"
}
},
"@babel/template": {
"version": "7.2.2",
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.2.2.tgz",
"integrity": "sha512-zRL0IMM02AUDwghf5LMSSDEz7sBCO2YnNmpg3uWTZj/v1rcG2BmQUvaGU8GhU8BvfMh1k2KIAYZ7Ji9KXPUg7g==",
"dev": true,
"requires": {
"@babel/code-frame": "^7.0.0",
"@babel/parser": "^7.2.2",
"@babel/types": "^7.2.2"
}
},
"@babel/traverse": {
"version": "7.2.3",
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.2.3.tgz",
"integrity": "sha512-Z31oUD/fJvEWVR0lNZtfgvVt512ForCTNKYcJBGbPb1QZfve4WGH8Wsy7+Mev33/45fhP/hwQtvgusNdcCMgSw==",
"dev": true,
"requires": {
"@babel/code-frame": "^7.0.0",
"@babel/generator": "^7.2.2",
"@babel/helper-function-name": "^7.1.0",
"@babel/helper-split-export-declaration": "^7.0.0",
"@babel/parser": "^7.2.3",
"@babel/types": "^7.2.2",
"debug": "^4.1.0",
"globals": "^11.1.0",
"lodash": "^4.17.10"
}
},
"@babel/types": {
"version": "7.3.3",
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.3.3.tgz",
"integrity": "sha512-2tACZ80Wg09UnPg5uGAOUvvInaqLk3l/IAhQzlxLQOIXacr6bMsra5SH6AWw/hIDRCSbCdHP2KzSOD+cT7TzMQ==",
"dev": true,
"requires": {
"esutils": "^2.0.2",
"lodash": "^4.17.11",
"to-fast-properties": "^2.0.0"
}
},
"@ciscospark/common": {
"version": "1.48.0",
"resolved": "https://registry.npmjs.org/@ciscospark/common/-/common-1.48.0.tgz",
"integrity": "sha512-rMMrK5NBrLEs1pumfZlLkoeM6WEDl/Ege8f40TixMWaHIh/bhGRj18g6c9RF3VR6KdnVqPT8BKPItLthRPzRsA==",
"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.48.0",
"resolved": "https://registry.npmjs.org/@ciscospark/common-evented/-/common-evented-1.48.0.tgz",
"integrity": "sha512-uzoFv6pjEOI1dKql02MmSWzaLXnW0wMMLjpc/TbzzoMt5XfoLUPBUSoL+KzbLjCinS59f2D1HemULk/xyj4wOw==",
"requires": {
"@ciscospark/common": "1.48.0",
"babel-runtime": "^6.23.0",
"envify": "^4.1.0"
}
},
"@ciscospark/common-timers": {
"version": "1.48.0",
"resolved": "https://registry.npmjs.org/@ciscospark/common-timers/-/common-timers-1.48.0.tgz",
"integrity": "sha512-85s3/xeAH162e9ljUBbLmuUtsYbiyfEt86qzFFZTSs90iR9hjkVTw2XDn66Bag9BsqfJ9KFkdhXtHpOmzemnmQ==",
"requires": {
"envify": "^4.1.0"
}
},
"@ciscospark/http-core": {
"version": "1.48.0",
"resolved": "https://registry.npmjs.org/@ciscospark/http-core/-/http-core-1.48.0.tgz",
"integrity": "sha512-mj9GBs1sG1KQP2Gv8+JjXy762KeXQLb0YuBZjzRFX4ffDx1uVnZLGHJvEGeBTCXHEWG6GXEO0VUe4x9x0/acoQ==",
"requires": {
"@ciscospark/common": "1.48.0",
"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.48.0",
"resolved": "https://registry.npmjs.org/@ciscospark/internal-plugin-feature/-/internal-plugin-feature-1.48.0.tgz",
"integrity": "sha512-sJp2W3HwSD9OGIdu5kb/Iur0/xSjvUSBuuOhSsizMKbODKDdF1KQLOxebc4j/xqsBBG8Wi/qcl5bfM50gcGf1A==",
"requires": {
"@ciscospark/internal-plugin-wdm": "1.48.0",
"@ciscospark/spark-core": "1.48.0",
"babel-runtime": "^6.23.0",
"envify": "^4.1.0",
"lodash": "^4.17.4"
}
},
"@ciscospark/internal-plugin-locus": {
"version": "1.48.0",
"resolved": "https://registry.npmjs.org/@ciscospark/internal-plugin-locus/-/internal-plugin-locus-1.48.0.tgz",
"integrity": "sha512-rXDQZixyBqGJK+c9COdY1s2Gr2MZa34hyCp4LwIPzB9Xx5BArQhP//y+TAKq6ZyBVqVko+B1m36CgIt7kXpfvw==",
"requires": {
"@ciscospark/internal-plugin-mercury": "1.48.0",
"@ciscospark/spark-core": "1.48.0",
"babel-runtime": "^6.23.0",
"envify": "^4.1.0",
"lodash": "^4.17.4",
"uuid": "^3.2.1"
}
},
"@ciscospark/internal-plugin-mercury": {
"version": "1.48.0",
"resolved": "https://registry.npmjs.org/@ciscospark/internal-plugin-mercury/-/internal-plugin-mercury-1.48.0.tgz",
"integrity": "sha512-+Er9XT3ad9AADyth0KZARg0RFACJhMGv2DoSSWbjfmaqFD77LBrt0+B4jKwy4f8ORiqN/V++CWNn0lz2Y3/rrA==",
"requires": {
"@ciscospark/common": "1.48.0",
"@ciscospark/common-timers": "1.48.0",
"@ciscospark/internal-plugin-feature": "1.48.0",
"@ciscospark/internal-plugin-metrics": "1.48.0",
"@ciscospark/internal-plugin-wdm": "1.48.0",
"@ciscospark/spark-core": "1.48.0",
"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.48.0",
"resolved": "https://registry.npmjs.org/@ciscospark/internal-plugin-metrics/-/internal-plugin-metrics-1.48.0.tgz",
"integrity": "sha512-t74iRz7o8Jc4j3oMRYoHImZO6UVHUNuNKB63sKICA82AUEatBEbAoEdwV81ZxLbY0KWQ/E2gmlD2rqcOSpv47A==",
"requires": {
"@ciscospark/common": "1.48.0",
"@ciscospark/common-timers": "1.48.0",
"@ciscospark/internal-plugin-wdm": "1.48.0",
"@ciscospark/spark-core": "1.48.0",
"babel-runtime": "^6.23.0",
"envify": "^4.1.0"
}
},
"@ciscospark/internal-plugin-wdm": {
"version": "1.48.0",
"resolved": "https://registry.npmjs.org/@ciscospark/internal-plugin-wdm/-/internal-plugin-wdm-1.48.0.tgz",
"integrity": "sha512-n690dYFTy2SuRFRtJo6oEoynO5FhmJ0AwiMs+M1KYyptg+/ZDNy63NKA/FWgAxyFolfizQBzVwpTS+LLPqSbMA==",
"requires": {
"@ciscospark/common": "1.48.0",
"@ciscospark/common-timers": "1.48.0",
"@ciscospark/http-core": "1.48.0",
"@ciscospark/spark-core": "1.48.0",
"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.48.0",
"resolved": "https://registry.npmjs.org/@ciscospark/media-engine-webrtc/-/media-engine-webrtc-1.48.0.tgz",
"integrity": "sha512-MQYTRvinzcxpiNeGYSWPqqduZpMNgkB2+HKdifovm/cPT1NM2cbFvn7EAo4NawCwU66L6O5kBx+22nh7lz+GNQ==",
"requires": {
"@ciscospark/common": "1.48.0",
"@ciscospark/common-evented": "1.48.0",
"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.48.0",
"resolved": "https://registry.npmjs.org/@ciscospark/plugin-authorization/-/plugin-authorization-1.48.0.tgz",
"integrity": "sha512-22z1pTjSVkm+2oN60auyNz61beFtXS2O9htydI7JwQ6xV5exKPvlVX/zd95njfgbW0OoVekc3iDipIQxXp7biQ==",
"requires": {
"@ciscospark/plugin-authorization-browser": "1.48.0",
"@ciscospark/plugin-authorization-node": "1.48.0",
"envify": "^4.1.0"
}
},
"@ciscospark/plugin-authorization-browser": {
"version": "1.48.0",
"resolved": "https://registry.npmjs.org/@ciscospark/plugin-authorization-browser/-/plugin-authorization-browser-1.48.0.tgz",
"integrity": "sha512-Z/2LGr0FmOBI7Q7uWMgLUSTTKf2SVML94EGhsYAvHtWWxtHsqajJVIz8kNqIWZFDrk4IaVABNYxaN5dAbl1irg==",
"requires": {
"@ciscospark/common": "1.48.0",
"@ciscospark/internal-plugin-wdm": "1.48.0",
"@ciscospark/spark-core": "1.48.0",
"babel-runtime": "^6.23.0",
"envify": "^4.1.0",
"lodash": "^4.17.4",
"uuid": "^3.2.1"
}
},
"@ciscospark/plugin-authorization-node": {
"version": "1.48.0",
"resolved": "https://registry.npmjs.org/@ciscospark/plugin-authorization-node/-/plugin-authorization-node-1.48.0.tgz",
"integrity": "sha512-OwI1l8++xp+AQ0/N6mVMRXIKA/+pq0EQ8zbrscUX5pVVhrcy1hCHj4HmG0oqiewm5gLkw8Y/E0/kzjFsCINqbQ==",
"requires": {
"@ciscospark/common": "1.48.0",
"@ciscospark/internal-plugin-wdm": "1.48.0",
"@ciscospark/spark-core": "1.48.0",
"babel-runtime": "^6.23.0",
"envify": "^4.1.0"
}
},
"@ciscospark/plugin-logger": {
"version": "1.48.0",
"resolved": "https://registry.npmjs.org/@ciscospark/plugin-logger/-/plugin-logger-1.48.0.tgz",
"integrity": "sha512-BxNeB+L26n2UisLCBhqhNUp5LDFDVaowcopOWpPsb9RXJ+ReVOJeQki8Se4nYECyANn0wTex028bRTz4wr4PcQ==",
"requires": {
"@ciscospark/common": "1.48.0",
"@ciscospark/spark-core": "1.48.0",
"babel-runtime": "^6.23.0",
"envify": "^4.1.0",
"lodash": "^4.17.4"
}
},
"@ciscospark/plugin-memberships": {
"version": "1.48.0",
"resolved": "https://registry.npmjs.org/@ciscospark/plugin-memberships/-/plugin-memberships-1.48.0.tgz",
"integrity": "sha512-B8zc144pkH84ux5bmuv9GgOr4JDJMZg4iLaZLmZGyGnMGBFquoYKRlQqwjmdTj86ZKRnihJWclTE8PPwsE0Smg==",
"requires": {
"@ciscospark/spark-core": "1.48.0",
"envify": "^4.1.0"
}
},
"@ciscospark/plugin-messages": {
"version": "1.48.0",
"resolved": "https://registry.npmjs.org/@ciscospark/plugin-messages/-/plugin-messages-1.48.0.tgz",
"integrity": "sha512-POC0ourLStNbqSy3s2jb+1kRMTQWTcKDTXLPbed9ZV5S7WV77cNP0xjMKxRhW3eBkNyzf7TEH1cHrO9R8emahA==",
"requires": {
"@ciscospark/spark-core": "1.48.0",
"babel-runtime": "^6.23.0",
"envify": "^4.1.0",
"lodash": "^4.17.4"
}
},
"@ciscospark/plugin-people": {
"version": "1.48.0",
"resolved": "https://registry.npmjs.org/@ciscospark/plugin-people/-/plugin-people-1.48.0.tgz",
"integrity": "sha512-S8ezmGKCnbclTnwI4lPmThuML7MruvGSeQxpgN8KIbv58zu3eaHaJy0mxg8EMctQDhYC90uXyjTXybmdFkKlgA==",
"requires": {
"@ciscospark/common": "1.48.0",
"@ciscospark/spark-core": "1.48.0",
"babel-runtime": "^6.23.0",
"envify": "^4.1.0"
}
},
"@ciscospark/plugin-phone": {
"version": "1.48.0",
"resolved": "https://registry.npmjs.org/@ciscospark/plugin-phone/-/plugin-phone-1.48.0.tgz",
"integrity": "sha512-Aa4WIBt9boW7fYpeAHW20jCr6T7UTD9+A9Mi4RlC0qWkioicGaFmozwwWJD4DlKg0HH21EF505BmPcWD7Arb8A==",
"requires": {
"@ciscospark/common": "1.48.0",
"@ciscospark/common-timers": "1.48.0",
"@ciscospark/internal-plugin-locus": "1.48.0",
"@ciscospark/internal-plugin-metrics": "1.48.0",
"@ciscospark/media-engine-webrtc": "1.48.0",
"@ciscospark/plugin-people": "1.48.0",
"@ciscospark/spark-core": "1.48.0",
"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.48.0",
"resolved": "https://registry.npmjs.org/@ciscospark/plugin-rooms/-/plugin-rooms-1.48.0.tgz",
"integrity": "sha512-oMQSnXmO6ETzkWsayeW/rLRaSYZMEfF+8A0/dFQfaseLojCvYdKGEmmn3/cfUS3++kI689S2Xj/XKkyaxoQ4cA==",
"requires": {
"@ciscospark/spark-core": "1.48.0",
"envify": "^4.1.0"
}
},
"@ciscospark/plugin-team-memberships": {
"version": "1.48.0",
"resolved": "https://registry.npmjs.org/@ciscospark/plugin-team-memberships/-/plugin-team-memberships-1.48.0.tgz",
"integrity": "sha512-Mj+BWU3WdLW12RsnTQr0mmfLN9nSkr/DA4Jqc5eNHp9jEfxUm7FK+aGnCii3af9EohfFgYBo58OuvXg1bQ0T1A==",
"requires": {
"@ciscospark/spark-core": "1.48.0",
"envify": "^4.1.0"
}
},
"@ciscospark/plugin-teams": {
"version": "1.48.0",
"resolved": "https://registry.npmjs.org/@ciscospark/plugin-teams/-/plugin-teams-1.48.0.tgz",
"integrity": "sha512-urkhB5wYrQwx1RpjIw5IdVSKwLPr/hXdbIPxBDQBG2oX+Sva3ieoqyUZa6RjrGzMltfWdVupxd7kYg1MJzU39g==",
"requires": {
"@ciscospark/spark-core": "1.48.0",
"envify": "^4.1.0"
}
},
"@ciscospark/plugin-webhooks": {
"version": "1.48.0",
"resolved": "https://registry.npmjs.org/@ciscospark/plugin-webhooks/-/plugin-webhooks-1.48.0.tgz",
"integrity": "sha512-WagXPaVbZmxYpg1NFAVAxUSXVwOnhQ0R959aRP1X7w0TB+ZF9vdi2klvJxTnSAu9R9ZHHTYziwDHHz2SCq7vQA==",
"requires": {
"@ciscospark/spark-core": "1.48.0",
"envify": "^4.1.0"
}
},
"@ciscospark/spark-core": {
"version": "1.48.0",
"resolved": "https://registry.npmjs.org/@ciscospark/spark-core/-/spark-core-1.48.0.tgz",
"integrity": "sha512-zgiSAxbxUpEUO7AUvArt5aMULgN+bh2JAlZZXYbju4fn98vkTWVaCBoVBwz6vJY9dVmYs/PyvH4d8EtSKA7/hw==",
"requires": {
"@ciscospark/common": "1.48.0",
"@ciscospark/common-timers": "1.48.0",
"@ciscospark/http-core": "1.48.0",
"@ciscospark/spark-core": "1.48.0",
"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.48.0",
"resolved": "https://registry.npmjs.org/@ciscospark/storage-adapter-local-storage/-/storage-adapter-local-storage-1.48.0.tgz",
"integrity": "sha512-b49095hP+c/vgaNo6UtWQcKequLcmmNUpr81acNSjaRsZWp1cku/qXdH5iyJ9dqhvapykZ30UFYdswTxKM8Gig==",
"requires": {
"@ciscospark/spark-core": "1.48.0",
"babel-runtime": "^6.23.0",
"envify": "^4.1.0"
}
},
"@types/async": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@types/async/-/async-2.4.0.tgz",
"integrity": "sha512-1/6EglKPJZjkj2KWSFrvbOeqDZTb+KEiU293MUwc/z3/g4a+jOPADHfcOzt/EbY0uEEr+dkUWTYQfVDzzOrMaw=="
},
"@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/events": {
"version": "1.2.0",
"resolved": "http://registry.npmjs.org/@types/events/-/events-1.2.0.tgz",
"integrity": "sha512-KEIlhXnIutzKwRbQkGWb/I4HFqBuUykAdHgDED6xqwXJfONCjF5VoE0cXEiurh3XauygxzeDzgtXUqvLkxFzzA=="
},
"@types/express": {
"version": "4.16.0",
"resolved": "https://registry.npmjs.org/@types/express/-/express-4.16.0.tgz",
"integrity": "sha512-TtPEYumsmSTtTetAPXlJVf3kEqb6wZK0bZojpJQrnD/djV4q1oB6QQ8aKvKqwNPACoe02GNiy5zDzcYivR5Z2w==",
"requires": {
"@types/body-parser": "*",
"@types/express-serve-static-core": "*",
"@types/serve-static": "*"
}
},
"@types/express-serve-static-core": {
"version": "4.16.0",
"resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.16.0.tgz",
"integrity": "sha512-lTeoCu5NxJU4OD9moCgm0ESZzweAx0YqsAcab6OB0EB3+As1OaHtKnaGJvcngQxYsi9UNv0abn4/DRavrRxt4w==",
"requires": {
"@types/events": "*",
"@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.0",
"resolved": "https://registry.npmjs.org/@types/mime/-/mime-2.0.0.tgz",
"integrity": "sha512-A2TAGbTFdBw9azHbpVd+/FkdW2T6msN1uct1O9bH3vTerEHKZhTXJUQXy+hNq1B0RagfU8U+KBdqiZpxjhOUQA=="
},
"@types/node": {
"version": "9.6.35",
"resolved": "https://registry.npmjs.org/@types/node/-/node-9.6.35.tgz",
"integrity": "sha512-h5zvHS8wXHGa+Gcqs9K8vqCgOtqjr0+NqG/DDJmQIX1wpR9HivAfgV8bjcD3mGM4bPfQw5Aneb2Pn8355L83jA=="
},
"@types/range-parser": {
"version": "1.2.2",
"resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.2.tgz",
"integrity": "sha512-HtKGu+qG1NPvYe1z7ezLsyIaXYyi8SoAVqWDZgDQ8dLrsZvSzUNCwZyfX33uhWxL/SU0ZDQZ3nwZ0nimt507Kw=="
},
"@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.1",
"resolved": "https://registry.npmjs.org/@types/sprintf-js/-/sprintf-js-1.1.1.tgz",
"integrity": "sha512-h8jF5yPUoHH1QUIDfHgqFs7Y0UykKB5CJ1Z32PHGmHRLmW0pI+kYKAEnXVqeUZ3ygFmDkyvhD4vUZN+RZyTd1w=="
},
"@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"
}
},
"abab": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/abab/-/abab-2.0.0.tgz",
"integrity": "sha512-sY5AXXVZv4Y1VACTtR11UJCPHHudgY5i26Qj5TypE6DKlIApbwb5uqhXcJ5UUGbvZNRh7EeIoW+LrJumBsKp7w==",
"dev": true
},
"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"
}
},
"acorn": {
"version": "5.7.3",
"resolved": "https://registry.npmjs.org/acorn/-/acorn-5.7.3.tgz",
"integrity": "sha512-T/zvzYRfbVojPWahDsE5evJdHb3oJoQfFbsrKM7w5Zcs++Tr257tia3BmMP8XYVjp1S9RZXQMh7gao96BlqZOw==",
"dev": true
},
"acorn-globals": {
"version": "4.3.0",
"resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-4.3.0.tgz",
"integrity": "sha512-hMtHj3s5RnuhvHPowpBYvJVj3rAar82JiDQHvGs1zO0l10ocX/xEdBShNHTJaboucJUsScghp74pH3s7EnHHQw==",
"dev": true,
"requires": {
"acorn": "^6.0.1",
"acorn-walk": "^6.0.1"
},
"dependencies": {
"acorn": {
"version": "6.1.0",
"resolved": "https://registry.npmjs.org/acorn/-/acorn-6.1.0.tgz",
"integrity": "sha512-MW/FjM+IvU9CgBzjO3UIPCE2pyEwUsoFl+VGdczOPEdxfGFjuKny/gN54mOuX7Qxmb9Rg9MCn2oKiSUeW+pjrw==",
"dev": true
}
}
},
"acorn-jsx": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.0.1.tgz",
"integrity": "sha512-HJ7CfNHrfJLlNTzIEUTj43LNWGkqpRLxm3YjAlcD0ACydk9XynzYsCBHxut+iqt+1aBXkx9UP/w/ZqMr13XIzg==",
"dev": true
},
"acorn-walk": {
"version": "6.1.1",
"resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-6.1.1.tgz",
"integrity": "sha512-OtUw6JUTgxA2QoqqmrmQ7F2NYqiBPi/L2jqHyFtllhOUvXYQXf0Z1CYUinIfyT4bTCGmrA7gX9FvHA81uzCoVw==",
"dev": true
},
"agent-base": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/agent-base/-/agent-base-4.2.0.tgz",
"integrity": "sha1-mDi1wzkrliutAx5qTF4QJKvsRc4=",
"requires": {
"es6-promisify": "^5.0.0"
}
},
"ajv": {
"version": "5.5.2",
"resolved": "https://registry.npmjs.org/ajv/-/ajv-5.5.2.tgz",
"integrity": "sha1-c7Xuyj+rZT49P5Qis0GtQiBdyWU=",
"requires": {
"co": "^4.6.0",
"fast-deep-equal": "^1.0.0",
"fast-json-stable-stringify": "^2.0.0",
"json-schema-traverse": "^0.3.0"
}
},
"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-escapes": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz",
"integrity": "sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==",
"dev": true
},
"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"
}
},
"anymatch": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz",
"integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==",
"dev": true,
"requires": {
"micromatch": "^3.1.4",
"normalize-path": "^2.1.1"
}
},
"append-transform": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/append-transform/-/append-transform-1.0.0.tgz",
"integrity": "sha512-P009oYkeHyU742iSZJzZZywj4QRJdnTWffaKuJQLablCZ1uz6/cW4yaRgcDaoQ+uwOxxnt0gRUcwfsNP2ri0gw==",
"dev": true,
"requires": {
"default-require-extensions": "^2.0.0"
}
},
"argparse": {
"version": "1.0.10",
"resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
"integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
"dev": true,
"requires": {
"sprintf-js": "~1.0.2"
},
"dependencies": {
"sprintf-js": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz",
"integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=",
"dev": true
}
}
},
"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"
}
},
"arr-diff": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz",
"integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=",
"dev": true
},
"arr-flatten": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz",
"integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==",
"dev": true
},
"arr-union": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz",
"integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=",
"dev": true
},
"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-equal": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/array-equal/-/array-equal-1.0.0.tgz",
"integrity": "sha1-jCpe8kcv2ep0KwTHenUJO6J1fJM=",
"dev": true
},
"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-unique": {
"version": "0.3.2",
"resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz",
"integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=",
"dev": true
},
"arrify": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz",
"integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=",
"dev": true
},
"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.3",
"resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.3.tgz",
"integrity": "sha1-2sh4dxPJlmhJ/IGAd36+nB3fO4Y="
},
"assert-plus": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz",
"integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU="
},
"assertion-error": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz",
"integrity": "sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==",
"dev": true
},
"assign-symbols": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz",
"integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=",
"dev": true
},
"astral-regex": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz",
"integrity": "sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==",
"dev": true
},
"async": {
"version": "2.6.1",
"resolved": "https://registry.npmjs.org/async/-/async-2.6.1.tgz",
"integrity": "sha512-fNEiL2+AZt6AlAw/29Cr0UDe4sRAHCpEHh54WMz+Bb7QfNcFw4h3loofyJpLeQs4Yx7yuqu/2dLgM5hKOs6HlQ==",
"requires": {
"lodash": "^4.17.10"
}
},
"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="
},
"atob": {
"version": "2.1.2",
"resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz",
"integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==",
"dev": true
},
"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.17.1",
"resolved": "https://registry.npmjs.org/axios/-/axios-0.17.1.tgz",
"integrity": "sha1-LY4+XQvb1zJ/kbyBT1xXZg+Bgk0=",
"requires": {
"follow-redirects": "^1.2.5",
"is-buffer": "^1.1.5"
}
},
"babel-jest": {
"version": "24.1.0",
"resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-24.1.0.tgz",
"integrity": "sha512-MLcagnVrO9ybQGLEfZUqnOzv36iQzU7Bj4elm39vCukumLVSfoX+tRy3/jW7lUKc7XdpRmB/jech6L/UCsSZjw==",
"dev": true,
"requires": {
"babel-plugin-istanbul": "^5.1.0",
"babel-preset-jest": "^24.1.0",
"chalk": "^2.4.2",
"slash": "^2.0.0"
},
"dependencies": {
"chalk": {
"version": "2.4.2",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
"integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
"dev": true,
"requires": {
"ansi-styles": "^3.2.1",