forked from CiscoDevNet/webex-chess-card-sample
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage-lock.json
More file actions
2084 lines (2084 loc) · 82.1 KB
/
Copy pathpackage-lock.json
File metadata and controls
2084 lines (2084 loc) · 82.1 KB
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": "webex-chess-card-sample",
"version": "1.0.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"@babel/polyfill": {
"version": "7.12.1",
"resolved": "https://registry.npmjs.org/@babel/polyfill/-/polyfill-7.12.1.tgz",
"integrity": "sha512-X0pi0V6gxLi6lFZpGmeNa4zxtwEmCs42isWLNjZZDE0Y8yVfgu0T2OAHlzBbdYlqbW/YXVvoBHpATEM+goCj8g==",
"requires": {
"core-js": "^2.6.5",
"regenerator-runtime": "^0.13.4"
}
},
"@babel/runtime-corejs2": {
"version": "7.13.4",
"resolved": "https://registry.npmjs.org/@babel/runtime-corejs2/-/runtime-corejs2-7.13.4.tgz",
"integrity": "sha512-KFU3gmg9+lVAeZURPPQehzO5a3IEWuoNsc9sq3EcJLuiV4WzuVUmigWms9H8tN1H138dswJAj3rn4QgyuUNyMQ==",
"requires": {
"core-js": "^2.6.5",
"regenerator-runtime": "^0.13.4"
}
},
"@peculiar/asn1-schema": {
"version": "2.0.27",
"resolved": "https://registry.npmjs.org/@peculiar/asn1-schema/-/asn1-schema-2.0.27.tgz",
"integrity": "sha512-1tIx7iL3Ma3HtnNS93nB7nhyI0soUJypElj9owd4tpMrRDmeJ8eZubsdq1sb0KSaCs5RqZNoABCP6m5WtnlVhQ==",
"requires": {
"@types/asn1js": "^2.0.0",
"asn1js": "^2.0.26",
"pvtsutils": "^1.1.1",
"tslib": "^2.0.3"
}
},
"@peculiar/json-schema": {
"version": "1.1.12",
"resolved": "https://registry.npmjs.org/@peculiar/json-schema/-/json-schema-1.1.12.tgz",
"integrity": "sha512-coUfuoMeIB7B8/NMekxaDzLhaYmp0HZNPEjYRm9goRou8UZIC3z21s0sL9AWoCw4EG876QyO3kYrc61WNF9B/w==",
"requires": {
"tslib": "^2.0.0"
}
},
"@peculiar/webcrypto": {
"version": "1.1.6",
"resolved": "https://registry.npmjs.org/@peculiar/webcrypto/-/webcrypto-1.1.6.tgz",
"integrity": "sha512-xcTjouis4Y117mcsJslWAGypwhxtXslkVdRp7e3tHwtuw0/xCp1te8RuMMv/ia5TsvxomcyX/T+qTbRZGLLvyA==",
"requires": {
"@peculiar/asn1-schema": "^2.0.27",
"@peculiar/json-schema": "^1.1.12",
"pvtsutils": "^1.1.2",
"tslib": "^2.1.0",
"webcrypto-core": "^1.2.0"
}
},
"@tokenizer/token": {
"version": "0.1.1",
"resolved": "https://registry.npmjs.org/@tokenizer/token/-/token-0.1.1.tgz",
"integrity": "sha512-XO6INPbZCxdprl+9qa/AAbFFOMzzwqYxpjPgLICrMD6C2FCw6qfJOPcBk6JqqPLSaZ/Qx87qn4rpPmPMwaAK6w=="
},
"@types/asn1js": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/@types/asn1js/-/asn1js-2.0.0.tgz",
"integrity": "sha512-Jjzp5EqU0hNpADctc/UqhiFbY1y2MqIxBVa2S4dBlbnZHTLPMuggoL5q43X63LpsOIINRDirBjP56DUUKIUWIA=="
},
"@types/debug": {
"version": "4.1.5",
"resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.5.tgz",
"integrity": "sha512-Q1y515GcOdTHgagaVFhHnIFQ38ygs/kmxdNpvpou+raI9UO3YZcHDngBSYKQklcKlvA7iuQlmIKbzvmxcOE9CQ=="
},
"@types/node": {
"version": "14.14.31",
"resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.31.tgz",
"integrity": "sha512-vFHy/ezP5qI0rFgJ7aQnjDXwAMrG0KqqIH7tQG5PPv3BWBayOPIQNBjVc/P6hhdZfMx51REc6tfDNXHUio893g=="
},
"@types/readable-stream": {
"version": "2.3.9",
"resolved": "https://registry.npmjs.org/@types/readable-stream/-/readable-stream-2.3.9.tgz",
"integrity": "sha512-sqsgQqFT7HmQz/V5jH1O0fvQQnXAJO46Gg9LRO/JPfjmVmGUlcx831TZZO3Y3HtWhIkzf3kTsNT0Z0kzIhIvZw==",
"requires": {
"@types/node": "*",
"safe-buffer": "*"
}
},
"@unimodules/core": {
"version": "7.0.0",
"resolved": "https://registry.npmjs.org/@unimodules/core/-/core-7.0.0.tgz",
"integrity": "sha512-hKxNN6ad2VmmJqB3i1C8IJe27TcchY7YAKpkQhshjPxso61f7iM7AUFeG4vcU1vPH5d/X4Vk1ds8bWxaxg7nnw==",
"optional": true,
"requires": {
"compare-versions": "^3.4.0"
}
},
"@unimodules/react-native-adapter": {
"version": "6.1.0",
"resolved": "https://registry.npmjs.org/@unimodules/react-native-adapter/-/react-native-adapter-6.1.0.tgz",
"integrity": "sha512-Fg+Dzt6KxwJLiTfEy1thgntqI/hybx5MsqbJkSfFAfZRmi/5+ypcl5LZQf8gqplgjzXWqeM3M184GAwezwIbjQ==",
"optional": true,
"requires": {
"invariant": "^2.2.4",
"lodash": "^4.5.0"
}
},
"@webex/common": {
"version": "1.118.0",
"resolved": "https://registry.npmjs.org/@webex/common/-/common-1.118.0.tgz",
"integrity": "sha512-4pBaqzl/XxQZ5uzWTeDoYqOddPLhL+gNwpfRklpOddC3KNymmiffmCyxIsX2J9Y340E8aHbOgz1B2qG5GycqRg==",
"requires": {
"@babel/runtime-corejs2": "^7.12.5",
"@webex/common": "1.118.0",
"backoff": "^2.5.0",
"core-decorators": "^0.20.0",
"envify": "^4.1.0",
"lodash": "^4.17.19",
"safe-buffer": "^5.2.0",
"urlsafe-base64": "^1.0.0"
}
},
"@webex/common-timers": {
"version": "1.118.0",
"resolved": "https://registry.npmjs.org/@webex/common-timers/-/common-timers-1.118.0.tgz",
"integrity": "sha512-wlvco9wHAso7wxArP7JQ572sCdf2VcUMqBoUlUoGS2RuK4AtPLyzHbq0D53rxdsiWM85dNyeIg7THPinEG/csg==",
"requires": {
"@babel/runtime-corejs2": "^7.12.5",
"envify": "^4.1.0"
}
},
"@webex/helper-html": {
"version": "1.118.0",
"resolved": "https://registry.npmjs.org/@webex/helper-html/-/helper-html-1.118.0.tgz",
"integrity": "sha512-w5ECrYIiAvb2hnO62WxQDgm67KoWBZtWUQffjjgxinuMy4tF+qwjQgvWcwyCxT13ynLkP0lWgCegOq5qVKmrcg==",
"requires": {
"@babel/runtime-corejs2": "^7.12.5",
"envify": "^4.1.0",
"lodash": "^4.17.19"
}
},
"@webex/helper-image": {
"version": "1.118.0",
"resolved": "https://registry.npmjs.org/@webex/helper-image/-/helper-image-1.118.0.tgz",
"integrity": "sha512-NPo0gDuq5NH1mrEnOm0MiedsBBodfq3d5nPheUDXh04dGRtHKmSDCH9PGINGQ0hhSkUhKDHtG+yQDKqvbswnKg==",
"requires": {
"@babel/runtime-corejs2": "^7.12.5",
"@webex/http-core": "1.118.0",
"envify": "^4.1.0",
"exifr": "^5.0.3",
"gm": "^1.23.1",
"lodash": "^4.17.19",
"mime": "^2.4.4",
"safe-buffer": "^5.2.0"
}
},
"@webex/http-core": {
"version": "1.118.0",
"resolved": "https://registry.npmjs.org/@webex/http-core/-/http-core-1.118.0.tgz",
"integrity": "sha512-aGYLLRjpC6ksTub/4CyBvMDfecL8rqfiqbh5ZV87HkE8aWVJmoK7P2GptWlsdaY0l6WTGXgzywADWvF4rIv8Rg==",
"requires": {
"@babel/runtime-corejs2": "^7.12.5",
"@webex/common": "1.118.0",
"envify": "^4.1.0",
"file-type": "^16.0.1",
"global": "^4.4.0",
"is-function": "^1.0.1",
"lodash": "^4.17.19",
"parse-headers": "^2.0.2",
"qs": "^6.7.0",
"request": "^2.88.0",
"safe-buffer": "^5.2.0",
"xtend": "^4.0.2"
}
},
"@webex/internal-plugin-calendar": {
"version": "1.118.0",
"resolved": "https://registry.npmjs.org/@webex/internal-plugin-calendar/-/internal-plugin-calendar-1.118.0.tgz",
"integrity": "sha512-NJzHv2CpiqwLKgcB9KE+deOSwm1wmE3bp9AOhRnVJZkSMBmjC8uyfkP/IoZPZU9ugrJqggF4fGO9dzQiwteXjQ==",
"requires": {
"@babel/runtime-corejs2": "^7.12.5",
"@webex/internal-plugin-conversation": "1.118.0",
"@webex/internal-plugin-device": "1.118.0",
"@webex/internal-plugin-encryption": "1.118.0",
"@webex/webex-core": "1.118.0",
"btoa": "^1.2.1",
"envify": "^4.1.0",
"lodash": "^4.17.19"
}
},
"@webex/internal-plugin-conversation": {
"version": "1.118.0",
"resolved": "https://registry.npmjs.org/@webex/internal-plugin-conversation/-/internal-plugin-conversation-1.118.0.tgz",
"integrity": "sha512-sBWceqPosAmTb9LvMoJQHLDmHKaAIYh0SfvCqKKWYo0qvAm9szkriBzmUBHVAWDK5o5RjK1Ehihn0kKYUdudOQ==",
"requires": {
"@babel/runtime-corejs2": "^7.12.5",
"@webex/common": "1.118.0",
"@webex/helper-html": "1.118.0",
"@webex/helper-image": "1.118.0",
"@webex/internal-plugin-encryption": "1.118.0",
"@webex/internal-plugin-user": "1.118.0",
"@webex/webex-core": "1.118.0",
"crypto-js": "^3.1.9-1",
"envify": "^4.1.0",
"lodash": "^4.17.19",
"node-scr": "^0.3.0",
"uuid": "^3.3.2"
}
},
"@webex/internal-plugin-device": {
"version": "1.118.0",
"resolved": "https://registry.npmjs.org/@webex/internal-plugin-device/-/internal-plugin-device-1.118.0.tgz",
"integrity": "sha512-B52N6WGQc2QBiPIwI6dHQgiX5S7dJyskKY3bxUqtFScxnl4VOQD75HChllKWohWbg9yk1SqoIr2nwA7LhxAJpQ==",
"requires": {
"@babel/runtime-corejs2": "^7.12.5",
"@webex/common": "1.118.0",
"@webex/common-timers": "1.118.0",
"@webex/http-core": "1.118.0",
"@webex/webex-core": "1.118.0",
"ampersand-collection": "^2.0.2",
"ampersand-state": "^5.0.3",
"envify": "^4.1.0",
"lodash": "^4.17.19"
}
},
"@webex/internal-plugin-encryption": {
"version": "1.118.0",
"resolved": "https://registry.npmjs.org/@webex/internal-plugin-encryption/-/internal-plugin-encryption-1.118.0.tgz",
"integrity": "sha512-pw0IOkT+oSn/K8zfzFl0jOFg2Y7mW6AVBGbqAwJOTW/IHfi9O3wKW7p+tChpiMkoYRdKFGNwICXHcgmgVqooXQ==",
"requires": {
"@babel/runtime-corejs2": "^7.12.5",
"@webex/common": "1.118.0",
"@webex/common-timers": "1.118.0",
"@webex/http-core": "1.118.0",
"@webex/internal-plugin-device": "1.118.0",
"@webex/internal-plugin-mercury": "1.118.0",
"@webex/webex-core": "1.118.0",
"asn1js": "^2.0.26",
"debug": "^3.2.6",
"envify": "^4.1.0",
"isomorphic-webcrypto": "^2.3.6",
"lodash": "^4.17.19",
"node-jose": "^2.0.0",
"node-kms": "^0.4.0",
"node-scr": "^0.3.0",
"pkijs": "^2.1.84",
"safe-buffer": "^5.2.0",
"valid-url": "^1.0.9"
},
"dependencies": {
"debug": {
"version": "3.2.7",
"resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
"integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
"requires": {
"ms": "^2.1.1"
}
}
}
},
"@webex/internal-plugin-feature": {
"version": "1.118.0",
"resolved": "https://registry.npmjs.org/@webex/internal-plugin-feature/-/internal-plugin-feature-1.118.0.tgz",
"integrity": "sha512-C4J+Gg3MoeN9ee4H/NXz0eYzzvkbvVCSrTwPef0qpHxO/epbYbcPRufcsyV4bczNPtpLoSjnYxq8p/kT1+H5bQ==",
"requires": {
"@babel/runtime-corejs2": "^7.12.5",
"@webex/internal-plugin-device": "1.118.0",
"@webex/internal-plugin-mercury": "1.118.0",
"@webex/webex-core": "1.118.0",
"envify": "^4.1.0",
"lodash": "^4.17.19"
}
},
"@webex/internal-plugin-lyra": {
"version": "1.118.0",
"resolved": "https://registry.npmjs.org/@webex/internal-plugin-lyra/-/internal-plugin-lyra-1.118.0.tgz",
"integrity": "sha512-SZBA5SlFKa/CrvkzFIjmwueJAf27BUPJJxAxtS+aQvLWhwuhDLNBb/6Hrkt8eQPCTnBWxJCv1cX+IyXQyMguiA==",
"requires": {
"@babel/runtime-corejs2": "^7.12.5",
"@webex/common": "1.118.0",
"@webex/internal-plugin-conversation": "1.118.0",
"@webex/internal-plugin-encryption": "1.118.0",
"@webex/internal-plugin-feature": "1.118.0",
"@webex/internal-plugin-mercury": "1.118.0",
"@webex/webex-core": "1.118.0",
"envify": "^4.1.0"
}
},
"@webex/internal-plugin-mercury": {
"version": "1.118.0",
"resolved": "https://registry.npmjs.org/@webex/internal-plugin-mercury/-/internal-plugin-mercury-1.118.0.tgz",
"integrity": "sha512-Lu1ccM5sjOWzd9YibgRpEUMT9snkcVcttXn9KBIypyUIEDzz6NUeUiraQ9nG8JNOkbOChrMNWT+ca8FgrjVL6Q==",
"requires": {
"@babel/runtime-corejs2": "^7.12.5",
"@webex/common": "1.118.0",
"@webex/common-timers": "1.118.0",
"@webex/internal-plugin-device": "1.118.0",
"@webex/internal-plugin-feature": "1.118.0",
"@webex/internal-plugin-metrics": "1.118.0",
"@webex/webex-core": "1.118.0",
"backoff": "^2.5.0",
"envify": "^4.1.0",
"lodash": "^4.17.19",
"uuid": "^3.3.2",
"ws": "^4.1.0"
}
},
"@webex/internal-plugin-metrics": {
"version": "1.118.0",
"resolved": "https://registry.npmjs.org/@webex/internal-plugin-metrics/-/internal-plugin-metrics-1.118.0.tgz",
"integrity": "sha512-410FRyobQKPbsx3vX9oYIDvgsWZ+j5EjXG+siQXNmEfDMo5I/cbBUDM9imSIU7MuBtvoFiSNzbfk3AJPX3X/xA==",
"requires": {
"@babel/runtime-corejs2": "^7.12.5",
"@webex/common": "1.118.0",
"@webex/common-timers": "1.118.0",
"@webex/internal-plugin-device": "1.118.0",
"@webex/webex-core": "1.118.0",
"envify": "^4.1.0"
}
},
"@webex/internal-plugin-presence": {
"version": "1.118.0",
"resolved": "https://registry.npmjs.org/@webex/internal-plugin-presence/-/internal-plugin-presence-1.118.0.tgz",
"integrity": "sha512-h2EpGGERztrV4J18M1UMIYAoq7kZbuekhv84elNyjTHZMKfd1INeFMxnwNaGfZ9awkJPyWo4oJEBFO9XuhEWfg==",
"requires": {
"@babel/runtime-corejs2": "^7.12.5",
"@webex/internal-plugin-device": "1.118.0",
"@webex/webex-core": "1.118.0",
"envify": "^4.1.0",
"lodash": "^4.17.19"
}
},
"@webex/internal-plugin-search": {
"version": "1.118.0",
"resolved": "https://registry.npmjs.org/@webex/internal-plugin-search/-/internal-plugin-search-1.118.0.tgz",
"integrity": "sha512-irSOA2K2AV3AnCchEPPSpWMl4bli+wtrnpuEUll4AcxzHUTIxQUNnGgGpfJBAop4VT2c4YdKaXuo5wYoJdzHaQ==",
"requires": {
"@babel/runtime-corejs2": "^7.12.5",
"@webex/common": "1.118.0",
"@webex/internal-plugin-conversation": "1.118.0",
"@webex/internal-plugin-encryption": "1.118.0",
"@webex/webex-core": "1.118.0",
"envify": "^4.1.0",
"lodash": "^4.17.19"
}
},
"@webex/internal-plugin-support": {
"version": "1.118.0",
"resolved": "https://registry.npmjs.org/@webex/internal-plugin-support/-/internal-plugin-support-1.118.0.tgz",
"integrity": "sha512-gSr4uOOGoV12U+nhBkTISqcRWuU6jZps9aDienO68LY5gKLUNzPGUv7uIet2VIIxpniWbYvV5kDipvRQcaNo4A==",
"requires": {
"@babel/runtime-corejs2": "^7.12.5",
"@webex/internal-plugin-device": "1.118.0",
"@webex/webex-core": "1.118.0",
"envify": "^4.1.0",
"lodash": "^4.17.19",
"uuid": "^3.3.2"
}
},
"@webex/internal-plugin-user": {
"version": "1.118.0",
"resolved": "https://registry.npmjs.org/@webex/internal-plugin-user/-/internal-plugin-user-1.118.0.tgz",
"integrity": "sha512-bHCs3bSPhPd73aiH9/QAjFfGyedBQXDnDXAtp7XeVW1u4XqXQrTtWwx/g/Pa4B0dCdbnE3RdG+PbiOwK0hl0tQ==",
"requires": {
"@babel/runtime-corejs2": "^7.12.5",
"@webex/common": "1.118.0",
"@webex/internal-plugin-device": "1.118.0",
"@webex/webex-core": "1.118.0",
"envify": "^4.1.0",
"lodash": "^4.17.19"
}
},
"@webex/plugin-attachment-actions": {
"version": "1.118.0",
"resolved": "https://registry.npmjs.org/@webex/plugin-attachment-actions/-/plugin-attachment-actions-1.118.0.tgz",
"integrity": "sha512-+9o/B5mXpW0YIci2UOmoG14iOjlA+bOsa8NFNRoRGSX4IiNz0pQmh/R9Z/pv01Lp19BHDg5PpWtqloF9C3as6g==",
"requires": {
"@babel/runtime-corejs2": "^7.12.5",
"@webex/common": "1.118.0",
"@webex/internal-plugin-conversation": "1.118.0",
"@webex/internal-plugin-mercury": "1.118.0",
"@webex/webex-core": "1.118.0",
"debug": "^3.2.6",
"envify": "^4.1.0",
"lodash": "^4.17.19"
},
"dependencies": {
"debug": {
"version": "3.2.7",
"resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
"integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
"requires": {
"ms": "^2.1.1"
}
}
}
},
"@webex/plugin-authorization": {
"version": "1.118.0",
"resolved": "https://registry.npmjs.org/@webex/plugin-authorization/-/plugin-authorization-1.118.0.tgz",
"integrity": "sha512-EqJFXiLeBIKKCeAVcytyHnBaZBp0COCKy5+hdDC2XbOmOsON4xy/5KBPiH2S8CgH2oS54zd1JuS+TCs9vJDsSg==",
"requires": {
"@babel/runtime-corejs2": "^7.12.5",
"@webex/plugin-authorization-browser": "1.118.0",
"@webex/plugin-authorization-node": "1.118.0",
"envify": "^4.1.0"
}
},
"@webex/plugin-authorization-browser": {
"version": "1.118.0",
"resolved": "https://registry.npmjs.org/@webex/plugin-authorization-browser/-/plugin-authorization-browser-1.118.0.tgz",
"integrity": "sha512-a69eH8A/bun3zY0FPthKxC5Xin/b8xE5HB9ybDf4mIm3mF8jRoH+dzxB1LFuTERC1Cx+P2A2O1JG1W/8D0qHmw==",
"requires": {
"@babel/runtime-corejs2": "^7.12.5",
"@webex/common": "1.118.0",
"@webex/internal-plugin-device": "1.118.0",
"@webex/webex-core": "1.118.0",
"envify": "^4.1.0",
"lodash": "^4.17.19",
"uuid": "^3.3.2"
}
},
"@webex/plugin-authorization-node": {
"version": "1.118.0",
"resolved": "https://registry.npmjs.org/@webex/plugin-authorization-node/-/plugin-authorization-node-1.118.0.tgz",
"integrity": "sha512-LwRlTlok7ZQxzs1I4egL8N63Qe7iExxQzeOnvbzcYzG11fs03qYaBTOoXzPMR9VVH0oyYH796O3w3hVHECh/pQ==",
"requires": {
"@babel/runtime-corejs2": "^7.12.5",
"@webex/common": "1.118.0",
"@webex/internal-plugin-device": "1.118.0",
"@webex/webex-core": "1.118.0",
"envify": "^4.1.0"
}
},
"@webex/plugin-device-manager": {
"version": "1.118.0",
"resolved": "https://registry.npmjs.org/@webex/plugin-device-manager/-/plugin-device-manager-1.118.0.tgz",
"integrity": "sha512-+z1pg6SgZcTh6UIKVVfIJZwUPi01y52lDehPUFlYEOqy5UQD/TleTCzNDIn2PUiJBnj6JKVvyWdXW+2vK8nlWg==",
"requires": {
"@babel/runtime-corejs2": "^7.12.5",
"@webex/internal-plugin-device": "1.118.0",
"@webex/internal-plugin-lyra": "1.118.0",
"@webex/internal-plugin-search": "1.118.0",
"@webex/webex-core": "1.118.0",
"envify": "^4.1.0",
"lodash": "^4.17.19",
"uuid": "^3.3.2"
}
},
"@webex/plugin-logger": {
"version": "1.118.0",
"resolved": "https://registry.npmjs.org/@webex/plugin-logger/-/plugin-logger-1.118.0.tgz",
"integrity": "sha512-sy66j1W8FCiOlfq6AsDMvmo4+hWElpOCZ91M69LD54I7kZTDzNnFnWvRmwSwJxF18MgMsYVFUGb1mrGGNye2Kw==",
"requires": {
"@babel/runtime-corejs2": "^7.12.5",
"@webex/common": "1.118.0",
"@webex/webex-core": "1.118.0",
"envify": "^4.1.0",
"lodash": "^4.17.19"
}
},
"@webex/plugin-meetings": {
"version": "1.118.0",
"resolved": "https://registry.npmjs.org/@webex/plugin-meetings/-/plugin-meetings-1.118.0.tgz",
"integrity": "sha512-d0aQT+bSedvxP5GS9IkWvUGrXTEU+wX2rkJgM7hCM+MYxzglZVlzGmHuuajji8SndLLkT2BSe4K4zYIJd7Ugiw==",
"requires": {
"@babel/runtime-corejs2": "^7.12.5",
"@webex/common": "1.118.0",
"@webex/common-timers": "1.118.0",
"@webex/internal-plugin-mercury": "1.118.0",
"@webex/webex-core": "1.118.0",
"bowser": "1.9.4",
"btoa": "^1.2.1",
"envify": "^4.1.0",
"global": "^4.4.0",
"javascript-state-machine": "^3.1.0",
"lodash": "^4.17.19",
"readable-stream": "^3.6.0",
"sdp-transform": "^2.12.0",
"uuid": "^3.3.2",
"webrtc-adapter": "^7.7.0"
},
"dependencies": {
"readable-stream": {
"version": "3.6.0",
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz",
"integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==",
"requires": {
"inherits": "^2.0.3",
"string_decoder": "^1.1.1",
"util-deprecate": "^1.0.1"
}
}
}
},
"@webex/plugin-memberships": {
"version": "1.118.0",
"resolved": "https://registry.npmjs.org/@webex/plugin-memberships/-/plugin-memberships-1.118.0.tgz",
"integrity": "sha512-qKfqy2QmnkGSjtfEZ2NmPyLNDcCRnYjjGBHDLUuxUaX3JRVFsZwNRnW9dKhzxyXSe61CXahdRrs27BQEtkCevA==",
"requires": {
"@babel/runtime-corejs2": "^7.12.5",
"@webex/common": "1.118.0",
"@webex/internal-plugin-conversation": "1.118.0",
"@webex/internal-plugin-mercury": "1.118.0",
"@webex/webex-core": "1.118.0",
"debug": "^3.2.6",
"envify": "^4.1.0",
"lodash": "^4.17.19"
},
"dependencies": {
"debug": {
"version": "3.2.7",
"resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
"integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
"requires": {
"ms": "^2.1.1"
}
}
}
},
"@webex/plugin-messages": {
"version": "1.118.0",
"resolved": "https://registry.npmjs.org/@webex/plugin-messages/-/plugin-messages-1.118.0.tgz",
"integrity": "sha512-3A9X1Xv4Lv3WjyN4/EE01HUBpGL3xxVED3N3R1rM4keizl7WijUEMyy4xTaNXf4TC1vRyhXlt7mBbUAvtamZRQ==",
"requires": {
"@babel/runtime-corejs2": "^7.12.5",
"@webex/common": "1.118.0",
"@webex/internal-plugin-conversation": "1.118.0",
"@webex/internal-plugin-mercury": "1.118.0",
"@webex/webex-core": "1.118.0",
"envify": "^4.1.0",
"lodash": "^4.17.19"
}
},
"@webex/plugin-people": {
"version": "1.118.0",
"resolved": "https://registry.npmjs.org/@webex/plugin-people/-/plugin-people-1.118.0.tgz",
"integrity": "sha512-7qKOjnzwlrdfj1E//+8JvCkGYUDYxbysnHzO5mQ65cnTXILpz3JsVkvKnlAGtgmalhm0a6OcAkUCS32BX7WgKQ==",
"requires": {
"@babel/runtime-corejs2": "^7.12.5",
"@webex/common": "1.118.0",
"@webex/webex-core": "1.118.0",
"envify": "^4.1.0"
}
},
"@webex/plugin-rooms": {
"version": "1.118.0",
"resolved": "https://registry.npmjs.org/@webex/plugin-rooms/-/plugin-rooms-1.118.0.tgz",
"integrity": "sha512-CClpRCiUVdkPBBrEUkMHWZFTfCJSapC819kHJWr+TGRnpUrE9ky4VJD1S8u3QHrAWzbgRCE666bxgUQ81sLoZA==",
"requires": {
"@babel/runtime-corejs2": "^7.12.5",
"@webex/common": "1.118.0",
"@webex/internal-plugin-conversation": "1.118.0",
"@webex/internal-plugin-mercury": "1.118.0",
"@webex/webex-core": "1.118.0",
"debug": "^3.2.6",
"envify": "^4.1.0",
"lodash": "^4.17.19"
},
"dependencies": {
"debug": {
"version": "3.2.7",
"resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
"integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
"requires": {
"ms": "^2.1.1"
}
}
}
},
"@webex/plugin-team-memberships": {
"version": "1.118.0",
"resolved": "https://registry.npmjs.org/@webex/plugin-team-memberships/-/plugin-team-memberships-1.118.0.tgz",
"integrity": "sha512-sx5ZTBvPiYP+uXzsxoqBDIhurmekU3PjFP8aLlHlxQj2OQtJjiWts15KZxjxYrPIaiCvITYjiEHP6xoqqxgkyA==",
"requires": {
"@babel/runtime-corejs2": "^7.12.5",
"@webex/webex-core": "1.118.0",
"envify": "^4.1.0"
}
},
"@webex/plugin-teams": {
"version": "1.118.0",
"resolved": "https://registry.npmjs.org/@webex/plugin-teams/-/plugin-teams-1.118.0.tgz",
"integrity": "sha512-8KtRT3jjvcnB92mxL7AoyeNv8s975ttxDomCYC2W59bGKYL7mf5NNTUiAlUDeloDUu7ryq13cq5n28s4iI+A6g==",
"requires": {
"@babel/runtime-corejs2": "^7.12.5",
"@webex/webex-core": "1.118.0",
"envify": "^4.1.0"
}
},
"@webex/plugin-webhooks": {
"version": "1.118.0",
"resolved": "https://registry.npmjs.org/@webex/plugin-webhooks/-/plugin-webhooks-1.118.0.tgz",
"integrity": "sha512-oAAZMBTNRi6w769GH2NoBzwpMRbHvv791KfbajvrNLQFkabfVTG80pe2CC9AfSUoWZd5cCzlySVne/cg96R1YA==",
"requires": {
"@babel/runtime-corejs2": "^7.12.5",
"@webex/webex-core": "1.118.0",
"envify": "^4.1.0"
}
},
"@webex/storage-adapter-local-storage": {
"version": "1.118.0",
"resolved": "https://registry.npmjs.org/@webex/storage-adapter-local-storage/-/storage-adapter-local-storage-1.118.0.tgz",
"integrity": "sha512-YpoXIuRFM0IYeHMM+Zqh50E/g1386xV3n6a2kloY5ln66DTvw5ohqne20dvJvrQMEFGUywVup6aqQHYjV9HrOA==",
"requires": {
"@babel/runtime-corejs2": "^7.12.5",
"@webex/webex-core": "1.118.0",
"envify": "^4.1.0"
}
},
"@webex/webex-core": {
"version": "1.118.0",
"resolved": "https://registry.npmjs.org/@webex/webex-core/-/webex-core-1.118.0.tgz",
"integrity": "sha512-kh0fElxanWzDBwQL+Tv6efe3jGbVKfkjfrJw1+syxk4aJZDiGfBSjv1eGDqBHTbJ2l27IkS58Nxsl5p1+GoWXA==",
"requires": {
"@babel/runtime-corejs2": "^7.12.5",
"@webex/common": "1.118.0",
"@webex/common-timers": "1.118.0",
"@webex/http-core": "1.118.0",
"@webex/webex-core": "1.118.0",
"ampersand-collection": "^2.0.2",
"ampersand-events": "^2.0.2",
"ampersand-state": "^5.0.3",
"core-decorators": "^0.20.0",
"crypto-js": "^3.1.9-1",
"envify": "^4.1.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.19",
"uuid": "^3.3.2"
}
},
"agent-base": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz",
"integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==",
"requires": {
"debug": "4"
}
},
"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-events": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/ampersand-events/-/ampersand-events-2.0.2.tgz",
"integrity": "sha1-9AK8LhgwX6vZldvc07cFe73X00c=",
"requires": {
"ampersand-version": "^1.0.2",
"lodash": "^4.6.1"
}
},
"ampersand-state": {
"version": "5.0.3",
"resolved": "https://registry.npmjs.org/ampersand-state/-/ampersand-state-5.0.3.tgz",
"integrity": "sha512-sr904K5zvw6mkGjFHhTcfBIdpoJ6mn/HrFg7OleRmBpw3apLb3Z0gVrgRTb7kK1wOLI34vs4S+IXqNHUeqWCzw==",
"requires": {
"ampersand-events": "^2.0.1",
"ampersand-version": "^1.0.0",
"array-next": "~0.0.1",
"key-tree-store": "^1.3.0",
"lodash": "^4.12.0"
}
},
"ampersand-version": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/ampersand-version/-/ampersand-version-1.0.2.tgz",
"integrity": "sha1-/489TOrE0yzNg/a9Zpc5f3tZ4sA=",
"requires": {
"find-root": "^0.1.1",
"through2": "^0.6.3"
}
},
"array-next": {
"version": "0.0.1",
"resolved": "https://registry.npmjs.org/array-next/-/array-next-0.0.1.tgz",
"integrity": "sha1-5eRmCkwn/agVH/d2QnXQCQAGK+E="
},
"array-parallel": {
"version": "0.1.3",
"resolved": "https://registry.npmjs.org/array-parallel/-/array-parallel-0.1.3.tgz",
"integrity": "sha1-j3hTCJJu1apHjEfmTRszS2wMlH0="
},
"array-series": {
"version": "0.1.5",
"resolved": "https://registry.npmjs.org/array-series/-/array-series-0.1.5.tgz",
"integrity": "sha1-3103v8XC7wdV4qpPkv6ufUtaly8="
},
"asmcrypto.js": {
"version": "0.22.0",
"resolved": "https://registry.npmjs.org/asmcrypto.js/-/asmcrypto.js-0.22.0.tgz",
"integrity": "sha512-usgMoyXjMbx/ZPdzTSXExhMPur2FTdz/Vo5PVx2gIaBcdAAJNOFlsdgqveM8Cff7W0v+xrf9BwjOV26JSAF9qA=="
},
"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"
}
},
"asn1js": {
"version": "2.0.26",
"resolved": "https://registry.npmjs.org/asn1js/-/asn1js-2.0.26.tgz",
"integrity": "sha512-yG89F0j9B4B0MKIcFyWWxnpZPLaNTjCj4tkE3fjbAoo0qmpGw0PYYqSbX/4ebnd9Icn8ZgK4K1fvDyEtW1JYtQ==",
"requires": {
"pvutils": "^1.0.17"
}
},
"assert-plus": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz",
"integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU="
},
"async-limiter": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz",
"integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ=="
},
"asynckit": {
"version": "0.4.0",
"resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
"integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k="
},
"aws-sign2": {
"version": "0.7.0",
"resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz",
"integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg="
},
"aws4": {
"version": "1.11.0",
"resolved": "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz",
"integrity": "sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA=="
},
"b64-lite": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/b64-lite/-/b64-lite-1.4.0.tgz",
"integrity": "sha512-aHe97M7DXt+dkpa8fHlCcm1CnskAHrJqEfMI0KN7dwqlzml/aUe1AGt6lk51HzrSfVD67xOso84sOpr+0wIe2w==",
"requires": {
"base-64": "^0.1.0"
}
},
"b64u-lite": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/b64u-lite/-/b64u-lite-1.1.0.tgz",
"integrity": "sha512-929qWGDVCRph7gQVTC6koHqQIpF4vtVaSbwLltFQo44B1bYUquALswZdBKFfrJCPEnsCOvWkJsPdQYZ/Ukhw8A==",
"requires": {
"b64-lite": "^1.4.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"
}
},
"base-64": {
"version": "0.1.0",
"resolved": "https://registry.npmjs.org/base-64/-/base-64-0.1.0.tgz",
"integrity": "sha1-eAqZyE59YAJgNhURxId2E78k9rs="
},
"base64-js": {
"version": "1.5.1",
"resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
"integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA=="
},
"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"
}
},
"bl": {
"version": "2.2.1",
"resolved": "https://registry.npmjs.org/bl/-/bl-2.2.1.tgz",
"integrity": "sha512-6Pesp1w0DEX1N550i/uGV/TqucVL4AM/pgThFSN/Qq9si1/DF9aIHs1BxD8V/QU0HoeHO6cQRTAuYnLPKq1e4g==",
"requires": {
"readable-stream": "^2.3.5",
"safe-buffer": "^5.1.1"
}
},
"bowser": {
"version": "1.9.4",
"resolved": "https://registry.npmjs.org/bowser/-/bowser-1.9.4.tgz",
"integrity": "sha512-9IdMmj2KjigRq6oWhmwv1W36pDuA4STQZ8q6YO9um+x07xgYNCD3Oou+WP/3L1HNz7iqythGet3/p4wvc8AAwQ=="
},
"bson": {
"version": "1.1.5",
"resolved": "https://registry.npmjs.org/bson/-/bson-1.1.5.tgz",
"integrity": "sha512-kDuEzldR21lHciPQAIulLs1LZlCXdLziXI6Mb/TDkwXhb//UORJNPXgcRs2CuO4H0DcMkpfT3/ySsP3unoZjBg=="
},
"btoa": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/btoa/-/btoa-1.2.1.tgz",
"integrity": "sha512-SB4/MIGlsiVkMcHmT+pSmIPoNDoHg+7cMzmt3Uxt628MTz2487DKSqK/fuhFBrkuqrYv5UCEnACpF4dTFNKc/g=="
},
"buffer": {
"version": "5.7.1",
"resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz",
"integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==",
"requires": {
"base64-js": "^1.3.1",
"ieee754": "^1.1.13"
}
},
"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="
},
"bytestreamjs": {
"version": "1.0.29",
"resolved": "https://registry.npmjs.org/bytestreamjs/-/bytestreamjs-1.0.29.tgz",
"integrity": "sha512-Mri3yqoo9YvdaSvD5OYl4Rdu9zCBJInW/Ez31sdlNY4ikMy//EvTTmidfLcs0e+NBvKVEpPzYvJAesjgMdjnZg=="
},
"caseless": {
"version": "0.12.0",
"resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz",
"integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw="
},
"combined-stream": {
"version": "1.0.8",
"resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
"integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
"requires": {
"delayed-stream": "~1.0.0"
}
},
"compare-versions": {
"version": "3.6.0",
"resolved": "https://registry.npmjs.org/compare-versions/-/compare-versions-3.6.0.tgz",
"integrity": "sha512-W6Af2Iw1z4CB7q4uU4hv646dW9GQuBM+YpC0UvUCWSD8w90SJjp+ujJuXaEMtAXBtSqGfMPuFOVn4/+FlaqfBA==",
"optional": true
},
"core-decorators": {
"version": "0.20.0",
"resolved": "https://registry.npmjs.org/core-decorators/-/core-decorators-0.20.0.tgz",
"integrity": "sha1-YFiWYkBTr4wo775zXCWjAaYcZcU="
},
"core-js": {
"version": "2.6.12",
"resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.12.tgz",
"integrity": "sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ=="
},
"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="
},
"cross-spawn": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-4.0.2.tgz",
"integrity": "sha1-e5JHYhwjrf3ThWAEqCPL45dCTUE=",
"requires": {
"lru-cache": "^4.0.1",
"which": "^1.2.9"
}
},
"crypto-js": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/crypto-js/-/crypto-js-3.3.0.tgz",
"integrity": "sha512-DIT51nX0dCfKltpRiXV+/TVZq+Qq2NgF4644+K7Ttnla7zEzqc+kjJyiB96BHNyUTBxyjzRcZYpUdZa+QAqi6Q=="
},
"dashdash": {
"version": "1.14.1",
"resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz",
"integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=",
"requires": {
"assert-plus": "^1.0.0"
}
},
"debug": {
"version": "4.3.1",
"resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz",
"integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==",
"requires": {
"ms": "2.1.2"
}
},
"delayed-stream": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
"integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk="
},
"denque": {
"version": "1.5.0",
"resolved": "https://registry.npmjs.org/denque/-/denque-1.5.0.tgz",
"integrity": "sha512-CYiCSgIF1p6EUByQPlGkKnP1M9g0ZV3qMIrqMqZqdwazygIA/YP2vrbcyl1h/WppKJTdl1F85cXIle+394iDAQ=="
},
"dom-walk": {
"version": "0.1.2",
"resolved": "https://registry.npmjs.org/dom-walk/-/dom-walk-0.1.2.tgz",
"integrity": "sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w=="
},
"dotenv": {
"version": "8.2.0",
"resolved": "https://registry.npmjs.org/dotenv/-/dotenv-8.2.0.tgz",
"integrity": "sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw=="
},
"ecc-jsbn": {
"version": "0.1.2",
"resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz",
"integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=",
"requires": {
"jsbn": "~0.1.0",
"safer-buffer": "^2.1.0"
}
},
"ecdsa-sig-formatter": {
"version": "1.0.11",
"resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz",
"integrity": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==",
"requires": {
"safe-buffer": "^5.0.1"
}
},
"envify": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/envify/-/envify-4.1.0.tgz",
"integrity": "sha512-IKRVVoAYr4pIx4yIWNsz9mOsboxlNXiu7TNBnem/K/uTHdkyzXWDzHCK7UTolqBbgaBz0tQHsD3YNls0uIIjiw==",
"requires": {
"esprima": "^4.0.0",
"through": "~2.3.4"
}
},
"es6-promise": {
"version": "4.2.8",
"resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.8.tgz",
"integrity": "sha512-HJDGx5daxeIvxdBxvG2cb9g4tEvwIk3i8+nhX0yGrYmZUzbkdg8QbDevheDB8gd0//uPj4c1EQua8Q+MViT0/w=="
},
"esprima": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz",
"integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A=="
},
"exifr": {
"version": "5.0.6",
"resolved": "https://registry.npmjs.org/exifr/-/exifr-5.0.6.tgz",
"integrity": "sha512-iDB4IhKoKVF+uDDrHRlyNxWqGaTxYluVWqvBWVG54HkQZe8qkFYl9eQrjEP3d8Q4UMBZ9rWu3Pa+mfC+o4CZuw=="
},
"expo-random": {
"version": "11.0.0",
"resolved": "https://registry.npmjs.org/expo-random/-/expo-random-11.0.0.tgz",
"integrity": "sha512-5x+F4KZlO2v9MZI79fvhuHUdSLCXAz1l8a6a7ABU+3/eBD5TIwtgBuu3YLtGldadVV7hX19HGfZy4GCO2R1dFA==",
"optional": true,
"requires": {
"base64-js": "^1.3.0"
}
},
"extend": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz",
"integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g=="
},
"extsprintf": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz",
"integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU="
},
"fast-deep-equal": {
"version": "3.1.3",
"resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
"integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="
},
"fast-json-stable-stringify": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
"integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw=="
},