-
Notifications
You must be signed in to change notification settings - Fork 2
/
package-lock.json
3772 lines (3772 loc) · 154 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": "hexo-workbox",
"version": "0.0.2",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"@babel/code-frame": {
"version": "7.0.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/@babel/code-frame/-/code-frame-7.0.0.tgz?dl=https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.0.0.tgz",
"integrity": "sha1-BuKrGb21NThVWaq7W6WXKUgoAPg=",
"dev": true,
"requires": {
"@babel/highlight": "^7.0.0"
}
},
"@babel/highlight": {
"version": "7.0.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/@babel/highlight/-/highlight-7.0.0.tgz?dl=https://registry.npmjs.org/@babel/highlight/-/highlight-7.0.0.tgz",
"integrity": "sha1-9xDDjI1Fjm3ZogGvtjf8t4HOmeQ=",
"dev": true,
"requires": {
"chalk": "^2.0.0",
"esutils": "^2.0.2",
"js-tokens": "^4.0.0"
}
},
"@sinonjs/commons": {
"version": "1.0.2",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/@sinonjs/commons/-/commons-1.0.2.tgz?dl=https://registry.npmjs.org/@sinonjs/commons/-/commons-1.0.2.tgz",
"integrity": "sha1-PgrHN3gWJ7iEQlf63D2AOZfQUm4=",
"dev": true,
"requires": {
"type-detect": "4.0.8"
}
},
"@sinonjs/formatio": {
"version": "3.0.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/@sinonjs/formatio/-/formatio-3.0.0.tgz?dl=https://registry.npmjs.org/@sinonjs/formatio/-/formatio-3.0.0.tgz",
"integrity": "sha1-nSgtgQMKA6A/oMXOMf2HhqTaMRo=",
"dev": true,
"requires": {
"@sinonjs/samsam": "2.1.0"
},
"dependencies": {
"@sinonjs/samsam": {
"version": "2.1.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/@sinonjs/samsam/-/samsam-2.1.0.tgz?dl=https://registry.npmjs.org/@sinonjs/samsam/-/samsam-2.1.0.tgz",
"integrity": "sha1-uLj1uBlgW9Y2Aabt5FkVaIDzjqM=",
"dev": true,
"requires": {
"array-from": "^2.1.1"
}
}
}
},
"@sinonjs/samsam": {
"version": "2.1.2",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/@sinonjs/samsam/-/samsam-2.1.2.tgz?dl=https://registry.npmjs.org/@sinonjs/samsam/-/samsam-2.1.2.tgz",
"integrity": "sha1-FpR/zl9XJY0B8WiP3DJyMJPFXT8=",
"dev": true
},
"acorn": {
"version": "5.7.3",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/acorn/-/acorn-5.7.3.tgz?dl=https://registry.npmjs.org/acorn/-/acorn-5.7.3.tgz",
"integrity": "sha1-Z6ojG/iBKXS4UjWpZ3Hra9B+onk=",
"dev": true
},
"acorn-jsx": {
"version": "4.1.1",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/acorn-jsx/-/acorn-jsx-4.1.1.tgz?dl=https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-4.1.1.tgz",
"integrity": "sha1-6OQeSOov4MiWdAYQq2pP/YrdIl4=",
"dev": true,
"requires": {
"acorn": "^5.0.3"
}
},
"ajv": {
"version": "6.5.4",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/ajv/-/ajv-6.5.4.tgz?dl=https://registry.npmjs.org/ajv/-/ajv-6.5.4.tgz",
"integrity": "sha1-JH1SdBENtlNwa1UPzCt5fKKM/Fk=",
"dev": true,
"requires": {
"fast-deep-equal": "^2.0.1",
"fast-json-stable-stringify": "^2.0.0",
"json-schema-traverse": "^0.4.1",
"uri-js": "^4.2.2"
}
},
"ansi-escapes": {
"version": "3.1.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/ansi-escapes/-/ansi-escapes-3.1.0.tgz?dl=https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.1.0.tgz",
"integrity": "sha1-9zIHu4EgfXX9bIPxJa8m7qN4yjA=",
"dev": true
},
"ansi-regex": {
"version": "3.0.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/ansi-regex/-/ansi-regex-3.0.0.tgz?dl=https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz",
"integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=",
"dev": true
},
"ansi-styles": {
"version": "3.2.1",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/ansi-styles/-/ansi-styles-3.2.1.tgz?dl=https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
"integrity": "sha1-QfuyAkPlCxK+DwS43tvwdSDOhB0=",
"dev": true,
"requires": {
"color-convert": "^1.9.0"
}
},
"anymatch": {
"version": "2.0.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/anymatch/-/anymatch-2.0.0.tgz?dl=https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz",
"integrity": "sha1-vLJLTzeTTZqnrBe0ra+J58du8us=",
"requires": {
"micromatch": "^3.1.4",
"normalize-path": "^2.1.1"
}
},
"argparse": {
"version": "1.0.10",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/argparse/-/argparse-1.0.10.tgz?dl=https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
"integrity": "sha1-vNZ5HqWuCXJeF+WtmIE0zUCz2RE=",
"dev": true,
"requires": {
"sprintf-js": "~1.0.2"
}
},
"aria-query": {
"version": "3.0.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/aria-query/-/aria-query-3.0.0.tgz?dl=https://registry.npmjs.org/aria-query/-/aria-query-3.0.0.tgz",
"integrity": "sha1-ZbP8wcoRVajJrmTW7uKX8V1RM8w=",
"dev": true,
"requires": {
"ast-types-flow": "0.0.7",
"commander": "^2.11.0"
}
},
"arr-diff": {
"version": "4.0.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/arr-diff/-/arr-diff-4.0.0.tgz?dl=https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz",
"integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA="
},
"arr-flatten": {
"version": "1.1.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/arr-flatten/-/arr-flatten-1.1.0.tgz?dl=https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz",
"integrity": "sha1-NgSLv/TntH4TZkQxbJlmnqWukfE="
},
"arr-union": {
"version": "3.1.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/arr-union/-/arr-union-3.1.0.tgz?dl=https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz",
"integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ="
},
"array-from": {
"version": "2.1.1",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/array-from/-/array-from-2.1.1.tgz?dl=https://registry.npmjs.org/array-from/-/array-from-2.1.1.tgz",
"integrity": "sha1-z+nYwmYoudxa7MYqn12PHzUsEZU=",
"dev": true
},
"array-includes": {
"version": "3.0.3",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/array-includes/-/array-includes-3.0.3.tgz?dl=https://registry.npmjs.org/array-includes/-/array-includes-3.0.3.tgz",
"integrity": "sha1-GEtI9i2S10UrsxsyMWXH+L0CJm0=",
"dev": true,
"requires": {
"define-properties": "^1.1.2",
"es-abstract": "^1.7.0"
}
},
"array-union": {
"version": "1.0.2",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/array-union/-/array-union-1.0.2.tgz?dl=https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz",
"integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=",
"dev": true,
"requires": {
"array-uniq": "^1.0.1"
}
},
"array-uniq": {
"version": "1.0.3",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/array-uniq/-/array-uniq-1.0.3.tgz?dl=https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz",
"integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=",
"dev": true
},
"array-unique": {
"version": "0.3.2",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/array-unique/-/array-unique-0.3.2.tgz?dl=https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz",
"integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg="
},
"arrify": {
"version": "1.0.1",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/arrify/-/arrify-1.0.1.tgz?dl=https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz",
"integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=",
"dev": true
},
"assertion-error": {
"version": "1.1.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/assertion-error/-/assertion-error-1.1.0.tgz?dl=https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz",
"integrity": "sha1-5gtrDo8wG9l+U3UhW9pAbIURjAs=",
"dev": true
},
"assign-symbols": {
"version": "1.0.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/assign-symbols/-/assign-symbols-1.0.0.tgz?dl=https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz",
"integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c="
},
"ast-types-flow": {
"version": "0.0.7",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/ast-types-flow/-/ast-types-flow-0.0.7.tgz?dl=https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz",
"integrity": "sha1-9wtzXGvKGlycItmCw+Oef+ujva0=",
"dev": true
},
"async-each": {
"version": "1.0.1",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/async-each/-/async-each-1.0.1.tgz?dl=https://registry.npmjs.org/async-each/-/async-each-1.0.1.tgz",
"integrity": "sha1-GdOGodntxufByF04iu28xW0zYC0="
},
"atob": {
"version": "2.1.2",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/atob/-/atob-2.1.2.tgz?dl=https://registry.npmjs.org/atob/-/atob-2.1.2.tgz",
"integrity": "sha1-bZUX654DDSQ2ZmZR6GvZ9vE1M8k="
},
"axobject-query": {
"version": "2.0.2",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/axobject-query/-/axobject-query-2.0.2.tgz?dl=https://registry.npmjs.org/axobject-query/-/axobject-query-2.0.2.tgz",
"integrity": "sha1-6hh6vluQArN3+SXYv30cVhrfOPk=",
"dev": true,
"requires": {
"ast-types-flow": "0.0.7"
}
},
"babel-extract-comments": {
"version": "1.0.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/babel-extract-comments/-/babel-extract-comments-1.0.0.tgz?dl=https://registry.npmjs.org/babel-extract-comments/-/babel-extract-comments-1.0.0.tgz",
"integrity": "sha1-Cirt+BQX7TkbheGLRhTmk6A1GiE=",
"requires": {
"babylon": "^6.18.0"
}
},
"babel-plugin-syntax-object-rest-spread": {
"version": "6.13.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz?dl=http://registry.npmjs.org/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz",
"integrity": "sha1-/WU28rzhODb/o6VFjEkDpZe7O/U="
},
"babel-plugin-transform-object-rest-spread": {
"version": "6.26.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz?dl=https://registry.npmjs.org/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz",
"integrity": "sha1-DzZpLVD+9rfi1LOsFHgTepY7ewY=",
"requires": {
"babel-plugin-syntax-object-rest-spread": "^6.8.0",
"babel-runtime": "^6.26.0"
}
},
"babel-runtime": {
"version": "6.26.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/babel-runtime/-/babel-runtime-6.26.0.tgz?dl=https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz",
"integrity": "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=",
"requires": {
"core-js": "^2.4.0",
"regenerator-runtime": "^0.11.0"
}
},
"babylon": {
"version": "6.18.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/babylon/-/babylon-6.18.0.tgz?dl=https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz",
"integrity": "sha1-ry87iPpvXB5MY00aD46sT1WzleM="
},
"balanced-match": {
"version": "1.0.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/balanced-match/-/balanced-match-1.0.0.tgz?dl=https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz",
"integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c="
},
"base": {
"version": "0.11.2",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/base/-/base-0.11.2.tgz?dl=https://registry.npmjs.org/base/-/base-0.11.2.tgz",
"integrity": "sha1-e95c7RRbbVUakNuH+DxVi060io8=",
"requires": {
"cache-base": "^1.0.1",
"class-utils": "^0.3.5",
"component-emitter": "^1.2.1",
"define-property": "^1.0.0",
"isobject": "^3.0.1",
"mixin-deep": "^1.2.0",
"pascalcase": "^0.1.1"
},
"dependencies": {
"define-property": {
"version": "1.0.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/define-property/-/define-property-1.0.0.tgz?dl=https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz",
"integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=",
"requires": {
"is-descriptor": "^1.0.0"
}
},
"is-accessor-descriptor": {
"version": "1.0.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz?dl=https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
"integrity": "sha1-FpwvbT3x+ZJhgHI2XJsOofaHhlY=",
"requires": {
"kind-of": "^6.0.0"
}
},
"is-data-descriptor": {
"version": "1.0.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz?dl=https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
"integrity": "sha1-2Eh2Mh0Oet0DmQQGq7u9NrqSaMc=",
"requires": {
"kind-of": "^6.0.0"
}
},
"is-descriptor": {
"version": "1.0.2",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/is-descriptor/-/is-descriptor-1.0.2.tgz?dl=https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
"integrity": "sha1-OxWXRqZmBLBPjIFSS6NlxfFNhuw=",
"requires": {
"is-accessor-descriptor": "^1.0.0",
"is-data-descriptor": "^1.0.0",
"kind-of": "^6.0.2"
}
}
}
},
"binary-extensions": {
"version": "1.12.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/binary-extensions/-/binary-extensions-1.12.0.tgz?dl=https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.12.0.tgz",
"integrity": "sha1-wteA9T1Fu6gxeokC1M7q86Y4WxQ="
},
"bluebird": {
"version": "3.5.2",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/bluebird/-/bluebird-3.5.2.tgz?dl=https://registry.npmjs.org/bluebird/-/bluebird-3.5.2.tgz",
"integrity": "sha1-G+CQjgVKdRdUVJwnBInBUF1KsVo="
},
"brace-expansion": {
"version": "1.1.11",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/brace-expansion/-/brace-expansion-1.1.11.tgz?dl=https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
"integrity": "sha1-PH/L9SnYcibz0vUrlm/1Jx60Qd0=",
"requires": {
"balanced-match": "^1.0.0",
"concat-map": "0.0.1"
}
},
"braces": {
"version": "2.3.2",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/braces/-/braces-2.3.2.tgz?dl=https://registry.npmjs.org/braces/-/braces-2.3.2.tgz",
"integrity": "sha1-WXn9PxTNUxVl5fot8av/8d+u5yk=",
"requires": {
"arr-flatten": "^1.1.0",
"array-unique": "^0.3.2",
"extend-shallow": "^2.0.1",
"fill-range": "^4.0.0",
"isobject": "^3.0.1",
"repeat-element": "^1.1.2",
"snapdragon": "^0.8.1",
"snapdragon-node": "^2.0.1",
"split-string": "^3.0.2",
"to-regex": "^3.0.1"
},
"dependencies": {
"extend-shallow": {
"version": "2.0.1",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/extend-shallow/-/extend-shallow-2.0.1.tgz?dl=https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
"integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=",
"requires": {
"is-extendable": "^0.1.0"
}
}
}
},
"browser-stdout": {
"version": "1.3.1",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/browser-stdout/-/browser-stdout-1.3.1.tgz?dl=https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz",
"integrity": "sha1-uqVZ7hTO1zRSIputcyZGfGH6vWA=",
"dev": true
},
"builtin-modules": {
"version": "1.1.1",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/builtin-modules/-/builtin-modules-1.1.1.tgz?dl=https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz",
"integrity": "sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8=",
"dev": true
},
"cache-base": {
"version": "1.0.1",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/cache-base/-/cache-base-1.0.1.tgz?dl=https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz",
"integrity": "sha1-Cn9GQWgxyLZi7jb+TnxZ129marI=",
"requires": {
"collection-visit": "^1.0.0",
"component-emitter": "^1.2.1",
"get-value": "^2.0.6",
"has-value": "^1.0.0",
"isobject": "^3.0.1",
"set-value": "^2.0.0",
"to-object-path": "^0.3.0",
"union-value": "^1.0.0",
"unset-value": "^1.0.0"
}
},
"caller-path": {
"version": "0.1.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/caller-path/-/caller-path-0.1.0.tgz?dl=https://registry.npmjs.org/caller-path/-/caller-path-0.1.0.tgz",
"integrity": "sha1-lAhe9jWB7NPaqSREqP6U6CV3dR8=",
"dev": true,
"requires": {
"callsites": "^0.2.0"
}
},
"callsites": {
"version": "0.2.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/callsites/-/callsites-0.2.0.tgz?dl=https://registry.npmjs.org/callsites/-/callsites-0.2.0.tgz",
"integrity": "sha1-r6uWJikQp/M8GaV3WCXGnzTjUMo=",
"dev": true
},
"chai": {
"version": "4.2.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/chai/-/chai-4.2.0.tgz?dl=https://registry.npmjs.org/chai/-/chai-4.2.0.tgz",
"integrity": "sha1-dgqnLPION5XoSxKHfODoNzeqKeU=",
"dev": true,
"requires": {
"assertion-error": "^1.1.0",
"check-error": "^1.0.2",
"deep-eql": "^3.0.1",
"get-func-name": "^2.0.0",
"pathval": "^1.1.0",
"type-detect": "^4.0.5"
}
},
"chalk": {
"version": "2.4.1",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/chalk/-/chalk-2.4.1.tgz?dl=https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz",
"integrity": "sha1-GMSasWoDe26wFSzIPjRxM4IVtm4=",
"dev": true,
"requires": {
"ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5",
"supports-color": "^5.3.0"
}
},
"chardet": {
"version": "0.7.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/chardet/-/chardet-0.7.0.tgz?dl=https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz",
"integrity": "sha1-kAlISfCTfy7twkJdDSip5fDLrZ4=",
"dev": true
},
"check-error": {
"version": "1.0.2",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/check-error/-/check-error-1.0.2.tgz?dl=https://registry.npmjs.org/check-error/-/check-error-1.0.2.tgz",
"integrity": "sha1-V00xLt2Iu13YkS6Sht1sCu1KrII=",
"dev": true
},
"chokidar": {
"version": "2.0.4",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/chokidar/-/chokidar-2.0.4.tgz?dl=https://registry.npmjs.org/chokidar/-/chokidar-2.0.4.tgz",
"integrity": "sha1-NW/04rDo5D4yLRijckYLvPOszSY=",
"requires": {
"anymatch": "^2.0.0",
"async-each": "^1.0.0",
"braces": "^2.3.0",
"fsevents": "^1.2.2",
"glob-parent": "^3.1.0",
"inherits": "^2.0.1",
"is-binary-path": "^1.0.0",
"is-glob": "^4.0.0",
"lodash.debounce": "^4.0.8",
"normalize-path": "^2.1.1",
"path-is-absolute": "^1.0.0",
"readdirp": "^2.0.0",
"upath": "^1.0.5"
}
},
"circular-json": {
"version": "0.3.3",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/circular-json/-/circular-json-0.3.3.tgz?dl=https://registry.npmjs.org/circular-json/-/circular-json-0.3.3.tgz",
"integrity": "sha1-gVyZ6oT2gJUp0vRXkb34JxE1LWY=",
"dev": true
},
"class-utils": {
"version": "0.3.6",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/class-utils/-/class-utils-0.3.6.tgz?dl=https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz",
"integrity": "sha1-+TNprouafOAv1B+q0MqDAzGQxGM=",
"requires": {
"arr-union": "^3.1.0",
"define-property": "^0.2.5",
"isobject": "^3.0.0",
"static-extend": "^0.1.1"
},
"dependencies": {
"define-property": {
"version": "0.2.5",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/define-property/-/define-property-0.2.5.tgz?dl=https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
"integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
"requires": {
"is-descriptor": "^0.1.0"
}
}
}
},
"cli-cursor": {
"version": "2.1.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/cli-cursor/-/cli-cursor-2.1.0.tgz?dl=https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz",
"integrity": "sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=",
"dev": true,
"requires": {
"restore-cursor": "^2.0.0"
}
},
"cli-width": {
"version": "2.2.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/cli-width/-/cli-width-2.2.0.tgz?dl=https://registry.npmjs.org/cli-width/-/cli-width-2.2.0.tgz",
"integrity": "sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk=",
"dev": true
},
"collection-visit": {
"version": "1.0.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/collection-visit/-/collection-visit-1.0.0.tgz?dl=https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz",
"integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=",
"requires": {
"map-visit": "^1.0.0",
"object-visit": "^1.0.0"
}
},
"color-convert": {
"version": "1.9.3",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/color-convert/-/color-convert-1.9.3.tgz?dl=https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
"integrity": "sha1-u3GFBpDh8TZWfeYp0tVHHe2kweg=",
"dev": true,
"requires": {
"color-name": "1.1.3"
}
},
"color-name": {
"version": "1.1.3",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/color-name/-/color-name-1.1.3.tgz?dl=https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
"integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=",
"dev": true
},
"commander": {
"version": "2.19.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/commander/-/commander-2.19.0.tgz?dl=https://registry.npmjs.org/commander/-/commander-2.19.0.tgz",
"integrity": "sha1-9hmKqE5bg8RgVLlN3tv+1e6f8So=",
"dev": true
},
"common-tags": {
"version": "1.8.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/common-tags/-/common-tags-1.8.0.tgz?dl=https://registry.npmjs.org/common-tags/-/common-tags-1.8.0.tgz",
"integrity": "sha1-jjFT5ULUo56bEFVENK+q+YlWqTc="
},
"component-emitter": {
"version": "1.2.1",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/component-emitter/-/component-emitter-1.2.1.tgz?dl=https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz",
"integrity": "sha1-E3kY1teCg/ffemt8WmPhQOaUJeY="
},
"concat-map": {
"version": "0.0.1",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/concat-map/-/concat-map-0.0.1.tgz?dl=https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
"integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s="
},
"contains-path": {
"version": "0.1.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/contains-path/-/contains-path-0.1.0.tgz?dl=https://registry.npmjs.org/contains-path/-/contains-path-0.1.0.tgz",
"integrity": "sha1-/ozxhP9mcLa67wGp1IYaXL7EEgo=",
"dev": true
},
"copy-descriptor": {
"version": "0.1.1",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/copy-descriptor/-/copy-descriptor-0.1.1.tgz?dl=https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz",
"integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40="
},
"core-js": {
"version": "2.5.7",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/core-js/-/core-js-2.5.7.tgz?dl=https://registry.npmjs.org/core-js/-/core-js-2.5.7.tgz",
"integrity": "sha1-+XJgj/DOrWi4QaFqky0LGDeRgU4="
},
"core-util-is": {
"version": "1.0.2",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/core-util-is/-/core-util-is-1.0.2.tgz?dl=https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz",
"integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac="
},
"cross-spawn": {
"version": "6.0.5",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/cross-spawn/-/cross-spawn-6.0.5.tgz?dl=https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz",
"integrity": "sha1-Sl7Hxk364iw6FBJNus3uhG2Ay8Q=",
"dev": true,
"requires": {
"nice-try": "^1.0.4",
"path-key": "^2.0.1",
"semver": "^5.5.0",
"shebang-command": "^1.2.0",
"which": "^1.2.9"
}
},
"damerau-levenshtein": {
"version": "1.0.4",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/damerau-levenshtein/-/damerau-levenshtein-1.0.4.tgz?dl=https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.4.tgz",
"integrity": "sha1-AxkcQyy27qFou3fzpV/9zLiXhRQ=",
"dev": true
},
"debug": {
"version": "4.1.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/debug/-/debug-4.1.0.tgz?dl=https://registry.npmjs.org/debug/-/debug-4.1.0.tgz",
"integrity": "sha1-NzaHv/pnizixzZH4YbY4UANd3Ic=",
"requires": {
"ms": "^2.1.1"
}
},
"decode-uri-component": {
"version": "0.2.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/decode-uri-component/-/decode-uri-component-0.2.0.tgz?dl=https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz",
"integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU="
},
"deep-eql": {
"version": "3.0.1",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/deep-eql/-/deep-eql-3.0.1.tgz?dl=https://registry.npmjs.org/deep-eql/-/deep-eql-3.0.1.tgz",
"integrity": "sha1-38lARACtHI/gI+faHfHBR8S0RN8=",
"dev": true,
"requires": {
"type-detect": "^4.0.0"
}
},
"deep-is": {
"version": "0.1.3",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/deep-is/-/deep-is-0.1.3.tgz?dl=https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz",
"integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=",
"dev": true
},
"define-properties": {
"version": "1.1.3",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/define-properties/-/define-properties-1.1.3.tgz?dl=https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz",
"integrity": "sha1-z4jabL7ib+bbcJT2HYcMvYTO6fE=",
"dev": true,
"requires": {
"object-keys": "^1.0.12"
}
},
"define-property": {
"version": "2.0.2",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/define-property/-/define-property-2.0.2.tgz?dl=https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz",
"integrity": "sha1-1Flono1lS6d+AqgX+HENcCyxbp0=",
"requires": {
"is-descriptor": "^1.0.2",
"isobject": "^3.0.1"
},
"dependencies": {
"is-accessor-descriptor": {
"version": "1.0.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz?dl=https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
"integrity": "sha1-FpwvbT3x+ZJhgHI2XJsOofaHhlY=",
"requires": {
"kind-of": "^6.0.0"
}
},
"is-data-descriptor": {
"version": "1.0.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz?dl=https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
"integrity": "sha1-2Eh2Mh0Oet0DmQQGq7u9NrqSaMc=",
"requires": {
"kind-of": "^6.0.0"
}
},
"is-descriptor": {
"version": "1.0.2",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/is-descriptor/-/is-descriptor-1.0.2.tgz?dl=https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
"integrity": "sha1-OxWXRqZmBLBPjIFSS6NlxfFNhuw=",
"requires": {
"is-accessor-descriptor": "^1.0.0",
"is-data-descriptor": "^1.0.0",
"kind-of": "^6.0.2"
}
}
}
},
"del": {
"version": "2.2.2",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/del/-/del-2.2.2.tgz?dl=https://registry.npmjs.org/del/-/del-2.2.2.tgz",
"integrity": "sha1-wSyYHQZ4RshLyvhiz/kw2Qf/0ag=",
"dev": true,
"requires": {
"globby": "^5.0.0",
"is-path-cwd": "^1.0.0",
"is-path-in-cwd": "^1.0.0",
"object-assign": "^4.0.1",
"pify": "^2.0.0",
"pinkie-promise": "^2.0.0",
"rimraf": "^2.2.8"
}
},
"diff": {
"version": "3.5.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/diff/-/diff-3.5.0.tgz?dl=https://registry.npmjs.org/diff/-/diff-3.5.0.tgz",
"integrity": "sha1-gAwN0eCov7yVg1wgKtIg/jF+WhI=",
"dev": true
},
"doctrine": {
"version": "2.1.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/doctrine/-/doctrine-2.1.0.tgz?dl=https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz",
"integrity": "sha1-XNAfwQFiG0LEzX9dGmYkNxbT850=",
"dev": true,
"requires": {
"esutils": "^2.0.2"
}
},
"emoji-regex": {
"version": "6.5.1",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/emoji-regex/-/emoji-regex-6.5.1.tgz?dl=https://registry.npmjs.org/emoji-regex/-/emoji-regex-6.5.1.tgz",
"integrity": "sha1-m66pKbFVVlwR6kHGYm6qZc75ksI=",
"dev": true
},
"error-ex": {
"version": "1.3.2",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/error-ex/-/error-ex-1.3.2.tgz?dl=https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz",
"integrity": "sha1-tKxAZIEH/c3PriQvQovqihTU8b8=",
"dev": true,
"requires": {
"is-arrayish": "^0.2.1"
}
},
"es-abstract": {
"version": "1.12.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/es-abstract/-/es-abstract-1.12.0.tgz?dl=https://registry.npmjs.org/es-abstract/-/es-abstract-1.12.0.tgz",
"integrity": "sha1-nbvdJ8aFbwABQhyhh4LXhr+KYWU=",
"dev": true,
"requires": {
"es-to-primitive": "^1.1.1",
"function-bind": "^1.1.1",
"has": "^1.0.1",
"is-callable": "^1.1.3",
"is-regex": "^1.0.4"
}
},
"es-to-primitive": {
"version": "1.2.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/es-to-primitive/-/es-to-primitive-1.2.0.tgz?dl=https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.0.tgz",
"integrity": "sha1-7fckeAM0VujdqO8J4ArZZQcH83c=",
"dev": true,
"requires": {
"is-callable": "^1.1.4",
"is-date-object": "^1.0.1",
"is-symbol": "^1.0.2"
}
},
"escape-string-regexp": {
"version": "1.0.5",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz?dl=https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
"integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ="
},
"eslint": {
"version": "5.7.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/eslint/-/eslint-5.7.0.tgz?dl=https://registry.npmjs.org/eslint/-/eslint-5.7.0.tgz",
"integrity": "sha1-VcMm1vsq1F/L0M4Xw4RvAl0dgZw=",
"dev": true,
"requires": {
"@babel/code-frame": "^7.0.0",
"ajv": "^6.5.3",
"chalk": "^2.1.0",
"cross-spawn": "^6.0.5",
"debug": "^4.0.1",
"doctrine": "^2.1.0",
"eslint-scope": "^4.0.0",
"eslint-utils": "^1.3.1",
"eslint-visitor-keys": "^1.0.0",
"espree": "^4.0.0",
"esquery": "^1.0.1",
"esutils": "^2.0.2",
"file-entry-cache": "^2.0.0",
"functional-red-black-tree": "^1.0.1",
"glob": "^7.1.2",
"globals": "^11.7.0",
"ignore": "^4.0.6",
"imurmurhash": "^0.1.4",
"inquirer": "^6.1.0",
"is-resolvable": "^1.1.0",
"js-yaml": "^3.12.0",
"json-stable-stringify-without-jsonify": "^1.0.1",
"levn": "^0.3.0",
"lodash": "^4.17.5",
"minimatch": "^3.0.4",
"mkdirp": "^0.5.1",
"natural-compare": "^1.4.0",
"optionator": "^0.8.2",
"path-is-inside": "^1.0.2",
"pluralize": "^7.0.0",
"progress": "^2.0.0",
"regexpp": "^2.0.1",
"require-uncached": "^1.0.3",
"semver": "^5.5.1",
"strip-ansi": "^4.0.0",
"strip-json-comments": "^2.0.1",
"table": "^5.0.2",
"text-table": "^0.2.0"
}
},
"eslint-config-airbnb": {
"version": "17.1.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/eslint-config-airbnb/-/eslint-config-airbnb-17.1.0.tgz?dl=https://registry.npmjs.org/eslint-config-airbnb/-/eslint-config-airbnb-17.1.0.tgz",
"integrity": "sha1-OWTtS8GYJAMV/1IDC/hjb0K8RzI=",
"dev": true,
"requires": {
"eslint-config-airbnb-base": "^13.1.0",
"object.assign": "^4.1.0",
"object.entries": "^1.0.4"
}
},
"eslint-config-airbnb-base": {
"version": "13.1.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/eslint-config-airbnb-base/-/eslint-config-airbnb-base-13.1.0.tgz?dl=https://registry.npmjs.org/eslint-config-airbnb-base/-/eslint-config-airbnb-base-13.1.0.tgz",
"integrity": "sha1-taG0gLgN+tFkM9bErYTmYFBSwFw=",
"dev": true,
"requires": {
"eslint-restricted-globals": "^0.1.1",
"object.assign": "^4.1.0",
"object.entries": "^1.0.4"
}
},
"eslint-import-resolver-node": {
"version": "0.3.2",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.2.tgz?dl=https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.2.tgz",
"integrity": "sha1-WPFfuDm40FdsqYBBNHaqskcttmo=",
"dev": true,
"requires": {
"debug": "^2.6.9",
"resolve": "^1.5.0"
},
"dependencies": {
"debug": {
"version": "2.6.9",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/debug/-/debug-2.6.9.tgz?dl=https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
"integrity": "sha1-XRKFFd8TT/Mn6QpMk/Tgd6U2NB8=",
"dev": true,
"requires": {
"ms": "2.0.0"
}
},
"ms": {
"version": "2.0.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/ms/-/ms-2.0.0.tgz?dl=https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
"integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
"dev": true
}
}
},
"eslint-module-utils": {
"version": "2.2.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/eslint-module-utils/-/eslint-module-utils-2.2.0.tgz?dl=https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.2.0.tgz",
"integrity": "sha1-snA2LNiLGkitMIl2zn+lTphBF0Y=",
"dev": true,
"requires": {
"debug": "^2.6.8",
"pkg-dir": "^1.0.0"
},
"dependencies": {
"debug": {
"version": "2.6.9",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/debug/-/debug-2.6.9.tgz?dl=https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
"integrity": "sha1-XRKFFd8TT/Mn6QpMk/Tgd6U2NB8=",
"dev": true,
"requires": {
"ms": "2.0.0"
}
},
"ms": {
"version": "2.0.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/ms/-/ms-2.0.0.tgz?dl=https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
"integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
"dev": true
}
}
},
"eslint-plugin-import": {
"version": "2.14.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/eslint-plugin-import/-/eslint-plugin-import-2.14.0.tgz?dl=https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.14.0.tgz",
"integrity": "sha1-axdibS4+atUs/OiAeoRdFeIhEag=",
"dev": true,
"requires": {
"contains-path": "^0.1.0",
"debug": "^2.6.8",
"doctrine": "1.5.0",
"eslint-import-resolver-node": "^0.3.1",
"eslint-module-utils": "^2.2.0",
"has": "^1.0.1",
"lodash": "^4.17.4",
"minimatch": "^3.0.3",
"read-pkg-up": "^2.0.0",
"resolve": "^1.6.0"
},
"dependencies": {
"debug": {
"version": "2.6.9",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/debug/-/debug-2.6.9.tgz?dl=https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
"integrity": "sha1-XRKFFd8TT/Mn6QpMk/Tgd6U2NB8=",
"dev": true,
"requires": {
"ms": "2.0.0"
}
},
"doctrine": {
"version": "1.5.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/doctrine/-/doctrine-1.5.0.tgz?dl=https://registry.npmjs.org/doctrine/-/doctrine-1.5.0.tgz",
"integrity": "sha1-N53Ocw9hZvds76TmcHoVmwLFpvo=",
"dev": true,
"requires": {
"esutils": "^2.0.2",
"isarray": "^1.0.0"
}
},
"ms": {
"version": "2.0.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/ms/-/ms-2.0.0.tgz?dl=https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
"integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=",
"dev": true
}
}
},
"eslint-plugin-jsx-a11y": {
"version": "6.1.2",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.1.2.tgz?dl=https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.1.2.tgz",
"integrity": "sha1-abykiQs23PD+Ft0hKdLYi5jzP4g=",
"dev": true,
"requires": {
"aria-query": "^3.0.0",
"array-includes": "^3.0.3",
"ast-types-flow": "^0.0.7",
"axobject-query": "^2.0.1",
"damerau-levenshtein": "^1.0.4",
"emoji-regex": "^6.5.1",
"has": "^1.0.3",
"jsx-ast-utils": "^2.0.1"
}
},
"eslint-plugin-react": {
"version": "7.11.1",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/eslint-plugin-react/-/eslint-plugin-react-7.11.1.tgz?dl=https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.11.1.tgz",
"integrity": "sha1-wBp69vF1GUV9YRaqlPxtLMrVRDw=",
"dev": true,
"requires": {
"array-includes": "^3.0.3",
"doctrine": "^2.1.0",
"has": "^1.0.3",
"jsx-ast-utils": "^2.0.1",
"prop-types": "^15.6.2"
}
},
"eslint-restricted-globals": {
"version": "0.1.1",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/eslint-restricted-globals/-/eslint-restricted-globals-0.1.1.tgz?dl=https://registry.npmjs.org/eslint-restricted-globals/-/eslint-restricted-globals-0.1.1.tgz",
"integrity": "sha1-NfDVy8ZMLj7WLpO0saevBbp+1Nc=",
"dev": true
},
"eslint-scope": {
"version": "4.0.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/eslint-scope/-/eslint-scope-4.0.0.tgz?dl=https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.0.tgz",
"integrity": "sha1-UL8wcekzi83EMzF5Sgy1M/ATYXI=",
"dev": true,
"requires": {
"esrecurse": "^4.1.0",
"estraverse": "^4.1.1"
}
},
"eslint-utils": {
"version": "1.3.1",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/eslint-utils/-/eslint-utils-1.3.1.tgz?dl=https://registry.npmjs.org/eslint-utils/-/eslint-utils-1.3.1.tgz",
"integrity": "sha1-moUbqJ7nxGA0b5fPiTnHKYgn5RI=",
"dev": true
},
"eslint-visitor-keys": {
"version": "1.0.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz?dl=https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz",
"integrity": "sha1-PzGA+y4pEBdxastMnW1bXDSmqB0=",
"dev": true
},
"espree": {
"version": "4.0.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/espree/-/espree-4.0.0.tgz?dl=https://registry.npmjs.org/espree/-/espree-4.0.0.tgz",
"integrity": "sha1-JTmY8goPgttdhmOFeZ2RKoOjZjQ=",
"dev": true,
"requires": {
"acorn": "^5.6.0",
"acorn-jsx": "^4.1.1"
}
},
"esprima": {
"version": "4.0.1",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/esprima/-/esprima-4.0.1.tgz?dl=https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz",
"integrity": "sha1-E7BM2z5sXRnfkatph6hpVhmwqnE=",
"dev": true
},
"esquery": {
"version": "1.0.1",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/esquery/-/esquery-1.0.1.tgz?dl=https://registry.npmjs.org/esquery/-/esquery-1.0.1.tgz",
"integrity": "sha1-QGxRZYsfWZGl+bYrHcJbAOPlxwg=",
"dev": true,
"requires": {
"estraverse": "^4.0.0"
}
},
"esrecurse": {
"version": "4.2.1",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/esrecurse/-/esrecurse-4.2.1.tgz?dl=https://registry.npmjs.org/esrecurse/-/esrecurse-4.2.1.tgz",
"integrity": "sha1-AHo7n9vCs7uH5IeeoZyS/b05Qs8=",
"dev": true,
"requires": {
"estraverse": "^4.1.0"
}
},