forked from mmurph23/salesforce-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage-lock.json
1552 lines (1552 loc) · 81.7 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": "dev-edition",
"version": "0.0.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"accepts": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/accepts/-/accepts-1.3.4.tgz",
"integrity": "sha1-hiRnWMfdbSGmR0/whKR0DsBesh8=",
"requires": {
"mime-types": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/mime-types/-/mime-types-2.1.17.tgz",
"negotiator": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/negotiator/-/negotiator-0.6.1.tgz"
}
},
"acorn": {
"version": "2.7.0",
"resolved": "https://registry.npmjs.org/acorn/-/acorn-2.7.0.tgz",
"integrity": "sha1-q259nYhqrKiwhbwzEreaGYQz8Oc="
},
"acorn-globals": {
"version": "1.0.9",
"resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-1.0.9.tgz",
"integrity": "sha1-VbtemGkVB7dFedBRNBMhfDgMVM8=",
"requires": {
"acorn": "2.7.0"
}
},
"ajv": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/ajv/-/ajv-4.11.8.tgz",
"integrity": "sha1-gv+wKynmYq5TvcIK8VlHcGc5xTY=",
"requires": {
"co": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/co/-/co-4.6.0.tgz",
"json-stable-stringify": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz"
}
},
"align-text": {
"version": "0.1.4",
"resolved": "https://registry.npmjs.org/align-text/-/align-text-0.1.4.tgz",
"integrity": "sha1-DNkKVhCT810KmSVsIrcGlDP60Rc=",
"requires": {
"kind-of": "3.2.2",
"longest": "1.0.1",
"repeat-string": "1.6.1"
}
},
"amdefine": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz",
"integrity": "sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU="
},
"array-flatten": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/array-flatten/-/array-flatten-1.1.1.tgz",
"integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI="
},
"asap": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/asap/-/asap-2.0.6.tgz",
"integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY="
},
"asn1": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/asn1/-/asn1-0.2.3.tgz",
"integrity": "sha1-2sh4dxPJlmhJ/IGAd36+nB3fO4Y="
},
"assert-plus": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/assert-plus/-/assert-plus-0.2.0.tgz",
"integrity": "sha1-104bh+ev/A24qttwIfP+SBAasjQ="
},
"asynckit": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/asynckit/-/asynckit-0.4.0.tgz",
"integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k="
},
"aws-sign2": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/aws-sign2/-/aws-sign2-0.6.0.tgz",
"integrity": "sha1-FDQt0428yU0OW4fXY81jYSwOeU8="
},
"aws4": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/aws4/-/aws4-1.6.0.tgz",
"integrity": "sha1-g+9cqGCysy5KDe7e6MdxudtXRx4="
},
"basic-auth": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/basic-auth/-/basic-auth-1.1.0.tgz",
"integrity": "sha1-RSIe5Cn37h5QNb4/UVM/HN/SmIQ="
},
"bcrypt-pbkdf": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz",
"integrity": "sha1-Y7xdy2EzG5K8Bf1SiVPDNGKgb40=",
"optional": true,
"requires": {
"tweetnacl": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/tweetnacl/-/tweetnacl-0.14.5.tgz"
}
},
"body-parser": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/body-parser/-/body-parser-1.17.2.tgz",
"integrity": "sha1-+IkqvI+eYn1Crtr7yma/WrmRBO4=",
"requires": {
"bytes": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/bytes/-/bytes-2.4.0.tgz",
"content-type": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/content-type/-/content-type-1.0.4.tgz",
"debug": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/debug/-/debug-2.6.7.tgz",
"depd": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/depd/-/depd-1.1.1.tgz",
"http-errors": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/http-errors/-/http-errors-1.6.2.tgz",
"iconv-lite": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/iconv-lite/-/iconv-lite-0.4.15.tgz",
"on-finished": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/on-finished/-/on-finished-2.3.0.tgz",
"qs": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/qs/-/qs-6.4.0.tgz",
"raw-body": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/raw-body/-/raw-body-2.2.0.tgz",
"type-is": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/type-is/-/type-is-1.6.15.tgz"
},
"dependencies": {
"debug": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/debug/-/debug-2.6.7.tgz",
"integrity": "sha1-krrR9tBbu2u6Isyoi80OyJTChh4=",
"requires": {
"ms": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/ms/-/ms-2.0.0.tgz"
}
}
}
},
"boom": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/boom/-/boom-2.10.1.tgz",
"integrity": "sha1-OciRjO/1eZ+D+UkqhI9iWt0Mdm8=",
"requires": {
"hoek": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/hoek/-/hoek-2.16.3.tgz"
}
},
"bytes": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/bytes/-/bytes-2.4.0.tgz",
"integrity": "sha1-fZcZb51br39pNeJZhVSe3SpsIzk="
},
"camelcase": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz",
"integrity": "sha1-m7UwTS4LVmmLLHWLCKPqqdqlijk="
},
"caseless": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/caseless/-/caseless-0.12.0.tgz",
"integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw="
},
"center-align": {
"version": "0.1.3",
"resolved": "https://registry.npmjs.org/center-align/-/center-align-0.1.3.tgz",
"integrity": "sha1-qg0yYptu6XIgBBHL1EYckHvCt60=",
"requires": {
"align-text": "0.1.4",
"lazy-cache": "1.0.4"
}
},
"character-parser": {
"version": "1.2.1",
"resolved": "https://registry.npmjs.org/character-parser/-/character-parser-1.2.1.tgz",
"integrity": "sha1-wN3kqxgnE7kZuXCVmhI+zBow/NY="
},
"clean-css": {
"version": "3.4.28",
"resolved": "https://registry.npmjs.org/clean-css/-/clean-css-3.4.28.tgz",
"integrity": "sha1-vxlF6C/ICPVWlebd6uwBQA79A/8=",
"requires": {
"commander": "2.8.1",
"source-map": "0.4.4"
},
"dependencies": {
"commander": {
"version": "2.8.1",
"resolved": "https://registry.npmjs.org/commander/-/commander-2.8.1.tgz",
"integrity": "sha1-Br42f+v9oMMwqh4qBy09yXYkJdQ=",
"requires": {
"graceful-readlink": "1.0.1"
}
}
}
},
"cliui": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/cliui/-/cliui-2.1.0.tgz",
"integrity": "sha1-S0dXYP+AJkx2LDoXGQMukcf+oNE=",
"requires": {
"center-align": "0.1.3",
"right-align": "0.1.3",
"wordwrap": "0.0.2"
},
"dependencies": {
"wordwrap": {
"version": "0.0.2",
"resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz",
"integrity": "sha1-t5Zpu0LstAn4PVg8rVLKF+qhZD8="
}
}
},
"co": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/co/-/co-4.6.0.tgz",
"integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ="
},
"co-prompt": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/co-prompt/-/co-prompt-1.0.0.tgz",
"integrity": "sha1-+zcOntrEhXayenMv5dfyHZ/G5vY=",
"requires": {
"keypress": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/keypress/-/keypress-0.2.1.tgz"
}
},
"coffee-script": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/coffee-script/-/coffee-script-1.12.7.tgz",
"integrity": "sha1-wF2uDLeVkdBbMHCoQzqYyaiczFM="
},
"combined-stream": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/combined-stream/-/combined-stream-1.0.5.tgz",
"integrity": "sha1-k4NwpXtKUd6ix3wV1cX9+JUWQAk=",
"requires": {
"delayed-stream": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/delayed-stream/-/delayed-stream-1.0.0.tgz"
}
},
"commander": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/commander/-/commander-2.11.0.tgz",
"integrity": "sha1-FXFS/R56bI2YpbcVzzdt+SgARWM="
},
"constantinople": {
"version": "3.0.2",
"resolved": "https://registry.npmjs.org/constantinople/-/constantinople-3.0.2.tgz",
"integrity": "sha1-S5RdmTeQe82Y7ldRIsOBdRZUQUE=",
"requires": {
"acorn": "2.7.0"
}
},
"content-disposition": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/content-disposition/-/content-disposition-0.5.2.tgz",
"integrity": "sha1-DPaLud318r55YcOoUXjLhdunjLQ="
},
"content-type": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/content-type/-/content-type-1.0.4.tgz",
"integrity": "sha1-4TjMdeBAxyexlm/l5fjJruJW/js="
},
"cookie": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/cookie/-/cookie-0.3.1.tgz",
"integrity": "sha1-5+Ch+e9DtMi6klxcWpboBtFoc7s="
},
"cookie-parser": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/cookie-parser/-/cookie-parser-1.4.3.tgz",
"integrity": "sha1-D+MfoZ0AC5X0qt8fU/3CuKIDuqU=",
"requires": {
"cookie": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/cookie/-/cookie-0.3.1.tgz",
"cookie-signature": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/cookie-signature/-/cookie-signature-1.0.6.tgz"
}
},
"cookie-signature": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/cookie-signature/-/cookie-signature-1.0.6.tgz",
"integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw="
},
"core-js": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/core-js/-/core-js-1.2.7.tgz",
"integrity": "sha1-ZSKUwUZR2yj6k70tX/KYOk8IxjY="
},
"core-util-is": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/core-util-is/-/core-util-is-1.0.2.tgz",
"integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac="
},
"crc": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/crc/-/crc-3.4.4.tgz",
"integrity": "sha1-naHpgOO9RPxck79as9ozeNheRms="
},
"create-react-class": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/create-react-class/-/create-react-class-15.6.0.tgz",
"integrity": "sha1-q0SEl8JlZuHilBPogyB9V8/nvtQ=",
"requires": {
"fbjs": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/fbjs/-/fbjs-0.8.15.tgz",
"loose-envify": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/loose-envify/-/loose-envify-1.3.1.tgz",
"object-assign": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/object-assign/-/object-assign-4.1.1.tgz"
}
},
"cryptiles": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/cryptiles/-/cryptiles-2.0.5.tgz",
"integrity": "sha1-O9/s3GCBR8HGcgL6KR59ylnqo7g=",
"requires": {
"boom": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/boom/-/boom-2.10.1.tgz"
}
},
"csprng": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/csprng/-/csprng-0.1.2.tgz",
"integrity": "sha1-S8aPEvo2jSUqWYQcusqXSxirReI=",
"requires": {
"sequin": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/sequin/-/sequin-0.1.1.tgz"
}
},
"css": {
"version": "1.0.8",
"resolved": "https://registry.npmjs.org/css/-/css-1.0.8.tgz",
"integrity": "sha1-k4aBHKgrzMnuf7WnMrHioxfIo+c=",
"requires": {
"css-parse": "1.0.4",
"css-stringify": "1.0.5"
}
},
"css-parse": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/css-parse/-/css-parse-1.0.4.tgz",
"integrity": "sha1-OLBQP7+dqfVOnB29pg4UXHcRe90="
},
"css-stringify": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/css-stringify/-/css-stringify-1.0.5.tgz",
"integrity": "sha1-sNBClG2ylTu50pKQCmy19tASIDE="
},
"csv-parse": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/csv-parse/-/csv-parse-1.2.2.tgz",
"integrity": "sha1-Cun6LRMtj3Y9zYownMF7TFJk3ik="
},
"csv-stringify": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/csv-stringify/-/csv-stringify-1.0.4.tgz",
"integrity": "sha1-vBi6ua1M7zGV/SV5gLWLR5xC0+U=",
"requires": {
"lodash.get": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/lodash.get/-/lodash.get-4.4.2.tgz"
}
},
"dashdash": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/dashdash/-/dashdash-1.14.1.tgz",
"integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=",
"requires": {
"assert-plus": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/assert-plus/-/assert-plus-1.0.0.tgz"
},
"dependencies": {
"assert-plus": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/assert-plus/-/assert-plus-1.0.0.tgz",
"integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU="
}
}
},
"debug": {
"version": "2.6.9",
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
"requires": {
"ms": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/ms/-/ms-2.0.0.tgz"
}
},
"decamelize": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz",
"integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA="
},
"delayed-stream": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/delayed-stream/-/delayed-stream-1.0.0.tgz",
"integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk="
},
"depd": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/depd/-/depd-1.1.1.tgz",
"integrity": "sha1-V4O04cRZ8G+lyif5kfPQbnoxA1k="
},
"destroy": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/destroy/-/destroy-1.0.4.tgz",
"integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA="
},
"ecc-jsbn": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz",
"integrity": "sha1-D8c6ntXw1Tw4GTOYUj735UN3dQU=",
"optional": true,
"requires": {
"jsbn": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/jsbn/-/jsbn-0.1.1.tgz"
}
},
"ee-first": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/ee-first/-/ee-first-1.1.1.tgz",
"integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0="
},
"encodeurl": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/encodeurl/-/encodeurl-1.0.1.tgz",
"integrity": "sha1-eePVhlU0aQn+bw9Fpd5oEDspTSA="
},
"encoding": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/encoding/-/encoding-0.1.12.tgz",
"integrity": "sha1-U4tm8+5izRq1HsMjgp0flIDHS+s=",
"requires": {
"iconv-lite": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/iconv-lite/-/iconv-lite-0.4.15.tgz"
}
},
"escape-html": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/escape-html/-/escape-html-1.0.3.tgz",
"integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg="
},
"etag": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/etag/-/etag-1.8.1.tgz",
"integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc="
},
"express": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/express/-/express-4.15.4.tgz",
"integrity": "sha1-Ay4iU0ic+PzgJma+yj0R7XotrtE=",
"requires": {
"accepts": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/accepts/-/accepts-1.3.4.tgz",
"array-flatten": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/array-flatten/-/array-flatten-1.1.1.tgz",
"content-disposition": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/content-disposition/-/content-disposition-0.5.2.tgz",
"content-type": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/content-type/-/content-type-1.0.4.tgz",
"cookie": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/cookie/-/cookie-0.3.1.tgz",
"cookie-signature": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/cookie-signature/-/cookie-signature-1.0.6.tgz",
"debug": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/debug/-/debug-2.6.8.tgz",
"depd": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/depd/-/depd-1.1.1.tgz",
"encodeurl": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/encodeurl/-/encodeurl-1.0.1.tgz",
"escape-html": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/escape-html/-/escape-html-1.0.3.tgz",
"etag": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/etag/-/etag-1.8.1.tgz",
"finalhandler": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/finalhandler/-/finalhandler-1.0.5.tgz",
"fresh": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/fresh/-/fresh-0.5.0.tgz",
"merge-descriptors": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/merge-descriptors/-/merge-descriptors-1.0.1.tgz",
"methods": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/methods/-/methods-1.1.2.tgz",
"on-finished": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/on-finished/-/on-finished-2.3.0.tgz",
"parseurl": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/parseurl/-/parseurl-1.3.2.tgz",
"path-to-regexp": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/path-to-regexp/-/path-to-regexp-0.1.7.tgz",
"proxy-addr": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/proxy-addr/-/proxy-addr-1.1.5.tgz",
"qs": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/qs/-/qs-6.5.0.tgz",
"range-parser": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/range-parser/-/range-parser-1.2.0.tgz",
"send": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/send/-/send-0.15.4.tgz",
"serve-static": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/serve-static/-/serve-static-1.12.4.tgz",
"setprototypeof": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/setprototypeof/-/setprototypeof-1.0.3.tgz",
"statuses": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/statuses/-/statuses-1.3.1.tgz",
"type-is": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/type-is/-/type-is-1.6.15.tgz",
"utils-merge": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/utils-merge/-/utils-merge-1.0.0.tgz",
"vary": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/vary/-/vary-1.1.1.tgz"
},
"dependencies": {
"debug": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/debug/-/debug-2.6.8.tgz",
"integrity": "sha1-5zFTHKLt4n0YgiJCfaF4IdaP9Pw=",
"requires": {
"ms": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/ms/-/ms-2.0.0.tgz"
}
},
"qs": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/qs/-/qs-6.5.0.tgz",
"integrity": "sha1-jQSVTTZN7z78VbWgeT4eLIsebkk="
}
}
},
"express-session": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/express-session/-/express-session-1.15.5.tgz",
"integrity": "sha1-9JoYInJjsxb2+FRNpf7iWlQCWew=",
"requires": {
"cookie": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/cookie/-/cookie-0.3.1.tgz",
"cookie-signature": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/cookie-signature/-/cookie-signature-1.0.6.tgz",
"crc": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/crc/-/crc-3.4.4.tgz",
"debug": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/debug/-/debug-2.6.8.tgz",
"depd": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/depd/-/depd-1.1.1.tgz",
"on-headers": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/on-headers/-/on-headers-1.0.1.tgz",
"parseurl": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/parseurl/-/parseurl-1.3.2.tgz",
"uid-safe": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/uid-safe/-/uid-safe-2.1.5.tgz",
"utils-merge": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/utils-merge/-/utils-merge-1.0.0.tgz"
},
"dependencies": {
"debug": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/debug/-/debug-2.6.8.tgz",
"integrity": "sha1-5zFTHKLt4n0YgiJCfaF4IdaP9Pw=",
"requires": {
"ms": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/ms/-/ms-2.0.0.tgz"
}
}
}
},
"extend": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/extend/-/extend-3.0.1.tgz",
"integrity": "sha1-p1Xqe8Gt/MWjHOfnYtuq3F5jZEQ="
},
"extsprintf": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/extsprintf/-/extsprintf-1.3.0.tgz",
"integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU="
},
"faye": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/faye/-/faye-1.2.4.tgz",
"integrity": "sha1-l47YpY8dSB5cH5i6y4lZ3l7FxkM=",
"requires": {
"asap": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/asap/-/asap-2.0.6.tgz",
"csprng": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/csprng/-/csprng-0.1.2.tgz",
"faye-websocket": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/faye-websocket/-/faye-websocket-0.11.1.tgz",
"tough-cookie": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/tough-cookie/-/tough-cookie-2.3.2.tgz",
"tunnel-agent": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/tunnel-agent/-/tunnel-agent-0.6.0.tgz"
}
},
"faye-websocket": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/faye-websocket/-/faye-websocket-0.11.1.tgz",
"integrity": "sha1-8O/hjE9W5PQK/H4Gxxn9XuYYjzg=",
"requires": {
"websocket-driver": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/websocket-driver/-/websocket-driver-0.7.0.tgz"
}
},
"fbjs": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/fbjs/-/fbjs-0.8.15.tgz",
"integrity": "sha1-TwaV/fzBbDfAsH+s7Iy0xAkWhbk=",
"requires": {
"core-js": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/core-js/-/core-js-1.2.7.tgz",
"isomorphic-fetch": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz",
"loose-envify": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/loose-envify/-/loose-envify-1.3.1.tgz",
"object-assign": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/object-assign/-/object-assign-4.1.1.tgz",
"promise": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/promise/-/promise-7.3.1.tgz",
"setimmediate": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/setimmediate/-/setimmediate-1.0.5.tgz",
"ua-parser-js": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/ua-parser-js/-/ua-parser-js-0.7.14.tgz"
}
},
"finalhandler": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/finalhandler/-/finalhandler-1.0.5.tgz",
"integrity": "sha1-pwEwPSV6G8gv6lR6M+WuiVMXI98=",
"requires": {
"debug": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/debug/-/debug-2.6.8.tgz",
"encodeurl": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/encodeurl/-/encodeurl-1.0.1.tgz",
"escape-html": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/escape-html/-/escape-html-1.0.3.tgz",
"on-finished": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/on-finished/-/on-finished-2.3.0.tgz",
"parseurl": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/parseurl/-/parseurl-1.3.2.tgz",
"statuses": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/statuses/-/statuses-1.3.1.tgz",
"unpipe": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/unpipe/-/unpipe-1.0.0.tgz"
},
"dependencies": {
"debug": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/debug/-/debug-2.6.8.tgz",
"integrity": "sha1-5zFTHKLt4n0YgiJCfaF4IdaP9Pw=",
"requires": {
"ms": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/ms/-/ms-2.0.0.tgz"
}
}
}
},
"forever-agent": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/forever-agent/-/forever-agent-0.6.1.tgz",
"integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE="
},
"form-data": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/form-data/-/form-data-2.1.4.tgz",
"integrity": "sha1-M8GDrPGTJ27KqYFDpp6Uv+4XUNE=",
"requires": {
"asynckit": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/asynckit/-/asynckit-0.4.0.tgz",
"combined-stream": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/combined-stream/-/combined-stream-1.0.5.tgz",
"mime-types": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/mime-types/-/mime-types-2.1.17.tgz"
}
},
"forwarded": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/forwarded/-/forwarded-0.1.2.tgz",
"integrity": "sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ="
},
"fresh": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/fresh/-/fresh-0.5.0.tgz",
"integrity": "sha1-9HTKXmqSRtb9jglTz6m5yAWvp44="
},
"getpass": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/getpass/-/getpass-0.1.7.tgz",
"integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=",
"requires": {
"assert-plus": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/assert-plus/-/assert-plus-1.0.0.tgz"
},
"dependencies": {
"assert-plus": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/assert-plus/-/assert-plus-1.0.0.tgz",
"integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU="
}
}
},
"graceful-readlink": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz",
"integrity": "sha1-TK+tdrxi8C+gObL5Tpo906ORpyU="
},
"har-schema": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/har-schema/-/har-schema-1.0.5.tgz",
"integrity": "sha1-0mMTX0MwfALGAq/I/pWXDAFRNp4="
},
"har-validator": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/har-validator/-/har-validator-4.2.1.tgz",
"integrity": "sha1-M0gdDxu/9gDdID11gSpqX7oALio=",
"requires": {
"ajv": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/ajv/-/ajv-4.11.8.tgz",
"har-schema": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/har-schema/-/har-schema-1.0.5.tgz"
}
},
"hawk": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/hawk/-/hawk-3.1.3.tgz",
"integrity": "sha1-B4REvXwWQLD+VA0sm3PVlnjo4cQ=",
"requires": {
"boom": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/boom/-/boom-2.10.1.tgz",
"cryptiles": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/cryptiles/-/cryptiles-2.0.5.tgz",
"hoek": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/hoek/-/hoek-2.16.3.tgz",
"sntp": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/sntp/-/sntp-1.0.9.tgz"
}
},
"history": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/history/-/history-4.7.2.tgz",
"integrity": "sha1-IrXH8xYzxbgCHH9KipVKwTnujVs=",
"requires": {
"invariant": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/invariant/-/invariant-2.2.2.tgz",
"loose-envify": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/loose-envify/-/loose-envify-1.3.1.tgz",
"resolve-pathname": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/resolve-pathname/-/resolve-pathname-2.2.0.tgz",
"value-equal": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/value-equal/-/value-equal-0.4.0.tgz",
"warning": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/warning/-/warning-3.0.0.tgz"
}
},
"hoek": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/hoek/-/hoek-2.16.3.tgz",
"integrity": "sha1-ILt0A9POo5jpHcRxCo/xuCdKJe0="
},
"hoist-non-react-statics": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/hoist-non-react-statics/-/hoist-non-react-statics-2.3.1.tgz",
"integrity": "sha1-ND24TGAYxlB3iJgkATWhQg7iLOA="
},
"http-errors": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/http-errors/-/http-errors-1.6.2.tgz",
"integrity": "sha1-CgAsyFcHGSp+eUbO7cERVfYOxzY=",
"requires": {
"depd": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/depd/-/depd-1.1.1.tgz",
"inherits": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/inherits/-/inherits-2.0.3.tgz",
"setprototypeof": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/setprototypeof/-/setprototypeof-1.0.3.tgz",
"statuses": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/statuses/-/statuses-1.3.1.tgz"
}
},
"http-parser-js": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/http-parser-js/-/http-parser-js-0.4.6.tgz",
"integrity": "sha1-GVJz9YcExFLWcQdr4gEyndNB3FU="
},
"http-signature": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/http-signature/-/http-signature-1.1.1.tgz",
"integrity": "sha1-33LiZwZs0Kxn+3at+OE0qPvPkb8=",
"requires": {
"assert-plus": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/assert-plus/-/assert-plus-0.2.0.tgz",
"jsprim": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/jsprim/-/jsprim-1.4.1.tgz",
"sshpk": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/sshpk/-/sshpk-1.13.1.tgz"
}
},
"iconv-lite": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/iconv-lite/-/iconv-lite-0.4.15.tgz",
"integrity": "sha1-/iZaIYrGpXz+hUkn6dBMGYJe3es="
},
"inherits": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/inherits/-/inherits-2.0.3.tgz",
"integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4="
},
"invariant": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/invariant/-/invariant-2.2.2.tgz",
"integrity": "sha1-nh9WrArNtr8wMwbzOL47IErmA2A=",
"requires": {
"loose-envify": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/loose-envify/-/loose-envify-1.3.1.tgz"
}
},
"ipaddr.js": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/ipaddr.js/-/ipaddr.js-1.4.0.tgz",
"integrity": "sha1-KWrKh4qCGBbluF0KKFqZvP9FgvA="
},
"is-buffer": {
"version": "1.1.6",
"resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz",
"integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w=="
},
"is-promise": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.1.0.tgz",
"integrity": "sha1-eaKp7OfwlugPNtKy87wWwf9L8/o="
},
"is-stream": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/is-stream/-/is-stream-1.1.0.tgz",
"integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ="
},
"is-typedarray": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/is-typedarray/-/is-typedarray-1.0.0.tgz",
"integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo="
},
"isarray": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/isarray/-/isarray-1.0.0.tgz",
"integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE="
},
"isomorphic-fetch": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz",
"integrity": "sha1-YRrhrPFPXoH3KVB0coGf6XM1WKk=",
"requires": {
"node-fetch": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/node-fetch/-/node-fetch-1.7.3.tgz",
"whatwg-fetch": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/whatwg-fetch/-/whatwg-fetch-2.0.3.tgz"
}
},
"isstream": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/isstream/-/isstream-0.1.2.tgz",
"integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo="
},
"jade": {
"version": "1.11.0",
"resolved": "https://registry.npmjs.org/jade/-/jade-1.11.0.tgz",
"integrity": "sha1-nIDlOMEtP7lcjZu5VZ+gzAQEBf0=",
"requires": {
"character-parser": "1.2.1",
"clean-css": "3.4.28",
"commander": "2.6.0",
"constantinople": "3.0.2",
"jstransformer": "0.0.2",
"mkdirp": "0.5.1",
"transformers": "2.1.0",
"uglify-js": "2.8.29",
"void-elements": "2.0.1",
"with": "4.0.3"
},
"dependencies": {
"commander": {
"version": "2.6.0",
"resolved": "https://registry.npmjs.org/commander/-/commander-2.6.0.tgz",
"integrity": "sha1-nfflL7Kgyw+4kFjugMMQQiXzfh0="
}
}
},
"jquery": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/jquery/-/jquery-3.2.1.tgz",
"integrity": "sha1-XE2d5lKvbNCncBVKYxu6ErAVx4c="
},
"js-tokens": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/js-tokens/-/js-tokens-3.0.2.tgz",
"integrity": "sha1-mGbfOVECEw449/mWvOtlRDIJwls="
},
"jsbn": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/jsbn/-/jsbn-0.1.1.tgz",
"integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=",
"optional": true
},
"jsforce": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/jsforce/-/jsforce-1.8.0.tgz",
"integrity": "sha1-1julUXkPKTo1fkY/yajhrWJpOqc=",
"requires": {
"co-prompt": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/co-prompt/-/co-prompt-1.0.0.tgz",
"coffee-script": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/coffee-script/-/coffee-script-1.12.7.tgz",
"commander": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/commander/-/commander-2.11.0.tgz",
"csv-parse": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/csv-parse/-/csv-parse-1.2.2.tgz",
"csv-stringify": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/csv-stringify/-/csv-stringify-1.0.4.tgz",
"faye": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/faye/-/faye-1.2.4.tgz",
"inherits": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/inherits/-/inherits-2.0.3.tgz",
"lodash": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/lodash/-/lodash-4.17.4.tgz",
"multistream": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/multistream/-/multistream-2.1.0.tgz",
"open": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/open/-/open-0.0.5.tgz",
"promise": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/promise/-/promise-7.3.1.tgz",
"readable-stream": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/readable-stream/-/readable-stream-2.3.3.tgz",
"request": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/request/-/request-2.81.0.tgz",
"xml2js": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/xml2js/-/xml2js-0.4.19.tgz"
}
},
"json-schema": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/json-schema/-/json-schema-0.2.3.tgz",
"integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM="
},
"json-stable-stringify": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz",
"integrity": "sha1-mnWdOcXy/1A/1TAGRu1EX4jE+a8=",
"requires": {
"jsonify": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/jsonify/-/jsonify-0.0.0.tgz"
}
},
"json-stringify-safe": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz",
"integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus="
},
"jsonify": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/jsonify/-/jsonify-0.0.0.tgz",
"integrity": "sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM="
},
"jsprim": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/jsprim/-/jsprim-1.4.1.tgz",
"integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=",
"requires": {
"assert-plus": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/assert-plus/-/assert-plus-1.0.0.tgz",
"extsprintf": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/extsprintf/-/extsprintf-1.3.0.tgz",
"json-schema": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/json-schema/-/json-schema-0.2.3.tgz",
"verror": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/verror/-/verror-1.10.0.tgz"
},
"dependencies": {
"assert-plus": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/assert-plus/-/assert-plus-1.0.0.tgz",
"integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU="
}
}
},
"jstransformer": {
"version": "0.0.2",
"resolved": "https://registry.npmjs.org/jstransformer/-/jstransformer-0.0.2.tgz",
"integrity": "sha1-eq4pqQPRls+glz2IXT5HlH7Ndqs=",
"requires": {
"is-promise": "2.1.0",
"promise": "6.1.0"
},
"dependencies": {
"asap": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/asap/-/asap-1.0.0.tgz",
"integrity": "sha1-sqRdpf36ILBJb8N2jMJ8EvqRan0="
},
"promise": {
"version": "6.1.0",
"resolved": "https://registry.npmjs.org/promise/-/promise-6.1.0.tgz",
"integrity": "sha1-LOcp9rlLRcJoka0GAsXJDgTG7vY=",
"requires": {
"asap": "1.0.0"
}
}
}
},
"keypress": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/keypress/-/keypress-0.2.1.tgz",
"integrity": "sha1-HoBFQlABjbrUw/6USX1uZ7YmnHc="
},
"kind-of": {
"version": "3.2.2",
"resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz",
"integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=",
"requires": {
"is-buffer": "1.1.6"
}
},
"lazy-cache": {
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-1.0.4.tgz",
"integrity": "sha1-odePw6UEdMuAhF07O24dpJpEbo4="
},
"lodash": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/lodash/-/lodash-4.17.4.tgz",
"integrity": "sha1-eCA6TRwyiuHYbcpkYONptX9AVa4="
},
"lodash-es": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/lodash-es/-/lodash-es-4.17.4.tgz",
"integrity": "sha1-3MHXVS4VCgZABzupyzHXDwMpUOc="
},
"lodash.get": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/lodash.get/-/lodash.get-4.4.2.tgz",
"integrity": "sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk="
},
"longest": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz",
"integrity": "sha1-MKCy2jj3N3DoKUoNIuZiXtd9AJc="
},
"loose-envify": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/loose-envify/-/loose-envify-1.3.1.tgz",
"integrity": "sha1-0aitM/qc4OcT1l/dCsi3SNR4yEg=",
"requires": {
"js-tokens": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/js-tokens/-/js-tokens-3.0.2.tgz"
}
},
"media-typer": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/media-typer/-/media-typer-0.3.0.tgz",
"integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g="
},
"merge-descriptors": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/merge-descriptors/-/merge-descriptors-1.0.1.tgz",
"integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E="
},
"methods": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/methods/-/methods-1.1.2.tgz",
"integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4="
},
"mime": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/mime/-/mime-1.3.4.tgz",
"integrity": "sha1-EV+eO2s9rylZmDyzjxSaLUDrXVM="
},
"mime-db": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/mime-db/-/mime-db-1.30.0.tgz",
"integrity": "sha1-dMZD2i3Z1qRTmZY0ZbJtXKfXHwE="
},
"mime-types": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/mime-types/-/mime-types-2.1.17.tgz",
"integrity": "sha1-Cdejk/A+mVp5+K+Fe3Cp4KsWVXo=",
"requires": {
"mime-db": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/mime-db/-/mime-db-1.30.0.tgz"
}
},
"minimist": {
"version": "0.0.8",
"resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz",
"integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0="
},
"mkdirp": {
"version": "0.5.1",
"resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz",
"integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=",
"requires": {
"minimist": "0.0.8"
}
},
"morgan": {
"version": "1.8.2",
"resolved": "https://registry.npmjs.org/morgan/-/morgan-1.8.2.tgz",
"integrity": "sha1-eErHc05KRTqcbm6GgKkyknXItoc=",
"requires": {
"basic-auth": "1.1.0",
"debug": "2.6.8",
"depd": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/depd/-/depd-1.1.1.tgz",
"on-finished": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/on-finished/-/on-finished-2.3.0.tgz",
"on-headers": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/on-headers/-/on-headers-1.0.1.tgz"
},
"dependencies": {
"debug": {
"version": "2.6.8",
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.8.tgz",
"integrity": "sha1-5zFTHKLt4n0YgiJCfaF4IdaP9Pw=",
"requires": {
"ms": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/ms/-/ms-2.0.0.tgz"
}
}
}
},
"ms": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/ms/-/ms-2.0.0.tgz",
"integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g="
},
"multistream": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/multistream/-/multistream-2.1.0.tgz",
"integrity": "sha1-YlwmfVxEQkrWKUeItbtNo9yzLx0=",
"requires": {
"inherits": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/inherits/-/inherits-2.0.3.tgz",
"readable-stream": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/readable-stream/-/readable-stream-2.3.3.tgz"
}
},
"negotiator": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/negotiator/-/negotiator-0.6.1.tgz",
"integrity": "sha1-KzJxhOiZIQEXeyhWP7XnECrNDKk="
},
"node-fetch": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/node-fetch/-/node-fetch-1.7.3.tgz",
"integrity": "sha1-mA9vcthSEaU0fGsrwYxbhMPrR+8=",
"requires": {
"encoding": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/encoding/-/encoding-0.1.12.tgz",
"is-stream": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/is-stream/-/is-stream-1.1.0.tgz"
}
},
"oauth-sign": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/oauth-sign/-/oauth-sign-0.8.2.tgz",
"integrity": "sha1-Rqarfwrq2N6unsBWV4C31O/rnUM="
},
"object-assign": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/object-assign/-/object-assign-4.1.1.tgz",
"integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM="
},
"on-finished": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/on-finished/-/on-finished-2.3.0.tgz",
"integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=",
"requires": {
"ee-first": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/ee-first/-/ee-first-1.1.1.tgz"
}
},
"on-headers": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/on-headers/-/on-headers-1.0.1.tgz",
"integrity": "sha1-ko9dD0cNSTQmUepnlLCFfBAGk/c="
},
"open": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/open/-/open-0.0.5.tgz",
"integrity": "sha1-QsPhjslUZra/DcQvOilFw/DK2Pw="
},
"optimist": {
"version": "0.3.7",
"resolved": "https://registry.npmjs.org/optimist/-/optimist-0.3.7.tgz",
"integrity": "sha1-yQlBrVnkJzMokjB00s8ufLxuwNk=",
"requires": {
"wordwrap": "0.0.3"
}
},
"parseurl": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/parseurl/-/parseurl-1.3.2.tgz",
"integrity": "sha1-/CidTtiZMRlGDBViUyYs3I3mW/M="
},
"path-to-regexp": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/path-to-regexp/-/path-to-regexp-0.1.7.tgz",
"integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w="
},
"performance-now": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/performance-now/-/performance-now-0.2.0.tgz",
"integrity": "sha1-M+8wxcd9TqIcWlOGnZG1bY8lVeU="
},
"process-nextick-args": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/process-nextick-args/-/process-nextick-args-1.0.7.tgz",
"integrity": "sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M="
},
"promise": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/promise/-/promise-7.3.1.tgz",
"integrity": "sha1-BktyYCsY+Q8pGSuLG8QY/9Hr078=",
"requires": {
"asap": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/asap/-/asap-2.0.6.tgz"
}
},
"prop-types": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/prop-types/-/prop-types-15.5.10.tgz",
"integrity": "sha1-J5ffwxJhguOpXj37suiT3ddFYVQ=",
"requires": {
"fbjs": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/fbjs/-/fbjs-0.8.15.tgz",
"loose-envify": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/loose-envify/-/loose-envify-1.3.1.tgz"
}
},
"proxy-addr": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/proxy-addr/-/proxy-addr-1.1.5.tgz",
"integrity": "sha1-ccDuOxAt4/IC87ZPYI0XP8uhqRg=",
"requires": {
"forwarded": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/forwarded/-/forwarded-0.1.2.tgz",
"ipaddr.js": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/ipaddr.js/-/ipaddr.js-1.4.0.tgz"
}
},
"punycode": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/punycode/-/punycode-1.4.1.tgz",
"integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4="
},
"qs": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/qs/-/qs-6.4.0.tgz",
"integrity": "sha1-E+JtKK1rD/qpExLNO/cI7TUecjM="
},
"query-string": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/query-string/-/query-string-4.3.4.tgz",
"integrity": "sha1-u7aTucqRXCMlFbIosaArYJBD2+s=",
"requires": {
"object-assign": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/object-assign/-/object-assign-4.1.1.tgz",
"strict-uri-encode": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz"
}
},
"random-bytes": {
"version": "http://artifactory.int.dealer.com/artifactory/api/npm/all-npm/random-bytes/-/random-bytes-1.0.0.tgz",
"integrity": "sha1-T2ih3Arli9P7lYSMMDJNt11kNgs="
},
"range-parser": {