-
Notifications
You must be signed in to change notification settings - Fork 1
/
package-lock.json
10415 lines (10415 loc) · 436 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": "opensea-api",
"version": "1.0.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"0x.js": {
"version": "0.29.2",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/0x.js/-/0x.js-0.29.2.tgz",
"integrity": "sha512-KG7VED+NVCM2PetW9Nj4+6eflm7ANrUn2+7fMdvHHrSV24Pnz1dgnyFFttFp8gp4CUlQuByBWsvyRo6A8kpmyg==",
"requires": {
"@0xproject/assert": "^0.0.10",
"@0xproject/json-schemas": "^0.7.2",
"@0xproject/utils": "^0.1.3",
"@0xproject/web3-wrapper": "^0.1.4",
"bintrees": "^1.0.2",
"bn.js": "^4.11.8",
"compare-versions": "^3.0.1",
"ethereumjs-abi": "^0.6.4",
"ethereumjs-blockstream": "^2.0.6",
"ethereumjs-util": "^5.1.1",
"find-versions": "^2.0.0",
"js-sha3": "^0.6.1",
"lodash": "^4.17.4",
"uuid": "^3.1.0",
"web3": "^0.20.0"
},
"dependencies": {
"@0xproject/assert": {
"version": "0.0.10",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/@0xproject%2fassert/-/assert-0.0.10.tgz",
"integrity": "sha512-ixOh0WCMz6iukuzBiMbqD3zz5aNV0WoP65i3Wh+pjCtnbN58u6+Fz1Is6UHqblbLpVOEloAsc38mx3J2vdFTSA==",
"requires": {
"@0xproject/json-schemas": "^0.7.2",
"@0xproject/utils": "^0.1.3",
"lodash": "^4.17.4",
"valid-url": "^1.0.9"
}
},
"bignumber.js": {
"version": "git+https://github.com/frozeman/bignumber.js-nolookahead.git#57692b3ecfc98bbdd6b3a516cb2353652ea49934",
"from": "git+https://github.com/frozeman/bignumber.js-nolookahead.git"
},
"js-sha3": {
"version": "0.6.1",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/js-sha3/-/js-sha3-0.6.1.tgz",
"integrity": "sha1-W4n3enR3Z5h39YxKB1JAk0sflcA="
},
"utf8": {
"version": "2.1.2",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/utf8/-/utf8-2.1.2.tgz",
"integrity": "sha1-H6DZJw6b6FDZsFAn9jUZv0ZFfZY="
},
"web3": {
"version": "0.20.7",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/web3/-/web3-0.20.7.tgz",
"integrity": "sha512-VU6/DSUX93d1fCzBz7WP/SGCQizO1rKZi4Px9j/3yRyfssHyFcZamMw2/sj4E8TlfMXONvZLoforR8B4bRoyTQ==",
"requires": {
"bignumber.js": "git+https://github.com/frozeman/bignumber.js-nolookahead.git",
"crypto-js": "^3.1.4",
"utf8": "^2.1.1",
"xhr2-cookies": "^1.1.0",
"xmlhttprequest": "*"
}
}
}
},
"@0xproject/abi-gen": {
"version": "0.1.7",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/@0xproject%2fabi-gen/-/abi-gen-0.1.7.tgz",
"integrity": "sha512-mFFprGLVYHl9sD6PGwcAwTqncueqfau6wPGwJV7mQ/Vj3thMo17BY8xzpeSIkXjrdo6lZHlzyVUVrEA1krfjSw==",
"requires": {
"@0xproject/utils": "^0.3.0",
"chalk": "^2.3.0",
"glob": "^7.1.2",
"handlebars": "^4.0.11",
"lodash": "^4.17.4",
"mkdirp": "^0.5.1",
"to-snake-case": "^1.0.0",
"web3": "^0.20.0",
"yargs": "^10.0.3"
},
"dependencies": {
"@0xproject/utils": {
"version": "0.3.4",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/@0xproject%2futils/-/utils-0.3.4.tgz",
"integrity": "sha512-6rNzuZvY3PghEMcZBGzwGdyMBQ11DXXWWMF3Ar3ajRZvSIjPSLpO7cVXcQQOTnTksiSDLJn/kkaQHz8ZT9yJ+w==",
"requires": {
"bignumber.js": "~4.1.0",
"js-sha3": "^0.7.0",
"lodash": "^4.17.4",
"web3": "^0.20.0"
}
},
"ansi-regex": {
"version": "3.0.0",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/ansi-regex/-/ansi-regex-3.0.0.tgz",
"integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg="
},
"ansi-styles": {
"version": "3.2.1",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/ansi-styles/-/ansi-styles-3.2.1.tgz",
"integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
"requires": {
"color-convert": "^1.9.0"
}
},
"camelcase": {
"version": "4.1.0",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/camelcase/-/camelcase-4.1.0.tgz",
"integrity": "sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0="
},
"chalk": {
"version": "2.4.2",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/chalk/-/chalk-2.4.2.tgz",
"integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
"requires": {
"ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5",
"supports-color": "^5.3.0"
}
},
"cliui": {
"version": "4.1.0",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/cliui/-/cliui-4.1.0.tgz",
"integrity": "sha512-4FG+RSG9DL7uEwRUZXZn3SS34DiDPfzP0VOiEwtUWlE+AR2EIg+hSyvrIgUUfhdgR/UkAeW2QHgeP+hWrXs7jQ==",
"requires": {
"string-width": "^2.1.1",
"strip-ansi": "^4.0.0",
"wrap-ansi": "^2.0.0"
}
},
"color-convert": {
"version": "1.9.3",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/color-convert/-/color-convert-1.9.3.tgz",
"integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
"requires": {
"color-name": "1.1.3"
}
},
"color-name": {
"version": "1.1.3",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/color-name/-/color-name-1.1.3.tgz",
"integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU="
},
"find-up": {
"version": "2.1.0",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/find-up/-/find-up-2.1.0.tgz",
"integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=",
"requires": {
"locate-path": "^2.0.0"
}
},
"get-caller-file": {
"version": "1.0.3",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/get-caller-file/-/get-caller-file-1.0.3.tgz",
"integrity": "sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w=="
},
"has-flag": {
"version": "3.0.0",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/has-flag/-/has-flag-3.0.0.tgz",
"integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0="
},
"is-fullwidth-code-point": {
"version": "2.0.0",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz",
"integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8="
},
"locate-path": {
"version": "2.0.0",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/locate-path/-/locate-path-2.0.0.tgz",
"integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=",
"requires": {
"p-locate": "^2.0.0",
"path-exists": "^3.0.0"
}
},
"p-limit": {
"version": "1.3.0",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/p-limit/-/p-limit-1.3.0.tgz",
"integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==",
"requires": {
"p-try": "^1.0.0"
}
},
"p-locate": {
"version": "2.0.0",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/p-locate/-/p-locate-2.0.0.tgz",
"integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=",
"requires": {
"p-limit": "^1.1.0"
}
},
"p-try": {
"version": "1.0.0",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/p-try/-/p-try-1.0.0.tgz",
"integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M="
},
"path-exists": {
"version": "3.0.0",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/path-exists/-/path-exists-3.0.0.tgz",
"integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU="
},
"string-width": {
"version": "2.1.1",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/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://front-stb-dev.canal-bis.com:443/npm-fronttv/strip-ansi/-/strip-ansi-4.0.0.tgz",
"integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=",
"requires": {
"ansi-regex": "^3.0.0"
}
},
"supports-color": {
"version": "5.5.0",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/supports-color/-/supports-color-5.5.0.tgz",
"integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
"requires": {
"has-flag": "^3.0.0"
}
},
"utf8": {
"version": "2.1.2",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/utf8/-/utf8-2.1.2.tgz",
"integrity": "sha1-H6DZJw6b6FDZsFAn9jUZv0ZFfZY="
},
"web3": {
"version": "0.20.7",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/web3/-/web3-0.20.7.tgz",
"integrity": "sha512-VU6/DSUX93d1fCzBz7WP/SGCQizO1rKZi4Px9j/3yRyfssHyFcZamMw2/sj4E8TlfMXONvZLoforR8B4bRoyTQ==",
"requires": {
"bignumber.js": "git+https://github.com/frozeman/bignumber.js-nolookahead.git",
"crypto-js": "^3.1.4",
"utf8": "^2.1.1",
"xhr2-cookies": "^1.1.0",
"xmlhttprequest": "*"
},
"dependencies": {
"bignumber.js": {
"version": "git+https://github.com/frozeman/bignumber.js-nolookahead.git#57692b3ecfc98bbdd6b3a516cb2353652ea49934",
"from": "git+https://github.com/frozeman/bignumber.js-nolookahead.git"
}
}
},
"wrap-ansi": {
"version": "2.1.0",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/wrap-ansi/-/wrap-ansi-2.1.0.tgz",
"integrity": "sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU=",
"requires": {
"string-width": "^1.0.1",
"strip-ansi": "^3.0.1"
},
"dependencies": {
"ansi-regex": {
"version": "2.1.1",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/ansi-regex/-/ansi-regex-2.1.1.tgz",
"integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8="
},
"is-fullwidth-code-point": {
"version": "1.0.0",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz",
"integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=",
"requires": {
"number-is-nan": "^1.0.0"
}
},
"string-width": {
"version": "1.0.2",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/string-width/-/string-width-1.0.2.tgz",
"integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=",
"requires": {
"code-point-at": "^1.0.0",
"is-fullwidth-code-point": "^1.0.0",
"strip-ansi": "^3.0.0"
}
},
"strip-ansi": {
"version": "3.0.1",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/strip-ansi/-/strip-ansi-3.0.1.tgz",
"integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=",
"requires": {
"ansi-regex": "^2.0.0"
}
}
}
},
"y18n": {
"version": "3.2.2",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/y18n/-/y18n-3.2.2.tgz",
"integrity": "sha512-uGZHXkHnhF0XeeAPgnKfPv1bgKAYyVvmNL1xlKsPYZPaIHxGti2hHqvOCQv71XMsLxu1QjergkqogUnms5D3YQ=="
},
"yargs": {
"version": "10.1.2",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/yargs/-/yargs-10.1.2.tgz",
"integrity": "sha512-ivSoxqBGYOqQVruxD35+EyCFDYNEFL/Uo6FcOnz+9xZdZzK0Zzw4r4KhbrME1Oo2gOggwJod2MnsdamSG7H9ig==",
"requires": {
"cliui": "^4.0.0",
"decamelize": "^1.1.1",
"find-up": "^2.1.0",
"get-caller-file": "^1.0.1",
"os-locale": "^2.0.0",
"require-directory": "^2.1.1",
"require-main-filename": "^1.0.1",
"set-blocking": "^2.0.0",
"string-width": "^2.0.0",
"which-module": "^2.0.0",
"y18n": "^3.2.1",
"yargs-parser": "^8.1.0"
}
},
"yargs-parser": {
"version": "8.1.0",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/yargs-parser/-/yargs-parser-8.1.0.tgz",
"integrity": "sha512-yP+6QqN8BmrgW2ggLtTbdrOyBNSI7zBa4IykmiV5R1wl1JWNxQvWhMfMdmzIYtKU7oP3OOInY/tl2ov3BDjnJQ==",
"requires": {
"camelcase": "^4.1.0"
}
}
}
},
"@0xproject/assert": {
"version": "0.0.11",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/@0xproject%2fassert/-/assert-0.0.11.tgz",
"integrity": "sha512-hl4C3w5qX7vbvPses/PtOlZg4tX/elXJ3RPuEOYvHNnBEOFybNSDsGrrPegPxkW56mZWBhwyBaqThTj9OoVmYQ==",
"requires": {
"@0xproject/json-schemas": "^0.7.3",
"@0xproject/utils": "^0.2.0",
"lodash": "^4.17.4",
"valid-url": "^1.0.9"
},
"dependencies": {
"@0xproject/utils": {
"version": "0.2.4",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/@0xproject%2futils/-/utils-0.2.4.tgz",
"integrity": "sha512-Le2BDLybmEW+gt2VjbTgL0REDa+58CN4QA64VGUGBFueJ3IPqQQv6ctuZm9MkwW13ckXs+kR5nqgcfRnV1cDsg==",
"requires": {
"bignumber.js": "~4.1.0",
"js-sha3": "^0.7.0",
"lodash": "^4.17.4",
"web3": "^0.20.0"
},
"dependencies": {
"web3": {
"version": "0.20.7",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/web3/-/web3-0.20.7.tgz",
"integrity": "sha512-VU6/DSUX93d1fCzBz7WP/SGCQizO1rKZi4Px9j/3yRyfssHyFcZamMw2/sj4E8TlfMXONvZLoforR8B4bRoyTQ==",
"requires": {
"bignumber.js": "git+https://github.com/frozeman/bignumber.js-nolookahead.git",
"crypto-js": "^3.1.4",
"utf8": "^2.1.1",
"xhr2-cookies": "^1.1.0",
"xmlhttprequest": "*"
},
"dependencies": {
"bignumber.js": {
"version": "git+https://github.com/frozeman/bignumber.js-nolookahead.git#57692b3ecfc98bbdd6b3a516cb2353652ea49934",
"from": "git+https://github.com/frozeman/bignumber.js-nolookahead.git"
}
}
}
}
},
"utf8": {
"version": "2.1.2",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/utf8/-/utf8-2.1.2.tgz",
"integrity": "sha1-H6DZJw6b6FDZsFAn9jUZv0ZFfZY="
}
}
},
"@0xproject/json-schemas": {
"version": "0.7.24",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/@0xproject%2fjson-schemas/-/json-schemas-0.7.24.tgz",
"integrity": "sha1-IaErQ6sKtKowLQLEiRZozaNrbGQ=",
"requires": {
"@0xproject/typescript-typings": "^0.3.2",
"@types/node": "^8.0.53",
"jsonschema": "^1.2.0",
"lodash.values": "^4.3.0"
},
"dependencies": {
"@types/node": {
"version": "8.10.66",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/@types%2fnode/-/node-8.10.66.tgz",
"integrity": "sha512-tktOkFUA4kXx2hhhrB8bIFb5TbwzS4uOhKEmwiD+NoiL0qtP2OQ9mFldbgD4dV1djrlBYP6eBuQZiWjuHUpqFw=="
}
}
},
"@0xproject/types": {
"version": "0.1.9",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/@0xproject%2ftypes/-/types-0.1.9.tgz",
"integrity": "sha512-msxltUG+kp1LEaoLzVR6a47Qc9nd69UzzYGm5xAvfdm5osNtiVWrL8MrCP0PolMN9sji/4H9PD1UESf0SKvI+g==",
"requires": {
"bignumber.js": "~4.1.0",
"web3": "^0.20.0"
},
"dependencies": {
"utf8": {
"version": "2.1.2",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/utf8/-/utf8-2.1.2.tgz",
"integrity": "sha1-H6DZJw6b6FDZsFAn9jUZv0ZFfZY="
},
"web3": {
"version": "0.20.7",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/web3/-/web3-0.20.7.tgz",
"integrity": "sha512-VU6/DSUX93d1fCzBz7WP/SGCQizO1rKZi4Px9j/3yRyfssHyFcZamMw2/sj4E8TlfMXONvZLoforR8B4bRoyTQ==",
"requires": {
"bignumber.js": "git+https://github.com/frozeman/bignumber.js-nolookahead.git",
"crypto-js": "^3.1.4",
"utf8": "^2.1.1",
"xhr2-cookies": "^1.1.0",
"xmlhttprequest": "*"
},
"dependencies": {
"bignumber.js": {
"version": "git+https://github.com/frozeman/bignumber.js-nolookahead.git#57692b3ecfc98bbdd6b3a516cb2353652ea49934",
"from": "git+https://github.com/frozeman/bignumber.js-nolookahead.git"
}
}
}
}
},
"@0xproject/typescript-typings": {
"version": "0.3.2",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/@0xproject%2ftypescript-typings/-/typescript-typings-0.3.2.tgz",
"integrity": "sha1-q8NgtEGv2pkxAEUMqDad+r91k2s=",
"requires": {
"@0xproject/types": "^0.7.0",
"bignumber.js": "~4.1.0"
},
"dependencies": {
"@0xproject/types": {
"version": "0.7.0",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/@0xproject%2ftypes/-/types-0.7.0.tgz",
"integrity": "sha1-+tE5Je6SrU7hmAZopcsr7U3Kq48=",
"requires": {
"@types/node": "^8.0.53",
"bignumber.js": "~4.1.0"
}
},
"@types/node": {
"version": "8.10.66",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/@types%2fnode/-/node-8.10.66.tgz",
"integrity": "sha512-tktOkFUA4kXx2hhhrB8bIFb5TbwzS4uOhKEmwiD+NoiL0qtP2OQ9mFldbgD4dV1djrlBYP6eBuQZiWjuHUpqFw=="
}
}
},
"@0xproject/utils": {
"version": "0.1.3",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/@0xproject%2futils/-/utils-0.1.3.tgz",
"integrity": "sha512-lVuXcHe4cd68gG5HYQk7QPxtnkDpcdpMDiT3dNlcBYU68r8FbE4pGOmhUtdztQmJjHxmcEkH/G8yoAr/0DSzyQ==",
"requires": {
"bignumber.js": "~4.1.0",
"js-sha3": "^0.7.0",
"lodash": "^4.17.4"
}
},
"@0xproject/web3-wrapper": {
"version": "0.1.14",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/@0xproject%2fweb3-wrapper/-/web3-wrapper-0.1.14.tgz",
"integrity": "sha512-mO4ZaSwjWkcuuYnd75mrgj5xzzdSz5solGZar1XRJ6HY++IMWPOXnGYWImIkW6jK1l0HfYnvw7fBr2eAJCQYNA==",
"requires": {
"@0xproject/utils": "^0.3.4",
"lodash": "^4.17.4",
"web3": "^0.20.0"
},
"dependencies": {
"@0xproject/utils": {
"version": "0.3.4",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/@0xproject%2futils/-/utils-0.3.4.tgz",
"integrity": "sha512-6rNzuZvY3PghEMcZBGzwGdyMBQ11DXXWWMF3Ar3ajRZvSIjPSLpO7cVXcQQOTnTksiSDLJn/kkaQHz8ZT9yJ+w==",
"requires": {
"bignumber.js": "~4.1.0",
"js-sha3": "^0.7.0",
"lodash": "^4.17.4",
"web3": "^0.20.0"
}
},
"utf8": {
"version": "2.1.2",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/utf8/-/utf8-2.1.2.tgz",
"integrity": "sha1-H6DZJw6b6FDZsFAn9jUZv0ZFfZY="
},
"web3": {
"version": "0.20.7",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/web3/-/web3-0.20.7.tgz",
"integrity": "sha512-VU6/DSUX93d1fCzBz7WP/SGCQizO1rKZi4Px9j/3yRyfssHyFcZamMw2/sj4E8TlfMXONvZLoforR8B4bRoyTQ==",
"requires": {
"bignumber.js": "git+https://github.com/frozeman/bignumber.js-nolookahead.git",
"crypto-js": "^3.1.4",
"utf8": "^2.1.1",
"xhr2-cookies": "^1.1.0",
"xmlhttprequest": "*"
},
"dependencies": {
"bignumber.js": {
"version": "git+https://github.com/frozeman/bignumber.js-nolookahead.git#57692b3ecfc98bbdd6b3a516cb2353652ea49934",
"from": "git+https://github.com/frozeman/bignumber.js-nolookahead.git"
}
}
}
}
},
"@apidevtools/json-schema-ref-parser": {
"version": "9.0.9",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/@apidevtools%2fjson-schema-ref-parser/-/json-schema-ref-parser-9.0.9.tgz",
"integrity": "sha512-GBD2Le9w2+lVFoc4vswGI/TjkNIZSVp7+9xPf+X3uidBfWnAeUWmquteSyt0+VCrhNMWj/FTABISQrD3Z/YA+w==",
"requires": {
"@jsdevtools/ono": "^7.1.3",
"@types/json-schema": "^7.0.6",
"call-me-maybe": "^1.0.1",
"js-yaml": "^4.1.0"
}
},
"@apidevtools/openapi-schemas": {
"version": "2.1.0",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/@apidevtools%2fopenapi-schemas/-/openapi-schemas-2.1.0.tgz",
"integrity": "sha512-Zc1AlqrJlX3SlpupFGpiLi2EbteyP7fXmUOGup6/DnkRgjP9bgMM/ag+n91rsv0U1Gpz0H3VILA/o3bW7Ua6BQ=="
},
"@apidevtools/swagger-methods": {
"version": "3.0.2",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/@apidevtools%2fswagger-methods/-/swagger-methods-3.0.2.tgz",
"integrity": "sha512-QAkD5kK2b1WfjDS/UQn/qQkbwF31uqRjPTrsCs5ZG9BQGAkjwvqGFjjPqAuzac/IYzpPtRzjCP1WrTuAIjMrXg=="
},
"@babel/code-frame": {
"version": "7.16.0",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/@babel%2fcode-frame/-/code-frame-7.16.0.tgz",
"integrity": "sha512-IF4EOMEV+bfYwOmNxGzSnjR2EmQod7f1UXOpZM3l4i4o4QNwzjtJAu/HxdjHq0aYBvdqMuQEY1eg0nqW9ZPORA==",
"requires": {
"@babel/highlight": "^7.16.0"
}
},
"@babel/helper-validator-identifier": {
"version": "7.15.7",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/@babel%2fhelper-validator-identifier/-/helper-validator-identifier-7.15.7.tgz",
"integrity": "sha512-K4JvCtQqad9OY2+yTU8w+E82ywk/fe+ELNlt1G8z3bVGlZfn/hOcQQsUhGhW/N+tb3fxK800wLtKOE/aM0m72w=="
},
"@babel/highlight": {
"version": "7.16.0",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/@babel%2fhighlight/-/highlight-7.16.0.tgz",
"integrity": "sha512-t8MH41kUQylBtu2+4IQA3atqevA2lRgqA2wyVB/YiWmsDSuylZZuXOUy9ric30hfzauEFfdsuk/eXTRrGrfd0g==",
"requires": {
"@babel/helper-validator-identifier": "^7.15.7",
"chalk": "^2.0.0",
"js-tokens": "^4.0.0"
},
"dependencies": {
"ansi-styles": {
"version": "3.2.1",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/ansi-styles/-/ansi-styles-3.2.1.tgz",
"integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
"requires": {
"color-convert": "^1.9.0"
}
},
"chalk": {
"version": "2.4.2",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/chalk/-/chalk-2.4.2.tgz",
"integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
"requires": {
"ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5",
"supports-color": "^5.3.0"
}
},
"color-convert": {
"version": "1.9.3",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/color-convert/-/color-convert-1.9.3.tgz",
"integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
"requires": {
"color-name": "1.1.3"
}
},
"color-name": {
"version": "1.1.3",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/color-name/-/color-name-1.1.3.tgz",
"integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU="
},
"has-flag": {
"version": "3.0.0",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/has-flag/-/has-flag-3.0.0.tgz",
"integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0="
},
"supports-color": {
"version": "5.5.0",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/supports-color/-/supports-color-5.5.0.tgz",
"integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
"requires": {
"has-flag": "^3.0.0"
}
}
}
},
"@babel/runtime": {
"version": "7.16.3",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/@babel%2fruntime/-/runtime-7.16.3.tgz",
"integrity": "sha512-WBwekcqacdY2e9AF/Q7WLFUWmdJGJTkbjqTjoMDgXkVZ3ZRUvOPsLb5KdwISoQVsbP+DQzVZW4Zhci0DvpbNTQ==",
"requires": {
"regenerator-runtime": "^0.13.4"
}
},
"@ethereumjs/common": {
"version": "2.6.0",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/@ethereumjs%2fcommon/-/common-2.6.0.tgz",
"integrity": "sha512-Cq2qS0FTu6O2VU1sgg+WyU9Ps0M6j/BEMHN+hRaECXCV/r0aI78u4N6p52QW/BDVhwWZpCdrvG8X7NJdzlpNUA==",
"requires": {
"crc-32": "^1.2.0",
"ethereumjs-util": "^7.1.3"
},
"dependencies": {
"@types/bn.js": {
"version": "5.1.0",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/@types%2fbn.js/-/bn.js-5.1.0.tgz",
"integrity": "sha512-QSSVYj7pYFN49kW77o2s9xTCwZ8F2xLbjLLSEVh8D2F4JUhZtPAGOFLTD+ffqksBx/u4cE/KImFjyhqCjn/LIA==",
"requires": {
"@types/node": "*"
}
},
"bn.js": {
"version": "5.2.0",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/bn.js/-/bn.js-5.2.0.tgz",
"integrity": "sha512-D7iWRBvnZE8ecXiLj/9wbxH7Tk79fAh8IHaTNq1RWRixsS02W+5qS+iE9yq6RYl0asXx5tw0bLhmT5pIfbSquw=="
},
"ethereumjs-util": {
"version": "7.1.3",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/ethereumjs-util/-/ethereumjs-util-7.1.3.tgz",
"integrity": "sha512-y+82tEbyASO0K0X1/SRhbJJoAlfcvq8JbrG4a5cjrOks7HS/36efU/0j2flxCPOUM++HFahk33kr/ZxyC4vNuw==",
"requires": {
"@types/bn.js": "^5.1.0",
"bn.js": "^5.1.2",
"create-hash": "^1.1.2",
"ethereum-cryptography": "^0.1.3",
"rlp": "^2.2.4"
}
}
}
},
"@ethereumjs/tx": {
"version": "3.4.0",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/@ethereumjs%2ftx/-/tx-3.4.0.tgz",
"integrity": "sha512-WWUwg1PdjHKZZxPPo274ZuPsJCWV3SqATrEKQP1n2DrVYVP1aZIYpo/mFaA0BDoE0tIQmBeimRCEA0Lgil+yYw==",
"requires": {
"@ethereumjs/common": "^2.6.0",
"ethereumjs-util": "^7.1.3"
},
"dependencies": {
"@types/bn.js": {
"version": "5.1.0",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/@types%2fbn.js/-/bn.js-5.1.0.tgz",
"integrity": "sha512-QSSVYj7pYFN49kW77o2s9xTCwZ8F2xLbjLLSEVh8D2F4JUhZtPAGOFLTD+ffqksBx/u4cE/KImFjyhqCjn/LIA==",
"requires": {
"@types/node": "*"
}
},
"bn.js": {
"version": "5.2.0",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/bn.js/-/bn.js-5.2.0.tgz",
"integrity": "sha512-D7iWRBvnZE8ecXiLj/9wbxH7Tk79fAh8IHaTNq1RWRixsS02W+5qS+iE9yq6RYl0asXx5tw0bLhmT5pIfbSquw=="
},
"ethereumjs-util": {
"version": "7.1.3",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/ethereumjs-util/-/ethereumjs-util-7.1.3.tgz",
"integrity": "sha512-y+82tEbyASO0K0X1/SRhbJJoAlfcvq8JbrG4a5cjrOks7HS/36efU/0j2flxCPOUM++HFahk33kr/ZxyC4vNuw==",
"requires": {
"@types/bn.js": "^5.1.0",
"bn.js": "^5.1.2",
"create-hash": "^1.1.2",
"ethereum-cryptography": "^0.1.3",
"rlp": "^2.2.4"
}
}
}
},
"@ethersproject/abi": {
"version": "5.0.7",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/@ethersproject%2fabi/-/abi-5.0.7.tgz",
"integrity": "sha512-Cqktk+hSIckwP/W8O47Eef60VwmoSC/L3lY0+dIBhQPCNn9E4V7rwmm2aFrNRRDJfFlGuZ1khkQUOc3oBX+niw==",
"requires": {
"@ethersproject/address": "^5.0.4",
"@ethersproject/bignumber": "^5.0.7",
"@ethersproject/bytes": "^5.0.4",
"@ethersproject/constants": "^5.0.4",
"@ethersproject/hash": "^5.0.4",
"@ethersproject/keccak256": "^5.0.3",
"@ethersproject/logger": "^5.0.5",
"@ethersproject/properties": "^5.0.3",
"@ethersproject/strings": "^5.0.4"
}
},
"@ethersproject/abstract-provider": {
"version": "5.5.1",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/@ethersproject%2fabstract-provider/-/abstract-provider-5.5.1.tgz",
"integrity": "sha512-m+MA/ful6eKbxpr99xUYeRvLkfnlqzrF8SZ46d/xFB1A7ZVknYc/sXJG0RcufF52Qn2jeFj1hhcoQ7IXjNKUqg==",
"requires": {
"@ethersproject/bignumber": "^5.5.0",
"@ethersproject/bytes": "^5.5.0",
"@ethersproject/logger": "^5.5.0",
"@ethersproject/networks": "^5.5.0",
"@ethersproject/properties": "^5.5.0",
"@ethersproject/transactions": "^5.5.0",
"@ethersproject/web": "^5.5.0"
}
},
"@ethersproject/abstract-signer": {
"version": "5.5.0",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/@ethersproject%2fabstract-signer/-/abstract-signer-5.5.0.tgz",
"integrity": "sha512-lj//7r250MXVLKI7sVarXAbZXbv9P50lgmJQGr2/is82EwEb8r7HrxsmMqAjTsztMYy7ohrIhGMIml+Gx4D3mA==",
"requires": {
"@ethersproject/abstract-provider": "^5.5.0",
"@ethersproject/bignumber": "^5.5.0",
"@ethersproject/bytes": "^5.5.0",
"@ethersproject/logger": "^5.5.0",
"@ethersproject/properties": "^5.5.0"
}
},
"@ethersproject/address": {
"version": "5.5.0",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/@ethersproject%2faddress/-/address-5.5.0.tgz",
"integrity": "sha512-l4Nj0eWlTUh6ro5IbPTgbpT4wRbdH5l8CQf7icF7sb/SI3Nhd9Y9HzhonTSTi6CefI0necIw7LJqQPopPLZyWw==",
"requires": {
"@ethersproject/bignumber": "^5.5.0",
"@ethersproject/bytes": "^5.5.0",
"@ethersproject/keccak256": "^5.5.0",
"@ethersproject/logger": "^5.5.0",
"@ethersproject/rlp": "^5.5.0"
}
},
"@ethersproject/base64": {
"version": "5.5.0",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/@ethersproject%2fbase64/-/base64-5.5.0.tgz",
"integrity": "sha512-tdayUKhU1ljrlHzEWbStXazDpsx4eg1dBXUSI6+mHlYklOXoXF6lZvw8tnD6oVaWfnMxAgRSKROg3cVKtCcppA==",
"requires": {
"@ethersproject/bytes": "^5.5.0"
}
},
"@ethersproject/bignumber": {
"version": "5.5.0",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/@ethersproject%2fbignumber/-/bignumber-5.5.0.tgz",
"integrity": "sha512-6Xytlwvy6Rn3U3gKEc1vP7nR92frHkv6wtVr95LFR3jREXiCPzdWxKQ1cx4JGQBXxcguAwjA8murlYN2TSiEbg==",
"requires": {
"@ethersproject/bytes": "^5.5.0",
"@ethersproject/logger": "^5.5.0",
"bn.js": "^4.11.9"
}
},
"@ethersproject/bytes": {
"version": "5.5.0",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/@ethersproject%2fbytes/-/bytes-5.5.0.tgz",
"integrity": "sha512-ABvc7BHWhZU9PNM/tANm/Qx4ostPGadAuQzWTr3doklZOhDlmcBqclrQe/ZXUIj3K8wC28oYeuRa+A37tX9kog==",
"requires": {
"@ethersproject/logger": "^5.5.0"
}
},
"@ethersproject/constants": {
"version": "5.5.0",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/@ethersproject%2fconstants/-/constants-5.5.0.tgz",
"integrity": "sha512-2MsRRVChkvMWR+GyMGY4N1sAX9Mt3J9KykCsgUFd/1mwS0UH1qw+Bv9k1UJb3X3YJYFco9H20pjSlOIfCG5HYQ==",
"requires": {
"@ethersproject/bignumber": "^5.5.0"
}
},
"@ethersproject/hash": {
"version": "5.5.0",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/@ethersproject%2fhash/-/hash-5.5.0.tgz",
"integrity": "sha512-dnGVpK1WtBjmnp3mUT0PlU2MpapnwWI0PibldQEq1408tQBAbZpPidkWoVVuNMOl/lISO3+4hXZWCL3YV7qzfg==",
"requires": {
"@ethersproject/abstract-signer": "^5.5.0",
"@ethersproject/address": "^5.5.0",
"@ethersproject/bignumber": "^5.5.0",
"@ethersproject/bytes": "^5.5.0",
"@ethersproject/keccak256": "^5.5.0",
"@ethersproject/logger": "^5.5.0",
"@ethersproject/properties": "^5.5.0",
"@ethersproject/strings": "^5.5.0"
}
},
"@ethersproject/keccak256": {
"version": "5.5.0",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/@ethersproject%2fkeccak256/-/keccak256-5.5.0.tgz",
"integrity": "sha512-5VoFCTjo2rYbBe1l2f4mccaRFN/4VQEYFwwn04aJV2h7qf4ZvI2wFxUE1XOX+snbwCLRzIeikOqtAoPwMza9kg==",
"requires": {
"@ethersproject/bytes": "^5.5.0",
"js-sha3": "0.8.0"
},
"dependencies": {
"js-sha3": {
"version": "0.8.0",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/js-sha3/-/js-sha3-0.8.0.tgz",
"integrity": "sha512-gF1cRrHhIzNfToc802P800N8PpXS+evLLXfsVpowqmAFR9uwbi89WvXg2QspOmXL8QL86J4T1EpFu+yUkwJY3Q=="
}
}
},
"@ethersproject/logger": {
"version": "5.5.0",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/@ethersproject%2flogger/-/logger-5.5.0.tgz",
"integrity": "sha512-rIY/6WPm7T8n3qS2vuHTUBPdXHl+rGxWxW5okDfo9J4Z0+gRRZT0msvUdIJkE4/HS29GUMziwGaaKO2bWONBrg=="
},
"@ethersproject/networks": {
"version": "5.5.0",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/@ethersproject%2fnetworks/-/networks-5.5.0.tgz",
"integrity": "sha512-KWfP3xOnJeF89Uf/FCJdV1a2aDJe5XTN2N52p4fcQ34QhDqQFkgQKZ39VGtiqUgHcLI8DfT0l9azC3KFTunqtA==",
"requires": {
"@ethersproject/logger": "^5.5.0"
}
},
"@ethersproject/properties": {
"version": "5.5.0",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/@ethersproject%2fproperties/-/properties-5.5.0.tgz",
"integrity": "sha512-l3zRQg3JkD8EL3CPjNK5g7kMx4qSwiR60/uk5IVjd3oq1MZR5qUg40CNOoEJoX5wc3DyY5bt9EbMk86C7x0DNA==",
"requires": {
"@ethersproject/logger": "^5.5.0"
}
},
"@ethersproject/rlp": {
"version": "5.5.0",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/@ethersproject%2frlp/-/rlp-5.5.0.tgz",
"integrity": "sha512-hLv8XaQ8PTI9g2RHoQGf/WSxBfTB/NudRacbzdxmst5VHAqd1sMibWG7SENzT5Dj3yZ3kJYx+WiRYEcQTAkcYA==",
"requires": {
"@ethersproject/bytes": "^5.5.0",
"@ethersproject/logger": "^5.5.0"
}
},
"@ethersproject/signing-key": {
"version": "5.5.0",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/@ethersproject%2fsigning-key/-/signing-key-5.5.0.tgz",
"integrity": "sha512-5VmseH7qjtNmDdZBswavhotYbWB0bOwKIlOTSlX14rKn5c11QmJwGt4GHeo7NrL/Ycl7uo9AHvEqs5xZgFBTng==",
"requires": {
"@ethersproject/bytes": "^5.5.0",
"@ethersproject/logger": "^5.5.0",
"@ethersproject/properties": "^5.5.0",
"bn.js": "^4.11.9",
"elliptic": "6.5.4",
"hash.js": "1.1.7"
}
},
"@ethersproject/strings": {
"version": "5.5.0",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/@ethersproject%2fstrings/-/strings-5.5.0.tgz",
"integrity": "sha512-9fy3TtF5LrX/wTrBaT8FGE6TDJyVjOvXynXJz5MT5azq+E6D92zuKNx7i29sWW2FjVOaWjAsiZ1ZWznuduTIIQ==",
"requires": {
"@ethersproject/bytes": "^5.5.0",
"@ethersproject/constants": "^5.5.0",
"@ethersproject/logger": "^5.5.0"
}
},
"@ethersproject/transactions": {
"version": "5.5.0",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/@ethersproject%2ftransactions/-/transactions-5.5.0.tgz",
"integrity": "sha512-9RZYSKX26KfzEd/1eqvv8pLauCKzDTub0Ko4LfIgaERvRuwyaNV78mJs7cpIgZaDl6RJui4o49lHwwCM0526zA==",
"requires": {
"@ethersproject/address": "^5.5.0",
"@ethersproject/bignumber": "^5.5.0",
"@ethersproject/bytes": "^5.5.0",
"@ethersproject/constants": "^5.5.0",
"@ethersproject/keccak256": "^5.5.0",
"@ethersproject/logger": "^5.5.0",
"@ethersproject/properties": "^5.5.0",
"@ethersproject/rlp": "^5.5.0",
"@ethersproject/signing-key": "^5.5.0"
}
},
"@ethersproject/web": {
"version": "5.5.0",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/@ethersproject%2fweb/-/web-5.5.0.tgz",
"integrity": "sha512-BEgY0eL5oH4mAo37TNYVrFeHsIXLRxggCRG/ksRIxI2X5uj5IsjGmcNiRN/VirQOlBxcUhCgHhaDLG4m6XAVoA==",
"requires": {
"@ethersproject/base64": "^5.5.0",
"@ethersproject/bytes": "^5.5.0",
"@ethersproject/logger": "^5.5.0",
"@ethersproject/properties": "^5.5.0",
"@ethersproject/strings": "^5.5.0"
}
},
"@exodus/schemasafe": {
"version": "1.0.0-rc.6",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/@exodus%2fschemasafe/-/schemasafe-1.0.0-rc.6.tgz",
"integrity": "sha512-dDnQizD94EdBwEj/fh3zPRa/HWCS9O5au2PuHhZBbuM3xWHxuaKzPBOEWze7Nn0xW68MIpZ7Xdyn1CoCpjKCuQ=="
},
"@jsdevtools/ono": {
"version": "7.1.3",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/@jsdevtools%2fono/-/ono-7.1.3.tgz",
"integrity": "sha512-4JQNk+3mVzK3xh2rqd6RB4J46qUR19azEHBneZyTZM+c456qOrbbM/5xcR8huNCCcbVt7+UmizG6GuUvPvKUYg=="
},
"@nodelib/fs.scandir": {
"version": "2.1.5",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/@nodelib%2ffs.scandir/-/fs.scandir-2.1.5.tgz",
"integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
"requires": {
"@nodelib/fs.stat": "2.0.5",
"run-parallel": "^1.1.9"
}
},
"@nodelib/fs.stat": {
"version": "2.0.5",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/@nodelib%2ffs.stat/-/fs.stat-2.0.5.tgz",
"integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A=="
},
"@nodelib/fs.walk": {
"version": "1.2.8",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/@nodelib%2ffs.walk/-/fs.walk-1.2.8.tgz",
"integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
"requires": {
"@nodelib/fs.scandir": "2.1.5",
"fastq": "^1.6.0"
}
},
"@readme/better-ajv-errors": {
"version": "1.1.1",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/@readme%2fbetter-ajv-errors/-/better-ajv-errors-1.1.1.tgz",
"integrity": "sha512-3FmPBv2fYj2Qgvg8Qq3wEL7CxLPA6nwkVGafdEfS/85DIUx9z0iZcHu48no/l0HOk9PCKUDqpinN6bTtLxD0og==",
"requires": {
"@babel/code-frame": "^7.16.0",
"@babel/runtime": "^7.16.0",
"chalk": "^4.1.2",
"json-to-ast": "^2.0.3",
"jsonpointer": "^5.0.0",
"leven": "^3.1.0"
}
},
"@readme/oas-extensions": {
"version": "14.0.0",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/@readme%2foas-extensions/-/oas-extensions-14.0.0.tgz",
"integrity": "sha512-7CC5rcATBH0M2ZhHfX9RoHC8kSOcnKjvHXDb9gswUlLNQcLyRzg8ycQhSIJQna+6BSuHMZ79Den+Xw0z+P6Lpg=="
},
"@readme/oas-to-har": {
"version": "14.0.0",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/@readme%2foas-to-har/-/oas-to-har-14.0.0.tgz",
"integrity": "sha512-gWhMupVrmCcFb/yQ/cQuUuy3JLSxUl9Npq2bJAFz3sXDja3hPuwaBSBDscRecPtnfvzRfo6Og0osag5RXxnCDw==",
"requires": {
"@readme/oas-extensions": "^14.0.0",
"oas": "^17.1.0",
"parse-data-url": "^4.0.1"
}
},
"@readme/openapi-parser": {
"version": "1.1.0",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/@readme%2fopenapi-parser/-/openapi-parser-1.1.0.tgz",
"integrity": "sha512-gGoZk7yZ1MIFaFYgqm6HVaXgeIs4hCvVLys801llZF9CcXXE4DWBrpUk1VgU94cA08th6GWBLcMHiREr65Cw1A==",
"requires": {
"@apidevtools/json-schema-ref-parser": "github:erunion/json-schema-ref-parser#fix/dates-as-strings",
"@apidevtools/openapi-schemas": "^2.1.0",
"@apidevtools/swagger-methods": "^3.0.2",
"@jsdevtools/ono": "^7.1.3",
"@readme/better-ajv-errors": "^1.1.0",
"ajv": "^8.6.3",
"ajv-draft-04": "^1.0.0",
"call-me-maybe": "^1.0.1"
},
"dependencies": {
"@apidevtools/json-schema-ref-parser": {
"version": "github:erunion/json-schema-ref-parser#402904c92c8465db788be70655c3773c6e42a051",
"from": "github:erunion/json-schema-ref-parser#fix/dates-as-strings",
"requires": {
"@jsdevtools/ono": "^7.1.3",
"@types/json-schema": "^7.0.6",
"call-me-maybe": "^1.0.1",
"js-yaml": "^4.1.0"
}
}
}
},
"@sindresorhus/is": {
"version": "0.14.0",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/@sindresorhus%2fis/-/is-0.14.0.tgz",
"integrity": "sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ=="
},
"@szmarczak/http-timer": {
"version": "1.1.2",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/@szmarczak%2fhttp-timer/-/http-timer-1.1.2.tgz",
"integrity": "sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==",
"requires": {
"defer-to-connect": "^1.0.1"
}
},
"@types/bn.js": {
"version": "4.11.6",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/@types%2fbn.js/-/bn.js-4.11.6.tgz",
"integrity": "sha512-pqr857jrp2kPuO9uRjZ3PwnJTjoQy+fcdxvBTvHm6dkmEL9q+hDD/2j/0ELOBPtPnS8LjCX0gI9nbl8lVkadpg==",
"requires": {
"@types/node": "*"
}
},
"@types/json-schema": {
"version": "7.0.9",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/@types%2fjson-schema/-/json-schema-7.0.9.tgz",
"integrity": "sha512-qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ=="
},
"@types/lodash": {
"version": "4.14.176",
"resolved": "https://front-stb-dev.canal-bis.com:443/npm-fronttv/@types%2flodash/-/lodash-4.14.176.tgz",
"integrity": "sha512-xZmuPTa3rlZoIbtDUyJKZQimJV3bxCmzMIO2c9Pz9afyDro6kr7R79GwcB6mRhuoPmV2p1Vb66WOJH7F886WKQ=="
},
"@types/node": {
"version": "16.11.7",