-
Notifications
You must be signed in to change notification settings - Fork 0
/
npm-debug.log
executable file
·16815 lines (16815 loc) · 916 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 [ '/Users/admin/.nvm/versions/node/v6.4.0/bin/node',
1 verbose cli '/Users/admin/.nvm/versions/node/v6.4.0/bin/npm',
1 verbose cli 'install',
1 verbose cli '--global',
1 verbose cli 'trash-cli' ]
2 info using npm@3.10.8
3 info using node@v6.4.0
4 silly loadCurrentTree Starting
5 silly install loadCurrentTree
6 silly install readGlobalPackageData
7 silly fetchPackageMetaData trash-cli
8 silly fetchNamedPackageData trash-cli
9 silly mapToRegistry name trash-cli
10 silly mapToRegistry using default registry
11 silly mapToRegistry registry https://registry.npmjs.org/
12 silly mapToRegistry data Result {
12 silly mapToRegistry raw: 'trash-cli',
12 silly mapToRegistry scope: null,
12 silly mapToRegistry escapedName: 'trash-cli',
12 silly mapToRegistry name: 'trash-cli',
12 silly mapToRegistry rawSpec: '',
12 silly mapToRegistry spec: 'latest',
12 silly mapToRegistry type: 'tag' }
13 silly mapToRegistry uri https://registry.npmjs.org/trash-cli
14 verbose request uri https://registry.npmjs.org/trash-cli
15 verbose request no auth needed
16 info attempt registry request try #1 at 10:52:58 AM
17 verbose request id f01a209ba89176c6
18 verbose etag "6LNOU76PZLU7PR70SNGAM1YAU"
19 http request GET https://registry.npmjs.org/trash-cli
20 http 200 https://registry.npmjs.org/trash-cli
21 verbose headers { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
21 verbose headers etag: '"7SBPP1SU8P9L96B49AXK5O78P"',
21 verbose headers 'content-type': 'application/json',
21 verbose headers 'content-encoding': 'gzip',
21 verbose headers 'cache-control': 'max-age=300',
21 verbose headers 'content-length': '2654',
21 verbose headers 'accept-ranges': 'bytes',
21 verbose headers date: 'Tue, 04 Oct 2016 15:52:59 GMT',
21 verbose headers via: '1.1 varnish',
21 verbose headers age: '0',
21 verbose headers connection: 'keep-alive',
21 verbose headers 'x-served-by': 'cache-ord1739-ORD',
21 verbose headers 'x-cache': 'HIT',
21 verbose headers 'x-cache-hits': '1',
21 verbose headers 'x-timer': 'S1475596379.070649,VS0,VE138',
21 verbose headers vary: 'Accept-Encoding' }
22 silly get cb [ 200,
22 silly get { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
22 silly get etag: '"7SBPP1SU8P9L96B49AXK5O78P"',
22 silly get 'content-type': 'application/json',
22 silly get 'content-encoding': 'gzip',
22 silly get 'cache-control': 'max-age=300',
22 silly get 'content-length': '2654',
22 silly get 'accept-ranges': 'bytes',
22 silly get date: 'Tue, 04 Oct 2016 15:52:59 GMT',
22 silly get via: '1.1 varnish',
22 silly get age: '0',
22 silly get connection: 'keep-alive',
22 silly get 'x-served-by': 'cache-ord1739-ORD',
22 silly get 'x-cache': 'HIT',
22 silly get 'x-cache-hits': '1',
22 silly get 'x-timer': 'S1475596379.070649,VS0,VE138',
22 silly get vary: 'Accept-Encoding' } ]
23 verbose get saving trash-cli to /Users/admin/.npm/registry.npmjs.org/trash-cli/.cache.json
24 verbose correctMkdir /Users/admin/.npm correctMkdir not in flight; initializing
25 silly install normalizeTree
26 silly loadCurrentTree Finishing
27 silly loadIdealTree Starting
28 silly install loadIdealTree
29 silly cloneCurrentTree Starting
30 silly install cloneCurrentTreeToIdealTree
31 silly cloneCurrentTree Finishing
32 silly loadShrinkwrap Starting
33 silly install loadShrinkwrap
34 silly loadShrinkwrap Finishing
35 silly loadAllDepsIntoIdealTree Starting
36 silly install loadAllDepsIntoIdealTree
37 silly resolveWithNewModule trash-cli@1.4.0 checking installable status
38 silly cache add args [ 'trash-cli', null ]
39 verbose cache add spec trash-cli
40 silly cache add parsed spec Result {
40 silly cache add raw: 'trash-cli',
40 silly cache add scope: null,
40 silly cache add escapedName: 'trash-cli',
40 silly cache add name: 'trash-cli',
40 silly cache add rawSpec: '',
40 silly cache add spec: 'latest',
40 silly cache add type: 'tag' }
41 silly addNamed trash-cli@latest
42 verbose addNamed "latest" is being treated as a dist-tag for trash-cli
43 info addNameTag [ 'trash-cli', 'latest' ]
44 silly mapToRegistry name trash-cli
45 silly mapToRegistry using default registry
46 silly mapToRegistry registry https://registry.npmjs.org/
47 silly mapToRegistry data Result {
47 silly mapToRegistry raw: 'trash-cli',
47 silly mapToRegistry scope: null,
47 silly mapToRegistry escapedName: 'trash-cli',
47 silly mapToRegistry name: 'trash-cli',
47 silly mapToRegistry rawSpec: '',
47 silly mapToRegistry spec: 'latest',
47 silly mapToRegistry type: 'tag' }
48 silly mapToRegistry uri https://registry.npmjs.org/trash-cli
49 verbose addNameTag registry:https://registry.npmjs.org/trash-cli not in flight; fetching
50 verbose get https://registry.npmjs.org/trash-cli not expired, no request
51 silly addNameTag next cb for trash-cli with tag latest
52 silly addNamed trash-cli@1.4.0
53 verbose addNamed "1.4.0" is a plain semver version for trash-cli
54 silly cache afterAdd trash-cli@1.4.0
55 verbose afterAdd /Users/admin/.npm/trash-cli/1.4.0/package/package.json not in flight; writing
56 verbose correctMkdir /Users/admin/.npm correctMkdir not in flight; initializing
57 verbose afterAdd /Users/admin/.npm/trash-cli/1.4.0/package/package.json written
58 silly fetchNamedPackageData meow
59 silly mapToRegistry name meow
60 silly mapToRegistry using default registry
61 silly mapToRegistry registry https://registry.npmjs.org/
62 silly mapToRegistry data Result {
62 silly mapToRegistry raw: 'meow',
62 silly mapToRegistry scope: null,
62 silly mapToRegistry escapedName: 'meow',
62 silly mapToRegistry name: 'meow',
62 silly mapToRegistry rawSpec: '',
62 silly mapToRegistry spec: 'latest',
62 silly mapToRegistry type: 'tag' }
63 silly mapToRegistry uri https://registry.npmjs.org/meow
64 silly fetchNamedPackageData trash
65 silly mapToRegistry name trash
66 silly mapToRegistry using default registry
67 silly mapToRegistry registry https://registry.npmjs.org/
68 silly mapToRegistry data Result {
68 silly mapToRegistry raw: 'trash',
68 silly mapToRegistry scope: null,
68 silly mapToRegistry escapedName: 'trash',
68 silly mapToRegistry name: 'trash',
68 silly mapToRegistry rawSpec: '',
68 silly mapToRegistry spec: 'latest',
68 silly mapToRegistry type: 'tag' }
69 silly mapToRegistry uri https://registry.npmjs.org/trash
70 silly fetchNamedPackageData update-notifier
71 silly mapToRegistry name update-notifier
72 silly mapToRegistry using default registry
73 silly mapToRegistry registry https://registry.npmjs.org/
74 silly mapToRegistry data Result {
74 silly mapToRegistry raw: 'update-notifier',
74 silly mapToRegistry scope: null,
74 silly mapToRegistry escapedName: 'update-notifier',
74 silly mapToRegistry name: 'update-notifier',
74 silly mapToRegistry rawSpec: '',
74 silly mapToRegistry spec: 'latest',
74 silly mapToRegistry type: 'tag' }
75 silly mapToRegistry uri https://registry.npmjs.org/update-notifier
76 verbose request uri https://registry.npmjs.org/meow
77 verbose request no auth needed
78 info attempt registry request try #1 at 10:52:59 AM
79 verbose etag "1C2JRE6MH5K6863MXZGW63IP6"
80 http request GET https://registry.npmjs.org/meow
81 verbose request uri https://registry.npmjs.org/trash
82 verbose request no auth needed
83 info attempt registry request try #1 at 10:52:59 AM
84 verbose etag "5QLU9MP137HG77VAP8PDJPZ1J"
85 http request GET https://registry.npmjs.org/trash
86 verbose request uri https://registry.npmjs.org/update-notifier
87 verbose request no auth needed
88 info attempt registry request try #1 at 10:52:59 AM
89 verbose etag "3LT3QBSN66RQJHPN145OAGQ4M"
90 http request GET https://registry.npmjs.org/update-notifier
91 http 304 https://registry.npmjs.org/meow
92 verbose headers { date: 'Tue, 04 Oct 2016 15:52:59 GMT',
92 verbose headers via: '1.1 varnish',
92 verbose headers 'cache-control': 'max-age=300',
92 verbose headers etag: '"1C2JRE6MH5K6863MXZGW63IP6"',
92 verbose headers age: '294',
92 verbose headers connection: 'keep-alive',
92 verbose headers 'x-served-by': 'cache-ord1739-ORD',
92 verbose headers 'x-cache': 'HIT',
92 verbose headers 'x-cache-hits': '15',
92 verbose headers 'x-timer': 'S1475596379.388012,VS0,VE0',
92 verbose headers vary: 'Accept-Encoding' }
93 silly get cb [ 304,
93 silly get { date: 'Tue, 04 Oct 2016 15:52:59 GMT',
93 silly get via: '1.1 varnish',
93 silly get 'cache-control': 'max-age=300',
93 silly get etag: '"1C2JRE6MH5K6863MXZGW63IP6"',
93 silly get age: '294',
93 silly get connection: 'keep-alive',
93 silly get 'x-served-by': 'cache-ord1739-ORD',
93 silly get 'x-cache': 'HIT',
93 silly get 'x-cache-hits': '15',
93 silly get 'x-timer': 'S1475596379.388012,VS0,VE0',
93 silly get vary: 'Accept-Encoding' } ]
94 verbose etag https://registry.npmjs.org/meow from cache
95 verbose get saving meow to /Users/admin/.npm/registry.npmjs.org/meow/.cache.json
96 verbose correctMkdir /Users/admin/.npm correctMkdir not in flight; initializing
97 silly resolveWithNewModule meow@3.7.0 checking installable status
98 silly cache add args [ 'meow@^3.7.0', null ]
99 verbose cache add spec meow@^3.7.0
100 silly cache add parsed spec Result {
100 silly cache add raw: 'meow@^3.7.0',
100 silly cache add scope: null,
100 silly cache add escapedName: 'meow',
100 silly cache add name: 'meow',
100 silly cache add rawSpec: '^3.7.0',
100 silly cache add spec: '>=3.7.0 <4.0.0',
100 silly cache add type: 'range' }
101 silly addNamed meow@>=3.7.0 <4.0.0
102 verbose addNamed ">=3.7.0 <4.0.0" is a valid semver range for meow
103 silly addNameRange { name: 'meow', range: '>=3.7.0 <4.0.0', hasData: false }
104 silly mapToRegistry name meow
105 silly mapToRegistry using default registry
106 silly mapToRegistry registry https://registry.npmjs.org/
107 silly mapToRegistry data Result {
107 silly mapToRegistry raw: 'meow',
107 silly mapToRegistry scope: null,
107 silly mapToRegistry escapedName: 'meow',
107 silly mapToRegistry name: 'meow',
107 silly mapToRegistry rawSpec: '',
107 silly mapToRegistry spec: 'latest',
107 silly mapToRegistry type: 'tag' }
108 silly mapToRegistry uri https://registry.npmjs.org/meow
109 verbose addNameRange registry:https://registry.npmjs.org/meow not in flight; fetching
110 verbose get https://registry.npmjs.org/meow not expired, no request
111 silly addNameRange number 2 { name: 'meow', range: '>=3.7.0 <4.0.0', hasData: true }
112 silly addNameRange versions [ 'meow',
112 silly addNameRange [ '1.0.0',
112 silly addNameRange '2.0.0',
112 silly addNameRange '2.1.0',
112 silly addNameRange '3.0.0',
112 silly addNameRange '3.1.0',
112 silly addNameRange '3.3.0',
112 silly addNameRange '3.4.0',
112 silly addNameRange '3.4.1',
112 silly addNameRange '3.4.2',
112 silly addNameRange '3.5.0',
112 silly addNameRange '3.6.0',
112 silly addNameRange '3.7.0' ] ]
113 silly addNamed meow@3.7.0
114 verbose addNamed "3.7.0" is a plain semver version for meow
115 silly cache afterAdd meow@3.7.0
116 verbose afterAdd /Users/admin/.npm/meow/3.7.0/package/package.json not in flight; writing
117 verbose correctMkdir /Users/admin/.npm correctMkdir not in flight; initializing
118 http 200 https://registry.npmjs.org/update-notifier
119 verbose headers { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
119 verbose headers etag: '"6S4GES7WN0W8NR7INMV8W80Q0"',
119 verbose headers 'content-type': 'application/json',
119 verbose headers 'content-encoding': 'gzip',
119 verbose headers 'cache-control': 'max-age=300',
119 verbose headers 'content-length': '7828',
119 verbose headers 'accept-ranges': 'bytes',
119 verbose headers date: 'Tue, 04 Oct 2016 15:52:59 GMT',
119 verbose headers via: '1.1 varnish',
119 verbose headers age: '58',
119 verbose headers connection: 'keep-alive',
119 verbose headers 'x-served-by': 'cache-ord1742-ORD',
119 verbose headers 'x-cache': 'HIT',
119 verbose headers 'x-cache-hits': '2',
119 verbose headers 'x-timer': 'S1475596379.424821,VS0,VE0',
119 verbose headers vary: 'Accept-Encoding' }
120 silly get cb [ 200,
120 silly get { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
120 silly get etag: '"6S4GES7WN0W8NR7INMV8W80Q0"',
120 silly get 'content-type': 'application/json',
120 silly get 'content-encoding': 'gzip',
120 silly get 'cache-control': 'max-age=300',
120 silly get 'content-length': '7828',
120 silly get 'accept-ranges': 'bytes',
120 silly get date: 'Tue, 04 Oct 2016 15:52:59 GMT',
120 silly get via: '1.1 varnish',
120 silly get age: '58',
120 silly get connection: 'keep-alive',
120 silly get 'x-served-by': 'cache-ord1742-ORD',
120 silly get 'x-cache': 'HIT',
120 silly get 'x-cache-hits': '2',
120 silly get 'x-timer': 'S1475596379.424821,VS0,VE0',
120 silly get vary: 'Accept-Encoding' } ]
121 verbose get saving update-notifier to /Users/admin/.npm/registry.npmjs.org/update-notifier/.cache.json
122 verbose correctMkdir /Users/admin/.npm correctMkdir not in flight; initializing
123 verbose afterAdd /Users/admin/.npm/meow/3.7.0/package/package.json written
124 silly resolveWithNewModule update-notifier@1.0.2 checking installable status
125 silly cache add args [ 'update-notifier@^1.0.2', null ]
126 verbose cache add spec update-notifier@^1.0.2
127 silly cache add parsed spec Result {
127 silly cache add raw: 'update-notifier@^1.0.2',
127 silly cache add scope: null,
127 silly cache add escapedName: 'update-notifier',
127 silly cache add name: 'update-notifier',
127 silly cache add rawSpec: '^1.0.2',
127 silly cache add spec: '>=1.0.2 <2.0.0',
127 silly cache add type: 'range' }
128 silly addNamed update-notifier@>=1.0.2 <2.0.0
129 verbose addNamed ">=1.0.2 <2.0.0" is a valid semver range for update-notifier
130 silly addNameRange { name: 'update-notifier',
130 silly addNameRange range: '>=1.0.2 <2.0.0',
130 silly addNameRange hasData: false }
131 silly mapToRegistry name update-notifier
132 silly mapToRegistry using default registry
133 silly mapToRegistry registry https://registry.npmjs.org/
134 silly mapToRegistry data Result {
134 silly mapToRegistry raw: 'update-notifier',
134 silly mapToRegistry scope: null,
134 silly mapToRegistry escapedName: 'update-notifier',
134 silly mapToRegistry name: 'update-notifier',
134 silly mapToRegistry rawSpec: '',
134 silly mapToRegistry spec: 'latest',
134 silly mapToRegistry type: 'tag' }
135 silly mapToRegistry uri https://registry.npmjs.org/update-notifier
136 verbose addNameRange registry:https://registry.npmjs.org/update-notifier not in flight; fetching
137 http 304 https://registry.npmjs.org/trash
138 verbose headers { date: 'Tue, 04 Oct 2016 15:52:59 GMT',
138 verbose headers via: '1.1 varnish',
138 verbose headers 'cache-control': 'max-age=300',
138 verbose headers etag: '"5QLU9MP137HG77VAP8PDJPZ1J"',
138 verbose headers age: '0',
138 verbose headers connection: 'keep-alive',
138 verbose headers 'x-served-by': 'cache-ord1742-ORD',
138 verbose headers 'x-cache': 'HIT',
138 verbose headers 'x-cache-hits': '1',
138 verbose headers 'x-timer': 'S1475596379.424426,VS0,VE34',
138 verbose headers vary: 'Accept-Encoding' }
139 silly get cb [ 304,
139 silly get { date: 'Tue, 04 Oct 2016 15:52:59 GMT',
139 silly get via: '1.1 varnish',
139 silly get 'cache-control': 'max-age=300',
139 silly get etag: '"5QLU9MP137HG77VAP8PDJPZ1J"',
139 silly get age: '0',
139 silly get connection: 'keep-alive',
139 silly get 'x-served-by': 'cache-ord1742-ORD',
139 silly get 'x-cache': 'HIT',
139 silly get 'x-cache-hits': '1',
139 silly get 'x-timer': 'S1475596379.424426,VS0,VE34',
139 silly get vary: 'Accept-Encoding' } ]
140 verbose etag https://registry.npmjs.org/trash from cache
141 verbose get saving trash to /Users/admin/.npm/registry.npmjs.org/trash/.cache.json
142 verbose correctMkdir /Users/admin/.npm correctMkdir not in flight; initializing
143 verbose get https://registry.npmjs.org/update-notifier not expired, no request
144 silly addNameRange number 2 { name: 'update-notifier',
144 silly addNameRange range: '>=1.0.2 <2.0.0',
144 silly addNameRange hasData: true }
145 silly addNameRange versions [ 'update-notifier',
145 silly addNameRange [ '0.1.0',
145 silly addNameRange '0.1.1',
145 silly addNameRange '0.1.2',
145 silly addNameRange '0.1.3',
145 silly addNameRange '0.1.4',
145 silly addNameRange '0.1.5',
145 silly addNameRange '0.1.6',
145 silly addNameRange '0.1.7',
145 silly addNameRange '0.1.8',
145 silly addNameRange '0.1.9',
145 silly addNameRange '0.1.10',
145 silly addNameRange '0.2.0',
145 silly addNameRange '0.2.1',
145 silly addNameRange '0.2.2',
145 silly addNameRange '0.3.0',
145 silly addNameRange '0.3.1',
145 silly addNameRange '0.3.2',
145 silly addNameRange '0.4.0',
145 silly addNameRange '0.5.0',
145 silly addNameRange '0.6.0',
145 silly addNameRange '0.6.1',
145 silly addNameRange '0.6.2',
145 silly addNameRange '0.6.3',
145 silly addNameRange '0.7.0',
145 silly addNameRange '1.0.0',
145 silly addNameRange '1.0.1',
145 silly addNameRange '1.0.2' ] ]
146 silly addNamed update-notifier@1.0.2
147 verbose addNamed "1.0.2" is a plain semver version for update-notifier
148 silly cache afterAdd update-notifier@1.0.2
149 verbose afterAdd /Users/admin/.npm/update-notifier/1.0.2/package/package.json not in flight; writing
150 verbose correctMkdir /Users/admin/.npm correctMkdir not in flight; initializing
151 silly resolveWithNewModule trash@4.0.0 checking installable status
152 silly cache add args [ 'trash@^4.0.0', null ]
153 verbose cache add spec trash@^4.0.0
154 silly cache add parsed spec Result {
154 silly cache add raw: 'trash@^4.0.0',
154 silly cache add scope: null,
154 silly cache add escapedName: 'trash',
154 silly cache add name: 'trash',
154 silly cache add rawSpec: '^4.0.0',
154 silly cache add spec: '>=4.0.0 <5.0.0',
154 silly cache add type: 'range' }
155 silly addNamed trash@>=4.0.0 <5.0.0
156 verbose addNamed ">=4.0.0 <5.0.0" is a valid semver range for trash
157 silly addNameRange { name: 'trash', range: '>=4.0.0 <5.0.0', hasData: false }
158 silly mapToRegistry name trash
159 silly mapToRegistry using default registry
160 silly mapToRegistry registry https://registry.npmjs.org/
161 silly mapToRegistry data Result {
161 silly mapToRegistry raw: 'trash',
161 silly mapToRegistry scope: null,
161 silly mapToRegistry escapedName: 'trash',
161 silly mapToRegistry name: 'trash',
161 silly mapToRegistry rawSpec: '',
161 silly mapToRegistry spec: 'latest',
161 silly mapToRegistry type: 'tag' }
162 silly mapToRegistry uri https://registry.npmjs.org/trash
163 verbose addNameRange registry:https://registry.npmjs.org/trash not in flight; fetching
164 verbose get https://registry.npmjs.org/trash not expired, no request
165 silly addNameRange number 2 { name: 'trash', range: '>=4.0.0 <5.0.0', hasData: true }
166 silly addNameRange versions [ 'trash',
166 silly addNameRange [ '0.1.0',
166 silly addNameRange '0.1.1',
166 silly addNameRange '0.1.2',
166 silly addNameRange '1.0.0',
166 silly addNameRange '1.1.0',
166 silly addNameRange '1.1.1',
166 silly addNameRange '1.1.2',
166 silly addNameRange '1.1.3',
166 silly addNameRange '1.2.0',
166 silly addNameRange '1.3.0',
166 silly addNameRange '1.3.1',
166 silly addNameRange '1.4.0',
166 silly addNameRange '1.4.1',
166 silly addNameRange '2.0.0',
166 silly addNameRange '3.0.0',
166 silly addNameRange '3.1.0',
166 silly addNameRange '3.1.1',
166 silly addNameRange '3.1.2',
166 silly addNameRange '3.2.0',
166 silly addNameRange '3.3.0',
166 silly addNameRange '3.4.0',
166 silly addNameRange '3.4.1',
166 silly addNameRange '3.4.2',
166 silly addNameRange '4.0.0' ] ]
167 silly addNamed trash@4.0.0
168 verbose addNamed "4.0.0" is a plain semver version for trash
169 verbose afterAdd /Users/admin/.npm/update-notifier/1.0.2/package/package.json written
170 silly cache afterAdd trash@4.0.0
171 verbose afterAdd /Users/admin/.npm/trash/4.0.0/package/package.json not in flight; writing
172 verbose correctMkdir /Users/admin/.npm correctMkdir not in flight; initializing
173 verbose afterAdd /Users/admin/.npm/trash/4.0.0/package/package.json written
174 silly fetchNamedPackageData camelcase-keys
175 silly mapToRegistry name camelcase-keys
176 silly mapToRegistry using default registry
177 silly mapToRegistry registry https://registry.npmjs.org/
178 silly mapToRegistry data Result {
178 silly mapToRegistry raw: 'camelcase-keys',
178 silly mapToRegistry scope: null,
178 silly mapToRegistry escapedName: 'camelcase-keys',
178 silly mapToRegistry name: 'camelcase-keys',
178 silly mapToRegistry rawSpec: '',
178 silly mapToRegistry spec: 'latest',
178 silly mapToRegistry type: 'tag' }
179 silly mapToRegistry uri https://registry.npmjs.org/camelcase-keys
180 silly fetchNamedPackageData decamelize
181 silly mapToRegistry name decamelize
182 silly mapToRegistry using default registry
183 silly mapToRegistry registry https://registry.npmjs.org/
184 silly mapToRegistry data Result {
184 silly mapToRegistry raw: 'decamelize',
184 silly mapToRegistry scope: null,
184 silly mapToRegistry escapedName: 'decamelize',
184 silly mapToRegistry name: 'decamelize',
184 silly mapToRegistry rawSpec: '',
184 silly mapToRegistry spec: 'latest',
184 silly mapToRegistry type: 'tag' }
185 silly mapToRegistry uri https://registry.npmjs.org/decamelize
186 silly fetchNamedPackageData loud-rejection
187 silly mapToRegistry name loud-rejection
188 silly mapToRegistry using default registry
189 silly mapToRegistry registry https://registry.npmjs.org/
190 silly mapToRegistry data Result {
190 silly mapToRegistry raw: 'loud-rejection',
190 silly mapToRegistry scope: null,
190 silly mapToRegistry escapedName: 'loud-rejection',
190 silly mapToRegistry name: 'loud-rejection',
190 silly mapToRegistry rawSpec: '',
190 silly mapToRegistry spec: 'latest',
190 silly mapToRegistry type: 'tag' }
191 silly mapToRegistry uri https://registry.npmjs.org/loud-rejection
192 silly fetchNamedPackageData map-obj
193 silly mapToRegistry name map-obj
194 silly mapToRegistry using default registry
195 silly mapToRegistry registry https://registry.npmjs.org/
196 silly mapToRegistry data Result {
196 silly mapToRegistry raw: 'map-obj',
196 silly mapToRegistry scope: null,
196 silly mapToRegistry escapedName: 'map-obj',
196 silly mapToRegistry name: 'map-obj',
196 silly mapToRegistry rawSpec: '',
196 silly mapToRegistry spec: 'latest',
196 silly mapToRegistry type: 'tag' }
197 silly mapToRegistry uri https://registry.npmjs.org/map-obj
198 silly fetchNamedPackageData minimist
199 silly mapToRegistry name minimist
200 silly mapToRegistry using default registry
201 silly mapToRegistry registry https://registry.npmjs.org/
202 silly mapToRegistry data Result {
202 silly mapToRegistry raw: 'minimist',
202 silly mapToRegistry scope: null,
202 silly mapToRegistry escapedName: 'minimist',
202 silly mapToRegistry name: 'minimist',
202 silly mapToRegistry rawSpec: '',
202 silly mapToRegistry spec: 'latest',
202 silly mapToRegistry type: 'tag' }
203 silly mapToRegistry uri https://registry.npmjs.org/minimist
204 silly fetchNamedPackageData normalize-package-data
205 silly mapToRegistry name normalize-package-data
206 silly mapToRegistry using default registry
207 silly mapToRegistry registry https://registry.npmjs.org/
208 silly mapToRegistry data Result {
208 silly mapToRegistry raw: 'normalize-package-data',
208 silly mapToRegistry scope: null,
208 silly mapToRegistry escapedName: 'normalize-package-data',
208 silly mapToRegistry name: 'normalize-package-data',
208 silly mapToRegistry rawSpec: '',
208 silly mapToRegistry spec: 'latest',
208 silly mapToRegistry type: 'tag' }
209 silly mapToRegistry uri https://registry.npmjs.org/normalize-package-data
210 silly fetchNamedPackageData object-assign
211 silly mapToRegistry name object-assign
212 silly mapToRegistry using default registry
213 silly mapToRegistry registry https://registry.npmjs.org/
214 silly mapToRegistry data Result {
214 silly mapToRegistry raw: 'object-assign',
214 silly mapToRegistry scope: null,
214 silly mapToRegistry escapedName: 'object-assign',
214 silly mapToRegistry name: 'object-assign',
214 silly mapToRegistry rawSpec: '',
214 silly mapToRegistry spec: 'latest',
214 silly mapToRegistry type: 'tag' }
215 silly mapToRegistry uri https://registry.npmjs.org/object-assign
216 silly fetchNamedPackageData read-pkg-up
217 silly mapToRegistry name read-pkg-up
218 silly mapToRegistry using default registry
219 silly mapToRegistry registry https://registry.npmjs.org/
220 silly mapToRegistry data Result {
220 silly mapToRegistry raw: 'read-pkg-up',
220 silly mapToRegistry scope: null,
220 silly mapToRegistry escapedName: 'read-pkg-up',
220 silly mapToRegistry name: 'read-pkg-up',
220 silly mapToRegistry rawSpec: '',
220 silly mapToRegistry spec: 'latest',
220 silly mapToRegistry type: 'tag' }
221 silly mapToRegistry uri https://registry.npmjs.org/read-pkg-up
222 silly fetchNamedPackageData redent
223 silly mapToRegistry name redent
224 silly mapToRegistry using default registry
225 silly mapToRegistry registry https://registry.npmjs.org/
226 silly mapToRegistry data Result {
226 silly mapToRegistry raw: 'redent',
226 silly mapToRegistry scope: null,
226 silly mapToRegistry escapedName: 'redent',
226 silly mapToRegistry name: 'redent',
226 silly mapToRegistry rawSpec: '',
226 silly mapToRegistry spec: 'latest',
226 silly mapToRegistry type: 'tag' }
227 silly mapToRegistry uri https://registry.npmjs.org/redent
228 silly fetchNamedPackageData trim-newlines
229 silly mapToRegistry name trim-newlines
230 silly mapToRegistry using default registry
231 silly mapToRegistry registry https://registry.npmjs.org/
232 silly mapToRegistry data Result {
232 silly mapToRegistry raw: 'trim-newlines',
232 silly mapToRegistry scope: null,
232 silly mapToRegistry escapedName: 'trim-newlines',
232 silly mapToRegistry name: 'trim-newlines',
232 silly mapToRegistry rawSpec: '',
232 silly mapToRegistry spec: 'latest',
232 silly mapToRegistry type: 'tag' }
233 silly mapToRegistry uri https://registry.npmjs.org/trim-newlines
234 verbose request uri https://registry.npmjs.org/decamelize
235 verbose request no auth needed
236 info attempt registry request try #1 at 10:52:59 AM
237 verbose etag "AAT63TCUW5VNB1WJ81O63MUR0"
238 http request GET https://registry.npmjs.org/decamelize
239 verbose request uri https://registry.npmjs.org/camelcase-keys
240 verbose request no auth needed
241 info attempt registry request try #1 at 10:52:59 AM
242 verbose etag "3VQQGD8KYI6J0TXEBW7AYC1OG"
243 http request GET https://registry.npmjs.org/camelcase-keys
244 verbose request uri https://registry.npmjs.org/map-obj
245 verbose request no auth needed
246 info attempt registry request try #1 at 10:52:59 AM
247 verbose etag "E2J33JPSLB08LILSQYW3T3U9L"
248 http request GET https://registry.npmjs.org/map-obj
249 verbose request uri https://registry.npmjs.org/loud-rejection
250 verbose request no auth needed
251 info attempt registry request try #1 at 10:52:59 AM
252 verbose etag "5C601C8GVLAZXFNK02F6VDO74"
253 http request GET https://registry.npmjs.org/loud-rejection
254 verbose request uri https://registry.npmjs.org/minimist
255 verbose request no auth needed
256 info attempt registry request try #1 at 10:52:59 AM
257 verbose etag "1X42A1OKUSBATXO0FNEMQBLU8"
258 http request GET https://registry.npmjs.org/minimist
259 verbose request uri https://registry.npmjs.org/read-pkg-up
260 verbose request no auth needed
261 info attempt registry request try #1 at 10:52:59 AM
262 verbose etag "5QD3FQR7GT7X7OCP59SYP6U2Q"
263 http request GET https://registry.npmjs.org/read-pkg-up
264 verbose request uri https://registry.npmjs.org/object-assign
265 verbose request no auth needed
266 info attempt registry request try #1 at 10:52:59 AM
267 verbose etag "30UVZZC5Y9M6FC4LR4899Y75I"
268 http request GET https://registry.npmjs.org/object-assign
269 verbose request uri https://registry.npmjs.org/normalize-package-data
270 verbose request no auth needed
271 info attempt registry request try #1 at 10:52:59 AM
272 verbose etag "3RAHM1ZZUW00CE7OR2ZLLWJ9"
273 http request GET https://registry.npmjs.org/normalize-package-data
274 verbose request uri https://registry.npmjs.org/redent
275 verbose request no auth needed
276 info attempt registry request try #1 at 10:52:59 AM
277 verbose etag "ETD1ZP2KBT3QAEEZAN0ZDDZ06"
278 http request GET https://registry.npmjs.org/redent
279 verbose request uri https://registry.npmjs.org/trim-newlines
280 verbose request no auth needed
281 info attempt registry request try #1 at 10:52:59 AM
282 verbose etag "8UKMJIXXKAEN7B8P7WW3I4W55"
283 http request GET https://registry.npmjs.org/trim-newlines
284 http 304 https://registry.npmjs.org/decamelize
285 verbose headers { date: 'Tue, 04 Oct 2016 15:52:59 GMT',
285 verbose headers via: '1.1 varnish',
285 verbose headers 'cache-control': 'max-age=300',
285 verbose headers etag: '"AAT63TCUW5VNB1WJ81O63MUR0"',
285 verbose headers age: '168',
285 verbose headers connection: 'keep-alive',
285 verbose headers 'x-served-by': 'cache-ord1739-ORD',
285 verbose headers 'x-cache': 'HIT',
285 verbose headers 'x-cache-hits': '17',
285 verbose headers 'x-timer': 'S1475596379.594761,VS0,VE0',
285 verbose headers vary: 'Accept-Encoding' }
286 silly get cb [ 304,
286 silly get { date: 'Tue, 04 Oct 2016 15:52:59 GMT',
286 silly get via: '1.1 varnish',
286 silly get 'cache-control': 'max-age=300',
286 silly get etag: '"AAT63TCUW5VNB1WJ81O63MUR0"',
286 silly get age: '168',
286 silly get connection: 'keep-alive',
286 silly get 'x-served-by': 'cache-ord1739-ORD',
286 silly get 'x-cache': 'HIT',
286 silly get 'x-cache-hits': '17',
286 silly get 'x-timer': 'S1475596379.594761,VS0,VE0',
286 silly get vary: 'Accept-Encoding' } ]
287 verbose etag https://registry.npmjs.org/decamelize from cache
288 verbose get saving decamelize to /Users/admin/.npm/registry.npmjs.org/decamelize/.cache.json
289 verbose correctMkdir /Users/admin/.npm correctMkdir not in flight; initializing
290 http 304 https://registry.npmjs.org/map-obj
291 verbose headers { date: 'Tue, 04 Oct 2016 15:52:59 GMT',
291 verbose headers via: '1.1 varnish',
291 verbose headers 'cache-control': 'max-age=300',
291 verbose headers etag: '"E2J33JPSLB08LILSQYW3T3U9L"',
291 verbose headers age: '231',
291 verbose headers connection: 'keep-alive',
291 verbose headers 'x-served-by': 'cache-ord1742-ORD',
291 verbose headers 'x-cache': 'HIT',
291 verbose headers 'x-cache-hits': '9',
291 verbose headers 'x-timer': 'S1475596379.595253,VS0,VE0',
291 verbose headers vary: 'Accept-Encoding' }
292 silly get cb [ 304,
292 silly get { date: 'Tue, 04 Oct 2016 15:52:59 GMT',
292 silly get via: '1.1 varnish',
292 silly get 'cache-control': 'max-age=300',
292 silly get etag: '"E2J33JPSLB08LILSQYW3T3U9L"',
292 silly get age: '231',
292 silly get connection: 'keep-alive',
292 silly get 'x-served-by': 'cache-ord1742-ORD',
292 silly get 'x-cache': 'HIT',
292 silly get 'x-cache-hits': '9',
292 silly get 'x-timer': 'S1475596379.595253,VS0,VE0',
292 silly get vary: 'Accept-Encoding' } ]
293 verbose etag https://registry.npmjs.org/map-obj from cache
294 verbose get saving map-obj to /Users/admin/.npm/registry.npmjs.org/map-obj/.cache.json
295 verbose correctMkdir /Users/admin/.npm correctMkdir not in flight; initializing
296 http 200 https://registry.npmjs.org/camelcase-keys
297 verbose headers { server: 'CouchDB/1.6.1 (Erlang OTP/R16B03)',
297 verbose headers etag: '"6VSZ0LR8VXANMAKH2M48JE5LV"',
297 verbose headers 'content-type': 'application/json',
297 verbose headers 'content-encoding': 'gzip',
297 verbose headers 'cache-control': 'max-age=300',
297 verbose headers 'content-length': '2229',
297 verbose headers 'accept-ranges': 'bytes',
297 verbose headers date: 'Tue, 04 Oct 2016 15:52:59 GMT',
297 verbose headers via: '1.1 varnish',
297 verbose headers age: '69',
297 verbose headers connection: 'keep-alive',
297 verbose headers 'x-served-by': 'cache-ord1742-ORD',
297 verbose headers 'x-cache': 'HIT',
297 verbose headers 'x-cache-hits': '5',
297 verbose headers 'x-timer': 'S1475596379.595236,VS0,VE0',
297 verbose headers vary: 'Accept-Encoding' }
298 silly get cb [ 200,
298 silly get { server: 'CouchDB/1.6.1 (Erlang OTP/R16B03)',
298 silly get etag: '"6VSZ0LR8VXANMAKH2M48JE5LV"',
298 silly get 'content-type': 'application/json',
298 silly get 'content-encoding': 'gzip',
298 silly get 'cache-control': 'max-age=300',
298 silly get 'content-length': '2229',
298 silly get 'accept-ranges': 'bytes',
298 silly get date: 'Tue, 04 Oct 2016 15:52:59 GMT',
298 silly get via: '1.1 varnish',
298 silly get age: '69',
298 silly get connection: 'keep-alive',
298 silly get 'x-served-by': 'cache-ord1742-ORD',
298 silly get 'x-cache': 'HIT',
298 silly get 'x-cache-hits': '5',
298 silly get 'x-timer': 'S1475596379.595236,VS0,VE0',
298 silly get vary: 'Accept-Encoding' } ]
299 verbose get saving camelcase-keys to /Users/admin/.npm/registry.npmjs.org/camelcase-keys/.cache.json
300 verbose correctMkdir /Users/admin/.npm correctMkdir not in flight; initializing
301 silly resolveWithNewModule decamelize@1.2.0 checking installable status
302 silly cache add args [ 'decamelize@^1.1.2', null ]
303 verbose cache add spec decamelize@^1.1.2
304 silly cache add parsed spec Result {
304 silly cache add raw: 'decamelize@^1.1.2',
304 silly cache add scope: null,
304 silly cache add escapedName: 'decamelize',
304 silly cache add name: 'decamelize',
304 silly cache add rawSpec: '^1.1.2',
304 silly cache add spec: '>=1.1.2 <2.0.0',
304 silly cache add type: 'range' }
305 silly addNamed decamelize@>=1.1.2 <2.0.0
306 verbose addNamed ">=1.1.2 <2.0.0" is a valid semver range for decamelize
307 silly addNameRange { name: 'decamelize', range: '>=1.1.2 <2.0.0', hasData: false }
308 silly mapToRegistry name decamelize
309 silly mapToRegistry using default registry
310 silly mapToRegistry registry https://registry.npmjs.org/
311 silly mapToRegistry data Result {
311 silly mapToRegistry raw: 'decamelize',
311 silly mapToRegistry scope: null,
311 silly mapToRegistry escapedName: 'decamelize',
311 silly mapToRegistry name: 'decamelize',
311 silly mapToRegistry rawSpec: '',
311 silly mapToRegistry spec: 'latest',
311 silly mapToRegistry type: 'tag' }
312 silly mapToRegistry uri https://registry.npmjs.org/decamelize
313 verbose addNameRange registry:https://registry.npmjs.org/decamelize not in flight; fetching
314 silly resolveWithNewModule map-obj@1.0.1 checking installable status
315 silly cache add args [ 'map-obj@^1.0.1', null ]
316 verbose cache add spec map-obj@^1.0.1
317 silly cache add parsed spec Result {
317 silly cache add raw: 'map-obj@^1.0.1',
317 silly cache add scope: null,
317 silly cache add escapedName: 'map-obj',
317 silly cache add name: 'map-obj',
317 silly cache add rawSpec: '^1.0.1',
317 silly cache add spec: '>=1.0.1 <2.0.0',
317 silly cache add type: 'range' }
318 silly addNamed map-obj@>=1.0.1 <2.0.0
319 verbose addNamed ">=1.0.1 <2.0.0" is a valid semver range for map-obj
320 silly addNameRange { name: 'map-obj', range: '>=1.0.1 <2.0.0', hasData: false }
321 silly mapToRegistry name map-obj
322 silly mapToRegistry using default registry
323 silly mapToRegistry registry https://registry.npmjs.org/
324 silly mapToRegistry data Result {
324 silly mapToRegistry raw: 'map-obj',
324 silly mapToRegistry scope: null,
324 silly mapToRegistry escapedName: 'map-obj',
324 silly mapToRegistry name: 'map-obj',
324 silly mapToRegistry rawSpec: '',
324 silly mapToRegistry spec: 'latest',
324 silly mapToRegistry type: 'tag' }
325 silly mapToRegistry uri https://registry.npmjs.org/map-obj
326 verbose addNameRange registry:https://registry.npmjs.org/map-obj not in flight; fetching
327 http 304 https://registry.npmjs.org/loud-rejection
328 verbose headers { date: 'Tue, 04 Oct 2016 15:52:59 GMT',
328 verbose headers via: '1.1 varnish',
328 verbose headers 'cache-control': 'max-age=300',
328 verbose headers etag: '"5C601C8GVLAZXFNK02F6VDO74"',
328 verbose headers age: '238',
328 verbose headers connection: 'keep-alive',
328 verbose headers 'x-served-by': 'cache-ord1735-ORD',
328 verbose headers 'x-cache': 'HIT',
328 verbose headers 'x-cache-hits': '16',
328 verbose headers 'x-timer': 'S1475596379.625796,VS0,VE0',
328 verbose headers vary: 'Accept-Encoding' }
329 silly get cb [ 304,
329 silly get { date: 'Tue, 04 Oct 2016 15:52:59 GMT',
329 silly get via: '1.1 varnish',
329 silly get 'cache-control': 'max-age=300',
329 silly get etag: '"5C601C8GVLAZXFNK02F6VDO74"',
329 silly get age: '238',
329 silly get connection: 'keep-alive',
329 silly get 'x-served-by': 'cache-ord1735-ORD',
329 silly get 'x-cache': 'HIT',
329 silly get 'x-cache-hits': '16',
329 silly get 'x-timer': 'S1475596379.625796,VS0,VE0',
329 silly get vary: 'Accept-Encoding' } ]
330 verbose etag https://registry.npmjs.org/loud-rejection from cache
331 verbose get saving loud-rejection to /Users/admin/.npm/registry.npmjs.org/loud-rejection/.cache.json
332 verbose correctMkdir /Users/admin/.npm correctMkdir not in flight; initializing
333 http 304 https://registry.npmjs.org/minimist
334 verbose headers { date: 'Tue, 04 Oct 2016 15:52:59 GMT',
334 verbose headers via: '1.1 varnish',
334 verbose headers 'cache-control': 'max-age=300',
334 verbose headers etag: '"1X42A1OKUSBATXO0FNEMQBLU8"',
334 verbose headers age: '133',
334 verbose headers connection: 'keep-alive',
334 verbose headers 'x-served-by': 'cache-ord1722-ORD',
334 verbose headers 'x-cache': 'HIT',
334 verbose headers 'x-cache-hits': '22',
334 verbose headers 'x-timer': 'S1475596379.641718,VS0,VE0',
334 verbose headers vary: 'Accept-Encoding' }
335 silly get cb [ 304,
335 silly get { date: 'Tue, 04 Oct 2016 15:52:59 GMT',
335 silly get via: '1.1 varnish',
335 silly get 'cache-control': 'max-age=300',
335 silly get etag: '"1X42A1OKUSBATXO0FNEMQBLU8"',
335 silly get age: '133',
335 silly get connection: 'keep-alive',
335 silly get 'x-served-by': 'cache-ord1722-ORD',
335 silly get 'x-cache': 'HIT',
335 silly get 'x-cache-hits': '22',
335 silly get 'x-timer': 'S1475596379.641718,VS0,VE0',
335 silly get vary: 'Accept-Encoding' } ]
336 verbose etag https://registry.npmjs.org/minimist from cache
337 verbose get saving minimist to /Users/admin/.npm/registry.npmjs.org/minimist/.cache.json
338 verbose correctMkdir /Users/admin/.npm correctMkdir not in flight; initializing
339 http 304 https://registry.npmjs.org/read-pkg-up
340 verbose headers { date: 'Tue, 04 Oct 2016 15:52:59 GMT',
340 verbose headers via: '1.1 varnish',
340 verbose headers 'cache-control': 'max-age=300',
340 verbose headers etag: '"5QD3FQR7GT7X7OCP59SYP6U2Q"',
340 verbose headers age: '212',
340 verbose headers connection: 'keep-alive',
340 verbose headers 'x-served-by': 'cache-ord1723-ORD',
340 verbose headers 'x-cache': 'HIT',
340 verbose headers 'x-cache-hits': '11',
340 verbose headers 'x-timer': 'S1475596379.642439,VS0,VE0',
340 verbose headers vary: 'Accept-Encoding' }
341 silly get cb [ 304,
341 silly get { date: 'Tue, 04 Oct 2016 15:52:59 GMT',
341 silly get via: '1.1 varnish',
341 silly get 'cache-control': 'max-age=300',
341 silly get etag: '"5QD3FQR7GT7X7OCP59SYP6U2Q"',
341 silly get age: '212',
341 silly get connection: 'keep-alive',
341 silly get 'x-served-by': 'cache-ord1723-ORD',
341 silly get 'x-cache': 'HIT',
341 silly get 'x-cache-hits': '11',
341 silly get 'x-timer': 'S1475596379.642439,VS0,VE0',
341 silly get vary: 'Accept-Encoding' } ]
342 verbose etag https://registry.npmjs.org/read-pkg-up from cache
343 verbose get saving read-pkg-up to /Users/admin/.npm/registry.npmjs.org/read-pkg-up/.cache.json
344 verbose correctMkdir /Users/admin/.npm correctMkdir not in flight; initializing
345 http 304 https://registry.npmjs.org/object-assign
346 verbose headers { date: 'Tue, 04 Oct 2016 15:52:59 GMT',
346 verbose headers via: '1.1 varnish',
346 verbose headers 'cache-control': 'max-age=300',
346 verbose headers etag: '"30UVZZC5Y9M6FC4LR4899Y75I"',
346 verbose headers age: '262',
346 verbose headers connection: 'keep-alive',
346 verbose headers 'x-served-by': 'cache-ord1721-ORD',
346 verbose headers 'x-cache': 'HIT',
346 verbose headers 'x-cache-hits': '25',
346 verbose headers 'x-timer': 'S1475596379.642844,VS0,VE0',
346 verbose headers vary: 'Accept-Encoding' }
347 silly get cb [ 304,
347 silly get { date: 'Tue, 04 Oct 2016 15:52:59 GMT',
347 silly get via: '1.1 varnish',
347 silly get 'cache-control': 'max-age=300',
347 silly get etag: '"30UVZZC5Y9M6FC4LR4899Y75I"',
347 silly get age: '262',
347 silly get connection: 'keep-alive',
347 silly get 'x-served-by': 'cache-ord1721-ORD',
347 silly get 'x-cache': 'HIT',
347 silly get 'x-cache-hits': '25',
347 silly get 'x-timer': 'S1475596379.642844,VS0,VE0',
347 silly get vary: 'Accept-Encoding' } ]
348 verbose etag https://registry.npmjs.org/object-assign from cache
349 verbose get saving object-assign to /Users/admin/.npm/registry.npmjs.org/object-assign/.cache.json
350 verbose correctMkdir /Users/admin/.npm correctMkdir not in flight; initializing
351 http 304 https://registry.npmjs.org/normalize-package-data
352 verbose headers { date: 'Tue, 04 Oct 2016 15:52:59 GMT',
352 verbose headers via: '1.1 varnish',
352 verbose headers 'cache-control': 'max-age=300',
352 verbose headers etag: '"3RAHM1ZZUW00CE7OR2ZLLWJ9"',
352 verbose headers age: '177',
352 verbose headers connection: 'keep-alive',
352 verbose headers 'x-served-by': 'cache-ord1738-ORD',
352 verbose headers 'x-cache': 'HIT',
352 verbose headers 'x-cache-hits': '9',
352 verbose headers 'x-timer': 'S1475596379.644053,VS0,VE0',
352 verbose headers vary: 'Accept-Encoding' }
353 silly get cb [ 304,
353 silly get { date: 'Tue, 04 Oct 2016 15:52:59 GMT',
353 silly get via: '1.1 varnish',
353 silly get 'cache-control': 'max-age=300',
353 silly get etag: '"3RAHM1ZZUW00CE7OR2ZLLWJ9"',
353 silly get age: '177',
353 silly get connection: 'keep-alive',
353 silly get 'x-served-by': 'cache-ord1738-ORD',
353 silly get 'x-cache': 'HIT',
353 silly get 'x-cache-hits': '9',
353 silly get 'x-timer': 'S1475596379.644053,VS0,VE0',
353 silly get vary: 'Accept-Encoding' } ]
354 verbose etag https://registry.npmjs.org/normalize-package-data from cache
355 verbose get saving normalize-package-data to /Users/admin/.npm/registry.npmjs.org/normalize-package-data/.cache.json
356 verbose correctMkdir /Users/admin/.npm correctMkdir not in flight; initializing
357 http 304 https://registry.npmjs.org/redent
358 verbose headers { date: 'Tue, 04 Oct 2016 15:52:59 GMT',
358 verbose headers via: '1.1 varnish',
358 verbose headers 'cache-control': 'max-age=300',
358 verbose headers etag: '"ETD1ZP2KBT3QAEEZAN0ZDDZ06"',
358 verbose headers age: '192',
358 verbose headers connection: 'keep-alive',
358 verbose headers 'x-served-by': 'cache-ord1729-ORD',
358 verbose headers 'x-cache': 'HIT',
358 verbose headers 'x-cache-hits': '10',
358 verbose headers 'x-timer': 'S1475596379.643647,VS0,VE0',
358 verbose headers vary: 'Accept-Encoding' }
359 silly get cb [ 304,
359 silly get { date: 'Tue, 04 Oct 2016 15:52:59 GMT',
359 silly get via: '1.1 varnish',
359 silly get 'cache-control': 'max-age=300',
359 silly get etag: '"ETD1ZP2KBT3QAEEZAN0ZDDZ06"',
359 silly get age: '192',
359 silly get connection: 'keep-alive',
359 silly get 'x-served-by': 'cache-ord1729-ORD',
359 silly get 'x-cache': 'HIT',
359 silly get 'x-cache-hits': '10',
359 silly get 'x-timer': 'S1475596379.643647,VS0,VE0',
359 silly get vary: 'Accept-Encoding' } ]
360 verbose etag https://registry.npmjs.org/redent from cache
361 verbose get saving redent to /Users/admin/.npm/registry.npmjs.org/redent/.cache.json
362 verbose correctMkdir /Users/admin/.npm correctMkdir not in flight; initializing
363 http 304 https://registry.npmjs.org/trim-newlines
364 verbose headers { date: 'Tue, 04 Oct 2016 15:52:59 GMT',
364 verbose headers via: '1.1 varnish',
364 verbose headers 'cache-control': 'max-age=300',
364 verbose headers etag: '"8UKMJIXXKAEN7B8P7WW3I4W55"',
364 verbose headers age: '250',
364 verbose headers connection: 'keep-alive',
364 verbose headers 'x-served-by': 'cache-ord1730-ORD',
364 verbose headers 'x-cache': 'HIT',
364 verbose headers 'x-cache-hits': '10',
364 verbose headers 'x-timer': 'S1475596379.644123,VS0,VE0',
364 verbose headers vary: 'Accept-Encoding' }
365 silly get cb [ 304,
365 silly get { date: 'Tue, 04 Oct 2016 15:52:59 GMT',
365 silly get via: '1.1 varnish',
365 silly get 'cache-control': 'max-age=300',
365 silly get etag: '"8UKMJIXXKAEN7B8P7WW3I4W55"',
365 silly get age: '250',
365 silly get connection: 'keep-alive',
365 silly get 'x-served-by': 'cache-ord1730-ORD',
365 silly get 'x-cache': 'HIT',
365 silly get 'x-cache-hits': '10',
365 silly get 'x-timer': 'S1475596379.644123,VS0,VE0',
365 silly get vary: 'Accept-Encoding' } ]
366 verbose etag https://registry.npmjs.org/trim-newlines from cache
367 verbose get saving trim-newlines to /Users/admin/.npm/registry.npmjs.org/trim-newlines/.cache.json
368 verbose correctMkdir /Users/admin/.npm correctMkdir not in flight; initializing
369 silly resolveWithNewModule camelcase-keys@2.1.0 checking installable status
370 silly cache add args [ 'camelcase-keys@^2.0.0', null ]
371 verbose cache add spec camelcase-keys@^2.0.0
372 silly cache add parsed spec Result {
372 silly cache add raw: 'camelcase-keys@^2.0.0',
372 silly cache add scope: null,
372 silly cache add escapedName: 'camelcase-keys',
372 silly cache add name: 'camelcase-keys',
372 silly cache add rawSpec: '^2.0.0',
372 silly cache add spec: '>=2.0.0 <3.0.0',
372 silly cache add type: 'range' }
373 silly addNamed camelcase-keys@>=2.0.0 <3.0.0
374 verbose addNamed ">=2.0.0 <3.0.0" is a valid semver range for camelcase-keys
375 silly addNameRange { name: 'camelcase-keys',
375 silly addNameRange range: '>=2.0.0 <3.0.0',
375 silly addNameRange hasData: false }
376 silly mapToRegistry name camelcase-keys
377 silly mapToRegistry using default registry
378 silly mapToRegistry registry https://registry.npmjs.org/
379 silly mapToRegistry data Result {
379 silly mapToRegistry raw: 'camelcase-keys',
379 silly mapToRegistry scope: null,
379 silly mapToRegistry escapedName: 'camelcase-keys',
379 silly mapToRegistry name: 'camelcase-keys',
379 silly mapToRegistry rawSpec: '',
379 silly mapToRegistry spec: 'latest',
379 silly mapToRegistry type: 'tag' }
380 silly mapToRegistry uri https://registry.npmjs.org/camelcase-keys
381 verbose addNameRange registry:https://registry.npmjs.org/camelcase-keys not in flight; fetching
382 verbose get https://registry.npmjs.org/decamelize not expired, no request
383 silly addNameRange number 2 { name: 'decamelize', range: '>=1.1.2 <2.0.0', hasData: true }
384 silly addNameRange versions [ 'decamelize',
384 silly addNameRange [ '1.0.0', '1.1.0', '1.1.1', '1.1.2', '1.2.0' ] ]
385 silly addNamed decamelize@1.2.0
386 verbose addNamed "1.2.0" is a plain semver version for decamelize
387 verbose get https://registry.npmjs.org/map-obj not expired, no request
388 silly addNameRange number 2 { name: 'map-obj', range: '>=1.0.1 <2.0.0', hasData: true }
389 silly addNameRange versions [ 'map-obj', [ '1.0.0', '1.0.1', '2.0.0' ] ]
390 silly addNamed map-obj@1.0.1
391 verbose addNamed "1.0.1" is a plain semver version for map-obj
392 verbose get https://registry.npmjs.org/camelcase-keys not expired, no request
393 silly addNameRange number 2 { name: 'camelcase-keys',
393 silly addNameRange range: '>=2.0.0 <3.0.0',
393 silly addNameRange hasData: true }
394 silly addNameRange versions [ 'camelcase-keys',
394 silly addNameRange [ '1.0.0', '2.0.0', '2.1.0', '3.0.0', '4.0.0' ] ]
395 silly addNamed camelcase-keys@2.1.0
396 verbose addNamed "2.1.0" is a plain semver version for camelcase-keys
397 silly cache afterAdd decamelize@1.2.0
398 verbose afterAdd /Users/admin/.npm/decamelize/1.2.0/package/package.json not in flight; writing
399 verbose correctMkdir /Users/admin/.npm correctMkdir not in flight; initializing
400 silly cache afterAdd map-obj@1.0.1
401 verbose afterAdd /Users/admin/.npm/map-obj/1.0.1/package/package.json not in flight; writing
402 verbose correctMkdir /Users/admin/.npm correctMkdir not in flight; initializing