-
Notifications
You must be signed in to change notification settings - Fork 1
/
npm-debug.log
16317 lines (16317 loc) · 846 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 [ 'C:\\Program Files\\nodejs\\node.exe',
1 verbose cli 'C:\\Users\\Joey\\AppData\\Roaming\\npm\\node_modules\\npm\\bin\\npm-cli.js',
1 verbose cli 'install',
1 verbose cli 'nodemon',
1 verbose cli '-g' ]
2 info using [email protected]
3 info using [email protected]
4 silly loadCurrentTree Starting
5 silly install loadCurrentTree
6 silly install readGlobalPackageData
7 silly fetchPackageMetaData 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 6:50:10 AM
17 verbose request id 92bc08b768df388d
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': 'Wed, 24 May 2017 21:44:31 GMT',
20 verbose headers etag: 'W/"5925febf-310fc"',
20 verbose headers 'content-encoding': 'gzip',
20 verbose headers 'cache-control': 'max-age=300',
20 verbose headers 'content-length': '20936',
20 verbose headers 'accept-ranges': 'bytes',
20 verbose headers date: 'Sun, 28 May 2017 11:50:05 GMT',
20 verbose headers via: '1.1 varnish',
20 verbose headers age: '89',
20 verbose headers connection: 'keep-alive',
20 verbose headers 'x-served-by': 'cache-ord1730-ORD',
20 verbose headers 'x-cache': 'HIT',
20 verbose headers 'x-cache-hits': '1',
20 verbose headers 'x-timer': 'S1495972205.125943,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': 'Wed, 24 May 2017 21:44:31 GMT',
21 silly get etag: 'W/"5925febf-310fc"',
21 silly get 'content-encoding': 'gzip',
21 silly get 'cache-control': 'max-age=300',
21 silly get 'content-length': '20936',
21 silly get 'accept-ranges': 'bytes',
21 silly get date: 'Sun, 28 May 2017 11:50:05 GMT',
21 silly get via: '1.1 varnish',
21 silly get age: '89',
21 silly get connection: 'keep-alive',
21 silly get 'x-served-by': 'cache-ord1730-ORD',
21 silly get 'x-cache': 'HIT',
21 silly get 'x-cache-hits': '1',
21 silly get 'x-timer': 'S1495972205.125943,VS0,VE0',
21 silly get vary: 'Accept-Encoding' } ]
22 verbose get saving nodemon to C:\Users\Joey\AppData\Roaming\npm-cache\registry.npmjs.org\nodemon\.cache.json
23 verbose correctMkdir C:\Users\Joey\AppData\Roaming\npm-cache 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 6:50:10 AM
61 info attempt registry request try #1 at 6:50:10 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 C:\Users\Joey\AppData\Local\Temp\npm-10648-d6babd0e\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 C:\Users\Joey\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
68 silly cache afterAdd [email protected]
69 verbose afterAdd C:\Users\Joey\AppData\Roaming\npm-cache\nodemon\1.11.0\package\package.json not in flight; writing
70 verbose correctMkdir C:\Users\Joey\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
71 verbose afterAdd C:\Users\Joey\AppData\Roaming\npm-cache\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/ignore-by-default
133 verbose request no auth needed
134 info attempt registry request try #1 at 6:50:11 AM
135 http request GET https://registry.npmjs.org/ignore-by-default
136 verbose request uri https://registry.npmjs.org/lodash.defaults
137 verbose request no auth needed
138 info attempt registry request try #1 at 6:50:11 AM
139 http request GET https://registry.npmjs.org/lodash.defaults
140 verbose request uri https://registry.npmjs.org/ps-tree
141 verbose request no auth needed
142 info attempt registry request try #1 at 6:50:11 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 6:50:11 AM
147 http request GET https://registry.npmjs.org/undefsafe
148 verbose request uri https://registry.npmjs.org/debug
149 verbose request no auth needed
150 info attempt registry request try #1 at 6:50:11 AM
151 verbose etag W/"591dfee5-15ded"
152 verbose lastModified Thu, 18 May 2017 20:07:01 GMT
153 http request GET https://registry.npmjs.org/debug
154 verbose request uri https://registry.npmjs.org/chokidar
155 verbose request no auth needed
156 info attempt registry request try #1 at 6:50:11 AM
157 verbose etag W/"589cb0e0-1bb61"
158 verbose lastModified Thu, 09 Feb 2017 18:11:44 GMT
159 http request GET https://registry.npmjs.org/chokidar
160 verbose request uri https://registry.npmjs.org/minimatch
161 verbose request no auth needed
162 info attempt registry request try #1 at 6:50:11 AM
163 verbose etag W/"5896e92d-cbed"
164 verbose lastModified Sun, 05 Feb 2017 08:58:21 GMT
165 http request GET https://registry.npmjs.org/minimatch
166 verbose request uri https://registry.npmjs.org/es6-promise
167 verbose request no auth needed
168 info attempt registry request try #1 at 6:50:11 AM
169 verbose etag W/"58410fec-cede"
170 verbose lastModified Fri, 02 Dec 2016 06:08:44 GMT
171 http request GET https://registry.npmjs.org/es6-promise
172 verbose request uri https://registry.npmjs.org/update-notifier
173 verbose request no auth needed
174 info attempt registry request try #1 at 6:50:11 AM
175 verbose etag "6N8ZYRH58CIGP2I21GOHVJDI9"
176 http request GET https://registry.npmjs.org/update-notifier
177 verbose request uri https://registry.npmjs.org/touch
178 verbose request no auth needed
179 info attempt registry request try #1 at 6:50:11 AM
180 verbose etag "DEKJ8U9QGPUHNJYSUVMI07X4H"
181 http request GET https://registry.npmjs.org/touch
182 http 200 https://registry.npmjs.org/ignore-by-default
183 verbose headers { server: 'nginx/1.10.1',
183 verbose headers 'content-type': 'application/json',
183 verbose headers 'last-modified': 'Fri, 26 Feb 2016 14:48:47 GMT',
183 verbose headers etag: 'W/"56d065cf-107d"',
183 verbose headers 'content-encoding': 'gzip',
183 verbose headers 'cache-control': 'max-age=300',
183 verbose headers 'content-length': '1317',
183 verbose headers 'accept-ranges': 'bytes',
183 verbose headers date: 'Sun, 28 May 2017 11:50:05 GMT',
183 verbose headers via: '1.1 varnish',
183 verbose headers age: '84',
183 verbose headers connection: 'keep-alive',
183 verbose headers 'x-served-by': 'cache-ord1730-ORD',
183 verbose headers 'x-cache': 'HIT',
183 verbose headers 'x-cache-hits': '1',
183 verbose headers 'x-timer': 'S1495972205.472964,VS0,VE0',
183 verbose headers vary: 'Accept-Encoding' }
184 silly get cb [ 200,
184 silly get { server: 'nginx/1.10.1',
184 silly get 'content-type': 'application/json',
184 silly get 'last-modified': 'Fri, 26 Feb 2016 14:48:47 GMT',
184 silly get etag: 'W/"56d065cf-107d"',
184 silly get 'content-encoding': 'gzip',
184 silly get 'cache-control': 'max-age=300',
184 silly get 'content-length': '1317',
184 silly get 'accept-ranges': 'bytes',
184 silly get date: 'Sun, 28 May 2017 11:50:05 GMT',
184 silly get via: '1.1 varnish',
184 silly get age: '84',
184 silly get connection: 'keep-alive',
184 silly get 'x-served-by': 'cache-ord1730-ORD',
184 silly get 'x-cache': 'HIT',
184 silly get 'x-cache-hits': '1',
184 silly get 'x-timer': 'S1495972205.472964,VS0,VE0',
184 silly get vary: 'Accept-Encoding' } ]
185 verbose get saving ignore-by-default to C:\Users\Joey\AppData\Roaming\npm-cache\registry.npmjs.org\ignore-by-default\.cache.json
186 verbose correctMkdir C:\Users\Joey\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
187 silly resolveWithNewModule [email protected] checking installable status
188 silly cache add args [ 'ignore-by-default@^1.0.0', null ]
189 verbose cache add spec ignore-by-default@^1.0.0
190 silly cache add parsed spec Result {
190 silly cache add raw: 'ignore-by-default@^1.0.0',
190 silly cache add scope: null,
190 silly cache add escapedName: 'ignore-by-default',
190 silly cache add name: 'ignore-by-default',
190 silly cache add rawSpec: '^1.0.0',
190 silly cache add spec: '>=1.0.0 <2.0.0',
190 silly cache add type: 'range' }
191 silly addNamed ignore-by-default@>=1.0.0 <2.0.0
192 verbose addNamed ">=1.0.0 <2.0.0" is a valid semver range for ignore-by-default
193 silly addNameRange { name: 'ignore-by-default',
193 silly addNameRange range: '>=1.0.0 <2.0.0',
193 silly addNameRange hasData: false }
194 silly mapToRegistry name ignore-by-default
195 silly mapToRegistry using default registry
196 silly mapToRegistry registry https://registry.npmjs.org/
197 silly mapToRegistry data Result {
197 silly mapToRegistry raw: 'ignore-by-default',
197 silly mapToRegistry scope: null,
197 silly mapToRegistry escapedName: 'ignore-by-default',
197 silly mapToRegistry name: 'ignore-by-default',
197 silly mapToRegistry rawSpec: '',
197 silly mapToRegistry spec: 'latest',
197 silly mapToRegistry type: 'tag' }
198 silly mapToRegistry uri https://registry.npmjs.org/ignore-by-default
199 verbose addNameRange registry:https://registry.npmjs.org/ignore-by-default not in flight; fetching
200 verbose get https://registry.npmjs.org/ignore-by-default not expired, no request
201 silly addNameRange number 2 { name: 'ignore-by-default',
201 silly addNameRange range: '>=1.0.0 <2.0.0',
201 silly addNameRange hasData: true }
202 silly addNameRange versions [ 'ignore-by-default', [ '1.0.0', '1.0.1' ] ]
203 silly addNamed [email protected]
204 verbose addNamed "1.0.1" is a plain semver version for ignore-by-default
205 silly mapToRegistry name ignore-by-default
206 silly mapToRegistry using default registry
207 silly mapToRegistry registry https://registry.npmjs.org/
208 silly mapToRegistry data Result {
208 silly mapToRegistry raw: 'ignore-by-default',
208 silly mapToRegistry scope: null,
208 silly mapToRegistry escapedName: 'ignore-by-default',
208 silly mapToRegistry name: 'ignore-by-default',
208 silly mapToRegistry rawSpec: '',
208 silly mapToRegistry spec: 'latest',
208 silly mapToRegistry type: 'tag' }
209 silly mapToRegistry uri https://registry.npmjs.org/ignore-by-default
210 verbose addRemoteTarball https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz not in flight; adding
211 verbose addRemoteTarball [ 'https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz',
211 verbose addRemoteTarball '48ca6d72f6c6a3af00a9ad4ae6876be3889e2b09' ]
212 info retry fetch attempt 1 at 6:50:11 AM
213 info attempt registry request try #1 at 6:50:11 AM
214 http fetch GET https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz
215 http fetch 200 https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz
216 silly fetchAndShaCheck shasum 48ca6d72f6c6a3af00a9ad4ae6876be3889e2b09
217 verbose addTmpTarball C:\Users\Joey\AppData\Local\Temp\npm-10648-d6babd0e\registry.npmjs.org\ignore-by-default\-\ignore-by-default-1.0.1.tgz not in flight; adding
218 verbose addTmpTarball already have metadata; skipping unpack for [email protected]
219 verbose correctMkdir C:\Users\Joey\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
220 silly cache afterAdd [email protected]
221 verbose afterAdd C:\Users\Joey\AppData\Roaming\npm-cache\ignore-by-default\1.0.1\package\package.json not in flight; writing
222 verbose correctMkdir C:\Users\Joey\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
223 verbose afterAdd C:\Users\Joey\AppData\Roaming\npm-cache\ignore-by-default\1.0.1\package\package.json written
224 http 200 https://registry.npmjs.org/undefsafe
225 verbose headers { server: 'nginx/1.10.1',
225 verbose headers 'content-type': 'application/json',
225 verbose headers 'last-modified': 'Tue, 11 Apr 2017 04:40:46 GMT',
225 verbose headers etag: 'W/"58ec5e4e-3756"',
225 verbose headers 'content-encoding': 'gzip',
225 verbose headers 'cache-control': 'max-age=300',
225 verbose headers 'content-length': '2643',
225 verbose headers 'accept-ranges': 'bytes',
225 verbose headers date: 'Sun, 28 May 2017 11:50:05 GMT',
225 verbose headers via: '1.1 varnish',
225 verbose headers age: '84',
225 verbose headers connection: 'keep-alive',
225 verbose headers 'x-served-by': 'cache-ord1720-ORD',
225 verbose headers 'x-cache': 'HIT',
225 verbose headers 'x-cache-hits': '1',
225 verbose headers 'x-timer': 'S1495972206.552216,VS0,VE0',
225 verbose headers vary: 'Accept-Encoding' }
226 silly get cb [ 200,
226 silly get { server: 'nginx/1.10.1',
226 silly get 'content-type': 'application/json',
226 silly get 'last-modified': 'Tue, 11 Apr 2017 04:40:46 GMT',
226 silly get etag: 'W/"58ec5e4e-3756"',
226 silly get 'content-encoding': 'gzip',
226 silly get 'cache-control': 'max-age=300',
226 silly get 'content-length': '2643',
226 silly get 'accept-ranges': 'bytes',
226 silly get date: 'Sun, 28 May 2017 11:50:05 GMT',
226 silly get via: '1.1 varnish',
226 silly get age: '84',
226 silly get connection: 'keep-alive',
226 silly get 'x-served-by': 'cache-ord1720-ORD',
226 silly get 'x-cache': 'HIT',
226 silly get 'x-cache-hits': '1',
226 silly get 'x-timer': 'S1495972206.552216,VS0,VE0',
226 silly get vary: 'Accept-Encoding' } ]
227 verbose get saving undefsafe to C:\Users\Joey\AppData\Roaming\npm-cache\registry.npmjs.org\undefsafe\.cache.json
228 verbose correctMkdir C:\Users\Joey\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
229 http 200 https://registry.npmjs.org/lodash.defaults
230 verbose headers { server: 'nginx/1.10.1',
230 verbose headers 'content-type': 'application/json',
230 verbose headers 'last-modified': 'Fri, 24 Feb 2017 16:50:45 GMT',
230 verbose headers etag: 'W/"58b06465-65a7"',
230 verbose headers 'content-encoding': 'gzip',
230 verbose headers 'cache-control': 'max-age=300',
230 verbose headers 'content-length': '2674',
230 verbose headers 'accept-ranges': 'bytes',
230 verbose headers date: 'Sun, 28 May 2017 11:50:05 GMT',
230 verbose headers via: '1.1 varnish',
230 verbose headers age: '84',
230 verbose headers connection: 'keep-alive',
230 verbose headers 'x-served-by': 'cache-ord1724-ORD',
230 verbose headers 'x-cache': 'HIT',
230 verbose headers 'x-cache-hits': '1',
230 verbose headers 'x-timer': 'S1495972206.552301,VS0,VE1',
230 verbose headers vary: 'Accept-Encoding' }
231 silly get cb [ 200,
231 silly get { server: 'nginx/1.10.1',
231 silly get 'content-type': 'application/json',
231 silly get 'last-modified': 'Fri, 24 Feb 2017 16:50:45 GMT',
231 silly get etag: 'W/"58b06465-65a7"',
231 silly get 'content-encoding': 'gzip',
231 silly get 'cache-control': 'max-age=300',
231 silly get 'content-length': '2674',
231 silly get 'accept-ranges': 'bytes',
231 silly get date: 'Sun, 28 May 2017 11:50:05 GMT',
231 silly get via: '1.1 varnish',
231 silly get age: '84',
231 silly get connection: 'keep-alive',
231 silly get 'x-served-by': 'cache-ord1724-ORD',
231 silly get 'x-cache': 'HIT',
231 silly get 'x-cache-hits': '1',
231 silly get 'x-timer': 'S1495972206.552301,VS0,VE1',
231 silly get vary: 'Accept-Encoding' } ]
232 verbose get saving lodash.defaults to C:\Users\Joey\AppData\Roaming\npm-cache\registry.npmjs.org\lodash.defaults\.cache.json
233 verbose correctMkdir C:\Users\Joey\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
234 silly resolveWithNewModule [email protected] checking installable status
235 silly cache add args [ '[email protected]', null ]
236 verbose cache add spec [email protected]
237 silly cache add parsed spec Result {
237 silly cache add raw: '[email protected]',
237 silly cache add scope: null,
237 silly cache add escapedName: 'undefsafe',
237 silly cache add name: 'undefsafe',
237 silly cache add rawSpec: '0.0.3',
237 silly cache add spec: '0.0.3',
237 silly cache add type: 'version' }
238 silly addNamed [email protected]
239 verbose addNamed "0.0.3" is a plain semver version for undefsafe
240 silly mapToRegistry name undefsafe
241 silly mapToRegistry using default registry
242 silly mapToRegistry registry https://registry.npmjs.org/
243 silly mapToRegistry data Result {
243 silly mapToRegistry raw: 'undefsafe',
243 silly mapToRegistry scope: null,
243 silly mapToRegistry escapedName: 'undefsafe',
243 silly mapToRegistry name: 'undefsafe',
243 silly mapToRegistry rawSpec: '',
243 silly mapToRegistry spec: 'latest',
243 silly mapToRegistry type: 'tag' }
244 silly mapToRegistry uri https://registry.npmjs.org/undefsafe
245 verbose addNameVersion registry:https://registry.npmjs.org/undefsafe not in flight; fetching
246 silly resolveWithNewModule [email protected] checking installable status
247 silly cache add args [ 'lodash.defaults@^3.1.2', null ]
248 verbose cache add spec lodash.defaults@^3.1.2
249 silly cache add parsed spec Result {
249 silly cache add raw: 'lodash.defaults@^3.1.2',
249 silly cache add scope: null,
249 silly cache add escapedName: 'lodash.defaults',
249 silly cache add name: 'lodash.defaults',
249 silly cache add rawSpec: '^3.1.2',
249 silly cache add spec: '>=3.1.2 <4.0.0',
249 silly cache add type: 'range' }
250 silly addNamed lodash.defaults@>=3.1.2 <4.0.0
251 verbose addNamed ">=3.1.2 <4.0.0" is a valid semver range for lodash.defaults
252 silly addNameRange { name: 'lodash.defaults',
252 silly addNameRange range: '>=3.1.2 <4.0.0',
252 silly addNameRange hasData: false }
253 silly mapToRegistry name lodash.defaults
254 silly mapToRegistry using default registry
255 silly mapToRegistry registry https://registry.npmjs.org/
256 silly mapToRegistry data Result {
256 silly mapToRegistry raw: 'lodash.defaults',
256 silly mapToRegistry scope: null,
256 silly mapToRegistry escapedName: 'lodash.defaults',
256 silly mapToRegistry name: 'lodash.defaults',
256 silly mapToRegistry rawSpec: '',
256 silly mapToRegistry spec: 'latest',
256 silly mapToRegistry type: 'tag' }
257 silly mapToRegistry uri https://registry.npmjs.org/lodash.defaults
258 verbose addNameRange registry:https://registry.npmjs.org/lodash.defaults not in flight; fetching
259 http 200 https://registry.npmjs.org/ps-tree
260 verbose headers { server: 'nginx/1.10.1',
260 verbose headers 'content-type': 'application/json',
260 verbose headers 'last-modified': 'Wed, 12 Apr 2017 21:30:20 GMT',
260 verbose headers etag: 'W/"58ee9c6c-316d"',
260 verbose headers 'content-encoding': 'gzip',
260 verbose headers 'cache-control': 'max-age=300',
260 verbose headers 'content-length': '3412',
260 verbose headers 'accept-ranges': 'bytes',
260 verbose headers date: 'Sun, 28 May 2017 11:50:05 GMT',
260 verbose headers via: '1.1 varnish',
260 verbose headers age: '0',
260 verbose headers connection: 'keep-alive',
260 verbose headers 'x-served-by': 'cache-ord1720-ORD',
260 verbose headers 'x-cache': 'HIT',
260 verbose headers 'x-cache-hits': '1',
260 verbose headers 'x-timer': 'S1495972206.552295,VS0,VE20',
260 verbose headers vary: 'Accept-Encoding' }
261 silly get cb [ 200,
261 silly get { server: 'nginx/1.10.1',
261 silly get 'content-type': 'application/json',
261 silly get 'last-modified': 'Wed, 12 Apr 2017 21:30:20 GMT',
261 silly get etag: 'W/"58ee9c6c-316d"',
261 silly get 'content-encoding': 'gzip',
261 silly get 'cache-control': 'max-age=300',
261 silly get 'content-length': '3412',
261 silly get 'accept-ranges': 'bytes',
261 silly get date: 'Sun, 28 May 2017 11:50:05 GMT',
261 silly get via: '1.1 varnish',
261 silly get age: '0',
261 silly get connection: 'keep-alive',
261 silly get 'x-served-by': 'cache-ord1720-ORD',
261 silly get 'x-cache': 'HIT',
261 silly get 'x-cache-hits': '1',
261 silly get 'x-timer': 'S1495972206.552295,VS0,VE20',
261 silly get vary: 'Accept-Encoding' } ]
262 verbose get saving ps-tree to C:\Users\Joey\AppData\Roaming\npm-cache\registry.npmjs.org\ps-tree\.cache.json
263 verbose correctMkdir C:\Users\Joey\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
264 verbose get https://registry.npmjs.org/undefsafe not expired, no request
265 verbose get https://registry.npmjs.org/lodash.defaults not expired, no request
266 silly addNameRange number 2 { name: 'lodash.defaults',
266 silly addNameRange range: '>=3.1.2 <4.0.0',
266 silly addNameRange hasData: true }
267 silly addNameRange versions [ 'lodash.defaults',
267 silly addNameRange [ '2.0.0',
267 silly addNameRange '2.1.0',
267 silly addNameRange '2.2.0',
267 silly addNameRange '2.2.1',
267 silly addNameRange '2.3.0',
267 silly addNameRange '2.4.0',
267 silly addNameRange '2.4.1',
267 silly addNameRange '3.0.0',
267 silly addNameRange '3.1.0',
267 silly addNameRange '3.1.1',
267 silly addNameRange '3.1.2',
267 silly addNameRange '4.0.0',
267 silly addNameRange '4.0.1',
267 silly addNameRange '4.1.0',
267 silly addNameRange '4.2.0' ] ]
268 silly addNamed [email protected]
269 verbose addNamed "3.1.2" is a plain semver version for lodash.defaults
270 http 200 https://registry.npmjs.org/minimatch
271 verbose headers { server: 'nginx/1.10.1',
271 verbose headers 'content-type': 'application/json',
271 verbose headers 'last-modified': 'Sat, 13 May 2017 20:46:26 GMT',
271 verbose headers etag: 'W/"591770a2-d1c5"',
271 verbose headers 'content-encoding': 'gzip',
271 verbose headers 'cache-control': 'max-age=300',
271 verbose headers 'content-length': '8146',
271 verbose headers 'accept-ranges': 'bytes',
271 verbose headers date: 'Sun, 28 May 2017 11:50:05 GMT',
271 verbose headers via: '1.1 varnish',
271 verbose headers age: '224',
271 verbose headers connection: 'keep-alive',
271 verbose headers 'x-served-by': 'cache-ord1722-ORD',
271 verbose headers 'x-cache': 'HIT',
271 verbose headers 'x-cache-hits': '8',
271 verbose headers 'x-timer': 'S1495972206.577607,VS0,VE0',
271 verbose headers vary: 'Accept-Encoding' }
272 silly get cb [ 200,
272 silly get { server: 'nginx/1.10.1',
272 silly get 'content-type': 'application/json',
272 silly get 'last-modified': 'Sat, 13 May 2017 20:46:26 GMT',
272 silly get etag: 'W/"591770a2-d1c5"',
272 silly get 'content-encoding': 'gzip',
272 silly get 'cache-control': 'max-age=300',
272 silly get 'content-length': '8146',
272 silly get 'accept-ranges': 'bytes',
272 silly get date: 'Sun, 28 May 2017 11:50:05 GMT',
272 silly get via: '1.1 varnish',
272 silly get age: '224',
272 silly get connection: 'keep-alive',
272 silly get 'x-served-by': 'cache-ord1722-ORD',
272 silly get 'x-cache': 'HIT',
272 silly get 'x-cache-hits': '8',
272 silly get 'x-timer': 'S1495972206.577607,VS0,VE0',
272 silly get vary: 'Accept-Encoding' } ]
273 verbose get saving minimatch to C:\Users\Joey\AppData\Roaming\npm-cache\registry.npmjs.org\minimatch\.cache.json
274 verbose correctMkdir C:\Users\Joey\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
275 silly resolveWithNewModule [email protected] checking installable status
276 silly cache add args [ 'ps-tree@^1.0.1', null ]
277 verbose cache add spec ps-tree@^1.0.1
278 silly cache add parsed spec Result {
278 silly cache add raw: 'ps-tree@^1.0.1',
278 silly cache add scope: null,
278 silly cache add escapedName: 'ps-tree',
278 silly cache add name: 'ps-tree',
278 silly cache add rawSpec: '^1.0.1',
278 silly cache add spec: '>=1.0.1 <2.0.0',
278 silly cache add type: 'range' }
279 silly addNamed ps-tree@>=1.0.1 <2.0.0
280 verbose addNamed ">=1.0.1 <2.0.0" is a valid semver range for ps-tree
281 silly addNameRange { name: 'ps-tree', range: '>=1.0.1 <2.0.0', hasData: false }
282 silly mapToRegistry name ps-tree
283 silly mapToRegistry using default registry
284 silly mapToRegistry registry https://registry.npmjs.org/
285 silly mapToRegistry data Result {
285 silly mapToRegistry raw: 'ps-tree',
285 silly mapToRegistry scope: null,
285 silly mapToRegistry escapedName: 'ps-tree',
285 silly mapToRegistry name: 'ps-tree',
285 silly mapToRegistry rawSpec: '',
285 silly mapToRegistry spec: 'latest',
285 silly mapToRegistry type: 'tag' }
286 silly mapToRegistry uri https://registry.npmjs.org/ps-tree
287 verbose addNameRange registry:https://registry.npmjs.org/ps-tree not in flight; fetching
288 http 200 https://registry.npmjs.org/debug
289 verbose headers { server: 'nginx/1.10.1',
289 verbose headers 'content-type': 'application/json',
289 verbose headers 'last-modified': 'Sun, 28 May 2017 01:39:46 GMT',
289 verbose headers etag: 'W/"592a2a62-15e2f"',
289 verbose headers 'content-encoding': 'gzip',
289 verbose headers 'cache-control': 'max-age=300',
289 verbose headers 'content-length': '14600',
289 verbose headers 'accept-ranges': 'bytes',
289 verbose headers date: 'Sun, 28 May 2017 11:50:05 GMT',
289 verbose headers via: '1.1 varnish',
289 verbose headers age: '104',
289 verbose headers connection: 'keep-alive',
289 verbose headers 'x-served-by': 'cache-ord1740-ORD',
289 verbose headers 'x-cache': 'HIT',
289 verbose headers 'x-cache-hits': '2',
289 verbose headers 'x-timer': 'S1495972206.552291,VS0,VE0',
289 verbose headers vary: 'Accept-Encoding' }
290 silly get cb [ 200,
290 silly get { server: 'nginx/1.10.1',
290 silly get 'content-type': 'application/json',
290 silly get 'last-modified': 'Sun, 28 May 2017 01:39:46 GMT',
290 silly get etag: 'W/"592a2a62-15e2f"',
290 silly get 'content-encoding': 'gzip',
290 silly get 'cache-control': 'max-age=300',
290 silly get 'content-length': '14600',
290 silly get 'accept-ranges': 'bytes',
290 silly get date: 'Sun, 28 May 2017 11:50:05 GMT',
290 silly get via: '1.1 varnish',
290 silly get age: '104',
290 silly get connection: 'keep-alive',
290 silly get 'x-served-by': 'cache-ord1740-ORD',
290 silly get 'x-cache': 'HIT',
290 silly get 'x-cache-hits': '2',
290 silly get 'x-timer': 'S1495972206.552291,VS0,VE0',
290 silly get vary: 'Accept-Encoding' } ]
291 verbose get saving debug to C:\Users\Joey\AppData\Roaming\npm-cache\registry.npmjs.org\debug\.cache.json
292 verbose correctMkdir C:\Users\Joey\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
293 verbose get https://registry.npmjs.org/ps-tree not expired, no request
294 silly addNameRange number 2 { name: 'ps-tree', range: '>=1.0.1 <2.0.0', hasData: true }
295 silly addNameRange versions [ 'ps-tree',
295 silly addNameRange [ '0.0.0', '0.0.1', '0.0.2', '0.0.3', '1.0.0', '1.0.1', '1.1.0' ] ]
296 silly addNamed [email protected]
297 verbose addNamed "1.1.0" is a plain semver version for ps-tree
298 http 200 https://registry.npmjs.org/es6-promise
299 verbose headers { server: 'nginx/1.10.1',
299 verbose headers 'content-type': 'application/json',
299 verbose headers 'last-modified': 'Tue, 23 May 2017 09:31:42 GMT',
299 verbose headers etag: 'W/"5924017e-d8f7"',
299 verbose headers 'content-encoding': 'gzip',
299 verbose headers 'cache-control': 'max-age=300',
299 verbose headers 'content-length': '6336',
299 verbose headers 'accept-ranges': 'bytes',
299 verbose headers date: 'Sun, 28 May 2017 11:50:05 GMT',
299 verbose headers via: '1.1 varnish',
299 verbose headers age: '91',
299 verbose headers connection: 'keep-alive',
299 verbose headers 'x-served-by': 'cache-ord1730-ORD',
299 verbose headers 'x-cache': 'HIT',
299 verbose headers 'x-cache-hits': '1',
299 verbose headers 'x-timer': 'S1495972206.583836,VS0,VE0',
299 verbose headers vary: 'Accept-Encoding' }
300 silly get cb [ 200,
300 silly get { server: 'nginx/1.10.1',
300 silly get 'content-type': 'application/json',
300 silly get 'last-modified': 'Tue, 23 May 2017 09:31:42 GMT',
300 silly get etag: 'W/"5924017e-d8f7"',
300 silly get 'content-encoding': 'gzip',
300 silly get 'cache-control': 'max-age=300',
300 silly get 'content-length': '6336',
300 silly get 'accept-ranges': 'bytes',
300 silly get date: 'Sun, 28 May 2017 11:50:05 GMT',
300 silly get via: '1.1 varnish',
300 silly get age: '91',
300 silly get connection: 'keep-alive',
300 silly get 'x-served-by': 'cache-ord1730-ORD',
300 silly get 'x-cache': 'HIT',
300 silly get 'x-cache-hits': '1',
300 silly get 'x-timer': 'S1495972206.583836,VS0,VE0',
300 silly get vary: 'Accept-Encoding' } ]
301 verbose get saving es6-promise to C:\Users\Joey\AppData\Roaming\npm-cache\registry.npmjs.org\es6-promise\.cache.json
302 verbose correctMkdir C:\Users\Joey\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
303 silly mapToRegistry name ps-tree
304 silly mapToRegistry using default registry
305 silly mapToRegistry registry https://registry.npmjs.org/
306 silly mapToRegistry data Result {
306 silly mapToRegistry raw: 'ps-tree',
306 silly mapToRegistry scope: null,
306 silly mapToRegistry escapedName: 'ps-tree',
306 silly mapToRegistry name: 'ps-tree',
306 silly mapToRegistry rawSpec: '',
306 silly mapToRegistry spec: 'latest',
306 silly mapToRegistry type: 'tag' }
307 silly mapToRegistry uri https://registry.npmjs.org/ps-tree
308 verbose addRemoteTarball https://registry.npmjs.org/ps-tree/-/ps-tree-1.1.0.tgz not in flight; adding
309 verbose addRemoteTarball [ 'https://registry.npmjs.org/ps-tree/-/ps-tree-1.1.0.tgz',
309 verbose addRemoteTarball 'b421b24140d6203f1ed3c76996b4427b08e8c014' ]
310 silly cache afterAdd [email protected]
311 verbose afterAdd C:\Users\Joey\AppData\Roaming\npm-cache\undefsafe\0.0.3\package\package.json not in flight; writing
312 verbose correctMkdir C:\Users\Joey\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
313 silly cache afterAdd [email protected]
314 verbose afterAdd C:\Users\Joey\AppData\Roaming\npm-cache\lodash.defaults\3.1.2\package\package.json not in flight; writing
315 verbose correctMkdir C:\Users\Joey\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
316 silly resolveWithNewModule [email protected] checking installable status
317 silly cache add args [ 'minimatch@^3.0.0', null ]
318 verbose cache add spec minimatch@^3.0.0
319 silly cache add parsed spec Result {
319 silly cache add raw: 'minimatch@^3.0.0',
319 silly cache add scope: null,
319 silly cache add escapedName: 'minimatch',
319 silly cache add name: 'minimatch',
319 silly cache add rawSpec: '^3.0.0',
319 silly cache add spec: '>=3.0.0 <4.0.0',
319 silly cache add type: 'range' }
320 silly addNamed minimatch@>=3.0.0 <4.0.0
321 verbose addNamed ">=3.0.0 <4.0.0" is a valid semver range for minimatch
322 silly addNameRange { name: 'minimatch', range: '>=3.0.0 <4.0.0', hasData: false }
323 silly mapToRegistry name minimatch
324 silly mapToRegistry using default registry
325 silly mapToRegistry registry https://registry.npmjs.org/
326 silly mapToRegistry data Result {
326 silly mapToRegistry raw: 'minimatch',
326 silly mapToRegistry scope: null,
326 silly mapToRegistry escapedName: 'minimatch',
326 silly mapToRegistry name: 'minimatch',
326 silly mapToRegistry rawSpec: '',
326 silly mapToRegistry spec: 'latest',
326 silly mapToRegistry type: 'tag' }
327 silly mapToRegistry uri https://registry.npmjs.org/minimatch
328 verbose addNameRange registry:https://registry.npmjs.org/minimatch not in flight; fetching
329 info retry fetch attempt 1 at 6:50:11 AM
330 info attempt registry request try #1 at 6:50:11 AM
331 http fetch GET https://registry.npmjs.org/ps-tree/-/ps-tree-1.1.0.tgz
332 http 200 https://registry.npmjs.org/touch
333 verbose headers { server: 'nginx/1.10.1',
333 verbose headers 'content-type': 'application/json',
333 verbose headers 'last-modified': 'Fri, 12 May 2017 13:17:56 GMT',
333 verbose headers etag: 'W/"5915b604-16d3"',
333 verbose headers 'content-encoding': 'gzip',
333 verbose headers 'cache-control': 'max-age=300',
333 verbose headers 'content-length': '1582',
333 verbose headers 'accept-ranges': 'bytes',
333 verbose headers date: 'Sun, 28 May 2017 11:50:05 GMT',
333 verbose headers via: '1.1 varnish',
333 verbose headers age: '84',
333 verbose headers connection: 'keep-alive',
333 verbose headers 'x-served-by': 'cache-ord1744-ORD',
333 verbose headers 'x-cache': 'HIT',
333 verbose headers 'x-cache-hits': '1',
333 verbose headers 'x-timer': 'S1495972206.583705,VS0,VE1',
333 verbose headers vary: 'Accept-Encoding' }
334 silly get cb [ 200,
334 silly get { server: 'nginx/1.10.1',
334 silly get 'content-type': 'application/json',
334 silly get 'last-modified': 'Fri, 12 May 2017 13:17:56 GMT',
334 silly get etag: 'W/"5915b604-16d3"',
334 silly get 'content-encoding': 'gzip',
334 silly get 'cache-control': 'max-age=300',
334 silly get 'content-length': '1582',
334 silly get 'accept-ranges': 'bytes',
334 silly get date: 'Sun, 28 May 2017 11:50:05 GMT',
334 silly get via: '1.1 varnish',
334 silly get age: '84',
334 silly get connection: 'keep-alive',
334 silly get 'x-served-by': 'cache-ord1744-ORD',
334 silly get 'x-cache': 'HIT',
334 silly get 'x-cache-hits': '1',
334 silly get 'x-timer': 'S1495972206.583705,VS0,VE1',
334 silly get vary: 'Accept-Encoding' } ]
335 verbose get saving touch to C:\Users\Joey\AppData\Roaming\npm-cache\registry.npmjs.org\touch\.cache.json
336 verbose correctMkdir C:\Users\Joey\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
337 silly resolveWithNewModule [email protected] checking installable status
338 silly cache add args [ 'debug@^2.2.0', null ]
339 verbose cache add spec debug@^2.2.0
340 silly cache add parsed spec Result {
340 silly cache add raw: 'debug@^2.2.0',
340 silly cache add scope: null,
340 silly cache add escapedName: 'debug',
340 silly cache add name: 'debug',
340 silly cache add rawSpec: '^2.2.0',
340 silly cache add spec: '>=2.2.0 <3.0.0',
340 silly cache add type: 'range' }
341 silly addNamed debug@>=2.2.0 <3.0.0
342 verbose addNamed ">=2.2.0 <3.0.0" is a valid semver range for debug
343 silly addNameRange { name: 'debug', range: '>=2.2.0 <3.0.0', hasData: false }
344 silly mapToRegistry name debug
345 silly mapToRegistry using default registry
346 silly mapToRegistry registry https://registry.npmjs.org/
347 silly mapToRegistry data Result {
347 silly mapToRegistry raw: 'debug',
347 silly mapToRegistry scope: null,
347 silly mapToRegistry escapedName: 'debug',
347 silly mapToRegistry name: 'debug',
347 silly mapToRegistry rawSpec: '',
347 silly mapToRegistry spec: 'latest',
347 silly mapToRegistry type: 'tag' }
348 silly mapToRegistry uri https://registry.npmjs.org/debug
349 verbose addNameRange registry:https://registry.npmjs.org/debug not in flight; fetching
350 http 200 https://registry.npmjs.org/update-notifier
351 verbose headers { server: 'nginx/1.10.1',
351 verbose headers 'content-type': 'application/json',
351 verbose headers 'last-modified': 'Fri, 19 May 2017 04:33:36 GMT',
351 verbose headers etag: 'W/"591e75a0-d7a0"',
351 verbose headers 'content-encoding': 'gzip',
351 verbose headers 'cache-control': 'max-age=300',
351 verbose headers 'content-length': '7593',
351 verbose headers 'accept-ranges': 'bytes',
351 verbose headers date: 'Sun, 28 May 2017 11:50:05 GMT',
351 verbose headers via: '1.1 varnish',
351 verbose headers age: '25',
351 verbose headers connection: 'keep-alive',
351 verbose headers 'x-served-by': 'cache-ord1723-ORD',
351 verbose headers 'x-cache': 'HIT',
351 verbose headers 'x-cache-hits': '1',
351 verbose headers 'x-timer': 'S1495972206.583767,VS0,VE1',
351 verbose headers vary: 'Accept-Encoding' }
352 silly get cb [ 200,
352 silly get { server: 'nginx/1.10.1',
352 silly get 'content-type': 'application/json',
352 silly get 'last-modified': 'Fri, 19 May 2017 04:33:36 GMT',
352 silly get etag: 'W/"591e75a0-d7a0"',
352 silly get 'content-encoding': 'gzip',
352 silly get 'cache-control': 'max-age=300',
352 silly get 'content-length': '7593',
352 silly get 'accept-ranges': 'bytes',
352 silly get date: 'Sun, 28 May 2017 11:50:05 GMT',
352 silly get via: '1.1 varnish',
352 silly get age: '25',
352 silly get connection: 'keep-alive',
352 silly get 'x-served-by': 'cache-ord1723-ORD',
352 silly get 'x-cache': 'HIT',
352 silly get 'x-cache-hits': '1',
352 silly get 'x-timer': 'S1495972206.583767,VS0,VE1',
352 silly get vary: 'Accept-Encoding' } ]
353 verbose get saving update-notifier to C:\Users\Joey\AppData\Roaming\npm-cache\registry.npmjs.org\update-notifier\.cache.json
354 verbose correctMkdir C:\Users\Joey\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
355 verbose afterAdd C:\Users\Joey\AppData\Roaming\npm-cache\undefsafe\0.0.3\package\package.json written
356 verbose get https://registry.npmjs.org/minimatch not expired, no request
357 silly addNameRange number 2 { name: 'minimatch', range: '>=3.0.0 <4.0.0', hasData: true }
358 silly addNameRange versions [ 'minimatch',
358 silly addNameRange [ '0.0.1',
358 silly addNameRange '0.0.2',
358 silly addNameRange '0.0.4',
358 silly addNameRange '0.0.5',
358 silly addNameRange '0.1.1',
358 silly addNameRange '0.1.2',
358 silly addNameRange '0.1.3',
358 silly addNameRange '0.1.4',
358 silly addNameRange '0.1.5',
358 silly addNameRange '0.2.0',
358 silly addNameRange '0.2.2',
358 silly addNameRange '0.2.3',
358 silly addNameRange '0.2.4',
358 silly addNameRange '0.2.5',
358 silly addNameRange '0.2.6',
358 silly addNameRange '0.2.7',
358 silly addNameRange '0.2.8',
358 silly addNameRange '0.2.9',
358 silly addNameRange '0.2.10',
358 silly addNameRange '0.2.11',
358 silly addNameRange '0.2.12',
358 silly addNameRange '0.2.13',
358 silly addNameRange '0.2.14',
358 silly addNameRange '0.3.0',
358 silly addNameRange '0.4.0',
358 silly addNameRange '1.0.0',
358 silly addNameRange '2.0.0',
358 silly addNameRange '2.0.1',
358 silly addNameRange '2.0.2',
358 silly addNameRange '2.0.3',
358 silly addNameRange '2.0.4',
358 silly addNameRange '2.0.5',
358 silly addNameRange '2.0.6',
358 silly addNameRange '2.0.7',
358 silly addNameRange '2.0.8',
358 silly addNameRange '2.0.9',
358 silly addNameRange '2.0.10',
358 silly addNameRange '3.0.0',
358 silly addNameRange '3.0.2',
358 silly addNameRange '3.0.3',
358 silly addNameRange '3.0.4' ] ]
359 silly addNamed [email protected]
360 verbose addNamed "3.0.4" is a plain semver version for minimatch
361 silly mapToRegistry name minimatch
362 silly mapToRegistry using default registry
363 silly mapToRegistry registry https://registry.npmjs.org/
364 silly mapToRegistry data Result {
364 silly mapToRegistry raw: 'minimatch',
364 silly mapToRegistry scope: null,
364 silly mapToRegistry escapedName: 'minimatch',
364 silly mapToRegistry name: 'minimatch',
364 silly mapToRegistry rawSpec: '',
364 silly mapToRegistry spec: 'latest',
364 silly mapToRegistry type: 'tag' }
365 silly mapToRegistry uri https://registry.npmjs.org/minimatch
366 verbose addRemoteTarball https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz not in flight; adding
367 verbose addRemoteTarball [ 'https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz',
367 verbose addRemoteTarball '5166e286457f03306064be5497e8dbb0c3d32083' ]
368 verbose afterAdd C:\Users\Joey\AppData\Roaming\npm-cache\lodash.defaults\3.1.2\package\package.json written
369 silly resolveWithNewModule [email protected] checking installable status
370 silly cache add args [ 'es6-promise@^3.0.2', null ]
371 verbose cache add spec es6-promise@^3.0.2
372 silly cache add parsed spec Result {
372 silly cache add raw: 'es6-promise@^3.0.2',
372 silly cache add scope: null,
372 silly cache add escapedName: 'es6-promise',
372 silly cache add name: 'es6-promise',
372 silly cache add rawSpec: '^3.0.2',
372 silly cache add spec: '>=3.0.2 <4.0.0',
372 silly cache add type: 'range' }
373 silly addNamed es6-promise@>=3.0.2 <4.0.0
374 verbose addNamed ">=3.0.2 <4.0.0" is a valid semver range for es6-promise
375 silly addNameRange { name: 'es6-promise', range: '>=3.0.2 <4.0.0', hasData: false }
376 silly mapToRegistry name es6-promise
377 silly mapToRegistry using default registry
378 silly mapToRegistry registry https://registry.npmjs.org/
379 silly mapToRegistry data Result {
379 silly mapToRegistry raw: 'es6-promise',
379 silly mapToRegistry scope: null,
379 silly mapToRegistry escapedName: 'es6-promise',
379 silly mapToRegistry name: 'es6-promise',
379 silly mapToRegistry rawSpec: '',
379 silly mapToRegistry spec: 'latest',
379 silly mapToRegistry type: 'tag' }