-
Notifications
You must be signed in to change notification settings - Fork 0
/
package-lock.json
4280 lines (4280 loc) · 186 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": "css-js-loader",
"version": "0.4.1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"abab": {
"version": "https://registry.npmjs.org/abab/-/abab-1.0.4.tgz",
"integrity": "sha1-X6rZwsB/YN12dw9xzwJbYqY8/U4=",
"dev": true
},
"acorn": {
"version": "https://registry.npmjs.org/acorn/-/acorn-5.1.2.tgz",
"integrity": "sha1-kRy1PgNoB88Pp3jcXTcPvYZCRtc=",
"dev": true
},
"acorn-globals": {
"version": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-3.1.0.tgz",
"integrity": "sha1-/YJw9x+7SZawBPqIDuXUZXOnMb8=",
"dev": true,
"requires": {
"acorn": "https://npme.walmart.com/acorn/-/acorn-4.0.13.tgz"
},
"dependencies": {
"acorn": {
"version": "https://npme.walmart.com/acorn/-/acorn-4.0.13.tgz",
"integrity": "sha1-EFSVrlNh1pe9GVyCUZLhrX8lN4c=",
"dev": true
}
}
},
"acorn-jsx": {
"version": "https://npme.walmart.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz",
"integrity": "sha1-r9+UiPsezvyDSPb7IvRk4ypYs2s=",
"dev": true,
"requires": {
"acorn": "https://npme.walmart.com/acorn/-/acorn-3.3.0.tgz"
},
"dependencies": {
"acorn": {
"version": "https://npme.walmart.com/acorn/-/acorn-3.3.0.tgz",
"integrity": "sha1-ReN/s56No/JbruP/U2niu18iAXo=",
"dev": true
}
}
},
"ajv": {
"version": "https://registry.npmjs.org/ajv/-/ajv-5.2.3.tgz",
"integrity": "sha1-wG9Zh3jETGsWGrr+NGa4GtGBTtI=",
"dev": true,
"requires": {
"co": "https://npme.walmart.com/co/-/co-4.6.0.tgz",
"fast-deep-equal": "https://npme.walmart.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz",
"json-schema-traverse": "https://npme.walmart.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz",
"json-stable-stringify": "https://npme.walmart.com/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz"
}
},
"ajv-keywords": {
"version": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-2.1.0.tgz",
"integrity": "sha1-opbhf3v658HOT34N5T0pyzIWLfA=",
"dev": true
},
"align-text": {
"version": "https://npme.walmart.com/align-text/-/align-text-0.1.4.tgz",
"integrity": "sha1-DNkKVhCT810KmSVsIrcGlDP60Rc=",
"dev": true,
"requires": {
"kind-of": "https://npme.walmart.com/kind-of/-/kind-of-3.2.2.tgz",
"longest": "https://npme.walmart.com/longest/-/longest-1.0.1.tgz",
"repeat-string": "https://npme.walmart.com/repeat-string/-/repeat-string-1.6.1.tgz"
}
},
"amdefine": {
"version": "https://npme.walmart.com/amdefine/-/amdefine-1.0.1.tgz",
"integrity": "sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU=",
"dev": true
},
"ansi-escapes": {
"version": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.0.0.tgz",
"integrity": "sha1-7D6LTp+AZPwCw6ybZfHCdb2o75I=",
"dev": true
},
"ansi-regex": {
"version": "https://npme.walmart.com/ansi-regex/-/ansi-regex-2.1.1.tgz",
"integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=",
"dev": true
},
"ansi-styles": {
"version": "https://npme.walmart.com/ansi-styles/-/ansi-styles-2.2.1.tgz",
"integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=",
"dev": true
},
"anymatch": {
"version": "https://npme.walmart.com/anymatch/-/anymatch-1.3.2.tgz",
"integrity": "sha1-VT3Lj5HjyImEXf26NMd3IbkLnXo=",
"dev": true,
"requires": {
"micromatch": "https://npme.walmart.com/micromatch/-/micromatch-2.3.11.tgz",
"normalize-path": "https://npme.walmart.com/normalize-path/-/normalize-path-2.1.1.tgz"
}
},
"append-transform": {
"version": "https://registry.npmjs.org/append-transform/-/append-transform-0.4.0.tgz",
"integrity": "sha1-126/jKlNJ24keja61EpLdKthGZE=",
"dev": true,
"requires": {
"default-require-extensions": "https://registry.npmjs.org/default-require-extensions/-/default-require-extensions-1.0.0.tgz"
}
},
"argparse": {
"version": "https://npme.walmart.com/argparse/-/argparse-1.0.9.tgz",
"integrity": "sha1-c9g7wmP4bpf4zE9rrhsOkKfSLIY=",
"dev": true,
"requires": {
"sprintf-js": "https://npme.walmart.com/sprintf-js/-/sprintf-js-1.0.3.tgz"
}
},
"aria-query": {
"version": "https://registry.npmjs.org/aria-query/-/aria-query-0.7.0.tgz",
"integrity": "sha1-SvEKHmFXPd6gzzuZtRxSwFtCTSQ=",
"dev": true,
"requires": {
"ast-types-flow": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz"
}
},
"arr-diff": {
"version": "https://npme.walmart.com/arr-diff/-/arr-diff-2.0.0.tgz",
"integrity": "sha1-jzuCf5Vai9ZpaX5KQlasPOrjVs8=",
"dev": true,
"requires": {
"arr-flatten": "https://npme.walmart.com/arr-flatten/-/arr-flatten-1.1.0.tgz"
}
},
"arr-flatten": {
"version": "https://npme.walmart.com/arr-flatten/-/arr-flatten-1.1.0.tgz",
"integrity": "sha1-NgSLv/TntH4TZkQxbJlmnqWukfE=",
"dev": true
},
"array-equal": {
"version": "https://registry.npmjs.org/array-equal/-/array-equal-1.0.0.tgz",
"integrity": "sha1-jCpe8kcv2ep0KwTHenUJO6J1fJM=",
"dev": true
},
"array-includes": {
"version": "https://npme.walmart.com/array-includes/-/array-includes-3.0.3.tgz",
"integrity": "sha1-GEtI9i2S10UrsxsyMWXH+L0CJm0=",
"dev": true,
"requires": {
"define-properties": "https://npme.walmart.com/define-properties/-/define-properties-1.1.2.tgz",
"es-abstract": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.9.0.tgz"
}
},
"array-union": {
"version": "https://npme.walmart.com/array-union/-/array-union-1.0.2.tgz",
"integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=",
"dev": true,
"requires": {
"array-uniq": "https://npme.walmart.com/array-uniq/-/array-uniq-1.0.3.tgz"
}
},
"array-uniq": {
"version": "https://npme.walmart.com/array-uniq/-/array-uniq-1.0.3.tgz",
"integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=",
"dev": true
},
"array-unique": {
"version": "https://npme.walmart.com/array-unique/-/array-unique-0.2.1.tgz",
"integrity": "sha1-odl8yvy8JiXMcPrc6zalDFiwGlM=",
"dev": true
},
"arrify": {
"version": "https://npme.walmart.com/arrify/-/arrify-1.0.1.tgz",
"integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=",
"dev": true
},
"asap": {
"version": "https://npme.walmart.com/asap/-/asap-2.0.6.tgz",
"integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY="
},
"asn1": {
"version": "https://npme.walmart.com/asn1/-/asn1-0.2.3.tgz",
"integrity": "sha1-2sh4dxPJlmhJ/IGAd36+nB3fO4Y=",
"dev": true
},
"assert-plus": {
"version": "https://npme.walmart.com/assert-plus/-/assert-plus-1.0.0.tgz",
"integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=",
"dev": true
},
"ast-types-flow": {
"version": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz",
"integrity": "sha1-9wtzXGvKGlycItmCw+Oef+ujva0=",
"dev": true
},
"async": {
"version": "https://npme.walmart.com/async/-/async-2.5.0.tgz",
"integrity": "sha1-hDGQ/WtzV6C54clW7d3V7IRitU0=",
"dev": true,
"requires": {
"lodash": "https://npme.walmart.com/lodash/-/lodash-4.17.4.tgz"
}
},
"asynckit": {
"version": "https://npme.walmart.com/asynckit/-/asynckit-0.4.0.tgz",
"integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=",
"dev": true
},
"aws-sign2": {
"version": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz",
"integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=",
"dev": true
},
"aws4": {
"version": "https://npme.walmart.com/aws4/-/aws4-1.6.0.tgz",
"integrity": "sha1-g+9cqGCysy5KDe7e6MdxudtXRx4=",
"dev": true
},
"axobject-query": {
"version": "https://registry.npmjs.org/axobject-query/-/axobject-query-0.1.0.tgz",
"integrity": "sha1-YvWdvFnJ+SQnWco0mWDnov48NsA=",
"dev": true,
"requires": {
"ast-types-flow": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz"
}
},
"babel-code-frame": {
"version": "https://npme.walmart.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz",
"integrity": "sha1-Y/1D99weO7fONZR9uP42mj9Yx0s=",
"dev": true,
"requires": {
"chalk": "https://npme.walmart.com/chalk/-/chalk-1.1.3.tgz",
"esutils": "https://npme.walmart.com/esutils/-/esutils-2.0.2.tgz",
"js-tokens": "https://npme.walmart.com/js-tokens/-/js-tokens-3.0.2.tgz"
},
"dependencies": {
"chalk": {
"version": "https://npme.walmart.com/chalk/-/chalk-1.1.3.tgz",
"integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=",
"dev": true,
"requires": {
"ansi-styles": "https://npme.walmart.com/ansi-styles/-/ansi-styles-2.2.1.tgz",
"escape-string-regexp": "https://npme.walmart.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
"has-ansi": "https://npme.walmart.com/has-ansi/-/has-ansi-2.0.0.tgz",
"strip-ansi": "https://npme.walmart.com/strip-ansi/-/strip-ansi-3.0.1.tgz",
"supports-color": "https://npme.walmart.com/supports-color/-/supports-color-2.0.0.tgz"
}
},
"strip-ansi": {
"version": "https://npme.walmart.com/strip-ansi/-/strip-ansi-3.0.1.tgz",
"integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=",
"dev": true,
"requires": {
"ansi-regex": "https://npme.walmart.com/ansi-regex/-/ansi-regex-2.1.1.tgz"
}
}
}
},
"babel-core": {
"version": "https://npme.walmart.com/babel-core/-/babel-core-6.26.0.tgz",
"integrity": "sha1-rzL3izGm/O8RnIew/Y2XU/A6C7g=",
"dev": true,
"requires": {
"babel-code-frame": "https://npme.walmart.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz",
"babel-generator": "https://npme.walmart.com/babel-generator/-/babel-generator-6.26.0.tgz",
"babel-helpers": "https://npme.walmart.com/babel-helpers/-/babel-helpers-6.24.1.tgz",
"babel-messages": "https://npme.walmart.com/babel-messages/-/babel-messages-6.23.0.tgz",
"babel-register": "https://npme.walmart.com/babel-register/-/babel-register-6.26.0.tgz",
"babel-runtime": "https://npme.walmart.com/babel-runtime/-/babel-runtime-6.26.0.tgz",
"babel-template": "https://npme.walmart.com/babel-template/-/babel-template-6.26.0.tgz",
"babel-traverse": "https://npme.walmart.com/babel-traverse/-/babel-traverse-6.26.0.tgz",
"babel-types": "https://npme.walmart.com/babel-types/-/babel-types-6.26.0.tgz",
"babylon": "https://npme.walmart.com/babylon/-/babylon-6.18.0.tgz",
"convert-source-map": "https://npme.walmart.com/convert-source-map/-/convert-source-map-1.5.0.tgz",
"debug": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
"json5": "https://npme.walmart.com/json5/-/json5-0.5.1.tgz",
"lodash": "https://npme.walmart.com/lodash/-/lodash-4.17.4.tgz",
"minimatch": "https://npme.walmart.com/minimatch/-/minimatch-3.0.4.tgz",
"path-is-absolute": "https://npme.walmart.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
"private": "https://registry.npmjs.org/private/-/private-0.1.8.tgz",
"slash": "https://npme.walmart.com/slash/-/slash-1.0.0.tgz",
"source-map": "https://npme.walmart.com/source-map/-/source-map-0.5.7.tgz"
},
"dependencies": {
"babel-messages": {
"version": "https://npme.walmart.com/babel-messages/-/babel-messages-6.23.0.tgz",
"integrity": "sha1-8830cDhYA1sqKVHG7F7fbGLyYw4=",
"dev": true,
"requires": {
"babel-runtime": "https://npme.walmart.com/babel-runtime/-/babel-runtime-6.26.0.tgz"
}
},
"babel-template": {
"version": "https://npme.walmart.com/babel-template/-/babel-template-6.26.0.tgz",
"integrity": "sha1-3gPi0WOWsGn0bdn/+FIfsaDjXgI=",
"dev": true,
"requires": {
"babel-runtime": "https://npme.walmart.com/babel-runtime/-/babel-runtime-6.26.0.tgz",
"babel-traverse": "https://npme.walmart.com/babel-traverse/-/babel-traverse-6.26.0.tgz",
"babel-types": "https://npme.walmart.com/babel-types/-/babel-types-6.26.0.tgz",
"babylon": "https://npme.walmart.com/babylon/-/babylon-6.18.0.tgz",
"lodash": "https://npme.walmart.com/lodash/-/lodash-4.17.4.tgz"
}
},
"babel-traverse": {
"version": "https://npme.walmart.com/babel-traverse/-/babel-traverse-6.26.0.tgz",
"integrity": "sha1-RqnL1+3MYsjlwGTi0tjQ9ANXZu4=",
"dev": true,
"requires": {
"babel-code-frame": "https://npme.walmart.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz",
"babel-messages": "https://npme.walmart.com/babel-messages/-/babel-messages-6.23.0.tgz",
"babel-runtime": "https://npme.walmart.com/babel-runtime/-/babel-runtime-6.26.0.tgz",
"babel-types": "https://npme.walmart.com/babel-types/-/babel-types-6.26.0.tgz",
"babylon": "https://npme.walmart.com/babylon/-/babylon-6.18.0.tgz",
"debug": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
"globals": "https://npme.walmart.com/globals/-/globals-9.18.0.tgz",
"invariant": "https://npme.walmart.com/invariant/-/invariant-2.2.2.tgz",
"lodash": "https://npme.walmart.com/lodash/-/lodash-4.17.4.tgz"
}
},
"babel-types": {
"version": "https://npme.walmart.com/babel-types/-/babel-types-6.26.0.tgz",
"integrity": "sha1-o7Bz+Uq0nrb6Vc1lInozQ4BjJJc=",
"dev": true,
"requires": {
"babel-runtime": "https://npme.walmart.com/babel-runtime/-/babel-runtime-6.26.0.tgz",
"esutils": "https://npme.walmart.com/esutils/-/esutils-2.0.2.tgz",
"lodash": "https://npme.walmart.com/lodash/-/lodash-4.17.4.tgz",
"to-fast-properties": "https://npme.walmart.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz"
}
},
"babylon": {
"version": "https://npme.walmart.com/babylon/-/babylon-6.18.0.tgz",
"integrity": "sha1-ry87iPpvXB5MY00aD46sT1WzleM=",
"dev": true
},
"debug": {
"version": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
"integrity": "sha1-XRKFFd8TT/Mn6QpMk/Tgd6U2NB8=",
"dev": true,
"requires": {
"ms": "https://npme.walmart.com/ms/-/ms-2.0.0.tgz"
}
},
"to-fast-properties": {
"version": "https://npme.walmart.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz",
"integrity": "sha1-uDVx+k2MJbguIxsG46MFXeTKGkc=",
"dev": true
}
}
},
"babel-eslint": {
"version": "https://registry.npmjs.org/babel-eslint/-/babel-eslint-8.0.1.tgz",
"integrity": "sha1-XXGL56MoYl0AYCLrKT7TAIy9Y0Y=",
"dev": true,
"requires": {
"babel-code-frame": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-7.0.0-beta.0.tgz",
"babel-traverse": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-7.0.0-beta.0.tgz",
"babel-types": "https://registry.npmjs.org/babel-types/-/babel-types-7.0.0-beta.0.tgz",
"babylon": "https://registry.npmjs.org/babylon/-/babylon-7.0.0-beta.22.tgz"
},
"dependencies": {
"babel-code-frame": {
"version": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-7.0.0-beta.0.tgz",
"integrity": "sha1-QYp7Xz99yaRnDmGxFYtMVmG+yY0=",
"dev": true,
"requires": {
"chalk": "https://registry.npmjs.org/chalk/-/chalk-2.2.0.tgz",
"esutils": "https://npme.walmart.com/esutils/-/esutils-2.0.2.tgz",
"js-tokens": "https://npme.walmart.com/js-tokens/-/js-tokens-3.0.2.tgz"
}
}
}
},
"babel-generator": {
"version": "https://npme.walmart.com/babel-generator/-/babel-generator-6.26.0.tgz",
"integrity": "sha1-rBriAHC3n248odMmlhMFN3TyDcU=",
"dev": true,
"requires": {
"babel-messages": "https://npme.walmart.com/babel-messages/-/babel-messages-6.23.0.tgz",
"babel-runtime": "https://npme.walmart.com/babel-runtime/-/babel-runtime-6.26.0.tgz",
"babel-types": "https://npme.walmart.com/babel-types/-/babel-types-6.26.0.tgz",
"detect-indent": "https://npme.walmart.com/detect-indent/-/detect-indent-4.0.0.tgz",
"jsesc": "https://npme.walmart.com/jsesc/-/jsesc-1.3.0.tgz",
"lodash": "https://npme.walmart.com/lodash/-/lodash-4.17.4.tgz",
"source-map": "https://npme.walmart.com/source-map/-/source-map-0.5.7.tgz",
"trim-right": "https://npme.walmart.com/trim-right/-/trim-right-1.0.1.tgz"
},
"dependencies": {
"babel-messages": {
"version": "https://npme.walmart.com/babel-messages/-/babel-messages-6.23.0.tgz",
"integrity": "sha1-8830cDhYA1sqKVHG7F7fbGLyYw4=",
"dev": true,
"requires": {
"babel-runtime": "https://npme.walmart.com/babel-runtime/-/babel-runtime-6.26.0.tgz"
}
},
"babel-types": {
"version": "https://npme.walmart.com/babel-types/-/babel-types-6.26.0.tgz",
"integrity": "sha1-o7Bz+Uq0nrb6Vc1lInozQ4BjJJc=",
"dev": true,
"requires": {
"babel-runtime": "https://npme.walmart.com/babel-runtime/-/babel-runtime-6.26.0.tgz",
"esutils": "https://npme.walmart.com/esutils/-/esutils-2.0.2.tgz",
"lodash": "https://npme.walmart.com/lodash/-/lodash-4.17.4.tgz",
"to-fast-properties": "https://npme.walmart.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz"
}
},
"to-fast-properties": {
"version": "https://npme.walmart.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz",
"integrity": "sha1-uDVx+k2MJbguIxsG46MFXeTKGkc=",
"dev": true
}
}
},
"babel-helper-function-name": {
"version": "https://registry.npmjs.org/babel-helper-function-name/-/babel-helper-function-name-7.0.0-beta.0.tgz",
"integrity": "sha1-0bZ3m2R+XFwx6+sF4TuZjk01LVY=",
"dev": true,
"requires": {
"babel-helper-get-function-arity": "https://registry.npmjs.org/babel-helper-get-function-arity/-/babel-helper-get-function-arity-7.0.0-beta.0.tgz",
"babel-template": "https://registry.npmjs.org/babel-template/-/babel-template-7.0.0-beta.0.tgz",
"babel-traverse": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-7.0.0-beta.0.tgz",
"babel-types": "https://registry.npmjs.org/babel-types/-/babel-types-7.0.0-beta.0.tgz"
}
},
"babel-helper-get-function-arity": {
"version": "https://registry.npmjs.org/babel-helper-get-function-arity/-/babel-helper-get-function-arity-7.0.0-beta.0.tgz",
"integrity": "sha1-nRq3ITu17+HvFjio6hSJlptai24=",
"dev": true,
"requires": {
"babel-types": "https://registry.npmjs.org/babel-types/-/babel-types-7.0.0-beta.0.tgz"
}
},
"babel-helpers": {
"version": "https://npme.walmart.com/babel-helpers/-/babel-helpers-6.24.1.tgz",
"integrity": "sha1-NHHenK7DiOXIUOWX5Yom3fN2ArI=",
"dev": true,
"requires": {
"babel-runtime": "https://npme.walmart.com/babel-runtime/-/babel-runtime-6.26.0.tgz",
"babel-template": "https://npme.walmart.com/babel-template/-/babel-template-6.26.0.tgz"
},
"dependencies": {
"babel-messages": {
"version": "https://npme.walmart.com/babel-messages/-/babel-messages-6.23.0.tgz",
"integrity": "sha1-8830cDhYA1sqKVHG7F7fbGLyYw4=",
"dev": true,
"requires": {
"babel-runtime": "https://npme.walmart.com/babel-runtime/-/babel-runtime-6.26.0.tgz"
}
},
"babel-template": {
"version": "https://npme.walmart.com/babel-template/-/babel-template-6.26.0.tgz",
"integrity": "sha1-3gPi0WOWsGn0bdn/+FIfsaDjXgI=",
"dev": true,
"requires": {
"babel-runtime": "https://npme.walmart.com/babel-runtime/-/babel-runtime-6.26.0.tgz",
"babel-traverse": "https://npme.walmart.com/babel-traverse/-/babel-traverse-6.26.0.tgz",
"babel-types": "https://npme.walmart.com/babel-types/-/babel-types-6.26.0.tgz",
"babylon": "https://npme.walmart.com/babylon/-/babylon-6.18.0.tgz",
"lodash": "https://npme.walmart.com/lodash/-/lodash-4.17.4.tgz"
}
},
"babel-traverse": {
"version": "https://npme.walmart.com/babel-traverse/-/babel-traverse-6.26.0.tgz",
"integrity": "sha1-RqnL1+3MYsjlwGTi0tjQ9ANXZu4=",
"dev": true,
"requires": {
"babel-code-frame": "https://npme.walmart.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz",
"babel-messages": "https://npme.walmart.com/babel-messages/-/babel-messages-6.23.0.tgz",
"babel-runtime": "https://npme.walmart.com/babel-runtime/-/babel-runtime-6.26.0.tgz",
"babel-types": "https://npme.walmart.com/babel-types/-/babel-types-6.26.0.tgz",
"babylon": "https://npme.walmart.com/babylon/-/babylon-6.18.0.tgz",
"debug": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
"globals": "https://npme.walmart.com/globals/-/globals-9.18.0.tgz",
"invariant": "https://npme.walmart.com/invariant/-/invariant-2.2.2.tgz",
"lodash": "https://npme.walmart.com/lodash/-/lodash-4.17.4.tgz"
}
},
"babel-types": {
"version": "https://npme.walmart.com/babel-types/-/babel-types-6.26.0.tgz",
"integrity": "sha1-o7Bz+Uq0nrb6Vc1lInozQ4BjJJc=",
"dev": true,
"requires": {
"babel-runtime": "https://npme.walmart.com/babel-runtime/-/babel-runtime-6.26.0.tgz",
"esutils": "https://npme.walmart.com/esutils/-/esutils-2.0.2.tgz",
"lodash": "https://npme.walmart.com/lodash/-/lodash-4.17.4.tgz",
"to-fast-properties": "https://npme.walmart.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz"
}
},
"babylon": {
"version": "https://npme.walmart.com/babylon/-/babylon-6.18.0.tgz",
"integrity": "sha1-ry87iPpvXB5MY00aD46sT1WzleM=",
"dev": true
},
"debug": {
"version": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
"integrity": "sha1-XRKFFd8TT/Mn6QpMk/Tgd6U2NB8=",
"dev": true,
"requires": {
"ms": "https://npme.walmart.com/ms/-/ms-2.0.0.tgz"
}
},
"to-fast-properties": {
"version": "https://npme.walmart.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz",
"integrity": "sha1-uDVx+k2MJbguIxsG46MFXeTKGkc=",
"dev": true
}
}
},
"babel-jest": {
"version": "https://registry.npmjs.org/babel-jest/-/babel-jest-20.0.3.tgz",
"integrity": "sha1-5KA7E9wQOJ4UD8ZF0J/8TO0wFnE=",
"dev": true,
"requires": {
"babel-core": "https://npme.walmart.com/babel-core/-/babel-core-6.26.0.tgz",
"babel-plugin-istanbul": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.5.tgz",
"babel-preset-jest": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-20.0.3.tgz"
}
},
"babel-messages": {
"version": "https://registry.npmjs.org/babel-messages/-/babel-messages-7.0.0-beta.0.tgz",
"integrity": "sha1-bfASluSfyPvQY3OUMmoWfzbagXs=",
"dev": true
},
"babel-plugin-istanbul": {
"version": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-4.1.5.tgz",
"integrity": "sha1-Z2DN2Xf0EdPhdbsGTyvDJ9mbK24=",
"dev": true,
"requires": {
"find-up": "https://npme.walmart.com/find-up/-/find-up-2.1.0.tgz",
"istanbul-lib-instrument": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-1.8.0.tgz",
"test-exclude": "https://registry.npmjs.org/test-exclude/-/test-exclude-4.1.1.tgz"
}
},
"babel-plugin-jest-hoist": {
"version": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-20.0.3.tgz",
"integrity": "sha1-r+3IU70/jcNUjqZx++adA8wsF2c=",
"dev": true
},
"babel-preset-jest": {
"version": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-20.0.3.tgz",
"integrity": "sha1-y6yq3stdaJyh4d4TYOv8ZoYsF4o=",
"dev": true,
"requires": {
"babel-plugin-jest-hoist": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-20.0.3.tgz"
}
},
"babel-register": {
"version": "https://npme.walmart.com/babel-register/-/babel-register-6.26.0.tgz",
"integrity": "sha1-btAhFz4vy0htestFxgCahW9kcHE=",
"dev": true,
"requires": {
"babel-core": "https://npme.walmart.com/babel-core/-/babel-core-6.26.0.tgz",
"babel-runtime": "https://npme.walmart.com/babel-runtime/-/babel-runtime-6.26.0.tgz",
"core-js": "https://registry.npmjs.org/core-js/-/core-js-2.5.1.tgz",
"home-or-tmp": "https://npme.walmart.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz",
"lodash": "https://npme.walmart.com/lodash/-/lodash-4.17.4.tgz",
"mkdirp": "https://npme.walmart.com/mkdirp/-/mkdirp-0.5.1.tgz",
"source-map-support": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.4.18.tgz"
},
"dependencies": {
"core-js": {
"version": "https://registry.npmjs.org/core-js/-/core-js-2.5.1.tgz",
"integrity": "sha1-rmh03GaTd4m4B1T/VCjfZoGcpQs=",
"dev": true
}
}
},
"babel-runtime": {
"version": "https://npme.walmart.com/babel-runtime/-/babel-runtime-6.26.0.tgz",
"integrity": "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=",
"dev": true,
"requires": {
"core-js": "https://registry.npmjs.org/core-js/-/core-js-2.5.1.tgz",
"regenerator-runtime": "https://npme.walmart.com/regenerator-runtime/-/regenerator-runtime-0.11.0.tgz"
},
"dependencies": {
"core-js": {
"version": "https://registry.npmjs.org/core-js/-/core-js-2.5.1.tgz",
"integrity": "sha1-rmh03GaTd4m4B1T/VCjfZoGcpQs=",
"dev": true
}
}
},
"babel-template": {
"version": "https://registry.npmjs.org/babel-template/-/babel-template-7.0.0-beta.0.tgz",
"integrity": "sha1-hQg8+eQ5XV5Iv1FU16jWmRyv7Ps=",
"dev": true,
"requires": {
"babel-traverse": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-7.0.0-beta.0.tgz",
"babel-types": "https://registry.npmjs.org/babel-types/-/babel-types-7.0.0-beta.0.tgz",
"babylon": "https://registry.npmjs.org/babylon/-/babylon-7.0.0-beta.22.tgz",
"lodash": "https://npme.walmart.com/lodash/-/lodash-4.17.4.tgz"
}
},
"babel-traverse": {
"version": "https://registry.npmjs.org/babel-traverse/-/babel-traverse-7.0.0-beta.0.tgz",
"integrity": "sha1-2hS+m3YvYqLwYNtGTqr92M0HKkE=",
"dev": true,
"requires": {
"babel-code-frame": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-7.0.0-beta.0.tgz",
"babel-helper-function-name": "https://registry.npmjs.org/babel-helper-function-name/-/babel-helper-function-name-7.0.0-beta.0.tgz",
"babel-messages": "https://registry.npmjs.org/babel-messages/-/babel-messages-7.0.0-beta.0.tgz",
"babel-types": "https://registry.npmjs.org/babel-types/-/babel-types-7.0.0-beta.0.tgz",
"babylon": "https://registry.npmjs.org/babylon/-/babylon-7.0.0-beta.22.tgz",
"debug": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz",
"globals": "https://registry.npmjs.org/globals/-/globals-10.1.0.tgz",
"invariant": "https://npme.walmart.com/invariant/-/invariant-2.2.2.tgz",
"lodash": "https://npme.walmart.com/lodash/-/lodash-4.17.4.tgz"
},
"dependencies": {
"babel-code-frame": {
"version": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-7.0.0-beta.0.tgz",
"integrity": "sha1-QYp7Xz99yaRnDmGxFYtMVmG+yY0=",
"dev": true,
"requires": {
"chalk": "https://registry.npmjs.org/chalk/-/chalk-2.2.0.tgz",
"esutils": "https://npme.walmart.com/esutils/-/esutils-2.0.2.tgz",
"js-tokens": "https://npme.walmart.com/js-tokens/-/js-tokens-3.0.2.tgz"
}
},
"globals": {
"version": "https://registry.npmjs.org/globals/-/globals-10.1.0.tgz",
"integrity": "sha1-RCWhiBvg0za0qCOoKnvnJdXdmHw=",
"dev": true
}
}
},
"babel-types": {
"version": "https://registry.npmjs.org/babel-types/-/babel-types-7.0.0-beta.0.tgz",
"integrity": "sha1-64tuVWRw5tzErvmC15rSKUabUWk=",
"dev": true,
"requires": {
"esutils": "https://npme.walmart.com/esutils/-/esutils-2.0.2.tgz",
"lodash": "https://npme.walmart.com/lodash/-/lodash-4.17.4.tgz",
"to-fast-properties": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz"
}
},
"babylon": {
"version": "https://registry.npmjs.org/babylon/-/babylon-7.0.0-beta.22.tgz",
"integrity": "sha1-dPCtgu18fDz+q3TPaE+BUQQWG2U=",
"dev": true
},
"balanced-match": {
"version": "https://npme.walmart.com/balanced-match/-/balanced-match-1.0.0.tgz",
"integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=",
"dev": true
},
"bcrypt-pbkdf": {
"version": "https://npme.walmart.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz",
"integrity": "sha1-Y7xdy2EzG5K8Bf1SiVPDNGKgb40=",
"dev": true,
"optional": true,
"requires": {
"tweetnacl": "https://npme.walmart.com/tweetnacl/-/tweetnacl-0.14.5.tgz"
}
},
"big.js": {
"version": "https://registry.npmjs.org/big.js/-/big.js-3.2.0.tgz",
"integrity": "sha1-pfwpi4G54Nyi5FiCR4S2XFK6WI4="
},
"boom": {
"version": "https://npme.walmart.com/boom/-/boom-4.3.1.tgz",
"integrity": "sha1-T4owBctKfjiJ90kDD9JbluAdLjE=",
"dev": true,
"requires": {
"hoek": "https://npme.walmart.com/hoek/-/hoek-4.2.0.tgz"
}
},
"brace-expansion": {
"version": "https://npme.walmart.com/brace-expansion/-/brace-expansion-1.1.8.tgz",
"integrity": "sha1-wHshHHyVLsH479Uad+8NHTmQopI=",
"dev": true,
"requires": {
"balanced-match": "https://npme.walmart.com/balanced-match/-/balanced-match-1.0.0.tgz",
"concat-map": "https://npme.walmart.com/concat-map/-/concat-map-0.0.1.tgz"
}
},
"braces": {
"version": "https://npme.walmart.com/braces/-/braces-1.8.5.tgz",
"integrity": "sha1-uneWLhLf+WnWt2cR6RS3N4V79qc=",
"dev": true,
"requires": {
"expand-range": "https://npme.walmart.com/expand-range/-/expand-range-1.8.2.tgz",
"preserve": "https://npme.walmart.com/preserve/-/preserve-0.2.0.tgz",
"repeat-element": "https://npme.walmart.com/repeat-element/-/repeat-element-1.1.2.tgz"
}
},
"browser-resolve": {
"version": "https://registry.npmjs.org/browser-resolve/-/browser-resolve-1.11.2.tgz",
"integrity": "sha1-j/CbCixCFxihBRwmCzLkj0QpOM4=",
"dev": true,
"requires": {
"resolve": "https://npme.walmart.com/resolve/-/resolve-1.1.7.tgz"
},
"dependencies": {
"resolve": {
"version": "https://npme.walmart.com/resolve/-/resolve-1.1.7.tgz",
"integrity": "sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs=",
"dev": true
}
}
},
"bser": {
"version": "https://npme.walmart.com/bser/-/bser-2.0.0.tgz",
"integrity": "sha1-mseNPtXZFYBP2HrLFYvHlxR6Fxk=",
"dev": true,
"requires": {
"node-int64": "https://npme.walmart.com/node-int64/-/node-int64-0.4.0.tgz"
}
},
"builtin-modules": {
"version": "https://npme.walmart.com/builtin-modules/-/builtin-modules-1.1.1.tgz",
"integrity": "sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8=",
"dev": true
},
"caller-path": {
"version": "https://npme.walmart.com/caller-path/-/caller-path-0.1.0.tgz",
"integrity": "sha1-lAhe9jWB7NPaqSREqP6U6CV3dR8=",
"dev": true,
"requires": {
"callsites": "https://npme.walmart.com/callsites/-/callsites-0.2.0.tgz"
}
},
"callsites": {
"version": "https://npme.walmart.com/callsites/-/callsites-0.2.0.tgz",
"integrity": "sha1-r6uWJikQp/M8GaV3WCXGnzTjUMo=",
"dev": true
},
"camelcase": {
"version": "https://npme.walmart.com/camelcase/-/camelcase-1.2.1.tgz",
"integrity": "sha1-m7UwTS4LVmmLLHWLCKPqqdqlijk=",
"dev": true,
"optional": true
},
"caseless": {
"version": "https://npme.walmart.com/caseless/-/caseless-0.12.0.tgz",
"integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=",
"dev": true
},
"center-align": {
"version": "https://npme.walmart.com/center-align/-/center-align-0.1.3.tgz",
"integrity": "sha1-qg0yYptu6XIgBBHL1EYckHvCt60=",
"dev": true,
"optional": true,
"requires": {
"align-text": "https://npme.walmart.com/align-text/-/align-text-0.1.4.tgz",
"lazy-cache": "https://npme.walmart.com/lazy-cache/-/lazy-cache-1.0.4.tgz"
}
},
"chalk": {
"version": "https://registry.npmjs.org/chalk/-/chalk-2.2.0.tgz",
"integrity": "sha1-R3s78vm4/Vyp5Cl0fjf3JO568kA=",
"dev": true,
"requires": {
"ansi-styles": "https://npme.walmart.com/ansi-styles/-/ansi-styles-3.2.0.tgz",
"escape-string-regexp": "https://npme.walmart.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
"supports-color": "https://registry.npmjs.org/supports-color/-/supports-color-4.5.0.tgz"
},
"dependencies": {
"ansi-styles": {
"version": "https://npme.walmart.com/ansi-styles/-/ansi-styles-3.2.0.tgz",
"integrity": "sha1-wVm41b4PnlpvNG2rlPFs4CIWG4g=",
"dev": true,
"requires": {
"color-convert": "https://npme.walmart.com/color-convert/-/color-convert-1.9.0.tgz"
}
},
"supports-color": {
"version": "https://registry.npmjs.org/supports-color/-/supports-color-4.5.0.tgz",
"integrity": "sha1-vnoN5ITexcXN34s9WRJQRJEvY1s=",
"dev": true,
"requires": {
"has-flag": "https://npme.walmart.com/has-flag/-/has-flag-2.0.0.tgz"
}
}
}
},
"ci-info": {
"version": "https://registry.npmjs.org/ci-info/-/ci-info-1.1.1.tgz",
"integrity": "sha1-R7RN8RjEjSWXtW00Ln4leRBgFxo=",
"dev": true
},
"circular-json": {
"version": "https://npme.walmart.com/circular-json/-/circular-json-0.3.3.tgz",
"integrity": "sha1-gVyZ6oT2gJUp0vRXkb34JxE1LWY=",
"dev": true
},
"cli-cursor": {
"version": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz",
"integrity": "sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=",
"dev": true,
"requires": {
"restore-cursor": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz"
}
},
"cli-width": {
"version": "https://npme.walmart.com/cli-width/-/cli-width-2.2.0.tgz",
"integrity": "sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk=",
"dev": true
},
"cliui": {
"version": "https://npme.walmart.com/cliui/-/cliui-2.1.0.tgz",
"integrity": "sha1-S0dXYP+AJkx2LDoXGQMukcf+oNE=",
"dev": true,
"optional": true,
"requires": {
"center-align": "https://npme.walmart.com/center-align/-/center-align-0.1.3.tgz",
"right-align": "https://npme.walmart.com/right-align/-/right-align-0.1.3.tgz",
"wordwrap": "https://npme.walmart.com/wordwrap/-/wordwrap-0.0.2.tgz"
},
"dependencies": {
"wordwrap": {
"version": "https://npme.walmart.com/wordwrap/-/wordwrap-0.0.2.tgz",
"integrity": "sha1-t5Zpu0LstAn4PVg8rVLKF+qhZD8=",
"dev": true,
"optional": true
}
}
},
"co": {
"version": "https://npme.walmart.com/co/-/co-4.6.0.tgz",
"integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=",
"dev": true
},
"code-point-at": {
"version": "https://npme.walmart.com/code-point-at/-/code-point-at-1.1.0.tgz",
"integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=",
"dev": true
},
"color-convert": {
"version": "https://npme.walmart.com/color-convert/-/color-convert-1.9.0.tgz",
"integrity": "sha1-Gsz5fdc5uYO/mU1W/sj5WFNkG3o=",
"dev": true,
"requires": {
"color-name": "https://npme.walmart.com/color-name/-/color-name-1.1.3.tgz"
}
},
"color-name": {
"version": "https://npme.walmart.com/color-name/-/color-name-1.1.3.tgz",
"integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=",
"dev": true
},
"combined-stream": {
"version": "https://npme.walmart.com/combined-stream/-/combined-stream-1.0.5.tgz",
"integrity": "sha1-k4NwpXtKUd6ix3wV1cX9+JUWQAk=",
"dev": true,
"requires": {
"delayed-stream": "https://npme.walmart.com/delayed-stream/-/delayed-stream-1.0.0.tgz"
}
},
"concat-map": {
"version": "https://npme.walmart.com/concat-map/-/concat-map-0.0.1.tgz",
"integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=",
"dev": true
},
"concat-stream": {
"version": "https://npme.walmart.com/concat-stream/-/concat-stream-1.6.0.tgz",
"integrity": "sha1-CqxmL9Ur54lk1VMvaUeE5wEQrPc=",
"dev": true,
"requires": {
"inherits": "https://npme.walmart.com/inherits/-/inherits-2.0.3.tgz",
"readable-stream": "https://npme.walmart.com/readable-stream/-/readable-stream-2.3.3.tgz",
"typedarray": "https://npme.walmart.com/typedarray/-/typedarray-0.0.6.tgz"
}
},
"contains-path": {
"version": "https://npme.walmart.com/contains-path/-/contains-path-0.1.0.tgz",
"integrity": "sha1-/ozxhP9mcLa67wGp1IYaXL7EEgo=",
"dev": true
},
"content-type-parser": {
"version": "https://registry.npmjs.org/content-type-parser/-/content-type-parser-1.0.1.tgz",
"integrity": "sha1-w+VpiMU8ZRJ/tG1AMqOpACRv3JQ=",
"dev": true
},
"convert-source-map": {
"version": "https://npme.walmart.com/convert-source-map/-/convert-source-map-1.5.0.tgz",
"integrity": "sha1-ms1whRxtXf3ZPZKC5e35SgP/RrU=",
"dev": true
},
"core-js": {
"version": "https://npme.walmart.com/core-js/-/core-js-1.2.7.tgz",
"integrity": "sha1-ZSKUwUZR2yj6k70tX/KYOk8IxjY="
},
"core-util-is": {
"version": "https://npme.walmart.com/core-util-is/-/core-util-is-1.0.2.tgz",
"integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=",
"dev": true
},
"create-eslint-index": {
"version": "https://npme.walmart.com/create-eslint-index/-/create-eslint-index-1.0.0.tgz",
"integrity": "sha1-2VQ3LYbVeS/NZ+nyt5GxqxYkEbs=",
"dev": true,
"requires": {
"lodash.get": "https://npme.walmart.com/lodash.get/-/lodash.get-4.4.2.tgz"
}
},
"cross-spawn": {
"version": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz",
"integrity": "sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=",
"dev": true,
"requires": {
"lru-cache": "https://npme.walmart.com/lru-cache/-/lru-cache-4.1.1.tgz",
"shebang-command": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz",
"which": "https://npme.walmart.com/which/-/which-1.3.0.tgz"
}
},
"cryptiles": {
"version": "https://npme.walmart.com/cryptiles/-/cryptiles-3.1.2.tgz",
"integrity": "sha1-qJ+7Ig9c4l7FboxKqKT9e1sNKf4=",
"dev": true,
"requires": {
"boom": "https://npme.walmart.com/boom/-/boom-5.2.0.tgz"
},
"dependencies": {
"boom": {
"version": "https://npme.walmart.com/boom/-/boom-5.2.0.tgz",
"integrity": "sha1-XdnabuOl8wIHdDYpDLcX0/SlTgI=",
"dev": true,
"requires": {
"hoek": "https://npme.walmart.com/hoek/-/hoek-4.2.0.tgz"
}
}
}
},
"cssom": {
"version": "https://registry.npmjs.org/cssom/-/cssom-0.3.2.tgz",
"integrity": "sha1-uANhcMefB6kP8vFuIihAJ6JDhIs=",
"dev": true
},
"cssstyle": {
"version": "https://registry.npmjs.org/cssstyle/-/cssstyle-0.2.37.tgz",
"integrity": "sha1-VBCXI0yyUTyDzu06zdwn/yeYfVQ=",
"dev": true,
"requires": {
"cssom": "https://registry.npmjs.org/cssom/-/cssom-0.3.2.tgz"
}
},
"damerau-levenshtein": {
"version": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.4.tgz",
"integrity": "sha1-AxkcQyy27qFou3fzpV/9zLiXhRQ=",
"dev": true
},
"dashdash": {
"version": "https://npme.walmart.com/dashdash/-/dashdash-1.14.1.tgz",
"integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=",
"dev": true,
"requires": {
"assert-plus": "https://npme.walmart.com/assert-plus/-/assert-plus-1.0.0.tgz"
}
},
"debug": {
"version": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz",
"integrity": "sha1-W7WgZyYotkFJVmuhaBnmFRjGcmE=",
"dev": true,
"requires": {
"ms": "https://npme.walmart.com/ms/-/ms-2.0.0.tgz"
}
},
"decamelize": {
"version": "https://npme.walmart.com/decamelize/-/decamelize-1.2.0.tgz",
"integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=",
"dev": true
},
"deep-is": {
"version": "https://npme.walmart.com/deep-is/-/deep-is-0.1.3.tgz",
"integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=",
"dev": true
},
"default-require-extensions": {
"version": "https://registry.npmjs.org/default-require-extensions/-/default-require-extensions-1.0.0.tgz",
"integrity": "sha1-836hXT4T/9m0N9M+GnW1+5eHTLg=",
"dev": true,
"requires": {
"strip-bom": "https://npme.walmart.com/strip-bom/-/strip-bom-2.0.0.tgz"
}
},
"define-properties": {
"version": "https://npme.walmart.com/define-properties/-/define-properties-1.1.2.tgz",
"integrity": "sha1-g6c/L+pWmJj7c3GTyPhzyvbUXJQ=",
"dev": true,
"requires": {
"foreach": "https://npme.walmart.com/foreach/-/foreach-2.0.5.tgz",
"object-keys": "https://npme.walmart.com/object-keys/-/object-keys-1.0.11.tgz"
}
},
"del": {
"version": "https://npme.walmart.com/del/-/del-2.2.2.tgz",
"integrity": "sha1-wSyYHQZ4RshLyvhiz/kw2Qf/0ag=",
"dev": true,
"requires": {
"globby": "https://npme.walmart.com/globby/-/globby-5.0.0.tgz",
"is-path-cwd": "https://npme.walmart.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz",
"is-path-in-cwd": "https://npme.walmart.com/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz",
"object-assign": "https://npme.walmart.com/object-assign/-/object-assign-4.1.1.tgz",
"pify": "https://npme.walmart.com/pify/-/pify-2.3.0.tgz",
"pinkie-promise": "https://npme.walmart.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz",
"rimraf": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.2.tgz"
}