-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnpm-debug.log
More file actions
6467 lines (6467 loc) · 349 KB
/
npm-debug.log
File metadata and controls
6467 lines (6467 loc) · 349 KB
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 [ 'node', '/usr/local/bin/npm', 'install', 'sinon' ]
2 info using npm@3.5.2
3 info using node@v0.10.45
4 verbose node symlink /usr/bin/node
5 verbose config Skipping project config: /home/ccuser/.npmrc. (matches userconfig)
6 silly loadCurrentTree Starting
7 silly install loadCurrentTree
8 silly install readLocalPackageData
9 silly fetchPackageMetaData sinon
10 silly fetchNamedPackageData sinon
11 silly mapToRegistry name sinon
12 silly mapToRegistry using default registry
13 silly mapToRegistry registry https://registry.npmjs.org/
14 silly mapToRegistry uri https://registry.npmjs.org/sinon
15 verbose request uri https://registry.npmjs.org/sinon
16 verbose request no auth needed
17 info attempt registry request try #1 at 14:57:06
18 verbose request id 57f5b7267c1fab7f
19 verbose etag "9RZ24ETND3VYZMP99WVKP49IC"
20 http request GET https://registry.npmjs.org/sinon
21 http 304 https://registry.npmjs.org/sinon
22 verbose headers { date: 'Mon, 15 Aug 2016 18:57:03 GMT',
22 verbose headers via: '1.1 varnish',
22 verbose headers 'cache-control': 'max-age=300',
22 verbose headers etag: '"9RZ24ETND3VYZMP99WVKP49IC"',
22 verbose headers age: '54',
22 verbose headers connection: 'keep-alive',
22 verbose headers 'x-served-by': 'cache-sea1926-SEA',
22 verbose headers 'x-cache': 'HIT',
22 verbose headers 'x-cache-hits': '3',
22 verbose headers 'x-timer': 'S1471287423.308118,VS0,VE0',
22 verbose headers vary: 'Accept-Encoding' }
23 silly get cb [ 304,
23 silly get { date: 'Mon, 15 Aug 2016 18:57:03 GMT',
23 silly get via: '1.1 varnish',
23 silly get 'cache-control': 'max-age=300',
23 silly get etag: '"9RZ24ETND3VYZMP99WVKP49IC"',
23 silly get age: '54',
23 silly get connection: 'keep-alive',
23 silly get 'x-served-by': 'cache-sea1926-SEA',
23 silly get 'x-cache': 'HIT',
23 silly get 'x-cache-hits': '3',
23 silly get 'x-timer': 'S1471287423.308118,VS0,VE0',
23 silly get vary: 'Accept-Encoding' } ]
24 verbose etag https://registry.npmjs.org/sinon from cache
25 verbose get saving sinon to /home/ccuser/.npm/registry.npmjs.org/sinon/.cache.json
26 silly install normalizeTree
27 silly loadCurrentTree Finishing
28 silly loadIdealTree Starting
29 silly install loadIdealTree
30 silly cloneCurrentTree Starting
31 silly install cloneCurrentTreeToIdealTree
32 silly cloneCurrentTree Finishing
33 silly loadShrinkwrap Starting
34 silly install loadShrinkwrap
35 silly loadShrinkwrap Finishing
36 silly loadAllDepsIntoIdealTree Starting
37 silly install loadAllDepsIntoIdealTree
38 silly resolveWithNewModule sinon@1.17.5 checking installable status
39 silly cache add args [ 'sinon', null ]
40 verbose cache add spec sinon
41 silly cache add parsed spec { raw: 'sinon',
41 silly cache add scope: null,
41 silly cache add name: 'sinon',
41 silly cache add rawSpec: '',
41 silly cache add spec: 'latest',
41 silly cache add type: 'tag' }
42 silly addNamed sinon@latest
43 verbose addNamed "latest" is being treated as a dist-tag for sinon
44 info addNameTag [ 'sinon', 'latest' ]
45 silly mapToRegistry name sinon
46 silly mapToRegistry using default registry
47 silly mapToRegistry registry https://registry.npmjs.org/
48 silly mapToRegistry uri https://registry.npmjs.org/sinon
49 verbose addNameTag registry:https://registry.npmjs.org/sinon not in flight; fetching
50 verbose get https://registry.npmjs.org/sinon not expired, no request
51 silly addNameTag next cb for sinon with tag latest
52 silly addNamed sinon@1.17.5
53 verbose addNamed "1.17.5" is a plain semver version for sinon
54 silly mapToRegistry name sinon
55 silly mapToRegistry using default registry
56 silly mapToRegistry registry https://registry.npmjs.org/
57 silly mapToRegistry uri https://registry.npmjs.org/sinon
58 verbose addRemoteTarball https://registry.npmjs.org/sinon/-/sinon-1.17.5.tgz not in flight; adding
59 verbose addRemoteTarball [ 'https://registry.npmjs.org/sinon/-/sinon-1.17.5.tgz',
59 verbose addRemoteTarball '1038cba830e37012e99a64837ecd3b67200c058c' ]
60 info retry fetch attempt 1 at 14:57:08
61 info attempt registry request try #1 at 14:57:08
62 http fetch GET https://registry.npmjs.org/sinon/-/sinon-1.17.5.tgz
63 http fetch 200 https://registry.npmjs.org/sinon/-/sinon-1.17.5.tgz
64 silly fetchAndShaCheck shasum 1038cba830e37012e99a64837ecd3b67200c058c
65 verbose addTmpTarball /tmp/npm-4706-0f50ab33/registry.npmjs.org/sinon/-/sinon-1.17.5.tgz not in flight; adding
66 verbose addTmpTarball already have metadata; skipping unpack for sinon@1.17.5
67 silly cache afterAdd sinon@1.17.5
68 verbose afterAdd /home/ccuser/.npm/sinon/1.17.5/package/package.json not in flight; writing
69 verbose afterAdd /home/ccuser/.npm/sinon/1.17.5/package/package.json written
70 silly fetchNamedPackageData formatio
71 silly mapToRegistry name formatio
72 silly mapToRegistry using default registry
73 silly mapToRegistry registry https://registry.npmjs.org/
74 silly mapToRegistry uri https://registry.npmjs.org/formatio
75 silly fetchNamedPackageData util
76 silly mapToRegistry name util
77 silly mapToRegistry using default registry
78 silly mapToRegistry registry https://registry.npmjs.org/
79 silly mapToRegistry uri https://registry.npmjs.org/util
80 silly fetchNamedPackageData lolex
81 silly mapToRegistry name lolex
82 silly mapToRegistry using default registry
83 silly mapToRegistry registry https://registry.npmjs.org/
84 silly mapToRegistry uri https://registry.npmjs.org/lolex
85 silly fetchNamedPackageData samsam
86 silly mapToRegistry name samsam
87 silly mapToRegistry using default registry
88 silly mapToRegistry registry https://registry.npmjs.org/
89 silly mapToRegistry uri https://registry.npmjs.org/samsam
90 verbose request uri https://registry.npmjs.org/formatio
91 verbose request no auth needed
92 info attempt registry request try #1 at 14:57:08
93 http request GET https://registry.npmjs.org/formatio
94 verbose request uri https://registry.npmjs.org/util
95 verbose request no auth needed
96 info attempt registry request try #1 at 14:57:08
97 http request GET https://registry.npmjs.org/util
98 verbose request uri https://registry.npmjs.org/lolex
99 verbose request no auth needed
100 info attempt registry request try #1 at 14:57:08
101 http request GET https://registry.npmjs.org/lolex
102 verbose request uri https://registry.npmjs.org/samsam
103 verbose request no auth needed
104 info attempt registry request try #1 at 14:57:08
105 http request GET https://registry.npmjs.org/samsam
106 http 200 https://registry.npmjs.org/formatio
107 verbose headers { server: 'CouchDB/1.6.1 (Erlang OTP/R16B03)',
107 verbose headers etag: '"9KOW51NTPMMINT9EWNC4WJ7YX"',
107 verbose headers 'content-type': 'application/json',
107 verbose headers 'content-encoding': 'gzip',
107 verbose headers 'cache-control': 'max-age=300',
107 verbose headers 'content-length': '5262',
107 verbose headers 'accept-ranges': 'bytes',
107 verbose headers date: 'Mon, 15 Aug 2016 18:57:05 GMT',
107 verbose headers via: '1.1 varnish',
107 verbose headers age: '124',
107 verbose headers connection: 'keep-alive',
107 verbose headers 'x-served-by': 'cache-sea1924-SEA',
107 verbose headers 'x-cache': 'HIT',
107 verbose headers 'x-cache-hits': '3',
107 verbose headers 'x-timer': 'S1471287425.046629,VS0,VE0',
107 verbose headers vary: 'Accept-Encoding' }
108 silly get cb [ 200,
108 silly get { server: 'CouchDB/1.6.1 (Erlang OTP/R16B03)',
108 silly get etag: '"9KOW51NTPMMINT9EWNC4WJ7YX"',
108 silly get 'content-type': 'application/json',
108 silly get 'content-encoding': 'gzip',
108 silly get 'cache-control': 'max-age=300',
108 silly get 'content-length': '5262',
108 silly get 'accept-ranges': 'bytes',
108 silly get date: 'Mon, 15 Aug 2016 18:57:05 GMT',
108 silly get via: '1.1 varnish',
108 silly get age: '124',
108 silly get connection: 'keep-alive',
108 silly get 'x-served-by': 'cache-sea1924-SEA',
108 silly get 'x-cache': 'HIT',
108 silly get 'x-cache-hits': '3',
108 silly get 'x-timer': 'S1471287425.046629,VS0,VE0',
108 silly get vary: 'Accept-Encoding' } ]
109 verbose get saving formatio to /home/ccuser/.npm/registry.npmjs.org/formatio/.cache.json
110 http 200 https://registry.npmjs.org/samsam
111 verbose headers { server: 'CouchDB/1.6.1 (Erlang OTP/R16B03)',
111 verbose headers etag: '"7RCOJ98W2YYWQX0VQF057TZQR"',
111 verbose headers 'content-type': 'application/json',
111 verbose headers 'content-encoding': 'gzip',
111 verbose headers 'cache-control': 'max-age=300',
111 verbose headers 'content-length': '5063',
111 verbose headers 'accept-ranges': 'bytes',
111 verbose headers date: 'Mon, 15 Aug 2016 18:57:05 GMT',
111 verbose headers via: '1.1 varnish',
111 verbose headers age: '2',
111 verbose headers connection: 'keep-alive',
111 verbose headers 'x-served-by': 'cache-sea1926-SEA',
111 verbose headers 'x-cache': 'HIT',
111 verbose headers 'x-cache-hits': '32',
111 verbose headers 'x-timer': 'S1471287425.051151,VS0,VE0',
111 verbose headers vary: 'Accept-Encoding' }
112 silly get cb [ 200,
112 silly get { server: 'CouchDB/1.6.1 (Erlang OTP/R16B03)',
112 silly get etag: '"7RCOJ98W2YYWQX0VQF057TZQR"',
112 silly get 'content-type': 'application/json',
112 silly get 'content-encoding': 'gzip',
112 silly get 'cache-control': 'max-age=300',
112 silly get 'content-length': '5063',
112 silly get 'accept-ranges': 'bytes',
112 silly get date: 'Mon, 15 Aug 2016 18:57:05 GMT',
112 silly get via: '1.1 varnish',
112 silly get age: '2',
112 silly get connection: 'keep-alive',
112 silly get 'x-served-by': 'cache-sea1926-SEA',
112 silly get 'x-cache': 'HIT',
112 silly get 'x-cache-hits': '32',
112 silly get 'x-timer': 'S1471287425.051151,VS0,VE0',
112 silly get vary: 'Accept-Encoding' } ]
113 verbose get saving samsam to /home/ccuser/.npm/registry.npmjs.org/samsam/.cache.json
114 http 200 https://registry.npmjs.org/util
115 verbose headers { server: 'CouchDB/1.6.1 (Erlang OTP/R16B03)',
115 verbose headers etag: '"9I4KH6E8QHATTU34RZ92R9QH6"',
115 verbose headers 'content-type': 'application/json',
115 verbose headers 'content-encoding': 'gzip',
115 verbose headers 'cache-control': 'max-age=300',
115 verbose headers 'content-length': '1717',
115 verbose headers 'accept-ranges': 'bytes',
115 verbose headers date: 'Mon, 15 Aug 2016 18:57:05 GMT',
115 verbose headers via: '1.1 varnish',
115 verbose headers age: '296',
115 verbose headers connection: 'keep-alive',
115 verbose headers 'x-served-by': 'cache-sea1922-SEA',
115 verbose headers 'x-cache': 'HIT',
115 verbose headers 'x-cache-hits': '41',
115 verbose headers 'x-timer': 'S1471287425.054145,VS0,VE0',
115 verbose headers vary: 'Accept-Encoding' }
116 silly get cb [ 200,
116 silly get { server: 'CouchDB/1.6.1 (Erlang OTP/R16B03)',
116 silly get etag: '"9I4KH6E8QHATTU34RZ92R9QH6"',
116 silly get 'content-type': 'application/json',
116 silly get 'content-encoding': 'gzip',
116 silly get 'cache-control': 'max-age=300',
116 silly get 'content-length': '1717',
116 silly get 'accept-ranges': 'bytes',
116 silly get date: 'Mon, 15 Aug 2016 18:57:05 GMT',
116 silly get via: '1.1 varnish',
116 silly get age: '296',
116 silly get connection: 'keep-alive',
116 silly get 'x-served-by': 'cache-sea1922-SEA',
116 silly get 'x-cache': 'HIT',
116 silly get 'x-cache-hits': '41',
116 silly get 'x-timer': 'S1471287425.054145,VS0,VE0',
116 silly get vary: 'Accept-Encoding' } ]
117 verbose get saving util to /home/ccuser/.npm/registry.npmjs.org/util/.cache.json
118 silly resolveWithNewModule formatio@1.1.1 checking installable status
119 silly cache add args [ 'formatio@1.1.1', null ]
120 verbose cache add spec formatio@1.1.1
121 silly cache add parsed spec { raw: 'formatio@1.1.1',
121 silly cache add scope: null,
121 silly cache add name: 'formatio',
121 silly cache add rawSpec: '1.1.1',
121 silly cache add spec: '1.1.1',
121 silly cache add type: 'version' }
122 silly addNamed formatio@1.1.1
123 verbose addNamed "1.1.1" is a plain semver version for formatio
124 silly mapToRegistry name formatio
125 silly mapToRegistry using default registry
126 silly mapToRegistry registry https://registry.npmjs.org/
127 silly mapToRegistry uri https://registry.npmjs.org/formatio
128 verbose addNameVersion registry:https://registry.npmjs.org/formatio not in flight; fetching
129 http 200 https://registry.npmjs.org/lolex
130 verbose headers { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
130 verbose headers etag: '"3AUH6IFQENJA0ISKJ9UNPTQ7I"',
130 verbose headers 'content-type': 'application/json',
130 verbose headers 'content-encoding': 'gzip',
130 verbose headers 'cache-control': 'max-age=300',
130 verbose headers 'content-length': '6388',
130 verbose headers 'accept-ranges': 'bytes',
130 verbose headers date: 'Mon, 15 Aug 2016 18:57:05 GMT',
130 verbose headers via: '1.1 varnish',
130 verbose headers age: '124',
130 verbose headers connection: 'keep-alive',
130 verbose headers 'x-served-by': 'cache-sea1920-SEA',
130 verbose headers 'x-cache': 'HIT',
130 verbose headers 'x-cache-hits': '3',
130 verbose headers 'x-timer': 'S1471287425.058323,VS0,VE0',
130 verbose headers vary: 'Accept-Encoding' }
131 silly get cb [ 200,
131 silly get { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
131 silly get etag: '"3AUH6IFQENJA0ISKJ9UNPTQ7I"',
131 silly get 'content-type': 'application/json',
131 silly get 'content-encoding': 'gzip',
131 silly get 'cache-control': 'max-age=300',
131 silly get 'content-length': '6388',
131 silly get 'accept-ranges': 'bytes',
131 silly get date: 'Mon, 15 Aug 2016 18:57:05 GMT',
131 silly get via: '1.1 varnish',
131 silly get age: '124',
131 silly get connection: 'keep-alive',
131 silly get 'x-served-by': 'cache-sea1920-SEA',
131 silly get 'x-cache': 'HIT',
131 silly get 'x-cache-hits': '3',
131 silly get 'x-timer': 'S1471287425.058323,VS0,VE0',
131 silly get vary: 'Accept-Encoding' } ]
132 verbose get saving lolex to /home/ccuser/.npm/registry.npmjs.org/lolex/.cache.json
133 silly resolveWithNewModule samsam@1.1.2 checking installable status
134 silly cache add args [ 'samsam@1.1.2', null ]
135 verbose cache add spec samsam@1.1.2
136 silly cache add parsed spec { raw: 'samsam@1.1.2',
136 silly cache add scope: null,
136 silly cache add name: 'samsam',
136 silly cache add rawSpec: '1.1.2',
136 silly cache add spec: '1.1.2',
136 silly cache add type: 'version' }
137 silly addNamed samsam@1.1.2
138 verbose addNamed "1.1.2" is a plain semver version for samsam
139 silly mapToRegistry name samsam
140 silly mapToRegistry using default registry
141 silly mapToRegistry registry https://registry.npmjs.org/
142 silly mapToRegistry uri https://registry.npmjs.org/samsam
143 verbose addNameVersion registry:https://registry.npmjs.org/samsam not in flight; fetching
144 verbose get https://registry.npmjs.org/formatio not expired, no request
145 silly mapToRegistry name formatio
146 silly mapToRegistry using default registry
147 silly mapToRegistry registry https://registry.npmjs.org/
148 silly mapToRegistry uri https://registry.npmjs.org/formatio
149 verbose addRemoteTarball https://registry.npmjs.org/formatio/-/formatio-1.1.1.tgz not in flight; adding
150 verbose addRemoteTarball [ 'https://registry.npmjs.org/formatio/-/formatio-1.1.1.tgz',
150 verbose addRemoteTarball '5ed3ccd636551097383465d996199100e86161e9' ]
151 silly resolveWithNewModule util@0.10.3 checking installable status
152 silly cache add args [ 'util@>=0.10.3 <1', null ]
153 verbose cache add spec util@>=0.10.3 <1
154 silly cache add parsed spec { raw: 'util@>=0.10.3 <1',
154 silly cache add scope: null,
154 silly cache add name: 'util',
154 silly cache add rawSpec: '>=0.10.3 <1',
154 silly cache add spec: '>=0.10.3 <1.0.0',
154 silly cache add type: 'range' }
155 silly addNamed util@>=0.10.3 <1.0.0
156 verbose addNamed ">=0.10.3 <1.0.0" is a valid semver range for util
157 silly addNameRange { name: 'util', range: '>=0.10.3 <1.0.0', hasData: false }
158 silly mapToRegistry name util
159 silly mapToRegistry using default registry
160 silly mapToRegistry registry https://registry.npmjs.org/
161 silly mapToRegistry uri https://registry.npmjs.org/util
162 verbose addNameRange registry:https://registry.npmjs.org/util not in flight; fetching
163 verbose get https://registry.npmjs.org/samsam not expired, no request
164 info retry fetch attempt 1 at 14:57:08
165 info attempt registry request try #1 at 14:57:08
166 http fetch GET https://registry.npmjs.org/formatio/-/formatio-1.1.1.tgz
167 silly mapToRegistry name samsam
168 silly mapToRegistry using default registry
169 silly mapToRegistry registry https://registry.npmjs.org/
170 silly mapToRegistry uri https://registry.npmjs.org/samsam
171 verbose addRemoteTarball https://registry.npmjs.org/samsam/-/samsam-1.1.2.tgz not in flight; adding
172 verbose addRemoteTarball [ 'https://registry.npmjs.org/samsam/-/samsam-1.1.2.tgz',
172 verbose addRemoteTarball 'bec11fdc83a9fda063401210e40176c3024d1567' ]
173 silly resolveWithNewModule lolex@1.3.2 checking installable status
174 silly cache add args [ 'lolex@1.3.2', null ]
175 verbose cache add spec lolex@1.3.2
176 silly cache add parsed spec { raw: 'lolex@1.3.2',
176 silly cache add scope: null,
176 silly cache add name: 'lolex',
176 silly cache add rawSpec: '1.3.2',
176 silly cache add spec: '1.3.2',
176 silly cache add type: 'version' }
177 silly addNamed lolex@1.3.2
178 verbose addNamed "1.3.2" is a plain semver version for lolex
179 silly mapToRegistry name lolex
180 silly mapToRegistry using default registry
181 silly mapToRegistry registry https://registry.npmjs.org/
182 silly mapToRegistry uri https://registry.npmjs.org/lolex
183 verbose addNameVersion registry:https://registry.npmjs.org/lolex not in flight; fetching
184 verbose get https://registry.npmjs.org/util not expired, no request
185 silly addNameRange number 2 { name: 'util', range: '>=0.10.3 <1.0.0', hasData: true }
186 silly addNameRange versions [ 'util', [ '0.4.9', '0.10.0', '0.10.1', '0.10.2', '0.10.3' ] ]
187 silly addNamed util@0.10.3
188 verbose addNamed "0.10.3" is a plain semver version for util
189 silly mapToRegistry name util
190 silly mapToRegistry using default registry
191 silly mapToRegistry registry https://registry.npmjs.org/
192 silly mapToRegistry uri https://registry.npmjs.org/util
193 verbose addRemoteTarball https://registry.npmjs.org/util/-/util-0.10.3.tgz not in flight; adding
194 verbose addRemoteTarball [ 'https://registry.npmjs.org/util/-/util-0.10.3.tgz',
194 verbose addRemoteTarball '7afb1afe50805246489e3db7fe0ed379336ac0f9' ]
195 info retry fetch attempt 1 at 14:57:08
196 info attempt registry request try #1 at 14:57:08
197 http fetch GET https://registry.npmjs.org/samsam/-/samsam-1.1.2.tgz
198 verbose get https://registry.npmjs.org/lolex not expired, no request
199 info retry fetch attempt 1 at 14:57:08
200 info attempt registry request try #1 at 14:57:08
201 http fetch GET https://registry.npmjs.org/util/-/util-0.10.3.tgz
202 silly mapToRegistry name lolex
203 silly mapToRegistry using default registry
204 silly mapToRegistry registry https://registry.npmjs.org/
205 silly mapToRegistry uri https://registry.npmjs.org/lolex
206 verbose addRemoteTarball https://registry.npmjs.org/lolex/-/lolex-1.3.2.tgz not in flight; adding
207 verbose addRemoteTarball [ 'https://registry.npmjs.org/lolex/-/lolex-1.3.2.tgz',
207 verbose addRemoteTarball '7c3da62ffcb30f0f5a80a2566ca24e45d8a01f31' ]
208 info retry fetch attempt 1 at 14:57:08
209 info attempt registry request try #1 at 14:57:08
210 http fetch GET https://registry.npmjs.org/lolex/-/lolex-1.3.2.tgz
211 http fetch 200 https://registry.npmjs.org/formatio/-/formatio-1.1.1.tgz
212 silly fetchAndShaCheck shasum 5ed3ccd636551097383465d996199100e86161e9
213 verbose addTmpTarball /tmp/npm-4706-0f50ab33/registry.npmjs.org/formatio/-/formatio-1.1.1.tgz not in flight; adding
214 verbose addTmpTarball already have metadata; skipping unpack for formatio@1.1.1
215 silly cache afterAdd formatio@1.1.1
216 verbose afterAdd /home/ccuser/.npm/formatio/1.1.1/package/package.json not in flight; writing
217 verbose afterAdd /home/ccuser/.npm/formatio/1.1.1/package/package.json written
218 http fetch 200 https://registry.npmjs.org/samsam/-/samsam-1.1.2.tgz
219 silly fetchAndShaCheck shasum bec11fdc83a9fda063401210e40176c3024d1567
220 verbose addTmpTarball /tmp/npm-4706-0f50ab33/registry.npmjs.org/samsam/-/samsam-1.1.2.tgz not in flight; adding
221 verbose addTmpTarball already have metadata; skipping unpack for samsam@1.1.2
222 http fetch 200 https://registry.npmjs.org/lolex/-/lolex-1.3.2.tgz
223 silly fetchAndShaCheck shasum 7c3da62ffcb30f0f5a80a2566ca24e45d8a01f31
224 verbose addTmpTarball /tmp/npm-4706-0f50ab33/registry.npmjs.org/lolex/-/lolex-1.3.2.tgz not in flight; adding
225 verbose addTmpTarball already have metadata; skipping unpack for lolex@1.3.2
226 http fetch 200 https://registry.npmjs.org/util/-/util-0.10.3.tgz
227 silly fetchAndShaCheck shasum 7afb1afe50805246489e3db7fe0ed379336ac0f9
228 verbose addTmpTarball /tmp/npm-4706-0f50ab33/registry.npmjs.org/util/-/util-0.10.3.tgz not in flight; adding
229 verbose addTmpTarball already have metadata; skipping unpack for util@0.10.3
230 silly cache afterAdd samsam@1.1.2
231 verbose afterAdd /home/ccuser/.npm/samsam/1.1.2/package/package.json not in flight; writing
232 verbose afterAdd /home/ccuser/.npm/samsam/1.1.2/package/package.json written
233 silly cache afterAdd lolex@1.3.2
234 verbose afterAdd /home/ccuser/.npm/lolex/1.3.2/package/package.json not in flight; writing
235 verbose afterAdd /home/ccuser/.npm/lolex/1.3.2/package/package.json written
236 silly cache afterAdd util@0.10.3
237 verbose afterAdd /home/ccuser/.npm/util/0.10.3/package/package.json not in flight; writing
238 verbose afterAdd /home/ccuser/.npm/util/0.10.3/package/package.json written
239 silly fetchNamedPackageData inherits
240 silly mapToRegistry name inherits
241 silly mapToRegistry using default registry
242 silly mapToRegistry registry https://registry.npmjs.org/
243 silly mapToRegistry uri https://registry.npmjs.org/inherits
244 verbose request uri https://registry.npmjs.org/inherits
245 verbose request no auth needed
246 info attempt registry request try #1 at 14:57:08
247 http request GET https://registry.npmjs.org/inherits
248 http 200 https://registry.npmjs.org/inherits
249 verbose headers { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
249 verbose headers etag: '"DW5AARMI0EU78WM0DVWHCUX08"',
249 verbose headers 'content-type': 'application/json',
249 verbose headers 'content-encoding': 'gzip',
249 verbose headers 'cache-control': 'max-age=300',
249 verbose headers 'content-length': '2377',
249 verbose headers 'accept-ranges': 'bytes',
249 verbose headers date: 'Mon, 15 Aug 2016 18:57:05 GMT',
249 verbose headers via: '1.1 varnish',
249 verbose headers age: '131',
249 verbose headers connection: 'keep-alive',
249 verbose headers 'x-served-by': 'cache-sea1923-SEA',
249 verbose headers 'x-cache': 'HIT',
249 verbose headers 'x-cache-hits': '66',
249 verbose headers 'x-timer': 'S1471287425.229807,VS0,VE0',
249 verbose headers vary: 'Accept-Encoding' }
250 silly get cb [ 200,
250 silly get { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
250 silly get etag: '"DW5AARMI0EU78WM0DVWHCUX08"',
250 silly get 'content-type': 'application/json',
250 silly get 'content-encoding': 'gzip',
250 silly get 'cache-control': 'max-age=300',
250 silly get 'content-length': '2377',
250 silly get 'accept-ranges': 'bytes',
250 silly get date: 'Mon, 15 Aug 2016 18:57:05 GMT',
250 silly get via: '1.1 varnish',
250 silly get age: '131',
250 silly get connection: 'keep-alive',
250 silly get 'x-served-by': 'cache-sea1923-SEA',
250 silly get 'x-cache': 'HIT',
250 silly get 'x-cache-hits': '66',
250 silly get 'x-timer': 'S1471287425.229807,VS0,VE0',
250 silly get vary: 'Accept-Encoding' } ]
251 verbose get saving inherits to /home/ccuser/.npm/registry.npmjs.org/inherits/.cache.json
252 silly resolveWithNewModule inherits@2.0.1 checking installable status
253 silly cache add args [ 'inherits@2.0.1', null ]
254 verbose cache add spec inherits@2.0.1
255 silly cache add parsed spec { raw: 'inherits@2.0.1',
255 silly cache add scope: null,
255 silly cache add name: 'inherits',
255 silly cache add rawSpec: '2.0.1',
255 silly cache add spec: '2.0.1',
255 silly cache add type: 'version' }
256 silly addNamed inherits@2.0.1
257 verbose addNamed "2.0.1" is a plain semver version for inherits
258 silly mapToRegistry name inherits
259 silly mapToRegistry using default registry
260 silly mapToRegistry registry https://registry.npmjs.org/
261 silly mapToRegistry uri https://registry.npmjs.org/inherits
262 verbose addNameVersion registry:https://registry.npmjs.org/inherits not in flight; fetching
263 verbose get https://registry.npmjs.org/inherits not expired, no request
264 silly mapToRegistry name inherits
265 silly mapToRegistry using default registry
266 silly mapToRegistry registry https://registry.npmjs.org/
267 silly mapToRegistry uri https://registry.npmjs.org/inherits
268 verbose addRemoteTarball https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz not in flight; adding
269 verbose addRemoteTarball [ 'https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz',
269 verbose addRemoteTarball 'b17d08d326b4423e568eff719f91b0b1cbdf69f1' ]
270 info retry fetch attempt 1 at 14:57:08
271 info attempt registry request try #1 at 14:57:08
272 http fetch GET https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz
273 http fetch 200 https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz
274 silly fetchAndShaCheck shasum b17d08d326b4423e568eff719f91b0b1cbdf69f1
275 verbose addTmpTarball /tmp/npm-4706-0f50ab33/registry.npmjs.org/inherits/-/inherits-2.0.1.tgz not in flight; adding
276 verbose addTmpTarball already have metadata; skipping unpack for inherits@2.0.1
277 silly cache afterAdd inherits@2.0.1
278 verbose afterAdd /home/ccuser/.npm/inherits/2.0.1/package/package.json not in flight; writing
279 verbose afterAdd /home/ccuser/.npm/inherits/2.0.1/package/package.json written
280 silly fetchNamedPackageData fsevents
281 silly mapToRegistry name fsevents
282 silly mapToRegistry using default registry
283 silly mapToRegistry registry https://registry.npmjs.org/
284 silly mapToRegistry uri https://registry.npmjs.org/fsevents
285 verbose request uri https://registry.npmjs.org/fsevents
286 verbose request no auth needed
287 info attempt registry request try #1 at 14:57:09
288 http request GET https://registry.npmjs.org/fsevents
289 http 200 https://registry.npmjs.org/fsevents
290 verbose headers { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
290 verbose headers etag: '"1IUUBBNAFSLRNOMEHDGNJ1LTJ"',
290 verbose headers 'content-type': 'application/json',
290 verbose headers 'content-encoding': 'gzip',
290 verbose headers 'cache-control': 'max-age=300',
290 verbose headers 'content-length': '7041',
290 verbose headers 'accept-ranges': 'bytes',
290 verbose headers date: 'Mon, 15 Aug 2016 18:57:05 GMT',
290 verbose headers via: '1.1 varnish',
290 verbose headers age: '240',
290 verbose headers connection: 'keep-alive',
290 verbose headers 'x-served-by': 'cache-sea1922-SEA',
290 verbose headers 'x-cache': 'HIT',
290 verbose headers 'x-cache-hits': '24',
290 verbose headers 'x-timer': 'S1471287425.576135,VS0,VE0',
290 verbose headers vary: 'Accept-Encoding' }
291 silly get cb [ 200,
291 silly get { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
291 silly get etag: '"1IUUBBNAFSLRNOMEHDGNJ1LTJ"',
291 silly get 'content-type': 'application/json',
291 silly get 'content-encoding': 'gzip',
291 silly get 'cache-control': 'max-age=300',
291 silly get 'content-length': '7041',
291 silly get 'accept-ranges': 'bytes',
291 silly get date: 'Mon, 15 Aug 2016 18:57:05 GMT',
291 silly get via: '1.1 varnish',
291 silly get age: '240',
291 silly get connection: 'keep-alive',
291 silly get 'x-served-by': 'cache-sea1922-SEA',
291 silly get 'x-cache': 'HIT',
291 silly get 'x-cache-hits': '24',
291 silly get 'x-timer': 'S1471287425.576135,VS0,VE0',
291 silly get vary: 'Accept-Encoding' } ]
292 verbose get saving fsevents to /home/ccuser/.npm/registry.npmjs.org/fsevents/.cache.json
293 silly resolveWithNewModule fsevents@1.0.14 checking installable status
294 silly fetchNamedPackageData babel-types
295 silly mapToRegistry name babel-types
296 silly mapToRegistry using default registry
297 silly mapToRegistry registry https://registry.npmjs.org/
298 silly mapToRegistry uri https://registry.npmjs.org/babel-types
299 verbose request uri https://registry.npmjs.org/babel-types
300 verbose request no auth needed
301 info attempt registry request try #1 at 14:57:10
302 http request GET https://registry.npmjs.org/babel-types
303 http 200 https://registry.npmjs.org/babel-types
304 verbose headers { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
304 verbose headers etag: '"7X1KT9QY55TMXII503X7502HI"',
304 verbose headers 'content-type': 'application/json',
304 verbose headers 'content-encoding': 'gzip',
304 verbose headers 'cache-control': 'max-age=300',
304 verbose headers 'content-length': '5700',
304 verbose headers 'accept-ranges': 'bytes',
304 verbose headers date: 'Mon, 15 Aug 2016 18:57:06 GMT',
304 verbose headers via: '1.1 varnish',
304 verbose headers age: '127',
304 verbose headers connection: 'keep-alive',
304 verbose headers 'x-served-by': 'cache-sea1922-SEA',
304 verbose headers 'x-cache': 'HIT',
304 verbose headers 'x-cache-hits': '28',
304 verbose headers 'x-timer': 'S1471287426.612678,VS0,VE0',
304 verbose headers vary: 'Accept-Encoding' }
305 silly get cb [ 200,
305 silly get { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
305 silly get etag: '"7X1KT9QY55TMXII503X7502HI"',
305 silly get 'content-type': 'application/json',
305 silly get 'content-encoding': 'gzip',
305 silly get 'cache-control': 'max-age=300',
305 silly get 'content-length': '5700',
305 silly get 'accept-ranges': 'bytes',
305 silly get date: 'Mon, 15 Aug 2016 18:57:06 GMT',
305 silly get via: '1.1 varnish',
305 silly get age: '127',
305 silly get connection: 'keep-alive',
305 silly get 'x-served-by': 'cache-sea1922-SEA',
305 silly get 'x-cache': 'HIT',
305 silly get 'x-cache-hits': '28',
305 silly get 'x-timer': 'S1471287426.612678,VS0,VE0',
305 silly get vary: 'Accept-Encoding' } ]
306 verbose get saving babel-types to /home/ccuser/.npm/registry.npmjs.org/babel-types/.cache.json
307 silly resolveWithNewModule babel-types@6.13.0 checking installable status
308 silly cache add args [ 'babel-types@^6.9.0', null ]
309 verbose cache add spec babel-types@^6.9.0
310 silly cache add parsed spec { raw: 'babel-types@^6.9.0',
310 silly cache add scope: null,
310 silly cache add name: 'babel-types',
310 silly cache add rawSpec: '^6.9.0',
310 silly cache add spec: '>=6.9.0 <7.0.0',
310 silly cache add type: 'range' }
311 silly addNamed babel-types@>=6.9.0 <7.0.0
312 verbose addNamed ">=6.9.0 <7.0.0" is a valid semver range for babel-types
313 silly addNameRange { name: 'babel-types', range: '>=6.9.0 <7.0.0', hasData: false }
314 silly mapToRegistry name babel-types
315 silly mapToRegistry using default registry
316 silly mapToRegistry registry https://registry.npmjs.org/
317 silly mapToRegistry uri https://registry.npmjs.org/babel-types
318 verbose addNameRange registry:https://registry.npmjs.org/babel-types not in flight; fetching
319 verbose get https://registry.npmjs.org/babel-types not expired, no request
320 silly addNameRange number 2 { name: 'babel-types', range: '>=6.9.0 <7.0.0', hasData: true }
321 silly addNameRange versions [ 'babel-types',
321 silly addNameRange [ '6.0.2',
321 silly addNameRange '6.0.12',
321 silly addNameRange '6.0.13',
321 silly addNameRange '6.0.14',
321 silly addNameRange '6.0.15',
321 silly addNameRange '6.0.17',
321 silly addNameRange '6.0.18',
321 silly addNameRange '6.0.19',
321 silly addNameRange '6.1.2',
321 silly addNameRange '6.1.4',
321 silly addNameRange '6.1.17',
321 silly addNameRange '6.1.18',
321 silly addNameRange '6.2.0',
321 silly addNameRange '6.2.3',
321 silly addNameRange '6.2.4',
321 silly addNameRange '6.3.0',
321 silly addNameRange '6.3.13',
321 silly addNameRange '6.3.14',
321 silly addNameRange '6.3.17',
321 silly addNameRange '6.3.18',
321 silly addNameRange '6.3.20',
321 silly addNameRange '6.3.21',
321 silly addNameRange '6.3.24',
321 silly addNameRange '6.4.0',
321 silly addNameRange '6.4.1',
321 silly addNameRange '6.4.3',
321 silly addNameRange '6.4.5',
321 silly addNameRange '6.5.0',
321 silly addNameRange '6.5.0-1',
321 silly addNameRange '6.5.1',
321 silly addNameRange '6.5.2',
321 silly addNameRange '6.6.0',
321 silly addNameRange '6.6.4',
321 silly addNameRange '6.6.5',
321 silly addNameRange '6.7.0',
321 silly addNameRange '6.7.2',
321 silly addNameRange '6.7.7',
321 silly addNameRange '6.8.0',
321 silly addNameRange '6.8.1',
321 silly addNameRange '6.9.0',
321 silly addNameRange '6.9.1',
321 silly addNameRange '6.10.0',
321 silly addNameRange '6.10.2',
321 silly addNameRange '6.11.1',
321 silly addNameRange '6.13.0' ] ]
322 silly addNamed babel-types@6.13.0
323 verbose addNamed "6.13.0" is a plain semver version for babel-types
324 silly mapToRegistry name babel-types
325 silly mapToRegistry using default registry
326 silly mapToRegistry registry https://registry.npmjs.org/
327 silly mapToRegistry uri https://registry.npmjs.org/babel-types
328 verbose addRemoteTarball https://registry.npmjs.org/babel-types/-/babel-types-6.13.0.tgz not in flight; adding
329 verbose addRemoteTarball [ 'https://registry.npmjs.org/babel-types/-/babel-types-6.13.0.tgz',
329 verbose addRemoteTarball 'f0809fd635e33304691b437379bffad39d58792b' ]
330 info retry fetch attempt 1 at 14:57:10
331 info attempt registry request try #1 at 14:57:10
332 http fetch GET https://registry.npmjs.org/babel-types/-/babel-types-6.13.0.tgz
333 http fetch 200 https://registry.npmjs.org/babel-types/-/babel-types-6.13.0.tgz
334 silly fetchAndShaCheck shasum f0809fd635e33304691b437379bffad39d58792b
335 verbose addTmpTarball /tmp/npm-4706-0f50ab33/registry.npmjs.org/babel-types/-/babel-types-6.13.0.tgz not in flight; adding
336 verbose addTmpTarball already have metadata; skipping unpack for babel-types@6.13.0
337 silly cache afterAdd babel-types@6.13.0
338 verbose afterAdd /home/ccuser/.npm/babel-types/6.13.0/package/package.json not in flight; writing
339 verbose afterAdd /home/ccuser/.npm/babel-types/6.13.0/package/package.json written
340 silly fetchNamedPackageData babel-runtime
341 silly mapToRegistry name babel-runtime
342 silly mapToRegistry using default registry
343 silly mapToRegistry registry https://registry.npmjs.org/
344 silly mapToRegistry uri https://registry.npmjs.org/babel-runtime
345 silly fetchNamedPackageData babel-traverse
346 silly mapToRegistry name babel-traverse
347 silly mapToRegistry using default registry
348 silly mapToRegistry registry https://registry.npmjs.org/
349 silly mapToRegistry uri https://registry.npmjs.org/babel-traverse
350 silly fetchNamedPackageData lodash
351 silly mapToRegistry name lodash
352 silly mapToRegistry using default registry
353 silly mapToRegistry registry https://registry.npmjs.org/
354 silly mapToRegistry uri https://registry.npmjs.org/lodash
355 verbose request uri https://registry.npmjs.org/babel-runtime
356 verbose request no auth needed
357 info attempt registry request try #1 at 14:57:10
358 http request GET https://registry.npmjs.org/babel-runtime
359 verbose request uri https://registry.npmjs.org/babel-traverse
360 verbose request no auth needed
361 info attempt registry request try #1 at 14:57:10
362 http request GET https://registry.npmjs.org/babel-traverse
363 verbose request uri https://registry.npmjs.org/lodash
364 verbose request no auth needed
365 info attempt registry request try #1 at 14:57:10
366 http request GET https://registry.npmjs.org/lodash
367 http 200 https://registry.npmjs.org/babel-traverse
368 verbose headers { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
368 verbose headers etag: '"49LIFKQ7PW20Z9Y80OFD1DWT8"',
368 verbose headers 'content-type': 'application/json',
368 verbose headers 'content-encoding': 'gzip',
368 verbose headers 'cache-control': 'max-age=300',
368 verbose headers 'content-length': '6032',
368 verbose headers 'accept-ranges': 'bytes',
368 verbose headers date: 'Mon, 15 Aug 2016 18:57:06 GMT',
368 verbose headers via: '1.1 varnish',
368 verbose headers age: '270',
368 verbose headers connection: 'keep-alive',
368 verbose headers 'x-served-by': 'cache-sea1922-SEA',
368 verbose headers 'x-cache': 'HIT',
368 verbose headers 'x-cache-hits': '12',
368 verbose headers 'x-timer': 'S1471287426.797797,VS0,VE0',
368 verbose headers vary: 'Accept-Encoding' }
369 silly get cb [ 200,
369 silly get { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
369 silly get etag: '"49LIFKQ7PW20Z9Y80OFD1DWT8"',
369 silly get 'content-type': 'application/json',
369 silly get 'content-encoding': 'gzip',
369 silly get 'cache-control': 'max-age=300',
369 silly get 'content-length': '6032',
369 silly get 'accept-ranges': 'bytes',
369 silly get date: 'Mon, 15 Aug 2016 18:57:06 GMT',
369 silly get via: '1.1 varnish',
369 silly get age: '270',
369 silly get connection: 'keep-alive',
369 silly get 'x-served-by': 'cache-sea1922-SEA',
369 silly get 'x-cache': 'HIT',
369 silly get 'x-cache-hits': '12',
369 silly get 'x-timer': 'S1471287426.797797,VS0,VE0',
369 silly get vary: 'Accept-Encoding' } ]
370 verbose get saving babel-traverse to /home/ccuser/.npm/registry.npmjs.org/babel-traverse/.cache.json
371 http 200 https://registry.npmjs.org/babel-runtime
372 verbose headers { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
372 verbose headers etag: '"D0MBZX5N7IATIHBAE8PFHE958"',
372 verbose headers 'content-type': 'application/json',
372 verbose headers 'content-encoding': 'gzip',
372 verbose headers 'cache-control': 'max-age=300',
372 verbose headers 'content-length': '14592',
372 verbose headers 'accept-ranges': 'bytes',
372 verbose headers date: 'Mon, 15 Aug 2016 18:57:06 GMT',
372 verbose headers via: '1.1 varnish',
372 verbose headers age: '298',
372 verbose headers connection: 'keep-alive',
372 verbose headers 'x-served-by': 'cache-sea1926-SEA',
372 verbose headers 'x-cache': 'HIT',
372 verbose headers 'x-cache-hits': '16',
372 verbose headers 'x-timer': 'S1471287426.792359,VS0,VE0',
372 verbose headers vary: 'Accept-Encoding' }
373 silly get cb [ 200,
373 silly get { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
373 silly get etag: '"D0MBZX5N7IATIHBAE8PFHE958"',
373 silly get 'content-type': 'application/json',
373 silly get 'content-encoding': 'gzip',
373 silly get 'cache-control': 'max-age=300',
373 silly get 'content-length': '14592',
373 silly get 'accept-ranges': 'bytes',
373 silly get date: 'Mon, 15 Aug 2016 18:57:06 GMT',
373 silly get via: '1.1 varnish',
373 silly get age: '298',
373 silly get connection: 'keep-alive',
373 silly get 'x-served-by': 'cache-sea1926-SEA',
373 silly get 'x-cache': 'HIT',
373 silly get 'x-cache-hits': '16',
373 silly get 'x-timer': 'S1471287426.792359,VS0,VE0',
373 silly get vary: 'Accept-Encoding' } ]
374 verbose get saving babel-runtime to /home/ccuser/.npm/registry.npmjs.org/babel-runtime/.cache.json
375 silly resolveWithNewModule babel-traverse@6.13.0 checking installable status
376 silly cache add args [ 'babel-traverse@^6.13.0', null ]
377 verbose cache add spec babel-traverse@^6.13.0
378 silly cache add parsed spec { raw: 'babel-traverse@^6.13.0',
378 silly cache add scope: null,
378 silly cache add name: 'babel-traverse',
378 silly cache add rawSpec: '^6.13.0',
378 silly cache add spec: '>=6.13.0 <7.0.0',
378 silly cache add type: 'range' }
379 silly addNamed babel-traverse@>=6.13.0 <7.0.0
380 verbose addNamed ">=6.13.0 <7.0.0" is a valid semver range for babel-traverse
381 silly addNameRange { name: 'babel-traverse',
381 silly addNameRange range: '>=6.13.0 <7.0.0',
381 silly addNameRange hasData: false }
382 silly mapToRegistry name babel-traverse
383 silly mapToRegistry using default registry
384 silly mapToRegistry registry https://registry.npmjs.org/
385 silly mapToRegistry uri https://registry.npmjs.org/babel-traverse
386 verbose addNameRange registry:https://registry.npmjs.org/babel-traverse not in flight; fetching
387 verbose get https://registry.npmjs.org/babel-traverse not expired, no request
388 silly addNameRange number 2 { name: 'babel-traverse',
388 silly addNameRange range: '>=6.13.0 <7.0.0',
388 silly addNameRange hasData: true }
389 silly addNameRange versions [ 'babel-traverse',
389 silly addNameRange [ '6.0.2',
389 silly addNameRange '6.0.14',
389 silly addNameRange '6.0.16',
389 silly addNameRange '6.0.17',
389 silly addNameRange '6.0.18',
389 silly addNameRange '6.0.19',
389 silly addNameRange '6.0.20',
389 silly addNameRange '6.1.2',
389 silly addNameRange '6.1.4',
389 silly addNameRange '6.1.17',
389 silly addNameRange '6.1.18',
389 silly addNameRange '6.1.20',
389 silly addNameRange '6.2.0',
389 silly addNameRange '6.2.4',
389 silly addNameRange '6.3.2',
389 silly addNameRange '6.3.13',
389 silly addNameRange '6.3.14',
389 silly addNameRange '6.3.15',
389 silly addNameRange '6.3.16',
389 silly addNameRange '6.3.17',
389 silly addNameRange '6.3.19',
389 silly addNameRange '6.3.21',
389 silly addNameRange '6.3.24',
389 silly addNameRange '6.3.25',
389 silly addNameRange '6.3.26',
389 silly addNameRange '6.4.5',
389 silly addNameRange '6.5.0',
389 silly addNameRange '6.5.0-1',
389 silly addNameRange '6.6.0',
389 silly addNameRange '6.6.2',
389 silly addNameRange '6.6.3',
389 silly addNameRange '6.6.4',
389 silly addNameRange '6.6.5',
389 silly addNameRange '6.7.0',
389 silly addNameRange '6.7.2',
389 silly addNameRange '6.7.3',
389 silly addNameRange '6.7.4',
389 silly addNameRange '6.7.5',
389 silly addNameRange '6.7.6',
389 silly addNameRange '6.8.0',
389 silly addNameRange '6.9.0',
389 silly addNameRange '6.10.4',
389 silly addNameRange '6.11.4',
389 silly addNameRange '6.12.0',
389 silly addNameRange '6.13.0' ] ]
390 silly addNamed babel-traverse@6.13.0
391 verbose addNamed "6.13.0" is a plain semver version for babel-traverse
392 silly mapToRegistry name babel-traverse
393 silly mapToRegistry using default registry
394 silly mapToRegistry registry https://registry.npmjs.org/
395 silly mapToRegistry uri https://registry.npmjs.org/babel-traverse
396 verbose addRemoteTarball https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.13.0.tgz not in flight; adding
397 verbose addRemoteTarball [ 'https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.13.0.tgz',
397 verbose addRemoteTarball '8835b4abae31814e8f7adebb8296b8c7ad0cecc1' ]
398 silly resolveWithNewModule babel-runtime@6.11.6 checking installable status
399 silly cache add args [ 'babel-runtime@^6.9.1', null ]
400 verbose cache add spec babel-runtime@^6.9.1
401 silly cache add parsed spec { raw: 'babel-runtime@^6.9.1',
401 silly cache add scope: null,
401 silly cache add name: 'babel-runtime',
401 silly cache add rawSpec: '^6.9.1',
401 silly cache add spec: '>=6.9.1 <7.0.0',
401 silly cache add type: 'range' }
402 silly addNamed babel-runtime@>=6.9.1 <7.0.0
403 verbose addNamed ">=6.9.1 <7.0.0" is a valid semver range for babel-runtime
404 silly addNameRange { name: 'babel-runtime',
404 silly addNameRange range: '>=6.9.1 <7.0.0',
404 silly addNameRange hasData: false }
405 silly mapToRegistry name babel-runtime
406 silly mapToRegistry using default registry
407 silly mapToRegistry registry https://registry.npmjs.org/
408 silly mapToRegistry uri https://registry.npmjs.org/babel-runtime
409 verbose addNameRange registry:https://registry.npmjs.org/babel-runtime not in flight; fetching
410 info retry fetch attempt 1 at 14:57:10
411 info attempt registry request try #1 at 14:57:10
412 http fetch GET https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.13.0.tgz
413 http 200 https://registry.npmjs.org/lodash
414 verbose headers { server: 'CouchDB/1.6.1 (Erlang OTP/R16B03)',
414 verbose headers etag: '"979P5XUR49TSTCBHF4PDVISUC"',
414 verbose headers 'content-type': 'application/json',
414 verbose headers 'content-encoding': 'gzip',
414 verbose headers 'cache-control': 'max-age=300',
414 verbose headers 'content-length': '18429',
414 verbose headers 'accept-ranges': 'bytes',
414 verbose headers date: 'Mon, 15 Aug 2016 18:57:06 GMT',
414 verbose headers via: '1.1 varnish',
414 verbose headers age: '108',
414 verbose headers connection: 'keep-alive',
414 verbose headers 'x-served-by': 'cache-sea1927-SEA',
414 verbose headers 'x-cache': 'HIT',
414 verbose headers 'x-cache-hits': '28',
414 verbose headers 'x-timer': 'S1471287426.798651,VS0,VE0',
414 verbose headers vary: 'Accept-Encoding' }
415 silly get cb [ 200,
415 silly get { server: 'CouchDB/1.6.1 (Erlang OTP/R16B03)',
415 silly get etag: '"979P5XUR49TSTCBHF4PDVISUC"',
415 silly get 'content-type': 'application/json',
415 silly get 'content-encoding': 'gzip',
415 silly get 'cache-control': 'max-age=300',
415 silly get 'content-length': '18429',
415 silly get 'accept-ranges': 'bytes',
415 silly get date: 'Mon, 15 Aug 2016 18:57:06 GMT',
415 silly get via: '1.1 varnish',
415 silly get age: '108',
415 silly get connection: 'keep-alive',
415 silly get 'x-served-by': 'cache-sea1927-SEA',
415 silly get 'x-cache': 'HIT',
415 silly get 'x-cache-hits': '28',
415 silly get 'x-timer': 'S1471287426.798651,VS0,VE0',
415 silly get vary: 'Accept-Encoding' } ]
416 verbose get saving lodash to /home/ccuser/.npm/registry.npmjs.org/lodash/.cache.json
417 verbose get https://registry.npmjs.org/babel-runtime not expired, no request
418 silly addNameRange number 2 { name: 'babel-runtime', range: '>=6.9.1 <7.0.0', hasData: true }
419 silly addNameRange versions [ 'babel-runtime',
419 silly addNameRange [ '4.0.1',
419 silly addNameRange '4.0.2',
419 silly addNameRange '4.1.1',
419 silly addNameRange '4.2.0',
419 silly addNameRange '4.2.1',
419 silly addNameRange '4.3.0',
419 silly addNameRange '4.4.1',
419 silly addNameRange '4.4.2',
419 silly addNameRange '4.4.3',
419 silly addNameRange '4.4.4',
419 silly addNameRange '4.4.5',
419 silly addNameRange '4.4.6',
419 silly addNameRange '4.5.0',
419 silly addNameRange '4.5.1',
419 silly addNameRange '4.5.2',
419 silly addNameRange '4.5.3',
419 silly addNameRange '4.5.4',
419 silly addNameRange '4.5.5',
419 silly addNameRange '4.6.0',
419 silly addNameRange '4.6.1',
419 silly addNameRange '4.6.3',
419 silly addNameRange '4.6.4',
419 silly addNameRange '4.6.5',
419 silly addNameRange '4.6.6',
419 silly addNameRange '4.7.0',
419 silly addNameRange '4.7.1',
419 silly addNameRange '4.7.2',
419 silly addNameRange '4.7.3',
419 silly addNameRange '4.7.4',
419 silly addNameRange '4.7.5',
419 silly addNameRange '4.7.6',
419 silly addNameRange '4.7.7',
419 silly addNameRange '4.7.8',
419 silly addNameRange '4.7.9',
419 silly addNameRange '4.7.10',
419 silly addNameRange '4.7.11',
419 silly addNameRange '4.7.12',
419 silly addNameRange '4.7.13',
419 silly addNameRange '4.7.14',
419 silly addNameRange '4.7.15',
419 silly addNameRange '4.7.16',
419 silly addNameRange '5.0.0-beta1',
419 silly addNameRange '5.0.0-beta2',
419 silly addNameRange '5.0.0-beta3',
419 silly addNameRange '5.0.0-beta4',
419 silly addNameRange '5.0.0',
419 silly addNameRange '5.0.1',
419 silly addNameRange '5.0.2',
419 silly addNameRange '5.0.3',
419 silly addNameRange '5.0.4',
419 silly addNameRange '5.0.5',
419 silly addNameRange '5.0.6',
419 silly addNameRange '5.0.7',
419 silly addNameRange '5.0.8',
419 silly addNameRange '5.0.9',
419 silly addNameRange '5.0.10',
419 silly addNameRange '5.0.11',
419 silly addNameRange '5.0.12',
419 silly addNameRange '5.0.13',
419 silly addNameRange '5.1.0',
419 silly addNameRange '5.1.1',
419 silly addNameRange '5.1.2',
419 silly addNameRange '5.1.3',
419 silly addNameRange '5.1.4',
419 silly addNameRange '5.1.5',
419 silly addNameRange '5.1.6',
419 silly addNameRange '5.1.7',
419 silly addNameRange '5.1.8',
419 silly addNameRange '5.1.9',
419 silly addNameRange '5.1.10',
419 silly addNameRange '5.1.11',
419 silly addNameRange '5.1.12',
419 silly addNameRange '5.1.13',
419 silly addNameRange '5.2.0',
419 silly addNameRange '5.2.1',
419 silly addNameRange '5.2.2',
419 silly addNameRange '5.2.3',
419 silly addNameRange '5.2.4',
419 silly addNameRange '5.2.5',
419 silly addNameRange '5.2.6',
419 silly addNameRange '5.2.7',
419 silly addNameRange '5.2.9',
419 silly addNameRange '5.2.10',
419 silly addNameRange '5.2.11',
419 silly addNameRange '5.2.12',
419 silly addNameRange '5.2.13',
419 silly addNameRange '5.2.14',
419 silly addNameRange '5.2.15',
419 silly addNameRange '5.2.16',
419 silly addNameRange '5.2.17',
419 silly addNameRange '5.3.0',
419 silly addNameRange '5.3.1',
419 silly addNameRange '5.3.2',
419 silly addNameRange '5.3.3',
419 silly addNameRange '5.4.0',
419 silly addNameRange '5.4.1',
419 silly addNameRange '5.4.2',
419 silly addNameRange '5.4.3',
419 silly addNameRange '5.4.4',
419 silly addNameRange '5.4.5',