-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage-lock.json
5547 lines (5547 loc) · 216 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": "templiteral",
"version": "4.0.2",
"lockfileVersion": 1,
"dependencies": {
"abbrev": {
"version": "1.0.9",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/abbrev/-/abbrev-1.0.9.tgz",
"integrity": "sha1-kbR5JYinc4wl813W9jdSovh3YTU=",
"dev": true
},
"acorn-jsx": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-3.0.1.tgz",
"integrity": "sha1-r9+UiPsezvyDSPb7IvRk4ypYs2s=",
"dev": true,
"dependencies": {
"acorn": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/acorn/-/acorn-3.3.0.tgz",
"integrity": "sha1-ReN/s56No/JbruP/U2niu18iAXo=",
"dev": true
}
}
},
"after": {
"version": "0.8.2",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/after/-/after-0.8.2.tgz",
"integrity": "sha1-/ts5T58OAqqXaOcCvaI7UF+ufh8=",
"dev": true
},
"ajv": {
"version": "5.3.0",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/ajv/-/ajv-5.3.0.tgz",
"integrity": "sha1-RBT/dKUIecII7l/cgm4ywwNUnto=",
"dev": true
},
"ajv-keywords": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-2.1.0.tgz",
"integrity": "sha1-opbhf3v658HOT34N5T0pyzIWLfA=",
"dev": true
},
"align-text": {
"version": "0.1.4",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/align-text/-/align-text-0.1.4.tgz",
"integrity": "sha1-DNkKVhCT810KmSVsIrcGlDP60Rc=",
"dev": true
},
"amdefine": {
"version": "1.0.1",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/amdefine/-/amdefine-1.0.1.tgz",
"integrity": "sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU=",
"dev": true
},
"ansi-escapes": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.0.0.tgz",
"integrity": "sha512-O/klc27mWNUigtv0F8NJWbLF00OcegQalkqKURWdosW08YZKi4m6CnSUSvIZG1otNJbTWhN01Hhz389DW7mvDQ==",
"dev": true
},
"ansi-regex": {
"version": "2.1.1",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/ansi-regex/-/ansi-regex-2.1.1.tgz",
"integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=",
"dev": true
},
"ansi-styles": {
"version": "2.2.1",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/ansi-styles/-/ansi-styles-2.2.1.tgz",
"integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=",
"dev": true
},
"any-promise": {
"version": "1.3.0",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/any-promise/-/any-promise-1.3.0.tgz",
"integrity": "sha1-q8av7tzqUugJzcA3au0845Y10X8=",
"dev": true
},
"anymatch": {
"version": "1.3.2",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/anymatch/-/anymatch-1.3.2.tgz",
"integrity": "sha1-VT3Lj5HjyImEXf26NMd3IbkLnXo=",
"dev": true
},
"argparse": {
"version": "1.0.9",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/argparse/-/argparse-1.0.9.tgz",
"integrity": "sha1-c9g7wmP4bpf4zE9rrhsOkKfSLIY=",
"dev": true
},
"arr-diff": {
"version": "2.0.0",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/arr-diff/-/arr-diff-2.0.0.tgz",
"integrity": "sha1-jzuCf5Vai9ZpaX5KQlasPOrjVs8=",
"dev": true
},
"arr-flatten": {
"version": "1.1.0",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/arr-flatten/-/arr-flatten-1.1.0.tgz",
"integrity": "sha1-NgSLv/TntH4TZkQxbJlmnqWukfE=",
"dev": true
},
"arr-union": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz",
"integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=",
"dev": true
},
"array-find-index": {
"version": "1.0.2",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/array-find-index/-/array-find-index-1.0.2.tgz",
"integrity": "sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E=",
"dev": true
},
"array-flatten": {
"version": "1.1.1",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/array-flatten/-/array-flatten-1.1.1.tgz",
"integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=",
"dev": true
},
"array-ify": {
"version": "1.0.0",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/array-ify/-/array-ify-1.0.0.tgz",
"integrity": "sha1-nlKHYrSpBmrRY6aWKjZEGOlibs4=",
"dev": true
},
"array-slice": {
"version": "0.2.3",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/array-slice/-/array-slice-0.2.3.tgz",
"integrity": "sha1-3Tz7gO15c6dRF82sabC5nshhhvU=",
"dev": true
},
"array-union": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz",
"integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=",
"dev": true
},
"array-uniq": {
"version": "1.0.3",
"resolved": "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://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/array-unique/-/array-unique-0.2.1.tgz",
"integrity": "sha1-odl8yvy8JiXMcPrc6zalDFiwGlM=",
"dev": true
},
"arraybuffer.slice": {
"version": "0.0.6",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/arraybuffer.slice/-/arraybuffer.slice-0.0.6.tgz",
"integrity": "sha1-8zshWfBTKj8xB6JywMz70a0peco=",
"dev": true
},
"arrify": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz",
"integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=",
"dev": true
},
"assign-symbols": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz",
"integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=",
"dev": true
},
"async": {
"version": "2.5.0",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/async/-/async-2.5.0.tgz",
"integrity": "sha1-hDGQ/WtzV6C54clW7d3V7IRitU0=",
"dev": true
},
"async-each": {
"version": "1.0.1",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/async-each/-/async-each-1.0.1.tgz",
"integrity": "sha1-GdOGodntxufByF04iu28xW0zYC0=",
"dev": true
},
"atob": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/atob/-/atob-2.1.1.tgz",
"integrity": "sha1-ri1acpR38onWDdf5amMUoi3Wwio=",
"dev": true
},
"babel-code-frame": {
"version": "6.26.0",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/babel-code-frame/-/babel-code-frame-6.26.0.tgz",
"integrity": "sha1-Y/1D99weO7fONZR9uP42mj9Yx0s=",
"dev": true
},
"babel-generator": {
"version": "6.26.0",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/babel-generator/-/babel-generator-6.26.0.tgz",
"integrity": "sha1-rBriAHC3n248odMmlhMFN3TyDcU=",
"dev": true
},
"babel-messages": {
"version": "6.23.0",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/babel-messages/-/babel-messages-6.23.0.tgz",
"integrity": "sha1-8830cDhYA1sqKVHG7F7fbGLyYw4=",
"dev": true
},
"babel-runtime": {
"version": "6.26.0",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/babel-runtime/-/babel-runtime-6.26.0.tgz",
"integrity": "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=",
"dev": true
},
"babel-template": {
"version": "6.26.0",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/babel-template/-/babel-template-6.26.0.tgz",
"integrity": "sha1-3gPi0WOWsGn0bdn/+FIfsaDjXgI=",
"dev": true
},
"babel-traverse": {
"version": "6.26.0",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/babel-traverse/-/babel-traverse-6.26.0.tgz",
"integrity": "sha1-RqnL1+3MYsjlwGTi0tjQ9ANXZu4=",
"dev": true,
"dependencies": {
"debug": {
"version": "2.6.9",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/debug/-/debug-2.6.9.tgz",
"integrity": "sha1-XRKFFd8TT/Mn6QpMk/Tgd6U2NB8=",
"dev": true
}
}
},
"babel-types": {
"version": "6.26.0",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/babel-types/-/babel-types-6.26.0.tgz",
"integrity": "sha1-o7Bz+Uq0nrb6Vc1lInozQ4BjJJc=",
"dev": true
},
"babylon": {
"version": "6.18.0",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/babylon/-/babylon-6.18.0.tgz",
"integrity": "sha1-ry87iPpvXB5MY00aD46sT1WzleM=",
"dev": true
},
"backo2": {
"version": "1.0.2",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/backo2/-/backo2-1.0.2.tgz",
"integrity": "sha1-MasayLEpNjRj41s+u2n038+6eUc=",
"dev": true
},
"balanced-match": {
"version": "1.0.0",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/balanced-match/-/balanced-match-1.0.0.tgz",
"integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=",
"dev": true
},
"base": {
"version": "0.11.2",
"resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz",
"integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==",
"dev": true,
"dependencies": {
"component-emitter": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz",
"integrity": "sha1-E3kY1teCg/ffemt8WmPhQOaUJeY=",
"dev": true
},
"define-property": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz",
"integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=",
"dev": true
},
"is-accessor-descriptor": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz",
"integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==",
"dev": true
},
"is-data-descriptor": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz",
"integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==",
"dev": true
},
"is-descriptor": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz",
"integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==",
"dev": true
},
"isobject": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz",
"integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=",
"dev": true
},
"kind-of": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz",
"integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==",
"dev": true
}
}
},
"base64-arraybuffer": {
"version": "0.1.5",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/base64-arraybuffer/-/base64-arraybuffer-0.1.5.tgz",
"integrity": "sha1-c5JncZI7Whl0etZmqlzUv5xunOg=",
"dev": true
},
"base64id": {
"version": "1.0.0",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/base64id/-/base64id-1.0.0.tgz",
"integrity": "sha1-R2iMuZu2gE8OBtPnY7HDLlfY5rY=",
"dev": true
},
"better-assert": {
"version": "1.0.2",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/better-assert/-/better-assert-1.0.2.tgz",
"integrity": "sha1-QIZrnhueC1W0gYlDEeaPr/rrxSI=",
"dev": true
},
"big.js": {
"version": "3.2.0",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/big.js/-/big.js-3.2.0.tgz",
"integrity": "sha1-pfwpi4G54Nyi5FiCR4S2XFK6WI4=",
"dev": true
},
"binary-extensions": {
"version": "1.10.0",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/binary-extensions/-/binary-extensions-1.10.0.tgz",
"integrity": "sha1-muuabF6IY4qtFx4Wf1kAq+JINdA=",
"dev": true
},
"blob": {
"version": "0.0.4",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/blob/-/blob-0.0.4.tgz",
"integrity": "sha1-vPEwUspURj8w+fx+lbmkdjCpSSE=",
"dev": true
},
"bluebird": {
"version": "3.5.1",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/bluebird/-/bluebird-3.5.1.tgz",
"integrity": "sha1-2VUfnemPH82h5oPRfukaBgLuLrk=",
"dev": true
},
"body-parser": {
"version": "1.18.3",
"resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.18.3.tgz",
"integrity": "sha1-WykhmP/dVTs6DyDe0FkrlWlVyLQ=",
"dev": true,
"dependencies": {
"depd": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz",
"integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=",
"dev": true
},
"http-errors": {
"version": "1.6.3",
"resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz",
"integrity": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=",
"dev": true
},
"iconv-lite": {
"version": "0.4.23",
"resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.23.tgz",
"integrity": "sha512-neyTUVFtahjf0mB3dZT77u+8O0QB89jFdnBkd5P1JgYPbPaia3gXXOVL2fq8VyU2gMMD7SaN7QukTB/pmXYvDA==",
"dev": true
},
"mime-db": {
"version": "1.35.0",
"resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.35.0.tgz",
"integrity": "sha512-JWT/IcCTsB0Io3AhWUMjRqucrHSPsSf2xKLaRldJVULioggvkJvggZ3VXNNSRkCddE6D+BUI4HEIZIA2OjwIvg==",
"dev": true
},
"mime-types": {
"version": "2.1.19",
"resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.19.tgz",
"integrity": "sha512-P1tKYHVSZ6uFo26mtnve4HQFE3koh1UWVkp8YUC+ESBHe945xWSoXuHHiGarDqcEZ+whpCDnlNw5LON0kLo+sw==",
"dev": true
},
"qs": {
"version": "6.5.2",
"resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz",
"integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==",
"dev": true
},
"raw-body": {
"version": "2.3.3",
"resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.3.3.tgz",
"integrity": "sha512-9esiElv1BrZoI3rCDuOuKCBRbuApGGaDPQfjSflGxdy4oyzqghxu6klEkkVIvBje+FF0BX9coEv8KqW6X/7njw==",
"dev": true
},
"setprototypeof": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz",
"integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==",
"dev": true
},
"statuses": {
"version": "1.5.0",
"resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz",
"integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=",
"dev": true
},
"type-is": {
"version": "1.6.16",
"resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.16.tgz",
"integrity": "sha512-HRkVv/5qY2G6I8iab9cI7v1bOIdhm94dVjQCPFElW9W+3GeDOSHmy2EBYe4VTApuzolPcmgFTN3ftVJRKR2J9Q==",
"dev": true
}
}
},
"brace-expansion": {
"version": "1.1.8",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/brace-expansion/-/brace-expansion-1.1.8.tgz",
"integrity": "sha1-wHshHHyVLsH479Uad+8NHTmQopI=",
"dev": true
},
"braces": {
"version": "1.8.5",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/braces/-/braces-1.8.5.tgz",
"integrity": "sha1-uneWLhLf+WnWt2cR6RS3N4V79qc=",
"dev": true
},
"builtin-modules": {
"version": "1.1.1",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/builtin-modules/-/builtin-modules-1.1.1.tgz",
"integrity": "sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8=",
"dev": true
},
"bytes": {
"version": "3.0.0",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/bytes/-/bytes-3.0.0.tgz",
"integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=",
"dev": true
},
"cache-base": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz",
"integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==",
"dev": true,
"dependencies": {
"component-emitter": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz",
"integrity": "sha1-E3kY1teCg/ffemt8WmPhQOaUJeY=",
"dev": true
},
"isobject": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz",
"integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=",
"dev": true
}
}
},
"caller-path": {
"version": "0.1.0",
"resolved": "https://registry.npmjs.org/caller-path/-/caller-path-0.1.0.tgz",
"integrity": "sha1-lAhe9jWB7NPaqSREqP6U6CV3dR8=",
"dev": true
},
"callsite": {
"version": "1.0.0",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/callsite/-/callsite-1.0.0.tgz",
"integrity": "sha1-KAOY5dZkvXQDi28JBRU+borxvCA=",
"dev": true
},
"callsites": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/callsites/-/callsites-0.2.0.tgz",
"integrity": "sha1-r6uWJikQp/M8GaV3WCXGnzTjUMo=",
"dev": true
},
"camelcase": {
"version": "1.2.1",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/camelcase/-/camelcase-1.2.1.tgz",
"integrity": "sha1-m7UwTS4LVmmLLHWLCKPqqdqlijk=",
"dev": true,
"optional": true
},
"camelcase-keys": {
"version": "2.1.0",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/camelcase-keys/-/camelcase-keys-2.1.0.tgz",
"integrity": "sha1-MIvur/3ygRkFHvodkyITyRuPkuc=",
"dev": true,
"dependencies": {
"camelcase": {
"version": "2.1.1",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/camelcase/-/camelcase-2.1.1.tgz",
"integrity": "sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8=",
"dev": true
}
}
},
"center-align": {
"version": "0.1.3",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/center-align/-/center-align-0.1.3.tgz",
"integrity": "sha1-qg0yYptu6XIgBBHL1EYckHvCt60=",
"dev": true,
"optional": true
},
"chalk": {
"version": "1.1.3",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/chalk/-/chalk-1.1.3.tgz",
"integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
"dev": true,
"dependencies": {
"supports-color": {
"version": "2.0.0",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/supports-color/-/supports-color-2.0.0.tgz",
"integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=",
"dev": true
}
}
},
"chokidar": {
"version": "1.7.0",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/chokidar/-/chokidar-1.7.0.tgz",
"integrity": "sha1-eY5ol3gVHIB2tLNg5e3SjNortGg=",
"dev": true
},
"circular-json": {
"version": "0.3.3",
"resolved": "https://registry.npmjs.org/circular-json/-/circular-json-0.3.3.tgz",
"integrity": "sha512-UZK3NBx2Mca+b5LsG7bY183pHWt5Y1xts4P3Pz7ENTwGVnJOUWbRb3ocjvX7hx9tq/yTAdclXm9sZ38gNuem4A==",
"dev": true
},
"class-utils": {
"version": "0.3.6",
"resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz",
"integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==",
"dev": true,
"dependencies": {
"define-property": {
"version": "0.2.5",
"resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz",
"integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=",
"dev": true
},
"isobject": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz",
"integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=",
"dev": true
}
}
},
"cli-cursor": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz",
"integrity": "sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=",
"dev": true
},
"cli-width": {
"version": "2.2.0",
"resolved": "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://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/cliui/-/cliui-2.1.0.tgz",
"integrity": "sha1-S0dXYP+AJkx2LDoXGQMukcf+oNE=",
"dev": true,
"optional": true
},
"co": {
"version": "4.6.0",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/co/-/co-4.6.0.tgz",
"integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=",
"dev": true
},
"code-point-at": {
"version": "1.1.0",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/code-point-at/-/code-point-at-1.1.0.tgz",
"integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=",
"dev": true
},
"collection-visit": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz",
"integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=",
"dev": true
},
"color-convert": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.0.tgz",
"integrity": "sha1-Gsz5fdc5uYO/mU1W/sj5WFNkG3o=",
"dev": true
},
"color-name": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
"integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=",
"dev": true
},
"colors": {
"version": "1.1.2",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/colors/-/colors-1.1.2.tgz",
"integrity": "sha1-FopHAXVran9RoSzgyXv6KMCE7WM=",
"dev": true
},
"combine-lists": {
"version": "1.0.1",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/combine-lists/-/combine-lists-1.0.1.tgz",
"integrity": "sha1-RYwH4J4NkA/Ci3Cj/sLazR0st/Y=",
"dev": true
},
"compare-func": {
"version": "1.3.2",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/compare-func/-/compare-func-1.3.2.tgz",
"integrity": "sha1-md0LpFfh+bxyKxLAjsM+6rMfpkg=",
"dev": true
},
"compare-versions": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/compare-versions/-/compare-versions-3.3.0.tgz",
"integrity": "sha512-MAAAIOdi2s4Gl6rZ76PNcUa9IOYB+5ICdT41o5uMRf09aEu/F9RK+qhe8RjXNPwcTjGV7KU7h2P/fljThFVqyQ==",
"dev": true
},
"component-bind": {
"version": "1.0.0",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/component-bind/-/component-bind-1.0.0.tgz",
"integrity": "sha1-AMYIq33Nk4l8AAllGx06jh5zu9E=",
"dev": true
},
"component-emitter": {
"version": "1.1.2",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/component-emitter/-/component-emitter-1.1.2.tgz",
"integrity": "sha1-KWWU8nU9qmOZbSrwjRWpURbJrsM=",
"dev": true
},
"component-inherit": {
"version": "0.0.3",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/component-inherit/-/component-inherit-0.0.3.tgz",
"integrity": "sha1-ZF/ErfWLcrZJ1crmUTVhnbJv8UM=",
"dev": true
},
"compressible": {
"version": "2.0.14",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/compressible/-/compressible-2.0.14.tgz",
"integrity": "sha1-MmxfUH+7BV9UEWeCuWmoG2einac=",
"dev": true,
"dependencies": {
"mime-db": {
"version": "1.35.0",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/mime-db/-/mime-db-1.35.0.tgz",
"integrity": "sha1-BWnWV0ZkkSg3CWY603mpm5DZq0c=",
"dev": true
}
}
},
"compression": {
"version": "1.7.3",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/compression/-/compression-1.7.3.tgz",
"integrity": "sha1-J+DhdqryYPfywoE8PkQK258Zk9s=",
"dev": true,
"dependencies": {
"accepts": {
"version": "1.3.5",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/accepts/-/accepts-1.3.5.tgz",
"integrity": "sha1-63d99gEXI6OxTopywIBcjoZ0a9I=",
"dev": true
},
"mime-db": {
"version": "1.33.0",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/mime-db/-/mime-db-1.33.0.tgz",
"integrity": "sha1-o0kgUKXLm2NFBUHjnZeI0icng9s=",
"dev": true
},
"mime-types": {
"version": "2.1.18",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/mime-types/-/mime-types-2.1.18.tgz",
"integrity": "sha1-bzI/YKg9ERRvgx/xH9ZuL+VQO7g=",
"dev": true
},
"safe-buffer": {
"version": "5.1.2",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/safe-buffer/-/safe-buffer-5.1.2.tgz",
"integrity": "sha1-mR7GnSluAxN0fVm9/St0XDX4go0=",
"dev": true
}
}
},
"concat-map": {
"version": "0.0.1",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/concat-map/-/concat-map-0.0.1.tgz",
"integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=",
"dev": true
},
"concat-stream": {
"version": "1.6.0",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/concat-stream/-/concat-stream-1.6.0.tgz",
"integrity": "sha1-CqxmL9Ur54lk1VMvaUeE5wEQrPc=",
"dev": true
},
"connect": {
"version": "3.6.5",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/connect/-/connect-3.6.5.tgz",
"integrity": "sha1-+43ee6B2OHfQ7J352sC0tA5yx9o=",
"dev": true,
"dependencies": {
"debug": {
"version": "2.6.9",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/debug/-/debug-2.6.9.tgz",
"integrity": "sha1-XRKFFd8TT/Mn6QpMk/Tgd6U2NB8=",
"dev": true
},
"finalhandler": {
"version": "1.0.6",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/finalhandler/-/finalhandler-1.0.6.tgz",
"integrity": "sha1-AHrqM9Gk0+QgF/YkhIrVjSEvgU8=",
"dev": true
},
"parseurl": {
"version": "1.3.2",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/parseurl/-/parseurl-1.3.2.tgz",
"integrity": "sha1-/CidTtiZMRlGDBViUyYs3I3mW/M=",
"dev": true
},
"utils-merge": {
"version": "1.0.1",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/utils-merge/-/utils-merge-1.0.1.tgz",
"integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=",
"dev": true
}
}
},
"construct-style-sheets-polyfill": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/construct-style-sheets-polyfill/-/construct-style-sheets-polyfill-1.0.3.tgz",
"integrity": "sha512-/TaTz346752BCDEvM58KuDLXRHaD+ecdnZ7vRVaqwmvuTx2JJ8Pk/kLiUd8VIc4jFxB1zOKZtxB0Co+kWXWgKw=="
},
"content-disposition": {
"version": "0.5.2",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/content-disposition/-/content-disposition-0.5.2.tgz",
"integrity": "sha1-DPaLud318r55YcOoUXjLhdunjLQ=",
"dev": true
},
"content-type": {
"version": "1.0.4",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/content-type/-/content-type-1.0.4.tgz",
"integrity": "sha1-4TjMdeBAxyexlm/l5fjJruJW/js=",
"dev": true
},
"conventional-changelog": {
"version": "1.1.6",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/conventional-changelog/-/conventional-changelog-1.1.6.tgz",
"integrity": "sha1-69mxq2N2bHFfkD9lRia2scDad2I=",
"dev": true
},
"conventional-changelog-angular": {
"version": "1.5.1",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/conventional-changelog-angular/-/conventional-changelog-angular-1.5.1.tgz",
"integrity": "sha1-l05zqhw5w5LkNk8pUr2aYpBOnqM=",
"dev": true
},
"conventional-changelog-atom": {
"version": "0.1.1",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/conventional-changelog-atom/-/conventional-changelog-atom-0.1.1.tgz",
"integrity": "sha1-1AqbKXlhtTx0Xl0XGP0aM3n2qS8=",
"dev": true
},
"conventional-changelog-codemirror": {
"version": "0.2.0",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/conventional-changelog-codemirror/-/conventional-changelog-codemirror-0.2.0.tgz",
"integrity": "sha1-PMkllV87FEAoJ7FRaASYIZctlFk=",
"dev": true
},
"conventional-changelog-core": {
"version": "1.9.2",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/conventional-changelog-core/-/conventional-changelog-core-1.9.2.tgz",
"integrity": "sha1-oJtrlZFhZx/0W5PMnvsEROfIRcA=",
"dev": true,
"dependencies": {
"find-up": {
"version": "1.1.2",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/find-up/-/find-up-1.1.2.tgz",
"integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=",
"dev": true
},
"load-json-file": {
"version": "1.1.0",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/load-json-file/-/load-json-file-1.1.0.tgz",
"integrity": "sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=",
"dev": true
},
"path-exists": {
"version": "2.1.0",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/path-exists/-/path-exists-2.1.0.tgz",
"integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=",
"dev": true
},
"path-type": {
"version": "1.1.0",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/path-type/-/path-type-1.1.0.tgz",
"integrity": "sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=",
"dev": true
},
"pify": {
"version": "2.3.0",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/pify/-/pify-2.3.0.tgz",
"integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=",
"dev": true
},
"read-pkg": {
"version": "1.1.0",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/read-pkg/-/read-pkg-1.1.0.tgz",
"integrity": "sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=",
"dev": true
},
"read-pkg-up": {
"version": "1.0.1",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/read-pkg-up/-/read-pkg-up-1.0.1.tgz",
"integrity": "sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=",
"dev": true
},
"strip-bom": {
"version": "2.0.0",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/strip-bom/-/strip-bom-2.0.0.tgz",
"integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=",
"dev": true
}
}
},
"conventional-changelog-ember": {
"version": "0.2.8",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/conventional-changelog-ember/-/conventional-changelog-ember-0.2.8.tgz",
"integrity": "sha1-ZeaG2oPSO2cTPR+FOQjIf5SANcA=",
"dev": true
},
"conventional-changelog-eslint": {
"version": "0.2.0",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/conventional-changelog-eslint/-/conventional-changelog-eslint-0.2.0.tgz",
"integrity": "sha1-tLm13AlBeETYfHvPsWvcxobEscE=",
"dev": true
},
"conventional-changelog-express": {
"version": "0.2.0",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/conventional-changelog-express/-/conventional-changelog-express-0.2.0.tgz",
"integrity": "sha1-jWZq1BsQ6/lkpGAgYt3S4A3rUY0=",
"dev": true
},
"conventional-changelog-jquery": {
"version": "0.1.0",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/conventional-changelog-jquery/-/conventional-changelog-jquery-0.1.0.tgz",
"integrity": "sha1-Agg5cWLjhGmG5xJztsecW1+A9RA=",
"dev": true
},
"conventional-changelog-jscs": {
"version": "0.1.0",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/conventional-changelog-jscs/-/conventional-changelog-jscs-0.1.0.tgz",
"integrity": "sha1-BHnrRDzH1yxYvwvPDvHURKkvDlw=",
"dev": true
},
"conventional-changelog-jshint": {
"version": "0.2.0",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/conventional-changelog-jshint/-/conventional-changelog-jshint-0.2.0.tgz",
"integrity": "sha1-Y6167GbNGuVZuv6ANIxGV6brGHI=",
"dev": true
},
"conventional-changelog-writer": {
"version": "2.0.1",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/conventional-changelog-writer/-/conventional-changelog-writer-2.0.1.tgz",
"integrity": "sha1-R8END6ulJreNGUOJ0ekx0J7mI3I=",
"dev": true
},
"conventional-commits-filter": {
"version": "1.0.0",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/conventional-commits-filter/-/conventional-commits-filter-1.0.0.tgz",
"integrity": "sha1-b8KmWTcrw/IznPn//34bA0S5MDk=",
"dev": true
},
"conventional-commits-parser": {
"version": "2.0.0",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/conventional-commits-parser/-/conventional-commits-parser-2.0.0.tgz",
"integrity": "sha1-cdAZEMsKma6yDBROUPgfTfMXhEc=",
"dev": true
},
"conventional-recommended-bump": {
"version": "1.0.2",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/conventional-recommended-bump/-/conventional-recommended-bump-1.0.2.tgz",
"integrity": "sha1-MYVkQ6tvlFOhgnZQ58wV7Ch2lkU=",
"dev": true
},
"convert-source-map": {
"version": "1.5.0",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/convert-source-map/-/convert-source-map-1.5.0.tgz",
"integrity": "sha1-ms1whRxtXf3ZPZKC5e35SgP/RrU=",
"dev": true
},
"cookie": {
"version": "0.3.1",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/cookie/-/cookie-0.3.1.tgz",
"integrity": "sha1-5+Ch+e9DtMi6klxcWpboBtFoc7s=",
"dev": true
},
"cookie-signature": {
"version": "1.0.6",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/cookie-signature/-/cookie-signature-1.0.6.tgz",
"integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=",
"dev": true
},
"copy-descriptor": {
"version": "0.1.1",
"resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz",
"integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=",
"dev": true
},
"core-js": {
"version": "2.5.1",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/core-js/-/core-js-2.5.1.tgz",
"integrity": "sha1-rmh03GaTd4m4B1T/VCjfZoGcpQs=",
"dev": true
},
"core-util-is": {
"version": "1.0.2",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/core-util-is/-/core-util-is-1.0.2.tgz",
"integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=",
"dev": true
},
"cross-env": {
"version": "5.2.0",
"resolved": "https://registry.npmjs.org/cross-env/-/cross-env-5.2.0.tgz",
"integrity": "sha512-jtdNFfFW1hB7sMhr/H6rW1Z45LFqyI431m3qU6bFXcQ3Eh7LtBuG3h74o7ohHZ3crrRkkqHlo4jYHFPcjroANg==",
"dev": true,
"dependencies": {
"cross-spawn": {
"version": "6.0.5",
"resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz",
"integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==",
"dev": true
},
"semver": {
"version": "5.5.0",
"resolved": "https://registry.npmjs.org/semver/-/semver-5.5.0.tgz",
"integrity": "sha512-4SJ3dm0WAwWy/NVeioZh5AntkdJoWKxHxcmyP622fOkgHa4z3R0TdBJICINyaSDE6uNwVc8gZr+ZinwZAH4xIA==",
"dev": true
}
}
},
"cross-spawn": {
"version": "5.1.0",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/cross-spawn/-/cross-spawn-5.1.0.tgz",
"integrity": "sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=",
"dev": true
},
"currently-unhandled": {
"version": "0.4.1",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/currently-unhandled/-/currently-unhandled-0.4.1.tgz",
"integrity": "sha1-mI3zP+qxke95mmE2nddsF635V+o=",
"dev": true
},
"custom-event": {
"version": "1.0.1",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/custom-event/-/custom-event-1.0.1.tgz",
"integrity": "sha1-XQKkaFCt8bSjF5RqOSj8y1v9BCU=",
"dev": true
},
"dargs": {
"version": "4.1.0",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/dargs/-/dargs-4.1.0.tgz",
"integrity": "sha1-A6nbtLXC8Tm/FK5T8LiipqhvThc=",
"dev": true
},
"dateformat": {
"version": "1.0.12",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/dateformat/-/dateformat-1.0.12.tgz",
"integrity": "sha1-nxJLZ1lMk3/3BpMuSmQsyo27/uk=",
"dev": true
},
"debug": {
"version": "2.6.9",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/debug/-/debug-2.6.9.tgz",
"integrity": "sha1-XRKFFd8TT/Mn6QpMk/Tgd6U2NB8=",
"dev": true
},
"decamelize": {
"version": "1.2.0",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/decamelize/-/decamelize-1.2.0.tgz",
"integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=",
"dev": true
},
"decode-uri-component": {
"version": "0.2.0",
"resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz",
"integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=",
"dev": true
},
"deep-is": {
"version": "0.1.3",
"resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz",
"integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=",
"dev": true
},
"define-property": {