This repository has been archived by the owner on Feb 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage-lock.json
3199 lines (3199 loc) · 137 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": "broccoli-lint-remark",
"version": "1.1.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"acorn": {
"version": "5.5.1",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/acorn/-/acorn-5.5.1.tgz?dl=https://registry.npmjs.org/acorn/-/acorn-5.5.1.tgz",
"integrity": "sha1-hOBanqCsvhMSJ9pQMB5iRk3Jwdg=",
"dev": true
},
"acorn-jsx": {
"version": "3.0.1",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/acorn-jsx/-/acorn-jsx-3.0.1.tgz?dl=https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-3.0.1.tgz",
"integrity": "sha1-r9+UiPsezvyDSPb7IvRk4ypYs2s=",
"dev": true,
"requires": {
"acorn": "3.3.0"
},
"dependencies": {
"acorn": {
"version": "3.3.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/acorn/-/acorn-3.3.0.tgz?dl=https://registry.npmjs.org/acorn/-/acorn-3.3.0.tgz",
"integrity": "sha1-ReN/s56No/JbruP/U2niu18iAXo=",
"dev": true
}
}
},
"ajv": {
"version": "5.5.2",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/ajv/-/ajv-5.5.2.tgz?dl=https://registry.npmjs.org/ajv/-/ajv-5.5.2.tgz",
"integrity": "sha1-c7Xuyj+rZT49P5Qis0GtQiBdyWU=",
"dev": true,
"requires": {
"co": "4.6.0",
"fast-deep-equal": "1.1.0",
"fast-json-stable-stringify": "2.0.0",
"json-schema-traverse": "0.3.1"
}
},
"ajv-keywords": {
"version": "2.1.1",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/ajv-keywords/-/ajv-keywords-2.1.1.tgz?dl=https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-2.1.1.tgz",
"integrity": "sha1-YXmX/F9gV2iUxDX5QNgZ4TW4B2I=",
"dev": true
},
"align-text": {
"version": "0.1.4",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/align-text/-/align-text-0.1.4.tgz?dl=https://registry.npmjs.org/align-text/-/align-text-0.1.4.tgz",
"integrity": "sha1-DNkKVhCT810KmSVsIrcGlDP60Rc=",
"dev": true,
"requires": {
"kind-of": "3.2.2",
"longest": "1.0.1",
"repeat-string": "1.6.1"
}
},
"amdefine": {
"version": "1.0.1",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/amdefine/-/amdefine-1.0.1.tgz?dl=https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz",
"integrity": "sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU=",
"dev": true
},
"ansi-escapes": {
"version": "3.0.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/ansi-escapes/-/ansi-escapes-3.0.0.tgz?dl=https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.0.0.tgz",
"integrity": "sha1-7D6LTp+AZPwCw6ybZfHCdb2o75I=",
"dev": true
},
"ansi-regex": {
"version": "2.1.1",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/ansi-regex/-/ansi-regex-2.1.1.tgz?dl=https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz",
"integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8="
},
"ansi-styles": {
"version": "2.2.1",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/ansi-styles/-/ansi-styles-2.2.1.tgz?dl=https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz",
"integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=",
"dev": true
},
"anymatch": {
"version": "1.3.2",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/anymatch/-/anymatch-1.3.2.tgz?dl=https://registry.npmjs.org/anymatch/-/anymatch-1.3.2.tgz",
"integrity": "sha1-VT3Lj5HjyImEXf26NMd3IbkLnXo=",
"dev": true,
"requires": {
"micromatch": "2.3.11",
"normalize-path": "2.1.1"
}
},
"aot-test-generators": {
"version": "0.1.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/aot-test-generators/-/aot-test-generators-0.1.0.tgz?dl=https://registry.npmjs.org/aot-test-generators/-/aot-test-generators-0.1.0.tgz",
"integrity": "sha1-Q/D2Ffl8spjXkZwbC05rcxCwPNA=",
"requires": {
"jsesc": "2.5.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=",
"requires": {
"sprintf-js": "1.0.3"
},
"dependencies": {
"sprintf-js": {
"version": "1.0.3",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/sprintf-js/-/sprintf-js-1.0.3.tgz?dl=https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz",
"integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw="
}
}
},
"arr-diff": {
"version": "2.0.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/arr-diff/-/arr-diff-2.0.0.tgz?dl=https://registry.npmjs.org/arr-diff/-/arr-diff-2.0.0.tgz",
"integrity": "sha1-jzuCf5Vai9ZpaX5KQlasPOrjVs8=",
"dev": true,
"requires": {
"arr-flatten": "1.1.0"
}
},
"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=",
"dev": true
},
"array-equal": {
"version": "1.0.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/array-equal/-/array-equal-1.0.0.tgz?dl=https://registry.npmjs.org/array-equal/-/array-equal-1.0.0.tgz",
"integrity": "sha1-jCpe8kcv2ep0KwTHenUJO6J1fJM=",
"dev": true
},
"array-iterate": {
"version": "1.1.1",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/array-iterate/-/array-iterate-1.1.1.tgz?dl=https://registry.npmjs.org/array-iterate/-/array-iterate-1.1.1.tgz",
"integrity": "sha1-hlv3+K851rCYLGCQKRSsdrwBCPY="
},
"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.3"
}
},
"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.2.1",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/array-unique/-/array-unique-0.2.1.tgz?dl=https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz",
"integrity": "sha1-odl8yvy8JiXMcPrc6zalDFiwGlM=",
"dev": true
},
"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
},
"async": {
"version": "2.6.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/async/-/async-2.6.0.tgz?dl=https://registry.npmjs.org/async/-/async-2.6.0.tgz",
"integrity": "sha1-YaKau2/MAm/qd+VtHG7FOnlZUfQ=",
"requires": {
"lodash": "4.17.5"
}
},
"async-disk-cache": {
"version": "1.3.3",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/async-disk-cache/-/async-disk-cache-1.3.3.tgz?dl=https://registry.npmjs.org/async-disk-cache/-/async-disk-cache-1.3.3.tgz",
"integrity": "sha1-YEBIZmCzcOQFHNn6n+4nXh+uNyg=",
"requires": {
"debug": "2.6.9",
"heimdalljs": "0.2.5",
"istextorbinary": "2.1.0",
"mkdirp": "0.5.1",
"rimraf": "2.6.2",
"rsvp": "3.6.2",
"username-sync": "1.0.1"
},
"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=",
"requires": {
"ms": "2.0.0"
}
}
}
},
"async-promise-queue": {
"version": "1.0.4",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/async-promise-queue/-/async-promise-queue-1.0.4.tgz?dl=https://registry.npmjs.org/async-promise-queue/-/async-promise-queue-1.0.4.tgz",
"integrity": "sha1-MIuq+8dK/2agu25/ShjU/oQ0RAw=",
"requires": {
"async": "2.6.0",
"debug": "2.6.9"
},
"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=",
"requires": {
"ms": "2.0.0"
}
}
}
},
"babel-code-frame": {
"version": "6.26.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/babel-code-frame/-/babel-code-frame-6.26.0.tgz?dl=https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz",
"integrity": "sha1-Y/1D99weO7fONZR9uP42mj9Yx0s=",
"dev": true,
"requires": {
"chalk": "1.1.3",
"esutils": "2.0.2",
"js-tokens": "3.0.2"
},
"dependencies": {
"chalk": {
"version": "1.1.3",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/chalk/-/chalk-1.1.3.tgz?dl=https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz",
"integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
"dev": true,
"requires": {
"ansi-styles": "2.2.1",
"escape-string-regexp": "1.0.5",
"has-ansi": "2.0.0",
"strip-ansi": "3.0.1",
"supports-color": "2.0.0"
}
},
"supports-color": {
"version": "2.0.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/supports-color/-/supports-color-2.0.0.tgz?dl=https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz",
"integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=",
"dev": true
}
}
},
"bail": {
"version": "1.0.2",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/bail/-/bail-1.0.2.tgz?dl=https://registry.npmjs.org/bail/-/bail-1.0.2.tgz",
"integrity": "sha1-99bBcxYwqfnw1NNe0fli4gdKF2Q="
},
"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="
},
"binaryextensions": {
"version": "2.1.1",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/binaryextensions/-/binaryextensions-2.1.1.tgz?dl=https://registry.npmjs.org/binaryextensions/-/binaryextensions-2.1.1.tgz",
"integrity": "sha1-MgmlHKSkrVQaO409am1bg6JIWTU="
},
"blank-object": {
"version": "1.0.2",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/blank-object/-/blank-object-1.0.2.tgz?dl=https://registry.npmjs.org/blank-object/-/blank-object-1.0.2.tgz",
"integrity": "sha1-+ZB5P76ajI3QE/syGUIL7IHV9Lk=",
"dev": true
},
"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": "1.8.5",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/braces/-/braces-1.8.5.tgz?dl=https://registry.npmjs.org/braces/-/braces-1.8.5.tgz",
"integrity": "sha1-uneWLhLf+WnWt2cR6RS3N4V79qc=",
"dev": true,
"requires": {
"expand-range": "1.8.2",
"preserve": "0.2.0",
"repeat-element": "1.1.2"
}
},
"broccoli": {
"version": "1.1.4",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/broccoli/-/broccoli-1.1.4.tgz?dl=https://registry.npmjs.org/broccoli/-/broccoli-1.1.4.tgz",
"integrity": "sha1-sCOwKLhm9EftFDQQB5Ye/QP3JRw=",
"dev": true,
"requires": {
"broccoli-node-info": "1.1.0",
"broccoli-slow-trees": "2.0.0",
"broccoli-source": "1.1.0",
"commander": "2.14.1",
"connect": "3.6.6",
"copy-dereference": "1.0.0",
"findup-sync": "1.0.0",
"handlebars": "4.0.11",
"heimdalljs-logger": "0.1.9",
"mime": "1.6.0",
"rimraf": "2.6.2",
"rsvp": "3.6.2",
"sane": "1.7.0",
"tmp": "0.0.31",
"underscore.string": "3.3.4"
}
},
"broccoli-funnel": {
"version": "2.0.1",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/broccoli-funnel/-/broccoli-funnel-2.0.1.tgz?dl=https://registry.npmjs.org/broccoli-funnel/-/broccoli-funnel-2.0.1.tgz",
"integrity": "sha1-aCPHO2de94//p6uADwg+dotR1Ek=",
"dev": true,
"requires": {
"array-equal": "1.0.0",
"blank-object": "1.0.2",
"broccoli-plugin": "1.3.0",
"debug": "2.6.9",
"fast-ordered-set": "1.0.3",
"fs-tree-diff": "0.5.7",
"heimdalljs": "0.2.5",
"minimatch": "3.0.4",
"mkdirp": "0.5.1",
"path-posix": "1.0.0",
"rimraf": "2.6.2",
"symlink-or-copy": "1.2.0",
"walk-sync": "0.3.2"
},
"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"
}
}
}
},
"broccoli-kitchen-sink-helpers": {
"version": "0.3.1",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/broccoli-kitchen-sink-helpers/-/broccoli-kitchen-sink-helpers-0.3.1.tgz?dl=https://registry.npmjs.org/broccoli-kitchen-sink-helpers/-/broccoli-kitchen-sink-helpers-0.3.1.tgz",
"integrity": "sha1-d8fBgZS5ZkFj7E/O4nk0RJJuDAY=",
"requires": {
"glob": "5.0.15",
"mkdirp": "0.5.1"
},
"dependencies": {
"glob": {
"version": "5.0.15",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/glob/-/glob-5.0.15.tgz?dl=https://registry.npmjs.org/glob/-/glob-5.0.15.tgz",
"integrity": "sha1-G8k2ueAvSmA/zCIuz3Yz0wuLk7E=",
"requires": {
"inflight": "1.0.6",
"inherits": "2.0.3",
"minimatch": "3.0.4",
"once": "1.4.0",
"path-is-absolute": "1.0.1"
}
}
}
},
"broccoli-node-info": {
"version": "1.1.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/broccoli-node-info/-/broccoli-node-info-1.1.0.tgz?dl=https://registry.npmjs.org/broccoli-node-info/-/broccoli-node-info-1.1.0.tgz",
"integrity": "sha1-OqLjHgflvbUW3SUhT3xFuhxFlBI=",
"dev": true
},
"broccoli-persistent-filter": {
"version": "1.4.3",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/broccoli-persistent-filter/-/broccoli-persistent-filter-1.4.3.tgz?dl=https://registry.npmjs.org/broccoli-persistent-filter/-/broccoli-persistent-filter-1.4.3.tgz",
"integrity": "sha1-NRG8UvxTdAzaUWIfWKKBUtmRG8E=",
"requires": {
"async-disk-cache": "1.3.3",
"async-promise-queue": "1.0.4",
"broccoli-plugin": "1.3.0",
"fs-tree-diff": "0.5.7",
"hash-for-dep": "1.2.3",
"heimdalljs": "0.2.5",
"heimdalljs-logger": "0.1.9",
"mkdirp": "0.5.1",
"promise-map-series": "0.2.3",
"rimraf": "2.6.2",
"rsvp": "3.6.2",
"symlink-or-copy": "1.2.0",
"walk-sync": "0.3.2"
}
},
"broccoli-plugin": {
"version": "1.3.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/broccoli-plugin/-/broccoli-plugin-1.3.0.tgz?dl=https://registry.npmjs.org/broccoli-plugin/-/broccoli-plugin-1.3.0.tgz",
"integrity": "sha1-vucEqOQtoIy1jlE6qkNu+38O8e4=",
"requires": {
"promise-map-series": "0.2.3",
"quick-temp": "0.1.8",
"rimraf": "2.6.2",
"symlink-or-copy": "1.2.0"
}
},
"broccoli-slow-trees": {
"version": "2.0.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/broccoli-slow-trees/-/broccoli-slow-trees-2.0.0.tgz?dl=https://registry.npmjs.org/broccoli-slow-trees/-/broccoli-slow-trees-2.0.0.tgz",
"integrity": "sha1-l0Gv6ZJ4et1krsf3yCEd/MBYJ40=",
"dev": true
},
"broccoli-source": {
"version": "1.1.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/broccoli-source/-/broccoli-source-1.1.0.tgz?dl=https://registry.npmjs.org/broccoli-source/-/broccoli-source-1.1.0.tgz",
"integrity": "sha1-VPDoLItz9GWAy7xPV48LMvyo+Ak=",
"dev": true
},
"broccoli-test-helper": {
"version": "1.2.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/broccoli-test-helper/-/broccoli-test-helper-1.2.0.tgz?dl=https://registry.npmjs.org/broccoli-test-helper/-/broccoli-test-helper-1.2.0.tgz",
"integrity": "sha1-0BAF2GEf1z6+GylVK/BS/1m637Q=",
"dev": true,
"requires": {
"broccoli": "1.1.4",
"fixturify": "0.3.4",
"fs-tree-diff": "0.5.7",
"mktemp": "0.4.0",
"rimraf": "2.6.2",
"walk-sync": "0.3.2"
}
},
"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
},
"bser": {
"version": "2.0.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/bser/-/bser-2.0.0.tgz?dl=https://registry.npmjs.org/bser/-/bser-2.0.0.tgz",
"integrity": "sha1-mseNPtXZFYBP2HrLFYvHlxR6Fxk=",
"dev": true,
"requires": {
"node-int64": "0.4.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
},
"camelcase": {
"version": "1.2.1",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/camelcase/-/camelcase-1.2.1.tgz?dl=https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz",
"integrity": "sha1-m7UwTS4LVmmLLHWLCKPqqdqlijk=",
"dev": true,
"optional": true
},
"ccount": {
"version": "1.0.2",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/ccount/-/ccount-1.0.2.tgz?dl=https://registry.npmjs.org/ccount/-/ccount-1.0.2.tgz",
"integrity": "sha1-U7ai+BW7d7nChx97mnLDol8djok="
},
"center-align": {
"version": "0.1.3",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/center-align/-/center-align-0.1.3.tgz?dl=https://registry.npmjs.org/center-align/-/center-align-0.1.3.tgz",
"integrity": "sha1-qg0yYptu6XIgBBHL1EYckHvCt60=",
"dev": true,
"optional": true,
"requires": {
"align-text": "0.1.4",
"lazy-cache": "1.0.4"
}
},
"chai": {
"version": "4.1.2",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/chai/-/chai-4.1.2.tgz?dl=https://registry.npmjs.org/chai/-/chai-4.1.2.tgz",
"integrity": "sha1-D2RYS6ZC8PKs4oBiefTwbKI61zw=",
"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.8"
}
},
"chai-as-promised": {
"version": "7.1.1",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/chai-as-promised/-/chai-as-promised-7.1.1.tgz?dl=https://registry.npmjs.org/chai-as-promised/-/chai-as-promised-7.1.1.tgz",
"integrity": "sha1-CGRdgl3rhpbuYXJdv1kMAS6wDKA=",
"dev": true,
"requires": {
"check-error": "1.0.2"
}
},
"chalk": {
"version": "2.3.2",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/chalk/-/chalk-2.3.2.tgz?dl=https://registry.npmjs.org/chalk/-/chalk-2.3.2.tgz",
"integrity": "sha1-JQ3JawdJG/1gHmSNZt319gx6XGU=",
"dev": true,
"requires": {
"ansi-styles": "3.2.1",
"escape-string-regexp": "1.0.5",
"supports-color": "5.3.0"
},
"dependencies": {
"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.1"
}
},
"has-flag": {
"version": "3.0.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/has-flag/-/has-flag-3.0.0.tgz?dl=https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
"integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=",
"dev": true
},
"supports-color": {
"version": "5.3.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/supports-color/-/supports-color-5.3.0.tgz?dl=https://registry.npmjs.org/supports-color/-/supports-color-5.3.0.tgz",
"integrity": "sha1-WySsFduA+pJ89SJ6SjP9PEx2dsA=",
"dev": true,
"requires": {
"has-flag": "3.0.0"
}
}
}
},
"character-entities": {
"version": "1.2.1",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/character-entities/-/character-entities-1.2.1.tgz?dl=https://registry.npmjs.org/character-entities/-/character-entities-1.2.1.tgz",
"integrity": "sha1-92hxvl72bdt/j440eOzDdMJ9bco="
},
"character-entities-html4": {
"version": "1.1.1",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/character-entities-html4/-/character-entities-html4-1.1.1.tgz?dl=https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-1.1.1.tgz",
"integrity": "sha1-NZoqSg9+KdPcKsmb2+Ie45Q46lA="
},
"character-entities-legacy": {
"version": "1.1.1",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/character-entities-legacy/-/character-entities-legacy-1.1.1.tgz?dl=https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-1.1.1.tgz",
"integrity": "sha1-9Ad53xoQGHK7UQo9KV4fzPFHIC8="
},
"character-reference-invalid": {
"version": "1.1.1",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/character-reference-invalid/-/character-reference-invalid-1.1.1.tgz?dl=https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-1.1.1.tgz",
"integrity": "sha1-lCg191Dk7GGjCOYMLvjMEBEgLvw="
},
"chardet": {
"version": "0.4.2",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/chardet/-/chardet-0.4.2.tgz?dl=https://registry.npmjs.org/chardet/-/chardet-0.4.2.tgz",
"integrity": "sha1-tUc7M9yXxCTl2Y3IfVXU2KKci/I=",
"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
},
"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
},
"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
},
"cliui": {
"version": "2.1.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/cliui/-/cliui-2.1.0.tgz?dl=https://registry.npmjs.org/cliui/-/cliui-2.1.0.tgz",
"integrity": "sha1-S0dXYP+AJkx2LDoXGQMukcf+oNE=",
"dev": true,
"optional": true,
"requires": {
"center-align": "0.1.3",
"right-align": "0.1.3",
"wordwrap": "0.0.2"
},
"dependencies": {
"wordwrap": {
"version": "0.0.2",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/wordwrap/-/wordwrap-0.0.2.tgz?dl=https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz",
"integrity": "sha1-t5Zpu0LstAn4PVg8rVLKF+qhZD8=",
"dev": true,
"optional": true
}
}
},
"co": {
"version": "4.6.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/co/-/co-4.6.0.tgz?dl=https://registry.npmjs.org/co/-/co-4.6.0.tgz",
"integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=",
"dev": true
},
"code-point-at": {
"version": "1.1.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/code-point-at/-/code-point-at-1.1.0.tgz?dl=https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz",
"integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c="
},
"collapse-white-space": {
"version": "1.0.3",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/collapse-white-space/-/collapse-white-space-1.0.3.tgz?dl=https://registry.npmjs.org/collapse-white-space/-/collapse-white-space-1.0.3.tgz",
"integrity": "sha1-S5BvZw5aljqHt2sOFolkM0G2Ajw="
},
"color-convert": {
"version": "1.9.1",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/color-convert/-/color-convert-1.9.1.tgz?dl=https://registry.npmjs.org/color-convert/-/color-convert-1.9.1.tgz",
"integrity": "sha1-wSYRB66y8pTr/+ye2eytUppgl+0=",
"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.14.1",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/commander/-/commander-2.14.1.tgz?dl=https://registry.npmjs.org/commander/-/commander-2.14.1.tgz",
"integrity": "sha1-IjUSPjevjKPGXfRbAm29NXsBuao=",
"dev": true
},
"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="
},
"concat-stream": {
"version": "1.6.1",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/concat-stream/-/concat-stream-1.6.1.tgz?dl=https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.1.tgz",
"integrity": "sha1-JhuPUYMB8dg042NCuf6gldJiCiY=",
"requires": {
"inherits": "2.0.3",
"readable-stream": "2.3.5",
"typedarray": "0.0.6"
}
},
"connect": {
"version": "3.6.6",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/connect/-/connect-3.6.6.tgz?dl=https://registry.npmjs.org/connect/-/connect-3.6.6.tgz",
"integrity": "sha1-Ce/2xVr3I24TcTWnJXSFi2eG9SQ=",
"dev": true,
"requires": {
"debug": "2.6.9",
"finalhandler": "1.1.0",
"parseurl": "1.3.2",
"utils-merge": "1.0.1"
},
"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"
}
}
}
},
"copy-dereference": {
"version": "1.0.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/copy-dereference/-/copy-dereference-1.0.0.tgz?dl=https://registry.npmjs.org/copy-dereference/-/copy-dereference-1.0.0.tgz",
"integrity": "sha1-axMYZUIP2BtBO6mUtE02VTERUrY=",
"dev": true
},
"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": "5.1.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/cross-spawn/-/cross-spawn-5.1.0.tgz?dl=https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz",
"integrity": "sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=",
"dev": true,
"requires": {
"lru-cache": "4.1.1",
"shebang-command": "1.2.0",
"which": "1.3.0"
}
},
"debug": {
"version": "3.1.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/debug/-/debug-3.1.0.tgz?dl=https://registry.npmjs.org/debug/-/debug-3.1.0.tgz",
"integrity": "sha1-W7WgZyYotkFJVmuhaBnmFRjGcmE=",
"requires": {
"ms": "2.0.0"
}
},
"decamelize": {
"version": "1.2.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/decamelize/-/decamelize-1.2.0.tgz?dl=https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz",
"integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=",
"dev": true,
"optional": true
},
"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.8"
}
},
"deep-extend": {
"version": "0.4.2",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/deep-extend/-/deep-extend-0.4.2.tgz?dl=https://registry.npmjs.org/deep-extend/-/deep-extend-0.4.2.tgz",
"integrity": "sha1-SLaZwn4zS/ifEIkr5DL25MfTSn8="
},
"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
},
"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.1.1",
"pify": "2.3.0",
"pinkie-promise": "2.0.1",
"rimraf": "2.6.2"
}
},
"detect-file": {
"version": "0.1.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/detect-file/-/detect-file-0.1.0.tgz?dl=https://registry.npmjs.org/detect-file/-/detect-file-0.1.0.tgz",
"integrity": "sha1-STXe39lIhkjgBrASlWbpOGcR6mM=",
"dev": true,
"requires": {
"fs-exists-sync": "0.1.0"
}
},
"diff": {
"version": "3.3.1",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/diff/-/diff-3.3.1.tgz?dl=https://registry.npmjs.org/diff/-/diff-3.3.1.tgz",
"integrity": "sha1-qoVnpu7QPFMfyJ0/cRzQ5SWd7HU=",
"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"
}
},
"editions": {
"version": "1.3.4",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/editions/-/editions-1.3.4.tgz?dl=https://registry.npmjs.org/editions/-/editions-1.3.4.tgz",
"integrity": "sha1-NmLLWSNHwxaOuOSYoP9zJx1n9Qs="
},
"ee-first": {
"version": "1.1.1",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/ee-first/-/ee-first-1.1.1.tgz?dl=https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
"integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=",
"dev": true
},
"encodeurl": {
"version": "1.0.2",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/encodeurl/-/encodeurl-1.0.2.tgz?dl=https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz",
"integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=",
"dev": true
},
"ensure-posix-path": {
"version": "1.0.2",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/ensure-posix-path/-/ensure-posix-path-1.0.2.tgz?dl=https://registry.npmjs.org/ensure-posix-path/-/ensure-posix-path-1.0.2.tgz",
"integrity": "sha1-pls+QtC3HPxYXrd0+ZQ8jZuRsMI="
},
"error-ex": {
"version": "1.3.1",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/error-ex/-/error-ex-1.3.1.tgz?dl=https://registry.npmjs.org/error-ex/-/error-ex-1.3.1.tgz",
"integrity": "sha1-+FWobOYa3E6GIcPNoh56dhLDqNw=",
"requires": {
"is-arrayish": "0.2.1"
}
},
"escape-html": {
"version": "1.0.3",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/escape-html/-/escape-html-1.0.3.tgz?dl=https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
"integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=",
"dev": true
},
"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=",
"dev": true
},
"eslint": {
"version": "4.18.2",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/eslint/-/eslint-4.18.2.tgz?dl=https://registry.npmjs.org/eslint/-/eslint-4.18.2.tgz",
"integrity": "sha1-D4EmetEBLn0gUeGGqQBMwiZ7jUU=",
"dev": true,
"requires": {
"ajv": "5.5.2",
"babel-code-frame": "6.26.0",
"chalk": "2.3.2",
"concat-stream": "1.6.1",
"cross-spawn": "5.1.0",
"debug": "3.1.0",
"doctrine": "2.1.0",
"eslint-scope": "3.7.1",
"eslint-visitor-keys": "1.0.0",
"espree": "3.5.4",
"esquery": "1.0.0",
"esutils": "2.0.2",
"file-entry-cache": "2.0.0",
"functional-red-black-tree": "1.0.1",
"glob": "7.1.2",
"globals": "11.3.0",
"ignore": "3.3.7",
"imurmurhash": "0.1.4",
"inquirer": "3.3.0",
"is-resolvable": "1.1.0",
"js-yaml": "3.11.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",
"require-uncached": "1.0.3",
"semver": "5.5.0",
"strip-ansi": "4.0.0",
"strip-json-comments": "2.0.1",
"table": "4.0.2",
"text-table": "0.2.0"
},
"dependencies": {
"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
},
"strip-ansi": {
"version": "4.0.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/strip-ansi/-/strip-ansi-4.0.0.tgz?dl=https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz",
"integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=",
"dev": true,
"requires": {
"ansi-regex": "3.0.0"
}
}
}
},
"eslint-config-bbva": {
"version": "2.0.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/eslint-config-bbva/-/eslint-config-bbva-2.0.0.tgz?dl=https://registry.npmjs.org/eslint-config-bbva/-/eslint-config-bbva-2.0.0.tgz",
"integrity": "sha1-1T/Z0fazF0nVJwTWAOMtBwSwksE=",
"dev": true
},
"eslint-scope": {
"version": "3.7.1",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/eslint-scope/-/eslint-scope-3.7.1.tgz?dl=https://registry.npmjs.org/eslint-scope/-/eslint-scope-3.7.1.tgz",
"integrity": "sha1-PWPD7f2gLgbgGkUq2IyqzHzctug=",
"dev": true,
"requires": {
"esrecurse": "4.2.1",
"estraverse": "4.2.0"
}
},
"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": "3.5.4",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/espree/-/espree-3.5.4.tgz?dl=https://registry.npmjs.org/espree/-/espree-3.5.4.tgz",
"integrity": "sha1-sPRHGHyKi+2US4FaZgvd9d610ac=",
"dev": true,
"requires": {
"acorn": "5.5.1",
"acorn-jsx": "3.0.1"
}
},
"esprima": {
"version": "4.0.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/esprima/-/esprima-4.0.0.tgz?dl=https://registry.npmjs.org/esprima/-/esprima-4.0.0.tgz",
"integrity": "sha1-RJnt3NERDgshi6zy+n9/WfVcqAQ="
},
"esquery": {
"version": "1.0.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/esquery/-/esquery-1.0.0.tgz?dl=https://registry.npmjs.org/esquery/-/esquery-1.0.0.tgz",
"integrity": "sha1-z7qLV9f7qT8XKYqKAGoEzaE9gPo=",
"dev": true,
"requires": {
"estraverse": "4.2.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.2.0"
}
},
"estraverse": {
"version": "4.2.0",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/estraverse/-/estraverse-4.2.0.tgz?dl=https://registry.npmjs.org/estraverse/-/estraverse-4.2.0.tgz",
"integrity": "sha1-De4/7TH81GlhjOc0IJn8GvoL2xM=",
"dev": true
},
"esutils": {
"version": "2.0.2",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/esutils/-/esutils-2.0.2.tgz?dl=https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz",
"integrity": "sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs=",
"dev": true
},
"exec-sh": {
"version": "0.2.1",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/exec-sh/-/exec-sh-0.2.1.tgz?dl=https://registry.npmjs.org/exec-sh/-/exec-sh-0.2.1.tgz",
"integrity": "sha1-FjuYpuiea2W0fCoo0hW8H2OYnDg=",
"dev": true,
"requires": {
"merge": "1.2.0"
}
},
"expand-brackets": {
"version": "0.1.5",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/expand-brackets/-/expand-brackets-0.1.5.tgz?dl=https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.5.tgz",
"integrity": "sha1-3wcoTjQqgHzXM6xa9yQR5YHRF3s=",
"dev": true,
"requires": {
"is-posix-bracket": "0.1.1"
}
},
"expand-range": {
"version": "1.8.2",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/expand-range/-/expand-range-1.8.2.tgz?dl=https://registry.npmjs.org/expand-range/-/expand-range-1.8.2.tgz",
"integrity": "sha1-opnv/TNf4nIeuujiV+x5ZE/IUzc=",
"dev": true,
"requires": {
"fill-range": "2.2.3"
}
},
"expand-tilde": {
"version": "1.2.2",
"resolved": "https://descinet.bbva.es/artifactory/api/npm/npm/expand-tilde/-/expand-tilde-1.2.2.tgz?dl=https://registry.npmjs.org/expand-tilde/-/expand-tilde-1.2.2.tgz",
"integrity": "sha1-C4HrqJflo9MdHD0QL48BRB5VlEk=",
"dev": true,
"requires": {