-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnpm-debug.log
12579 lines (12579 loc) · 655 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/bin/node',
1 verbose cli '/usr/local/bin/npm',
1 verbose cli 'install',
1 verbose cli 'svgexport',
1 verbose cli '-g' ]
2 info using [email protected]
3 info using [email protected]
4 silly loadCurrentTree Starting
5 silly install loadCurrentTree
6 silly install readGlobalPackageData
7 silly fetchPackageMetaData svgexport
8 silly fetchNamedPackageData svgexport
9 silly mapToRegistry name svgexport
10 silly mapToRegistry using default registry
11 silly mapToRegistry registry https://registry.npmjs.org/
12 silly mapToRegistry data Result {
12 silly mapToRegistry raw: 'svgexport',
12 silly mapToRegistry scope: null,
12 silly mapToRegistry name: 'svgexport',
12 silly mapToRegistry rawSpec: '',
12 silly mapToRegistry spec: 'latest',
12 silly mapToRegistry type: 'tag' }
13 silly mapToRegistry uri https://registry.npmjs.org/svgexport
14 verbose request uri https://registry.npmjs.org/svgexport
15 verbose request no auth needed
16 info attempt registry request try #1 at 8:59:42 AM
17 verbose request id 674436b8a76bdbc8
18 http request GET https://registry.npmjs.org/svgexport
19 http 200 https://registry.npmjs.org/svgexport
20 verbose headers { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
20 verbose headers etag: '"78L20FD4KAB8M7JLQLFQF5TCP"',
20 verbose headers 'content-type': 'application/json',
20 verbose headers 'content-encoding': 'gzip',
20 verbose headers 'cache-control': 'max-age=300',
20 verbose headers 'content-length': '4856',
20 verbose headers 'accept-ranges': 'bytes',
20 verbose headers date: 'Tue, 14 Jun 2016 13:59:43 GMT',
20 verbose headers via: '1.1 varnish',
20 verbose headers age: '0',
20 verbose headers connection: 'keep-alive',
20 verbose headers 'x-served-by': 'cache-atl6234-ATL',
20 verbose headers 'x-cache': 'MISS',
20 verbose headers 'x-cache-hits': '0',
20 verbose headers 'x-timer': 'S1465912783.670582,VS0,VE40',
20 verbose headers vary: 'Accept-Encoding' }
21 silly get cb [ 200,
21 silly get { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
21 silly get etag: '"78L20FD4KAB8M7JLQLFQF5TCP"',
21 silly get 'content-type': 'application/json',
21 silly get 'content-encoding': 'gzip',
21 silly get 'cache-control': 'max-age=300',
21 silly get 'content-length': '4856',
21 silly get 'accept-ranges': 'bytes',
21 silly get date: 'Tue, 14 Jun 2016 13:59:43 GMT',
21 silly get via: '1.1 varnish',
21 silly get age: '0',
21 silly get connection: 'keep-alive',
21 silly get 'x-served-by': 'cache-atl6234-ATL',
21 silly get 'x-cache': 'MISS',
21 silly get 'x-cache-hits': '0',
21 silly get 'x-timer': 'S1465912783.670582,VS0,VE40',
21 silly get vary: 'Accept-Encoding' } ]
22 verbose get saving svgexport to /Users/sphuff/.npm/registry.npmjs.org/svgexport/.cache.json
23 verbose correctMkdir /Users/sphuff/.npm correctMkdir not in flight; initializing
24 verbose makeDirectory /Users/sphuff/.npm creation not in flight; initializing
25 silly makeDirectory /Users/sphuff/.npm uid: 501 gid: 20
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 [email protected] checking installable status
39 silly cache add args [ 'svgexport', null ]
40 verbose cache add spec svgexport
41 silly cache add parsed spec Result {
41 silly cache add raw: 'svgexport',
41 silly cache add scope: null,
41 silly cache add name: 'svgexport',
41 silly cache add rawSpec: '',
41 silly cache add spec: 'latest',
41 silly cache add type: 'tag' }
42 silly addNamed svgexport@latest
43 verbose addNamed "latest" is being treated as a dist-tag for svgexport
44 info addNameTag [ 'svgexport', 'latest' ]
45 silly mapToRegistry name svgexport
46 silly mapToRegistry using default registry
47 silly mapToRegistry registry https://registry.npmjs.org/
48 silly mapToRegistry data Result {
48 silly mapToRegistry raw: 'svgexport',
48 silly mapToRegistry scope: null,
48 silly mapToRegistry name: 'svgexport',
48 silly mapToRegistry rawSpec: '',
48 silly mapToRegistry spec: 'latest',
48 silly mapToRegistry type: 'tag' }
49 silly mapToRegistry uri https://registry.npmjs.org/svgexport
50 verbose addNameTag registry:https://registry.npmjs.org/svgexport not in flight; fetching
51 verbose get https://registry.npmjs.org/svgexport not expired, no request
52 silly addNameTag next cb for svgexport with tag latest
53 silly addNamed [email protected]
54 verbose addNamed "0.3.2" is a plain semver version for svgexport
55 silly mapToRegistry name svgexport
56 silly mapToRegistry using default registry
57 silly mapToRegistry registry https://registry.npmjs.org/
58 silly mapToRegistry data Result {
58 silly mapToRegistry raw: 'svgexport',
58 silly mapToRegistry scope: null,
58 silly mapToRegistry name: 'svgexport',
58 silly mapToRegistry rawSpec: '',
58 silly mapToRegistry spec: 'latest',
58 silly mapToRegistry type: 'tag' }
59 silly mapToRegistry uri https://registry.npmjs.org/svgexport
60 verbose addRemoteTarball https://registry.npmjs.org/svgexport/-/svgexport-0.3.2.tgz not in flight; adding
61 verbose addRemoteTarball [ 'https://registry.npmjs.org/svgexport/-/svgexport-0.3.2.tgz',
61 verbose addRemoteTarball '722f31840328b483e8a5dcaa73eff818d884d106' ]
62 info retry fetch attempt 1 at 8:59:43 AM
63 info attempt registry request try #1 at 8:59:43 AM
64 http fetch GET https://registry.npmjs.org/svgexport/-/svgexport-0.3.2.tgz
65 http fetch 200 https://registry.npmjs.org/svgexport/-/svgexport-0.3.2.tgz
66 silly fetchAndShaCheck shasum 722f31840328b483e8a5dcaa73eff818d884d106
67 verbose addTmpTarball /var/folders/d3/yc_b5hcj22bfwwmrpqh6q27c0000gn/T/npm-1367-321729a7/registry.npmjs.org/svgexport/-/svgexport-0.3.2.tgz not in flight; adding
68 verbose addTmpTarball already have metadata; skipping unpack for [email protected]
69 verbose correctMkdir /Users/sphuff/.npm correctMkdir not in flight; initializing
70 silly cache afterAdd [email protected]
71 verbose afterAdd /Users/sphuff/.npm/svgexport/0.3.2/package/package.json not in flight; writing
72 verbose correctMkdir /Users/sphuff/.npm correctMkdir not in flight; initializing
73 verbose afterAdd /Users/sphuff/.npm/svgexport/0.3.2/package/package.json written
74 silly fetchNamedPackageData async
75 silly mapToRegistry name async
76 silly mapToRegistry using default registry
77 silly mapToRegistry registry https://registry.npmjs.org/
78 silly mapToRegistry data Result {
78 silly mapToRegistry raw: 'async',
78 silly mapToRegistry scope: null,
78 silly mapToRegistry name: 'async',
78 silly mapToRegistry rawSpec: '',
78 silly mapToRegistry spec: 'latest',
78 silly mapToRegistry type: 'tag' }
79 silly mapToRegistry uri https://registry.npmjs.org/async
80 silly fetchNamedPackageData phantomjs-prebuilt
81 silly mapToRegistry name phantomjs-prebuilt
82 silly mapToRegistry using default registry
83 silly mapToRegistry registry https://registry.npmjs.org/
84 silly mapToRegistry data Result {
84 silly mapToRegistry raw: 'phantomjs-prebuilt',
84 silly mapToRegistry scope: null,
84 silly mapToRegistry name: 'phantomjs-prebuilt',
84 silly mapToRegistry rawSpec: '',
84 silly mapToRegistry spec: 'latest',
84 silly mapToRegistry type: 'tag' }
85 silly mapToRegistry uri https://registry.npmjs.org/phantomjs-prebuilt
86 verbose request uri https://registry.npmjs.org/async
87 verbose request no auth needed
88 info attempt registry request try #1 at 8:59:44 AM
89 http request GET https://registry.npmjs.org/async
90 verbose request uri https://registry.npmjs.org/phantomjs-prebuilt
91 verbose request no auth needed
92 info attempt registry request try #1 at 8:59:44 AM
93 http request GET https://registry.npmjs.org/phantomjs-prebuilt
94 http 200 https://registry.npmjs.org/async
95 verbose headers { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
95 verbose headers etag: '"DKETP5R79JTFLXYSLG80R62QU"',
95 verbose headers 'content-type': 'application/json',
95 verbose headers 'content-encoding': 'gzip',
95 verbose headers 'cache-control': 'max-age=300',
95 verbose headers 'content-length': '36311',
95 verbose headers 'accept-ranges': 'bytes',
95 verbose headers date: 'Tue, 14 Jun 2016 13:59:44 GMT',
95 verbose headers via: '1.1 varnish',
95 verbose headers age: '194',
95 verbose headers connection: 'keep-alive',
95 verbose headers 'x-served-by': 'cache-atl6234-ATL',
95 verbose headers 'x-cache': 'HIT',
95 verbose headers 'x-cache-hits': '128',
95 verbose headers 'x-timer': 'S1465912784.090132,VS0,VE0',
95 verbose headers vary: 'Accept-Encoding' }
96 silly get cb [ 200,
96 silly get { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
96 silly get etag: '"DKETP5R79JTFLXYSLG80R62QU"',
96 silly get 'content-type': 'application/json',
96 silly get 'content-encoding': 'gzip',
96 silly get 'cache-control': 'max-age=300',
96 silly get 'content-length': '36311',
96 silly get 'accept-ranges': 'bytes',
96 silly get date: 'Tue, 14 Jun 2016 13:59:44 GMT',
96 silly get via: '1.1 varnish',
96 silly get age: '194',
96 silly get connection: 'keep-alive',
96 silly get 'x-served-by': 'cache-atl6234-ATL',
96 silly get 'x-cache': 'HIT',
96 silly get 'x-cache-hits': '128',
96 silly get 'x-timer': 'S1465912784.090132,VS0,VE0',
96 silly get vary: 'Accept-Encoding' } ]
97 verbose get saving async to /Users/sphuff/.npm/registry.npmjs.org/async/.cache.json
98 verbose correctMkdir /Users/sphuff/.npm correctMkdir not in flight; initializing
99 silly resolveWithNewModule [email protected] checking installable status
100 silly cache add args [ 'async@^1.0.0', null ]
101 verbose cache add spec async@^1.0.0
102 silly cache add parsed spec Result {
102 silly cache add raw: 'async@^1.0.0',
102 silly cache add scope: null,
102 silly cache add name: 'async',
102 silly cache add rawSpec: '^1.0.0',
102 silly cache add spec: '>=1.0.0 <2.0.0',
102 silly cache add type: 'range' }
103 silly addNamed async@>=1.0.0 <2.0.0
104 verbose addNamed ">=1.0.0 <2.0.0" is a valid semver range for async
105 silly addNameRange { name: 'async', range: '>=1.0.0 <2.0.0', hasData: false }
106 silly mapToRegistry name async
107 silly mapToRegistry using default registry
108 silly mapToRegistry registry https://registry.npmjs.org/
109 silly mapToRegistry data Result {
109 silly mapToRegistry raw: 'async',
109 silly mapToRegistry scope: null,
109 silly mapToRegistry name: 'async',
109 silly mapToRegistry rawSpec: '',
109 silly mapToRegistry spec: 'latest',
109 silly mapToRegistry type: 'tag' }
110 silly mapToRegistry uri https://registry.npmjs.org/async
111 verbose addNameRange registry:https://registry.npmjs.org/async not in flight; fetching
112 http 200 https://registry.npmjs.org/phantomjs-prebuilt
113 verbose headers { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
113 verbose headers etag: '"51F3794MQ2RA7YO6AGP89VKLH"',
113 verbose headers 'content-type': 'application/json',
113 verbose headers 'content-encoding': 'gzip',
113 verbose headers 'cache-control': 'max-age=300',
113 verbose headers 'content-length': '5961',
113 verbose headers 'accept-ranges': 'bytes',
113 verbose headers date: 'Tue, 14 Jun 2016 13:59:44 GMT',
113 verbose headers via: '1.1 varnish',
113 verbose headers age: '227',
113 verbose headers connection: 'keep-alive',
113 verbose headers 'x-served-by': 'cache-atl6234-ATL',
113 verbose headers 'x-cache': 'HIT',
113 verbose headers 'x-cache-hits': '1',
113 verbose headers 'x-timer': 'S1465912784.179908,VS0,VE0',
113 verbose headers vary: 'Accept-Encoding' }
114 silly get cb [ 200,
114 silly get { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
114 silly get etag: '"51F3794MQ2RA7YO6AGP89VKLH"',
114 silly get 'content-type': 'application/json',
114 silly get 'content-encoding': 'gzip',
114 silly get 'cache-control': 'max-age=300',
114 silly get 'content-length': '5961',
114 silly get 'accept-ranges': 'bytes',
114 silly get date: 'Tue, 14 Jun 2016 13:59:44 GMT',
114 silly get via: '1.1 varnish',
114 silly get age: '227',
114 silly get connection: 'keep-alive',
114 silly get 'x-served-by': 'cache-atl6234-ATL',
114 silly get 'x-cache': 'HIT',
114 silly get 'x-cache-hits': '1',
114 silly get 'x-timer': 'S1465912784.179908,VS0,VE0',
114 silly get vary: 'Accept-Encoding' } ]
115 verbose get saving phantomjs-prebuilt to /Users/sphuff/.npm/registry.npmjs.org/phantomjs-prebuilt/.cache.json
116 verbose correctMkdir /Users/sphuff/.npm correctMkdir not in flight; initializing
117 verbose get https://registry.npmjs.org/async not expired, no request
118 silly addNameRange number 2 { name: 'async', range: '>=1.0.0 <2.0.0', hasData: true }
119 silly addNameRange versions [ 'async',
119 silly addNameRange [ '0.1.0',
119 silly addNameRange '0.1.1',
119 silly addNameRange '0.1.2',
119 silly addNameRange '0.1.3',
119 silly addNameRange '0.1.4',
119 silly addNameRange '0.1.5',
119 silly addNameRange '0.1.6',
119 silly addNameRange '0.1.7',
119 silly addNameRange '0.1.8',
119 silly addNameRange '0.1.9',
119 silly addNameRange '0.1.10',
119 silly addNameRange '0.1.11',
119 silly addNameRange '0.1.12',
119 silly addNameRange '0.1.13',
119 silly addNameRange '0.1.14',
119 silly addNameRange '0.1.15',
119 silly addNameRange '0.1.16',
119 silly addNameRange '0.1.17',
119 silly addNameRange '0.1.18',
119 silly addNameRange '0.1.19',
119 silly addNameRange '0.1.20',
119 silly addNameRange '0.1.21',
119 silly addNameRange '0.1.22',
119 silly addNameRange '0.2.0',
119 silly addNameRange '0.2.1',
119 silly addNameRange '0.2.2',
119 silly addNameRange '0.2.3',
119 silly addNameRange '0.2.4',
119 silly addNameRange '0.2.5',
119 silly addNameRange '0.2.6',
119 silly addNameRange '0.2.7',
119 silly addNameRange '0.2.8',
119 silly addNameRange '0.2.9',
119 silly addNameRange '0.2.10',
119 silly addNameRange '0.3.0',
119 silly addNameRange '0.4.0',
119 silly addNameRange '0.4.1',
119 silly addNameRange '0.5.0',
119 silly addNameRange '0.6.0',
119 silly addNameRange '0.6.1',
119 silly addNameRange '0.6.2',
119 silly addNameRange '0.7.0',
119 silly addNameRange '0.8.0',
119 silly addNameRange '0.9.0',
119 silly addNameRange '0.9.2',
119 silly addNameRange '1.0.0',
119 silly addNameRange '1.1.0',
119 silly addNameRange '1.2.0',
119 silly addNameRange '1.1.1',
119 silly addNameRange '1.2.1',
119 silly addNameRange '1.3.0',
119 silly addNameRange '1.4.0',
119 silly addNameRange '1.4.1',
119 silly addNameRange '1.4.2',
119 silly addNameRange '1.5.0',
119 silly addNameRange '1.5.1',
119 silly addNameRange '1.5.2',
119 silly addNameRange '2.0.0-alpha.0',
119 silly addNameRange '2.0.0-rc.1',
119 silly addNameRange '2.0.0-rc.2',
119 silly addNameRange '2.0.0-rc.3',
119 silly addNameRange '2.0.0-rc.4',
119 silly addNameRange '2.0.0-rc.5',
119 silly addNameRange '2.0.0-rc.6' ] ]
120 silly addNamed [email protected]
121 verbose addNamed "1.5.2" is a plain semver version for async
122 silly mapToRegistry name async
123 silly mapToRegistry using default registry
124 silly mapToRegistry registry https://registry.npmjs.org/
125 silly mapToRegistry data Result {
125 silly mapToRegistry raw: 'async',
125 silly mapToRegistry scope: null,
125 silly mapToRegistry name: 'async',
125 silly mapToRegistry rawSpec: '',
125 silly mapToRegistry spec: 'latest',
125 silly mapToRegistry type: 'tag' }
126 silly mapToRegistry uri https://registry.npmjs.org/async
127 verbose addRemoteTarball https://registry.npmjs.org/async/-/async-1.5.2.tgz not in flight; adding
128 verbose addRemoteTarball [ 'https://registry.npmjs.org/async/-/async-1.5.2.tgz',
128 verbose addRemoteTarball 'ec6a61ae56480c0c3cb241c95618e20892f9672a' ]
129 info retry fetch attempt 1 at 8:59:44 AM
130 info attempt registry request try #1 at 8:59:44 AM
131 http fetch GET https://registry.npmjs.org/async/-/async-1.5.2.tgz
132 silly resolveWithNewModule [email protected] checking installable status
133 silly cache add args [ 'phantomjs-prebuilt@^2.1.4', null ]
134 verbose cache add spec phantomjs-prebuilt@^2.1.4
135 silly cache add parsed spec Result {
135 silly cache add raw: 'phantomjs-prebuilt@^2.1.4',
135 silly cache add scope: null,
135 silly cache add name: 'phantomjs-prebuilt',
135 silly cache add rawSpec: '^2.1.4',
135 silly cache add spec: '>=2.1.4 <3.0.0',
135 silly cache add type: 'range' }
136 silly addNamed phantomjs-prebuilt@>=2.1.4 <3.0.0
137 verbose addNamed ">=2.1.4 <3.0.0" is a valid semver range for phantomjs-prebuilt
138 silly addNameRange { name: 'phantomjs-prebuilt',
138 silly addNameRange range: '>=2.1.4 <3.0.0',
138 silly addNameRange hasData: false }
139 silly mapToRegistry name phantomjs-prebuilt
140 silly mapToRegistry using default registry
141 silly mapToRegistry registry https://registry.npmjs.org/
142 silly mapToRegistry data Result {
142 silly mapToRegistry raw: 'phantomjs-prebuilt',
142 silly mapToRegistry scope: null,
142 silly mapToRegistry name: 'phantomjs-prebuilt',
142 silly mapToRegistry rawSpec: '',
142 silly mapToRegistry spec: 'latest',
142 silly mapToRegistry type: 'tag' }
143 silly mapToRegistry uri https://registry.npmjs.org/phantomjs-prebuilt
144 verbose addNameRange registry:https://registry.npmjs.org/phantomjs-prebuilt not in flight; fetching
145 verbose get https://registry.npmjs.org/phantomjs-prebuilt not expired, no request
146 silly addNameRange number 2 { name: 'phantomjs-prebuilt',
146 silly addNameRange range: '>=2.1.4 <3.0.0',
146 silly addNameRange hasData: true }
147 silly addNameRange versions [ 'phantomjs-prebuilt',
147 silly addNameRange [ '2.1.2', '2.1.3', '2.1.4', '2.1.5', '2.1.6', '2.1.7' ] ]
148 silly addNamed [email protected]
149 verbose addNamed "2.1.7" is a plain semver version for phantomjs-prebuilt
150 silly mapToRegistry name phantomjs-prebuilt
151 silly mapToRegistry using default registry
152 silly mapToRegistry registry https://registry.npmjs.org/
153 silly mapToRegistry data Result {
153 silly mapToRegistry raw: 'phantomjs-prebuilt',
153 silly mapToRegistry scope: null,
153 silly mapToRegistry name: 'phantomjs-prebuilt',
153 silly mapToRegistry rawSpec: '',
153 silly mapToRegistry spec: 'latest',
153 silly mapToRegistry type: 'tag' }
154 silly mapToRegistry uri https://registry.npmjs.org/phantomjs-prebuilt
155 verbose addRemoteTarball https://registry.npmjs.org/phantomjs-prebuilt/-/phantomjs-prebuilt-2.1.7.tgz not in flight; adding
156 verbose addRemoteTarball [ 'https://registry.npmjs.org/phantomjs-prebuilt/-/phantomjs-prebuilt-2.1.7.tgz',
156 verbose addRemoteTarball 'c90bf1b9772fa197994331fcf3f67099a96853ca' ]
157 info retry fetch attempt 1 at 8:59:44 AM
158 info attempt registry request try #1 at 8:59:44 AM
159 http fetch GET https://registry.npmjs.org/phantomjs-prebuilt/-/phantomjs-prebuilt-2.1.7.tgz
160 http fetch 200 https://registry.npmjs.org/async/-/async-1.5.2.tgz
161 silly fetchAndShaCheck shasum ec6a61ae56480c0c3cb241c95618e20892f9672a
162 verbose addTmpTarball /var/folders/d3/yc_b5hcj22bfwwmrpqh6q27c0000gn/T/npm-1367-321729a7/registry.npmjs.org/async/-/async-1.5.2.tgz not in flight; adding
163 verbose addTmpTarball already have metadata; skipping unpack for [email protected]
164 verbose correctMkdir /Users/sphuff/.npm correctMkdir not in flight; initializing
165 http fetch 200 https://registry.npmjs.org/phantomjs-prebuilt/-/phantomjs-prebuilt-2.1.7.tgz
166 silly cache afterAdd [email protected]
167 verbose afterAdd /Users/sphuff/.npm/async/1.5.2/package/package.json not in flight; writing
168 verbose correctMkdir /Users/sphuff/.npm correctMkdir not in flight; initializing
169 verbose afterAdd /Users/sphuff/.npm/async/1.5.2/package/package.json written
170 silly fetchAndShaCheck shasum c90bf1b9772fa197994331fcf3f67099a96853ca
171 verbose addTmpTarball /var/folders/d3/yc_b5hcj22bfwwmrpqh6q27c0000gn/T/npm-1367-321729a7/registry.npmjs.org/phantomjs-prebuilt/-/phantomjs-prebuilt-2.1.7.tgz not in flight; adding
172 verbose addTmpTarball already have metadata; skipping unpack for [email protected]
173 verbose correctMkdir /Users/sphuff/.npm correctMkdir not in flight; initializing
174 silly cache afterAdd [email protected]
175 verbose afterAdd /Users/sphuff/.npm/phantomjs-prebuilt/2.1.7/package/package.json not in flight; writing
176 verbose correctMkdir /Users/sphuff/.npm correctMkdir not in flight; initializing
177 verbose afterAdd /Users/sphuff/.npm/phantomjs-prebuilt/2.1.7/package/package.json written
178 silly fetchNamedPackageData extract-zip
179 silly mapToRegistry name extract-zip
180 silly mapToRegistry using default registry
181 silly mapToRegistry registry https://registry.npmjs.org/
182 silly mapToRegistry data Result {
182 silly mapToRegistry raw: 'extract-zip',
182 silly mapToRegistry scope: null,
182 silly mapToRegistry name: 'extract-zip',
182 silly mapToRegistry rawSpec: '',
182 silly mapToRegistry spec: 'latest',
182 silly mapToRegistry type: 'tag' }
183 silly mapToRegistry uri https://registry.npmjs.org/extract-zip
184 silly fetchNamedPackageData fs-extra
185 silly mapToRegistry name fs-extra
186 silly mapToRegistry using default registry
187 silly mapToRegistry registry https://registry.npmjs.org/
188 silly mapToRegistry data Result {
188 silly mapToRegistry raw: 'fs-extra',
188 silly mapToRegistry scope: null,
188 silly mapToRegistry name: 'fs-extra',
188 silly mapToRegistry rawSpec: '',
188 silly mapToRegistry spec: 'latest',
188 silly mapToRegistry type: 'tag' }
189 silly mapToRegistry uri https://registry.npmjs.org/fs-extra
190 silly fetchNamedPackageData hasha
191 silly mapToRegistry name hasha
192 silly mapToRegistry using default registry
193 silly mapToRegistry registry https://registry.npmjs.org/
194 silly mapToRegistry data Result {
194 silly mapToRegistry raw: 'hasha',
194 silly mapToRegistry scope: null,
194 silly mapToRegistry name: 'hasha',
194 silly mapToRegistry rawSpec: '',
194 silly mapToRegistry spec: 'latest',
194 silly mapToRegistry type: 'tag' }
195 silly mapToRegistry uri https://registry.npmjs.org/hasha
196 silly fetchNamedPackageData kew
197 silly mapToRegistry name kew
198 silly mapToRegistry using default registry
199 silly mapToRegistry registry https://registry.npmjs.org/
200 silly mapToRegistry data Result {
200 silly mapToRegistry raw: 'kew',
200 silly mapToRegistry scope: null,
200 silly mapToRegistry name: 'kew',
200 silly mapToRegistry rawSpec: '',
200 silly mapToRegistry spec: 'latest',
200 silly mapToRegistry type: 'tag' }
201 silly mapToRegistry uri https://registry.npmjs.org/kew
202 silly fetchNamedPackageData progress
203 silly mapToRegistry name progress
204 silly mapToRegistry using default registry
205 silly mapToRegistry registry https://registry.npmjs.org/
206 silly mapToRegistry data Result {
206 silly mapToRegistry raw: 'progress',
206 silly mapToRegistry scope: null,
206 silly mapToRegistry name: 'progress',
206 silly mapToRegistry rawSpec: '',
206 silly mapToRegistry spec: 'latest',
206 silly mapToRegistry type: 'tag' }
207 silly mapToRegistry uri https://registry.npmjs.org/progress
208 silly fetchNamedPackageData request
209 silly mapToRegistry name request
210 silly mapToRegistry using default registry
211 silly mapToRegistry registry https://registry.npmjs.org/
212 silly mapToRegistry data Result {
212 silly mapToRegistry raw: 'request',
212 silly mapToRegistry scope: null,
212 silly mapToRegistry name: 'request',
212 silly mapToRegistry rawSpec: '',
212 silly mapToRegistry spec: 'latest',
212 silly mapToRegistry type: 'tag' }
213 silly mapToRegistry uri https://registry.npmjs.org/request
214 silly fetchNamedPackageData request-progress
215 silly mapToRegistry name request-progress
216 silly mapToRegistry using default registry
217 silly mapToRegistry registry https://registry.npmjs.org/
218 silly mapToRegistry data Result {
218 silly mapToRegistry raw: 'request-progress',
218 silly mapToRegistry scope: null,
218 silly mapToRegistry name: 'request-progress',
218 silly mapToRegistry rawSpec: '',
218 silly mapToRegistry spec: 'latest',
218 silly mapToRegistry type: 'tag' }
219 silly mapToRegistry uri https://registry.npmjs.org/request-progress
220 silly fetchNamedPackageData which
221 silly mapToRegistry name which
222 silly mapToRegistry using default registry
223 silly mapToRegistry registry https://registry.npmjs.org/
224 silly mapToRegistry data Result {
224 silly mapToRegistry raw: 'which',
224 silly mapToRegistry scope: null,
224 silly mapToRegistry name: 'which',
224 silly mapToRegistry rawSpec: '',
224 silly mapToRegistry spec: 'latest',
224 silly mapToRegistry type: 'tag' }
225 silly mapToRegistry uri https://registry.npmjs.org/which
226 verbose request uri https://registry.npmjs.org/extract-zip
227 verbose request no auth needed
228 info attempt registry request try #1 at 8:59:44 AM
229 http request GET https://registry.npmjs.org/extract-zip
230 verbose request uri https://registry.npmjs.org/fs-extra
231 verbose request no auth needed
232 info attempt registry request try #1 at 8:59:44 AM
233 http request GET https://registry.npmjs.org/fs-extra
234 verbose request uri https://registry.npmjs.org/hasha
235 verbose request no auth needed
236 info attempt registry request try #1 at 8:59:44 AM
237 http request GET https://registry.npmjs.org/hasha
238 verbose request uri https://registry.npmjs.org/kew
239 verbose request no auth needed
240 info attempt registry request try #1 at 8:59:44 AM
241 http request GET https://registry.npmjs.org/kew
242 verbose request uri https://registry.npmjs.org/progress
243 verbose request no auth needed
244 info attempt registry request try #1 at 8:59:44 AM
245 http request GET https://registry.npmjs.org/progress
246 verbose request uri https://registry.npmjs.org/request
247 verbose request no auth needed
248 info attempt registry request try #1 at 8:59:44 AM
249 http request GET https://registry.npmjs.org/request
250 verbose request uri https://registry.npmjs.org/request-progress
251 verbose request no auth needed
252 info attempt registry request try #1 at 8:59:44 AM
253 http request GET https://registry.npmjs.org/request-progress
254 verbose request uri https://registry.npmjs.org/which
255 verbose request no auth needed
256 info attempt registry request try #1 at 8:59:44 AM
257 http request GET https://registry.npmjs.org/which
258 http 200 https://registry.npmjs.org/extract-zip
259 verbose headers { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
259 verbose headers etag: '"EJYXER8RQE9PBXCH0ZQD2GPI8"',
259 verbose headers 'content-type': 'application/json',
259 verbose headers 'content-encoding': 'gzip',
259 verbose headers 'cache-control': 'max-age=300',
259 verbose headers 'content-length': '2998',
259 verbose headers 'accept-ranges': 'bytes',
259 verbose headers date: 'Tue, 14 Jun 2016 13:59:44 GMT',
259 verbose headers via: '1.1 varnish',
259 verbose headers age: '65',
259 verbose headers connection: 'keep-alive',
259 verbose headers 'x-served-by': 'cache-atl6234-ATL',
259 verbose headers 'x-cache': 'HIT',
259 verbose headers 'x-cache-hits': '4',
259 verbose headers 'x-timer': 'S1465912784.423949,VS0,VE0',
259 verbose headers vary: 'Accept-Encoding' }
260 silly get cb [ 200,
260 silly get { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
260 silly get etag: '"EJYXER8RQE9PBXCH0ZQD2GPI8"',
260 silly get 'content-type': 'application/json',
260 silly get 'content-encoding': 'gzip',
260 silly get 'cache-control': 'max-age=300',
260 silly get 'content-length': '2998',
260 silly get 'accept-ranges': 'bytes',
260 silly get date: 'Tue, 14 Jun 2016 13:59:44 GMT',
260 silly get via: '1.1 varnish',
260 silly get age: '65',
260 silly get connection: 'keep-alive',
260 silly get 'x-served-by': 'cache-atl6234-ATL',
260 silly get 'x-cache': 'HIT',
260 silly get 'x-cache-hits': '4',
260 silly get 'x-timer': 'S1465912784.423949,VS0,VE0',
260 silly get vary: 'Accept-Encoding' } ]
261 verbose get saving extract-zip to /Users/sphuff/.npm/registry.npmjs.org/extract-zip/.cache.json
262 verbose correctMkdir /Users/sphuff/.npm correctMkdir not in flight; initializing
263 silly resolveWithNewModule [email protected] checking installable status
264 silly cache add args [ 'extract-zip@~1.5.0', null ]
265 verbose cache add spec extract-zip@~1.5.0
266 silly cache add parsed spec Result {
266 silly cache add raw: 'extract-zip@~1.5.0',
266 silly cache add scope: null,
266 silly cache add name: 'extract-zip',
266 silly cache add rawSpec: '~1.5.0',
266 silly cache add spec: '>=1.5.0 <1.6.0',
266 silly cache add type: 'range' }
267 silly addNamed extract-zip@>=1.5.0 <1.6.0
268 verbose addNamed ">=1.5.0 <1.6.0" is a valid semver range for extract-zip
269 silly addNameRange { name: 'extract-zip', range: '>=1.5.0 <1.6.0', hasData: false }
270 silly mapToRegistry name extract-zip
271 silly mapToRegistry using default registry
272 silly mapToRegistry registry https://registry.npmjs.org/
273 silly mapToRegistry data Result {
273 silly mapToRegistry raw: 'extract-zip',
273 silly mapToRegistry scope: null,
273 silly mapToRegistry name: 'extract-zip',
273 silly mapToRegistry rawSpec: '',
273 silly mapToRegistry spec: 'latest',
273 silly mapToRegistry type: 'tag' }
274 silly mapToRegistry uri https://registry.npmjs.org/extract-zip
275 verbose addNameRange registry:https://registry.npmjs.org/extract-zip not in flight; fetching
276 verbose get https://registry.npmjs.org/extract-zip not expired, no request
277 silly addNameRange number 2 { name: 'extract-zip', range: '>=1.5.0 <1.6.0', hasData: true }
278 silly addNameRange versions [ 'extract-zip',
278 silly addNameRange [ '1.0.0',
278 silly addNameRange '1.0.1',
278 silly addNameRange '1.0.2',
278 silly addNameRange '1.0.3',
278 silly addNameRange '1.1.0',
278 silly addNameRange '1.1.1',
278 silly addNameRange '1.1.2',
278 silly addNameRange '1.2.0',
278 silly addNameRange '1.3.0',
278 silly addNameRange '1.4.0',
278 silly addNameRange '1.4.1',
278 silly addNameRange '1.5.0' ] ]
279 silly addNamed [email protected]
280 verbose addNamed "1.5.0" is a plain semver version for extract-zip
281 silly mapToRegistry name extract-zip
282 silly mapToRegistry using default registry
283 silly mapToRegistry registry https://registry.npmjs.org/
284 silly mapToRegistry data Result {
284 silly mapToRegistry raw: 'extract-zip',
284 silly mapToRegistry scope: null,
284 silly mapToRegistry name: 'extract-zip',
284 silly mapToRegistry rawSpec: '',
284 silly mapToRegistry spec: 'latest',
284 silly mapToRegistry type: 'tag' }
285 silly mapToRegistry uri https://registry.npmjs.org/extract-zip
286 verbose addRemoteTarball https://registry.npmjs.org/extract-zip/-/extract-zip-1.5.0.tgz not in flight; adding
287 verbose addRemoteTarball [ 'https://registry.npmjs.org/extract-zip/-/extract-zip-1.5.0.tgz',
287 verbose addRemoteTarball '92ccf6d81ef70a9fa4c1747114ccef6d8688a6c4' ]
288 info retry fetch attempt 1 at 8:59:44 AM
289 info attempt registry request try #1 at 8:59:44 AM
290 http fetch GET https://registry.npmjs.org/extract-zip/-/extract-zip-1.5.0.tgz
291 http 200 https://registry.npmjs.org/fs-extra
292 verbose headers { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
292 verbose headers etag: '"9O4U3LS706SRUW2RAU47QTCIO"',
292 verbose headers 'content-type': 'application/json',
292 verbose headers 'content-encoding': 'gzip',
292 verbose headers 'cache-control': 'max-age=300',
292 verbose headers 'content-length': '17861',
292 verbose headers 'accept-ranges': 'bytes',
292 verbose headers date: 'Tue, 14 Jun 2016 13:59:44 GMT',
292 verbose headers via: '1.1 varnish',
292 verbose headers age: '117',
292 verbose headers connection: 'keep-alive',
292 verbose headers 'x-served-by': 'cache-atl6234-ATL',
292 verbose headers 'x-cache': 'HIT',
292 verbose headers 'x-cache-hits': '7',
292 verbose headers 'x-timer': 'S1465912784.431012,VS0,VE0',
292 verbose headers vary: 'Accept-Encoding' }
293 silly get cb [ 200,
293 silly get { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
293 silly get etag: '"9O4U3LS706SRUW2RAU47QTCIO"',
293 silly get 'content-type': 'application/json',
293 silly get 'content-encoding': 'gzip',
293 silly get 'cache-control': 'max-age=300',
293 silly get 'content-length': '17861',
293 silly get 'accept-ranges': 'bytes',
293 silly get date: 'Tue, 14 Jun 2016 13:59:44 GMT',
293 silly get via: '1.1 varnish',
293 silly get age: '117',
293 silly get connection: 'keep-alive',
293 silly get 'x-served-by': 'cache-atl6234-ATL',
293 silly get 'x-cache': 'HIT',
293 silly get 'x-cache-hits': '7',
293 silly get 'x-timer': 'S1465912784.431012,VS0,VE0',
293 silly get vary: 'Accept-Encoding' } ]
294 verbose get saving fs-extra to /Users/sphuff/.npm/registry.npmjs.org/fs-extra/.cache.json
295 verbose correctMkdir /Users/sphuff/.npm correctMkdir not in flight; initializing
296 silly resolveWithNewModule [email protected] checking installable status
297 silly cache add args [ 'fs-extra@~0.26.4', null ]
298 verbose cache add spec fs-extra@~0.26.4
299 silly cache add parsed spec Result {
299 silly cache add raw: 'fs-extra@~0.26.4',
299 silly cache add scope: null,
299 silly cache add name: 'fs-extra',
299 silly cache add rawSpec: '~0.26.4',
299 silly cache add spec: '>=0.26.4 <0.27.0',
299 silly cache add type: 'range' }
300 silly addNamed fs-extra@>=0.26.4 <0.27.0
301 verbose addNamed ">=0.26.4 <0.27.0" is a valid semver range for fs-extra
302 silly addNameRange { name: 'fs-extra', range: '>=0.26.4 <0.27.0', hasData: false }
303 silly mapToRegistry name fs-extra
304 silly mapToRegistry using default registry
305 silly mapToRegistry registry https://registry.npmjs.org/
306 silly mapToRegistry data Result {
306 silly mapToRegistry raw: 'fs-extra',
306 silly mapToRegistry scope: null,
306 silly mapToRegistry name: 'fs-extra',
306 silly mapToRegistry rawSpec: '',
306 silly mapToRegistry spec: 'latest',
306 silly mapToRegistry type: 'tag' }
307 silly mapToRegistry uri https://registry.npmjs.org/fs-extra
308 verbose addNameRange registry:https://registry.npmjs.org/fs-extra not in flight; fetching
309 verbose get https://registry.npmjs.org/fs-extra not expired, no request
310 silly addNameRange number 2 { name: 'fs-extra', range: '>=0.26.4 <0.27.0', hasData: true }
311 silly addNameRange versions [ 'fs-extra',
311 silly addNameRange [ '0.0.1',
311 silly addNameRange '0.0.11',
311 silly addNameRange '0.0.3',
311 silly addNameRange '0.0.4',
311 silly addNameRange '0.1.0',
311 silly addNameRange '0.1.1',
311 silly addNameRange '0.1.2',
311 silly addNameRange '0.1.3',
311 silly addNameRange '0.2.0',
311 silly addNameRange '0.2.1',
311 silly addNameRange '0.3.0',
311 silly addNameRange '0.3.1',
311 silly addNameRange '0.3.2',
311 silly addNameRange '0.4.0',
311 silly addNameRange '0.5.0',
311 silly addNameRange '0.6.0',
311 silly addNameRange '0.6.1',
311 silly addNameRange '0.6.2',
311 silly addNameRange '0.6.3',
311 silly addNameRange '0.6.4',
311 silly addNameRange '0.7.0',
311 silly addNameRange '0.7.1',
311 silly addNameRange '0.8.0',
311 silly addNameRange '0.8.1',
311 silly addNameRange '0.9.0',
311 silly addNameRange '0.9.1',
311 silly addNameRange '0.10.0',
311 silly addNameRange '0.11.0',
311 silly addNameRange '0.11.1',
311 silly addNameRange '0.12.0',
311 silly addNameRange '0.13.0',
311 silly addNameRange '0.14.0',
311 silly addNameRange '0.15.0',
311 silly addNameRange '0.16.0',
311 silly addNameRange '0.16.1',
311 silly addNameRange '0.16.2',
311 silly addNameRange '0.16.3',
311 silly addNameRange '0.16.4',
311 silly addNameRange '0.16.5',
311 silly addNameRange '0.17.0',
311 silly addNameRange '0.18.0',
311 silly addNameRange '0.18.1',
311 silly addNameRange '0.18.2',
311 silly addNameRange '0.18.3',
311 silly addNameRange '0.18.4',
311 silly addNameRange '0.19.0',
311 silly addNameRange '0.20.0',
311 silly addNameRange '0.20.1',
311 silly addNameRange '0.21.0',
311 silly addNameRange '0.22.0',
311 silly addNameRange '0.22.1',
311 silly addNameRange '0.23.0',
311 silly addNameRange '0.23.1',
311 silly addNameRange '0.24.0',
311 silly addNameRange '0.25.0',
311 silly addNameRange '0.26.0',
311 silly addNameRange '0.26.1',
311 silly addNameRange '0.26.2',
311 silly addNameRange '0.26.3',
311 silly addNameRange '0.26.4',
311 silly addNameRange '0.26.5',
311 silly addNameRange '0.26.6',
311 silly addNameRange '0.26.7',
311 silly addNameRange '0.27.0',
311 silly addNameRange '0.28.0',
311 silly addNameRange '0.29.0',
311 silly addNameRange '0.30.0' ] ]
312 silly addNamed [email protected]
313 verbose addNamed "0.26.7" is a plain semver version for fs-extra
314 silly mapToRegistry name fs-extra
315 silly mapToRegistry using default registry
316 silly mapToRegistry registry https://registry.npmjs.org/
317 silly mapToRegistry data Result {
317 silly mapToRegistry raw: 'fs-extra',
317 silly mapToRegistry scope: null,
317 silly mapToRegistry name: 'fs-extra',
317 silly mapToRegistry rawSpec: '',
317 silly mapToRegistry spec: 'latest',
317 silly mapToRegistry type: 'tag' }
318 silly mapToRegistry uri https://registry.npmjs.org/fs-extra
319 verbose addRemoteTarball https://registry.npmjs.org/fs-extra/-/fs-extra-0.26.7.tgz not in flight; adding
320 verbose addRemoteTarball [ 'https://registry.npmjs.org/fs-extra/-/fs-extra-0.26.7.tgz',
320 verbose addRemoteTarball '9ae1fdd94897798edab76d0918cf42d0c3184fa9' ]
321 info retry fetch attempt 1 at 8:59:44 AM
322 info attempt registry request try #1 at 8:59:44 AM
323 http fetch GET https://registry.npmjs.org/fs-extra/-/fs-extra-0.26.7.tgz
324 http fetch 200 https://registry.npmjs.org/extract-zip/-/extract-zip-1.5.0.tgz
325 silly fetchAndShaCheck shasum 92ccf6d81ef70a9fa4c1747114ccef6d8688a6c4
326 verbose addTmpTarball /var/folders/d3/yc_b5hcj22bfwwmrpqh6q27c0000gn/T/npm-1367-321729a7/registry.npmjs.org/extract-zip/-/extract-zip-1.5.0.tgz not in flight; adding
327 verbose addTmpTarball already have metadata; skipping unpack for [email protected]
328 verbose correctMkdir /Users/sphuff/.npm correctMkdir not in flight; initializing
329 silly cache afterAdd [email protected]
330 verbose afterAdd /Users/sphuff/.npm/extract-zip/1.5.0/package/package.json not in flight; writing
331 verbose correctMkdir /Users/sphuff/.npm correctMkdir not in flight; initializing
332 verbose afterAdd /Users/sphuff/.npm/extract-zip/1.5.0/package/package.json written
333 http 200 https://registry.npmjs.org/progress
334 verbose headers { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
334 verbose headers etag: '"5LSZB807WQRFOMKW99MSASE3R"',
334 verbose headers 'content-type': 'application/json',
334 verbose headers 'content-encoding': 'gzip',
334 verbose headers 'cache-control': 'max-age=300',
334 verbose headers 'content-length': '3932',
334 verbose headers 'accept-ranges': 'bytes',
334 verbose headers date: 'Tue, 14 Jun 2016 13:59:44 GMT',
334 verbose headers via: '1.1 varnish',
334 verbose headers age: '62',
334 verbose headers connection: 'keep-alive',
334 verbose headers 'x-served-by': 'cache-atl6244-ATL',
334 verbose headers 'x-cache': 'HIT',
334 verbose headers 'x-cache-hits': '3',
334 verbose headers 'x-timer': 'S1465912784.510798,VS0,VE0',
334 verbose headers vary: 'Accept-Encoding' }
335 silly get cb [ 200,
335 silly get { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
335 silly get etag: '"5LSZB807WQRFOMKW99MSASE3R"',
335 silly get 'content-type': 'application/json',
335 silly get 'content-encoding': 'gzip',
335 silly get 'cache-control': 'max-age=300',
335 silly get 'content-length': '3932',
335 silly get 'accept-ranges': 'bytes',
335 silly get date: 'Tue, 14 Jun 2016 13:59:44 GMT',
335 silly get via: '1.1 varnish',
335 silly get age: '62',
335 silly get connection: 'keep-alive',
335 silly get 'x-served-by': 'cache-atl6244-ATL',
335 silly get 'x-cache': 'HIT',
335 silly get 'x-cache-hits': '3',
335 silly get 'x-timer': 'S1465912784.510798,VS0,VE0',
335 silly get vary: 'Accept-Encoding' } ]
336 verbose get saving progress to /Users/sphuff/.npm/registry.npmjs.org/progress/.cache.json
337 verbose correctMkdir /Users/sphuff/.npm correctMkdir not in flight; initializing
338 http fetch 200 https://registry.npmjs.org/fs-extra/-/fs-extra-0.26.7.tgz
339 silly resolveWithNewModule [email protected] checking installable status
340 silly cache add args [ 'progress@~1.1.8', null ]
341 verbose cache add spec progress@~1.1.8
342 silly cache add parsed spec Result {
342 silly cache add raw: 'progress@~1.1.8',
342 silly cache add scope: null,
342 silly cache add name: 'progress',
342 silly cache add rawSpec: '~1.1.8',
342 silly cache add spec: '>=1.1.8 <1.2.0',
342 silly cache add type: 'range' }
343 silly addNamed progress@>=1.1.8 <1.2.0
344 verbose addNamed ">=1.1.8 <1.2.0" is a valid semver range for progress
345 silly addNameRange { name: 'progress', range: '>=1.1.8 <1.2.0', hasData: false }
346 silly mapToRegistry name progress
347 silly mapToRegistry using default registry
348 silly mapToRegistry registry https://registry.npmjs.org/
349 silly mapToRegistry data Result {
349 silly mapToRegistry raw: 'progress',
349 silly mapToRegistry scope: null,
349 silly mapToRegistry name: 'progress',
349 silly mapToRegistry rawSpec: '',
349 silly mapToRegistry spec: 'latest',
349 silly mapToRegistry type: 'tag' }
350 silly mapToRegistry uri https://registry.npmjs.org/progress
351 verbose addNameRange registry:https://registry.npmjs.org/progress not in flight; fetching
352 http 200 https://registry.npmjs.org/hasha
353 verbose headers { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
353 verbose headers etag: '"B0QDEVXMR6OYN5LR2HNKYD641"',
353 verbose headers 'content-type': 'application/json',
353 verbose headers 'content-encoding': 'gzip',
353 verbose headers 'cache-control': 'max-age=300',
353 verbose headers 'content-length': '3230',
353 verbose headers 'accept-ranges': 'bytes',
353 verbose headers date: 'Tue, 14 Jun 2016 13:59:44 GMT',
353 verbose headers via: '1.1 varnish',
353 verbose headers age: '81',
353 verbose headers connection: 'keep-alive',
353 verbose headers 'x-served-by': 'cache-atl6234-ATL',
353 verbose headers 'x-cache': 'HIT',
353 verbose headers 'x-cache-hits': '1',
353 verbose headers 'x-timer': 'S1465912784.511588,VS0,VE0',
353 verbose headers vary: 'Accept-Encoding' }
354 silly get cb [ 200,
354 silly get { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
354 silly get etag: '"B0QDEVXMR6OYN5LR2HNKYD641"',
354 silly get 'content-type': 'application/json',
354 silly get 'content-encoding': 'gzip',
354 silly get 'cache-control': 'max-age=300',
354 silly get 'content-length': '3230',
354 silly get 'accept-ranges': 'bytes',
354 silly get date: 'Tue, 14 Jun 2016 13:59:44 GMT',
354 silly get via: '1.1 varnish',
354 silly get age: '81',
354 silly get connection: 'keep-alive',
354 silly get 'x-served-by': 'cache-atl6234-ATL',
354 silly get 'x-cache': 'HIT',
354 silly get 'x-cache-hits': '1',
354 silly get 'x-timer': 'S1465912784.511588,VS0,VE0',
354 silly get vary: 'Accept-Encoding' } ]
355 verbose get saving hasha to /Users/sphuff/.npm/registry.npmjs.org/hasha/.cache.json
356 verbose correctMkdir /Users/sphuff/.npm correctMkdir not in flight; initializing
357 verbose get https://registry.npmjs.org/progress not expired, no request
358 silly addNameRange number 2 { name: 'progress', range: '>=1.1.8 <1.2.0', hasData: true }
359 silly addNameRange versions [ 'progress',
359 silly addNameRange [ '0.0.1',
359 silly addNameRange '0.0.2',
359 silly addNameRange '0.0.3',
359 silly addNameRange '0.0.4',
359 silly addNameRange '0.0.5',
359 silly addNameRange '0.1.0',
359 silly addNameRange '1.0.0',
359 silly addNameRange '1.0.1',
359 silly addNameRange '1.1.0',
359 silly addNameRange '1.1.2',
359 silly addNameRange '1.1.3',
359 silly addNameRange '1.1.4',
359 silly addNameRange '1.1.5',
359 silly addNameRange '1.1.6',
359 silly addNameRange '1.1.7',
359 silly addNameRange '1.1.8' ] ]
360 silly addNamed [email protected]
361 verbose addNamed "1.1.8" is a plain semver version for progress
362 silly fetchAndShaCheck shasum 9ae1fdd94897798edab76d0918cf42d0c3184fa9
363 silly mapToRegistry name progress
364 silly mapToRegistry using default registry
365 silly mapToRegistry registry https://registry.npmjs.org/
366 silly mapToRegistry data Result {
366 silly mapToRegistry raw: 'progress',
366 silly mapToRegistry scope: null,
366 silly mapToRegistry name: 'progress',
366 silly mapToRegistry rawSpec: '',
366 silly mapToRegistry spec: 'latest',
366 silly mapToRegistry type: 'tag' }
367 silly mapToRegistry uri https://registry.npmjs.org/progress
368 verbose addRemoteTarball https://registry.npmjs.org/progress/-/progress-1.1.8.tgz not in flight; adding
369 verbose addRemoteTarball [ 'https://registry.npmjs.org/progress/-/progress-1.1.8.tgz',
369 verbose addRemoteTarball 'e260c78f6161cdd9b0e56cc3e0a85de17c7a57be' ]
370 verbose addTmpTarball /var/folders/d3/yc_b5hcj22bfwwmrpqh6q27c0000gn/T/npm-1367-321729a7/registry.npmjs.org/fs-extra/-/fs-extra-0.26.7.tgz not in flight; adding
371 verbose addTmpTarball already have metadata; skipping unpack for [email protected]
372 verbose correctMkdir /Users/sphuff/.npm correctMkdir not in flight; initializing
373 info retry fetch attempt 1 at 8:59:44 AM
374 info attempt registry request try #1 at 8:59:44 AM
375 http fetch GET https://registry.npmjs.org/progress/-/progress-1.1.8.tgz
376 http 200 https://registry.npmjs.org/kew
377 verbose headers { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
377 verbose headers etag: '"AW5RY0MTQ5G4Q0BRIPRCKNB5D"',
377 verbose headers 'content-type': 'application/json',
377 verbose headers 'content-encoding': 'gzip',
377 verbose headers 'cache-control': 'max-age=300',
377 verbose headers 'content-length': '7463',
377 verbose headers 'accept-ranges': 'bytes',
377 verbose headers date: 'Tue, 14 Jun 2016 13:59:44 GMT',
377 verbose headers via: '1.1 varnish',
377 verbose headers age: '140',
377 verbose headers connection: 'keep-alive',
377 verbose headers 'x-served-by': 'cache-atl6224-ATL',
377 verbose headers 'x-cache': 'HIT',
377 verbose headers 'x-cache-hits': '6',
377 verbose headers 'x-timer': 'S1465912784.518716,VS0,VE0',
377 verbose headers vary: 'Accept-Encoding' }
378 silly get cb [ 200,
378 silly get { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
378 silly get etag: '"AW5RY0MTQ5G4Q0BRIPRCKNB5D"',
378 silly get 'content-type': 'application/json',
378 silly get 'content-encoding': 'gzip',
378 silly get 'cache-control': 'max-age=300',
378 silly get 'content-length': '7463',
378 silly get 'accept-ranges': 'bytes',
378 silly get date: 'Tue, 14 Jun 2016 13:59:44 GMT',
378 silly get via: '1.1 varnish',
378 silly get age: '140',
378 silly get connection: 'keep-alive',
378 silly get 'x-served-by': 'cache-atl6224-ATL',
378 silly get 'x-cache': 'HIT',
378 silly get 'x-cache-hits': '6',
378 silly get 'x-timer': 'S1465912784.518716,VS0,VE0',
378 silly get vary: 'Accept-Encoding' } ]
379 verbose get saving kew to /Users/sphuff/.npm/registry.npmjs.org/kew/.cache.json
380 verbose correctMkdir /Users/sphuff/.npm correctMkdir not in flight; initializing
381 silly resolveWithNewModule [email protected] checking installable status
382 silly cache add args [ 'hasha@^2.2.0', null ]
383 verbose cache add spec hasha@^2.2.0
384 silly cache add parsed spec Result {
384 silly cache add raw: 'hasha@^2.2.0',
384 silly cache add scope: null,
384 silly cache add name: 'hasha',
384 silly cache add rawSpec: '^2.2.0',
384 silly cache add spec: '>=2.2.0 <3.0.0',
384 silly cache add type: 'range' }
385 silly addNamed hasha@>=2.2.0 <3.0.0
386 verbose addNamed ">=2.2.0 <3.0.0" is a valid semver range for hasha
387 silly addNameRange { name: 'hasha', range: '>=2.2.0 <3.0.0', hasData: false }
388 silly mapToRegistry name hasha
389 silly mapToRegistry using default registry
390 silly mapToRegistry registry https://registry.npmjs.org/
391 silly mapToRegistry data Result {
391 silly mapToRegistry raw: 'hasha',
391 silly mapToRegistry scope: null,
391 silly mapToRegistry name: 'hasha',
391 silly mapToRegistry rawSpec: '',
391 silly mapToRegistry spec: 'latest',
391 silly mapToRegistry type: 'tag' }