-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathnpm-debug.log
15790 lines (15790 loc) · 817 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/bin/nodejs', '/usr/bin/npm', 'install', '-g', 'nodemon' ]
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 nodemon
8 silly fetchNamedPackageData nodemon
9 silly mapToRegistry name nodemon
10 silly mapToRegistry using default registry
11 silly mapToRegistry registry https://registry.npmjs.org/
12 silly mapToRegistry data Result {
12 silly mapToRegistry raw: 'nodemon',
12 silly mapToRegistry scope: null,
12 silly mapToRegistry escapedName: 'nodemon',
12 silly mapToRegistry name: 'nodemon',
12 silly mapToRegistry rawSpec: '',
12 silly mapToRegistry spec: 'latest',
12 silly mapToRegistry type: 'tag' }
13 silly mapToRegistry uri https://registry.npmjs.org/nodemon
14 verbose request uri https://registry.npmjs.org/nodemon
15 verbose request no auth needed
16 info attempt registry request try #1 at 11:08:14 AM
17 verbose request id f62999b3bcc35c91
18 http request GET https://registry.npmjs.org/nodemon
19 http 200 https://registry.npmjs.org/nodemon
20 verbose headers { server: 'nginx/1.10.1',
20 verbose headers 'content-type': 'application/json',
20 verbose headers 'last-modified': 'Mon, 05 Dec 2016 15:16:07 GMT',
20 verbose headers etag: 'W/"584584b7-30b86"',
20 verbose headers 'content-encoding': 'gzip',
20 verbose headers 'cache-control': 'max-age=300',
20 verbose headers 'content-length': '20332',
20 verbose headers 'accept-ranges': 'bytes',
20 verbose headers date: 'Tue, 06 Dec 2016 11:08:14 GMT',
20 verbose headers via: '1.1 varnish',
20 verbose headers age: '5',
20 verbose headers connection: 'keep-alive',
20 verbose headers 'x-served-by': 'cache-lhr6351-LHR',
20 verbose headers 'x-cache': 'HIT',
20 verbose headers 'x-cache-hits': '1',
20 verbose headers 'x-timer': 'S1481022494.702047,VS0,VE0',
20 verbose headers vary: 'Accept-Encoding' }
21 silly get cb [ 200,
21 silly get { server: 'nginx/1.10.1',
21 silly get 'content-type': 'application/json',
21 silly get 'last-modified': 'Mon, 05 Dec 2016 15:16:07 GMT',
21 silly get etag: 'W/"584584b7-30b86"',
21 silly get 'content-encoding': 'gzip',
21 silly get 'cache-control': 'max-age=300',
21 silly get 'content-length': '20332',
21 silly get 'accept-ranges': 'bytes',
21 silly get date: 'Tue, 06 Dec 2016 11:08:14 GMT',
21 silly get via: '1.1 varnish',
21 silly get age: '5',
21 silly get connection: 'keep-alive',
21 silly get 'x-served-by': 'cache-lhr6351-LHR',
21 silly get 'x-cache': 'HIT',
21 silly get 'x-cache-hits': '1',
21 silly get 'x-timer': 'S1481022494.702047,VS0,VE0',
21 silly get vary: 'Accept-Encoding' } ]
22 verbose get saving nodemon to /home/pi/.npm/registry.npmjs.org/nodemon/.cache.json
23 verbose correctMkdir /home/pi/.npm correctMkdir not in flight; initializing
24 silly install normalizeTree
25 silly loadCurrentTree Finishing
26 silly loadIdealTree Starting
27 silly install loadIdealTree
28 silly cloneCurrentTree Starting
29 silly install cloneCurrentTreeToIdealTree
30 silly cloneCurrentTree Finishing
31 silly loadShrinkwrap Starting
32 silly install loadShrinkwrap
33 silly loadShrinkwrap Finishing
34 silly loadAllDepsIntoIdealTree Starting
35 silly install loadAllDepsIntoIdealTree
36 silly resolveWithNewModule [email protected] checking installable status
37 silly cache add args [ 'nodemon', null ]
38 verbose cache add spec nodemon
39 silly cache add parsed spec Result {
39 silly cache add raw: 'nodemon',
39 silly cache add scope: null,
39 silly cache add escapedName: 'nodemon',
39 silly cache add name: 'nodemon',
39 silly cache add rawSpec: '',
39 silly cache add spec: 'latest',
39 silly cache add type: 'tag' }
40 silly addNamed nodemon@latest
41 verbose addNamed "latest" is being treated as a dist-tag for nodemon
42 info addNameTag [ 'nodemon', 'latest' ]
43 silly mapToRegistry name nodemon
44 silly mapToRegistry using default registry
45 silly mapToRegistry registry https://registry.npmjs.org/
46 silly mapToRegistry data Result {
46 silly mapToRegistry raw: 'nodemon',
46 silly mapToRegistry scope: null,
46 silly mapToRegistry escapedName: 'nodemon',
46 silly mapToRegistry name: 'nodemon',
46 silly mapToRegistry rawSpec: '',
46 silly mapToRegistry spec: 'latest',
46 silly mapToRegistry type: 'tag' }
47 silly mapToRegistry uri https://registry.npmjs.org/nodemon
48 verbose addNameTag registry:https://registry.npmjs.org/nodemon not in flight; fetching
49 verbose get https://registry.npmjs.org/nodemon not expired, no request
50 silly addNameTag next cb for nodemon with tag latest
51 silly addNamed [email protected]
52 verbose addNamed "1.11.0" is a plain semver version for nodemon
53 silly mapToRegistry name nodemon
54 silly mapToRegistry using default registry
55 silly mapToRegistry registry https://registry.npmjs.org/
56 silly mapToRegistry data Result {
56 silly mapToRegistry raw: 'nodemon',
56 silly mapToRegistry scope: null,
56 silly mapToRegistry escapedName: 'nodemon',
56 silly mapToRegistry name: 'nodemon',
56 silly mapToRegistry rawSpec: '',
56 silly mapToRegistry spec: 'latest',
56 silly mapToRegistry type: 'tag' }
57 silly mapToRegistry uri https://registry.npmjs.org/nodemon
58 verbose addRemoteTarball https://registry.npmjs.org/nodemon/-/nodemon-1.11.0.tgz not in flight; adding
59 verbose addRemoteTarball [ 'https://registry.npmjs.org/nodemon/-/nodemon-1.11.0.tgz',
59 verbose addRemoteTarball '226c562bd2a7b13d3d7518b49ad4828a3623d06c' ]
60 info retry fetch attempt 1 at 11:08:15 AM
61 info attempt registry request try #1 at 11:08:15 AM
62 http fetch GET https://registry.npmjs.org/nodemon/-/nodemon-1.11.0.tgz
63 http fetch 200 https://registry.npmjs.org/nodemon/-/nodemon-1.11.0.tgz
64 silly fetchAndShaCheck shasum 226c562bd2a7b13d3d7518b49ad4828a3623d06c
65 verbose addTmpTarball /tmp/npm-4792-5a76630c/registry.npmjs.org/nodemon/-/nodemon-1.11.0.tgz not in flight; adding
66 verbose addTmpTarball already have metadata; skipping unpack for [email protected]
67 verbose correctMkdir /home/pi/.npm correctMkdir not in flight; initializing
68 silly cache afterAdd [email protected]
69 verbose afterAdd /home/pi/.npm/nodemon/1.11.0/package/package.json not in flight; writing
70 verbose correctMkdir /home/pi/.npm correctMkdir not in flight; initializing
71 verbose afterAdd /home/pi/.npm/nodemon/1.11.0/package/package.json written
72 silly fetchNamedPackageData chokidar
73 silly mapToRegistry name chokidar
74 silly mapToRegistry using default registry
75 silly mapToRegistry registry https://registry.npmjs.org/
76 silly mapToRegistry data Result {
76 silly mapToRegistry raw: 'chokidar',
76 silly mapToRegistry scope: null,
76 silly mapToRegistry escapedName: 'chokidar',
76 silly mapToRegistry name: 'chokidar',
76 silly mapToRegistry rawSpec: '',
76 silly mapToRegistry spec: 'latest',
76 silly mapToRegistry type: 'tag' }
77 silly mapToRegistry uri https://registry.npmjs.org/chokidar
78 silly fetchNamedPackageData debug
79 silly mapToRegistry name debug
80 silly mapToRegistry using default registry
81 silly mapToRegistry registry https://registry.npmjs.org/
82 silly mapToRegistry data Result {
82 silly mapToRegistry raw: 'debug',
82 silly mapToRegistry scope: null,
82 silly mapToRegistry escapedName: 'debug',
82 silly mapToRegistry name: 'debug',
82 silly mapToRegistry rawSpec: '',
82 silly mapToRegistry spec: 'latest',
82 silly mapToRegistry type: 'tag' }
83 silly mapToRegistry uri https://registry.npmjs.org/debug
84 silly fetchNamedPackageData es6-promise
85 silly mapToRegistry name es6-promise
86 silly mapToRegistry using default registry
87 silly mapToRegistry registry https://registry.npmjs.org/
88 silly mapToRegistry data Result {
88 silly mapToRegistry raw: 'es6-promise',
88 silly mapToRegistry scope: null,
88 silly mapToRegistry escapedName: 'es6-promise',
88 silly mapToRegistry name: 'es6-promise',
88 silly mapToRegistry rawSpec: '',
88 silly mapToRegistry spec: 'latest',
88 silly mapToRegistry type: 'tag' }
89 silly mapToRegistry uri https://registry.npmjs.org/es6-promise
90 silly fetchNamedPackageData ignore-by-default
91 silly mapToRegistry name ignore-by-default
92 silly mapToRegistry using default registry
93 silly mapToRegistry registry https://registry.npmjs.org/
94 silly mapToRegistry data Result {
94 silly mapToRegistry raw: 'ignore-by-default',
94 silly mapToRegistry scope: null,
94 silly mapToRegistry escapedName: 'ignore-by-default',
94 silly mapToRegistry name: 'ignore-by-default',
94 silly mapToRegistry rawSpec: '',
94 silly mapToRegistry spec: 'latest',
94 silly mapToRegistry type: 'tag' }
95 silly mapToRegistry uri https://registry.npmjs.org/ignore-by-default
96 silly fetchNamedPackageData lodash.defaults
97 silly mapToRegistry name lodash.defaults
98 silly mapToRegistry using default registry
99 silly mapToRegistry registry https://registry.npmjs.org/
100 silly mapToRegistry data Result {
100 silly mapToRegistry raw: 'lodash.defaults',
100 silly mapToRegistry scope: null,
100 silly mapToRegistry escapedName: 'lodash.defaults',
100 silly mapToRegistry name: 'lodash.defaults',
100 silly mapToRegistry rawSpec: '',
100 silly mapToRegistry spec: 'latest',
100 silly mapToRegistry type: 'tag' }
101 silly mapToRegistry uri https://registry.npmjs.org/lodash.defaults
102 silly fetchNamedPackageData minimatch
103 silly mapToRegistry name minimatch
104 silly mapToRegistry using default registry
105 silly mapToRegistry registry https://registry.npmjs.org/
106 silly mapToRegistry data Result {
106 silly mapToRegistry raw: 'minimatch',
106 silly mapToRegistry scope: null,
106 silly mapToRegistry escapedName: 'minimatch',
106 silly mapToRegistry name: 'minimatch',
106 silly mapToRegistry rawSpec: '',
106 silly mapToRegistry spec: 'latest',
106 silly mapToRegistry type: 'tag' }
107 silly mapToRegistry uri https://registry.npmjs.org/minimatch
108 silly fetchNamedPackageData ps-tree
109 silly mapToRegistry name ps-tree
110 silly mapToRegistry using default registry
111 silly mapToRegistry registry https://registry.npmjs.org/
112 silly mapToRegistry data Result {
112 silly mapToRegistry raw: 'ps-tree',
112 silly mapToRegistry scope: null,
112 silly mapToRegistry escapedName: 'ps-tree',
112 silly mapToRegistry name: 'ps-tree',
112 silly mapToRegistry rawSpec: '',
112 silly mapToRegistry spec: 'latest',
112 silly mapToRegistry type: 'tag' }
113 silly mapToRegistry uri https://registry.npmjs.org/ps-tree
114 silly fetchNamedPackageData touch
115 silly mapToRegistry name touch
116 silly mapToRegistry using default registry
117 silly mapToRegistry registry https://registry.npmjs.org/
118 silly mapToRegistry data Result {
118 silly mapToRegistry raw: 'touch',
118 silly mapToRegistry scope: null,
118 silly mapToRegistry escapedName: 'touch',
118 silly mapToRegistry name: 'touch',
118 silly mapToRegistry rawSpec: '',
118 silly mapToRegistry spec: 'latest',
118 silly mapToRegistry type: 'tag' }
119 silly mapToRegistry uri https://registry.npmjs.org/touch
120 silly fetchNamedPackageData undefsafe
121 silly mapToRegistry name undefsafe
122 silly mapToRegistry using default registry
123 silly mapToRegistry registry https://registry.npmjs.org/
124 silly mapToRegistry data Result {
124 silly mapToRegistry raw: 'undefsafe',
124 silly mapToRegistry scope: null,
124 silly mapToRegistry escapedName: 'undefsafe',
124 silly mapToRegistry name: 'undefsafe',
124 silly mapToRegistry rawSpec: '',
124 silly mapToRegistry spec: 'latest',
124 silly mapToRegistry type: 'tag' }
125 silly mapToRegistry uri https://registry.npmjs.org/undefsafe
126 silly fetchNamedPackageData update-notifier
127 silly mapToRegistry name update-notifier
128 silly mapToRegistry using default registry
129 silly mapToRegistry registry https://registry.npmjs.org/
130 silly mapToRegistry data Result {
130 silly mapToRegistry raw: 'update-notifier',
130 silly mapToRegistry scope: null,
130 silly mapToRegistry escapedName: 'update-notifier',
130 silly mapToRegistry name: 'update-notifier',
130 silly mapToRegistry rawSpec: '',
130 silly mapToRegistry spec: 'latest',
130 silly mapToRegistry type: 'tag' }
131 silly mapToRegistry uri https://registry.npmjs.org/update-notifier
132 verbose request uri https://registry.npmjs.org/chokidar
133 verbose request no auth needed
134 info attempt registry request try #1 at 11:08:15 AM
135 http request GET https://registry.npmjs.org/chokidar
136 verbose request uri https://registry.npmjs.org/ignore-by-default
137 verbose request no auth needed
138 info attempt registry request try #1 at 11:08:15 AM
139 http request GET https://registry.npmjs.org/ignore-by-default
140 verbose request uri https://registry.npmjs.org/ps-tree
141 verbose request no auth needed
142 info attempt registry request try #1 at 11:08:15 AM
143 http request GET https://registry.npmjs.org/ps-tree
144 verbose request uri https://registry.npmjs.org/undefsafe
145 verbose request no auth needed
146 info attempt registry request try #1 at 11:08:15 AM
147 http request GET https://registry.npmjs.org/undefsafe
148 verbose request uri https://registry.npmjs.org/update-notifier
149 verbose request no auth needed
150 info attempt registry request try #1 at 11:08:15 AM
151 http request GET https://registry.npmjs.org/update-notifier
152 verbose request uri https://registry.npmjs.org/debug
153 verbose request no auth needed
154 info attempt registry request try #1 at 11:08:15 AM
155 verbose etag W/"583edb9d-b3b7"
156 verbose lastModified Wed, 30 Nov 2016 14:01:01 GMT
157 http request GET https://registry.npmjs.org/debug
158 verbose request uri https://registry.npmjs.org/minimatch
159 verbose request no auth needed
160 info attempt registry request try #1 at 11:08:15 AM
161 verbose etag W/"5843a57e-cbb8"
162 verbose lastModified Sun, 04 Dec 2016 05:11:26 GMT
163 http request GET https://registry.npmjs.org/minimatch
164 verbose request uri https://registry.npmjs.org/es6-promise
165 verbose request no auth needed
166 info attempt registry request try #1 at 11:08:15 AM
167 verbose etag "1QEMLR6BD8CUQ8EQHQHKVV2F8"
168 http request GET https://registry.npmjs.org/es6-promise
169 verbose request uri https://registry.npmjs.org/lodash.defaults
170 verbose request no auth needed
171 info attempt registry request try #1 at 11:08:15 AM
172 verbose etag "2DLTZYMIKMPADVA5LKA6DMDXQ"
173 http request GET https://registry.npmjs.org/lodash.defaults
174 verbose request uri https://registry.npmjs.org/touch
175 verbose request no auth needed
176 info attempt registry request try #1 at 11:08:15 AM
177 verbose etag "6SM3SDJLMQE3J1WUXXYEM8UPS"
178 http request GET https://registry.npmjs.org/touch
179 http 200 https://registry.npmjs.org/chokidar
180 verbose headers { server: 'nginx/1.10.1',
180 verbose headers 'content-type': 'application/json',
180 verbose headers 'last-modified': 'Wed, 30 Nov 2016 23:23:51 GMT',
180 verbose headers etag: 'W/"583f5f87-1baea"',
180 verbose headers 'content-encoding': 'gzip',
180 verbose headers 'cache-control': 'max-age=300',
180 verbose headers 'content-length': '14806',
180 verbose headers 'accept-ranges': 'bytes',
180 verbose headers date: 'Tue, 06 Dec 2016 11:08:15 GMT',
180 verbose headers via: '1.1 varnish',
180 verbose headers age: '209',
180 verbose headers connection: 'keep-alive',
180 verbose headers 'x-served-by': 'cache-lhr6351-LHR',
180 verbose headers 'x-cache': 'HIT',
180 verbose headers 'x-cache-hits': '10',
180 verbose headers 'x-timer': 'S1481022495.886268,VS0,VE0',
180 verbose headers vary: 'Accept-Encoding' }
181 silly get cb [ 200,
181 silly get { server: 'nginx/1.10.1',
181 silly get 'content-type': 'application/json',
181 silly get 'last-modified': 'Wed, 30 Nov 2016 23:23:51 GMT',
181 silly get etag: 'W/"583f5f87-1baea"',
181 silly get 'content-encoding': 'gzip',
181 silly get 'cache-control': 'max-age=300',
181 silly get 'content-length': '14806',
181 silly get 'accept-ranges': 'bytes',
181 silly get date: 'Tue, 06 Dec 2016 11:08:15 GMT',
181 silly get via: '1.1 varnish',
181 silly get age: '209',
181 silly get connection: 'keep-alive',
181 silly get 'x-served-by': 'cache-lhr6351-LHR',
181 silly get 'x-cache': 'HIT',
181 silly get 'x-cache-hits': '10',
181 silly get 'x-timer': 'S1481022495.886268,VS0,VE0',
181 silly get vary: 'Accept-Encoding' } ]
182 verbose get saving chokidar to /home/pi/.npm/registry.npmjs.org/chokidar/.cache.json
183 verbose correctMkdir /home/pi/.npm correctMkdir not in flight; initializing
184 http 304 https://registry.npmjs.org/debug
185 verbose headers { date: 'Tue, 06 Dec 2016 11:08:16 GMT',
185 verbose headers via: '1.1 varnish',
185 verbose headers 'cache-control': 'max-age=300',
185 verbose headers etag: 'W/"583edb9d-b3b7"',
185 verbose headers age: '4',
185 verbose headers connection: 'keep-alive',
185 verbose headers 'x-served-by': 'cache-lhr6322-LHR',
185 verbose headers 'x-cache': 'HIT',
185 verbose headers 'x-cache-hits': '1',
185 verbose headers 'x-timer': 'S1481022496.053168,VS0,VE0',
185 verbose headers vary: 'Accept-Encoding' }
186 silly get cb [ 304,
186 silly get { date: 'Tue, 06 Dec 2016 11:08:16 GMT',
186 silly get via: '1.1 varnish',
186 silly get 'cache-control': 'max-age=300',
186 silly get etag: 'W/"583edb9d-b3b7"',
186 silly get age: '4',
186 silly get connection: 'keep-alive',
186 silly get 'x-served-by': 'cache-lhr6322-LHR',
186 silly get 'x-cache': 'HIT',
186 silly get 'x-cache-hits': '1',
186 silly get 'x-timer': 'S1481022496.053168,VS0,VE0',
186 silly get vary: 'Accept-Encoding' } ]
187 verbose etag https://registry.npmjs.org/debug from cache
188 verbose get saving debug to /home/pi/.npm/registry.npmjs.org/debug/.cache.json
189 verbose correctMkdir /home/pi/.npm correctMkdir not in flight; initializing
190 http 200 https://registry.npmjs.org/ignore-by-default
191 verbose headers { server: 'nginx/1.10.1',
191 verbose headers 'content-type': 'application/json',
191 verbose headers 'last-modified': 'Fri, 26 Feb 2016 14:48:47 GMT',
191 verbose headers etag: 'W/"56d065cf-107d"',
191 verbose headers 'content-encoding': 'gzip',
191 verbose headers 'cache-control': 'max-age=300',
191 verbose headers 'content-length': '1317',
191 verbose headers 'accept-ranges': 'bytes',
191 verbose headers date: 'Tue, 06 Dec 2016 11:08:15 GMT',
191 verbose headers via: '1.1 varnish',
191 verbose headers age: '43',
191 verbose headers connection: 'keep-alive',
191 verbose headers 'x-served-by': 'cache-lhr6330-LHR',
191 verbose headers 'x-cache': 'HIT',
191 verbose headers 'x-cache-hits': '1',
191 verbose headers 'x-timer': 'S1481022495.994403,VS0,VE0',
191 verbose headers vary: 'Accept-Encoding' }
192 silly get cb [ 200,
192 silly get { server: 'nginx/1.10.1',
192 silly get 'content-type': 'application/json',
192 silly get 'last-modified': 'Fri, 26 Feb 2016 14:48:47 GMT',
192 silly get etag: 'W/"56d065cf-107d"',
192 silly get 'content-encoding': 'gzip',
192 silly get 'cache-control': 'max-age=300',
192 silly get 'content-length': '1317',
192 silly get 'accept-ranges': 'bytes',
192 silly get date: 'Tue, 06 Dec 2016 11:08:15 GMT',
192 silly get via: '1.1 varnish',
192 silly get age: '43',
192 silly get connection: 'keep-alive',
192 silly get 'x-served-by': 'cache-lhr6330-LHR',
192 silly get 'x-cache': 'HIT',
192 silly get 'x-cache-hits': '1',
192 silly get 'x-timer': 'S1481022495.994403,VS0,VE0',
192 silly get vary: 'Accept-Encoding' } ]
193 verbose get saving ignore-by-default to /home/pi/.npm/registry.npmjs.org/ignore-by-default/.cache.json
194 verbose correctMkdir /home/pi/.npm correctMkdir not in flight; initializing
195 http 200 https://registry.npmjs.org/undefsafe
196 verbose headers { server: 'nginx/1.10.1',
196 verbose headers 'content-type': 'application/json',
196 verbose headers 'last-modified': 'Tue, 23 Aug 2016 18:42:36 GMT',
196 verbose headers etag: 'W/"57bc991c-1ed4"',
196 verbose headers 'content-encoding': 'gzip',
196 verbose headers 'cache-control': 'max-age=300',
196 verbose headers 'content-length': '1806',
196 verbose headers 'accept-ranges': 'bytes',
196 verbose headers date: 'Tue, 06 Dec 2016 11:08:15 GMT',
196 verbose headers via: '1.1 varnish',
196 verbose headers age: '248',
196 verbose headers connection: 'keep-alive',
196 verbose headers 'x-served-by': 'cache-lhr6349-LHR',
196 verbose headers 'x-cache': 'HIT',
196 verbose headers 'x-cache-hits': '2',
196 verbose headers 'x-timer': 'S1481022495.996242,VS0,VE0',
196 verbose headers vary: 'Accept-Encoding' }
197 silly get cb [ 200,
197 silly get { server: 'nginx/1.10.1',
197 silly get 'content-type': 'application/json',
197 silly get 'last-modified': 'Tue, 23 Aug 2016 18:42:36 GMT',
197 silly get etag: 'W/"57bc991c-1ed4"',
197 silly get 'content-encoding': 'gzip',
197 silly get 'cache-control': 'max-age=300',
197 silly get 'content-length': '1806',
197 silly get 'accept-ranges': 'bytes',
197 silly get date: 'Tue, 06 Dec 2016 11:08:15 GMT',
197 silly get via: '1.1 varnish',
197 silly get age: '248',
197 silly get connection: 'keep-alive',
197 silly get 'x-served-by': 'cache-lhr6349-LHR',
197 silly get 'x-cache': 'HIT',
197 silly get 'x-cache-hits': '2',
197 silly get 'x-timer': 'S1481022495.996242,VS0,VE0',
197 silly get vary: 'Accept-Encoding' } ]
198 verbose get saving undefsafe to /home/pi/.npm/registry.npmjs.org/undefsafe/.cache.json
199 verbose correctMkdir /home/pi/.npm correctMkdir not in flight; initializing
200 http 200 https://registry.npmjs.org/ps-tree
201 verbose headers { server: 'nginx/1.10.1',
201 verbose headers 'content-type': 'application/json',
201 verbose headers 'last-modified': 'Fri, 30 Sep 2016 15:26:53 GMT',
201 verbose headers etag: 'W/"57ee843d-314c"',
201 verbose headers 'content-encoding': 'gzip',
201 verbose headers 'cache-control': 'max-age=300',
201 verbose headers 'content-length': '3399',
201 verbose headers 'accept-ranges': 'bytes',
201 verbose headers date: 'Tue, 06 Dec 2016 11:08:15 GMT',
201 verbose headers via: '1.1 varnish',
201 verbose headers age: '102',
201 verbose headers connection: 'keep-alive',
201 verbose headers 'x-served-by': 'cache-lhr6349-LHR',
201 verbose headers 'x-cache': 'HIT',
201 verbose headers 'x-cache-hits': '3',
201 verbose headers 'x-timer': 'S1481022495.995844,VS0,VE0',
201 verbose headers vary: 'Accept-Encoding' }
202 silly get cb [ 200,
202 silly get { server: 'nginx/1.10.1',
202 silly get 'content-type': 'application/json',
202 silly get 'last-modified': 'Fri, 30 Sep 2016 15:26:53 GMT',
202 silly get etag: 'W/"57ee843d-314c"',
202 silly get 'content-encoding': 'gzip',
202 silly get 'cache-control': 'max-age=300',
202 silly get 'content-length': '3399',
202 silly get 'accept-ranges': 'bytes',
202 silly get date: 'Tue, 06 Dec 2016 11:08:15 GMT',
202 silly get via: '1.1 varnish',
202 silly get age: '102',
202 silly get connection: 'keep-alive',
202 silly get 'x-served-by': 'cache-lhr6349-LHR',
202 silly get 'x-cache': 'HIT',
202 silly get 'x-cache-hits': '3',
202 silly get 'x-timer': 'S1481022495.995844,VS0,VE0',
202 silly get vary: 'Accept-Encoding' } ]
203 verbose get saving ps-tree to /home/pi/.npm/registry.npmjs.org/ps-tree/.cache.json
204 verbose correctMkdir /home/pi/.npm correctMkdir not in flight; initializing
205 http 304 https://registry.npmjs.org/minimatch
206 verbose headers { date: 'Tue, 06 Dec 2016 11:08:16 GMT',
206 verbose headers via: '1.1 varnish',
206 verbose headers 'cache-control': 'max-age=300',
206 verbose headers etag: 'W/"5843a57e-cbb8"',
206 verbose headers age: '39',
206 verbose headers connection: 'keep-alive',
206 verbose headers 'x-served-by': 'cache-lhr6324-LHR',
206 verbose headers 'x-cache': 'HIT',
206 verbose headers 'x-cache-hits': '6',
206 verbose headers 'x-timer': 'S1481022496.065683,VS0,VE0',
206 verbose headers vary: 'Accept-Encoding' }
207 silly get cb [ 304,
207 silly get { date: 'Tue, 06 Dec 2016 11:08:16 GMT',
207 silly get via: '1.1 varnish',
207 silly get 'cache-control': 'max-age=300',
207 silly get etag: 'W/"5843a57e-cbb8"',
207 silly get age: '39',
207 silly get connection: 'keep-alive',
207 silly get 'x-served-by': 'cache-lhr6324-LHR',
207 silly get 'x-cache': 'HIT',
207 silly get 'x-cache-hits': '6',
207 silly get 'x-timer': 'S1481022496.065683,VS0,VE0',
207 silly get vary: 'Accept-Encoding' } ]
208 verbose etag https://registry.npmjs.org/minimatch from cache
209 verbose get saving minimatch to /home/pi/.npm/registry.npmjs.org/minimatch/.cache.json
210 verbose correctMkdir /home/pi/.npm correctMkdir not in flight; initializing
211 http 200 https://registry.npmjs.org/es6-promise
212 verbose headers { server: 'nginx/1.10.1',
212 verbose headers 'content-type': 'application/json',
212 verbose headers 'last-modified': 'Fri, 02 Dec 2016 06:08:44 GMT',
212 verbose headers etag: 'W/"58410fec-cede"',
212 verbose headers 'content-encoding': 'gzip',
212 verbose headers 'cache-control': 'max-age=300',
212 verbose headers 'content-length': '6037',
212 verbose headers 'accept-ranges': 'bytes',
212 verbose headers date: 'Tue, 06 Dec 2016 11:08:15 GMT',
212 verbose headers via: '1.1 varnish',
212 verbose headers age: '247',
212 verbose headers connection: 'keep-alive',
212 verbose headers 'x-served-by': 'cache-lhr6351-LHR',
212 verbose headers 'x-cache': 'HIT',
212 verbose headers 'x-cache-hits': '7',
212 verbose headers 'x-timer': 'S1481022495.989313,VS0,VE0',
212 verbose headers vary: 'Accept-Encoding' }
213 silly get cb [ 200,
213 silly get { server: 'nginx/1.10.1',
213 silly get 'content-type': 'application/json',
213 silly get 'last-modified': 'Fri, 02 Dec 2016 06:08:44 GMT',
213 silly get etag: 'W/"58410fec-cede"',
213 silly get 'content-encoding': 'gzip',
213 silly get 'cache-control': 'max-age=300',
213 silly get 'content-length': '6037',
213 silly get 'accept-ranges': 'bytes',
213 silly get date: 'Tue, 06 Dec 2016 11:08:15 GMT',
213 silly get via: '1.1 varnish',
213 silly get age: '247',
213 silly get connection: 'keep-alive',
213 silly get 'x-served-by': 'cache-lhr6351-LHR',
213 silly get 'x-cache': 'HIT',
213 silly get 'x-cache-hits': '7',
213 silly get 'x-timer': 'S1481022495.989313,VS0,VE0',
213 silly get vary: 'Accept-Encoding' } ]
214 verbose get saving es6-promise to /home/pi/.npm/registry.npmjs.org/es6-promise/.cache.json
215 verbose correctMkdir /home/pi/.npm correctMkdir not in flight; initializing
216 http 200 https://registry.npmjs.org/update-notifier
217 verbose headers { server: 'nginx/1.10.1',
217 verbose headers 'content-type': 'application/json',
217 verbose headers 'last-modified': 'Sun, 04 Dec 2016 21:13:29 GMT',
217 verbose headers etag: 'W/"584486f9-c4e2"',
217 verbose headers 'content-encoding': 'gzip',
217 verbose headers 'cache-control': 'max-age=300',
217 verbose headers 'content-length': '6819',
217 verbose headers 'accept-ranges': 'bytes',
217 verbose headers date: 'Tue, 06 Dec 2016 11:08:15 GMT',
217 verbose headers via: '1.1 varnish',
217 verbose headers age: '291',
217 verbose headers connection: 'keep-alive',
217 verbose headers 'x-served-by': 'cache-lhr6326-LHR',
217 verbose headers 'x-cache': 'HIT',
217 verbose headers 'x-cache-hits': '9',
217 verbose headers 'x-timer': 'S1481022495.995252,VS0,VE0',
217 verbose headers vary: 'Accept-Encoding' }
218 silly get cb [ 200,
218 silly get { server: 'nginx/1.10.1',
218 silly get 'content-type': 'application/json',
218 silly get 'last-modified': 'Sun, 04 Dec 2016 21:13:29 GMT',
218 silly get etag: 'W/"584486f9-c4e2"',
218 silly get 'content-encoding': 'gzip',
218 silly get 'cache-control': 'max-age=300',
218 silly get 'content-length': '6819',
218 silly get 'accept-ranges': 'bytes',
218 silly get date: 'Tue, 06 Dec 2016 11:08:15 GMT',
218 silly get via: '1.1 varnish',
218 silly get age: '291',
218 silly get connection: 'keep-alive',
218 silly get 'x-served-by': 'cache-lhr6326-LHR',
218 silly get 'x-cache': 'HIT',
218 silly get 'x-cache-hits': '9',
218 silly get 'x-timer': 'S1481022495.995252,VS0,VE0',
218 silly get vary: 'Accept-Encoding' } ]
219 verbose get saving update-notifier to /home/pi/.npm/registry.npmjs.org/update-notifier/.cache.json
220 verbose correctMkdir /home/pi/.npm correctMkdir not in flight; initializing
221 http 200 https://registry.npmjs.org/lodash.defaults
222 verbose headers { server: 'nginx/1.10.1',
222 verbose headers 'content-type': 'application/json',
222 verbose headers 'last-modified': 'Thu, 06 Oct 2016 16:45:45 GMT',
222 verbose headers etag: 'W/"57f67fb9-6595"',
222 verbose headers 'content-encoding': 'gzip',
222 verbose headers 'cache-control': 'max-age=300',
222 verbose headers 'content-length': '2660',
222 verbose headers 'accept-ranges': 'bytes',
222 verbose headers date: 'Tue, 06 Dec 2016 11:08:16 GMT',
222 verbose headers via: '1.1 varnish',
222 verbose headers age: '270',
222 verbose headers connection: 'keep-alive',
222 verbose headers 'x-served-by': 'cache-lhr6326-LHR',
222 verbose headers 'x-cache': 'HIT',
222 verbose headers 'x-cache-hits': '6',
222 verbose headers 'x-timer': 'S1481022496.072569,VS0,VE0',
222 verbose headers vary: 'Accept-Encoding' }
223 silly get cb [ 200,
223 silly get { server: 'nginx/1.10.1',
223 silly get 'content-type': 'application/json',
223 silly get 'last-modified': 'Thu, 06 Oct 2016 16:45:45 GMT',
223 silly get etag: 'W/"57f67fb9-6595"',
223 silly get 'content-encoding': 'gzip',
223 silly get 'cache-control': 'max-age=300',
223 silly get 'content-length': '2660',
223 silly get 'accept-ranges': 'bytes',
223 silly get date: 'Tue, 06 Dec 2016 11:08:16 GMT',
223 silly get via: '1.1 varnish',
223 silly get age: '270',
223 silly get connection: 'keep-alive',
223 silly get 'x-served-by': 'cache-lhr6326-LHR',
223 silly get 'x-cache': 'HIT',
223 silly get 'x-cache-hits': '6',
223 silly get 'x-timer': 'S1481022496.072569,VS0,VE0',
223 silly get vary: 'Accept-Encoding' } ]
224 verbose get saving lodash.defaults to /home/pi/.npm/registry.npmjs.org/lodash.defaults/.cache.json
225 verbose correctMkdir /home/pi/.npm correctMkdir not in flight; initializing
226 http 200 https://registry.npmjs.org/touch
227 verbose headers { server: 'nginx/1.10.1',
227 verbose headers 'content-type': 'application/json',
227 verbose headers 'last-modified': 'Fri, 17 Jul 2015 00:38:40 GMT',
227 verbose headers etag: 'W/"55a84e90-166c"',
227 verbose headers 'content-encoding': 'gzip',
227 verbose headers 'cache-control': 'max-age=300',
227 verbose headers 'content-length': '1519',
227 verbose headers 'accept-ranges': 'bytes',
227 verbose headers date: 'Tue, 06 Dec 2016 11:08:16 GMT',
227 verbose headers via: '1.1 varnish',
227 verbose headers age: '16',
227 verbose headers connection: 'keep-alive',
227 verbose headers 'x-served-by': 'cache-lhr6324-LHR',
227 verbose headers 'x-cache': 'HIT',
227 verbose headers 'x-cache-hits': '1',
227 verbose headers 'x-timer': 'S1481022496.130149,VS0,VE0',
227 verbose headers vary: 'Accept-Encoding' }
228 silly get cb [ 200,
228 silly get { server: 'nginx/1.10.1',
228 silly get 'content-type': 'application/json',
228 silly get 'last-modified': 'Fri, 17 Jul 2015 00:38:40 GMT',
228 silly get etag: 'W/"55a84e90-166c"',
228 silly get 'content-encoding': 'gzip',
228 silly get 'cache-control': 'max-age=300',
228 silly get 'content-length': '1519',
228 silly get 'accept-ranges': 'bytes',
228 silly get date: 'Tue, 06 Dec 2016 11:08:16 GMT',
228 silly get via: '1.1 varnish',
228 silly get age: '16',
228 silly get connection: 'keep-alive',
228 silly get 'x-served-by': 'cache-lhr6324-LHR',
228 silly get 'x-cache': 'HIT',
228 silly get 'x-cache-hits': '1',
228 silly get 'x-timer': 'S1481022496.130149,VS0,VE0',
228 silly get vary: 'Accept-Encoding' } ]
229 verbose get saving touch to /home/pi/.npm/registry.npmjs.org/touch/.cache.json
230 verbose correctMkdir /home/pi/.npm correctMkdir not in flight; initializing
231 silly resolveWithNewModule [email protected] checking installable status
232 silly cache add args [ 'chokidar@^1.4.3', null ]
233 verbose cache add spec chokidar@^1.4.3
234 silly cache add parsed spec Result {
234 silly cache add raw: 'chokidar@^1.4.3',
234 silly cache add scope: null,
234 silly cache add escapedName: 'chokidar',
234 silly cache add name: 'chokidar',
234 silly cache add rawSpec: '^1.4.3',
234 silly cache add spec: '>=1.4.3 <2.0.0',
234 silly cache add type: 'range' }
235 silly addNamed chokidar@>=1.4.3 <2.0.0
236 verbose addNamed ">=1.4.3 <2.0.0" is a valid semver range for chokidar
237 silly addNameRange { name: 'chokidar', range: '>=1.4.3 <2.0.0', hasData: false }
238 silly mapToRegistry name chokidar
239 silly mapToRegistry using default registry
240 silly mapToRegistry registry https://registry.npmjs.org/
241 silly mapToRegistry data Result {
241 silly mapToRegistry raw: 'chokidar',
241 silly mapToRegistry scope: null,
241 silly mapToRegistry escapedName: 'chokidar',
241 silly mapToRegistry name: 'chokidar',
241 silly mapToRegistry rawSpec: '',
241 silly mapToRegistry spec: 'latest',
241 silly mapToRegistry type: 'tag' }
242 silly mapToRegistry uri https://registry.npmjs.org/chokidar
243 verbose addNameRange registry:https://registry.npmjs.org/chokidar not in flight; fetching
244 silly resolveWithNewModule [email protected] checking installable status
245 silly cache add args [ 'ignore-by-default@^1.0.0', null ]
246 verbose cache add spec ignore-by-default@^1.0.0
247 silly cache add parsed spec Result {
247 silly cache add raw: 'ignore-by-default@^1.0.0',
247 silly cache add scope: null,
247 silly cache add escapedName: 'ignore-by-default',
247 silly cache add name: 'ignore-by-default',
247 silly cache add rawSpec: '^1.0.0',
247 silly cache add spec: '>=1.0.0 <2.0.0',
247 silly cache add type: 'range' }
248 silly addNamed ignore-by-default@>=1.0.0 <2.0.0
249 verbose addNamed ">=1.0.0 <2.0.0" is a valid semver range for ignore-by-default
250 silly addNameRange { name: 'ignore-by-default',
250 silly addNameRange range: '>=1.0.0 <2.0.0',
250 silly addNameRange hasData: false }
251 silly mapToRegistry name ignore-by-default
252 silly mapToRegistry using default registry
253 silly mapToRegistry registry https://registry.npmjs.org/
254 silly mapToRegistry data Result {
254 silly mapToRegistry raw: 'ignore-by-default',
254 silly mapToRegistry scope: null,
254 silly mapToRegistry escapedName: 'ignore-by-default',
254 silly mapToRegistry name: 'ignore-by-default',
254 silly mapToRegistry rawSpec: '',
254 silly mapToRegistry spec: 'latest',
254 silly mapToRegistry type: 'tag' }
255 silly mapToRegistry uri https://registry.npmjs.org/ignore-by-default
256 verbose addNameRange registry:https://registry.npmjs.org/ignore-by-default not in flight; fetching
257 silly resolveWithNewModule [email protected] checking installable status
258 silly cache add args [ '[email protected]', null ]
259 verbose cache add spec [email protected]
260 silly cache add parsed spec Result {
260 silly cache add raw: '[email protected]',
260 silly cache add scope: null,
260 silly cache add escapedName: 'undefsafe',
260 silly cache add name: 'undefsafe',
260 silly cache add rawSpec: '0.0.3',
260 silly cache add spec: '0.0.3',
260 silly cache add type: 'version' }
261 silly addNamed [email protected]
262 verbose addNamed "0.0.3" is a plain semver version for undefsafe
263 silly mapToRegistry name undefsafe
264 silly mapToRegistry using default registry
265 silly mapToRegistry registry https://registry.npmjs.org/
266 silly mapToRegistry data Result {
266 silly mapToRegistry raw: 'undefsafe',
266 silly mapToRegistry scope: null,
266 silly mapToRegistry escapedName: 'undefsafe',
266 silly mapToRegistry name: 'undefsafe',
266 silly mapToRegistry rawSpec: '',
266 silly mapToRegistry spec: 'latest',
266 silly mapToRegistry type: 'tag' }
267 silly mapToRegistry uri https://registry.npmjs.org/undefsafe
268 verbose addNameVersion registry:https://registry.npmjs.org/undefsafe not in flight; fetching
269 silly resolveWithNewModule [email protected] checking installable status
270 silly cache add args [ 'ps-tree@^1.0.1', null ]
271 verbose cache add spec ps-tree@^1.0.1
272 silly cache add parsed spec Result {
272 silly cache add raw: 'ps-tree@^1.0.1',
272 silly cache add scope: null,
272 silly cache add escapedName: 'ps-tree',
272 silly cache add name: 'ps-tree',
272 silly cache add rawSpec: '^1.0.1',
272 silly cache add spec: '>=1.0.1 <2.0.0',
272 silly cache add type: 'range' }
273 silly addNamed ps-tree@>=1.0.1 <2.0.0
274 verbose addNamed ">=1.0.1 <2.0.0" is a valid semver range for ps-tree
275 silly addNameRange { name: 'ps-tree', range: '>=1.0.1 <2.0.0', hasData: false }
276 silly mapToRegistry name ps-tree
277 silly mapToRegistry using default registry
278 silly mapToRegistry registry https://registry.npmjs.org/
279 silly mapToRegistry data Result {
279 silly mapToRegistry raw: 'ps-tree',
279 silly mapToRegistry scope: null,
279 silly mapToRegistry escapedName: 'ps-tree',
279 silly mapToRegistry name: 'ps-tree',
279 silly mapToRegistry rawSpec: '',
279 silly mapToRegistry spec: 'latest',
279 silly mapToRegistry type: 'tag' }
280 silly mapToRegistry uri https://registry.npmjs.org/ps-tree
281 verbose addNameRange registry:https://registry.npmjs.org/ps-tree not in flight; fetching
282 verbose get https://registry.npmjs.org/chokidar not expired, no request
283 silly addNameRange number 2 { name: 'chokidar', range: '>=1.4.3 <2.0.0', hasData: true }
284 silly addNameRange versions [ 'chokidar',
284 silly addNameRange [ '0.1.1',
284 silly addNameRange '0.2.0',
284 silly addNameRange '0.2.1',
284 silly addNameRange '0.2.2',
284 silly addNameRange '0.2.3',
284 silly addNameRange '0.2.4',
284 silly addNameRange '0.2.5',
284 silly addNameRange '0.2.6',
284 silly addNameRange '0.3.0',
284 silly addNameRange '0.4.0',
284 silly addNameRange '0.5.0',
284 silly addNameRange '0.5.1',
284 silly addNameRange '0.5.2',
284 silly addNameRange '0.5.3',
284 silly addNameRange '0.6.0',
284 silly addNameRange '0.6.1',
284 silly addNameRange '0.6.2',
284 silly addNameRange '0.6.3',
284 silly addNameRange '0.7.0',
284 silly addNameRange '0.7.1',
284 silly addNameRange '0.8.0',
284 silly addNameRange '0.8.1',
284 silly addNameRange '0.8.2',
284 silly addNameRange '0.8.3',
284 silly addNameRange '0.8.4',
284 silly addNameRange '0.9.0',
284 silly addNameRange '0.10.0',
284 silly addNameRange '0.10.1',
284 silly addNameRange '0.10.2',
284 silly addNameRange '0.10.3',
284 silly addNameRange '0.10.4',
284 silly addNameRange '0.10.5',
284 silly addNameRange '0.10.6',
284 silly addNameRange '0.10.7',
284 silly addNameRange '0.10.8',
284 silly addNameRange '0.10.9',
284 silly addNameRange '0.11.0',
284 silly addNameRange '0.11.1',
284 silly addNameRange '0.12.0',
284 silly addNameRange '0.12.1',
284 silly addNameRange '0.12.2',
284 silly addNameRange '0.12.3',
284 silly addNameRange '0.12.4',
284 silly addNameRange '0.12.5',
284 silly addNameRange '0.12.6',
284 silly addNameRange '1.0.0-rc1',
284 silly addNameRange '1.0.0-rc1.1',
284 silly addNameRange '1.0.0-rc2',
284 silly addNameRange '1.0.0-rc3',
284 silly addNameRange '1.0.0-rc4',
284 silly addNameRange '1.0.0-rc5',
284 silly addNameRange '1.0.0',
284 silly addNameRange '1.0.1',
284 silly addNameRange '1.0.2',
284 silly addNameRange '1.0.3',
284 silly addNameRange '1.0.4',
284 silly addNameRange '1.0.5',
284 silly addNameRange '1.0.6',
284 silly addNameRange '1.1.0',
284 silly addNameRange '1.2.0',
284 silly addNameRange '1.3.0',
284 silly addNameRange '1.4.0',
284 silly addNameRange '1.4.1',
284 silly addNameRange '1.4.2',
284 silly addNameRange '1.4.3',
284 silly addNameRange '1.5.0',
284 silly addNameRange '1.5.1',
284 silly addNameRange '1.5.2',
284 silly addNameRange '1.6.0',
284 silly addNameRange '1.6.1' ] ]
285 silly addNamed [email protected]
286 verbose addNamed "1.6.1" is a plain semver version for chokidar
287 silly mapToRegistry name chokidar
288 silly mapToRegistry using default registry
289 silly mapToRegistry registry https://registry.npmjs.org/
290 silly mapToRegistry data Result {
290 silly mapToRegistry raw: 'chokidar',
290 silly mapToRegistry scope: null,
290 silly mapToRegistry escapedName: 'chokidar',
290 silly mapToRegistry name: 'chokidar',
290 silly mapToRegistry rawSpec: '',
290 silly mapToRegistry spec: 'latest',
290 silly mapToRegistry type: 'tag' }
291 silly mapToRegistry uri https://registry.npmjs.org/chokidar
292 verbose addRemoteTarball https://registry.npmjs.org/chokidar/-/chokidar-1.6.1.tgz not in flight; adding
293 verbose addRemoteTarball [ 'https://registry.npmjs.org/chokidar/-/chokidar-1.6.1.tgz',
293 verbose addRemoteTarball '2f4447ab5e96e50fb3d789fd90d4c72e0e4c70c2' ]
294 silly resolveWithNewModule [email protected] checking installable status
295 silly cache add args [ 'es6-promise@^3.0.2', null ]
296 verbose cache add spec es6-promise@^3.0.2
297 silly cache add parsed spec Result {
297 silly cache add raw: 'es6-promise@^3.0.2',
297 silly cache add scope: null,
297 silly cache add escapedName: 'es6-promise',
297 silly cache add name: 'es6-promise',
297 silly cache add rawSpec: '^3.0.2',
297 silly cache add spec: '>=3.0.2 <4.0.0',
297 silly cache add type: 'range' }
298 silly addNamed es6-promise@>=3.0.2 <4.0.0
299 verbose addNamed ">=3.0.2 <4.0.0" is a valid semver range for es6-promise
300 silly addNameRange { name: 'es6-promise', range: '>=3.0.2 <4.0.0', hasData: false }
301 silly mapToRegistry name es6-promise
302 silly mapToRegistry using default registry
303 silly mapToRegistry registry https://registry.npmjs.org/
304 silly mapToRegistry data Result {
304 silly mapToRegistry raw: 'es6-promise',
304 silly mapToRegistry scope: null,
304 silly mapToRegistry escapedName: 'es6-promise',
304 silly mapToRegistry name: 'es6-promise',
304 silly mapToRegistry rawSpec: '',
304 silly mapToRegistry spec: 'latest',
304 silly mapToRegistry type: 'tag' }
305 silly mapToRegistry uri https://registry.npmjs.org/es6-promise
306 verbose addNameRange registry:https://registry.npmjs.org/es6-promise not in flight; fetching
307 silly resolveWithNewModule [email protected] checking installable status
308 silly cache add args [ '[email protected]', null ]
309 verbose cache add spec [email protected]
310 silly cache add parsed spec Result {
310 silly cache add raw: '[email protected]',
310 silly cache add scope: null,
310 silly cache add escapedName: 'update-notifier',
310 silly cache add name: 'update-notifier',
310 silly cache add rawSpec: '0.5.0',
310 silly cache add spec: '0.5.0',
310 silly cache add type: 'version' }
311 silly addNamed [email protected]
312 verbose addNamed "0.5.0" is a plain semver version for update-notifier
313 silly mapToRegistry name update-notifier
314 silly mapToRegistry using default registry
315 silly mapToRegistry registry https://registry.npmjs.org/
316 silly mapToRegistry data Result {
316 silly mapToRegistry raw: 'update-notifier',
316 silly mapToRegistry scope: null,
316 silly mapToRegistry escapedName: 'update-notifier',
316 silly mapToRegistry name: 'update-notifier',
316 silly mapToRegistry rawSpec: '',
316 silly mapToRegistry spec: 'latest',
316 silly mapToRegistry type: 'tag' }
317 silly mapToRegistry uri https://registry.npmjs.org/update-notifier
318 verbose addNameVersion registry:https://registry.npmjs.org/update-notifier not in flight; fetching
319 silly resolveWithNewModule [email protected] checking installable status
320 silly cache add args [ 'lodash.defaults@^3.1.2', null ]
321 verbose cache add spec lodash.defaults@^3.1.2
322 silly cache add parsed spec Result {
322 silly cache add raw: 'lodash.defaults@^3.1.2',
322 silly cache add scope: null,
322 silly cache add escapedName: 'lodash.defaults',
322 silly cache add name: 'lodash.defaults',
322 silly cache add rawSpec: '^3.1.2',
322 silly cache add spec: '>=3.1.2 <4.0.0',
322 silly cache add type: 'range' }
323 silly addNamed lodash.defaults@>=3.1.2 <4.0.0
324 verbose addNamed ">=3.1.2 <4.0.0" is a valid semver range for lodash.defaults
325 silly addNameRange { name: 'lodash.defaults',
325 silly addNameRange range: '>=3.1.2 <4.0.0',
325 silly addNameRange hasData: false }
326 silly mapToRegistry name lodash.defaults
327 silly mapToRegistry using default registry
328 silly mapToRegistry registry https://registry.npmjs.org/
329 silly mapToRegistry data Result {
329 silly mapToRegistry raw: 'lodash.defaults',
329 silly mapToRegistry scope: null,
329 silly mapToRegistry escapedName: 'lodash.defaults',
329 silly mapToRegistry name: 'lodash.defaults',
329 silly mapToRegistry rawSpec: '',
329 silly mapToRegistry spec: 'latest',
329 silly mapToRegistry type: 'tag' }
330 silly mapToRegistry uri https://registry.npmjs.org/lodash.defaults
331 verbose addNameRange registry:https://registry.npmjs.org/lodash.defaults not in flight; fetching
332 verbose get https://registry.npmjs.org/ignore-by-default not expired, no request
333 silly addNameRange number 2 { name: 'ignore-by-default',
333 silly addNameRange range: '>=1.0.0 <2.0.0',
333 silly addNameRange hasData: true }
334 silly addNameRange versions [ 'ignore-by-default', [ '1.0.0', '1.0.1' ] ]
335 silly addNamed [email protected]
336 verbose addNamed "1.0.1" is a plain semver version for ignore-by-default
337 verbose get https://registry.npmjs.org/undefsafe not expired, no request
338 verbose get https://registry.npmjs.org/ps-tree not expired, no request
339 silly addNameRange number 2 { name: 'ps-tree', range: '>=1.0.1 <2.0.0', hasData: true }
340 silly addNameRange versions [ 'ps-tree',
340 silly addNameRange [ '0.0.0', '0.0.1', '0.0.2', '0.0.3', '1.0.0', '1.0.1', '1.1.0' ] ]
341 silly addNamed [email protected]
342 verbose addNamed "1.1.0" is a plain semver version for ps-tree
343 silly resolveWithNewModule [email protected] checking installable status
344 silly cache add args [ '[email protected]', null ]
345 verbose cache add spec [email protected]
346 silly cache add parsed spec Result {
346 silly cache add raw: '[email protected]',
346 silly cache add scope: null,
346 silly cache add escapedName: 'touch',
346 silly cache add name: 'touch',
346 silly cache add rawSpec: '1.0.0',
346 silly cache add spec: '1.0.0',
346 silly cache add type: 'version' }
347 silly addNamed [email protected]
348 verbose addNamed "1.0.0" is a plain semver version for touch
349 silly mapToRegistry name touch
350 silly mapToRegistry using default registry
351 silly mapToRegistry registry https://registry.npmjs.org/
352 silly mapToRegistry data Result {
352 silly mapToRegistry raw: 'touch',
352 silly mapToRegistry scope: null,
352 silly mapToRegistry escapedName: 'touch',
352 silly mapToRegistry name: 'touch',
352 silly mapToRegistry rawSpec: '',
352 silly mapToRegistry spec: 'latest',
352 silly mapToRegistry type: 'tag' }
353 silly mapToRegistry uri https://registry.npmjs.org/touch
354 verbose addNameVersion registry:https://registry.npmjs.org/touch not in flight; fetching
355 info retry fetch attempt 1 at 11:08:16 AM
356 info attempt registry request try #1 at 11:08:16 AM
357 http fetch GET https://registry.npmjs.org/chokidar/-/chokidar-1.6.1.tgz
358 silly mapToRegistry name ignore-by-default
359 silly mapToRegistry using default registry
360 silly mapToRegistry registry https://registry.npmjs.org/
361 silly mapToRegistry data Result {
361 silly mapToRegistry raw: 'ignore-by-default',
361 silly mapToRegistry scope: null,
361 silly mapToRegistry escapedName: 'ignore-by-default',