-
Notifications
You must be signed in to change notification settings - Fork 0
/
npm-debug.log
6104 lines (6104 loc) · 310 KB
/
npm-debug.log
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
0 info it worked if it ends with ok
1 verbose cli [ '/usr/local/Cellar/node/4.2.1/bin/node',
1 verbose cli '/usr/local/bin/npm',
1 verbose cli 'install' ]
2 info using npm@3.6.0
3 info using node@v4.2.1
4 silly loadCurrentTree Starting
5 silly install loadCurrentTree
6 silly install readLocalPackageData
7 silly install normalizeTree
8 silly loadCurrentTree Finishing
9 silly loadIdealTree Starting
10 silly install loadIdealTree
11 silly cloneCurrentTree Starting
12 silly install cloneCurrentTreeToIdealTree
13 silly cloneCurrentTree Finishing
14 silly loadShrinkwrap Starting
15 silly install loadShrinkwrap
16 silly loadShrinkwrap Finishing
17 silly loadAllDepsIntoIdealTree Starting
18 silly install loadAllDepsIntoIdealTree
19 silly fetchNamedPackageData babel-brunch
20 silly mapToRegistry name babel-brunch
21 silly mapToRegistry using default registry
22 silly mapToRegistry registry https://registry.npmjs.org/
23 silly mapToRegistry uri https://registry.npmjs.org/babel-brunch
24 silly fetchNamedPackageData brunch
25 silly mapToRegistry name brunch
26 silly mapToRegistry using default registry
27 silly mapToRegistry registry https://registry.npmjs.org/
28 silly mapToRegistry uri https://registry.npmjs.org/brunch
29 silly fetchNamedPackageData clean-css-brunch
30 silly mapToRegistry name clean-css-brunch
31 silly mapToRegistry using default registry
32 silly mapToRegistry registry https://registry.npmjs.org/
33 silly mapToRegistry uri https://registry.npmjs.org/clean-css-brunch
34 silly fetchNamedPackageData css-brunch
35 silly mapToRegistry name css-brunch
36 silly mapToRegistry using default registry
37 silly mapToRegistry registry https://registry.npmjs.org/
38 silly mapToRegistry uri https://registry.npmjs.org/css-brunch
39 silly fetchNamedPackageData javascript-brunch
40 silly mapToRegistry name javascript-brunch
41 silly mapToRegistry using default registry
42 silly mapToRegistry registry https://registry.npmjs.org/
43 silly mapToRegistry uri https://registry.npmjs.org/javascript-brunch
44 silly fetchNamedPackageData uglify-js-brunch
45 silly mapToRegistry name uglify-js-brunch
46 silly mapToRegistry using default registry
47 silly mapToRegistry registry https://registry.npmjs.org/
48 silly mapToRegistry uri https://registry.npmjs.org/uglify-js-brunch
49 silly fetchDirectoryPackageData phoenix
50 silly fetchDirectoryPackageData phoenix_html
51 verbose request uri https://registry.npmjs.org/css-brunch
52 verbose request no auth needed
53 info attempt registry request try #1 at 4:43:32 PM
54 verbose request id dde244307a345d6d
55 verbose etag "3MLMEF015LTF3ST910NBEPF6Z"
56 http request GET https://registry.npmjs.org/css-brunch
57 verbose request uri https://registry.npmjs.org/brunch
58 verbose request no auth needed
59 info attempt registry request try #1 at 4:43:32 PM
60 verbose etag "4U5II9RE4CW41TTPKX9DKAHZ4"
61 http request GET https://registry.npmjs.org/brunch
62 verbose request uri https://registry.npmjs.org/clean-css-brunch
63 verbose request no auth needed
64 info attempt registry request try #1 at 4:43:32 PM
65 verbose etag "5MPZPCMAI74IWZRADCMJFIHZW"
66 http request GET https://registry.npmjs.org/clean-css-brunch
67 verbose request uri https://registry.npmjs.org/javascript-brunch
68 verbose request no auth needed
69 info attempt registry request try #1 at 4:43:32 PM
70 verbose etag "29I869TOMAOKBX6F9X34ADN83"
71 http request GET https://registry.npmjs.org/javascript-brunch
72 verbose request uri https://registry.npmjs.org/babel-brunch
73 verbose request no auth needed
74 info attempt registry request try #1 at 4:43:32 PM
75 verbose etag "5M4803D7H9K8KRL0WQVVC35Y6"
76 http request GET https://registry.npmjs.org/babel-brunch
77 verbose request uri https://registry.npmjs.org/uglify-js-brunch
78 verbose request no auth needed
79 info attempt registry request try #1 at 4:43:32 PM
80 verbose etag "13FU9J8Y5W216UTLU2ZRS4T4M"
81 http request GET https://registry.npmjs.org/uglify-js-brunch
82 silly resolveWithNewModule phoenix@1.1.4 checking installable status
83 silly cache add args [ 'phoenix@file:deps/phoenix', null ]
84 verbose cache add spec phoenix@file:deps/phoenix
85 silly resolveWithNewModule phoenix_html@2.5.0 checking installable status
86 silly cache add args [ 'phoenix_html@file:deps/phoenix_html', null ]
87 verbose cache add spec phoenix_html@file:deps/phoenix_html
88 silly cache add parsed spec Result {
88 silly cache add raw: 'phoenix@file:deps/phoenix',
88 silly cache add scope: null,
88 silly cache add name: 'phoenix',
88 silly cache add rawSpec: 'file:deps/phoenix',
88 silly cache add spec: '/Users/maciek/dev/web/projects/docs/deps/phoenix',
88 silly cache add type: 'directory' }
89 silly cache add parsed spec Result {
89 silly cache add raw: 'phoenix_html@file:deps/phoenix_html',
89 silly cache add scope: null,
89 silly cache add name: 'phoenix_html',
89 silly cache add rawSpec: 'file:deps/phoenix_html',
89 silly cache add spec: '/Users/maciek/dev/web/projects/docs/deps/phoenix_html',
89 silly cache add type: 'directory' }
90 verbose addLocalDirectory /Users/maciek/.npm/phoenix/1.1.4/package.tgz not in flight; packing
91 verbose correctMkdir /Users/maciek/.npm correctMkdir not in flight; initializing
92 verbose addLocalDirectory /Users/maciek/.npm/phoenix_html/2.5.0/package.tgz not in flight; packing
93 verbose correctMkdir /Users/maciek/.npm correctMkdir not in flight; initializing
94 info lifecycle phoenix_html@2.5.0~prepublish: phoenix_html@2.5.0
95 info lifecycle phoenix@1.1.4~prepublish: phoenix@1.1.4
96 silly lifecycle phoenix_html@2.5.0~prepublish: no script for prepublish, continuing
97 silly lifecycle phoenix@1.1.4~prepublish: no script for prepublish, continuing
98 verbose tar pack [ '/Users/maciek/.npm/phoenix_html/2.5.0/package.tgz',
98 verbose tar pack '/Users/maciek/dev/web/projects/docs/deps/phoenix_html' ]
99 verbose tarball /Users/maciek/.npm/phoenix_html/2.5.0/package.tgz
100 verbose folder /Users/maciek/dev/web/projects/docs/deps/phoenix_html
101 verbose tar pack [ '/Users/maciek/.npm/phoenix/1.1.4/package.tgz',
101 verbose tar pack '/Users/maciek/dev/web/projects/docs/deps/phoenix' ]
102 verbose tarball /Users/maciek/.npm/phoenix/1.1.4/package.tgz
103 verbose folder /Users/maciek/dev/web/projects/docs/deps/phoenix
104 http 304 https://registry.npmjs.org/javascript-brunch
105 verbose headers { date: 'Mon, 16 May 2016 14:43:31 GMT',
105 verbose headers via: '1.1 varnish',
105 verbose headers 'cache-control': 'max-age=300',
105 verbose headers etag: '"29I869TOMAOKBX6F9X34ADN83"',
105 verbose headers age: '109',
105 verbose headers connection: 'keep-alive',
105 verbose headers 'x-served-by': 'cache-fra1241-FRA',
105 verbose headers 'x-cache': 'HIT',
105 verbose headers 'x-cache-hits': '1',
105 verbose headers 'x-timer': 'S1463409811.997956,VS0,VE0',
105 verbose headers vary: 'Accept-Encoding' }
106 silly get cb [ 304,
106 silly get { date: 'Mon, 16 May 2016 14:43:31 GMT',
106 silly get via: '1.1 varnish',
106 silly get 'cache-control': 'max-age=300',
106 silly get etag: '"29I869TOMAOKBX6F9X34ADN83"',
106 silly get age: '109',
106 silly get connection: 'keep-alive',
106 silly get 'x-served-by': 'cache-fra1241-FRA',
106 silly get 'x-cache': 'HIT',
106 silly get 'x-cache-hits': '1',
106 silly get 'x-timer': 'S1463409811.997956,VS0,VE0',
106 silly get vary: 'Accept-Encoding' } ]
107 verbose etag https://registry.npmjs.org/javascript-brunch from cache
108 verbose get saving javascript-brunch to /Users/maciek/.npm/registry.npmjs.org/javascript-brunch/.cache.json
109 verbose correctMkdir /Users/maciek/.npm correctMkdir not in flight; initializing
110 http 304 https://registry.npmjs.org/clean-css-brunch
111 verbose headers { date: 'Mon, 16 May 2016 14:43:32 GMT',
111 verbose headers via: '1.1 varnish',
111 verbose headers 'cache-control': 'max-age=300',
111 verbose headers etag: '"5MPZPCMAI74IWZRADCMJFIHZW"',
111 verbose headers age: '109',
111 verbose headers connection: 'keep-alive',
111 verbose headers 'x-served-by': 'cache-fra1237-FRA',
111 verbose headers 'x-cache': 'HIT',
111 verbose headers 'x-cache-hits': '1',
111 verbose headers 'x-timer': 'S1463409812.006687,VS0,VE0',
111 verbose headers vary: 'Accept-Encoding' }
112 silly get cb [ 304,
112 silly get { date: 'Mon, 16 May 2016 14:43:32 GMT',
112 silly get via: '1.1 varnish',
112 silly get 'cache-control': 'max-age=300',
112 silly get etag: '"5MPZPCMAI74IWZRADCMJFIHZW"',
112 silly get age: '109',
112 silly get connection: 'keep-alive',
112 silly get 'x-served-by': 'cache-fra1237-FRA',
112 silly get 'x-cache': 'HIT',
112 silly get 'x-cache-hits': '1',
112 silly get 'x-timer': 'S1463409812.006687,VS0,VE0',
112 silly get vary: 'Accept-Encoding' } ]
113 verbose etag https://registry.npmjs.org/clean-css-brunch from cache
114 verbose get saving clean-css-brunch to /Users/maciek/.npm/registry.npmjs.org/clean-css-brunch/.cache.json
115 verbose correctMkdir /Users/maciek/.npm correctMkdir not in flight; initializing
116 http 200 https://registry.npmjs.org/css-brunch
117 verbose headers { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
117 verbose headers etag: '"4YX2L1NJVSI2XGV2B6L7CKNYH"',
117 verbose headers 'content-type': 'application/json',
117 verbose headers 'content-encoding': 'gzip',
117 verbose headers 'cache-control': 'max-age=300',
117 verbose headers 'content-length': '3558',
117 verbose headers 'accept-ranges': 'bytes',
117 verbose headers date: 'Mon, 16 May 2016 14:43:32 GMT',
117 verbose headers via: '1.1 varnish',
117 verbose headers age: '109',
117 verbose headers connection: 'keep-alive',
117 verbose headers 'x-served-by': 'cache-fra1223-FRA',
117 verbose headers 'x-cache': 'HIT',
117 verbose headers 'x-cache-hits': '1',
117 verbose headers 'x-timer': 'S1463409812.006667,VS0,VE0',
117 verbose headers vary: 'Accept-Encoding' }
118 silly get cb [ 200,
118 silly get { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
118 silly get etag: '"4YX2L1NJVSI2XGV2B6L7CKNYH"',
118 silly get 'content-type': 'application/json',
118 silly get 'content-encoding': 'gzip',
118 silly get 'cache-control': 'max-age=300',
118 silly get 'content-length': '3558',
118 silly get 'accept-ranges': 'bytes',
118 silly get date: 'Mon, 16 May 2016 14:43:32 GMT',
118 silly get via: '1.1 varnish',
118 silly get age: '109',
118 silly get connection: 'keep-alive',
118 silly get 'x-served-by': 'cache-fra1223-FRA',
118 silly get 'x-cache': 'HIT',
118 silly get 'x-cache-hits': '1',
118 silly get 'x-timer': 'S1463409812.006667,VS0,VE0',
118 silly get vary: 'Accept-Encoding' } ]
119 verbose get saving css-brunch to /Users/maciek/.npm/registry.npmjs.org/css-brunch/.cache.json
120 verbose correctMkdir /Users/maciek/.npm correctMkdir not in flight; initializing
121 verbose addLocalTarball adding from inside cache /Users/maciek/.npm/phoenix_html/2.5.0/package.tgz
122 verbose correctMkdir /Users/maciek/.npm correctMkdir not in flight; initializing
123 http 304 https://registry.npmjs.org/uglify-js-brunch
124 verbose headers { date: 'Mon, 16 May 2016 14:43:32 GMT',
124 verbose headers via: '1.1 varnish',
124 verbose headers 'cache-control': 'max-age=300',
124 verbose headers etag: '"13FU9J8Y5W216UTLU2ZRS4T4M"',
124 verbose headers age: '109',
124 verbose headers connection: 'keep-alive',
124 verbose headers 'x-served-by': 'cache-fra1237-FRA',
124 verbose headers 'x-cache': 'HIT',
124 verbose headers 'x-cache-hits': '1',
124 verbose headers 'x-timer': 'S1463409812.036406,VS0,VE0',
124 verbose headers vary: 'Accept-Encoding' }
125 silly get cb [ 304,
125 silly get { date: 'Mon, 16 May 2016 14:43:32 GMT',
125 silly get via: '1.1 varnish',
125 silly get 'cache-control': 'max-age=300',
125 silly get etag: '"13FU9J8Y5W216UTLU2ZRS4T4M"',
125 silly get age: '109',
125 silly get connection: 'keep-alive',
125 silly get 'x-served-by': 'cache-fra1237-FRA',
125 silly get 'x-cache': 'HIT',
125 silly get 'x-cache-hits': '1',
125 silly get 'x-timer': 'S1463409812.036406,VS0,VE0',
125 silly get vary: 'Accept-Encoding' } ]
126 verbose etag https://registry.npmjs.org/uglify-js-brunch from cache
127 verbose get saving uglify-js-brunch to /Users/maciek/.npm/registry.npmjs.org/uglify-js-brunch/.cache.json
128 verbose correctMkdir /Users/maciek/.npm correctMkdir not in flight; initializing
129 silly resolveWithNewModule javascript-brunch@1.8.0 checking installable status
130 silly cache add args [ 'javascript-brunch@~1.8.0', null ]
131 verbose cache add spec javascript-brunch@~1.8.0
132 silly cache add parsed spec Result {
132 silly cache add raw: 'javascript-brunch@~1.8.0',
132 silly cache add scope: null,
132 silly cache add name: 'javascript-brunch',
132 silly cache add rawSpec: '~1.8.0',
132 silly cache add spec: '>=1.8.0 <1.9.0',
132 silly cache add type: 'range' }
133 silly addNamed javascript-brunch@>=1.8.0 <1.9.0
134 verbose addNamed ">=1.8.0 <1.9.0" is a valid semver range for javascript-brunch
135 silly addNameRange { name: 'javascript-brunch',
135 silly addNameRange range: '>=1.8.0 <1.9.0',
135 silly addNameRange hasData: false }
136 silly mapToRegistry name javascript-brunch
137 silly mapToRegistry using default registry
138 silly mapToRegistry registry https://registry.npmjs.org/
139 silly mapToRegistry uri https://registry.npmjs.org/javascript-brunch
140 verbose addNameRange registry:https://registry.npmjs.org/javascript-brunch not in flight; fetching
141 silly resolveWithNewModule clean-css-brunch@1.8.0 checking installable status
142 silly cache add args [ 'clean-css-brunch@~1.8.0', null ]
143 verbose cache add spec clean-css-brunch@~1.8.0
144 silly cache add parsed spec Result {
144 silly cache add raw: 'clean-css-brunch@~1.8.0',
144 silly cache add scope: null,
144 silly cache add name: 'clean-css-brunch',
144 silly cache add rawSpec: '~1.8.0',
144 silly cache add spec: '>=1.8.0 <1.9.0',
144 silly cache add type: 'range' }
145 silly addNamed clean-css-brunch@>=1.8.0 <1.9.0
146 verbose addNamed ">=1.8.0 <1.9.0" is a valid semver range for clean-css-brunch
147 silly addNameRange { name: 'clean-css-brunch',
147 silly addNameRange range: '>=1.8.0 <1.9.0',
147 silly addNameRange hasData: false }
148 silly mapToRegistry name clean-css-brunch
149 silly mapToRegistry using default registry
150 silly mapToRegistry registry https://registry.npmjs.org/
151 silly mapToRegistry uri https://registry.npmjs.org/clean-css-brunch
152 verbose addNameRange registry:https://registry.npmjs.org/clean-css-brunch not in flight; fetching
153 http 200 https://registry.npmjs.org/babel-brunch
154 verbose headers { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
154 verbose headers etag: '"EGCK22FD2JMXMKJOSGDBZBQP7"',
154 verbose headers 'content-type': 'application/json',
154 verbose headers 'content-encoding': 'gzip',
154 verbose headers 'cache-control': 'max-age=300',
154 verbose headers 'content-length': '3408',
154 verbose headers 'accept-ranges': 'bytes',
154 verbose headers date: 'Mon, 16 May 2016 14:43:32 GMT',
154 verbose headers via: '1.1 varnish',
154 verbose headers age: '109',
154 verbose headers connection: 'keep-alive',
154 verbose headers 'x-served-by': 'cache-fra1246-FRA',
154 verbose headers 'x-cache': 'HIT',
154 verbose headers 'x-cache-hits': '1',
154 verbose headers 'x-timer': 'S1463409812.040726,VS0,VE0',
154 verbose headers vary: 'Accept-Encoding' }
155 silly get cb [ 200,
155 silly get { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
155 silly get etag: '"EGCK22FD2JMXMKJOSGDBZBQP7"',
155 silly get 'content-type': 'application/json',
155 silly get 'content-encoding': 'gzip',
155 silly get 'cache-control': 'max-age=300',
155 silly get 'content-length': '3408',
155 silly get 'accept-ranges': 'bytes',
155 silly get date: 'Mon, 16 May 2016 14:43:32 GMT',
155 silly get via: '1.1 varnish',
155 silly get age: '109',
155 silly get connection: 'keep-alive',
155 silly get 'x-served-by': 'cache-fra1246-FRA',
155 silly get 'x-cache': 'HIT',
155 silly get 'x-cache-hits': '1',
155 silly get 'x-timer': 'S1463409812.040726,VS0,VE0',
155 silly get vary: 'Accept-Encoding' } ]
156 verbose get saving babel-brunch to /Users/maciek/.npm/registry.npmjs.org/babel-brunch/.cache.json
157 verbose correctMkdir /Users/maciek/.npm correctMkdir not in flight; initializing
158 silly resolveWithNewModule css-brunch@1.7.0 checking installable status
159 silly cache add args [ 'css-brunch@~1.7.0', null ]
160 verbose cache add spec css-brunch@~1.7.0
161 silly cache add parsed spec Result {
161 silly cache add raw: 'css-brunch@~1.7.0',
161 silly cache add scope: null,
161 silly cache add name: 'css-brunch',
161 silly cache add rawSpec: '~1.7.0',
161 silly cache add spec: '>=1.7.0 <1.8.0',
161 silly cache add type: 'range' }
162 silly addNamed css-brunch@>=1.7.0 <1.8.0
163 verbose addNamed ">=1.7.0 <1.8.0" is a valid semver range for css-brunch
164 silly addNameRange { name: 'css-brunch', range: '>=1.7.0 <1.8.0', hasData: false }
165 silly mapToRegistry name css-brunch
166 silly mapToRegistry using default registry
167 silly mapToRegistry registry https://registry.npmjs.org/
168 silly mapToRegistry uri https://registry.npmjs.org/css-brunch
169 verbose addNameRange registry:https://registry.npmjs.org/css-brunch not in flight; fetching
170 silly cache afterAdd phoenix_html@2.5.0
171 verbose afterAdd /Users/maciek/.npm/phoenix_html/2.5.0/package/package.json not in flight; writing
172 verbose correctMkdir /Users/maciek/.npm correctMkdir not in flight; initializing
173 verbose get https://registry.npmjs.org/javascript-brunch not expired, no request
174 silly addNameRange number 2 { name: 'javascript-brunch',
174 silly addNameRange range: '>=1.8.0 <1.9.0',
174 silly addNameRange hasData: true }
175 silly addNameRange versions [ 'javascript-brunch',
175 silly addNameRange [ '1.0.0',
175 silly addNameRange '1.1.0',
175 silly addNameRange '1.1.1',
175 silly addNameRange '1.3.0',
175 silly addNameRange '1.5.0',
175 silly addNameRange '1.5.1',
175 silly addNameRange '1.6.0',
175 silly addNameRange '1.7.0',
175 silly addNameRange '1.7.1',
175 silly addNameRange '1.8.0',
175 silly addNameRange '2.0.0' ] ]
176 silly addNamed javascript-brunch@1.8.0
177 verbose addNamed "1.8.0" is a plain semver version for javascript-brunch
178 silly resolveWithNewModule uglify-js-brunch@1.7.8 checking installable status
179 silly cache add args [ 'uglify-js-brunch@~1.7.0', null ]
180 verbose cache add spec uglify-js-brunch@~1.7.0
181 silly cache add parsed spec Result {
181 silly cache add raw: 'uglify-js-brunch@~1.7.0',
181 silly cache add scope: null,
181 silly cache add name: 'uglify-js-brunch',
181 silly cache add rawSpec: '~1.7.0',
181 silly cache add spec: '>=1.7.0 <1.8.0',
181 silly cache add type: 'range' }
182 silly addNamed uglify-js-brunch@>=1.7.0 <1.8.0
183 verbose addNamed ">=1.7.0 <1.8.0" is a valid semver range for uglify-js-brunch
184 silly addNameRange { name: 'uglify-js-brunch',
184 silly addNameRange range: '>=1.7.0 <1.8.0',
184 silly addNameRange hasData: false }
185 silly mapToRegistry name uglify-js-brunch
186 silly mapToRegistry using default registry
187 silly mapToRegistry registry https://registry.npmjs.org/
188 silly mapToRegistry uri https://registry.npmjs.org/uglify-js-brunch
189 verbose addNameRange registry:https://registry.npmjs.org/uglify-js-brunch not in flight; fetching
190 verbose get https://registry.npmjs.org/clean-css-brunch not expired, no request
191 silly addNameRange number 2 { name: 'clean-css-brunch',
191 silly addNameRange range: '>=1.8.0 <1.9.0',
191 silly addNameRange hasData: true }
192 silly addNameRange versions [ 'clean-css-brunch',
192 silly addNameRange [ '1.0.0',
192 silly addNameRange '1.1.0',
192 silly addNameRange '1.1.1',
192 silly addNameRange '1.3.0',
192 silly addNameRange '1.4.0',
192 silly addNameRange '1.5.0',
192 silly addNameRange '1.5.1',
192 silly addNameRange '1.6.0',
192 silly addNameRange '1.7.0',
192 silly addNameRange '1.7.1',
192 silly addNameRange '1.7.2',
192 silly addNameRange '1.8.0',
192 silly addNameRange '2.0.0' ] ]
193 silly addNamed clean-css-brunch@1.8.0
194 verbose addNamed "1.8.0" is a plain semver version for clean-css-brunch
195 verbose get https://registry.npmjs.org/css-brunch not expired, no request
196 silly addNameRange number 2 { name: 'css-brunch', range: '>=1.7.0 <1.8.0', hasData: true }
197 silly addNameRange versions [ 'css-brunch',
197 silly addNameRange [ '1.0.0',
197 silly addNameRange '1.1.0',
197 silly addNameRange '1.1.1',
197 silly addNameRange '1.3.0',
197 silly addNameRange '1.5.0',
197 silly addNameRange '1.5.1',
197 silly addNameRange '1.6.0',
197 silly addNameRange '1.7.0',
197 silly addNameRange '2.0.0',
197 silly addNameRange '2.6.0',
197 silly addNameRange '2.6.1' ] ]
198 silly addNamed css-brunch@1.7.0
199 verbose addNamed "1.7.0" is a plain semver version for css-brunch
200 verbose afterAdd /Users/maciek/.npm/phoenix_html/2.5.0/package/package.json written
201 verbose get https://registry.npmjs.org/uglify-js-brunch not expired, no request
202 silly addNameRange number 2 { name: 'uglify-js-brunch',
202 silly addNameRange range: '>=1.7.0 <1.8.0',
202 silly addNameRange hasData: true }
203 silly addNameRange versions [ 'uglify-js-brunch',
203 silly addNameRange [ '1.0.0',
203 silly addNameRange '1.1.0',
203 silly addNameRange '1.1.1',
203 silly addNameRange '1.3.0',
203 silly addNameRange '1.3.1',
203 silly addNameRange '1.5.0',
203 silly addNameRange '1.5.1',
203 silly addNameRange '1.7.0',
203 silly addNameRange '1.7.1',
203 silly addNameRange '1.7.2',
203 silly addNameRange '1.7.3',
203 silly addNameRange '1.7.4',
203 silly addNameRange '1.7.5',
203 silly addNameRange '1.7.6',
203 silly addNameRange '1.7.7',
203 silly addNameRange '1.7.8',
203 silly addNameRange '2.0.0',
203 silly addNameRange '2.0.1' ] ]
204 silly addNamed uglify-js-brunch@1.7.8
205 verbose addNamed "1.7.8" is a plain semver version for uglify-js-brunch
206 silly resolveWithNewModule babel-brunch@6.0.4 checking installable status
207 silly cache add args [ 'babel-brunch@~6.0.0', null ]
208 verbose cache add spec babel-brunch@~6.0.0
209 silly cache add parsed spec Result {
209 silly cache add raw: 'babel-brunch@~6.0.0',
209 silly cache add scope: null,
209 silly cache add name: 'babel-brunch',
209 silly cache add rawSpec: '~6.0.0',
209 silly cache add spec: '>=6.0.0 <6.1.0',
209 silly cache add type: 'range' }
210 silly addNamed babel-brunch@>=6.0.0 <6.1.0
211 verbose addNamed ">=6.0.0 <6.1.0" is a valid semver range for babel-brunch
212 silly addNameRange { name: 'babel-brunch', range: '>=6.0.0 <6.1.0', hasData: false }
213 silly mapToRegistry name babel-brunch
214 silly mapToRegistry using default registry
215 silly mapToRegistry registry https://registry.npmjs.org/
216 silly mapToRegistry uri https://registry.npmjs.org/babel-brunch
217 verbose addNameRange registry:https://registry.npmjs.org/babel-brunch not in flight; fetching
218 silly cache afterAdd javascript-brunch@1.8.0
219 verbose afterAdd /Users/maciek/.npm/javascript-brunch/1.8.0/package/package.json not in flight; writing
220 verbose correctMkdir /Users/maciek/.npm correctMkdir not in flight; initializing
221 silly cache afterAdd clean-css-brunch@1.8.0
222 verbose afterAdd /Users/maciek/.npm/clean-css-brunch/1.8.0/package/package.json not in flight; writing
223 verbose correctMkdir /Users/maciek/.npm correctMkdir not in flight; initializing
224 silly cache afterAdd css-brunch@1.7.0
225 verbose afterAdd /Users/maciek/.npm/css-brunch/1.7.0/package/package.json not in flight; writing
226 verbose correctMkdir /Users/maciek/.npm correctMkdir not in flight; initializing
227 verbose get https://registry.npmjs.org/babel-brunch not expired, no request
228 silly addNameRange number 2 { name: 'babel-brunch', range: '>=6.0.0 <6.1.0', hasData: true }
229 silly addNameRange versions [ 'babel-brunch',
229 silly addNameRange [ '4.0.0',
229 silly addNameRange '5.0.0',
229 silly addNameRange '5.0.1',
229 silly addNameRange '5.1.0',
229 silly addNameRange '5.1.1',
229 silly addNameRange '5.1.2',
229 silly addNameRange '6.0.0',
229 silly addNameRange '6.0.1',
229 silly addNameRange '6.0.2',
229 silly addNameRange '6.0.3',
229 silly addNameRange '6.0.4' ] ]
230 silly addNamed babel-brunch@6.0.4
231 verbose addNamed "6.0.4" is a plain semver version for babel-brunch
232 silly mapToRegistry name babel-brunch
233 silly mapToRegistry using default registry
234 silly mapToRegistry registry https://registry.npmjs.org/
235 silly mapToRegistry uri https://registry.npmjs.org/babel-brunch
236 verbose addRemoteTarball https://registry.npmjs.org/babel-brunch/-/babel-brunch-6.0.4.tgz not in flight; adding
237 verbose addRemoteTarball [ 'https://registry.npmjs.org/babel-brunch/-/babel-brunch-6.0.4.tgz',
237 verbose addRemoteTarball '5e298b6f6c78e6a7a49e025b2ca9a8be5ed9181f' ]
238 silly cache afterAdd uglify-js-brunch@1.7.8
239 verbose afterAdd /Users/maciek/.npm/uglify-js-brunch/1.7.8/package/package.json not in flight; writing
240 verbose correctMkdir /Users/maciek/.npm correctMkdir not in flight; initializing
241 verbose afterAdd /Users/maciek/.npm/javascript-brunch/1.8.0/package/package.json written
242 verbose afterAdd /Users/maciek/.npm/clean-css-brunch/1.8.0/package/package.json written
243 http 200 https://registry.npmjs.org/brunch
244 verbose headers { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
244 verbose headers etag: '"CA9I9DUJDKL6SMG4XBBHM721N"',
244 verbose headers 'content-type': 'application/json',
244 verbose headers 'content-encoding': 'gzip',
244 verbose headers 'cache-control': 'max-age=300',
244 verbose headers 'content-length': '24852',
244 verbose headers 'accept-ranges': 'bytes',
244 verbose headers date: 'Mon, 16 May 2016 14:43:32 GMT',
244 verbose headers via: '1.1 varnish',
244 verbose headers age: '19',
244 verbose headers connection: 'keep-alive',
244 verbose headers 'x-served-by': 'cache-fra1239-FRA',
244 verbose headers 'x-cache': 'HIT',
244 verbose headers 'x-cache-hits': '1',
244 verbose headers 'x-timer': 'S1463409812.006603,VS0,VE0',
244 verbose headers vary: 'Accept-Encoding' }
245 silly get cb [ 200,
245 silly get { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
245 silly get etag: '"CA9I9DUJDKL6SMG4XBBHM721N"',
245 silly get 'content-type': 'application/json',
245 silly get 'content-encoding': 'gzip',
245 silly get 'cache-control': 'max-age=300',
245 silly get 'content-length': '24852',
245 silly get 'accept-ranges': 'bytes',
245 silly get date: 'Mon, 16 May 2016 14:43:32 GMT',
245 silly get via: '1.1 varnish',
245 silly get age: '19',
245 silly get connection: 'keep-alive',
245 silly get 'x-served-by': 'cache-fra1239-FRA',
245 silly get 'x-cache': 'HIT',
245 silly get 'x-cache-hits': '1',
245 silly get 'x-timer': 'S1463409812.006603,VS0,VE0',
245 silly get vary: 'Accept-Encoding' } ]
246 verbose get saving brunch to /Users/maciek/.npm/registry.npmjs.org/brunch/.cache.json
247 verbose correctMkdir /Users/maciek/.npm correctMkdir not in flight; initializing
248 verbose afterAdd /Users/maciek/.npm/css-brunch/1.7.0/package/package.json written
249 verbose afterAdd /Users/maciek/.npm/uglify-js-brunch/1.7.8/package/package.json written
250 info retry fetch attempt 1 at 4:43:32 PM
251 info attempt registry request try #1 at 4:43:32 PM
252 http fetch GET https://registry.npmjs.org/babel-brunch/-/babel-brunch-6.0.4.tgz
253 silly resolveWithNewModule brunch@2.1.3 checking installable status
254 silly cache add args [ 'brunch@~2.1.3', null ]
255 verbose cache add spec brunch@~2.1.3
256 silly cache add parsed spec Result {
256 silly cache add raw: 'brunch@~2.1.3',
256 silly cache add scope: null,
256 silly cache add name: 'brunch',
256 silly cache add rawSpec: '~2.1.3',
256 silly cache add spec: '>=2.1.3 <2.2.0',
256 silly cache add type: 'range' }
257 silly addNamed brunch@>=2.1.3 <2.2.0
258 verbose addNamed ">=2.1.3 <2.2.0" is a valid semver range for brunch
259 silly addNameRange { name: 'brunch', range: '>=2.1.3 <2.2.0', hasData: false }
260 silly mapToRegistry name brunch
261 silly mapToRegistry using default registry
262 silly mapToRegistry registry https://registry.npmjs.org/
263 silly mapToRegistry uri https://registry.npmjs.org/brunch
264 verbose addNameRange registry:https://registry.npmjs.org/brunch not in flight; fetching
265 verbose get https://registry.npmjs.org/brunch not expired, no request
266 silly addNameRange number 2 { name: 'brunch', range: '>=2.1.3 <2.2.0', hasData: true }
267 silly addNameRange versions [ 'brunch',
267 silly addNameRange [ '0.0.1',
267 silly addNameRange '0.0.2',
267 silly addNameRange '0.0.3',
267 silly addNameRange '0.0.4',
267 silly addNameRange '0.0.5',
267 silly addNameRange '0.0.6',
267 silly addNameRange '0.0.7',
267 silly addNameRange '0.0.8',
267 silly addNameRange '0.1.0',
267 silly addNameRange '0.1.1',
267 silly addNameRange '0.1.3',
267 silly addNameRange '0.1.4',
267 silly addNameRange '0.1.5',
267 silly addNameRange '0.1.6',
267 silly addNameRange '0.1.7',
267 silly addNameRange '0.1.8',
267 silly addNameRange '0.1.9',
267 silly addNameRange '0.2.0',
267 silly addNameRange '0.2.1',
267 silly addNameRange '0.2.2',
267 silly addNameRange '0.2.3',
267 silly addNameRange '0.2.4',
267 silly addNameRange '0.2.6',
267 silly addNameRange '0.2.7',
267 silly addNameRange '0.2.8',
267 silly addNameRange '0.3.0',
267 silly addNameRange '0.3.1',
267 silly addNameRange '0.3.2',
267 silly addNameRange '0.3.4',
267 silly addNameRange '0.3.5',
267 silly addNameRange '0.3.6',
267 silly addNameRange '0.3.7',
267 silly addNameRange '0.4.0',
267 silly addNameRange '0.4.1',
267 silly addNameRange '0.4.2',
267 silly addNameRange '0.4.3',
267 silly addNameRange '0.4.4',
267 silly addNameRange '0.4.5',
267 silly addNameRange '0.5.1',
267 silly addNameRange '0.5.2',
267 silly addNameRange '0.5.3',
267 silly addNameRange '0.5.4',
267 silly addNameRange '0.5.5',
267 silly addNameRange '0.5.6',
267 silly addNameRange '0.6.0',
267 silly addNameRange '0.6.1',
267 silly addNameRange '0.6.2',
267 silly addNameRange '0.7.0',
267 silly addNameRange '0.7.1',
267 silly addNameRange '0.7.2',
267 silly addNameRange '0.7.3',
267 silly addNameRange '0.7.4',
267 silly addNameRange '0.8.0',
267 silly addNameRange '0.8.1',
267 silly addNameRange '0.9.0-beta1',
267 silly addNameRange '0.9.0',
267 silly addNameRange '0.9.1',
267 silly addNameRange '1.0.0',
267 silly addNameRange '1.0.1',
267 silly addNameRange '1.0.2',
267 silly addNameRange '1.0.3',
267 silly addNameRange '1.1.0',
267 silly addNameRange '1.1.1',
267 silly addNameRange '1.1.2',
267 silly addNameRange '1.2.0',
267 silly addNameRange '1.2.1',
267 silly addNameRange '1.2.2',
267 silly addNameRange '1.3.0',
267 silly addNameRange '1.3.1',
267 silly addNameRange '1.3.2',
267 silly addNameRange '1.3.3',
267 silly addNameRange '1.3.4',
267 silly addNameRange '1.4.0',
267 silly addNameRange '1.4.1',
267 silly addNameRange '1.4.2',
267 silly addNameRange '1.4.3',
267 silly addNameRange '1.4.4',
267 silly addNameRange '1.4.5',
267 silly addNameRange '1.5.0',
267 silly addNameRange '1.5.1',
267 silly addNameRange '1.5.2',
267 silly addNameRange '1.5.3',
267 silly addNameRange '1.5.4',
267 silly addNameRange '1.6.0',
267 silly addNameRange '1.6.1',
267 silly addNameRange '1.6.2',
267 silly addNameRange '1.6.3',
267 silly addNameRange '1.6.4',
267 silly addNameRange '1.6.5',
267 silly addNameRange '1.6.6',
267 silly addNameRange '1.6.7',
267 silly addNameRange '1.7.0',
267 silly addNameRange '1.7.1',
267 silly addNameRange '1.7.2',
267 silly addNameRange '1.7.3',
267 silly addNameRange '1.7.4',
267 silly addNameRange '1.7.5',
267 silly addNameRange '1.7.6',
267 silly addNameRange '1.7.7',
267 silly addNameRange '1.7.8',
267 silly addNameRange '1.7.9',
267 silly addNameRange '1.7.10',
267 silly addNameRange '1.7.12',
267 silly addNameRange '1.7.13',
267 silly addNameRange '1.7.14',
267 silly addNameRange '1.7.15',
267 silly addNameRange '1.7.16',
267 silly addNameRange '1.7.17',
267 silly addNameRange '1.7.18',
267 silly addNameRange '1.7.19',
267 silly addNameRange '1.7.20',
267 silly addNameRange '1.8.0',
267 silly addNameRange '1.8.1',
267 silly addNameRange '1.8.2',
267 silly addNameRange '1.8.3',
267 silly addNameRange '1.8.4',
267 silly addNameRange '1.8.5',
267 silly addNameRange '2.0.0',
267 silly addNameRange '2.0.1',
267 silly addNameRange '2.0.2',
267 silly addNameRange '2.0.3',
267 silly addNameRange '2.0.4',
267 silly addNameRange '2.1.0',
267 silly addNameRange '2.1.1',
267 silly addNameRange '2.1.2',
267 silly addNameRange '2.1.3',
267 silly addNameRange '2.2.0',
267 silly addNameRange '2.2.1',
267 silly addNameRange '2.2.2',
267 silly addNameRange '2.2.3',
267 silly addNameRange '2.3.0',
267 silly addNameRange '2.3.1',
267 silly addNameRange '2.3.2',
267 silly addNameRange '2.4.0',
267 silly addNameRange '2.4.1',
267 silly addNameRange '2.4.2',
267 silly addNameRange '2.5.0-pre',
267 silly addNameRange '2.5.0',
267 silly addNameRange '2.5.1',
267 silly addNameRange '2.5.2',
267 silly addNameRange '2.5.3',
267 silly addNameRange '2.6.0',
267 silly addNameRange '2.6.1',
267 silly addNameRange '2.6.2',
267 silly addNameRange '2.6.3',
267 silly addNameRange '2.6.4',
267 silly addNameRange '2.6.5',
267 silly addNameRange '2.6.6',
267 silly addNameRange '2.7.1',
267 silly addNameRange '2.7.2',
267 silly addNameRange '2.7.3',
267 silly addNameRange '2.7.4',
267 silly addNameRange '2.7.5',
267 silly addNameRange '2.7.6',
267 silly addNameRange '2.7.7' ] ]
268 silly addNamed brunch@2.1.3
269 verbose addNamed "2.1.3" is a plain semver version for brunch
270 silly cache afterAdd brunch@2.1.3
271 verbose afterAdd /Users/maciek/.npm/brunch/2.1.3/package/package.json not in flight; writing
272 verbose correctMkdir /Users/maciek/.npm correctMkdir not in flight; initializing
273 verbose afterAdd /Users/maciek/.npm/brunch/2.1.3/package/package.json written
274 verbose addLocalTarball adding from inside cache /Users/maciek/.npm/phoenix/1.1.4/package.tgz
275 verbose correctMkdir /Users/maciek/.npm correctMkdir not in flight; initializing
276 silly cache afterAdd phoenix@1.1.4
277 verbose afterAdd /Users/maciek/.npm/phoenix/1.1.4/package/package.json not in flight; writing
278 verbose correctMkdir /Users/maciek/.npm correctMkdir not in flight; initializing
279 verbose afterAdd /Users/maciek/.npm/phoenix/1.1.4/package/package.json written
280 http fetch 200 https://registry.npmjs.org/babel-brunch/-/babel-brunch-6.0.4.tgz
281 silly fetchAndShaCheck shasum 5e298b6f6c78e6a7a49e025b2ca9a8be5ed9181f
282 verbose addTmpTarball /var/folders/5f/lll4k59x4bdg5766fsc1r_g00000gn/T/npm-89204-84c80165/registry.npmjs.org/babel-brunch/-/babel-brunch-6.0.4.tgz not in flight; adding
283 verbose addTmpTarball already have metadata; skipping unpack for babel-brunch@6.0.4
284 verbose correctMkdir /Users/maciek/.npm correctMkdir not in flight; initializing
285 silly cache afterAdd babel-brunch@6.0.4
286 verbose afterAdd /Users/maciek/.npm/babel-brunch/6.0.4/package/package.json not in flight; writing
287 verbose correctMkdir /Users/maciek/.npm correctMkdir not in flight; initializing
288 verbose afterAdd /Users/maciek/.npm/babel-brunch/6.0.4/package/package.json written
289 silly fetchNamedPackageData babel-core
290 silly mapToRegistry name babel-core
291 silly mapToRegistry using default registry
292 silly mapToRegistry registry https://registry.npmjs.org/
293 silly mapToRegistry uri https://registry.npmjs.org/babel-core
294 silly fetchNamedPackageData anymatch
295 silly mapToRegistry name anymatch
296 silly mapToRegistry using default registry
297 silly mapToRegistry registry https://registry.npmjs.org/
298 silly mapToRegistry uri https://registry.npmjs.org/anymatch
299 silly fetchNamedPackageData babel-preset-es2015
300 silly mapToRegistry name babel-preset-es2015
301 silly mapToRegistry using default registry
302 silly mapToRegistry registry https://registry.npmjs.org/
303 silly mapToRegistry uri https://registry.npmjs.org/babel-preset-es2015
304 verbose request uri https://registry.npmjs.org/anymatch
305 verbose request no auth needed
306 info attempt registry request try #1 at 4:43:32 PM
307 verbose etag "9Y3DCB9Z5SPDOVKKP0DYD59OG"
308 http request GET https://registry.npmjs.org/anymatch
309 verbose request uri https://registry.npmjs.org/babel-core
310 verbose request no auth needed
311 info attempt registry request try #1 at 4:43:32 PM
312 verbose etag "A8UD61FTYVFKAWPBV2JFRWFPL"
313 http request GET https://registry.npmjs.org/babel-core
314 verbose request uri https://registry.npmjs.org/babel-preset-es2015
315 verbose request no auth needed
316 info attempt registry request try #1 at 4:43:32 PM
317 verbose etag "ELBWW71O1O3KNAEG5GMDE6E3K"
318 http request GET https://registry.npmjs.org/babel-preset-es2015
319 http 304 https://registry.npmjs.org/anymatch
320 verbose headers { date: 'Mon, 16 May 2016 14:43:32 GMT',
320 verbose headers via: '1.1 varnish',
320 verbose headers 'cache-control': 'max-age=300',
320 verbose headers etag: '"9Y3DCB9Z5SPDOVKKP0DYD59OG"',
320 verbose headers age: '93',
320 verbose headers connection: 'keep-alive',
320 verbose headers 'x-served-by': 'cache-fra1240-FRA',
320 verbose headers 'x-cache': 'HIT',
320 verbose headers 'x-cache-hits': '7',
320 verbose headers 'x-timer': 'S1463409812.560713,VS0,VE0',
320 verbose headers vary: 'Accept-Encoding' }
321 silly get cb [ 304,
321 silly get { date: 'Mon, 16 May 2016 14:43:32 GMT',
321 silly get via: '1.1 varnish',
321 silly get 'cache-control': 'max-age=300',
321 silly get etag: '"9Y3DCB9Z5SPDOVKKP0DYD59OG"',
321 silly get age: '93',
321 silly get connection: 'keep-alive',
321 silly get 'x-served-by': 'cache-fra1240-FRA',
321 silly get 'x-cache': 'HIT',
321 silly get 'x-cache-hits': '7',
321 silly get 'x-timer': 'S1463409812.560713,VS0,VE0',
321 silly get vary: 'Accept-Encoding' } ]
322 verbose etag https://registry.npmjs.org/anymatch from cache
323 verbose get saving anymatch to /Users/maciek/.npm/registry.npmjs.org/anymatch/.cache.json
324 verbose correctMkdir /Users/maciek/.npm correctMkdir not in flight; initializing
325 silly resolveWithNewModule anymatch@1.3.0 checking installable status
326 silly cache add args [ 'anymatch@^1.0.0', null ]
327 verbose cache add spec anymatch@^1.0.0
328 silly cache add parsed spec Result {
328 silly cache add raw: 'anymatch@^1.0.0',
328 silly cache add scope: null,
328 silly cache add name: 'anymatch',
328 silly cache add rawSpec: '^1.0.0',
328 silly cache add spec: '>=1.0.0 <2.0.0',
328 silly cache add type: 'range' }
329 silly addNamed anymatch@>=1.0.0 <2.0.0
330 verbose addNamed ">=1.0.0 <2.0.0" is a valid semver range for anymatch
331 silly addNameRange { name: 'anymatch', range: '>=1.0.0 <2.0.0', hasData: false }
332 silly mapToRegistry name anymatch
333 silly mapToRegistry using default registry
334 silly mapToRegistry registry https://registry.npmjs.org/
335 silly mapToRegistry uri https://registry.npmjs.org/anymatch
336 verbose addNameRange registry:https://registry.npmjs.org/anymatch not in flight; fetching
337 verbose get https://registry.npmjs.org/anymatch not expired, no request
338 silly addNameRange number 2 { name: 'anymatch', range: '>=1.0.0 <2.0.0', hasData: true }
339 silly addNameRange versions [ 'anymatch',
339 silly addNameRange [ '0.1.0',
339 silly addNameRange '0.1.1',
339 silly addNameRange '0.2.0',
339 silly addNameRange '1.0.0',
339 silly addNameRange '1.1.0',
339 silly addNameRange '1.2.0',
339 silly addNameRange '1.2.1',
339 silly addNameRange '1.3.0' ] ]
340 silly addNamed anymatch@1.3.0
341 verbose addNamed "1.3.0" is a plain semver version for anymatch
342 silly cache afterAdd anymatch@1.3.0
343 verbose afterAdd /Users/maciek/.npm/anymatch/1.3.0/package/package.json not in flight; writing
344 verbose correctMkdir /Users/maciek/.npm correctMkdir not in flight; initializing
345 verbose afterAdd /Users/maciek/.npm/anymatch/1.3.0/package/package.json written
346 http 200 https://registry.npmjs.org/babel-preset-es2015
347 verbose headers { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
347 verbose headers etag: '"EYMBZ4LTU9ABGD9IGTT7I6W4V"',
347 verbose headers 'content-type': 'application/json',
347 verbose headers 'content-encoding': 'gzip',
347 verbose headers 'cache-control': 'max-age=300',
347 verbose headers 'content-length': '3926',
347 verbose headers 'accept-ranges': 'bytes',
347 verbose headers date: 'Mon, 16 May 2016 14:43:32 GMT',
347 verbose headers via: '1.1 varnish',
347 verbose headers age: '20',
347 verbose headers connection: 'keep-alive',
347 verbose headers 'x-served-by': 'cache-fra1247-FRA',
347 verbose headers 'x-cache': 'HIT',
347 verbose headers 'x-cache-hits': '1',
347 verbose headers 'x-timer': 'S1463409812.580230,VS0,VE0',
347 verbose headers vary: 'Accept-Encoding' }
348 silly get cb [ 200,
348 silly get { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
348 silly get etag: '"EYMBZ4LTU9ABGD9IGTT7I6W4V"',
348 silly get 'content-type': 'application/json',
348 silly get 'content-encoding': 'gzip',
348 silly get 'cache-control': 'max-age=300',
348 silly get 'content-length': '3926',
348 silly get 'accept-ranges': 'bytes',
348 silly get date: 'Mon, 16 May 2016 14:43:32 GMT',
348 silly get via: '1.1 varnish',
348 silly get age: '20',
348 silly get connection: 'keep-alive',
348 silly get 'x-served-by': 'cache-fra1247-FRA',
348 silly get 'x-cache': 'HIT',
348 silly get 'x-cache-hits': '1',
348 silly get 'x-timer': 'S1463409812.580230,VS0,VE0',
348 silly get vary: 'Accept-Encoding' } ]
349 verbose get saving babel-preset-es2015 to /Users/maciek/.npm/registry.npmjs.org/babel-preset-es2015/.cache.json
350 verbose correctMkdir /Users/maciek/.npm correctMkdir not in flight; initializing
351 silly resolveWithNewModule babel-preset-es2015@6.6.0 checking installable status
352 silly cache add args [ 'babel-preset-es2015@^6.0.0', null ]
353 verbose cache add spec babel-preset-es2015@^6.0.0
354 silly cache add parsed spec Result {
354 silly cache add raw: 'babel-preset-es2015@^6.0.0',
354 silly cache add scope: null,
354 silly cache add name: 'babel-preset-es2015',
354 silly cache add rawSpec: '^6.0.0',
354 silly cache add spec: '>=6.0.0 <7.0.0',
354 silly cache add type: 'range' }
355 silly addNamed babel-preset-es2015@>=6.0.0 <7.0.0
356 verbose addNamed ">=6.0.0 <7.0.0" is a valid semver range for babel-preset-es2015
357 silly addNameRange { name: 'babel-preset-es2015',
357 silly addNameRange range: '>=6.0.0 <7.0.0',
357 silly addNameRange hasData: false }
358 silly mapToRegistry name babel-preset-es2015
359 silly mapToRegistry using default registry
360 silly mapToRegistry registry https://registry.npmjs.org/
361 silly mapToRegistry uri https://registry.npmjs.org/babel-preset-es2015
362 verbose addNameRange registry:https://registry.npmjs.org/babel-preset-es2015 not in flight; fetching
363 verbose get https://registry.npmjs.org/babel-preset-es2015 not expired, no request
364 silly addNameRange number 2 { name: 'babel-preset-es2015',
364 silly addNameRange range: '>=6.0.0 <7.0.0',
364 silly addNameRange hasData: true }
365 silly addNameRange versions [ 'babel-preset-es2015',
365 silly addNameRange [ '6.0.2',
365 silly addNameRange '6.0.8',
365 silly addNameRange '6.0.11',
365 silly addNameRange '6.0.12',
365 silly addNameRange '6.0.14',
365 silly addNameRange '6.0.15',
365 silly addNameRange '6.1.2',
365 silly addNameRange '6.1.4',
365 silly addNameRange '6.1.17',
365 silly addNameRange '6.1.18',
365 silly addNameRange '6.2.4',
365 silly addNameRange '6.3.13',
365 silly addNameRange '6.5.0',
365 silly addNameRange '6.5.0-1',
365 silly addNameRange '6.6.0' ] ]
366 silly addNamed babel-preset-es2015@6.6.0
367 verbose addNamed "6.6.0" is a plain semver version for babel-preset-es2015
368 silly cache afterAdd babel-preset-es2015@6.6.0
369 verbose afterAdd /Users/maciek/.npm/babel-preset-es2015/6.6.0/package/package.json not in flight; writing
370 verbose correctMkdir /Users/maciek/.npm correctMkdir not in flight; initializing
371 verbose afterAdd /Users/maciek/.npm/babel-preset-es2015/6.6.0/package/package.json written
372 http 200 https://registry.npmjs.org/babel-core
373 verbose headers { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
373 verbose headers etag: '"A5XFULYVUS0DL63Y4C82VJXNI"',
373 verbose headers 'content-type': 'application/json',
373 verbose headers 'content-encoding': 'gzip',
373 verbose headers 'cache-control': 'max-age=300',
373 verbose headers 'content-length': '36014',
373 verbose headers 'accept-ranges': 'bytes',
373 verbose headers date: 'Mon, 16 May 2016 14:43:32 GMT',
373 verbose headers via: '1.1 varnish',
373 verbose headers age: '165',
373 verbose headers connection: 'keep-alive',
373 verbose headers 'x-served-by': 'cache-fra1245-FRA',
373 verbose headers 'x-cache': 'HIT',
373 verbose headers 'x-cache-hits': '8',
373 verbose headers 'x-timer': 'S1463409812.578628,VS0,VE0',
373 verbose headers vary: 'Accept-Encoding' }
374 silly get cb [ 200,
374 silly get { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
374 silly get etag: '"A5XFULYVUS0DL63Y4C82VJXNI"',
374 silly get 'content-type': 'application/json',
374 silly get 'content-encoding': 'gzip',
374 silly get 'cache-control': 'max-age=300',
374 silly get 'content-length': '36014',
374 silly get 'accept-ranges': 'bytes',
374 silly get date: 'Mon, 16 May 2016 14:43:32 GMT',
374 silly get via: '1.1 varnish',
374 silly get age: '165',
374 silly get connection: 'keep-alive',
374 silly get 'x-served-by': 'cache-fra1245-FRA',
374 silly get 'x-cache': 'HIT',
374 silly get 'x-cache-hits': '8',
374 silly get 'x-timer': 'S1463409812.578628,VS0,VE0',
374 silly get vary: 'Accept-Encoding' } ]
375 verbose get saving babel-core to /Users/maciek/.npm/registry.npmjs.org/babel-core/.cache.json
376 verbose correctMkdir /Users/maciek/.npm correctMkdir not in flight; initializing
377 silly resolveWithNewModule babel-core@6.8.0 checking installable status
378 silly cache add args [ 'babel-core@^6.0.0', null ]
379 verbose cache add spec babel-core@^6.0.0
380 silly cache add parsed spec Result {
380 silly cache add raw: 'babel-core@^6.0.0',
380 silly cache add scope: null,
380 silly cache add name: 'babel-core',
380 silly cache add rawSpec: '^6.0.0',
380 silly cache add spec: '>=6.0.0 <7.0.0',
380 silly cache add type: 'range' }
381 silly addNamed babel-core@>=6.0.0 <7.0.0
382 verbose addNamed ">=6.0.0 <7.0.0" is a valid semver range for babel-core
383 silly addNameRange { name: 'babel-core', range: '>=6.0.0 <7.0.0', hasData: false }
384 silly mapToRegistry name babel-core
385 silly mapToRegistry using default registry
386 silly mapToRegistry registry https://registry.npmjs.org/
387 silly mapToRegistry uri https://registry.npmjs.org/babel-core
388 verbose addNameRange registry:https://registry.npmjs.org/babel-core not in flight; fetching
389 verbose get https://registry.npmjs.org/babel-core not expired, no request
390 silly addNameRange number 2 { name: 'babel-core', range: '>=6.0.0 <7.0.0', hasData: true }
391 silly addNameRange versions [ 'babel-core',
391 silly addNameRange [ '4.0.1',
391 silly addNameRange '4.0.2',
391 silly addNameRange '4.1.1',
391 silly addNameRange '4.2.0',
391 silly addNameRange '4.2.1',
391 silly addNameRange '4.3.0',
391 silly addNameRange '4.4.1',
391 silly addNameRange '4.4.2',
391 silly addNameRange '4.4.3',
391 silly addNameRange '4.4.4',
391 silly addNameRange '4.4.5',
391 silly addNameRange '4.4.6',
391 silly addNameRange '4.5.0',
391 silly addNameRange '4.5.1',
391 silly addNameRange '4.5.2',
391 silly addNameRange '4.5.3',
391 silly addNameRange '4.5.4',
391 silly addNameRange '4.5.5',
391 silly addNameRange '4.6.0',
391 silly addNameRange '4.6.1',
391 silly addNameRange '4.6.3',
391 silly addNameRange '4.6.4',
391 silly addNameRange '4.6.5',
391 silly addNameRange '4.6.6',
391 silly addNameRange '4.7.0',
391 silly addNameRange '4.7.1',
391 silly addNameRange '4.7.2',
391 silly addNameRange '4.7.3',
391 silly addNameRange '4.7.4',
391 silly addNameRange '4.7.5',
391 silly addNameRange '4.7.6',
391 silly addNameRange '4.7.7',
391 silly addNameRange '4.7.8',
391 silly addNameRange '4.7.9',
391 silly addNameRange '4.7.10',
391 silly addNameRange '4.7.11',
391 silly addNameRange '4.7.12',
391 silly addNameRange '4.7.13',
391 silly addNameRange '4.7.14',
391 silly addNameRange '4.7.15',