-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnpm-debug.log
18346 lines (18346 loc) · 904 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 '-g',
1 verbose cli 'yarn' ]
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 yarn
8 silly fetchNamedPackageData yarn
9 silly mapToRegistry name yarn
10 silly mapToRegistry using default registry
11 silly mapToRegistry registry https://registry.npmjs.org/
12 silly mapToRegistry data Result {
12 silly mapToRegistry raw: 'yarn',
12 silly mapToRegistry scope: null,
12 silly mapToRegistry escapedName: 'yarn',
12 silly mapToRegistry name: 'yarn',
12 silly mapToRegistry rawSpec: '',
12 silly mapToRegistry spec: 'latest',
12 silly mapToRegistry type: 'tag' }
13 silly mapToRegistry uri https://registry.npmjs.org/yarn
14 verbose request uri https://registry.npmjs.org/yarn
15 verbose request no auth needed
16 info attempt registry request try #1 at 8:23:39 PM
17 verbose request id 6daca9de63cf263e
18 verbose etag W/"582cd469-75cd"
19 verbose lastModified Wed, 16 Nov 2016 21:49:29 GMT
20 http request GET https://registry.npmjs.org/yarn
21 http 304 https://registry.npmjs.org/yarn
22 verbose headers { date: 'Thu, 17 Nov 2016 01:23:39 GMT',
22 verbose headers via: '1.1 varnish',
22 verbose headers 'cache-control': 'max-age=300',
22 verbose headers etag: 'W/"582cd469-75cd"',
22 verbose headers age: '0',
22 verbose headers connection: 'keep-alive',
22 verbose headers 'x-served-by': 'cache-dfw1823-DFW',
22 verbose headers 'x-cache': 'HIT',
22 verbose headers 'x-cache-hits': '1',
22 verbose headers 'x-timer': 'S1479345819.889426,VS0,VE34',
22 verbose headers vary: 'Accept-Encoding' }
23 silly get cb [ 304,
23 silly get { date: 'Thu, 17 Nov 2016 01:23:39 GMT',
23 silly get via: '1.1 varnish',
23 silly get 'cache-control': 'max-age=300',
23 silly get etag: 'W/"582cd469-75cd"',
23 silly get age: '0',
23 silly get connection: 'keep-alive',
23 silly get 'x-served-by': 'cache-dfw1823-DFW',
23 silly get 'x-cache': 'HIT',
23 silly get 'x-cache-hits': '1',
23 silly get 'x-timer': 'S1479345819.889426,VS0,VE34',
23 silly get vary: 'Accept-Encoding' } ]
24 verbose etag https://registry.npmjs.org/yarn from cache
25 verbose get saving yarn to /Users/zpinner/.npm/registry.npmjs.org/yarn/.cache.json
26 verbose correctMkdir /Users/zpinner/.npm correctMkdir not in flight; initializing
27 silly install normalizeTree
28 silly loadCurrentTree Finishing
29 silly loadIdealTree Starting
30 silly install loadIdealTree
31 silly cloneCurrentTree Starting
32 silly install cloneCurrentTreeToIdealTree
33 silly cloneCurrentTree Finishing
34 silly loadShrinkwrap Starting
35 silly install loadShrinkwrap
36 silly loadShrinkwrap Finishing
37 silly loadAllDepsIntoIdealTree Starting
38 silly install loadAllDepsIntoIdealTree
39 silly resolveWithNewModule [email protected] checking installable status
40 silly cache add args [ 'yarn', null ]
41 verbose cache add spec yarn
42 silly cache add parsed spec Result {
42 silly cache add raw: 'yarn',
42 silly cache add scope: null,
42 silly cache add escapedName: 'yarn',
42 silly cache add name: 'yarn',
42 silly cache add rawSpec: '',
42 silly cache add spec: 'latest',
42 silly cache add type: 'tag' }
43 silly addNamed yarn@latest
44 verbose addNamed "latest" is being treated as a dist-tag for yarn
45 info addNameTag [ 'yarn', 'latest' ]
46 silly mapToRegistry name yarn
47 silly mapToRegistry using default registry
48 silly mapToRegistry registry https://registry.npmjs.org/
49 silly mapToRegistry data Result {
49 silly mapToRegistry raw: 'yarn',
49 silly mapToRegistry scope: null,
49 silly mapToRegistry escapedName: 'yarn',
49 silly mapToRegistry name: 'yarn',
49 silly mapToRegistry rawSpec: '',
49 silly mapToRegistry spec: 'latest',
49 silly mapToRegistry type: 'tag' }
50 silly mapToRegistry uri https://registry.npmjs.org/yarn
51 verbose addNameTag registry:https://registry.npmjs.org/yarn not in flight; fetching
52 verbose get https://registry.npmjs.org/yarn not expired, no request
53 silly addNameTag next cb for yarn with tag latest
54 silly addNamed [email protected]
55 verbose addNamed "0.17.3" is a plain semver version for yarn
56 silly cache afterAdd [email protected]
57 verbose afterAdd /Users/zpinner/.npm/yarn/0.17.3/package/package.json not in flight; writing
58 verbose correctMkdir /Users/zpinner/.npm correctMkdir not in flight; initializing
59 verbose afterAdd /Users/zpinner/.npm/yarn/0.17.3/package/package.json written
60 silly fetchNamedPackageData babel-runtime
61 silly mapToRegistry name babel-runtime
62 silly mapToRegistry using default registry
63 silly mapToRegistry registry https://registry.npmjs.org/
64 silly mapToRegistry data Result {
64 silly mapToRegistry raw: 'babel-runtime',
64 silly mapToRegistry scope: null,
64 silly mapToRegistry escapedName: 'babel-runtime',
64 silly mapToRegistry name: 'babel-runtime',
64 silly mapToRegistry rawSpec: '',
64 silly mapToRegistry spec: 'latest',
64 silly mapToRegistry type: 'tag' }
65 silly mapToRegistry uri https://registry.npmjs.org/babel-runtime
66 silly fetchNamedPackageData bytes
67 silly mapToRegistry name bytes
68 silly mapToRegistry using default registry
69 silly mapToRegistry registry https://registry.npmjs.org/
70 silly mapToRegistry data Result {
70 silly mapToRegistry raw: 'bytes',
70 silly mapToRegistry scope: null,
70 silly mapToRegistry escapedName: 'bytes',
70 silly mapToRegistry name: 'bytes',
70 silly mapToRegistry rawSpec: '',
70 silly mapToRegistry spec: 'latest',
70 silly mapToRegistry type: 'tag' }
71 silly mapToRegistry uri https://registry.npmjs.org/bytes
72 silly fetchNamedPackageData camelcase
73 silly mapToRegistry name camelcase
74 silly mapToRegistry using default registry
75 silly mapToRegistry registry https://registry.npmjs.org/
76 silly mapToRegistry data Result {
76 silly mapToRegistry raw: 'camelcase',
76 silly mapToRegistry scope: null,
76 silly mapToRegistry escapedName: 'camelcase',
76 silly mapToRegistry name: 'camelcase',
76 silly mapToRegistry rawSpec: '',
76 silly mapToRegistry spec: 'latest',
76 silly mapToRegistry type: 'tag' }
77 silly mapToRegistry uri https://registry.npmjs.org/camelcase
78 silly fetchNamedPackageData chalk
79 silly mapToRegistry name chalk
80 silly mapToRegistry using default registry
81 silly mapToRegistry registry https://registry.npmjs.org/
82 silly mapToRegistry data Result {
82 silly mapToRegistry raw: 'chalk',
82 silly mapToRegistry scope: null,
82 silly mapToRegistry escapedName: 'chalk',
82 silly mapToRegistry name: 'chalk',
82 silly mapToRegistry rawSpec: '',
82 silly mapToRegistry spec: 'latest',
82 silly mapToRegistry type: 'tag' }
83 silly mapToRegistry uri https://registry.npmjs.org/chalk
84 silly fetchNamedPackageData cmd-shim
85 silly mapToRegistry name cmd-shim
86 silly mapToRegistry using default registry
87 silly mapToRegistry registry https://registry.npmjs.org/
88 silly mapToRegistry data Result {
88 silly mapToRegistry raw: 'cmd-shim',
88 silly mapToRegistry scope: null,
88 silly mapToRegistry escapedName: 'cmd-shim',
88 silly mapToRegistry name: 'cmd-shim',
88 silly mapToRegistry rawSpec: '',
88 silly mapToRegistry spec: 'latest',
88 silly mapToRegistry type: 'tag' }
89 silly mapToRegistry uri https://registry.npmjs.org/cmd-shim
90 silly fetchNamedPackageData commander
91 silly mapToRegistry name commander
92 silly mapToRegistry using default registry
93 silly mapToRegistry registry https://registry.npmjs.org/
94 silly mapToRegistry data Result {
94 silly mapToRegistry raw: 'commander',
94 silly mapToRegistry scope: null,
94 silly mapToRegistry escapedName: 'commander',
94 silly mapToRegistry name: 'commander',
94 silly mapToRegistry rawSpec: '',
94 silly mapToRegistry spec: 'latest',
94 silly mapToRegistry type: 'tag' }
95 silly mapToRegistry uri https://registry.npmjs.org/commander
96 silly fetchNamedPackageData death
97 silly mapToRegistry name death
98 silly mapToRegistry using default registry
99 silly mapToRegistry registry https://registry.npmjs.org/
100 silly mapToRegistry data Result {
100 silly mapToRegistry raw: 'death',
100 silly mapToRegistry scope: null,
100 silly mapToRegistry escapedName: 'death',
100 silly mapToRegistry name: 'death',
100 silly mapToRegistry rawSpec: '',
100 silly mapToRegistry spec: 'latest',
100 silly mapToRegistry type: 'tag' }
101 silly mapToRegistry uri https://registry.npmjs.org/death
102 silly fetchNamedPackageData debug
103 silly mapToRegistry name debug
104 silly mapToRegistry using default registry
105 silly mapToRegistry registry https://registry.npmjs.org/
106 silly mapToRegistry data Result {
106 silly mapToRegistry raw: 'debug',
106 silly mapToRegistry scope: null,
106 silly mapToRegistry escapedName: 'debug',
106 silly mapToRegistry name: 'debug',
106 silly mapToRegistry rawSpec: '',
106 silly mapToRegistry spec: 'latest',
106 silly mapToRegistry type: 'tag' }
107 silly mapToRegistry uri https://registry.npmjs.org/debug
108 silly fetchNamedPackageData defaults
109 silly mapToRegistry name defaults
110 silly mapToRegistry using default registry
111 silly mapToRegistry registry https://registry.npmjs.org/
112 silly mapToRegistry data Result {
112 silly mapToRegistry raw: 'defaults',
112 silly mapToRegistry scope: null,
112 silly mapToRegistry escapedName: 'defaults',
112 silly mapToRegistry name: 'defaults',
112 silly mapToRegistry rawSpec: '',
112 silly mapToRegistry spec: 'latest',
112 silly mapToRegistry type: 'tag' }
113 silly mapToRegistry uri https://registry.npmjs.org/defaults
114 silly fetchNamedPackageData detect-indent
115 silly mapToRegistry name detect-indent
116 silly mapToRegistry using default registry
117 silly mapToRegistry registry https://registry.npmjs.org/
118 silly mapToRegistry data Result {
118 silly mapToRegistry raw: 'detect-indent',
118 silly mapToRegistry scope: null,
118 silly mapToRegistry escapedName: 'detect-indent',
118 silly mapToRegistry name: 'detect-indent',
118 silly mapToRegistry rawSpec: '',
118 silly mapToRegistry spec: 'latest',
118 silly mapToRegistry type: 'tag' }
119 silly mapToRegistry uri https://registry.npmjs.org/detect-indent
120 silly fetchNamedPackageData diff
121 silly mapToRegistry name diff
122 silly mapToRegistry using default registry
123 silly mapToRegistry registry https://registry.npmjs.org/
124 silly mapToRegistry data Result {
124 silly mapToRegistry raw: 'diff',
124 silly mapToRegistry scope: null,
124 silly mapToRegistry escapedName: 'diff',
124 silly mapToRegistry name: 'diff',
124 silly mapToRegistry rawSpec: '',
124 silly mapToRegistry spec: 'latest',
124 silly mapToRegistry type: 'tag' }
125 silly mapToRegistry uri https://registry.npmjs.org/diff
126 silly fetchNamedPackageData ini
127 silly mapToRegistry name ini
128 silly mapToRegistry using default registry
129 silly mapToRegistry registry https://registry.npmjs.org/
130 silly mapToRegistry data Result {
130 silly mapToRegistry raw: 'ini',
130 silly mapToRegistry scope: null,
130 silly mapToRegistry escapedName: 'ini',
130 silly mapToRegistry name: 'ini',
130 silly mapToRegistry rawSpec: '',
130 silly mapToRegistry spec: 'latest',
130 silly mapToRegistry type: 'tag' }
131 silly mapToRegistry uri https://registry.npmjs.org/ini
132 silly fetchNamedPackageData inquirer
133 silly mapToRegistry name inquirer
134 silly mapToRegistry using default registry
135 silly mapToRegistry registry https://registry.npmjs.org/
136 silly mapToRegistry data Result {
136 silly mapToRegistry raw: 'inquirer',
136 silly mapToRegistry scope: null,
136 silly mapToRegistry escapedName: 'inquirer',
136 silly mapToRegistry name: 'inquirer',
136 silly mapToRegistry rawSpec: '',
136 silly mapToRegistry spec: 'latest',
136 silly mapToRegistry type: 'tag' }
137 silly mapToRegistry uri https://registry.npmjs.org/inquirer
138 silly fetchNamedPackageData invariant
139 silly mapToRegistry name invariant
140 silly mapToRegistry using default registry
141 silly mapToRegistry registry https://registry.npmjs.org/
142 silly mapToRegistry data Result {
142 silly mapToRegistry raw: 'invariant',
142 silly mapToRegistry scope: null,
142 silly mapToRegistry escapedName: 'invariant',
142 silly mapToRegistry name: 'invariant',
142 silly mapToRegistry rawSpec: '',
142 silly mapToRegistry spec: 'latest',
142 silly mapToRegistry type: 'tag' }
143 silly mapToRegistry uri https://registry.npmjs.org/invariant
144 silly fetchNamedPackageData is-builtin-module
145 silly mapToRegistry name is-builtin-module
146 silly mapToRegistry using default registry
147 silly mapToRegistry registry https://registry.npmjs.org/
148 silly mapToRegistry data Result {
148 silly mapToRegistry raw: 'is-builtin-module',
148 silly mapToRegistry scope: null,
148 silly mapToRegistry escapedName: 'is-builtin-module',
148 silly mapToRegistry name: 'is-builtin-module',
148 silly mapToRegistry rawSpec: '',
148 silly mapToRegistry spec: 'latest',
148 silly mapToRegistry type: 'tag' }
149 silly mapToRegistry uri https://registry.npmjs.org/is-builtin-module
150 silly fetchNamedPackageData is-ci
151 silly mapToRegistry name is-ci
152 silly mapToRegistry using default registry
153 silly mapToRegistry registry https://registry.npmjs.org/
154 silly mapToRegistry data Result {
154 silly mapToRegistry raw: 'is-ci',
154 silly mapToRegistry scope: null,
154 silly mapToRegistry escapedName: 'is-ci',
154 silly mapToRegistry name: 'is-ci',
154 silly mapToRegistry rawSpec: '',
154 silly mapToRegistry spec: 'latest',
154 silly mapToRegistry type: 'tag' }
155 silly mapToRegistry uri https://registry.npmjs.org/is-ci
156 silly fetchNamedPackageData leven
157 silly mapToRegistry name leven
158 silly mapToRegistry using default registry
159 silly mapToRegistry registry https://registry.npmjs.org/
160 silly mapToRegistry data Result {
160 silly mapToRegistry raw: 'leven',
160 silly mapToRegistry scope: null,
160 silly mapToRegistry escapedName: 'leven',
160 silly mapToRegistry name: 'leven',
160 silly mapToRegistry rawSpec: '',
160 silly mapToRegistry spec: 'latest',
160 silly mapToRegistry type: 'tag' }
161 silly mapToRegistry uri https://registry.npmjs.org/leven
162 silly fetchNamedPackageData loud-rejection
163 silly mapToRegistry name loud-rejection
164 silly mapToRegistry using default registry
165 silly mapToRegistry registry https://registry.npmjs.org/
166 silly mapToRegistry data Result {
166 silly mapToRegistry raw: 'loud-rejection',
166 silly mapToRegistry scope: null,
166 silly mapToRegistry escapedName: 'loud-rejection',
166 silly mapToRegistry name: 'loud-rejection',
166 silly mapToRegistry rawSpec: '',
166 silly mapToRegistry spec: 'latest',
166 silly mapToRegistry type: 'tag' }
167 silly mapToRegistry uri https://registry.npmjs.org/loud-rejection
168 silly fetchNamedPackageData minimatch
169 silly mapToRegistry name minimatch
170 silly mapToRegistry using default registry
171 silly mapToRegistry registry https://registry.npmjs.org/
172 silly mapToRegistry data Result {
172 silly mapToRegistry raw: 'minimatch',
172 silly mapToRegistry scope: null,
172 silly mapToRegistry escapedName: 'minimatch',
172 silly mapToRegistry name: 'minimatch',
172 silly mapToRegistry rawSpec: '',
172 silly mapToRegistry spec: 'latest',
172 silly mapToRegistry type: 'tag' }
173 silly mapToRegistry uri https://registry.npmjs.org/minimatch
174 silly fetchNamedPackageData mkdirp
175 silly mapToRegistry name mkdirp
176 silly mapToRegistry using default registry
177 silly mapToRegistry registry https://registry.npmjs.org/
178 silly mapToRegistry data Result {
178 silly mapToRegistry raw: 'mkdirp',
178 silly mapToRegistry scope: null,
178 silly mapToRegistry escapedName: 'mkdirp',
178 silly mapToRegistry name: 'mkdirp',
178 silly mapToRegistry rawSpec: '',
178 silly mapToRegistry spec: 'latest',
178 silly mapToRegistry type: 'tag' }
179 silly mapToRegistry uri https://registry.npmjs.org/mkdirp
180 silly fetchNamedPackageData node-emoji
181 silly mapToRegistry name node-emoji
182 silly mapToRegistry using default registry
183 silly mapToRegistry registry https://registry.npmjs.org/
184 silly mapToRegistry data Result {
184 silly mapToRegistry raw: 'node-emoji',
184 silly mapToRegistry scope: null,
184 silly mapToRegistry escapedName: 'node-emoji',
184 silly mapToRegistry name: 'node-emoji',
184 silly mapToRegistry rawSpec: '',
184 silly mapToRegistry spec: 'latest',
184 silly mapToRegistry type: 'tag' }
185 silly mapToRegistry uri https://registry.npmjs.org/node-emoji
186 silly fetchNamedPackageData node-gyp
187 silly mapToRegistry name node-gyp
188 silly mapToRegistry using default registry
189 silly mapToRegistry registry https://registry.npmjs.org/
190 silly mapToRegistry data Result {
190 silly mapToRegistry raw: 'node-gyp',
190 silly mapToRegistry scope: null,
190 silly mapToRegistry escapedName: 'node-gyp',
190 silly mapToRegistry name: 'node-gyp',
190 silly mapToRegistry rawSpec: '',
190 silly mapToRegistry spec: 'latest',
190 silly mapToRegistry type: 'tag' }
191 silly mapToRegistry uri https://registry.npmjs.org/node-gyp
192 silly fetchNamedPackageData object-path
193 silly mapToRegistry name object-path
194 silly mapToRegistry using default registry
195 silly mapToRegistry registry https://registry.npmjs.org/
196 silly mapToRegistry data Result {
196 silly mapToRegistry raw: 'object-path',
196 silly mapToRegistry scope: null,
196 silly mapToRegistry escapedName: 'object-path',
196 silly mapToRegistry name: 'object-path',
196 silly mapToRegistry rawSpec: '',
196 silly mapToRegistry spec: 'latest',
196 silly mapToRegistry type: 'tag' }
197 silly mapToRegistry uri https://registry.npmjs.org/object-path
198 silly fetchNamedPackageData proper-lockfile
199 silly mapToRegistry name proper-lockfile
200 silly mapToRegistry using default registry
201 silly mapToRegistry registry https://registry.npmjs.org/
202 silly mapToRegistry data Result {
202 silly mapToRegistry raw: 'proper-lockfile',
202 silly mapToRegistry scope: null,
202 silly mapToRegistry escapedName: 'proper-lockfile',
202 silly mapToRegistry name: 'proper-lockfile',
202 silly mapToRegistry rawSpec: '',
202 silly mapToRegistry spec: 'latest',
202 silly mapToRegistry type: 'tag' }
203 silly mapToRegistry uri https://registry.npmjs.org/proper-lockfile
204 silly fetchNamedPackageData read
205 silly mapToRegistry name read
206 silly mapToRegistry using default registry
207 silly mapToRegistry registry https://registry.npmjs.org/
208 silly mapToRegistry data Result {
208 silly mapToRegistry raw: 'read',
208 silly mapToRegistry scope: null,
208 silly mapToRegistry escapedName: 'read',
208 silly mapToRegistry name: 'read',
208 silly mapToRegistry rawSpec: '',
208 silly mapToRegistry spec: 'latest',
208 silly mapToRegistry type: 'tag' }
209 silly mapToRegistry uri https://registry.npmjs.org/read
210 silly fetchNamedPackageData repeating
211 silly mapToRegistry name repeating
212 silly mapToRegistry using default registry
213 silly mapToRegistry registry https://registry.npmjs.org/
214 silly mapToRegistry data Result {
214 silly mapToRegistry raw: 'repeating',
214 silly mapToRegistry scope: null,
214 silly mapToRegistry escapedName: 'repeating',
214 silly mapToRegistry name: 'repeating',
214 silly mapToRegistry rawSpec: '',
214 silly mapToRegistry spec: 'latest',
214 silly mapToRegistry type: 'tag' }
215 silly mapToRegistry uri https://registry.npmjs.org/repeating
216 silly fetchNamedPackageData request
217 silly mapToRegistry name request
218 silly mapToRegistry using default registry
219 silly mapToRegistry registry https://registry.npmjs.org/
220 silly mapToRegistry data Result {
220 silly mapToRegistry raw: 'request',
220 silly mapToRegistry scope: null,
220 silly mapToRegistry escapedName: 'request',
220 silly mapToRegistry name: 'request',
220 silly mapToRegistry rawSpec: '',
220 silly mapToRegistry spec: 'latest',
220 silly mapToRegistry type: 'tag' }
221 silly mapToRegistry uri https://registry.npmjs.org/request
222 silly fetchNamedPackageData request-capture-har
223 silly mapToRegistry name request-capture-har
224 silly mapToRegistry using default registry
225 silly mapToRegistry registry https://registry.npmjs.org/
226 silly mapToRegistry data Result {
226 silly mapToRegistry raw: 'request-capture-har',
226 silly mapToRegistry scope: null,
226 silly mapToRegistry escapedName: 'request-capture-har',
226 silly mapToRegistry name: 'request-capture-har',
226 silly mapToRegistry rawSpec: '',
226 silly mapToRegistry spec: 'latest',
226 silly mapToRegistry type: 'tag' }
227 silly mapToRegistry uri https://registry.npmjs.org/request-capture-har
228 silly fetchNamedPackageData rimraf
229 silly mapToRegistry name rimraf
230 silly mapToRegistry using default registry
231 silly mapToRegistry registry https://registry.npmjs.org/
232 silly mapToRegistry data Result {
232 silly mapToRegistry raw: 'rimraf',
232 silly mapToRegistry scope: null,
232 silly mapToRegistry escapedName: 'rimraf',
232 silly mapToRegistry name: 'rimraf',
232 silly mapToRegistry rawSpec: '',
232 silly mapToRegistry spec: 'latest',
232 silly mapToRegistry type: 'tag' }
233 silly mapToRegistry uri https://registry.npmjs.org/rimraf
234 silly fetchNamedPackageData roadrunner
235 silly mapToRegistry name roadrunner
236 silly mapToRegistry using default registry
237 silly mapToRegistry registry https://registry.npmjs.org/
238 silly mapToRegistry data Result {
238 silly mapToRegistry raw: 'roadrunner',
238 silly mapToRegistry scope: null,
238 silly mapToRegistry escapedName: 'roadrunner',
238 silly mapToRegistry name: 'roadrunner',
238 silly mapToRegistry rawSpec: '',
238 silly mapToRegistry spec: 'latest',
238 silly mapToRegistry type: 'tag' }
239 silly mapToRegistry uri https://registry.npmjs.org/roadrunner
240 silly fetchNamedPackageData semver
241 silly mapToRegistry name semver
242 silly mapToRegistry using default registry
243 silly mapToRegistry registry https://registry.npmjs.org/
244 silly mapToRegistry data Result {
244 silly mapToRegistry raw: 'semver',
244 silly mapToRegistry scope: null,
244 silly mapToRegistry escapedName: 'semver',
244 silly mapToRegistry name: 'semver',
244 silly mapToRegistry rawSpec: '',
244 silly mapToRegistry spec: 'latest',
244 silly mapToRegistry type: 'tag' }
245 silly mapToRegistry uri https://registry.npmjs.org/semver
246 silly fetchNamedPackageData strip-bom
247 silly mapToRegistry name strip-bom
248 silly mapToRegistry using default registry
249 silly mapToRegistry registry https://registry.npmjs.org/
250 silly mapToRegistry data Result {
250 silly mapToRegistry raw: 'strip-bom',
250 silly mapToRegistry scope: null,
250 silly mapToRegistry escapedName: 'strip-bom',
250 silly mapToRegistry name: 'strip-bom',
250 silly mapToRegistry rawSpec: '',
250 silly mapToRegistry spec: 'latest',
250 silly mapToRegistry type: 'tag' }
251 silly mapToRegistry uri https://registry.npmjs.org/strip-bom
252 silly fetchNamedPackageData tar
253 silly mapToRegistry name tar
254 silly mapToRegistry using default registry
255 silly mapToRegistry registry https://registry.npmjs.org/
256 silly mapToRegistry data Result {
256 silly mapToRegistry raw: 'tar',
256 silly mapToRegistry scope: null,
256 silly mapToRegistry escapedName: 'tar',
256 silly mapToRegistry name: 'tar',
256 silly mapToRegistry rawSpec: '',
256 silly mapToRegistry spec: 'latest',
256 silly mapToRegistry type: 'tag' }
257 silly mapToRegistry uri https://registry.npmjs.org/tar
258 silly fetchNamedPackageData tar-stream
259 silly mapToRegistry name tar-stream
260 silly mapToRegistry using default registry
261 silly mapToRegistry registry https://registry.npmjs.org/
262 silly mapToRegistry data Result {
262 silly mapToRegistry raw: 'tar-stream',
262 silly mapToRegistry scope: null,
262 silly mapToRegistry escapedName: 'tar-stream',
262 silly mapToRegistry name: 'tar-stream',
262 silly mapToRegistry rawSpec: '',
262 silly mapToRegistry spec: 'latest',
262 silly mapToRegistry type: 'tag' }
263 silly mapToRegistry uri https://registry.npmjs.org/tar-stream
264 silly fetchNamedPackageData user-home
265 silly mapToRegistry name user-home
266 silly mapToRegistry using default registry
267 silly mapToRegistry registry https://registry.npmjs.org/
268 silly mapToRegistry data Result {
268 silly mapToRegistry raw: 'user-home',
268 silly mapToRegistry scope: null,
268 silly mapToRegistry escapedName: 'user-home',
268 silly mapToRegistry name: 'user-home',
268 silly mapToRegistry rawSpec: '',
268 silly mapToRegistry spec: 'latest',
268 silly mapToRegistry type: 'tag' }
269 silly mapToRegistry uri https://registry.npmjs.org/user-home
270 silly fetchNamedPackageData validate-npm-package-license
271 silly mapToRegistry name validate-npm-package-license
272 silly mapToRegistry using default registry
273 silly mapToRegistry registry https://registry.npmjs.org/
274 silly mapToRegistry data Result {
274 silly mapToRegistry raw: 'validate-npm-package-license',
274 silly mapToRegistry scope: null,
274 silly mapToRegistry escapedName: 'validate-npm-package-license',
274 silly mapToRegistry name: 'validate-npm-package-license',
274 silly mapToRegistry rawSpec: '',
274 silly mapToRegistry spec: 'latest',
274 silly mapToRegistry type: 'tag' }
275 silly mapToRegistry uri https://registry.npmjs.org/validate-npm-package-license
276 verbose request uri https://registry.npmjs.org/camelcase
277 verbose request no auth needed
278 info attempt registry request try #1 at 8:23:40 PM
279 verbose etag W/"582ad21d-440a"
280 verbose lastModified Tue, 15 Nov 2016 09:15:09 GMT
281 http request GET https://registry.npmjs.org/camelcase
282 verbose request uri https://registry.npmjs.org/bytes
283 verbose request no auth needed
284 info attempt registry request try #1 at 8:23:40 PM
285 verbose etag W/"574f43ba-4add"
286 verbose lastModified Wed, 01 Jun 2016 20:21:14 GMT
287 http request GET https://registry.npmjs.org/bytes
288 verbose request uri https://registry.npmjs.org/chalk
289 verbose request no auth needed
290 info attempt registry request try #1 at 8:23:40 PM
291 verbose etag W/"5829f124-80cd"
292 verbose lastModified Mon, 14 Nov 2016 17:15:16 GMT
293 http request GET https://registry.npmjs.org/chalk
294 verbose request uri https://registry.npmjs.org/cmd-shim
295 verbose request no auth needed
296 info attempt registry request try #1 at 8:23:40 PM
297 verbose etag W/"56bb51a4-243b"
298 verbose lastModified Wed, 10 Feb 2016 15:05:08 GMT
299 http request GET https://registry.npmjs.org/cmd-shim
300 verbose request uri https://registry.npmjs.org/babel-runtime
301 verbose request no auth needed
302 info attempt registry request try #1 at 8:23:40 PM
303 verbose etag W/"581f1b41-23ab1"
304 verbose lastModified Sun, 06 Nov 2016 12:00:01 GMT
305 http request GET https://registry.npmjs.org/babel-runtime
306 verbose request uri https://registry.npmjs.org/death
307 verbose request no auth needed
308 info attempt registry request try #1 at 8:23:40 PM
309 verbose etag W/"5823c492-17ef"
310 verbose lastModified Thu, 10 Nov 2016 00:51:30 GMT
311 http request GET https://registry.npmjs.org/death
312 verbose request uri https://registry.npmjs.org/commander
313 verbose request no auth needed
314 info attempt registry request try #1 at 8:23:40 PM
315 verbose etag W/"582caf6b-fb69"
316 verbose lastModified Wed, 16 Nov 2016 19:11:39 GMT
317 http request GET https://registry.npmjs.org/commander
318 verbose request uri https://registry.npmjs.org/defaults
319 verbose request no auth needed
320 info attempt registry request try #1 at 8:23:40 PM
321 verbose etag W/"582adb81-150c"
322 verbose lastModified Tue, 15 Nov 2016 09:55:13 GMT
323 http request GET https://registry.npmjs.org/defaults
324 verbose request uri https://registry.npmjs.org/debug
325 verbose request no auth needed
326 info attempt registry request try #1 at 8:23:40 PM
327 verbose etag W/"582cf0f0-ad04"
328 verbose lastModified Wed, 16 Nov 2016 23:51:12 GMT
329 http request GET https://registry.npmjs.org/debug
330 verbose request uri https://registry.npmjs.org/detect-indent
331 verbose request no auth needed
332 info attempt registry request try #1 at 8:23:40 PM
333 verbose etag W/"58091f7e-4dc9"
334 verbose lastModified Thu, 20 Oct 2016 19:48:14 GMT
335 http request GET https://registry.npmjs.org/detect-indent
336 verbose request uri https://registry.npmjs.org/diff
337 verbose request no auth needed
338 info attempt registry request try #1 at 8:23:40 PM
339 verbose etag "58232feb-c5b1"
340 http request GET https://registry.npmjs.org/diff
341 verbose request uri https://registry.npmjs.org/ini
342 verbose request no auth needed
343 info attempt registry request try #1 at 8:23:40 PM
344 verbose etag W/"57f638b2-3c7a"
345 verbose lastModified Thu, 06 Oct 2016 11:42:42 GMT
346 http request GET https://registry.npmjs.org/ini
347 verbose request uri https://registry.npmjs.org/is-builtin-module
348 verbose request no auth needed
349 info attempt registry request try #1 at 8:23:40 PM
350 verbose etag W/"58092b5b-b43"
351 verbose lastModified Thu, 20 Oct 2016 20:38:51 GMT
352 http request GET https://registry.npmjs.org/is-builtin-module
353 verbose request uri https://registry.npmjs.org/invariant
354 verbose request no auth needed
355 info attempt registry request try #1 at 8:23:40 PM
356 verbose etag W/"582af93b-3b2b"
357 verbose lastModified Tue, 15 Nov 2016 12:02:03 GMT
358 http request GET https://registry.npmjs.org/invariant
359 verbose request uri https://registry.npmjs.org/is-ci
360 verbose request no auth needed
361 info attempt registry request try #1 at 8:23:40 PM
362 verbose etag W/"5808ec27-38c2"
363 verbose lastModified Thu, 20 Oct 2016 16:09:11 GMT
364 http request GET https://registry.npmjs.org/is-ci
365 verbose request uri https://registry.npmjs.org/inquirer
366 verbose request no auth needed
367 info attempt registry request try #1 at 8:23:40 PM
368 verbose etag W/"5828cc85-183c9"
369 verbose lastModified Sun, 13 Nov 2016 20:26:45 GMT
370 http request GET https://registry.npmjs.org/inquirer
371 verbose request uri https://registry.npmjs.org/loud-rejection
372 verbose request no auth needed
373 info attempt registry request try #1 at 8:23:40 PM
374 verbose etag W/"57798bde-4467"
375 verbose lastModified Sun, 03 Jul 2016 22:04:14 GMT
376 http request GET https://registry.npmjs.org/loud-rejection
377 verbose request uri https://registry.npmjs.org/minimatch
378 verbose request no auth needed
379 info attempt registry request try #1 at 8:23:40 PM
380 verbose etag W/"582b0953-cb8b"
381 verbose lastModified Tue, 15 Nov 2016 13:10:43 GMT
382 http request GET https://registry.npmjs.org/minimatch
383 verbose request uri https://registry.npmjs.org/leven
384 verbose request no auth needed
385 info attempt registry request try #1 at 8:23:40 PM
386 verbose etag W/"5823c4aa-1f77"
387 verbose lastModified Thu, 10 Nov 2016 00:51:54 GMT
388 http request GET https://registry.npmjs.org/leven
389 verbose request uri https://registry.npmjs.org/mkdirp
390 verbose request no auth needed
391 info attempt registry request try #1 at 8:23:40 PM
392 verbose etag W/"58259114-605a"
393 verbose lastModified Fri, 11 Nov 2016 09:36:20 GMT
394 http request GET https://registry.npmjs.org/mkdirp
395 verbose request uri https://registry.npmjs.org/node-emoji
396 verbose request no auth needed
397 info attempt registry request try #1 at 8:23:40 PM
398 verbose etag W/"58247e94-4d54"
399 verbose lastModified Thu, 10 Nov 2016 14:05:08 GMT
400 http request GET https://registry.npmjs.org/node-emoji
401 verbose request uri https://registry.npmjs.org/object-path
402 verbose request no auth needed
403 info attempt registry request try #1 at 8:23:40 PM
404 verbose etag W/"582a6973-862d"
405 verbose lastModified Tue, 15 Nov 2016 01:48:35 GMT
406 http request GET https://registry.npmjs.org/object-path
407 verbose request uri https://registry.npmjs.org/node-gyp
408 verbose request no auth needed
409 info attempt registry request try #1 at 8:23:40 PM
410 verbose etag W/"582966b3-2129b"
411 verbose lastModified Mon, 14 Nov 2016 07:24:35 GMT
412 http request GET https://registry.npmjs.org/node-gyp
413 verbose request uri https://registry.npmjs.org/read
414 verbose request no auth needed
415 info attempt registry request try #1 at 8:23:40 PM
416 verbose etag W/"57f806fa-2fa6"
417 verbose lastModified Fri, 07 Oct 2016 20:35:06 GMT
418 http request GET https://registry.npmjs.org/read
419 verbose request uri https://registry.npmjs.org/repeating
420 verbose request no auth needed
421 info attempt registry request try #1 at 8:23:40 PM
422 verbose etag W/"5766f3e9-3440"
423 verbose lastModified Sun, 19 Jun 2016 19:35:05 GMT
424 http request GET https://registry.npmjs.org/repeating
425 verbose request uri https://registry.npmjs.org/request-capture-har
426 verbose request no auth needed
427 info attempt registry request try #1 at 8:23:40 PM
428 verbose etag W/"57dfc0c7-31f3"
429 verbose lastModified Mon, 19 Sep 2016 10:41:11 GMT
430 http request GET https://registry.npmjs.org/request-capture-har
431 verbose request uri https://registry.npmjs.org/rimraf
432 verbose request no auth needed
433 info attempt registry request try #1 at 8:23:40 PM
434 verbose etag W/"582cacdc-d6f0"
435 verbose lastModified Wed, 16 Nov 2016 19:00:44 GMT
436 http request GET https://registry.npmjs.org/rimraf
437 verbose request uri https://registry.npmjs.org/request
438 verbose request no auth needed
439 info attempt registry request try #1 at 8:23:40 PM
440 verbose etag W/"582b896c-342dc"
441 verbose lastModified Tue, 15 Nov 2016 22:17:16 GMT
442 http request GET https://registry.npmjs.org/request
443 verbose request uri https://registry.npmjs.org/proper-lockfile
444 verbose request no auth needed
445 info attempt registry request try #1 at 8:23:40 PM
446 verbose etag W/"57d9ed99-b646"
447 verbose lastModified Thu, 15 Sep 2016 00:38:49 GMT
448 http request GET https://registry.npmjs.org/proper-lockfile
449 verbose request uri https://registry.npmjs.org/roadrunner
450 verbose request no auth needed
451 info attempt registry request try #1 at 8:23:40 PM
452 verbose etag W/"58026348-1a18"
453 verbose lastModified Sat, 15 Oct 2016 17:11:36 GMT
454 http request GET https://registry.npmjs.org/roadrunner
455 verbose request uri https://registry.npmjs.org/tar
456 verbose request no auth needed
457 info attempt registry request try #1 at 8:23:40 PM
458 verbose etag W/"55f0e1b2-77c0"
459 verbose lastModified Thu, 10 Sep 2015 01:49:38 GMT
460 http request GET https://registry.npmjs.org/tar
461 verbose request uri https://registry.npmjs.org/semver
462 verbose request no auth needed
463 info attempt registry request try #1 at 8:23:40 PM
464 verbose etag W/"5829227a-11a3e"
465 verbose lastModified Mon, 14 Nov 2016 02:33:30 GMT
466 http request GET https://registry.npmjs.org/semver
467 verbose request uri https://registry.npmjs.org/strip-bom
468 verbose request no auth needed
469 info attempt registry request try #1 at 8:23:40 PM
470 verbose etag W/"5724d724-2d4d"
471 verbose lastModified Sat, 30 Apr 2016 16:02:44 GMT
472 http request GET https://registry.npmjs.org/strip-bom
473 verbose request uri https://registry.npmjs.org/user-home
474 verbose request no auth needed
475 info attempt registry request try #1 at 8:23:40 PM
476 verbose etag W/"58261828-19a3"
477 verbose lastModified Fri, 11 Nov 2016 19:12:40 GMT
478 http request GET https://registry.npmjs.org/user-home
479 verbose request uri https://registry.npmjs.org/validate-npm-package-license
480 verbose request no auth needed
481 info attempt registry request try #1 at 8:23:40 PM
482 verbose etag W/"55da58ea-3413"
483 verbose lastModified Sun, 23 Aug 2015 23:36:10 GMT
484 http request GET https://registry.npmjs.org/validate-npm-package-license
485 verbose request uri https://registry.npmjs.org/tar-stream
486 verbose request no auth needed
487 info attempt registry request try #1 at 8:23:40 PM
488 verbose etag W/"581bcdc9-e620"
489 verbose lastModified Thu, 03 Nov 2016 23:52:41 GMT
490 http request GET https://registry.npmjs.org/tar-stream
491 http 304 https://registry.npmjs.org/camelcase
492 verbose headers { date: 'Thu, 17 Nov 2016 01:23:40 GMT',
492 verbose headers via: '1.1 varnish',
492 verbose headers 'cache-control': 'max-age=300',
492 verbose headers etag: 'W/"582ad21d-440a"',
492 verbose headers age: '251',
492 verbose headers connection: 'keep-alive',
492 verbose headers 'x-served-by': 'cache-dfw1823-DFW',
492 verbose headers 'x-cache': 'HIT',
492 verbose headers 'x-cache-hits': '7',
492 verbose headers 'x-timer': 'S1479345820.213398,VS0,VE0',
492 verbose headers vary: 'Accept-Encoding' }
493 silly get cb [ 304,
493 silly get { date: 'Thu, 17 Nov 2016 01:23:40 GMT',
493 silly get via: '1.1 varnish',
493 silly get 'cache-control': 'max-age=300',
493 silly get etag: 'W/"582ad21d-440a"',
493 silly get age: '251',
493 silly get connection: 'keep-alive',
493 silly get 'x-served-by': 'cache-dfw1823-DFW',
493 silly get 'x-cache': 'HIT',
493 silly get 'x-cache-hits': '7',
493 silly get 'x-timer': 'S1479345820.213398,VS0,VE0',
493 silly get vary: 'Accept-Encoding' } ]
494 verbose etag https://registry.npmjs.org/camelcase from cache
495 verbose get saving camelcase to /Users/zpinner/.npm/registry.npmjs.org/camelcase/.cache.json
496 verbose correctMkdir /Users/zpinner/.npm correctMkdir not in flight; initializing
497 silly resolveWithNewModule [email protected] checking installable status
498 silly cache add args [ 'camelcase@^3.0.0', null ]
499 verbose cache add spec camelcase@^3.0.0
500 silly cache add parsed spec Result {
500 silly cache add raw: 'camelcase@^3.0.0',
500 silly cache add scope: null,
500 silly cache add escapedName: 'camelcase',
500 silly cache add name: 'camelcase',
500 silly cache add rawSpec: '^3.0.0',
500 silly cache add spec: '>=3.0.0 <4.0.0',
500 silly cache add type: 'range' }
501 silly addNamed camelcase@>=3.0.0 <4.0.0
502 verbose addNamed ">=3.0.0 <4.0.0" is a valid semver range for camelcase
503 silly addNameRange { name: 'camelcase', range: '>=3.0.0 <4.0.0', hasData: false }
504 silly mapToRegistry name camelcase
505 silly mapToRegistry using default registry
506 silly mapToRegistry registry https://registry.npmjs.org/
507 silly mapToRegistry data Result {
507 silly mapToRegistry raw: 'camelcase',
507 silly mapToRegistry scope: null,
507 silly mapToRegistry escapedName: 'camelcase',
507 silly mapToRegistry name: 'camelcase',
507 silly mapToRegistry rawSpec: '',
507 silly mapToRegistry spec: 'latest',
507 silly mapToRegistry type: 'tag' }
508 silly mapToRegistry uri https://registry.npmjs.org/camelcase
509 verbose addNameRange registry:https://registry.npmjs.org/camelcase not in flight; fetching
510 verbose get https://registry.npmjs.org/camelcase not expired, no request
511 silly addNameRange number 2 { name: 'camelcase', range: '>=3.0.0 <4.0.0', hasData: true }
512 silly addNameRange versions [ 'camelcase',
512 silly addNameRange [ '1.0.0',
512 silly addNameRange '1.0.1',
512 silly addNameRange '1.0.2',
512 silly addNameRange '1.1.0',
512 silly addNameRange '1.2.0',
512 silly addNameRange '1.2.1',
512 silly addNameRange '2.0.0',
512 silly addNameRange '2.0.1',
512 silly addNameRange '2.1.0',
512 silly addNameRange '2.1.1',
512 silly addNameRange '3.0.0',
512 silly addNameRange '4.0.0' ] ]
513 silly addNamed [email protected]
514 verbose addNamed "3.0.0" is a plain semver version for camelcase
515 silly cache afterAdd [email protected]
516 verbose afterAdd /Users/zpinner/.npm/camelcase/3.0.0/package/package.json not in flight; writing
517 verbose correctMkdir /Users/zpinner/.npm correctMkdir not in flight; initializing
518 verbose afterAdd /Users/zpinner/.npm/camelcase/3.0.0/package/package.json written
519 http 304 https://registry.npmjs.org/user-home
520 verbose headers { date: 'Thu, 17 Nov 2016 01:23:40 GMT',
520 verbose headers via: '1.1 varnish',
520 verbose headers 'cache-control': 'max-age=300',
520 verbose headers etag: 'W/"58261828-19a3"',
520 verbose headers age: '219',
520 verbose headers connection: 'keep-alive',
520 verbose headers 'x-served-by': 'cache-dfw1823-DFW',
520 verbose headers 'x-cache': 'HIT',
520 verbose headers 'x-cache-hits': '2',
520 verbose headers 'x-timer': 'S1479345820.303937,VS0,VE0',
520 verbose headers vary: 'Accept-Encoding' }
521 silly get cb [ 304,
521 silly get { date: 'Thu, 17 Nov 2016 01:23:40 GMT',
521 silly get via: '1.1 varnish',
521 silly get 'cache-control': 'max-age=300',
521 silly get etag: 'W/"58261828-19a3"',
521 silly get age: '219',
521 silly get connection: 'keep-alive',
521 silly get 'x-served-by': 'cache-dfw1823-DFW',
521 silly get 'x-cache': 'HIT',
521 silly get 'x-cache-hits': '2',
521 silly get 'x-timer': 'S1479345820.303937,VS0,VE0',
521 silly get vary: 'Accept-Encoding' } ]
522 verbose etag https://registry.npmjs.org/user-home from cache
523 verbose get saving user-home to /Users/zpinner/.npm/registry.npmjs.org/user-home/.cache.json
524 verbose correctMkdir /Users/zpinner/.npm correctMkdir not in flight; initializing
525 silly resolveWithNewModule [email protected] checking installable status
526 silly cache add args [ 'user-home@^2.0.0', null ]
527 verbose cache add spec user-home@^2.0.0
528 silly cache add parsed spec Result {
528 silly cache add raw: 'user-home@^2.0.0',
528 silly cache add scope: null,
528 silly cache add escapedName: 'user-home',
528 silly cache add name: 'user-home',
528 silly cache add rawSpec: '^2.0.0',
528 silly cache add spec: '>=2.0.0 <3.0.0',
528 silly cache add type: 'range' }
529 silly addNamed user-home@>=2.0.0 <3.0.0
530 verbose addNamed ">=2.0.0 <3.0.0" is a valid semver range for user-home
531 silly addNameRange { name: 'user-home', range: '>=2.0.0 <3.0.0', hasData: false }
532 silly mapToRegistry name user-home
533 silly mapToRegistry using default registry
534 silly mapToRegistry registry https://registry.npmjs.org/
535 silly mapToRegistry data Result {
535 silly mapToRegistry raw: 'user-home',
535 silly mapToRegistry scope: null,
535 silly mapToRegistry escapedName: 'user-home',
535 silly mapToRegistry name: 'user-home',
535 silly mapToRegistry rawSpec: '',
535 silly mapToRegistry spec: 'latest',
535 silly mapToRegistry type: 'tag' }
536 silly mapToRegistry uri https://registry.npmjs.org/user-home
537 verbose addNameRange registry:https://registry.npmjs.org/user-home not in flight; fetching
538 verbose get https://registry.npmjs.org/user-home not expired, no request
539 silly addNameRange number 2 { name: 'user-home', range: '>=2.0.0 <3.0.0', hasData: true }
540 silly addNameRange versions [ 'user-home', [ '1.0.0', '1.1.0', '1.1.1', '2.0.0' ] ]
541 silly addNamed [email protected]
542 verbose addNamed "2.0.0" is a plain semver version for user-home
543 silly cache afterAdd [email protected]
544 verbose afterAdd /Users/zpinner/.npm/user-home/2.0.0/package/package.json not in flight; writing
545 verbose correctMkdir /Users/zpinner/.npm correctMkdir not in flight; initializing
546 verbose afterAdd /Users/zpinner/.npm/user-home/2.0.0/package/package.json written
547 http 304 https://registry.npmjs.org/babel-runtime
548 verbose headers { date: 'Thu, 17 Nov 2016 01:23:40 GMT',
548 verbose headers via: '1.1 varnish',
548 verbose headers 'cache-control': 'max-age=300',
548 verbose headers etag: 'W/"581f1b41-23ab1"',
548 verbose headers age: '85',
548 verbose headers connection: 'keep-alive',
548 verbose headers 'x-served-by': 'cache-dfw1829-DFW',
548 verbose headers 'x-cache': 'HIT',
548 verbose headers 'x-cache-hits': '2',
548 verbose headers 'x-timer': 'S1479345820.382380,VS0,VE0',
548 verbose headers vary: 'Accept-Encoding' }
549 silly get cb [ 304,
549 silly get { date: 'Thu, 17 Nov 2016 01:23:40 GMT',
549 silly get via: '1.1 varnish',
549 silly get 'cache-control': 'max-age=300',
549 silly get etag: 'W/"581f1b41-23ab1"',
549 silly get age: '85',
549 silly get connection: 'keep-alive',
549 silly get 'x-served-by': 'cache-dfw1829-DFW',
549 silly get 'x-cache': 'HIT',
549 silly get 'x-cache-hits': '2',
549 silly get 'x-timer': 'S1479345820.382380,VS0,VE0',
549 silly get vary: 'Accept-Encoding' } ]
550 verbose etag https://registry.npmjs.org/babel-runtime from cache
551 verbose get saving babel-runtime to /Users/zpinner/.npm/registry.npmjs.org/babel-runtime/.cache.json
552 verbose correctMkdir /Users/zpinner/.npm correctMkdir not in flight; initializing
553 http 304 https://registry.npmjs.org/bytes
554 verbose headers { date: 'Thu, 17 Nov 2016 01:23:40 GMT',
554 verbose headers via: '1.1 varnish',
554 verbose headers 'cache-control': 'max-age=300',
554 verbose headers etag: 'W/"574f43ba-4add"',
554 verbose headers age: '96',
554 verbose headers connection: 'keep-alive',
554 verbose headers 'x-served-by': 'cache-dfw1830-DFW',
554 verbose headers 'x-cache': 'HIT',
554 verbose headers 'x-cache-hits': '1',
554 verbose headers 'x-timer': 'S1479345820.383661,VS0,VE0',
554 verbose headers vary: 'Accept-Encoding' }
555 silly get cb [ 304,
555 silly get { date: 'Thu, 17 Nov 2016 01:23:40 GMT',
555 silly get via: '1.1 varnish',
555 silly get 'cache-control': 'max-age=300',
555 silly get etag: 'W/"574f43ba-4add"',
555 silly get age: '96',
555 silly get connection: 'keep-alive',
555 silly get 'x-served-by': 'cache-dfw1830-DFW',
555 silly get 'x-cache': 'HIT',
555 silly get 'x-cache-hits': '1',
555 silly get 'x-timer': 'S1479345820.383661,VS0,VE0',
555 silly get vary: 'Accept-Encoding' } ]
556 verbose etag https://registry.npmjs.org/bytes from cache
557 verbose get saving bytes to /Users/zpinner/.npm/registry.npmjs.org/bytes/.cache.json
558 verbose correctMkdir /Users/zpinner/.npm correctMkdir not in flight; initializing
559 silly resolveWithNewModule [email protected] checking installable status
560 silly cache add args [ 'babel-runtime@^6.0.0', null ]
561 verbose cache add spec babel-runtime@^6.0.0
562 silly cache add parsed spec Result {
562 silly cache add raw: 'babel-runtime@^6.0.0',
562 silly cache add scope: null,
562 silly cache add escapedName: 'babel-runtime',
562 silly cache add name: 'babel-runtime',
562 silly cache add rawSpec: '^6.0.0',
562 silly cache add spec: '>=6.0.0 <7.0.0',
562 silly cache add type: 'range' }
563 silly addNamed babel-runtime@>=6.0.0 <7.0.0
564 verbose addNamed ">=6.0.0 <7.0.0" is a valid semver range for babel-runtime
565 silly addNameRange { name: 'babel-runtime',
565 silly addNameRange range: '>=6.0.0 <7.0.0',
565 silly addNameRange hasData: false }
566 silly mapToRegistry name babel-runtime
567 silly mapToRegistry using default registry
568 silly mapToRegistry registry https://registry.npmjs.org/