-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage-lock.json
4713 lines (4713 loc) · 177 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": "tacoBot",
"version": "0.0.1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"@ciscospark/common": {
"version": "1.49.0",
"resolved": "https://registry.npmjs.org/@ciscospark/common/-/common-1.49.0.tgz",
"integrity": "sha512-Z4SI2qUiU9WUCpz9g3RrCkgzEwi58sRXH4ptd9Sz48xdGqDxPEf6dNWomTxMuz+8LvXkGFqwkinl7mm9Zzx3Dg==",
"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.0",
"resolved": "https://registry.npmjs.org/@ciscospark/common-evented/-/common-evented-1.49.0.tgz",
"integrity": "sha512-6C9vXvJi7mZVtylpBeqZXD739kyqhuFR1iIxk6zvSF0hE687IfWfyezE4rJ2813CE6g8u7Ygh5Rrb750aErcNg==",
"requires": {
"@ciscospark/common": "1.49.0",
"babel-runtime": "^6.23.0",
"envify": "^4.1.0"
}
},
"@ciscospark/common-timers": {
"version": "1.49.0",
"resolved": "https://registry.npmjs.org/@ciscospark/common-timers/-/common-timers-1.49.0.tgz",
"integrity": "sha512-7yVW3OcvmOAPXFBmE003nwiP5Wd3z2tcoHL/zwH12HQkekc8Y4SsRhc0KKO031m+ZkVbsoOy8hbotpOhq/Ca4Q==",
"requires": {
"envify": "^4.1.0"
}
},
"@ciscospark/http-core": {
"version": "1.49.0",
"resolved": "https://registry.npmjs.org/@ciscospark/http-core/-/http-core-1.49.0.tgz",
"integrity": "sha512-4QgXO/Bk4tgVt2NJgW/WLO01s5CK86Mx9c0SrAJ8y2wa7ifmSErafrwlhuPn3EqAUE6Y5VZIcQQlO6PYew0TRQ==",
"requires": {
"@ciscospark/common": "1.49.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.49.0",
"resolved": "https://registry.npmjs.org/@ciscospark/internal-plugin-feature/-/internal-plugin-feature-1.49.0.tgz",
"integrity": "sha512-Hrpn5HUunWYqtCNSjan1kjdooX8UQbP/ICCRvOM3D+4vRn9svLJQVFcnTDLptREg0nNvuLNHF+Xut9YGRgA9pg==",
"requires": {
"@ciscospark/internal-plugin-wdm": "1.49.0",
"@ciscospark/spark-core": "1.49.0",
"babel-runtime": "^6.23.0",
"envify": "^4.1.0",
"lodash": "^4.17.4"
}
},
"@ciscospark/internal-plugin-locus": {
"version": "1.49.0",
"resolved": "https://registry.npmjs.org/@ciscospark/internal-plugin-locus/-/internal-plugin-locus-1.49.0.tgz",
"integrity": "sha512-CqbCnsKMhk1R/WxuY6G7ty/cFG9iSnML4q+UTSHVZWf1Qf2B8ibZE6no8BMVzeg9nwuwHpIM7xn4tjngxk2w+g==",
"requires": {
"@ciscospark/internal-plugin-mercury": "1.49.0",
"@ciscospark/spark-core": "1.49.0",
"babel-runtime": "^6.23.0",
"envify": "^4.1.0",
"lodash": "^4.17.4",
"uuid": "^3.2.1"
}
},
"@ciscospark/internal-plugin-mercury": {
"version": "1.49.0",
"resolved": "https://registry.npmjs.org/@ciscospark/internal-plugin-mercury/-/internal-plugin-mercury-1.49.0.tgz",
"integrity": "sha512-Tg+1ePomEFsfVa8cMqHfYEWQsRwK7OMiY+xecnNl7rD975cq4R+c2E+JBtWUpHQ1XeM6Lf2pq8vOeU1pjJ64eg==",
"requires": {
"@ciscospark/common": "1.49.0",
"@ciscospark/common-timers": "1.49.0",
"@ciscospark/internal-plugin-feature": "1.49.0",
"@ciscospark/internal-plugin-metrics": "1.49.0",
"@ciscospark/internal-plugin-wdm": "1.49.0",
"@ciscospark/spark-core": "1.49.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": {
"safe-buffer": {
"version": "5.1.2",
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
"integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="
},
"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.0",
"resolved": "https://registry.npmjs.org/@ciscospark/internal-plugin-metrics/-/internal-plugin-metrics-1.49.0.tgz",
"integrity": "sha512-WhBCPn0JoAlLobxPFaRH1R+tanvURjcFzlyGt8K3l+nYihKNAm3QtzQD8W9Dzp0s2vXcMdI6ObuNyHpOCPnGOw==",
"requires": {
"@ciscospark/common": "1.49.0",
"@ciscospark/common-timers": "1.49.0",
"@ciscospark/internal-plugin-wdm": "1.49.0",
"@ciscospark/spark-core": "1.49.0",
"babel-runtime": "^6.23.0",
"envify": "^4.1.0"
}
},
"@ciscospark/internal-plugin-wdm": {
"version": "1.49.0",
"resolved": "https://registry.npmjs.org/@ciscospark/internal-plugin-wdm/-/internal-plugin-wdm-1.49.0.tgz",
"integrity": "sha512-6bcc6iRYkztaGHU+cpdXKRlC2ssmY5A/xXIFhSa2Qs9cZyjmrx+EQ4slXGoOUU/eBW4xv82YZeC5QmZ7oLHM/g==",
"requires": {
"@ciscospark/common": "1.49.0",
"@ciscospark/common-timers": "1.49.0",
"@ciscospark/http-core": "1.49.0",
"@ciscospark/spark-core": "1.49.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.49.0",
"resolved": "https://registry.npmjs.org/@ciscospark/media-engine-webrtc/-/media-engine-webrtc-1.49.0.tgz",
"integrity": "sha512-r77+fgyU2aHdSCD2FYm44eFrclXJ+VwPy6E3OC2h+wAhkitQy3qabhsCNiBDlgc6RKOR6Xzmdz6ZLGzIgdt3bg==",
"requires": {
"@ciscospark/common": "1.49.0",
"@ciscospark/common-evented": "1.49.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.49.0",
"resolved": "https://registry.npmjs.org/@ciscospark/plugin-authorization/-/plugin-authorization-1.49.0.tgz",
"integrity": "sha512-zrffE5lJkLgEgYS8VV9nECDVAWXvTLgd79SBjKYAhUnHckoQgpSxaYzyKdxAkx3Wfy8+7ZaBQ+sA3ay+p+Lbiw==",
"requires": {
"@ciscospark/plugin-authorization-browser": "1.49.0",
"@ciscospark/plugin-authorization-node": "1.49.0",
"envify": "^4.1.0"
}
},
"@ciscospark/plugin-authorization-browser": {
"version": "1.49.0",
"resolved": "https://registry.npmjs.org/@ciscospark/plugin-authorization-browser/-/plugin-authorization-browser-1.49.0.tgz",
"integrity": "sha512-xw/md97FlK99Cq+MNT6BL2PK9AAjzIcSEW0BgvOjvAt+CRzkttVhq6S3aFyGWL8/mHZ0IE/SfCKnfCxZMdSyFA==",
"requires": {
"@ciscospark/common": "1.49.0",
"@ciscospark/internal-plugin-wdm": "1.49.0",
"@ciscospark/spark-core": "1.49.0",
"babel-runtime": "^6.23.0",
"envify": "^4.1.0",
"lodash": "^4.17.4",
"uuid": "^3.2.1"
}
},
"@ciscospark/plugin-authorization-node": {
"version": "1.49.0",
"resolved": "https://registry.npmjs.org/@ciscospark/plugin-authorization-node/-/plugin-authorization-node-1.49.0.tgz",
"integrity": "sha512-4lF2SrPY4TgYSS0+eCtiNPk2tvCEqBMhiUzEqy4dCED8cQLlnQV8Xf274NHcl4F4A++FynOn1QrLVg4reHxXsQ==",
"requires": {
"@ciscospark/common": "1.49.0",
"@ciscospark/internal-plugin-wdm": "1.49.0",
"@ciscospark/spark-core": "1.49.0",
"babel-runtime": "^6.23.0",
"envify": "^4.1.0"
}
},
"@ciscospark/plugin-logger": {
"version": "1.49.0",
"resolved": "https://registry.npmjs.org/@ciscospark/plugin-logger/-/plugin-logger-1.49.0.tgz",
"integrity": "sha512-3DPRNZVQwuBw4PlVOrgALIWP8wvwXL6vsbs2ifosELuiqXSQMa66WSQ0/4Q+UgG+gy0zKPQ3oJGfUFp902+GUQ==",
"requires": {
"@ciscospark/common": "1.49.0",
"@ciscospark/spark-core": "1.49.0",
"babel-runtime": "^6.23.0",
"envify": "^4.1.0",
"lodash": "^4.17.4"
}
},
"@ciscospark/plugin-memberships": {
"version": "1.49.0",
"resolved": "https://registry.npmjs.org/@ciscospark/plugin-memberships/-/plugin-memberships-1.49.0.tgz",
"integrity": "sha512-1Ny15zLFGvLo4Ffiv4Q82sto9Zy4FnRKnp50Co3vnnlUjonNZnfz1oAZwwOnUlgvGzb/8GAr9wNscl9TAkNDhg==",
"requires": {
"@ciscospark/spark-core": "1.49.0",
"envify": "^4.1.0"
}
},
"@ciscospark/plugin-messages": {
"version": "1.49.0",
"resolved": "https://registry.npmjs.org/@ciscospark/plugin-messages/-/plugin-messages-1.49.0.tgz",
"integrity": "sha512-qM/JIBXbzBw7EKkzYMAshPmroxGEsbZoBeLDKNE/nJRgd+2IdrxKGSKcrshPn3g5LTteV36PeoO5X8eno8rHyw==",
"requires": {
"@ciscospark/spark-core": "1.49.0",
"babel-runtime": "^6.23.0",
"envify": "^4.1.0",
"lodash": "^4.17.4"
}
},
"@ciscospark/plugin-people": {
"version": "1.49.0",
"resolved": "https://registry.npmjs.org/@ciscospark/plugin-people/-/plugin-people-1.49.0.tgz",
"integrity": "sha512-dJBlSip7DJsMH9dMYI3pZf1YehO+6/yYl9qOaAlcJhZCnnU71UqAeJAFOQ65FRVyZYwRGIw6W08W3lcGQLsx/Q==",
"requires": {
"@ciscospark/common": "1.49.0",
"@ciscospark/spark-core": "1.49.0",
"babel-runtime": "^6.23.0",
"envify": "^4.1.0"
}
},
"@ciscospark/plugin-phone": {
"version": "1.49.0",
"resolved": "https://registry.npmjs.org/@ciscospark/plugin-phone/-/plugin-phone-1.49.0.tgz",
"integrity": "sha512-E70CveC4tA7aCoo6Dn7iWVTYwfqW7UsPCRQ1KKKIJ1XsDTtsaNUws8GQ0mgMlUJv46J9ppC3lBfYu0mf70hjBg==",
"requires": {
"@ciscospark/common": "1.49.0",
"@ciscospark/common-timers": "1.49.0",
"@ciscospark/internal-plugin-locus": "1.49.0",
"@ciscospark/internal-plugin-metrics": "1.49.0",
"@ciscospark/media-engine-webrtc": "1.49.0",
"@ciscospark/plugin-people": "1.49.0",
"@ciscospark/spark-core": "1.49.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.49.0",
"resolved": "https://registry.npmjs.org/@ciscospark/plugin-rooms/-/plugin-rooms-1.49.0.tgz",
"integrity": "sha512-H2Y+irRo9Qm/En+0W2zFLTZupFdrcWmMjfEipFwv37+VF1ppLepYlZWADfmNcX/XWMzuOMJ/3iaZOlKTx4fNrA==",
"requires": {
"@ciscospark/spark-core": "1.49.0",
"envify": "^4.1.0"
}
},
"@ciscospark/plugin-team-memberships": {
"version": "1.49.0",
"resolved": "https://registry.npmjs.org/@ciscospark/plugin-team-memberships/-/plugin-team-memberships-1.49.0.tgz",
"integrity": "sha512-18sR86JrJT3ejGG+gAxacIoFXKrv0weVwSVbWl9RsqR7iU0zXbcQegCYNAuNV+OwQaZUAmPlmMN13P4G4SUARA==",
"requires": {
"@ciscospark/spark-core": "1.49.0",
"envify": "^4.1.0"
}
},
"@ciscospark/plugin-teams": {
"version": "1.49.0",
"resolved": "https://registry.npmjs.org/@ciscospark/plugin-teams/-/plugin-teams-1.49.0.tgz",
"integrity": "sha512-nHTGEa12MWvUTht++F00xJTwJKX12OgMaKYOfcJjJN8qiWEbo+ikbaLItyuUH2U9YKrjsioNchAs0jkya5GiTQ==",
"requires": {
"@ciscospark/spark-core": "1.49.0",
"envify": "^4.1.0"
}
},
"@ciscospark/plugin-webhooks": {
"version": "1.49.0",
"resolved": "https://registry.npmjs.org/@ciscospark/plugin-webhooks/-/plugin-webhooks-1.49.0.tgz",
"integrity": "sha512-Q0HhweZNzr/5sV+hm4P4hilWF9VjqdqrGVjFqOhpzaWogr+fRhXKsb2OJKKulPvJyn8ig0Wse150A04yGSEuEg==",
"requires": {
"@ciscospark/spark-core": "1.49.0",
"envify": "^4.1.0"
}
},
"@ciscospark/spark-core": {
"version": "1.49.0",
"resolved": "https://registry.npmjs.org/@ciscospark/spark-core/-/spark-core-1.49.0.tgz",
"integrity": "sha512-R0ZFljKtJ82F+fjv+rsikla9KY3i9pJnIvS/Z6tO/GQZd/r0VP+T/U+QzWixp4MeZBzIrzKJfTkKpRea/b1NEg==",
"requires": {
"@ciscospark/common": "1.49.0",
"@ciscospark/common-timers": "1.49.0",
"@ciscospark/http-core": "1.49.0",
"@ciscospark/spark-core": "1.49.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.49.0",
"resolved": "https://registry.npmjs.org/@ciscospark/storage-adapter-local-storage/-/storage-adapter-local-storage-1.49.0.tgz",
"integrity": "sha512-c3VthhnIIMlF6SZ+Xp4FN+xVSaPPcZvRiAaCLDLFMY3fjVGkKt2AeQ6TJF2kydM8wbBcM5b+7IdOdkDSqMLEnQ==",
"requires": {
"@ciscospark/spark-core": "1.49.0",
"babel-runtime": "^6.23.0",
"envify": "^4.1.0"
}
},
"@types/async": {
"version": "2.4.2",
"resolved": "https://registry.npmjs.org/@types/async/-/async-2.4.2.tgz",
"integrity": "sha512-bWBbC7VG2jdjbgZMX0qpds8U/3h3anfIqE81L8jmVrgFZw/urEDnBA78ymGGKTTK6ciBXmmJ/xlok+Re41S8ww=="
},
"@types/body-parser": {
"version": "1.19.0",
"resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.0.tgz",
"integrity": "sha512-W98JrE0j2K78swW4ukqMleo8R7h/pFETjM2DQ90MF6XK2i4LO4W3gQ71Lt4w3bfm2EvVSyWHplECvB5sK22yFQ==",
"requires": {
"@types/connect": "*",
"@types/node": "*"
}
},
"@types/caseless": {
"version": "0.12.2",
"resolved": "https://registry.npmjs.org/@types/caseless/-/caseless-0.12.2.tgz",
"integrity": "sha512-6ckxMjBBD8URvjB6J3NcnuAn5Pkl7t3TizAg+xdlzzQGSPSmBcXf8KoIH0ua/i+tio+ZRUHEXp0HEmvaR4kt0w=="
},
"@types/connect": {
"version": "3.4.34",
"resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.34.tgz",
"integrity": "sha512-ePPA/JuI+X0vb+gSWlPKOY0NdNAie/rPUqX2GUPpbZwiKTkSPhjXWuee47E4MtE54QVzGCQMQkAL6JhV2E1+cQ==",
"requires": {
"@types/node": "*"
}
},
"@types/express": {
"version": "4.17.11",
"resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.11.tgz",
"integrity": "sha512-no+R6rW60JEc59977wIxreQVsIEOAYwgCqldrA/vkpCnbD7MqTefO97lmoBe4WE0F156bC4uLSP1XHDOySnChg==",
"requires": {
"@types/body-parser": "*",
"@types/express-serve-static-core": "^4.17.18",
"@types/qs": "*",
"@types/serve-static": "*"
}
},
"@types/express-serve-static-core": {
"version": "4.17.19",
"resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.19.tgz",
"integrity": "sha512-DJOSHzX7pCiSElWaGR8kCprwibCB/3yW6vcT8VG3P0SJjnv19gnWG/AZMfM60Xj/YJIp/YCaDHyvzsFVeniARA==",
"requires": {
"@types/node": "*",
"@types/qs": "*",
"@types/range-parser": "*"
}
},
"@types/form-data": {
"version": "2.5.0",
"resolved": "https://registry.npmjs.org/@types/form-data/-/form-data-2.5.0.tgz",
"integrity": "sha512-23/wYiuckYYtFpL+4RPWiWmRQH2BjFuqCUi2+N3amB1a1Drv+i/byTrGvlLwRVLFNAZbwpbQ7JvTK+VCAPMbcg==",
"requires": {
"form-data": "*"
}
},
"@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": "1.3.2",
"resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.2.tgz",
"integrity": "sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw=="
},
"@types/node": {
"version": "9.6.61",
"resolved": "https://registry.npmjs.org/@types/node/-/node-9.6.61.tgz",
"integrity": "sha512-/aKAdg5c8n468cYLy2eQrcR5k6chlbNwZNGUj3TboyPa2hcO2QAJcfymlqPzMiRj8B6nYKXjzQz36minFE0RwQ=="
},
"@types/qs": {
"version": "6.9.6",
"resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.6.tgz",
"integrity": "sha512-0/HnwIfW4ki2D8L8c9GVcG5I72s9jP5GSLVF0VIXDW00kmIpA6O33G7a8n59Tmh7Nz0WUC3rSb7PTY/sdW2JzA=="
},
"@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.5",
"resolved": "https://registry.npmjs.org/@types/request/-/request-2.48.5.tgz",
"integrity": "sha512-/LO7xRVnL3DxJ1WkPGDQrp4VTV1reX9RkC85mJ+Qzykj2Bdw+mG15aAfDahc76HtknjzE16SX/Yddn6MxVbmGQ==",
"requires": {
"@types/caseless": "*",
"@types/node": "*",
"@types/tough-cookie": "*",
"form-data": "^2.5.0"
},
"dependencies": {
"form-data": {
"version": "2.5.1",
"resolved": "https://registry.npmjs.org/form-data/-/form-data-2.5.1.tgz",
"integrity": "sha512-m21N3WOmEEURgk6B9GLOE4RuWOFf28Lhh9qGYeNlGq4VDXUlJy2th2slBNU8Gp8EzloYZOibZJ7t5ecIrFSjVA==",
"requires": {
"asynckit": "^0.4.0",
"combined-stream": "^1.0.6",
"mime-types": "^2.1.12"
}
}
}
},
"@types/serve-static": {
"version": "1.13.9",
"resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.13.9.tgz",
"integrity": "sha512-ZFqF6qa48XsPdjXV5Gsz0Zqmux2PerNd3a/ktL45mHpa19cuMi/cL8tcxdAx497yRh+QtYPuofjT9oWw9P7nkA==",
"requires": {
"@types/mime": "^1",
"@types/node": "*"
}
},
"@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": "4.0.0",
"resolved": "https://registry.npmjs.org/@types/tough-cookie/-/tough-cookie-4.0.0.tgz",
"integrity": "sha512-I99sngh224D0M7XgW1s120zxCt3VYQ3IQsuw3P3jbq5GG4yc79+ZjyKznyOGIQrflfylLgcfekeZW/vk0yng6A=="
},
"@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": "3.0.0",
"resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz",
"integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==",
"requires": {
"event-target-shim": "^5.0.0"
}
},
"accepts": {
"version": "1.3.7",
"resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz",
"integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==",
"requires": {
"mime-types": "~2.1.24",
"negotiator": "0.6.2"
}
},
"agent-base": {
"version": "4.3.0",
"resolved": "https://registry.npmjs.org/agent-base/-/agent-base-4.3.0.tgz",
"integrity": "sha512-salcGninV0nPrwpGNn4VTXBb1SOuXQBiqbrNXoeizJsHrsL6ERFM2Ne3JUSBWRE6aeNJI2ROP/WEEIDUiDe3cg==",
"requires": {
"es6-promisify": "^5.0.0"
}
},
"ajv": {
"version": "6.12.6",
"resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
"integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
"requires": {
"fast-deep-equal": "^3.1.1",
"fast-json-stable-stringify": "^2.0.0",
"json-schema-traverse": "^0.4.1",
"uri-js": "^4.2.2"
}
},
"ampersand-class-extend": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/ampersand-class-extend/-/ampersand-class-extend-2.0.0.tgz",
"integrity": "sha1-Uolf+lkhdjSmGI/RhLEEj12Aiv8=",
"requires": {
"lodash": "^4.11.1"
}
},
"ampersand-collection": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/ampersand-collection/-/ampersand-collection-2.0.2.tgz",
"integrity": "sha512-IjDa4HTL/tdQDDL0SGyWk4AHD02iNtUSLRWkAsJ2biPvapljW9HNgIEIdbPnnR+7Gb9BJkjesaLNjVZfAMzeuA==",
"requires": {
"ampersand-class-extend": "^2.0.0",
"ampersand-events": "^2.0.1",
"ampersand-version": "^1.0.2",
"lodash": "^4.11.1"
}
},
"ampersand-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-align": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-2.0.0.tgz",
"integrity": "sha1-w2rsy6VjuJzrVW82kPCx2eNUf38=",
"requires": {
"string-width": "^2.0.0"
},
"dependencies": {
"ansi-regex": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz",
"integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg="
},
"is-fullwidth-code-point": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz",
"integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8="
},
"string-width": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz",
"integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==",
"requires": {
"is-fullwidth-code-point": "^2.0.0",
"strip-ansi": "^4.0.0"
}
},
"strip-ansi": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz",
"integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=",
"requires": {
"ansi-regex": "^3.0.0"
}
}
}
},
"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==",
"requires": {
"micromatch": "^3.1.4",
"normalize-path": "^2.1.1"
},
"dependencies": {
"normalize-path": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz",
"integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=",
"requires": {
"remove-trailing-separator": "^1.0.1"
}
}
}
},
"argv-tools": {
"version": "0.1.2",
"resolved": "https://registry.npmjs.org/argv-tools/-/argv-tools-0.1.2.tgz",
"integrity": "sha512-wxqoymY0BEu9NblZVQiOTOAiJUjPhaa/kbNMjC2h6bnrmUSgnxKgWJo3lzXvi3bHJRwXyqK/dHzMlZVRT89Cxg==",
"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="
},
"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=="
},
"arr-union": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz",
"integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ="
},
"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="
},
"array-unique": {
"version": "0.3.2",
"resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz",
"integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg="
},
"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="
},
"assign-symbols": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz",
"integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c="
},
"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-each": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz",
"integrity": "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ=="
},
"async-limiter": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz",
"integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ=="
},
"asynckit": {
"version": "0.4.0",
"resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
"integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k="
},
"atob": {
"version": "2.1.2",
"resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz",
"integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg=="
},
"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.11.0",
"resolved": "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz",
"integrity": "sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA=="
},
"axios": {
"version": "0.21.1",
"resolved": "https://registry.npmjs.org/axios/-/axios-0.21.1.tgz",
"integrity": "sha512-dKQiRHxGD9PPRIUNIWvZhPTPpl1rf/OxTYKsqKUDjBwYylTvV7SjSHJb9ratfyzM6wCdLCOYLzs73qpg5c4iGA==",
"requires": {
"follow-redirects": "^1.10.0"
},
"dependencies": {
"follow-redirects": {
"version": "1.13.3",
"resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.13.3.tgz",
"integrity": "sha512-DUgl6+HDzB0iEptNQEXLx/KhTmDb8tZUHSeLqpnjpknR70H0nC2t9N73BK6fN4hOvJ84pKlIQVQ4k5FFlBedKA=="
}
}
},
"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.2",
"resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
"integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="
},
"base": {
"version": "0.11.2",
"resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz",
"integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==",
"requires": {
"cache-base": "^1.0.1",
"class-utils": "^0.3.5",
"component-emitter": "^1.2.1",
"define-property": "^1.0.0",
"isobject": "^3.0.1",
"mixin-deep": "^1.2.0",
"pascalcase": "^0.1.1"
},
"dependencies": {
"define-property": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz",
"integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=",
"requires": {
"is-descriptor": "^1.0.0"
}
},
"is-accessor-descriptor": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
"integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
"requires": {
"kind-of": "^6.0.0"
}
},
"is-data-descriptor": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
"integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
"requires": {
"kind-of": "^6.0.0"
}
},
"is-descriptor": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
"integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
"requires": {
"is-accessor-descriptor": "^1.0.0",
"is-data-descriptor": "^1.0.0",
"kind-of": "^6.0.2"
}
}
}
},
"base64url": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/base64url/-/base64url-3.0.1.tgz",
"integrity": "sha512-ir1UPr3dkwexU7FdV8qBBbNDRUhMmIekYMFZfi+C/sLNnRESKPl23nB9b2pltqfOQNnGzsDdId90AEtG5tCx4A=="
},
"bcrypt-pbkdf": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz",
"integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=",
"requires": {
"tweetnacl": "^0.14.3"
}
},
"binary-extensions": {
"version": "1.13.1",
"resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz",
"integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw=="
},
"bindings": {
"version": "1.5.0",
"resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz",
"integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==",
"optional": true,
"requires": {
"file-uri-to-path": "1.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",
"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"
}
}
}
},
"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.1.0",