-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnpm-debug.log
More file actions
8588 lines (8588 loc) · 491 KB
/
npm-debug.log
File metadata and controls
8588 lines (8588 loc) · 491 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 [ '/usr/local/bin/node',
1 verbose cli '/usr/local/bin/npm',
1 verbose cli 'install',
1 verbose cli '-g',
1 verbose cli 'meteor' ]
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 meteor
8 silly fetchNamedPackageData meteor
9 silly mapToRegistry name meteor
10 silly mapToRegistry using default registry
11 silly mapToRegistry registry https://registry.npmjs.org/
12 silly mapToRegistry data Result {
12 silly mapToRegistry raw: 'meteor',
12 silly mapToRegistry scope: null,
12 silly mapToRegistry escapedName: 'meteor',
12 silly mapToRegistry name: 'meteor',
12 silly mapToRegistry rawSpec: '',
12 silly mapToRegistry spec: 'latest',
12 silly mapToRegistry type: 'tag' }
13 silly mapToRegistry uri https://registry.npmjs.org/meteor
14 verbose request uri https://registry.npmjs.org/meteor
15 verbose request no auth needed
16 info attempt registry request try #1 at 1:57:23 PM
17 verbose request id e1595ede990e8608
18 http request GET https://registry.npmjs.org/meteor
19 http 200 https://registry.npmjs.org/meteor
20 verbose headers { server: 'nginx/1.10.1',
20 verbose headers 'content-type': 'application/json',
20 verbose headers 'last-modified': 'Sun, 13 Aug 2017 15:17:25 GMT',
20 verbose headers etag: 'W/"59906d85-279c"',
20 verbose headers 'content-encoding': 'gzip',
20 verbose headers 'cache-control': 'max-age=300',
20 verbose headers 'content-length': '2210',
20 verbose headers 'accept-ranges': 'bytes',
20 verbose headers date: 'Sun, 13 Aug 2017 17:57:22 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-ewr18130-EWR',
20 verbose headers 'x-cache': 'MISS',
20 verbose headers 'x-cache-hits': '0',
20 verbose headers 'x-timer': 'S1502647042.277818,VS0,VE71',
20 verbose headers vary: 'Accept-Encoding, Accept' }
21 silly get cb [ 200,
21 silly get { server: 'nginx/1.10.1',
21 silly get 'content-type': 'application/json',
21 silly get 'last-modified': 'Sun, 13 Aug 2017 15:17:25 GMT',
21 silly get etag: 'W/"59906d85-279c"',
21 silly get 'content-encoding': 'gzip',
21 silly get 'cache-control': 'max-age=300',
21 silly get 'content-length': '2210',
21 silly get 'accept-ranges': 'bytes',
21 silly get date: 'Sun, 13 Aug 2017 17:57:22 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-ewr18130-EWR',
21 silly get 'x-cache': 'MISS',
21 silly get 'x-cache-hits': '0',
21 silly get 'x-timer': 'S1502647042.277818,VS0,VE71',
21 silly get vary: 'Accept-Encoding, Accept' } ]
22 verbose get saving meteor to /Users/MAC/.npm/registry.npmjs.org/meteor/.cache.json
23 verbose correctMkdir /Users/MAC/.npm correctMkdir not in flight; initializing
24 silly install normalizeTree
25 silly loadCurrentTree Finishing
26 silly loadIdealTree Starting
27 silly install loadIdealTree
28 silly cloneCurrentTree Starting
29 silly install cloneCurrentTreeToIdealTree
30 silly cloneCurrentTree Finishing
31 silly loadShrinkwrap Starting
32 silly install loadShrinkwrap
33 silly loadShrinkwrap Finishing
34 silly loadAllDepsIntoIdealTree Starting
35 silly install loadAllDepsIntoIdealTree
36 silly resolveWithNewModule [email protected] checking installable status
37 silly cache add args [ 'meteor', null ]
38 verbose cache add spec meteor
39 silly cache add parsed spec Result {
39 silly cache add raw: 'meteor',
39 silly cache add scope: null,
39 silly cache add escapedName: 'meteor',
39 silly cache add name: 'meteor',
39 silly cache add rawSpec: '',
39 silly cache add spec: 'latest',
39 silly cache add type: 'tag' }
40 silly addNamed meteor@latest
41 verbose addNamed "latest" is being treated as a dist-tag for meteor
42 info addNameTag [ 'meteor', 'latest' ]
43 silly mapToRegistry name meteor
44 silly mapToRegistry using default registry
45 silly mapToRegistry registry https://registry.npmjs.org/
46 silly mapToRegistry data Result {
46 silly mapToRegistry raw: 'meteor',
46 silly mapToRegistry scope: null,
46 silly mapToRegistry escapedName: 'meteor',
46 silly mapToRegistry name: 'meteor',
46 silly mapToRegistry rawSpec: '',
46 silly mapToRegistry spec: 'latest',
46 silly mapToRegistry type: 'tag' }
47 silly mapToRegistry uri https://registry.npmjs.org/meteor
48 verbose addNameTag registry:https://registry.npmjs.org/meteor not in flight; fetching
49 verbose get https://registry.npmjs.org/meteor not expired, no request
50 silly addNameTag next cb for meteor with tag latest
51 silly addNamed [email protected]
52 verbose addNamed "0.5.2-1" is a plain semver version for meteor
53 silly mapToRegistry name meteor
54 silly mapToRegistry using default registry
55 silly mapToRegistry registry https://registry.npmjs.org/
56 silly mapToRegistry data Result {
56 silly mapToRegistry raw: 'meteor',
56 silly mapToRegistry scope: null,
56 silly mapToRegistry escapedName: 'meteor',
56 silly mapToRegistry name: 'meteor',
56 silly mapToRegistry rawSpec: '',
56 silly mapToRegistry spec: 'latest',
56 silly mapToRegistry type: 'tag' }
57 silly mapToRegistry uri https://registry.npmjs.org/meteor
58 verbose addRemoteTarball https://registry.npmjs.org/meteor/-/meteor-0.5.2-1.tgz not in flight; adding
59 verbose addRemoteTarball [ 'https://registry.npmjs.org/meteor/-/meteor-0.5.2-1.tgz',
59 verbose addRemoteTarball '33a11b39939a0b02296de9361904c18dd416a2dc' ]
60 info retry fetch attempt 1 at 1:57:23 PM
61 info attempt registry request try #1 at 1:57:23 PM
62 http fetch GET https://registry.npmjs.org/meteor/-/meteor-0.5.2-1.tgz
63 http fetch 200 https://registry.npmjs.org/meteor/-/meteor-0.5.2-1.tgz
64 silly fetchAndShaCheck shasum 33a11b39939a0b02296de9361904c18dd416a2dc
65 verbose addTmpTarball /var/folders/0b/glsn64dd76g18f_4njff1fc80000gn/T/npm-1209-79926aff/registry.npmjs.org/meteor/-/meteor-0.5.2-1.tgz not in flight; adding
66 verbose addTmpTarball already have metadata; skipping unpack for [email protected]
67 verbose correctMkdir /Users/MAC/.npm correctMkdir not in flight; initializing
68 silly cache afterAdd [email protected]
69 verbose afterAdd /Users/MAC/.npm/meteor/0.5.2-1/package/package.json not in flight; writing
70 verbose correctMkdir /Users/MAC/.npm correctMkdir not in flight; initializing
71 verbose afterAdd /Users/MAC/.npm/meteor/0.5.2-1/package/package.json written
72 silly fetchNamedPackageData connect
73 silly mapToRegistry name connect
74 silly mapToRegistry using default registry
75 silly mapToRegistry registry https://registry.npmjs.org/
76 silly mapToRegistry data Result {
76 silly mapToRegistry raw: 'connect',
76 silly mapToRegistry scope: null,
76 silly mapToRegistry escapedName: 'connect',
76 silly mapToRegistry name: 'connect',
76 silly mapToRegistry rawSpec: '',
76 silly mapToRegistry spec: 'latest',
76 silly mapToRegistry type: 'tag' }
77 silly mapToRegistry uri https://registry.npmjs.org/connect
78 silly fetchNamedPackageData gzippo
79 silly mapToRegistry name gzippo
80 silly mapToRegistry using default registry
81 silly mapToRegistry registry https://registry.npmjs.org/
82 silly mapToRegistry data Result {
82 silly mapToRegistry raw: 'gzippo',
82 silly mapToRegistry scope: null,
82 silly mapToRegistry escapedName: 'gzippo',
82 silly mapToRegistry name: 'gzippo',
82 silly mapToRegistry rawSpec: '',
82 silly mapToRegistry spec: 'latest',
82 silly mapToRegistry type: 'tag' }
83 silly mapToRegistry uri https://registry.npmjs.org/gzippo
84 silly fetchNamedPackageData optimist
85 silly mapToRegistry name optimist
86 silly mapToRegistry using default registry
87 silly mapToRegistry registry https://registry.npmjs.org/
88 silly mapToRegistry data Result {
88 silly mapToRegistry raw: 'optimist',
88 silly mapToRegistry scope: null,
88 silly mapToRegistry escapedName: 'optimist',
88 silly mapToRegistry name: 'optimist',
88 silly mapToRegistry rawSpec: '',
88 silly mapToRegistry spec: 'latest',
88 silly mapToRegistry type: 'tag' }
89 silly mapToRegistry uri https://registry.npmjs.org/optimist
90 silly fetchNamedPackageData coffee-script
91 silly mapToRegistry name coffee-script
92 silly mapToRegistry using default registry
93 silly mapToRegistry registry https://registry.npmjs.org/
94 silly mapToRegistry data Result {
94 silly mapToRegistry raw: 'coffee-script',
94 silly mapToRegistry scope: null,
94 silly mapToRegistry escapedName: 'coffee-script',
94 silly mapToRegistry name: 'coffee-script',
94 silly mapToRegistry rawSpec: '',
94 silly mapToRegistry spec: 'latest',
94 silly mapToRegistry type: 'tag' }
95 silly mapToRegistry uri https://registry.npmjs.org/coffee-script
96 silly fetchNamedPackageData less
97 silly mapToRegistry name less
98 silly mapToRegistry using default registry
99 silly mapToRegistry registry https://registry.npmjs.org/
100 silly mapToRegistry data Result {
100 silly mapToRegistry raw: 'less',
100 silly mapToRegistry scope: null,
100 silly mapToRegistry escapedName: 'less',
100 silly mapToRegistry name: 'less',
100 silly mapToRegistry rawSpec: '',
100 silly mapToRegistry spec: 'latest',
100 silly mapToRegistry type: 'tag' }
101 silly mapToRegistry uri https://registry.npmjs.org/less
102 silly fetchNamedPackageData stylus
103 silly mapToRegistry name stylus
104 silly mapToRegistry using default registry
105 silly mapToRegistry registry https://registry.npmjs.org/
106 silly mapToRegistry data Result {
106 silly mapToRegistry raw: 'stylus',
106 silly mapToRegistry scope: null,
106 silly mapToRegistry escapedName: 'stylus',
106 silly mapToRegistry name: 'stylus',
106 silly mapToRegistry rawSpec: '',
106 silly mapToRegistry spec: 'latest',
106 silly mapToRegistry type: 'tag' }
107 silly mapToRegistry uri https://registry.npmjs.org/stylus
108 silly fetchNamedPackageData nib
109 silly mapToRegistry name nib
110 silly mapToRegistry using default registry
111 silly mapToRegistry registry https://registry.npmjs.org/
112 silly mapToRegistry data Result {
112 silly mapToRegistry raw: 'nib',
112 silly mapToRegistry scope: null,
112 silly mapToRegistry escapedName: 'nib',
112 silly mapToRegistry name: 'nib',
112 silly mapToRegistry rawSpec: '',
112 silly mapToRegistry spec: 'latest',
112 silly mapToRegistry type: 'tag' }
113 silly mapToRegistry uri https://registry.npmjs.org/nib
114 silly fetchNamedPackageData mime
115 silly mapToRegistry name mime
116 silly mapToRegistry using default registry
117 silly mapToRegistry registry https://registry.npmjs.org/
118 silly mapToRegistry data Result {
118 silly mapToRegistry raw: 'mime',
118 silly mapToRegistry scope: null,
118 silly mapToRegistry escapedName: 'mime',
118 silly mapToRegistry name: 'mime',
118 silly mapToRegistry rawSpec: '',
118 silly mapToRegistry spec: 'latest',
118 silly mapToRegistry type: 'tag' }
119 silly mapToRegistry uri https://registry.npmjs.org/mime
120 silly fetchNamedPackageData semver
121 silly mapToRegistry name semver
122 silly mapToRegistry using default registry
123 silly mapToRegistry registry https://registry.npmjs.org/
124 silly mapToRegistry data Result {
124 silly mapToRegistry raw: 'semver',
124 silly mapToRegistry scope: null,
124 silly mapToRegistry escapedName: 'semver',
124 silly mapToRegistry name: 'semver',
124 silly mapToRegistry rawSpec: '',
124 silly mapToRegistry spec: 'latest',
124 silly mapToRegistry type: 'tag' }
125 silly mapToRegistry uri https://registry.npmjs.org/semver
126 silly fetchNamedPackageData handlebars
127 silly mapToRegistry name handlebars
128 silly mapToRegistry using default registry
129 silly mapToRegistry registry https://registry.npmjs.org/
130 silly mapToRegistry data Result {
130 silly mapToRegistry raw: 'handlebars',
130 silly mapToRegistry scope: null,
130 silly mapToRegistry escapedName: 'handlebars',
130 silly mapToRegistry name: 'handlebars',
130 silly mapToRegistry rawSpec: '',
130 silly mapToRegistry spec: 'latest',
130 silly mapToRegistry type: 'tag' }
131 silly mapToRegistry uri https://registry.npmjs.org/handlebars
132 silly fetchNamedPackageData mongodb
133 silly mapToRegistry name mongodb
134 silly mapToRegistry using default registry
135 silly mapToRegistry registry https://registry.npmjs.org/
136 silly mapToRegistry data Result {
136 silly mapToRegistry raw: 'mongodb',
136 silly mapToRegistry scope: null,
136 silly mapToRegistry escapedName: 'mongodb',
136 silly mapToRegistry name: 'mongodb',
136 silly mapToRegistry rawSpec: '',
136 silly mapToRegistry spec: 'latest',
136 silly mapToRegistry type: 'tag' }
137 silly mapToRegistry uri https://registry.npmjs.org/mongodb
138 silly fetchNamedPackageData uglify-js
139 silly mapToRegistry name uglify-js
140 silly mapToRegistry using default registry
141 silly mapToRegistry registry https://registry.npmjs.org/
142 silly mapToRegistry data Result {
142 silly mapToRegistry raw: 'uglify-js',
142 silly mapToRegistry scope: null,
142 silly mapToRegistry escapedName: 'uglify-js',
142 silly mapToRegistry name: 'uglify-js',
142 silly mapToRegistry rawSpec: '',
142 silly mapToRegistry spec: 'latest',
142 silly mapToRegistry type: 'tag' }
143 silly mapToRegistry uri https://registry.npmjs.org/uglify-js
144 silly fetchNamedPackageData clean-css
145 silly mapToRegistry name clean-css
146 silly mapToRegistry using default registry
147 silly mapToRegistry registry https://registry.npmjs.org/
148 silly mapToRegistry data Result {
148 silly mapToRegistry raw: 'clean-css',
148 silly mapToRegistry scope: null,
148 silly mapToRegistry escapedName: 'clean-css',
148 silly mapToRegistry name: 'clean-css',
148 silly mapToRegistry rawSpec: '',
148 silly mapToRegistry spec: 'latest',
148 silly mapToRegistry type: 'tag' }
149 silly mapToRegistry uri https://registry.npmjs.org/clean-css
150 silly fetchNamedPackageData useragent
151 silly mapToRegistry name useragent
152 silly mapToRegistry using default registry
153 silly mapToRegistry registry https://registry.npmjs.org/
154 silly mapToRegistry data Result {
154 silly mapToRegistry raw: 'useragent',
154 silly mapToRegistry scope: null,
154 silly mapToRegistry escapedName: 'useragent',
154 silly mapToRegistry name: 'useragent',
154 silly mapToRegistry rawSpec: '',
154 silly mapToRegistry spec: 'latest',
154 silly mapToRegistry type: 'tag' }
155 silly mapToRegistry uri https://registry.npmjs.org/useragent
156 silly fetchNamedPackageData request
157 silly mapToRegistry name request
158 silly mapToRegistry using default registry
159 silly mapToRegistry registry https://registry.npmjs.org/
160 silly mapToRegistry data Result {
160 silly mapToRegistry raw: 'request',
160 silly mapToRegistry scope: null,
160 silly mapToRegistry escapedName: 'request',
160 silly mapToRegistry name: 'request',
160 silly mapToRegistry rawSpec: '',
160 silly mapToRegistry spec: 'latest',
160 silly mapToRegistry type: 'tag' }
161 silly mapToRegistry uri https://registry.npmjs.org/request
162 silly fetchNamedPackageData simplesmtp
163 silly mapToRegistry name simplesmtp
164 silly mapToRegistry using default registry
165 silly mapToRegistry registry https://registry.npmjs.org/
166 silly mapToRegistry data Result {
166 silly mapToRegistry raw: 'simplesmtp',
166 silly mapToRegistry scope: null,
166 silly mapToRegistry escapedName: 'simplesmtp',
166 silly mapToRegistry name: 'simplesmtp',
166 silly mapToRegistry rawSpec: '',
166 silly mapToRegistry spec: 'latest',
166 silly mapToRegistry type: 'tag' }
167 silly mapToRegistry uri https://registry.npmjs.org/simplesmtp
168 silly fetchNamedPackageData stream-buffers
169 silly mapToRegistry name stream-buffers
170 silly mapToRegistry using default registry
171 silly mapToRegistry registry https://registry.npmjs.org/
172 silly mapToRegistry data Result {
172 silly mapToRegistry raw: 'stream-buffers',
172 silly mapToRegistry scope: null,
172 silly mapToRegistry escapedName: 'stream-buffers',
172 silly mapToRegistry name: 'stream-buffers',
172 silly mapToRegistry rawSpec: '',
172 silly mapToRegistry spec: 'latest',
172 silly mapToRegistry type: 'tag' }
173 silly mapToRegistry uri https://registry.npmjs.org/stream-buffers
174 silly fetchNamedPackageData keypress
175 silly mapToRegistry name keypress
176 silly mapToRegistry using default registry
177 silly mapToRegistry registry https://registry.npmjs.org/
178 silly mapToRegistry data Result {
178 silly mapToRegistry raw: 'keypress',
178 silly mapToRegistry scope: null,
178 silly mapToRegistry escapedName: 'keypress',
178 silly mapToRegistry name: 'keypress',
178 silly mapToRegistry rawSpec: '',
178 silly mapToRegistry spec: 'latest',
178 silly mapToRegistry type: 'tag' }
179 silly mapToRegistry uri https://registry.npmjs.org/keypress
180 silly fetchNamedPackageData sockjs
181 silly mapToRegistry name sockjs
182 silly mapToRegistry using default registry
183 silly mapToRegistry registry https://registry.npmjs.org/
184 silly mapToRegistry data Result {
184 silly mapToRegistry raw: 'sockjs',
184 silly mapToRegistry scope: null,
184 silly mapToRegistry escapedName: 'sockjs',
184 silly mapToRegistry name: 'sockjs',
184 silly mapToRegistry rawSpec: '',
184 silly mapToRegistry spec: 'latest',
184 silly mapToRegistry type: 'tag' }
185 silly mapToRegistry uri https://registry.npmjs.org/sockjs
186 silly fetchNamedPackageData http-proxy
187 silly mapToRegistry name http-proxy
188 silly mapToRegistry using default registry
189 silly mapToRegistry registry https://registry.npmjs.org/
190 silly mapToRegistry data Result {
190 silly mapToRegistry raw: 'http-proxy',
190 silly mapToRegistry scope: null,
190 silly mapToRegistry escapedName: 'http-proxy',
190 silly mapToRegistry name: 'http-proxy',
190 silly mapToRegistry rawSpec: '',
190 silly mapToRegistry spec: 'latest',
190 silly mapToRegistry type: 'tag' }
191 silly mapToRegistry uri https://registry.npmjs.org/http-proxy
192 silly fetchNamedPackageData progress
193 silly mapToRegistry name progress
194 silly mapToRegistry using default registry
195 silly mapToRegistry registry https://registry.npmjs.org/
196 silly mapToRegistry data Result {
196 silly mapToRegistry raw: 'progress',
196 silly mapToRegistry scope: null,
196 silly mapToRegistry escapedName: 'progress',
196 silly mapToRegistry name: 'progress',
196 silly mapToRegistry rawSpec: '',
196 silly mapToRegistry spec: 'latest',
196 silly mapToRegistry type: 'tag' }
197 silly mapToRegistry uri https://registry.npmjs.org/progress
198 silly fetchNamedPackageData mailcomposer
199 silly mapToRegistry name mailcomposer
200 silly mapToRegistry using default registry
201 silly mapToRegistry registry https://registry.npmjs.org/
202 silly mapToRegistry data Result {
202 silly mapToRegistry raw: 'mailcomposer',
202 silly mapToRegistry scope: null,
202 silly mapToRegistry escapedName: 'mailcomposer',
202 silly mapToRegistry name: 'mailcomposer',
202 silly mapToRegistry rawSpec: '',
202 silly mapToRegistry spec: 'latest',
202 silly mapToRegistry type: 'tag' }
203 silly mapToRegistry uri https://registry.npmjs.org/mailcomposer
204 silly fetchNamedPackageData fibers
205 silly mapToRegistry name fibers
206 silly mapToRegistry using default registry
207 silly mapToRegistry registry https://registry.npmjs.org/
208 silly mapToRegistry data Result {
208 silly mapToRegistry raw: 'fibers',
208 silly mapToRegistry scope: null,
208 silly mapToRegistry escapedName: 'fibers',
208 silly mapToRegistry name: 'fibers',
208 silly mapToRegistry rawSpec: '',
208 silly mapToRegistry spec: 'latest',
208 silly mapToRegistry type: 'tag' }
209 silly mapToRegistry uri https://registry.npmjs.org/fibers
210 verbose request uri https://registry.npmjs.org/connect
211 verbose request no auth needed
212 info attempt registry request try #1 at 1:57:23 PM
213 http request GET https://registry.npmjs.org/connect
214 verbose request uri https://registry.npmjs.org/gzippo
215 verbose request no auth needed
216 info attempt registry request try #1 at 1:57:23 PM
217 http request GET https://registry.npmjs.org/gzippo
218 verbose request uri https://registry.npmjs.org/optimist
219 verbose request no auth needed
220 info attempt registry request try #1 at 1:57:23 PM
221 http request GET https://registry.npmjs.org/optimist
222 verbose request uri https://registry.npmjs.org/coffee-script
223 verbose request no auth needed
224 info attempt registry request try #1 at 1:57:23 PM
225 http request GET https://registry.npmjs.org/coffee-script
226 verbose request uri https://registry.npmjs.org/less
227 verbose request no auth needed
228 info attempt registry request try #1 at 1:57:23 PM
229 http request GET https://registry.npmjs.org/less
230 verbose request uri https://registry.npmjs.org/stylus
231 verbose request no auth needed
232 info attempt registry request try #1 at 1:57:23 PM
233 http request GET https://registry.npmjs.org/stylus
234 verbose request uri https://registry.npmjs.org/nib
235 verbose request no auth needed
236 info attempt registry request try #1 at 1:57:23 PM
237 http request GET https://registry.npmjs.org/nib
238 verbose request uri https://registry.npmjs.org/semver
239 verbose request no auth needed
240 info attempt registry request try #1 at 1:57:23 PM
241 http request GET https://registry.npmjs.org/semver
242 verbose request uri https://registry.npmjs.org/handlebars
243 verbose request no auth needed
244 info attempt registry request try #1 at 1:57:23 PM
245 http request GET https://registry.npmjs.org/handlebars
246 verbose request uri https://registry.npmjs.org/mongodb
247 verbose request no auth needed
248 info attempt registry request try #1 at 1:57:23 PM
249 http request GET https://registry.npmjs.org/mongodb
250 verbose request uri https://registry.npmjs.org/uglify-js
251 verbose request no auth needed
252 info attempt registry request try #1 at 1:57:23 PM
253 http request GET https://registry.npmjs.org/uglify-js
254 verbose request uri https://registry.npmjs.org/clean-css
255 verbose request no auth needed
256 info attempt registry request try #1 at 1:57:23 PM
257 http request GET https://registry.npmjs.org/clean-css
258 verbose request uri https://registry.npmjs.org/useragent
259 verbose request no auth needed
260 info attempt registry request try #1 at 1:57:23 PM
261 http request GET https://registry.npmjs.org/useragent
262 verbose request uri https://registry.npmjs.org/simplesmtp
263 verbose request no auth needed
264 info attempt registry request try #1 at 1:57:23 PM
265 http request GET https://registry.npmjs.org/simplesmtp
266 verbose request uri https://registry.npmjs.org/stream-buffers
267 verbose request no auth needed
268 info attempt registry request try #1 at 1:57:23 PM
269 http request GET https://registry.npmjs.org/stream-buffers
270 verbose request uri https://registry.npmjs.org/keypress
271 verbose request no auth needed
272 info attempt registry request try #1 at 1:57:23 PM
273 http request GET https://registry.npmjs.org/keypress
274 verbose request uri https://registry.npmjs.org/sockjs
275 verbose request no auth needed
276 info attempt registry request try #1 at 1:57:23 PM
277 http request GET https://registry.npmjs.org/sockjs
278 verbose request uri https://registry.npmjs.org/http-proxy
279 verbose request no auth needed
280 info attempt registry request try #1 at 1:57:23 PM
281 http request GET https://registry.npmjs.org/http-proxy
282 verbose request uri https://registry.npmjs.org/mailcomposer
283 verbose request no auth needed
284 info attempt registry request try #1 at 1:57:23 PM
285 http request GET https://registry.npmjs.org/mailcomposer
286 verbose request uri https://registry.npmjs.org/fibers
287 verbose request no auth needed
288 info attempt registry request try #1 at 1:57:23 PM
289 http request GET https://registry.npmjs.org/fibers
290 verbose request uri https://registry.npmjs.org/progress
291 verbose request no auth needed
292 info attempt registry request try #1 at 1:57:23 PM
293 verbose etag W/"59741a2a-50c2"
294 verbose lastModified Sun, 23 Jul 2017 03:38:18 GMT
295 http request GET https://registry.npmjs.org/progress
296 verbose request uri https://registry.npmjs.org/mime
297 verbose request no auth needed
298 info attempt registry request try #1 at 1:57:23 PM
299 verbose etag W/"598c25ae-5d01"
300 verbose lastModified Thu, 10 Aug 2017 09:21:50 GMT
301 http request GET https://registry.npmjs.org/mime
302 verbose request uri https://registry.npmjs.org/request
303 verbose request no auth needed
304 info attempt registry request try #1 at 1:57:23 PM
305 verbose etag W/"598adbe1-37af5"
306 verbose lastModified Wed, 09 Aug 2017 09:54:41 GMT
307 http request GET https://registry.npmjs.org/request
308 http 200 https://registry.npmjs.org/connect
309 verbose headers { server: 'nginx/1.10.1',
309 verbose headers 'content-type': 'application/json',
309 verbose headers 'last-modified': 'Thu, 10 Aug 2017 16:36:42 GMT',
309 verbose headers etag: 'W/"598c8b9a-5820c"',
309 verbose headers 'content-encoding': 'gzip',
309 verbose headers 'cache-control': 'max-age=300',
309 verbose headers 'content-length': '26553',
309 verbose headers 'accept-ranges': 'bytes',
309 verbose headers date: 'Sun, 13 Aug 2017 17:57:22 GMT',
309 verbose headers via: '1.1 varnish',
309 verbose headers age: '54',
309 verbose headers connection: 'keep-alive',
309 verbose headers 'x-served-by': 'cache-ewr18130-EWR',
309 verbose headers 'x-cache': 'HIT',
309 verbose headers 'x-cache-hits': '1',
309 verbose headers 'x-timer': 'S1502647043.619607,VS0,VE0',
309 verbose headers vary: 'Accept-Encoding, Accept' }
310 silly get cb [ 200,
310 silly get { server: 'nginx/1.10.1',
310 silly get 'content-type': 'application/json',
310 silly get 'last-modified': 'Thu, 10 Aug 2017 16:36:42 GMT',
310 silly get etag: 'W/"598c8b9a-5820c"',
310 silly get 'content-encoding': 'gzip',
310 silly get 'cache-control': 'max-age=300',
310 silly get 'content-length': '26553',
310 silly get 'accept-ranges': 'bytes',
310 silly get date: 'Sun, 13 Aug 2017 17:57:22 GMT',
310 silly get via: '1.1 varnish',
310 silly get age: '54',
310 silly get connection: 'keep-alive',
310 silly get 'x-served-by': 'cache-ewr18130-EWR',
310 silly get 'x-cache': 'HIT',
310 silly get 'x-cache-hits': '1',
310 silly get 'x-timer': 'S1502647043.619607,VS0,VE0',
310 silly get vary: 'Accept-Encoding, Accept' } ]
311 verbose get saving connect to /Users/MAC/.npm/registry.npmjs.org/connect/.cache.json
312 verbose correctMkdir /Users/MAC/.npm correctMkdir not in flight; initializing
313 silly resolveWithNewModule [email protected] checking installable status
314 silly cache add args [ '[email protected]', null ]
315 verbose cache add spec [email protected]
316 silly cache add parsed spec Result {
316 silly cache add raw: '[email protected]',
316 silly cache add scope: null,
316 silly cache add escapedName: 'connect',
316 silly cache add name: 'connect',
316 silly cache add rawSpec: '1.9.2',
316 silly cache add spec: '1.9.2',
316 silly cache add type: 'version' }
317 silly addNamed [email protected]
318 verbose addNamed "1.9.2" is a plain semver version for connect
319 silly mapToRegistry name connect
320 silly mapToRegistry using default registry
321 silly mapToRegistry registry https://registry.npmjs.org/
322 silly mapToRegistry data Result {
322 silly mapToRegistry raw: 'connect',
322 silly mapToRegistry scope: null,
322 silly mapToRegistry escapedName: 'connect',
322 silly mapToRegistry name: 'connect',
322 silly mapToRegistry rawSpec: '',
322 silly mapToRegistry spec: 'latest',
322 silly mapToRegistry type: 'tag' }
323 silly mapToRegistry uri https://registry.npmjs.org/connect
324 verbose addNameVersion registry:https://registry.npmjs.org/connect not in flight; fetching
325 verbose get https://registry.npmjs.org/connect not expired, no request
326 warn deprecated [email protected]: connect 1.x series is deprecated
327 silly mapToRegistry name connect
328 silly mapToRegistry using default registry
329 silly mapToRegistry registry https://registry.npmjs.org/
330 silly mapToRegistry data Result {
330 silly mapToRegistry raw: 'connect',
330 silly mapToRegistry scope: null,
330 silly mapToRegistry escapedName: 'connect',
330 silly mapToRegistry name: 'connect',
330 silly mapToRegistry rawSpec: '',
330 silly mapToRegistry spec: 'latest',
330 silly mapToRegistry type: 'tag' }
331 silly mapToRegistry uri https://registry.npmjs.org/connect
332 verbose addRemoteTarball https://registry.npmjs.org/connect/-/connect-1.9.2.tgz not in flight; adding
333 verbose addRemoteTarball [ 'https://registry.npmjs.org/connect/-/connect-1.9.2.tgz',
333 verbose addRemoteTarball '42880a22e9438ae59a8add74e437f58ae8e52807' ]
334 info retry fetch attempt 1 at 1:57:23 PM
335 info attempt registry request try #1 at 1:57:23 PM
336 http fetch GET https://registry.npmjs.org/connect/-/connect-1.9.2.tgz
337 http 200 https://registry.npmjs.org/coffee-script
338 verbose headers { server: 'nginx/1.10.1',
338 verbose headers 'content-type': 'application/json',
338 verbose headers 'last-modified': 'Mon, 17 Jul 2017 06:55:42 GMT',
338 verbose headers etag: 'W/"596c5f6e-e71d"',
338 verbose headers 'content-encoding': 'gzip',
338 verbose headers 'cache-control': 'max-age=300',
338 verbose headers 'content-length': '8278',
338 verbose headers 'accept-ranges': 'bytes',
338 verbose headers date: 'Sun, 13 Aug 2017 17:57:22 GMT',
338 verbose headers via: '1.1 varnish',
338 verbose headers age: '221',
338 verbose headers connection: 'keep-alive',
338 verbose headers 'x-served-by': 'cache-ewr18135-EWR',
338 verbose headers 'x-cache': 'HIT',
338 verbose headers 'x-cache-hits': '1',
338 verbose headers 'x-timer': 'S1502647043.690020,VS0,VE0',
338 verbose headers vary: 'Accept-Encoding, Accept' }
339 silly get cb [ 200,
339 silly get { server: 'nginx/1.10.1',
339 silly get 'content-type': 'application/json',
339 silly get 'last-modified': 'Mon, 17 Jul 2017 06:55:42 GMT',
339 silly get etag: 'W/"596c5f6e-e71d"',
339 silly get 'content-encoding': 'gzip',
339 silly get 'cache-control': 'max-age=300',
339 silly get 'content-length': '8278',
339 silly get 'accept-ranges': 'bytes',
339 silly get date: 'Sun, 13 Aug 2017 17:57:22 GMT',
339 silly get via: '1.1 varnish',
339 silly get age: '221',
339 silly get connection: 'keep-alive',
339 silly get 'x-served-by': 'cache-ewr18135-EWR',
339 silly get 'x-cache': 'HIT',
339 silly get 'x-cache-hits': '1',
339 silly get 'x-timer': 'S1502647043.690020,VS0,VE0',
339 silly get vary: 'Accept-Encoding, Accept' } ]
340 verbose get saving coffee-script to /Users/MAC/.npm/registry.npmjs.org/coffee-script/.cache.json
341 verbose correctMkdir /Users/MAC/.npm correctMkdir not in flight; initializing
342 http 304 https://registry.npmjs.org/mime
343 verbose headers { date: 'Sun, 13 Aug 2017 17:57:22 GMT',
343 verbose headers via: '1.1 varnish',
343 verbose headers 'cache-control': 'max-age=300',
343 verbose headers etag: 'W/"598c25ae-5d01"',
343 verbose headers age: '61',
343 verbose headers connection: 'keep-alive',
343 verbose headers 'x-served-by': 'cache-ewr18120-EWR',
343 verbose headers 'x-cache': 'HIT',
343 verbose headers 'x-cache-hits': '1',
343 verbose headers 'x-timer': 'S1502647043.694337,VS0,VE0',
343 verbose headers vary: 'Accept-Encoding, Accept' }
344 silly get cb [ 304,
344 silly get { date: 'Sun, 13 Aug 2017 17:57:22 GMT',
344 silly get via: '1.1 varnish',
344 silly get 'cache-control': 'max-age=300',
344 silly get etag: 'W/"598c25ae-5d01"',
344 silly get age: '61',
344 silly get connection: 'keep-alive',
344 silly get 'x-served-by': 'cache-ewr18120-EWR',
344 silly get 'x-cache': 'HIT',
344 silly get 'x-cache-hits': '1',
344 silly get 'x-timer': 'S1502647043.694337,VS0,VE0',
344 silly get vary: 'Accept-Encoding, Accept' } ]
345 verbose etag https://registry.npmjs.org/mime from cache
346 verbose get saving mime to /Users/MAC/.npm/registry.npmjs.org/mime/.cache.json
347 verbose correctMkdir /Users/MAC/.npm correctMkdir not in flight; initializing
348 http fetch 200 https://registry.npmjs.org/connect/-/connect-1.9.2.tgz
349 http 200 https://registry.npmjs.org/keypress
350 verbose headers { server: 'nginx/1.10.1',
350 verbose headers 'content-type': 'application/json',
350 verbose headers 'last-modified': 'Mon, 10 Apr 2017 15:20:15 GMT',
350 verbose headers etag: 'W/"58eba2af-5130"',
350 verbose headers 'content-encoding': 'gzip',
350 verbose headers 'cache-control': 'max-age=300',
350 verbose headers 'content-length': '2694',
350 verbose headers 'accept-ranges': 'bytes',
350 verbose headers date: 'Sun, 13 Aug 2017 17:57:22 GMT',
350 verbose headers via: '1.1 varnish',
350 verbose headers age: '221',
350 verbose headers connection: 'keep-alive',
350 verbose headers 'x-served-by': 'cache-ewr18122-EWR',
350 verbose headers 'x-cache': 'HIT',
350 verbose headers 'x-cache-hits': '1',
350 verbose headers 'x-timer': 'S1502647043.694318,VS0,VE0',
350 verbose headers vary: 'Accept-Encoding, Accept' }
351 silly get cb [ 200,
351 silly get { server: 'nginx/1.10.1',
351 silly get 'content-type': 'application/json',
351 silly get 'last-modified': 'Mon, 10 Apr 2017 15:20:15 GMT',
351 silly get etag: 'W/"58eba2af-5130"',
351 silly get 'content-encoding': 'gzip',
351 silly get 'cache-control': 'max-age=300',
351 silly get 'content-length': '2694',
351 silly get 'accept-ranges': 'bytes',
351 silly get date: 'Sun, 13 Aug 2017 17:57:22 GMT',
351 silly get via: '1.1 varnish',
351 silly get age: '221',
351 silly get connection: 'keep-alive',
351 silly get 'x-served-by': 'cache-ewr18122-EWR',
351 silly get 'x-cache': 'HIT',
351 silly get 'x-cache-hits': '1',
351 silly get 'x-timer': 'S1502647043.694318,VS0,VE0',
351 silly get vary: 'Accept-Encoding, Accept' } ]
352 verbose get saving keypress to /Users/MAC/.npm/registry.npmjs.org/keypress/.cache.json
353 verbose correctMkdir /Users/MAC/.npm correctMkdir not in flight; initializing
354 silly resolveWithNewModule [email protected] checking installable status
355 silly cache add args [ '[email protected]', null ]
356 verbose cache add spec [email protected]
357 silly cache add parsed spec Result {
357 silly cache add raw: '[email protected]',
357 silly cache add scope: null,
357 silly cache add escapedName: 'coffee-script',
357 silly cache add name: 'coffee-script',
357 silly cache add rawSpec: '1.4.0',
357 silly cache add spec: '1.4.0',
357 silly cache add type: 'version' }
358 silly addNamed [email protected]
359 verbose addNamed "1.4.0" is a plain semver version for coffee-script
360 silly mapToRegistry name coffee-script
361 silly mapToRegistry using default registry
362 silly mapToRegistry registry https://registry.npmjs.org/
363 silly mapToRegistry data Result {
363 silly mapToRegistry raw: 'coffee-script',
363 silly mapToRegistry scope: null,
363 silly mapToRegistry escapedName: 'coffee-script',
363 silly mapToRegistry name: 'coffee-script',
363 silly mapToRegistry rawSpec: '',
363 silly mapToRegistry spec: 'latest',
363 silly mapToRegistry type: 'tag' }
364 silly mapToRegistry uri https://registry.npmjs.org/coffee-script
365 verbose addNameVersion registry:https://registry.npmjs.org/coffee-script not in flight; fetching
366 silly resolveWithNewModule [email protected] checking installable status
367 silly cache add args [ '[email protected]', null ]
368 verbose cache add spec [email protected]
369 silly cache add parsed spec Result {
369 silly cache add raw: '[email protected]',
369 silly cache add scope: null,
369 silly cache add escapedName: 'mime',
369 silly cache add name: 'mime',
369 silly cache add rawSpec: '1.2.7',
369 silly cache add spec: '1.2.7',
369 silly cache add type: 'version' }
370 silly addNamed [email protected]
371 verbose addNamed "1.2.7" is a plain semver version for mime
372 silly mapToRegistry name mime
373 silly mapToRegistry using default registry
374 silly mapToRegistry registry https://registry.npmjs.org/
375 silly mapToRegistry data Result {
375 silly mapToRegistry raw: 'mime',
375 silly mapToRegistry scope: null,
375 silly mapToRegistry escapedName: 'mime',
375 silly mapToRegistry name: 'mime',
375 silly mapToRegistry rawSpec: '',
375 silly mapToRegistry spec: 'latest',
375 silly mapToRegistry type: 'tag' }
376 silly mapToRegistry uri https://registry.npmjs.org/mime
377 verbose addNameVersion registry:https://registry.npmjs.org/mime not in flight; fetching
378 http 304 https://registry.npmjs.org/progress
379 verbose headers { date: 'Sun, 13 Aug 2017 17:57:22 GMT',
379 verbose headers via: '1.1 varnish',
379 verbose headers 'cache-control': 'max-age=300',
379 verbose headers etag: 'W/"59741a2a-50c2"',
379 verbose headers age: '218',
379 verbose headers connection: 'keep-alive',
379 verbose headers 'x-served-by': 'cache-ewr18143-EWR',
379 verbose headers 'x-cache': 'HIT',
379 verbose headers 'x-cache-hits': '1',
379 verbose headers 'x-timer': 'S1502647043.712647,VS0,VE0',
379 verbose headers vary: 'Accept-Encoding, Accept' }
380 silly get cb [ 304,
380 silly get { date: 'Sun, 13 Aug 2017 17:57:22 GMT',
380 silly get via: '1.1 varnish',
380 silly get 'cache-control': 'max-age=300',
380 silly get etag: 'W/"59741a2a-50c2"',
380 silly get age: '218',
380 silly get connection: 'keep-alive',
380 silly get 'x-served-by': 'cache-ewr18143-EWR',
380 silly get 'x-cache': 'HIT',
380 silly get 'x-cache-hits': '1',
380 silly get 'x-timer': 'S1502647043.712647,VS0,VE0',
380 silly get vary: 'Accept-Encoding, Accept' } ]
381 verbose etag https://registry.npmjs.org/progress from cache
382 verbose get saving progress to /Users/MAC/.npm/registry.npmjs.org/progress/.cache.json
383 verbose correctMkdir /Users/MAC/.npm correctMkdir not in flight; initializing
384 silly fetchAndShaCheck shasum 42880a22e9438ae59a8add74e437f58ae8e52807
385 verbose get https://registry.npmjs.org/coffee-script not expired, no request
386 http 200 https://registry.npmjs.org/handlebars
387 verbose headers { server: 'nginx/1.10.1',
387 verbose headers 'content-type': 'application/json',
387 verbose headers 'last-modified': 'Wed, 09 Aug 2017 20:43:00 GMT',
387 verbose headers etag: 'W/"598b73d4-122d0"',
387 verbose headers 'content-encoding': 'gzip',
387 verbose headers 'cache-control': 'max-age=300',
387 verbose headers 'content-length': '9918',
387 verbose headers 'accept-ranges': 'bytes',
387 verbose headers date: 'Sun, 13 Aug 2017 17:57:22 GMT',
387 verbose headers via: '1.1 varnish',
387 verbose headers age: '3',
387 verbose headers connection: 'keep-alive',
387 verbose headers 'x-served-by': 'cache-ewr18121-EWR',
387 verbose headers 'x-cache': 'HIT',
387 verbose headers 'x-cache-hits': '1',
387 verbose headers 'x-timer': 'S1502647043.696903,VS0,VE0',
387 verbose headers vary: 'Accept-Encoding, Accept' }
388 silly get cb [ 200,
388 silly get { server: 'nginx/1.10.1',
388 silly get 'content-type': 'application/json',
388 silly get 'last-modified': 'Wed, 09 Aug 2017 20:43:00 GMT',
388 silly get etag: 'W/"598b73d4-122d0"',
388 silly get 'content-encoding': 'gzip',
388 silly get 'cache-control': 'max-age=300',
388 silly get 'content-length': '9918',
388 silly get 'accept-ranges': 'bytes',
388 silly get date: 'Sun, 13 Aug 2017 17:57:22 GMT',
388 silly get via: '1.1 varnish',
388 silly get age: '3',
388 silly get connection: 'keep-alive',
388 silly get 'x-served-by': 'cache-ewr18121-EWR',
388 silly get 'x-cache': 'HIT',
388 silly get 'x-cache-hits': '1',
388 silly get 'x-timer': 'S1502647043.696903,VS0,VE0',
388 silly get vary: 'Accept-Encoding, Accept' } ]
389 verbose get saving handlebars to /Users/MAC/.npm/registry.npmjs.org/handlebars/.cache.json
390 verbose correctMkdir /Users/MAC/.npm correctMkdir not in flight; initializing
391 http 200 https://registry.npmjs.org/http-proxy
392 verbose headers { server: 'nginx/1.10.1',
392 verbose headers 'content-type': 'application/json',
392 verbose headers 'last-modified': 'Sun, 06 Aug 2017 15:40:29 GMT',
392 verbose headers etag: 'W/"5987386d-23f4c"',
392 verbose headers 'content-encoding': 'gzip',
392 verbose headers 'cache-control': 'max-age=300',
392 verbose headers 'content-length': '16384',
392 verbose headers 'accept-ranges': 'bytes',
392 verbose headers date: 'Sun, 13 Aug 2017 17:57:22 GMT',
392 verbose headers via: '1.1 varnish',
392 verbose headers age: '54',
392 verbose headers connection: 'keep-alive',
392 verbose headers 'x-served-by': 'cache-ewr18120-EWR',
392 verbose headers 'x-cache': 'HIT',
392 verbose headers 'x-cache-hits': '1',
392 verbose headers 'x-timer': 'S1502647043.681155,VS0,VE0',
392 verbose headers vary: 'Accept-Encoding, Accept' }
393 silly get cb [ 200,
393 silly get { server: 'nginx/1.10.1',
393 silly get 'content-type': 'application/json',
393 silly get 'last-modified': 'Sun, 06 Aug 2017 15:40:29 GMT',
393 silly get etag: 'W/"5987386d-23f4c"',
393 silly get 'content-encoding': 'gzip',
393 silly get 'cache-control': 'max-age=300',
393 silly get 'content-length': '16384',
393 silly get 'accept-ranges': 'bytes',
393 silly get date: 'Sun, 13 Aug 2017 17:57:22 GMT',
393 silly get via: '1.1 varnish',
393 silly get age: '54',
393 silly get connection: 'keep-alive',
393 silly get 'x-served-by': 'cache-ewr18120-EWR',
393 silly get 'x-cache': 'HIT',
393 silly get 'x-cache-hits': '1',
393 silly get 'x-timer': 'S1502647043.681155,VS0,VE0',
393 silly get vary: 'Accept-Encoding, Accept' } ]
394 verbose get saving http-proxy to /Users/MAC/.npm/registry.npmjs.org/http-proxy/.cache.json
395 verbose correctMkdir /Users/MAC/.npm correctMkdir not in flight; initializing
396 http 200 https://registry.npmjs.org/optimist
397 verbose headers { server: 'nginx/1.10.1',
397 verbose headers 'content-type': 'application/json',
397 verbose headers 'last-modified': 'Tue, 08 Aug 2017 10:03:10 GMT',
397 verbose headers etag: 'W/"59898c5e-b823"',
397 verbose headers 'content-encoding': 'gzip',
397 verbose headers 'cache-control': 'max-age=300',
397 verbose headers 'content-length': '8346',
397 verbose headers 'accept-ranges': 'bytes',
397 verbose headers date: 'Sun, 13 Aug 2017 17:57:22 GMT',
397 verbose headers via: '1.1 varnish',
397 verbose headers age: '0',
397 verbose headers connection: 'keep-alive',
397 verbose headers 'x-served-by': 'cache-ewr18129-EWR',
397 verbose headers 'x-cache': 'HIT',
397 verbose headers 'x-cache-hits': '1',
397 verbose headers 'x-timer': 'S1502647043.692184,VS0,VE8',
397 verbose headers vary: 'Accept-Encoding, Accept' }
398 silly get cb [ 200,
398 silly get { server: 'nginx/1.10.1',
398 silly get 'content-type': 'application/json',
398 silly get 'last-modified': 'Tue, 08 Aug 2017 10:03:10 GMT',
398 silly get etag: 'W/"59898c5e-b823"',
398 silly get 'content-encoding': 'gzip',
398 silly get 'cache-control': 'max-age=300',
398 silly get 'content-length': '8346',
398 silly get 'accept-ranges': 'bytes',
398 silly get date: 'Sun, 13 Aug 2017 17:57:22 GMT',
398 silly get via: '1.1 varnish',
398 silly get age: '0',
398 silly get connection: 'keep-alive',
398 silly get 'x-served-by': 'cache-ewr18129-EWR',
398 silly get 'x-cache': 'HIT',
398 silly get 'x-cache-hits': '1',
398 silly get 'x-timer': 'S1502647043.692184,VS0,VE8',
398 silly get vary: 'Accept-Encoding, Accept' } ]
399 verbose get saving optimist to /Users/MAC/.npm/registry.npmjs.org/optimist/.cache.json
400 verbose correctMkdir /Users/MAC/.npm correctMkdir not in flight; initializing
401 silly mapToRegistry name coffee-script
402 silly mapToRegistry using default registry
403 silly mapToRegistry registry https://registry.npmjs.org/
404 silly mapToRegistry data Result {
404 silly mapToRegistry raw: 'coffee-script',
404 silly mapToRegistry scope: null,
404 silly mapToRegistry escapedName: 'coffee-script',
404 silly mapToRegistry name: 'coffee-script',
404 silly mapToRegistry rawSpec: '',
404 silly mapToRegistry spec: 'latest',
404 silly mapToRegistry type: 'tag' }
405 silly mapToRegistry uri https://registry.npmjs.org/coffee-script
406 verbose addRemoteTarball https://registry.npmjs.org/coffee-script/-/coffee-script-1.4.0.tgz not in flight; adding
407 verbose addRemoteTarball [ 'https://registry.npmjs.org/coffee-script/-/coffee-script-1.4.0.tgz',
407 verbose addRemoteTarball '5e3bc8aac26c01a8e27bf107722c5655f5ad7d36' ]
408 verbose get https://registry.npmjs.org/mime not expired, no request
409 silly mapToRegistry name mime
410 silly mapToRegistry using default registry
411 silly mapToRegistry registry https://registry.npmjs.org/
412 silly mapToRegistry data Result {
412 silly mapToRegistry raw: 'mime',
412 silly mapToRegistry scope: null,
412 silly mapToRegistry escapedName: 'mime',
412 silly mapToRegistry name: 'mime',
412 silly mapToRegistry rawSpec: '',
412 silly mapToRegistry spec: 'latest',
412 silly mapToRegistry type: 'tag' }
413 silly mapToRegistry uri https://registry.npmjs.org/mime
414 verbose addRemoteTarball https://registry.npmjs.org/mime/-/mime-1.2.7.tgz not in flight; adding
415 verbose addRemoteTarball [ 'https://registry.npmjs.org/mime/-/mime-1.2.7.tgz',
415 verbose addRemoteTarball 'c7a13f33a7073d9900f288436b06b3a16200865b' ]
416 verbose addTmpTarball /var/folders/0b/glsn64dd76g18f_4njff1fc80000gn/T/npm-1209-79926aff/registry.npmjs.org/connect/-/connect-1.9.2.tgz not in flight; adding
417 verbose addTmpTarball already have metadata; skipping unpack for [email protected]
418 verbose correctMkdir /Users/MAC/.npm correctMkdir not in flight; initializing
419 http 200 https://registry.npmjs.org/semver
420 verbose headers { server: 'nginx/1.10.1',
420 verbose headers 'content-type': 'application/json',
420 verbose headers 'last-modified': 'Mon, 07 Aug 2017 05:34:53 GMT',
420 verbose headers etag: 'W/"5987fbfd-126b0"',
420 verbose headers 'content-encoding': 'gzip',
420 verbose headers 'cache-control': 'max-age=300',
420 verbose headers 'content-length': '12888',
420 verbose headers 'accept-ranges': 'bytes',
420 verbose headers date: 'Sun, 13 Aug 2017 17:57:22 GMT',
420 verbose headers via: '1.1 varnish',
420 verbose headers age: '211',
420 verbose headers connection: 'keep-alive',
420 verbose headers 'x-served-by': 'cache-ewr18134-EWR',
420 verbose headers 'x-cache': 'HIT',
420 verbose headers 'x-cache-hits': '2',
420 verbose headers 'x-timer': 'S1502647043.692437,VS0,VE0',
420 verbose headers vary: 'Accept-Encoding, Accept' }
421 silly get cb [ 200,
421 silly get { server: 'nginx/1.10.1',
421 silly get 'content-type': 'application/json',
421 silly get 'last-modified': 'Mon, 07 Aug 2017 05:34:53 GMT',
421 silly get etag: 'W/"5987fbfd-126b0"',
421 silly get 'content-encoding': 'gzip',
421 silly get 'cache-control': 'max-age=300',
421 silly get 'content-length': '12888',
421 silly get 'accept-ranges': 'bytes',
421 silly get date: 'Sun, 13 Aug 2017 17:57:22 GMT',
421 silly get via: '1.1 varnish',
421 silly get age: '211',
421 silly get connection: 'keep-alive',
421 silly get 'x-served-by': 'cache-ewr18134-EWR',
421 silly get 'x-cache': 'HIT',
421 silly get 'x-cache-hits': '2',
421 silly get 'x-timer': 'S1502647043.692437,VS0,VE0',
421 silly get vary: 'Accept-Encoding, Accept' } ]
422 verbose get saving semver to /Users/MAC/.npm/registry.npmjs.org/semver/.cache.json
423 verbose correctMkdir /Users/MAC/.npm correctMkdir not in flight; initializing
424 info retry fetch attempt 1 at 1:57:23 PM
425 info attempt registry request try #1 at 1:57:23 PM
426 http fetch GET https://registry.npmjs.org/coffee-script/-/coffee-script-1.4.0.tgz
427 silly resolveWithNewModule [email protected] checking installable status
428 silly cache add args [ '[email protected]', null ]
429 verbose cache add spec [email protected]
430 silly cache add parsed spec Result {
430 silly cache add raw: '[email protected]',
430 silly cache add scope: null,
430 silly cache add escapedName: 'keypress',