-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
4116 lines (3545 loc) · 159 KB
/
yarn.lock
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
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
# yarn lockfile v1
"@babel/code-frame@^7.16.0":
"integrity" "sha512-IF4EOMEV+bfYwOmNxGzSnjR2EmQod7f1UXOpZM3l4i4o4QNwzjtJAu/HxdjHq0aYBvdqMuQEY1eg0nqW9ZPORA=="
"resolved" "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.0.tgz"
"version" "7.16.0"
dependencies:
"@babel/highlight" "^7.16.0"
"@babel/[email protected]":
"integrity" "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw=="
"resolved" "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz"
"version" "7.12.11"
dependencies:
"@babel/highlight" "^7.10.4"
"@babel/compat-data@^7.16.0":
"integrity" "sha512-1o/jo7D+kC9ZjHX5v+EHrdjl3PhxMrLSOTGsOdHJ+KL8HCaEK6ehrVL2RS6oHDZp+L7xLirLrPmQtEng769J/Q=="
"resolved" "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.16.4.tgz"
"version" "7.16.4"
"@babel/core@^7.0.0", "@babel/core@^7.7.5":
"integrity" "sha512-wUcenlLzuWMZ9Zt8S0KmFwGlH6QKRh3vsm/dhDA3CHkiTA45YuG1XkHRcNRl73EFPXDp/d5kVOU0/y7x2w6OaQ=="
"resolved" "https://registry.npmjs.org/@babel/core/-/core-7.16.5.tgz"
"version" "7.16.5"
dependencies:
"@babel/code-frame" "^7.16.0"
"@babel/generator" "^7.16.5"
"@babel/helper-compilation-targets" "^7.16.3"
"@babel/helper-module-transforms" "^7.16.5"
"@babel/helpers" "^7.16.5"
"@babel/parser" "^7.16.5"
"@babel/template" "^7.16.0"
"@babel/traverse" "^7.16.5"
"@babel/types" "^7.16.0"
"convert-source-map" "^1.7.0"
"debug" "^4.1.0"
"gensync" "^1.0.0-beta.2"
"json5" "^2.1.2"
"semver" "^6.3.0"
"source-map" "^0.5.0"
"@babel/generator@^7.16.5":
"integrity" "sha512-kIvCdjZqcdKqoDbVVdt5R99icaRtrtYhYK/xux5qiWCBmfdvEYMFZ68QCrpE5cbFM1JsuArUNs1ZkuKtTtUcZA=="
"resolved" "https://registry.npmjs.org/@babel/generator/-/generator-7.16.5.tgz"
"version" "7.16.5"
dependencies:
"@babel/types" "^7.16.0"
"jsesc" "^2.5.1"
"source-map" "^0.5.0"
"@babel/helper-compilation-targets@^7.16.3":
"integrity" "sha512-vKsoSQAyBmxS35JUOOt+07cLc6Nk/2ljLIHwmq2/NM6hdioUaqEXq/S+nXvbvXbZkNDlWOymPanJGOc4CBjSJA=="
"resolved" "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.16.3.tgz"
"version" "7.16.3"
dependencies:
"@babel/compat-data" "^7.16.0"
"@babel/helper-validator-option" "^7.14.5"
"browserslist" "^4.17.5"
"semver" "^6.3.0"
"@babel/helper-environment-visitor@^7.16.5":
"integrity" "sha512-ODQyc5AnxmZWm/R2W7fzhamOk1ey8gSguo5SGvF0zcB3uUzRpTRmM/jmLSm9bDMyPlvbyJ+PwPEK0BWIoZ9wjg=="
"resolved" "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.16.5.tgz"
"version" "7.16.5"
dependencies:
"@babel/types" "^7.16.0"
"@babel/helper-function-name@^7.16.0":
"integrity" "sha512-BZh4mEk1xi2h4HFjWUXRQX5AEx4rvaZxHgax9gcjdLWdkjsY7MKt5p0otjsg5noXw+pB+clMCjw+aEVYADMjog=="
"resolved" "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.16.0.tgz"
"version" "7.16.0"
dependencies:
"@babel/helper-get-function-arity" "^7.16.0"
"@babel/template" "^7.16.0"
"@babel/types" "^7.16.0"
"@babel/helper-get-function-arity@^7.16.0":
"integrity" "sha512-ASCquNcywC1NkYh/z7Cgp3w31YW8aojjYIlNg4VeJiHkqyP4AzIvr4qx7pYDb4/s8YcsZWqqOSxgkvjUz1kpDQ=="
"resolved" "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.0.tgz"
"version" "7.16.0"
dependencies:
"@babel/types" "^7.16.0"
"@babel/helper-hoist-variables@^7.16.0":
"integrity" "sha512-1AZlpazjUR0EQZQv3sgRNfM9mEVWPK3M6vlalczA+EECcPz3XPh6VplbErL5UoMpChhSck5wAJHthlj1bYpcmg=="
"resolved" "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.0.tgz"
"version" "7.16.0"
dependencies:
"@babel/types" "^7.16.0"
"@babel/helper-module-imports@^7.16.0":
"integrity" "sha512-kkH7sWzKPq0xt3H1n+ghb4xEMP8k0U7XV3kkB+ZGy69kDk2ySFW1qPi06sjKzFY3t1j6XbJSqr4mF9L7CYVyhg=="
"resolved" "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.16.0.tgz"
"version" "7.16.0"
dependencies:
"@babel/types" "^7.16.0"
"@babel/helper-module-transforms@^7.16.5":
"integrity" "sha512-CkvMxgV4ZyyioElFwcuWnDCcNIeyqTkCm9BxXZi73RR1ozqlpboqsbGUNvRTflgZtFbbJ1v5Emvm+lkjMYY/LQ=="
"resolved" "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.16.5.tgz"
"version" "7.16.5"
dependencies:
"@babel/helper-environment-visitor" "^7.16.5"
"@babel/helper-module-imports" "^7.16.0"
"@babel/helper-simple-access" "^7.16.0"
"@babel/helper-split-export-declaration" "^7.16.0"
"@babel/helper-validator-identifier" "^7.15.7"
"@babel/template" "^7.16.0"
"@babel/traverse" "^7.16.5"
"@babel/types" "^7.16.0"
"@babel/helper-simple-access@^7.16.0":
"integrity" "sha512-o1rjBT/gppAqKsYfUdfHq5Rk03lMQrkPHG1OWzHWpLgVXRH4HnMM9Et9CVdIqwkCQlobnGHEJMsgWP/jE1zUiw=="
"resolved" "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.16.0.tgz"
"version" "7.16.0"
dependencies:
"@babel/types" "^7.16.0"
"@babel/helper-split-export-declaration@^7.16.0":
"integrity" "sha512-0YMMRpuDFNGTHNRiiqJX19GjNXA4H0E8jZ2ibccfSxaCogbm3am5WN/2nQNj0YnQwGWM1J06GOcQ2qnh3+0paw=="
"resolved" "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.0.tgz"
"version" "7.16.0"
dependencies:
"@babel/types" "^7.16.0"
"@babel/helper-validator-identifier@^7.15.7":
"integrity" "sha512-K4JvCtQqad9OY2+yTU8w+E82ywk/fe+ELNlt1G8z3bVGlZfn/hOcQQsUhGhW/N+tb3fxK800wLtKOE/aM0m72w=="
"resolved" "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.15.7.tgz"
"version" "7.15.7"
"@babel/helper-validator-option@^7.14.5":
"integrity" "sha512-OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow=="
"resolved" "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.14.5.tgz"
"version" "7.14.5"
"@babel/helpers@^7.16.5":
"integrity" "sha512-TLgi6Lh71vvMZGEkFuIxzaPsyeYCHQ5jJOOX1f0xXn0uciFuE8cEk0wyBquMcCxBXZ5BJhE2aUB7pnWTD150Tw=="
"resolved" "https://registry.npmjs.org/@babel/helpers/-/helpers-7.16.5.tgz"
"version" "7.16.5"
dependencies:
"@babel/template" "^7.16.0"
"@babel/traverse" "^7.16.5"
"@babel/types" "^7.16.0"
"@babel/highlight@^7.10.4", "@babel/highlight@^7.16.0":
"integrity" "sha512-t8MH41kUQylBtu2+4IQA3atqevA2lRgqA2wyVB/YiWmsDSuylZZuXOUy9ric30hfzauEFfdsuk/eXTRrGrfd0g=="
"resolved" "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.0.tgz"
"version" "7.16.0"
dependencies:
"@babel/helper-validator-identifier" "^7.15.7"
"chalk" "^2.0.0"
"js-tokens" "^4.0.0"
"@babel/parser@^7.16.0", "@babel/parser@^7.16.5":
"integrity" "sha512-Gr86ujcNuPDnNOY8mi383Hvi8IYrJVJYuf3XcuBM/Dgd+bINn/7tHqsj+tKkoreMbmGsFLsltI/JJd8fOFWGDQ=="
"resolved" "https://registry.npmjs.org/@babel/parser/-/parser-7.16.6.tgz"
"version" "7.16.6"
"@babel/template@^7.16.0":
"integrity" "sha512-MnZdpFD/ZdYhXwiunMqqgyZyucaYsbL0IrjoGjaVhGilz+x8YB++kRfygSOIj1yOtWKPlx7NBp+9I1RQSgsd5A=="
"resolved" "https://registry.npmjs.org/@babel/template/-/template-7.16.0.tgz"
"version" "7.16.0"
dependencies:
"@babel/code-frame" "^7.16.0"
"@babel/parser" "^7.16.0"
"@babel/types" "^7.16.0"
"@babel/traverse@^7.16.5":
"integrity" "sha512-FOCODAzqUMROikDYLYxl4nmwiLlu85rNqBML/A5hKRVXG2LV8d0iMqgPzdYTcIpjZEBB7D6UDU9vxRZiriASdQ=="
"resolved" "https://registry.npmjs.org/@babel/traverse/-/traverse-7.16.5.tgz"
"version" "7.16.5"
dependencies:
"@babel/code-frame" "^7.16.0"
"@babel/generator" "^7.16.5"
"@babel/helper-environment-visitor" "^7.16.5"
"@babel/helper-function-name" "^7.16.0"
"@babel/helper-hoist-variables" "^7.16.0"
"@babel/helper-split-export-declaration" "^7.16.0"
"@babel/parser" "^7.16.5"
"@babel/types" "^7.16.0"
"debug" "^4.1.0"
"globals" "^11.1.0"
"@babel/types@^7.16.0":
"integrity" "sha512-PJgg/k3SdLsGb3hhisFvtLOw5ts113klrpLuIPtCJIU+BB24fqq6lf8RWqKJEjzqXR9AEH1rIb5XTqwBHB+kQg=="
"resolved" "https://registry.npmjs.org/@babel/types/-/types-7.16.0.tgz"
"version" "7.16.0"
dependencies:
"@babel/helper-validator-identifier" "^7.15.7"
"to-fast-properties" "^2.0.0"
"@eslint/eslintrc@^0.4.3":
"integrity" "sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw=="
"resolved" "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.3.tgz"
"version" "0.4.3"
dependencies:
"ajv" "^6.12.4"
"debug" "^4.1.1"
"espree" "^7.3.0"
"globals" "^13.9.0"
"ignore" "^4.0.6"
"import-fresh" "^3.2.1"
"js-yaml" "^3.13.1"
"minimatch" "^3.0.4"
"strip-json-comments" "^3.1.1"
"@exodus/schemasafe@^1.0.0-rc.2":
"integrity" "sha512-dDnQizD94EdBwEj/fh3zPRa/HWCS9O5au2PuHhZBbuM3xWHxuaKzPBOEWze7Nn0xW68MIpZ7Xdyn1CoCpjKCuQ=="
"resolved" "https://registry.npmjs.org/@exodus/schemasafe/-/schemasafe-1.0.0-rc.6.tgz"
"version" "1.0.0-rc.6"
"@hapi/hoek@^9.0.0", "@hapi/[email protected]":
"integrity" "sha512-gfta+H8aziZsm8pZa0vj04KO6biEiisppNgA1kbJvFrrWu9Vm7eaUEy76DIxsuTaWvti5fkJVhllWc6ZTE+Mdw=="
"resolved" "https://registry.npmjs.org/@hapi/hoek/-/hoek-9.2.1.tgz"
"version" "9.2.1"
"@hapi/shot@^5.0.5":
"integrity" "sha512-x5AMSZ5+j+Paa8KdfCoKh+klB78otxF+vcJR/IoN91Vo2e5ulXIW6HUsFTCU+4W6P/Etaip9nmdAx2zWDimB2A=="
"resolved" "https://registry.npmjs.org/@hapi/shot/-/shot-5.0.5.tgz"
"version" "5.0.5"
dependencies:
"@hapi/hoek" "9.x.x"
"@hapi/validate" "1.x.x"
"@hapi/topo@^5.0.0":
"integrity" "sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg=="
"resolved" "https://registry.npmjs.org/@hapi/topo/-/topo-5.1.0.tgz"
"version" "5.1.0"
dependencies:
"@hapi/hoek" "^9.0.0"
"@hapi/[email protected]":
"integrity" "sha512-/XMR0N0wjw0Twzq2pQOzPBZlDzkekGcoCtzO314BpIEsbXdYGthQUbxgkGDf4nhk1+IPDAsXqWjMohRQYO06UA=="
"resolved" "https://registry.npmjs.org/@hapi/validate/-/validate-1.1.3.tgz"
"version" "1.1.3"
dependencies:
"@hapi/hoek" "^9.0.0"
"@hapi/topo" "^5.0.0"
"@humanwhocodes/config-array@^0.5.0":
"integrity" "sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg=="
"resolved" "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.5.0.tgz"
"version" "0.5.0"
dependencies:
"@humanwhocodes/object-schema" "^1.2.0"
"debug" "^4.1.1"
"minimatch" "^3.0.4"
"@humanwhocodes/object-schema@^1.2.0":
"integrity" "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA=="
"resolved" "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz"
"version" "1.2.1"
"@istanbuljs/load-nyc-config@^1.0.0":
"integrity" "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ=="
"resolved" "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz"
"version" "1.1.0"
dependencies:
"camelcase" "^5.3.1"
"find-up" "^4.1.0"
"get-package-type" "^0.1.0"
"js-yaml" "^3.13.1"
"resolve-from" "^5.0.0"
"@istanbuljs/schema@^0.1.2":
"integrity" "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA=="
"resolved" "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz"
"version" "0.1.3"
"@loopback/authentication-jwt@^0.10.0":
"integrity" "sha512-fWjebGNKPfCRPTl0J3OqgILpfDP0b+p8w5UNoqbOS9ZQmZAczmbzhg89XTLPOflYdG6IY9MvdgjH6Rv4CrAX0w=="
"resolved" "https://registry.npmjs.org/@loopback/authentication-jwt/-/authentication-jwt-0.10.0.tgz"
"version" "0.10.0"
dependencies:
"@loopback/security" "^0.6.0"
"@types/bcryptjs" "2.4.2"
"bcryptjs" "^2.4.3"
"debug" "^4.3.2"
"jsonwebtoken" "^8.5.1"
"@loopback/authentication@^8.0.0":
"integrity" "sha512-oiDJZRrBYR0STo8Da7lADAPqmHyYOslXxTGQZmI3ckQlglIvtdKB69y3W8xTSrDI5cUrNVXLjQwDqIydchWbrg=="
"resolved" "https://registry.npmjs.org/@loopback/authentication/-/authentication-8.0.0.tgz"
"version" "8.0.0"
dependencies:
"@loopback/security" "^0.6.0"
"@types/express" "^4.17.13"
"@types/lodash" "^4.14.176"
"lodash" "^4.17.21"
"tslib" "^2.3.1"
"@loopback/boot@^4.0.0":
"integrity" "sha512-zJUtFx240PdgsWV5gfJ019M5As3Xj3LVZpS/6LTQF8mx5q03YF5imT0BrrdiTtMQc3/w68I0iXjGV3I7n6ptfQ=="
"resolved" "https://registry.npmjs.org/@loopback/boot/-/boot-4.0.0.tgz"
"version" "4.0.0"
dependencies:
"@loopback/model-api-builder" "^3.0.0"
"@loopback/repository" "^4.0.0"
"@loopback/service-proxy" "^4.0.0"
"@types/debug" "^4.1.7"
"@types/glob" "^7.2.0"
"debug" "^4.3.2"
"glob" "^7.2.0"
"tslib" "^2.3.1"
"@loopback/build@^8.0.0":
"integrity" "sha512-MxKgXeE8VpEI2i25hWufDNsY99Mavtn8nzsgEsgLGCkUnOTse4lHnsA/fwHI8LdSJ8JCXFE5Sc4guqvqm0Ajuw=="
"resolved" "https://registry.npmjs.org/@loopback/build/-/build-8.0.0.tgz"
"version" "8.0.0"
dependencies:
"@loopback/eslint-config" "^12.0.0"
"@types/mocha" "^9.0.0"
"@types/node" "^10.17.60"
"cross-spawn" "^7.0.3"
"debug" "^4.3.2"
"eslint" "^7.32.0"
"fs-extra" "^10.0.0"
"glob" "^7.2.0"
"lodash" "^4.17.21"
"mocha" "^9.1.3"
"nyc" "^15.1.0"
"prettier" "^2.4.1"
"rimraf" "^3.0.2"
"source-map-support" "^0.5.20"
"typescript" "~4.5.2"
"@loopback/context@^4.0.0":
"integrity" "sha512-0G2uarJqNc1JyY7K/QUDaHRl0kOZ79NeFrDkXcVWOBHHUBfi4xLNUyzNz8UP29Mp8WeSnSQ6+46NjadiqP0lqg=="
"resolved" "https://registry.npmjs.org/@loopback/context/-/context-4.0.0.tgz"
"version" "4.0.0"
dependencies:
"@loopback/metadata" "^4.0.0"
"@types/debug" "^4.1.7"
"debug" "^4.3.2"
"hyperid" "^2.3.1"
"p-event" "^4.2.0"
"tslib" "^2.3.1"
"uuid" "^8.3.2"
"@loopback/core@^3.0.0":
"integrity" "sha512-LZ/Fr1T27oNMdnOZoVGohagUQQC40aQwFXZkpAUNZqU3vwA5tRR9S9To49EuGYvfyLvA8MdnLtfHydInpO01AA=="
"resolved" "https://registry.npmjs.org/@loopback/core/-/core-3.0.0.tgz"
"version" "3.0.0"
dependencies:
"@loopback/context" "^4.0.0"
"debug" "^4.3.2"
"tslib" "^2.3.1"
"@loopback/eslint-config@^12.0.0":
"integrity" "sha512-QHbWLBMOQ7jM/+18d35lW4a2YxN0AV/gWeeN63mO3rAMHmWUd7MvwAw22zCKqJF8wZl6VGCV/8YolTNUoOS1Jg=="
"resolved" "https://registry.npmjs.org/@loopback/eslint-config/-/eslint-config-12.0.0.tgz"
"version" "12.0.0"
dependencies:
"@typescript-eslint/eslint-plugin" "^4.33.0"
"@typescript-eslint/parser" "^4.33.0"
"eslint-config-prettier" "^8.3.0"
"eslint-plugin-eslint-plugin" "^4.0.2"
"eslint-plugin-mocha" "^9.0.0"
"@loopback/express@^4.0.0":
"integrity" "sha512-4sPXBjE/mvnnobyNfik6fmTKBcG+Frt7np0SpfV8PsqtIuTTXqoiREko0BkRvrq8Mk2XZcSFZolg4DL0Er8SAQ=="
"resolved" "https://registry.npmjs.org/@loopback/express/-/express-4.0.0.tgz"
"version" "4.0.0"
dependencies:
"@loopback/http-server" "^3.0.0"
"@types/body-parser" "^1.19.1"
"@types/express" "^4.17.13"
"@types/express-serve-static-core" "^4.17.24"
"@types/http-errors" "^1.8.1"
"body-parser" "^1.19.0"
"debug" "^4.3.2"
"express" "^4.17.1"
"http-errors" "^1.8.0"
"on-finished" "^2.3.0"
"toposort" "^2.0.2"
"tslib" "^2.3.1"
"@loopback/filter@^2.0.0":
"integrity" "sha512-5YsMlp5wucVc8rW/CJahGi+GTNrQMDZJaGIQuZL3yIfHPAcjNyQlk+AQrLHJxbyTM5jGOwf9oY2SATKn06JUew=="
"resolved" "https://registry.npmjs.org/@loopback/filter/-/filter-2.0.0.tgz"
"version" "2.0.0"
dependencies:
"tslib" "^2.3.1"
"@loopback/http-server@^3.0.0":
"integrity" "sha512-48pfhGPo6UTgymRRgyxbBlmV70njyxzMyEVe7tKKA/BQkRcEV8opoXQd2fK6WPyR3DMSKIb3kCkZ0bOONeTnOA=="
"resolved" "https://registry.npmjs.org/@loopback/http-server/-/http-server-3.0.0.tgz"
"version" "3.0.0"
dependencies:
"debug" "^4.3.2"
"stoppable" "^1.1.0"
"tslib" "^2.3.1"
"@loopback/metadata@^4.0.0":
"integrity" "sha512-AM20YWIePhG8MZ6AesRS2X1WbyuVDxfU7mqUX5x6rbCBwH4fPNJFb6OIWtqT6BPXAJ+/3qPNXQcCmczCwlWpBw=="
"resolved" "https://registry.npmjs.org/@loopback/metadata/-/metadata-4.0.0.tgz"
"version" "4.0.0"
dependencies:
"debug" "^4.3.2"
"lodash" "^4.17.21"
"reflect-metadata" "^0.1.13"
"tslib" "^2.3.1"
"@loopback/model-api-builder@^3.0.0":
"integrity" "sha512-2XNn8e74Z7L97tkDZKdJ0g7iWOOIe2SxrXo9qBoGO7j3tRok1fcvOKz9N5Gjtfs5YSyvbLJy3m/lDgtMJAcV0w=="
"resolved" "https://registry.npmjs.org/@loopback/model-api-builder/-/model-api-builder-3.0.0.tgz"
"version" "3.0.0"
dependencies:
"tslib" "^2.3.1"
"@loopback/openapi-v3@^7.0.0":
"integrity" "sha512-ffyHMfh86oV1xVZJWAlvGtCFhYTQgy60O7p9RQmYX5Vw8WNLqC+ZfM8BpCTvLbs5fS8tvNntiVXrGQoF+vslFQ=="
"resolved" "https://registry.npmjs.org/@loopback/openapi-v3/-/openapi-v3-7.0.0.tgz"
"version" "7.0.0"
dependencies:
"@loopback/repository-json-schema" "^5.0.0"
"debug" "^4.3.2"
"http-status" "^1.5.0"
"json-merge-patch" "^1.0.2"
"lodash" "^4.17.21"
"openapi3-ts" "^2.0.1"
"tslib" "^2.3.1"
"@loopback/repository-json-schema@^5.0.0":
"integrity" "sha512-hy2bLly6+fYTgpqIRTwIMUsQYAFet5ALf2jCjW8iUEIPm+0W02IpomTn9BKR9ys15EGDHaszFEz9Pox00k8BCA=="
"resolved" "https://registry.npmjs.org/@loopback/repository-json-schema/-/repository-json-schema-5.0.0.tgz"
"version" "5.0.0"
dependencies:
"@types/json-schema" "^7.0.9"
"debug" "^4.3.2"
"tslib" "^2.3.1"
"@loopback/repository@^4.0.0":
"integrity" "sha512-kOcm94plGqkXhuYf4Iw2NsoGFyjmbKoDNAw8MDRIQQjaHdpat0TeMIbslvs5AmU42nKkmbvc+xRIyTdntfAHxA=="
"resolved" "https://registry.npmjs.org/@loopback/repository/-/repository-4.0.0.tgz"
"version" "4.0.0"
dependencies:
"@loopback/filter" "^2.0.0"
"@types/debug" "^4.1.7"
"debug" "^4.3.2"
"lodash" "^4.17.21"
"loopback-datasource-juggler" "^4.26.0"
"tslib" "^2.3.1"
"@loopback/rest-explorer@^4.0.0":
"integrity" "sha512-lm/G3d3k0FD8RVgq803hGtEBtVXA+Mt9kliOqXcW4p28VkcDpMSPIsgn0yoUX5DHpBxZvNcuacxj7tiknTcvUw=="
"resolved" "https://registry.npmjs.org/@loopback/rest-explorer/-/rest-explorer-4.0.0.tgz"
"version" "4.0.0"
dependencies:
"ejs" "^3.1.6"
"swagger-ui-dist" "3.52.5"
"tslib" "^2.3.1"
"@loopback/rest@^11.0.0":
"integrity" "sha512-SBtWyK655tT7Bx1yPATLLfQVIJHkef0GxQ7Ay7IMeNLhB+8FdoOAe0TdfdJ4T/4cLXtxu3YzOZyDIKW2Ab5rPg=="
"resolved" "https://registry.npmjs.org/@loopback/rest/-/rest-11.0.0.tgz"
"version" "11.0.0"
dependencies:
"@loopback/express" "^4.0.0"
"@loopback/http-server" "^3.0.0"
"@loopback/openapi-v3" "^7.0.0"
"@openapi-contrib/openapi-schema-to-json-schema" "^3.1.1"
"@types/body-parser" "^1.19.1"
"@types/cors" "^2.8.12"
"@types/express" "^4.17.13"
"@types/express-serve-static-core" "^4.17.24"
"@types/http-errors" "^1.8.1"
"@types/on-finished" "^2.3.1"
"@types/serve-static" "1.13.10"
"@types/type-is" "^1.6.3"
"ajv" "^8.6.3"
"ajv-errors" "^3.0.0"
"ajv-formats" "^2.1.1"
"ajv-keywords" "^5.0.0"
"body-parser" "^1.19.0"
"cors" "^2.8.5"
"debug" "^4.3.2"
"express" "^4.17.1"
"http-errors" "^1.8.0"
"js-yaml" "^4.1.0"
"json-schema-compare" "^0.2.2"
"lodash" "^4.17.21"
"on-finished" "^2.3.0"
"path-to-regexp" "^6.2.0"
"qs" "^6.10.1"
"strong-error-handler" "^4.0.0"
"tslib" "^2.3.1"
"type-is" "^1.6.18"
"validator" "^13.6.0"
"@loopback/security@^0.6.0":
"integrity" "sha512-yAA9TfHWCTb9w2f8jzXh2P9Z5KeRSqR/zLW9G+NJWRUSU2qbGXcoPnDTcN9XO3BHtv3OfC8oDitkYy8fiXsdiA=="
"resolved" "https://registry.npmjs.org/@loopback/security/-/security-0.6.0.tgz"
"version" "0.6.0"
dependencies:
"debug" "^4.3.2"
"tslib" "^2.3.1"
"@loopback/service-proxy@^4.0.0":
"integrity" "sha512-ACmDuOP22hU5T/UY/Q21kOWLwVUn8nCCATYdltTTVM8KpnFh6xjA751F1SWYYHvBqRnFZHM9KGctMnJOUnfoHQ=="
"resolved" "https://registry.npmjs.org/@loopback/service-proxy/-/service-proxy-4.0.0.tgz"
"version" "4.0.0"
dependencies:
"loopback-datasource-juggler" "^4.26.0"
"tslib" "^2.3.1"
"@loopback/testlab@^4.0.0":
"integrity" "sha512-KiR+r2fu5k0EkWuCT1g784CXtFbtg68hT9l63/IYrYexIaKrANo+9+/zJxv7FhYYsNUi10/nwGWSbZJRaSFwxg=="
"resolved" "https://registry.npmjs.org/@loopback/testlab/-/testlab-4.0.0.tgz"
"version" "4.0.0"
dependencies:
"@hapi/shot" "^5.0.5"
"@types/express" "^4.17.13"
"@types/fs-extra" "^9.0.13"
"@types/shot" "^4.0.1"
"@types/sinon" "^10.0.6"
"@types/supertest" "^2.0.11"
"express" "^4.17.1"
"fs-extra" "^10.0.0"
"oas-validator" "^5.0.8"
"should" "^13.2.3"
"sinon" "^11.1.2"
"supertest" "^6.1.6"
"tslib" "^2.3.1"
"@nodelib/[email protected]":
"integrity" "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g=="
"resolved" "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz"
"version" "2.1.5"
dependencies:
"@nodelib/fs.stat" "2.0.5"
"run-parallel" "^1.1.9"
"@nodelib/fs.stat@^2.0.2", "@nodelib/[email protected]":
"integrity" "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A=="
"resolved" "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz"
"version" "2.0.5"
"@nodelib/fs.walk@^1.2.3":
"integrity" "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg=="
"resolved" "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz"
"version" "1.2.8"
dependencies:
"@nodelib/fs.scandir" "2.1.5"
"fastq" "^1.6.0"
"@openapi-contrib/openapi-schema-to-json-schema@^3.1.1":
"integrity" "sha512-FMvdhv9Jr9tULjJAQaQzhCmNYYj2vQFVnl7CGlLAImZvJal71oedXMGszpPaZTLftAk5TCHqjnirig+P6LZxug=="
"resolved" "https://registry.npmjs.org/@openapi-contrib/openapi-schema-to-json-schema/-/openapi-schema-to-json-schema-3.1.1.tgz"
"version" "3.1.1"
dependencies:
"fast-deep-equal" "^3.1.3"
"@sinonjs/commons@^1.6.0", "@sinonjs/commons@^1.7.0", "@sinonjs/commons@^1.8.3":
"integrity" "sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ=="
"resolved" "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.3.tgz"
"version" "1.8.3"
dependencies:
"type-detect" "4.0.8"
"@sinonjs/fake-timers@^7.0.4", "@sinonjs/fake-timers@^7.1.0", "@sinonjs/fake-timers@^7.1.2":
"integrity" "sha512-iQADsW4LBMISqZ6Ci1dupJL9pprqwcVFTcOsEmQOEhW+KLCVn/Y4Jrvg2k19fIHCp+iFprriYPTdRcQR8NbUPg=="
"resolved" "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-7.1.2.tgz"
"version" "7.1.2"
dependencies:
"@sinonjs/commons" "^1.7.0"
"@sinonjs/samsam@^6.0.2":
"integrity" "sha512-jxPRPp9n93ci7b8hMfJOFDPRLFYadN6FSpeROFTR4UNF4i5b+EK6m4QXPO46BDhFgRy1JuS87zAnFOzCUwMJcQ=="
"resolved" "https://registry.npmjs.org/@sinonjs/samsam/-/samsam-6.0.2.tgz"
"version" "6.0.2"
dependencies:
"@sinonjs/commons" "^1.6.0"
"lodash.get" "^4.4.2"
"type-detect" "^4.0.8"
"@sinonjs/text-encoding@^0.7.1":
"integrity" "sha512-+iTbntw2IZPb/anVDbypzfQa+ay64MW0Zo8aJ8gZPWMMK6/OubMVb6lUPMagqjOPnmtauXnFCACVl3O7ogjeqQ=="
"resolved" "https://registry.npmjs.org/@sinonjs/text-encoding/-/text-encoding-0.7.1.tgz"
"version" "0.7.1"
"@types/[email protected]":
"integrity" "sha512-LiMQ6EOPob/4yUL66SZzu6Yh77cbzJFYll+ZfaPiPPFswtIlA/Fs1MzdKYA7JApHU49zQTbJGX3PDmCpIdDBRQ=="
"resolved" "https://registry.npmjs.org/@types/bcryptjs/-/bcryptjs-2.4.2.tgz"
"version" "2.4.2"
"@types/body-parser@*", "@types/body-parser@^1.19.1":
"integrity" "sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g=="
"resolved" "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.2.tgz"
"version" "1.19.2"
dependencies:
"@types/connect" "*"
"@types/node" "*"
"@types/connect@*":
"integrity" "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ=="
"resolved" "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz"
"version" "3.4.35"
dependencies:
"@types/node" "*"
"@types/cookiejar@*":
"integrity" "sha512-t73xJJrvdTjXrn4jLS9VSGRbz0nUY3cl2DMGDU48lKl+HR9dbbjW2A9r3g40VA++mQpy6uuHg33gy7du2BKpog=="
"resolved" "https://registry.npmjs.org/@types/cookiejar/-/cookiejar-2.1.2.tgz"
"version" "2.1.2"
"@types/cors@^2.8.12":
"integrity" "sha512-vt+kDhq/M2ayberEtJcIN/hxXy1Pk+59g2FV/ZQceeaTyCtCucjL2Q7FXlFjtWn4n15KCr1NE2lNNFhp0lEThw=="
"resolved" "https://registry.npmjs.org/@types/cors/-/cors-2.8.12.tgz"
"version" "2.8.12"
"@types/debug@^4.1.7":
"integrity" "sha512-9AonUzyTjXXhEOa0DnqpzZi6VHlqKMswga9EXjpXnnqxwLtdvPPtlO8evrI5D9S6asFRCQ6v+wpiUKbw+vKqyg=="
"resolved" "https://registry.npmjs.org/@types/debug/-/debug-4.1.7.tgz"
"version" "4.1.7"
dependencies:
"@types/ms" "*"
"@types/express-serve-static-core@^4.17.18", "@types/express-serve-static-core@^4.17.24":
"integrity" "sha512-zeu3tpouA043RHxW0gzRxwCHchMgftE8GArRsvYT0ByDMbn19olQHx5jLue0LxWY6iYtXb7rXmuVtSkhy9YZvQ=="
"resolved" "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.26.tgz"
"version" "4.17.26"
dependencies:
"@types/node" "*"
"@types/qs" "*"
"@types/range-parser" "*"
"@types/express@^4.16.0", "@types/express@^4.17.13":
"integrity" "sha512-6bSZTPaTIACxn48l50SR+axgrqm6qXFIxrdAKaG6PaJk3+zuUr35hBlgT7vOmJcum+OEaIBLtHV/qloEAFITeA=="
"resolved" "https://registry.npmjs.org/@types/express/-/express-4.17.13.tgz"
"version" "4.17.13"
dependencies:
"@types/body-parser" "*"
"@types/express-serve-static-core" "^4.17.18"
"@types/qs" "*"
"@types/serve-static" "*"
"@types/fs-extra@^9.0.13":
"integrity" "sha512-nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA=="
"resolved" "https://registry.npmjs.org/@types/fs-extra/-/fs-extra-9.0.13.tgz"
"version" "9.0.13"
dependencies:
"@types/node" "*"
"@types/glob@^7.2.0":
"integrity" "sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA=="
"resolved" "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz"
"version" "7.2.0"
dependencies:
"@types/minimatch" "*"
"@types/node" "*"
"@types/http-errors@^1.8.1":
"integrity" "sha512-e+2rjEwK6KDaNOm5Aa9wNGgyS9oSZU/4pfSMMPYNOfjvFI0WVXm29+ITRFr6aKDvvKo7uU1jV68MW4ScsfDi7Q=="
"resolved" "https://registry.npmjs.org/@types/http-errors/-/http-errors-1.8.1.tgz"
"version" "1.8.1"
"@types/json-schema@^7.0.7", "@types/json-schema@^7.0.9":
"integrity" "sha512-qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ=="
"resolved" "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.9.tgz"
"version" "7.0.9"
"@types/lodash@^4.14.176":
"integrity" "sha512-0d5Wd09ItQWH1qFbEyQ7oTQ3GZrMfth5JkbN3EvTKLXcHLRDSXeLnlvlOn0wvxVIwK5o2M8JzP/OWz7T3NRsbw=="
"resolved" "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.178.tgz"
"version" "4.14.178"
"@types/mime@^1":
"integrity" "sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw=="
"resolved" "https://registry.npmjs.org/@types/mime/-/mime-1.3.2.tgz"
"version" "1.3.2"
"@types/minimatch@*":
"integrity" "sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ=="
"resolved" "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.5.tgz"
"version" "3.0.5"
"@types/mocha@^9.0.0":
"integrity" "sha512-scN0hAWyLVAvLR9AyW7HoFF5sJZglyBsbPuHO4fv7JRvfmPBMfp1ozWqOf/e4wwPNxezBZXRfWzMb6iFLgEVRA=="
"resolved" "https://registry.npmjs.org/@types/mocha/-/mocha-9.0.0.tgz"
"version" "9.0.0"
"@types/ms@*":
"integrity" "sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA=="
"resolved" "https://registry.npmjs.org/@types/ms/-/ms-0.7.31.tgz"
"version" "0.7.31"
"@types/node@*":
"integrity" "sha512-eMhwJXc931Ihh4tkU+Y7GiLzT/y/DBNpNtr4yU9O2w3SYBsr9NaOPhQlLKRmoWtI54uNwuo0IOUFQjVOTZYRvw=="
"resolved" "https://registry.npmjs.org/@types/node/-/node-17.0.0.tgz"
"version" "17.0.0"
"@types/node@^10.17.60":
"integrity" "sha512-F0KIgDJfy2nA3zMLmWGKxcH2ZVEtCZXHHdOQs2gSaQ27+lNeEfGxzkIw90aXswATX7AZ33tahPbzy6KAfUreVw=="
"resolved" "https://registry.npmjs.org/@types/node/-/node-10.17.60.tgz"
"version" "10.17.60"
"@types/on-finished@^2.3.1":
"integrity" "sha512-mzVYaYcFs5Jd2n/O6uYIRUsFRR1cHyZLRvkLCU0E7+G5WhY0qBDAR5fUCeZbvecYOSh9ikhlesyi2UfI8B9ckQ=="
"resolved" "https://registry.npmjs.org/@types/on-finished/-/on-finished-2.3.1.tgz"
"version" "2.3.1"
dependencies:
"@types/node" "*"
"@types/qs@*":
"integrity" "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw=="
"resolved" "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz"
"version" "6.9.7"
"@types/range-parser@*":
"integrity" "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw=="
"resolved" "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.4.tgz"
"version" "1.2.4"
"@types/serve-static@*", "@types/[email protected]":
"integrity" "sha512-nCkHGI4w7ZgAdNkrEu0bv+4xNV/XDqW+DydknebMOQwkpDGx8G+HTlj7R7ABI8i8nKxVw0wtKPi1D+lPOkh4YQ=="
"resolved" "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.13.10.tgz"
"version" "1.13.10"
dependencies:
"@types/mime" "^1"
"@types/node" "*"
"@types/shot@^4.0.1":
"integrity" "sha512-LUJWxDKYWmmUpVXDWZ78hFIrqb/ho9RoKqBAFRJw4OHOS3qCKCoXCyzrfmf24lbO4COYfqL0iEWNArOfKEYW9g=="
"resolved" "https://registry.npmjs.org/@types/shot/-/shot-4.0.1.tgz"
"version" "4.0.1"
dependencies:
"@types/node" "*"
"@types/sinon@^10.0.6":
"integrity" "sha512-6EF+wzMWvBNeGrfP3Nx60hhx+FfwSg1JJBLAAP/IdIUq0EYkqCYf70VT3PhuhPX9eLD+Dp+lNdpb/ZeHG8Yezg=="
"resolved" "https://registry.npmjs.org/@types/sinon/-/sinon-10.0.6.tgz"
"version" "10.0.6"
dependencies:
"@sinonjs/fake-timers" "^7.1.0"
"@types/superagent@*":
"integrity" "sha512-YIGelp3ZyMiH0/A09PMAORO0EBGlF5xIKfDpK74wdYvWUs2o96b5CItJcWPdH409b7SAXIIG6p8NdU/4U2Maww=="
"resolved" "https://registry.npmjs.org/@types/superagent/-/superagent-4.1.13.tgz"
"version" "4.1.13"
dependencies:
"@types/cookiejar" "*"
"@types/node" "*"
"@types/supertest@^2.0.11":
"integrity" "sha512-uci4Esokrw9qGb9bvhhSVEjd6rkny/dk5PK/Qz4yxKiyppEI+dOPlNrZBahE3i+PoKFYyDxChVXZ/ysS/nrm1Q=="
"resolved" "https://registry.npmjs.org/@types/supertest/-/supertest-2.0.11.tgz"
"version" "2.0.11"
dependencies:
"@types/superagent" "*"
"@types/type-is@^1.6.3":
"integrity" "sha512-PNs5wHaNcBgCQG5nAeeZ7OvosrEsI9O4W2jAOO9BCCg4ux9ZZvH2+0iSCOIDBiKuQsiNS8CBlmfX9f5YBQ22cA=="
"resolved" "https://registry.npmjs.org/@types/type-is/-/type-is-1.6.3.tgz"
"version" "1.6.3"
dependencies:
"@types/node" "*"
"@typescript-eslint/eslint-plugin@^4.33.0":
"integrity" "sha512-aINiAxGVdOl1eJyVjaWn/YcVAq4Gi/Yo35qHGCnqbWVz61g39D0h23veY/MA0rFFGfxK7TySg2uwDeNv+JgVpg=="
"resolved" "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.33.0.tgz"
"version" "4.33.0"
dependencies:
"@typescript-eslint/experimental-utils" "4.33.0"
"@typescript-eslint/scope-manager" "4.33.0"
"debug" "^4.3.1"
"functional-red-black-tree" "^1.0.1"
"ignore" "^5.1.8"
"regexpp" "^3.1.0"
"semver" "^7.3.5"
"tsutils" "^3.21.0"
"@typescript-eslint/[email protected]":
"integrity" "sha512-zeQjOoES5JFjTnAhI5QY7ZviczMzDptls15GFsI6jyUOq0kOf9+WonkhtlIhh0RgHRnqj5gdNxW5j1EvAyYg6Q=="
"resolved" "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.33.0.tgz"
"version" "4.33.0"
dependencies:
"@types/json-schema" "^7.0.7"
"@typescript-eslint/scope-manager" "4.33.0"
"@typescript-eslint/types" "4.33.0"
"@typescript-eslint/typescript-estree" "4.33.0"
"eslint-scope" "^5.1.1"
"eslint-utils" "^3.0.0"
"@typescript-eslint/parser@^4.0.0", "@typescript-eslint/parser@^4.33.0":
"integrity" "sha512-ZohdsbXadjGBSK0/r+d87X0SBmKzOq4/S5nzK6SBgJspFo9/CUDJ7hjayuze+JK7CZQLDMroqytp7pOcFKTxZA=="
"resolved" "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.33.0.tgz"
"version" "4.33.0"
dependencies:
"@typescript-eslint/scope-manager" "4.33.0"
"@typescript-eslint/types" "4.33.0"
"@typescript-eslint/typescript-estree" "4.33.0"
"debug" "^4.3.1"
"@typescript-eslint/[email protected]":
"integrity" "sha512-5IfJHpgTsTZuONKbODctL4kKuQje/bzBRkwHE8UOZ4f89Zeddg+EGZs8PD8NcN4LdM3ygHWYB3ukPAYjvl/qbQ=="
"resolved" "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.33.0.tgz"
"version" "4.33.0"
dependencies:
"@typescript-eslint/types" "4.33.0"
"@typescript-eslint/visitor-keys" "4.33.0"
"@typescript-eslint/[email protected]":
"integrity" "sha512-zKp7CjQzLQImXEpLt2BUw1tvOMPfNoTAfb8l51evhYbOEEzdWyQNmHWWGPR6hwKJDAi+1VXSBmnhL9kyVTTOuQ=="
"resolved" "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.33.0.tgz"
"version" "4.33.0"
"@typescript-eslint/[email protected]":
"integrity" "sha512-rkWRY1MPFzjwnEVHsxGemDzqqddw2QbTJlICPD9p9I9LfsO8fdmfQPOX3uKfUaGRDFJbfrtm/sXhVXN4E+bzCA=="
"resolved" "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.33.0.tgz"
"version" "4.33.0"
dependencies:
"@typescript-eslint/types" "4.33.0"
"@typescript-eslint/visitor-keys" "4.33.0"
"debug" "^4.3.1"
"globby" "^11.0.3"
"is-glob" "^4.0.1"
"semver" "^7.3.5"
"tsutils" "^3.21.0"
"@typescript-eslint/[email protected]":
"integrity" "sha512-uqi/2aSz9g2ftcHWf8uLPJA70rUv6yuMW5Bohw+bwcuzaxQIHaKFZCKGoGXIrc9vkTJ3+0txM73K0Hq3d5wgIg=="
"resolved" "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.33.0.tgz"
"version" "4.33.0"
dependencies:
"@typescript-eslint/types" "4.33.0"
"eslint-visitor-keys" "^2.0.0"
"@ungap/[email protected]":
"integrity" "sha512-sL/cEvJWAnClXw0wHk85/2L0G6Sj8UB0Ctc1TEMbKSsmpRosqhwj9gWgFRZSrBr2f9tiXISwNhCPmlfqUqyb9Q=="
"resolved" "https://registry.npmjs.org/@ungap/promise-all-settled/-/promise-all-settled-1.1.2.tgz"
"version" "1.1.2"
"accept-language@^3.0.18":
"integrity" "sha1-9QJfF79lpGaoRYOMz5jNuHfYM4Q="
"resolved" "https://registry.npmjs.org/accept-language/-/accept-language-3.0.18.tgz"
"version" "3.0.18"
dependencies:
"bcp47" "^1.1.2"
"stable" "^0.1.6"
"accepts@^1.3.3", "accepts@~1.3.7":
"integrity" "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA=="
"resolved" "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz"
"version" "1.3.7"
dependencies:
"mime-types" "~2.1.24"
"negotiator" "0.6.2"
"acorn-jsx@^5.3.1":
"integrity" "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ=="
"resolved" "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz"
"version" "5.3.2"
"acorn@^6.0.0 || ^7.0.0 || ^8.0.0", "acorn@^7.4.0":
"integrity" "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A=="
"resolved" "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz"
"version" "7.4.1"
"aggregate-error@^3.0.0":
"integrity" "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA=="
"resolved" "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz"
"version" "3.1.0"
dependencies:
"clean-stack" "^2.0.0"
"indent-string" "^4.0.0"
"ajv-errors@^3.0.0":
"integrity" "sha512-V3wD15YHfHz6y0KdhYFjyy9vWtEVALT9UrxfN3zqlI6dMioHnJrqOYfyPKol3oqrnCM9uwkcdCwkJ0WUcbLMTQ=="
"resolved" "https://registry.npmjs.org/ajv-errors/-/ajv-errors-3.0.0.tgz"
"version" "3.0.0"
"ajv-formats@^2.1.1":
"integrity" "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA=="
"resolved" "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz"
"version" "2.1.1"
dependencies:
"ajv" "^8.0.0"
"ajv-keywords@^5.0.0":
"integrity" "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw=="
"resolved" "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz"
"version" "5.1.0"
dependencies:
"fast-deep-equal" "^3.1.3"
"ajv@^6.10.0":
"integrity" "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g=="
"resolved" "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz"
"version" "6.12.6"
dependencies:
"fast-deep-equal" "^3.1.1"
"fast-json-stable-stringify" "^2.0.0"
"json-schema-traverse" "^0.4.1"
"uri-js" "^4.2.2"
"ajv@^6.12.4":
"integrity" "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g=="
"resolved" "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz"
"version" "6.12.6"
dependencies:
"fast-deep-equal" "^3.1.1"
"fast-json-stable-stringify" "^2.0.0"
"json-schema-traverse" "^0.4.1"
"uri-js" "^4.2.2"
"ajv@^8.0.0", "ajv@^8.0.1", "ajv@^8.6.3", "ajv@^8.8.2":
"integrity" "sha512-x9VuX+R/jcFj1DHo/fCp99esgGDWiHENrKxaCENuCxpoMCmAt/COCGVDwA7kleEpEzJjDnvh3yGoOuLu0Dtllw=="
"resolved" "https://registry.npmjs.org/ajv/-/ajv-8.8.2.tgz"
"version" "8.8.2"
dependencies:
"fast-deep-equal" "^3.1.1"
"json-schema-traverse" "^1.0.0"
"require-from-string" "^2.0.2"
"uri-js" "^4.2.2"
"ansi-colors@^4.1.1", "[email protected]":
"integrity" "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA=="
"resolved" "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz"
"version" "4.1.1"
"ansi-regex@^5.0.1":
"integrity" "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="
"resolved" "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz"
"version" "5.0.1"
"ansi-styles@^3.2.1":
"integrity" "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA=="
"resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz"
"version" "3.2.1"
dependencies:
"color-convert" "^1.9.0"
"ansi-styles@^4.0.0", "ansi-styles@^4.1.0":
"integrity" "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="
"resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz"
"version" "4.3.0"
dependencies:
"color-convert" "^2.0.1"
"anymatch@~3.1.2":
"integrity" "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg=="
"resolved" "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz"
"version" "3.1.2"
dependencies:
"normalize-path" "^3.0.0"
"picomatch" "^2.0.4"
"append-transform@^2.0.0":
"integrity" "sha512-7yeyCEurROLQJFv5Xj4lEGTy0borxepjFv1g22oAdqFu//SrAlDl1O1Nxx15SH1RoliUml6p8dwJW9jvZughhg=="
"resolved" "https://registry.npmjs.org/append-transform/-/append-transform-2.0.0.tgz"
"version" "2.0.0"
dependencies:
"default-require-extensions" "^3.0.0"
"archy@^1.0.0":
"integrity" "sha1-+cjBN1fMHde8N5rHeyxipcKGjEA="
"resolved" "https://registry.npmjs.org/archy/-/archy-1.0.0.tgz"
"version" "1.0.0"
"argparse@^1.0.7":
"integrity" "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg=="
"resolved" "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz"
"version" "1.0.10"
dependencies:
"sprintf-js" "~1.0.2"
"argparse@^2.0.1":
"integrity" "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q=="
"resolved" "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz"
"version" "2.0.1"
"integrity" "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI="
"resolved" "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz"
"version" "1.1.1"
"array-union@^2.1.0":
"integrity" "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw=="
"resolved" "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz"
"version" "2.1.0"
"astral-regex@^2.0.0":
"integrity" "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ=="
"resolved" "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz"
"version" "2.0.0"
"async@^3.1.0", "async@^3.2.0":
"integrity" "sha512-H0E+qZaDEfx/FY4t7iLRv1W2fFI6+pyCeTw1uN20AQPiwqwM6ojPxHxdLv4z8hi2DtnW9BOckSspLucW7pIE5g=="
"resolved" "https://registry.npmjs.org/async/-/async-3.2.2.tgz"
"version" "3.2.2"
"integrity" "sha1-rqdNXmHB+JlhO/ZL2mbUx48v0X0="
"resolved" "https://registry.npmjs.org/async/-/async-0.9.2.tgz"
"version" "0.9.2"