-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnpm-debug.log
More file actions
16910 lines (16910 loc) · 961 KB
/
npm-debug.log
File metadata and controls
16910 lines (16910 loc) · 961 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
0 info it worked if it ends with ok
1 verbose cli [ '/usr/bin/node', '/usr/bin/npm', 'install', '-g', 'nodemon' ]
2 info using npm@3.5.2
3 info using node@v6.11.4
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 uri https://registry.npmjs.org/nodemon
13 verbose request uri https://registry.npmjs.org/nodemon
14 verbose request no auth needed
15 info attempt registry request try #1 at 1:29:22 PM
16 verbose request id 2ba2e0dba487f780
17 verbose etag W/"20a7410114b5df452e36d441c08189e0"
18 verbose lastModified Tue, 17 Jul 2018 18:27:46 GMT
19 http request GET https://registry.npmjs.org/nodemon
20 http 304 https://registry.npmjs.org/nodemon
21 verbose headers { date: 'Wed, 18 Jul 2018 07:59:23 GMT',
21 verbose headers connection: 'keep-alive',
21 verbose headers 'set-cookie': [ '__cfduid=d6bcc4d8062906bea49c1ed0b51fce58c1531900763; expires=Thu, 18-Jul-19 07:59:23 GMT; path=/; domain=.registry.npmjs.org; HttpOnly' ],
21 verbose headers 'cache-control': 'max-age=300',
21 verbose headers 'cf-cache-status': 'HIT',
21 verbose headers 'cf-ray': '43c3689c393b2eed-DEL',
21 verbose headers etag: '"20a7410114b5df452e36d441c08189e0"',
21 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
21 verbose headers 'last-modified': 'Tue, 17 Jul 2018 18:27:46 GMT',
21 verbose headers vary: 'accept-encoding, accept',
21 verbose headers server: 'cloudflare' }
22 silly get cb [ 304,
22 silly get { date: 'Wed, 18 Jul 2018 07:59:23 GMT',
22 silly get connection: 'keep-alive',
22 silly get 'set-cookie': [ '__cfduid=d6bcc4d8062906bea49c1ed0b51fce58c1531900763; expires=Thu, 18-Jul-19 07:59:23 GMT; path=/; domain=.registry.npmjs.org; HttpOnly' ],
22 silly get 'cache-control': 'max-age=300',
22 silly get 'cf-cache-status': 'HIT',
22 silly get 'cf-ray': '43c3689c393b2eed-DEL',
22 silly get etag: '"20a7410114b5df452e36d441c08189e0"',
22 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
22 silly get 'last-modified': 'Tue, 17 Jul 2018 18:27:46 GMT',
22 silly get vary: 'accept-encoding, accept',
22 silly get server: 'cloudflare' } ]
23 verbose etag https://registry.npmjs.org/nodemon from cache
24 verbose get saving nodemon to /home/ashthecreator/.npm/registry.npmjs.org/nodemon/.cache.json
25 silly install normalizeTree
26 silly loadCurrentTree Finishing
27 silly loadIdealTree Starting
28 silly install loadIdealTree
29 silly cloneCurrentTree Starting
30 silly install cloneCurrentTreeToIdealTree
31 silly cloneCurrentTree Finishing
32 silly loadShrinkwrap Starting
33 silly install loadShrinkwrap
34 silly loadShrinkwrap Finishing
35 silly loadAllDepsIntoIdealTree Starting
36 silly install loadAllDepsIntoIdealTree
37 silly resolveWithNewModule nodemon@1.18.3 checking installable status
38 silly cache add args [ 'nodemon', null ]
39 verbose cache add spec nodemon
40 silly cache add parsed spec Result {
40 silly cache add raw: 'nodemon',
40 silly cache add scope: null,
40 silly cache add name: 'nodemon',
40 silly cache add rawSpec: '',
40 silly cache add spec: 'latest',
40 silly cache add type: 'tag' }
41 silly addNamed nodemon@latest
42 verbose addNamed "latest" is being treated as a dist-tag for nodemon
43 info addNameTag [ 'nodemon', 'latest' ]
44 silly mapToRegistry name nodemon
45 silly mapToRegistry using default registry
46 silly mapToRegistry registry https://registry.npmjs.org/
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 nodemon@1.18.3
52 verbose addNamed "1.18.3" is a plain semver version for nodemon
53 silly cache afterAdd nodemon@1.18.3
54 verbose afterAdd /home/ashthecreator/.npm/nodemon/1.18.3/package/package.json not in flight; writing
55 verbose afterAdd /home/ashthecreator/.npm/nodemon/1.18.3/package/package.json written
56 silly fetchNamedPackageData chokidar
57 silly mapToRegistry name chokidar
58 silly mapToRegistry using default registry
59 silly mapToRegistry registry https://registry.npmjs.org/
60 silly mapToRegistry uri https://registry.npmjs.org/chokidar
61 silly fetchNamedPackageData debug
62 silly mapToRegistry name debug
63 silly mapToRegistry using default registry
64 silly mapToRegistry registry https://registry.npmjs.org/
65 silly mapToRegistry uri https://registry.npmjs.org/debug
66 silly fetchNamedPackageData ignore-by-default
67 silly mapToRegistry name ignore-by-default
68 silly mapToRegistry using default registry
69 silly mapToRegistry registry https://registry.npmjs.org/
70 silly mapToRegistry uri https://registry.npmjs.org/ignore-by-default
71 silly fetchNamedPackageData minimatch
72 silly mapToRegistry name minimatch
73 silly mapToRegistry using default registry
74 silly mapToRegistry registry https://registry.npmjs.org/
75 silly mapToRegistry uri https://registry.npmjs.org/minimatch
76 silly fetchNamedPackageData pstree.remy
77 silly mapToRegistry name pstree.remy
78 silly mapToRegistry using default registry
79 silly mapToRegistry registry https://registry.npmjs.org/
80 silly mapToRegistry uri https://registry.npmjs.org/pstree.remy
81 silly fetchNamedPackageData semver
82 silly mapToRegistry name semver
83 silly mapToRegistry using default registry
84 silly mapToRegistry registry https://registry.npmjs.org/
85 silly mapToRegistry uri https://registry.npmjs.org/semver
86 silly fetchNamedPackageData supports-color
87 silly mapToRegistry name supports-color
88 silly mapToRegistry using default registry
89 silly mapToRegistry registry https://registry.npmjs.org/
90 silly mapToRegistry uri https://registry.npmjs.org/supports-color
91 silly fetchNamedPackageData touch
92 silly mapToRegistry name touch
93 silly mapToRegistry using default registry
94 silly mapToRegistry registry https://registry.npmjs.org/
95 silly mapToRegistry uri https://registry.npmjs.org/touch
96 silly fetchNamedPackageData undefsafe
97 silly mapToRegistry name undefsafe
98 silly mapToRegistry using default registry
99 silly mapToRegistry registry https://registry.npmjs.org/
100 silly mapToRegistry uri https://registry.npmjs.org/undefsafe
101 silly fetchNamedPackageData update-notifier
102 silly mapToRegistry name update-notifier
103 silly mapToRegistry using default registry
104 silly mapToRegistry registry https://registry.npmjs.org/
105 silly mapToRegistry uri https://registry.npmjs.org/update-notifier
106 verbose request uri https://registry.npmjs.org/chokidar
107 verbose request no auth needed
108 info attempt registry request try #1 at 1:29:23 PM
109 verbose etag W/"1e5d2ca7989f917b3b22f27e75d81981"
110 verbose lastModified Mon, 18 Jun 2018 16:55:32 GMT
111 http request GET https://registry.npmjs.org/chokidar
112 verbose request uri https://registry.npmjs.org/ignore-by-default
113 verbose request no auth needed
114 info attempt registry request try #1 at 1:29:23 PM
115 verbose etag W/"d4a4c5c3830ac7ef8e395aa8867a872d"
116 verbose lastModified Sun, 27 May 2018 04:26:16 GMT
117 http request GET https://registry.npmjs.org/ignore-by-default
118 verbose request uri https://registry.npmjs.org/pstree.remy
119 verbose request no auth needed
120 info attempt registry request try #1 at 1:29:23 PM
121 verbose etag W/"4bfbc4fbff451433ab3ebc8d9277125c"
122 verbose lastModified Sun, 27 May 2018 13:05:36 GMT
123 http request GET https://registry.npmjs.org/pstree.remy
124 verbose request uri https://registry.npmjs.org/debug
125 verbose request no auth needed
126 info attempt registry request try #1 at 1:29:23 PM
127 verbose etag W/"fba3b1e5281ea3e19e268240206ca548"
128 verbose lastModified Sat, 26 May 2018 21:52:39 GMT
129 http request GET https://registry.npmjs.org/debug
130 verbose request uri https://registry.npmjs.org/minimatch
131 verbose request no auth needed
132 info attempt registry request try #1 at 1:29:23 PM
133 verbose etag W/"6e7e7da96df71be2863b8b8d1fcb5152"
134 verbose lastModified Sun, 27 May 2018 08:07:30 GMT
135 http request GET https://registry.npmjs.org/minimatch
136 verbose request uri https://registry.npmjs.org/supports-color
137 verbose request no auth needed
138 info attempt registry request try #1 at 1:29:23 PM
139 verbose etag W/"68d33ab5e25b0728d9c2bb3655672154"
140 verbose lastModified Sun, 27 May 2018 18:38:41 GMT
141 http request GET https://registry.npmjs.org/supports-color
142 verbose request uri https://registry.npmjs.org/touch
143 verbose request no auth needed
144 info attempt registry request try #1 at 1:29:23 PM
145 verbose etag W/"3240c76a804195ca8b77de69f427a41b"
146 verbose lastModified Sun, 27 May 2018 19:46:02 GMT
147 http request GET https://registry.npmjs.org/touch
148 verbose request uri https://registry.npmjs.org/semver
149 verbose request no auth needed
150 info attempt registry request try #1 at 1:29:23 PM
151 verbose etag W/"eae9d4724810a4ab23dda56e1aecfdf5"
152 verbose lastModified Sun, 27 May 2018 16:57:29 GMT
153 http request GET https://registry.npmjs.org/semver
154 verbose request uri https://registry.npmjs.org/update-notifier
155 verbose request no auth needed
156 info attempt registry request try #1 at 1:29:23 PM
157 verbose etag W/"a03df279a50891dcbf4af0a859ff7b39"
158 verbose lastModified Sun, 27 May 2018 20:31:43 GMT
159 http request GET https://registry.npmjs.org/update-notifier
160 verbose request uri https://registry.npmjs.org/undefsafe
161 verbose request no auth needed
162 info attempt registry request try #1 at 1:29:23 PM
163 verbose etag W/"0b863dace2c536df4c680930ab0f0b90"
164 verbose lastModified Sun, 27 May 2018 20:25:45 GMT
165 http request GET https://registry.npmjs.org/undefsafe
166 http 304 https://registry.npmjs.org/chokidar
167 verbose headers { date: 'Wed, 18 Jul 2018 07:59:23 GMT',
167 verbose headers connection: 'keep-alive',
167 verbose headers 'set-cookie': [ '__cfduid=d6bcc4d8062906bea49c1ed0b51fce58c1531900763; expires=Thu, 18-Jul-19 07:59:23 GMT; path=/; domain=.registry.npmjs.org; HttpOnly' ],
167 verbose headers 'cache-control': 'max-age=300',
167 verbose headers 'cf-cache-status': 'HIT',
167 verbose headers 'cf-ray': '43c3689e2af62eed-DEL',
167 verbose headers etag: '"1e5d2ca7989f917b3b22f27e75d81981"',
167 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
167 verbose headers 'last-modified': 'Mon, 18 Jun 2018 16:55:32 GMT',
167 verbose headers vary: 'accept-encoding, accept',
167 verbose headers server: 'cloudflare' }
168 silly get cb [ 304,
168 silly get { date: 'Wed, 18 Jul 2018 07:59:23 GMT',
168 silly get connection: 'keep-alive',
168 silly get 'set-cookie': [ '__cfduid=d6bcc4d8062906bea49c1ed0b51fce58c1531900763; expires=Thu, 18-Jul-19 07:59:23 GMT; path=/; domain=.registry.npmjs.org; HttpOnly' ],
168 silly get 'cache-control': 'max-age=300',
168 silly get 'cf-cache-status': 'HIT',
168 silly get 'cf-ray': '43c3689e2af62eed-DEL',
168 silly get etag: '"1e5d2ca7989f917b3b22f27e75d81981"',
168 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
168 silly get 'last-modified': 'Mon, 18 Jun 2018 16:55:32 GMT',
168 silly get vary: 'accept-encoding, accept',
168 silly get server: 'cloudflare' } ]
169 verbose etag https://registry.npmjs.org/chokidar from cache
170 verbose get saving chokidar to /home/ashthecreator/.npm/registry.npmjs.org/chokidar/.cache.json
171 silly resolveWithNewModule chokidar@2.0.4 checking installable status
172 silly cache add args [ 'chokidar@^2.0.2', null ]
173 verbose cache add spec chokidar@^2.0.2
174 silly cache add parsed spec Result {
174 silly cache add raw: 'chokidar@^2.0.2',
174 silly cache add scope: null,
174 silly cache add name: 'chokidar',
174 silly cache add rawSpec: '^2.0.2',
174 silly cache add spec: '>=2.0.2 <3.0.0',
174 silly cache add type: 'range' }
175 silly addNamed chokidar@>=2.0.2 <3.0.0
176 verbose addNamed ">=2.0.2 <3.0.0" is a valid semver range for chokidar
177 silly addNameRange { name: 'chokidar', range: '>=2.0.2 <3.0.0', hasData: false }
178 silly mapToRegistry name chokidar
179 silly mapToRegistry using default registry
180 silly mapToRegistry registry https://registry.npmjs.org/
181 silly mapToRegistry uri https://registry.npmjs.org/chokidar
182 verbose addNameRange registry:https://registry.npmjs.org/chokidar not in flight; fetching
183 verbose get https://registry.npmjs.org/chokidar not expired, no request
184 silly addNameRange number 2 { name: 'chokidar', range: '>=2.0.2 <3.0.0', hasData: true }
185 silly addNameRange versions [ 'chokidar',
185 silly addNameRange [ '0.1.1',
185 silly addNameRange '0.2.0',
185 silly addNameRange '0.2.1',
185 silly addNameRange '0.2.2',
185 silly addNameRange '0.2.3',
185 silly addNameRange '0.2.4',
185 silly addNameRange '0.2.5',
185 silly addNameRange '0.2.6',
185 silly addNameRange '0.3.0',
185 silly addNameRange '0.4.0',
185 silly addNameRange '0.5.0',
185 silly addNameRange '0.5.1',
185 silly addNameRange '0.5.2',
185 silly addNameRange '0.5.3',
185 silly addNameRange '0.6.0',
185 silly addNameRange '0.6.1',
185 silly addNameRange '0.6.2',
185 silly addNameRange '0.6.3',
185 silly addNameRange '0.7.0',
185 silly addNameRange '0.7.1',
185 silly addNameRange '0.8.0',
185 silly addNameRange '0.8.1',
185 silly addNameRange '0.8.2',
185 silly addNameRange '0.8.3',
185 silly addNameRange '0.8.4',
185 silly addNameRange '0.9.0',
185 silly addNameRange '0.10.0',
185 silly addNameRange '0.10.1',
185 silly addNameRange '0.10.2',
185 silly addNameRange '0.10.3',
185 silly addNameRange '0.10.4',
185 silly addNameRange '0.10.5',
185 silly addNameRange '0.10.6',
185 silly addNameRange '0.10.7',
185 silly addNameRange '0.10.8',
185 silly addNameRange '0.10.9',
185 silly addNameRange '0.11.0',
185 silly addNameRange '0.11.1',
185 silly addNameRange '0.12.0',
185 silly addNameRange '0.12.1',
185 silly addNameRange '0.12.2',
185 silly addNameRange '0.12.3',
185 silly addNameRange '0.12.4',
185 silly addNameRange '0.12.5',
185 silly addNameRange '0.12.6',
185 silly addNameRange '1.0.0-rc1',
185 silly addNameRange '1.0.0-rc1.1',
185 silly addNameRange '1.0.0-rc2',
185 silly addNameRange '1.0.0-rc3',
185 silly addNameRange '1.0.0-rc4',
185 silly addNameRange '1.0.0-rc5',
185 silly addNameRange '1.0.0',
185 silly addNameRange '1.0.1',
185 silly addNameRange '1.0.2',
185 silly addNameRange '1.0.3',
185 silly addNameRange '1.0.4',
185 silly addNameRange '1.0.5',
185 silly addNameRange '1.0.6',
185 silly addNameRange '1.1.0',
185 silly addNameRange '1.2.0',
185 silly addNameRange '1.3.0',
185 silly addNameRange '1.4.0',
185 silly addNameRange '1.4.1',
185 silly addNameRange '1.4.2',
185 silly addNameRange '1.4.3',
185 silly addNameRange '1.5.0',
185 silly addNameRange '1.5.1',
185 silly addNameRange '1.5.2',
185 silly addNameRange '1.6.0',
185 silly addNameRange '1.6.1',
185 silly addNameRange '1.7.0',
185 silly addNameRange '2.0.0',
185 silly addNameRange '2.0.1',
185 silly addNameRange '2.0.2',
185 silly addNameRange '2.0.3',
185 silly addNameRange '2.0.4' ] ]
186 silly addNamed chokidar@2.0.4
187 verbose addNamed "2.0.4" is a plain semver version for chokidar
188 silly cache afterAdd chokidar@2.0.4
189 verbose afterAdd /home/ashthecreator/.npm/chokidar/2.0.4/package/package.json not in flight; writing
190 verbose afterAdd /home/ashthecreator/.npm/chokidar/2.0.4/package/package.json written
191 http 304 https://registry.npmjs.org/debug
192 verbose headers { date: 'Wed, 18 Jul 2018 07:59:23 GMT',
192 verbose headers connection: 'keep-alive',
192 verbose headers 'set-cookie': [ '__cfduid=d97ffdff997e6cf40ac0b787b7f8fd2b61531900763; expires=Thu, 18-Jul-19 07:59:23 GMT; path=/; domain=.registry.npmjs.org; HttpOnly' ],
192 verbose headers 'cache-control': 'max-age=300',
192 verbose headers 'cf-cache-status': 'HIT',
192 verbose headers 'cf-ray': '43c3689eec622ef9-DEL',
192 verbose headers etag: '"fba3b1e5281ea3e19e268240206ca548"',
192 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
192 verbose headers 'last-modified': 'Sat, 26 May 2018 21:52:39 GMT',
192 verbose headers vary: 'accept-encoding, accept',
192 verbose headers server: 'cloudflare' }
193 silly get cb [ 304,
193 silly get { date: 'Wed, 18 Jul 2018 07:59:23 GMT',
193 silly get connection: 'keep-alive',
193 silly get 'set-cookie': [ '__cfduid=d97ffdff997e6cf40ac0b787b7f8fd2b61531900763; expires=Thu, 18-Jul-19 07:59:23 GMT; path=/; domain=.registry.npmjs.org; HttpOnly' ],
193 silly get 'cache-control': 'max-age=300',
193 silly get 'cf-cache-status': 'HIT',
193 silly get 'cf-ray': '43c3689eec622ef9-DEL',
193 silly get etag: '"fba3b1e5281ea3e19e268240206ca548"',
193 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
193 silly get 'last-modified': 'Sat, 26 May 2018 21:52:39 GMT',
193 silly get vary: 'accept-encoding, accept',
193 silly get server: 'cloudflare' } ]
194 verbose etag https://registry.npmjs.org/debug from cache
195 verbose get saving debug to /home/ashthecreator/.npm/registry.npmjs.org/debug/.cache.json
196 http 304 https://registry.npmjs.org/ignore-by-default
197 verbose headers { date: 'Wed, 18 Jul 2018 07:59:23 GMT',
197 verbose headers connection: 'keep-alive',
197 verbose headers 'set-cookie': [ '__cfduid=d682288ecb540d07ab87baf4bd85372051531900763; expires=Thu, 18-Jul-19 07:59:23 GMT; path=/; domain=.registry.npmjs.org; HttpOnly' ],
197 verbose headers 'cache-control': 'max-age=300',
197 verbose headers 'cf-cache-status': 'HIT',
197 verbose headers 'cf-ray': '43c3689eeb7c2ef3-DEL',
197 verbose headers etag: '"d4a4c5c3830ac7ef8e395aa8867a872d"',
197 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
197 verbose headers 'last-modified': 'Sun, 27 May 2018 04:26:16 GMT',
197 verbose headers vary: 'accept-encoding, accept',
197 verbose headers server: 'cloudflare' }
198 silly get cb [ 304,
198 silly get { date: 'Wed, 18 Jul 2018 07:59:23 GMT',
198 silly get connection: 'keep-alive',
198 silly get 'set-cookie': [ '__cfduid=d682288ecb540d07ab87baf4bd85372051531900763; expires=Thu, 18-Jul-19 07:59:23 GMT; path=/; domain=.registry.npmjs.org; HttpOnly' ],
198 silly get 'cache-control': 'max-age=300',
198 silly get 'cf-cache-status': 'HIT',
198 silly get 'cf-ray': '43c3689eeb7c2ef3-DEL',
198 silly get etag: '"d4a4c5c3830ac7ef8e395aa8867a872d"',
198 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
198 silly get 'last-modified': 'Sun, 27 May 2018 04:26:16 GMT',
198 silly get vary: 'accept-encoding, accept',
198 silly get server: 'cloudflare' } ]
199 verbose etag https://registry.npmjs.org/ignore-by-default from cache
200 verbose get saving ignore-by-default to /home/ashthecreator/.npm/registry.npmjs.org/ignore-by-default/.cache.json
201 silly resolveWithNewModule ignore-by-default@1.0.1 checking installable status
202 silly cache add args [ 'ignore-by-default@^1.0.1', null ]
203 verbose cache add spec ignore-by-default@^1.0.1
204 silly cache add parsed spec Result {
204 silly cache add raw: 'ignore-by-default@^1.0.1',
204 silly cache add scope: null,
204 silly cache add name: 'ignore-by-default',
204 silly cache add rawSpec: '^1.0.1',
204 silly cache add spec: '>=1.0.1 <2.0.0',
204 silly cache add type: 'range' }
205 silly addNamed ignore-by-default@>=1.0.1 <2.0.0
206 verbose addNamed ">=1.0.1 <2.0.0" is a valid semver range for ignore-by-default
207 silly addNameRange { name: 'ignore-by-default',
207 silly addNameRange range: '>=1.0.1 <2.0.0',
207 silly addNameRange hasData: false }
208 silly mapToRegistry name ignore-by-default
209 silly mapToRegistry using default registry
210 silly mapToRegistry registry https://registry.npmjs.org/
211 silly mapToRegistry uri https://registry.npmjs.org/ignore-by-default
212 verbose addNameRange registry:https://registry.npmjs.org/ignore-by-default not in flight; fetching
213 silly resolveWithNewModule debug@3.1.0 checking installable status
214 silly cache add args [ 'debug@^3.1.0', null ]
215 verbose cache add spec debug@^3.1.0
216 silly cache add parsed spec Result {
216 silly cache add raw: 'debug@^3.1.0',
216 silly cache add scope: null,
216 silly cache add name: 'debug',
216 silly cache add rawSpec: '^3.1.0',
216 silly cache add spec: '>=3.1.0 <4.0.0',
216 silly cache add type: 'range' }
217 silly addNamed debug@>=3.1.0 <4.0.0
218 verbose addNamed ">=3.1.0 <4.0.0" is a valid semver range for debug
219 silly addNameRange { name: 'debug', range: '>=3.1.0 <4.0.0', hasData: false }
220 silly mapToRegistry name debug
221 silly mapToRegistry using default registry
222 silly mapToRegistry registry https://registry.npmjs.org/
223 silly mapToRegistry uri https://registry.npmjs.org/debug
224 verbose addNameRange registry:https://registry.npmjs.org/debug not in flight; fetching
225 http 304 https://registry.npmjs.org/pstree.remy
226 verbose headers { date: 'Wed, 18 Jul 2018 07:59:24 GMT',
226 verbose headers connection: 'keep-alive',
226 verbose headers 'set-cookie': [ '__cfduid=d874156d1df070a39be0780f5b4d67c6e1531900764; expires=Thu, 18-Jul-19 07:59:24 GMT; path=/; domain=.registry.npmjs.org; HttpOnly' ],
226 verbose headers 'cache-control': 'max-age=300',
226 verbose headers 'cf-cache-status': 'HIT',
226 verbose headers 'cf-ray': '43c3689efd042f05-DEL',
226 verbose headers etag: '"4bfbc4fbff451433ab3ebc8d9277125c"',
226 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
226 verbose headers 'last-modified': 'Sun, 27 May 2018 13:05:36 GMT',
226 verbose headers vary: 'accept-encoding, accept',
226 verbose headers server: 'cloudflare' }
227 silly get cb [ 304,
227 silly get { date: 'Wed, 18 Jul 2018 07:59:24 GMT',
227 silly get connection: 'keep-alive',
227 silly get 'set-cookie': [ '__cfduid=d874156d1df070a39be0780f5b4d67c6e1531900764; expires=Thu, 18-Jul-19 07:59:24 GMT; path=/; domain=.registry.npmjs.org; HttpOnly' ],
227 silly get 'cache-control': 'max-age=300',
227 silly get 'cf-cache-status': 'HIT',
227 silly get 'cf-ray': '43c3689efd042f05-DEL',
227 silly get etag: '"4bfbc4fbff451433ab3ebc8d9277125c"',
227 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
227 silly get 'last-modified': 'Sun, 27 May 2018 13:05:36 GMT',
227 silly get vary: 'accept-encoding, accept',
227 silly get server: 'cloudflare' } ]
228 verbose etag https://registry.npmjs.org/pstree.remy from cache
229 verbose get saving pstree.remy to /home/ashthecreator/.npm/registry.npmjs.org/pstree.remy/.cache.json
230 verbose get https://registry.npmjs.org/ignore-by-default not expired, no request
231 silly addNameRange number 2 { name: 'ignore-by-default',
231 silly addNameRange range: '>=1.0.1 <2.0.0',
231 silly addNameRange hasData: true }
232 silly addNameRange versions [ 'ignore-by-default', [ '1.0.0', '1.0.1' ] ]
233 silly addNamed ignore-by-default@1.0.1
234 verbose addNamed "1.0.1" is a plain semver version for ignore-by-default
235 verbose get https://registry.npmjs.org/debug not expired, no request
236 silly addNameRange number 2 { name: 'debug', range: '>=3.1.0 <4.0.0', hasData: true }
237 silly addNameRange versions [ 'debug',
237 silly addNameRange [ '0.0.1',
237 silly addNameRange '0.1.0',
237 silly addNameRange '0.2.0',
237 silly addNameRange '0.3.0',
237 silly addNameRange '0.4.0',
237 silly addNameRange '0.4.1',
237 silly addNameRange '0.5.0',
237 silly addNameRange '0.6.0',
237 silly addNameRange '0.7.0',
237 silly addNameRange '0.7.1',
237 silly addNameRange '0.7.2',
237 silly addNameRange '0.7.3',
237 silly addNameRange '0.7.4',
237 silly addNameRange '0.8.0',
237 silly addNameRange '0.8.1',
237 silly addNameRange '1.0.0',
237 silly addNameRange '1.0.1',
237 silly addNameRange '1.0.2',
237 silly addNameRange '1.0.3',
237 silly addNameRange '1.0.4',
237 silly addNameRange '2.0.0',
237 silly addNameRange '2.1.0',
237 silly addNameRange '2.1.1',
237 silly addNameRange '2.1.2',
237 silly addNameRange '2.1.3',
237 silly addNameRange '2.2.0',
237 silly addNameRange '2.3.0',
237 silly addNameRange '2.3.1',
237 silly addNameRange '2.3.2',
237 silly addNameRange '2.3.3',
237 silly addNameRange '2.4.0',
237 silly addNameRange '2.4.1',
237 silly addNameRange '2.4.2',
237 silly addNameRange '2.4.3',
237 silly addNameRange '2.4.4',
237 silly addNameRange '2.4.5',
237 silly addNameRange '2.5.0',
237 silly addNameRange '2.5.1',
237 silly addNameRange '2.5.2',
237 silly addNameRange '2.6.0',
237 silly addNameRange '2.6.1',
237 silly addNameRange '2.6.2',
237 silly addNameRange '2.6.3',
237 silly addNameRange '2.6.4',
237 silly addNameRange '2.6.5',
237 silly addNameRange '2.6.6',
237 silly addNameRange '2.6.7',
237 silly addNameRange '2.6.8',
237 silly addNameRange '1.0.5',
237 silly addNameRange '3.0.0',
237 silly addNameRange '3.0.1',
237 silly addNameRange '2.6.9',
237 silly addNameRange '3.1.0' ] ]
238 silly addNamed debug@3.1.0
239 verbose addNamed "3.1.0" is a plain semver version for debug
240 silly cache afterAdd ignore-by-default@1.0.1
241 verbose afterAdd /home/ashthecreator/.npm/ignore-by-default/1.0.1/package/package.json not in flight; writing
242 silly cache afterAdd debug@3.1.0
243 verbose afterAdd /home/ashthecreator/.npm/debug/3.1.0/package/package.json not in flight; writing
244 silly resolveWithNewModule pstree.remy@1.1.0 checking installable status
245 silly cache add args [ 'pstree.remy@^1.1.0', null ]
246 verbose cache add spec pstree.remy@^1.1.0
247 silly cache add parsed spec Result {
247 silly cache add raw: 'pstree.remy@^1.1.0',
247 silly cache add scope: null,
247 silly cache add name: 'pstree.remy',
247 silly cache add rawSpec: '^1.1.0',
247 silly cache add spec: '>=1.1.0 <2.0.0',
247 silly cache add type: 'range' }
248 silly addNamed pstree.remy@>=1.1.0 <2.0.0
249 verbose addNamed ">=1.1.0 <2.0.0" is a valid semver range for pstree.remy
250 silly addNameRange { name: 'pstree.remy', range: '>=1.1.0 <2.0.0', hasData: false }
251 silly mapToRegistry name pstree.remy
252 silly mapToRegistry using default registry
253 silly mapToRegistry registry https://registry.npmjs.org/
254 silly mapToRegistry uri https://registry.npmjs.org/pstree.remy
255 verbose addNameRange registry:https://registry.npmjs.org/pstree.remy not in flight; fetching
256 http 304 https://registry.npmjs.org/touch
257 verbose headers { date: 'Wed, 18 Jul 2018 07:59:24 GMT',
257 verbose headers connection: 'keep-alive',
257 verbose headers 'set-cookie': [ '__cfduid=df61f1158046f2a02da98793007846c6c1531900764; expires=Thu, 18-Jul-19 07:59:24 GMT; path=/; domain=.registry.npmjs.org; HttpOnly' ],
257 verbose headers 'cache-control': 'max-age=300',
257 verbose headers 'cf-cache-status': 'HIT',
257 verbose headers 'cf-ray': '43c3689ef8d72ee1-DEL',
257 verbose headers etag: '"3240c76a804195ca8b77de69f427a41b"',
257 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
257 verbose headers 'last-modified': 'Sun, 27 May 2018 19:46:02 GMT',
257 verbose headers vary: 'accept-encoding, accept',
257 verbose headers server: 'cloudflare' }
258 silly get cb [ 304,
258 silly get { date: 'Wed, 18 Jul 2018 07:59:24 GMT',
258 silly get connection: 'keep-alive',
258 silly get 'set-cookie': [ '__cfduid=df61f1158046f2a02da98793007846c6c1531900764; expires=Thu, 18-Jul-19 07:59:24 GMT; path=/; domain=.registry.npmjs.org; HttpOnly' ],
258 silly get 'cache-control': 'max-age=300',
258 silly get 'cf-cache-status': 'HIT',
258 silly get 'cf-ray': '43c3689ef8d72ee1-DEL',
258 silly get etag: '"3240c76a804195ca8b77de69f427a41b"',
258 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
258 silly get 'last-modified': 'Sun, 27 May 2018 19:46:02 GMT',
258 silly get vary: 'accept-encoding, accept',
258 silly get server: 'cloudflare' } ]
259 verbose etag https://registry.npmjs.org/touch from cache
260 verbose get saving touch to /home/ashthecreator/.npm/registry.npmjs.org/touch/.cache.json
261 http 304 https://registry.npmjs.org/minimatch
262 verbose headers { date: 'Wed, 18 Jul 2018 07:59:24 GMT',
262 verbose headers connection: 'keep-alive',
262 verbose headers 'set-cookie': [ '__cfduid=d48f6e9770e7605fe16a5947f32f0f7661531900764; expires=Thu, 18-Jul-19 07:59:24 GMT; path=/; domain=.registry.npmjs.org; HttpOnly' ],
262 verbose headers 'cache-control': 'max-age=300',
262 verbose headers 'cf-cache-status': 'HIT',
262 verbose headers 'cf-ray': '43c3689f1d492ee7-DEL',
262 verbose headers etag: '"6e7e7da96df71be2863b8b8d1fcb5152"',
262 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
262 verbose headers 'last-modified': 'Sun, 27 May 2018 08:07:30 GMT',
262 verbose headers vary: 'accept-encoding, accept',
262 verbose headers server: 'cloudflare' }
263 silly get cb [ 304,
263 silly get { date: 'Wed, 18 Jul 2018 07:59:24 GMT',
263 silly get connection: 'keep-alive',
263 silly get 'set-cookie': [ '__cfduid=d48f6e9770e7605fe16a5947f32f0f7661531900764; expires=Thu, 18-Jul-19 07:59:24 GMT; path=/; domain=.registry.npmjs.org; HttpOnly' ],
263 silly get 'cache-control': 'max-age=300',
263 silly get 'cf-cache-status': 'HIT',
263 silly get 'cf-ray': '43c3689f1d492ee7-DEL',
263 silly get etag: '"6e7e7da96df71be2863b8b8d1fcb5152"',
263 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
263 silly get 'last-modified': 'Sun, 27 May 2018 08:07:30 GMT',
263 silly get vary: 'accept-encoding, accept',
263 silly get server: 'cloudflare' } ]
264 verbose etag https://registry.npmjs.org/minimatch from cache
265 verbose get saving minimatch to /home/ashthecreator/.npm/registry.npmjs.org/minimatch/.cache.json
266 verbose afterAdd /home/ashthecreator/.npm/ignore-by-default/1.0.1/package/package.json written
267 verbose get https://registry.npmjs.org/pstree.remy not expired, no request
268 silly addNameRange number 2 { name: 'pstree.remy', range: '>=1.1.0 <2.0.0', hasData: true }
269 silly addNameRange versions [ 'pstree.remy', [ '1.1.0' ] ]
270 silly addNamed pstree.remy@1.1.0
271 verbose addNamed "1.1.0" is a plain semver version for pstree.remy
272 verbose afterAdd /home/ashthecreator/.npm/debug/3.1.0/package/package.json written
273 silly resolveWithNewModule touch@3.1.0 checking installable status
274 silly cache add args [ 'touch@^3.1.0', null ]
275 verbose cache add spec touch@^3.1.0
276 silly cache add parsed spec Result {
276 silly cache add raw: 'touch@^3.1.0',
276 silly cache add scope: null,
276 silly cache add name: 'touch',
276 silly cache add rawSpec: '^3.1.0',
276 silly cache add spec: '>=3.1.0 <4.0.0',
276 silly cache add type: 'range' }
277 silly addNamed touch@>=3.1.0 <4.0.0
278 verbose addNamed ">=3.1.0 <4.0.0" is a valid semver range for touch
279 silly addNameRange { name: 'touch', range: '>=3.1.0 <4.0.0', hasData: false }
280 silly mapToRegistry name touch
281 silly mapToRegistry using default registry
282 silly mapToRegistry registry https://registry.npmjs.org/
283 silly mapToRegistry uri https://registry.npmjs.org/touch
284 verbose addNameRange registry:https://registry.npmjs.org/touch not in flight; fetching
285 silly resolveWithNewModule minimatch@3.0.4 checking installable status
286 silly cache add args [ 'minimatch@^3.0.4', null ]
287 verbose cache add spec minimatch@^3.0.4
288 silly cache add parsed spec Result {
288 silly cache add raw: 'minimatch@^3.0.4',
288 silly cache add scope: null,
288 silly cache add name: 'minimatch',
288 silly cache add rawSpec: '^3.0.4',
288 silly cache add spec: '>=3.0.4 <4.0.0',
288 silly cache add type: 'range' }
289 silly addNamed minimatch@>=3.0.4 <4.0.0
290 verbose addNamed ">=3.0.4 <4.0.0" is a valid semver range for minimatch
291 silly addNameRange { name: 'minimatch', range: '>=3.0.4 <4.0.0', hasData: false }
292 silly mapToRegistry name minimatch
293 silly mapToRegistry using default registry
294 silly mapToRegistry registry https://registry.npmjs.org/
295 silly mapToRegistry uri https://registry.npmjs.org/minimatch
296 verbose addNameRange registry:https://registry.npmjs.org/minimatch not in flight; fetching
297 silly cache afterAdd pstree.remy@1.1.0
298 verbose afterAdd /home/ashthecreator/.npm/pstree.remy/1.1.0/package/package.json not in flight; writing
299 verbose get https://registry.npmjs.org/touch not expired, no request
300 silly addNameRange number 2 { name: 'touch', range: '>=3.1.0 <4.0.0', hasData: true }
301 silly addNameRange versions [ 'touch',
301 silly addNameRange [ '0.0.1',
301 silly addNameRange '0.0.2',
301 silly addNameRange '0.0.3',
301 silly addNameRange '0.0.4',
301 silly addNameRange '1.0.0',
301 silly addNameRange '2.0.0',
301 silly addNameRange '2.0.1',
301 silly addNameRange '2.0.2',
301 silly addNameRange '3.0.0',
301 silly addNameRange '3.1.0' ] ]
302 silly addNamed touch@3.1.0
303 verbose addNamed "3.1.0" is a plain semver version for touch
304 verbose get https://registry.npmjs.org/minimatch not expired, no request
305 silly addNameRange number 2 { name: 'minimatch', range: '>=3.0.4 <4.0.0', hasData: true }
306 silly addNameRange versions [ 'minimatch',
306 silly addNameRange [ '0.0.1',
306 silly addNameRange '0.0.2',
306 silly addNameRange '0.0.4',
306 silly addNameRange '0.0.5',
306 silly addNameRange '0.1.1',
306 silly addNameRange '0.1.2',
306 silly addNameRange '0.1.3',
306 silly addNameRange '0.1.4',
306 silly addNameRange '0.1.5',
306 silly addNameRange '0.2.0',
306 silly addNameRange '0.2.2',
306 silly addNameRange '0.2.3',
306 silly addNameRange '0.2.4',
306 silly addNameRange '0.2.5',
306 silly addNameRange '0.2.6',
306 silly addNameRange '0.2.7',
306 silly addNameRange '0.2.8',
306 silly addNameRange '0.2.9',
306 silly addNameRange '0.2.10',
306 silly addNameRange '0.2.11',
306 silly addNameRange '0.2.12',
306 silly addNameRange '0.2.13',
306 silly addNameRange '0.2.14',
306 silly addNameRange '0.3.0',
306 silly addNameRange '0.4.0',
306 silly addNameRange '1.0.0',
306 silly addNameRange '2.0.0',
306 silly addNameRange '2.0.1',
306 silly addNameRange '2.0.2',
306 silly addNameRange '2.0.3',
306 silly addNameRange '2.0.4',
306 silly addNameRange '2.0.5',
306 silly addNameRange '2.0.6',
306 silly addNameRange '2.0.7',
306 silly addNameRange '2.0.8',
306 silly addNameRange '2.0.9',
306 silly addNameRange '2.0.10',
306 silly addNameRange '3.0.0',
306 silly addNameRange '3.0.2',
306 silly addNameRange '3.0.3',
306 silly addNameRange '3.0.4' ] ]
307 silly addNamed minimatch@3.0.4
308 verbose addNamed "3.0.4" is a plain semver version for minimatch
309 verbose afterAdd /home/ashthecreator/.npm/pstree.remy/1.1.0/package/package.json written
310 silly cache afterAdd minimatch@3.0.4
311 verbose afterAdd /home/ashthecreator/.npm/minimatch/3.0.4/package/package.json not in flight; writing
312 silly cache afterAdd touch@3.1.0
313 verbose afterAdd /home/ashthecreator/.npm/touch/3.1.0/package/package.json not in flight; writing
314 http 304 https://registry.npmjs.org/update-notifier
315 verbose headers { date: 'Wed, 18 Jul 2018 07:59:24 GMT',
315 verbose headers connection: 'keep-alive',
315 verbose headers 'set-cookie': [ '__cfduid=d0236b5bf0e9bf9ce8d3c9c7b388433bf1531900764; expires=Thu, 18-Jul-19 07:59:24 GMT; path=/; domain=.registry.npmjs.org; HttpOnly' ],
315 verbose headers 'cache-control': 'max-age=300',
315 verbose headers 'cf-cache-status': 'HIT',
315 verbose headers 'cf-ray': '43c3689f2d602f1d-DEL',
315 verbose headers etag: '"a03df279a50891dcbf4af0a859ff7b39"',
315 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
315 verbose headers 'last-modified': 'Sun, 27 May 2018 20:31:43 GMT',
315 verbose headers vary: 'accept-encoding, accept',
315 verbose headers server: 'cloudflare' }
316 silly get cb [ 304,
316 silly get { date: 'Wed, 18 Jul 2018 07:59:24 GMT',
316 silly get connection: 'keep-alive',
316 silly get 'set-cookie': [ '__cfduid=d0236b5bf0e9bf9ce8d3c9c7b388433bf1531900764; expires=Thu, 18-Jul-19 07:59:24 GMT; path=/; domain=.registry.npmjs.org; HttpOnly' ],
316 silly get 'cache-control': 'max-age=300',
316 silly get 'cf-cache-status': 'HIT',
316 silly get 'cf-ray': '43c3689f2d602f1d-DEL',
316 silly get etag: '"a03df279a50891dcbf4af0a859ff7b39"',
316 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
316 silly get 'last-modified': 'Sun, 27 May 2018 20:31:43 GMT',
316 silly get vary: 'accept-encoding, accept',
316 silly get server: 'cloudflare' } ]
317 verbose etag https://registry.npmjs.org/update-notifier from cache
318 verbose get saving update-notifier to /home/ashthecreator/.npm/registry.npmjs.org/update-notifier/.cache.json
319 verbose afterAdd /home/ashthecreator/.npm/touch/3.1.0/package/package.json written
320 verbose afterAdd /home/ashthecreator/.npm/minimatch/3.0.4/package/package.json written
321 silly resolveWithNewModule update-notifier@2.5.0 checking installable status
322 silly cache add args [ 'update-notifier@^2.3.0', null ]
323 verbose cache add spec update-notifier@^2.3.0
324 silly cache add parsed spec Result {
324 silly cache add raw: 'update-notifier@^2.3.0',
324 silly cache add scope: null,
324 silly cache add name: 'update-notifier',
324 silly cache add rawSpec: '^2.3.0',
324 silly cache add spec: '>=2.3.0 <3.0.0',
324 silly cache add type: 'range' }
325 silly addNamed update-notifier@>=2.3.0 <3.0.0
326 verbose addNamed ">=2.3.0 <3.0.0" is a valid semver range for update-notifier
327 silly addNameRange { name: 'update-notifier',
327 silly addNameRange range: '>=2.3.0 <3.0.0',
327 silly addNameRange hasData: false }
328 silly mapToRegistry name update-notifier
329 silly mapToRegistry using default registry
330 silly mapToRegistry registry https://registry.npmjs.org/
331 silly mapToRegistry uri https://registry.npmjs.org/update-notifier
332 verbose addNameRange registry:https://registry.npmjs.org/update-notifier not in flight; fetching
333 http 304 https://registry.npmjs.org/semver
334 verbose headers { date: 'Wed, 18 Jul 2018 07:59:24 GMT',
334 verbose headers connection: 'keep-alive',
334 verbose headers 'set-cookie': [ '__cfduid=d874156d1df070a39be0780f5b4d67c6e1531900764; expires=Thu, 18-Jul-19 07:59:24 GMT; path=/; domain=.registry.npmjs.org; HttpOnly' ],
334 verbose headers 'cache-control': 'max-age=300',
334 verbose headers 'cf-cache-status': 'HIT',
334 verbose headers 'cf-ray': '43c3689f3d652f05-DEL',
334 verbose headers etag: '"eae9d4724810a4ab23dda56e1aecfdf5"',
334 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
334 verbose headers 'last-modified': 'Sun, 27 May 2018 16:57:29 GMT',
334 verbose headers vary: 'accept-encoding, accept',
334 verbose headers server: 'cloudflare' }
335 silly get cb [ 304,
335 silly get { date: 'Wed, 18 Jul 2018 07:59:24 GMT',
335 silly get connection: 'keep-alive',
335 silly get 'set-cookie': [ '__cfduid=d874156d1df070a39be0780f5b4d67c6e1531900764; expires=Thu, 18-Jul-19 07:59:24 GMT; path=/; domain=.registry.npmjs.org; HttpOnly' ],
335 silly get 'cache-control': 'max-age=300',
335 silly get 'cf-cache-status': 'HIT',
335 silly get 'cf-ray': '43c3689f3d652f05-DEL',
335 silly get etag: '"eae9d4724810a4ab23dda56e1aecfdf5"',
335 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
335 silly get 'last-modified': 'Sun, 27 May 2018 16:57:29 GMT',
335 silly get vary: 'accept-encoding, accept',
335 silly get server: 'cloudflare' } ]
336 verbose etag https://registry.npmjs.org/semver from cache
337 verbose get saving semver to /home/ashthecreator/.npm/registry.npmjs.org/semver/.cache.json
338 verbose get https://registry.npmjs.org/update-notifier not expired, no request
339 silly addNameRange number 2 { name: 'update-notifier',
339 silly addNameRange range: '>=2.3.0 <3.0.0',
339 silly addNameRange hasData: true }
340 silly addNameRange versions [ 'update-notifier',
340 silly addNameRange [ '0.1.0',
340 silly addNameRange '0.1.1',
340 silly addNameRange '0.1.2',
340 silly addNameRange '0.1.3',
340 silly addNameRange '0.1.4',
340 silly addNameRange '0.1.5',
340 silly addNameRange '0.1.6',
340 silly addNameRange '0.1.7',
340 silly addNameRange '0.1.8',
340 silly addNameRange '0.1.9',
340 silly addNameRange '0.1.10',
340 silly addNameRange '0.2.0',
340 silly addNameRange '0.2.1',
340 silly addNameRange '0.2.2',
340 silly addNameRange '0.3.0',
340 silly addNameRange '0.3.1',
340 silly addNameRange '0.3.2',
340 silly addNameRange '0.4.0',
340 silly addNameRange '0.5.0',
340 silly addNameRange '0.6.0',
340 silly addNameRange '0.6.1',
340 silly addNameRange '0.6.2',
340 silly addNameRange '0.6.3',
340 silly addNameRange '0.7.0',
340 silly addNameRange '1.0.0',
340 silly addNameRange '1.0.1',
340 silly addNameRange '1.0.2',
340 silly addNameRange '1.0.3',
340 silly addNameRange '2.0.0',
340 silly addNameRange '2.1.0',
340 silly addNameRange '2.2.0',
340 silly addNameRange '2.3.0',
340 silly addNameRange '2.4.0',
340 silly addNameRange '2.5.0' ] ]
341 silly addNamed update-notifier@2.5.0
342 verbose addNamed "2.5.0" is a plain semver version for update-notifier
343 silly cache afterAdd update-notifier@2.5.0
344 verbose afterAdd /home/ashthecreator/.npm/update-notifier/2.5.0/package/package.json not in flight; writing
345 silly resolveWithNewModule semver@5.5.0 checking installable status
346 silly cache add args [ 'semver@^5.5.0', null ]
347 verbose cache add spec semver@^5.5.0
348 silly cache add parsed spec Result {
348 silly cache add raw: 'semver@^5.5.0',
348 silly cache add scope: null,
348 silly cache add name: 'semver',
348 silly cache add rawSpec: '^5.5.0',
348 silly cache add spec: '>=5.5.0 <6.0.0',
348 silly cache add type: 'range' }
349 silly addNamed semver@>=5.5.0 <6.0.0
350 verbose addNamed ">=5.5.0 <6.0.0" is a valid semver range for semver
351 silly addNameRange { name: 'semver', range: '>=5.5.0 <6.0.0', hasData: false }
352 silly mapToRegistry name semver
353 silly mapToRegistry using default registry
354 silly mapToRegistry registry https://registry.npmjs.org/
355 silly mapToRegistry uri https://registry.npmjs.org/semver
356 verbose addNameRange registry:https://registry.npmjs.org/semver not in flight; fetching
357 http 304 https://registry.npmjs.org/undefsafe
358 verbose headers { date: 'Wed, 18 Jul 2018 07:59:24 GMT',
358 verbose headers connection: 'keep-alive',
358 verbose headers 'set-cookie': [ '__cfduid=d99d12fb26f5a051ce5fa67fe3b12927c1531900764; expires=Thu, 18-Jul-19 07:59:24 GMT; path=/; domain=.registry.npmjs.org; HttpOnly' ],
358 verbose headers 'cache-control': 'max-age=300',
358 verbose headers 'cf-cache-status': 'HIT',
358 verbose headers 'cf-ray': '43c3689f5f092ed5-DEL',
358 verbose headers etag: '"0b863dace2c536df4c680930ab0f0b90"',
358 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
358 verbose headers 'last-modified': 'Sun, 27 May 2018 20:25:45 GMT',
358 verbose headers vary: 'accept-encoding, accept',
358 verbose headers server: 'cloudflare' }
359 silly get cb [ 304,
359 silly get { date: 'Wed, 18 Jul 2018 07:59:24 GMT',
359 silly get connection: 'keep-alive',
359 silly get 'set-cookie': [ '__cfduid=d99d12fb26f5a051ce5fa67fe3b12927c1531900764; expires=Thu, 18-Jul-19 07:59:24 GMT; path=/; domain=.registry.npmjs.org; HttpOnly' ],
359 silly get 'cache-control': 'max-age=300',
359 silly get 'cf-cache-status': 'HIT',
359 silly get 'cf-ray': '43c3689f5f092ed5-DEL',
359 silly get etag: '"0b863dace2c536df4c680930ab0f0b90"',
359 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
359 silly get 'last-modified': 'Sun, 27 May 2018 20:25:45 GMT',
359 silly get vary: 'accept-encoding, accept',
359 silly get server: 'cloudflare' } ]
360 verbose etag https://registry.npmjs.org/undefsafe from cache
361 verbose get saving undefsafe to /home/ashthecreator/.npm/registry.npmjs.org/undefsafe/.cache.json
362 verbose afterAdd /home/ashthecreator/.npm/update-notifier/2.5.0/package/package.json written
363 verbose get https://registry.npmjs.org/semver not expired, no request
364 silly addNameRange number 2 { name: 'semver', range: '>=5.5.0 <6.0.0', hasData: true }
365 silly addNameRange versions [ 'semver',
365 silly addNameRange [ '1.0.0',
365 silly addNameRange '1.0.1',
365 silly addNameRange '1.0.2',
365 silly addNameRange '1.0.3',
365 silly addNameRange '1.0.4',
365 silly addNameRange '1.0.5',
365 silly addNameRange '1.0.6',
365 silly addNameRange '1.0.7',
365 silly addNameRange '1.0.8',
365 silly addNameRange '1.0.9',
365 silly addNameRange '1.0.10',
365 silly addNameRange '1.0.11',
365 silly addNameRange '1.0.12',
365 silly addNameRange '1.0.13',
365 silly addNameRange '1.0.14',
365 silly addNameRange '1.1.0',
365 silly addNameRange '1.1.1',
365 silly addNameRange '1.1.2',
365 silly addNameRange '1.1.3',
365 silly addNameRange '1.1.4',
365 silly addNameRange '2.0.0-alpha',
365 silly addNameRange '2.0.0-beta',
365 silly addNameRange '2.0.1',
365 silly addNameRange '2.0.2',
365 silly addNameRange '2.0.3',
365 silly addNameRange '2.0.4',
365 silly addNameRange '2.0.5',
365 silly addNameRange '2.0.6',
365 silly addNameRange '2.0.7',
365 silly addNameRange '2.0.8',
365 silly addNameRange '2.0.9',
365 silly addNameRange '2.0.10',
365 silly addNameRange '2.0.11',
365 silly addNameRange '2.1.0',
365 silly addNameRange '2.2.0',
365 silly addNameRange '2.2.1',
365 silly addNameRange '2.3.0',
365 silly addNameRange '2.3.1',
365 silly addNameRange '2.3.2',
365 silly addNameRange '3.0.0',
365 silly addNameRange '3.0.1',
365 silly addNameRange '4.0.0',
365 silly addNameRange '4.0.2',
365 silly addNameRange '4.0.3',
365 silly addNameRange '4.1.0',
365 silly addNameRange '4.1.1',
365 silly addNameRange '4.2.0',
365 silly addNameRange '4.2.1',
365 silly addNameRange '4.2.2',
365 silly addNameRange '4.3.0',
365 silly addNameRange '4.3.1',
365 silly addNameRange '4.3.2',
365 silly addNameRange '4.3.3',
365 silly addNameRange '4.3.4',
365 silly addNameRange '4.3.5',
365 silly addNameRange '4.3.6',
365 silly addNameRange '5.0.0',
365 silly addNameRange '5.0.1',
365 silly addNameRange '5.0.2',
365 silly addNameRange '5.0.3',
365 silly addNameRange '5.1.0',
365 silly addNameRange '5.1.1',
365 silly addNameRange '5.2.0',
365 silly addNameRange '5.3.0',
365 silly addNameRange '5.4.0',
365 silly addNameRange '5.4.1',
365 silly addNameRange '5.5.0' ] ]
366 silly addNamed semver@5.5.0
367 verbose addNamed "5.5.0" is a plain semver version for semver
368 silly resolveWithNewModule undefsafe@2.0.2 checking installable status
369 silly cache add args [ 'undefsafe@^2.0.2', null ]
370 verbose cache add spec undefsafe@^2.0.2
371 silly cache add parsed spec Result {
371 silly cache add raw: 'undefsafe@^2.0.2',
371 silly cache add scope: null,
371 silly cache add name: 'undefsafe',
371 silly cache add rawSpec: '^2.0.2',
371 silly cache add spec: '>=2.0.2 <3.0.0',
371 silly cache add type: 'range' }
372 silly addNamed undefsafe@>=2.0.2 <3.0.0
373 verbose addNamed ">=2.0.2 <3.0.0" is a valid semver range for undefsafe
374 silly addNameRange { name: 'undefsafe', range: '>=2.0.2 <3.0.0', hasData: false }
375 silly mapToRegistry name undefsafe
376 silly mapToRegistry using default registry
377 silly mapToRegistry registry https://registry.npmjs.org/
378 silly mapToRegistry uri https://registry.npmjs.org/undefsafe
379 verbose addNameRange registry:https://registry.npmjs.org/undefsafe not in flight; fetching
380 silly cache afterAdd semver@5.5.0
381 verbose afterAdd /home/ashthecreator/.npm/semver/5.5.0/package/package.json not in flight; writing
382 verbose get https://registry.npmjs.org/undefsafe not expired, no request
383 silly addNameRange number 2 { name: 'undefsafe', range: '>=2.0.2 <3.0.0', hasData: true }
384 silly addNameRange versions [ 'undefsafe',
384 silly addNameRange [ '0.0.1',
384 silly addNameRange '0.0.2',
384 silly addNameRange '0.0.3',
384 silly addNameRange '1.0.0',
384 silly addNameRange '1.1.0',
384 silly addNameRange '1.2.0',
384 silly addNameRange '1.3.0',
384 silly addNameRange '1.3.1',
384 silly addNameRange '2.0.0',
384 silly addNameRange '2.0.1',
384 silly addNameRange '2.0.2' ] ]
385 silly addNamed undefsafe@2.0.2
386 verbose addNamed "2.0.2" is a plain semver version for undefsafe
387 verbose afterAdd /home/ashthecreator/.npm/semver/5.5.0/package/package.json written
388 silly cache afterAdd undefsafe@2.0.2
389 verbose afterAdd /home/ashthecreator/.npm/undefsafe/2.0.2/package/package.json not in flight; writing
390 http 304 https://registry.npmjs.org/supports-color
391 verbose headers { date: 'Wed, 18 Jul 2018 07:59:24 GMT',
391 verbose headers connection: 'keep-alive',
391 verbose headers 'set-cookie': [ '__cfduid=d8f88cffac43929bcf289ad434bf03e651531900764; expires=Thu, 18-Jul-19 07:59:24 GMT; path=/; domain=.registry.npmjs.org; HttpOnly' ],
391 verbose headers 'cache-control': 'max-age=300',
391 verbose headers 'cf-cache-status': 'HIT',
391 verbose headers 'cf-ray': '43c3689f7c2e2eed-DEL',
391 verbose headers etag: '"68d33ab5e25b0728d9c2bb3655672154"',
391 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
391 verbose headers 'last-modified': 'Sun, 27 May 2018 18:38:41 GMT',
391 verbose headers vary: 'accept-encoding, accept',
391 verbose headers server: 'cloudflare' }
392 silly get cb [ 304,
392 silly get { date: 'Wed, 18 Jul 2018 07:59:24 GMT',
392 silly get connection: 'keep-alive',
392 silly get 'set-cookie': [ '__cfduid=d8f88cffac43929bcf289ad434bf03e651531900764; expires=Thu, 18-Jul-19 07:59:24 GMT; path=/; domain=.registry.npmjs.org; HttpOnly' ],
392 silly get 'cache-control': 'max-age=300',
392 silly get 'cf-cache-status': 'HIT',
392 silly get 'cf-ray': '43c3689f7c2e2eed-DEL',
392 silly get etag: '"68d33ab5e25b0728d9c2bb3655672154"',
392 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
392 silly get 'last-modified': 'Sun, 27 May 2018 18:38:41 GMT',
392 silly get vary: 'accept-encoding, accept',
392 silly get server: 'cloudflare' } ]
393 verbose etag https://registry.npmjs.org/supports-color from cache
394 verbose get saving supports-color to /home/ashthecreator/.npm/registry.npmjs.org/supports-color/.cache.json
395 verbose afterAdd /home/ashthecreator/.npm/undefsafe/2.0.2/package/package.json written
396 silly resolveWithNewModule supports-color@5.4.0 checking installable status
397 silly cache add args [ 'supports-color@^5.2.0', null ]
398 verbose cache add spec supports-color@^5.2.0
399 silly cache add parsed spec Result {
399 silly cache add raw: 'supports-color@^5.2.0',
399 silly cache add scope: null,
399 silly cache add name: 'supports-color',
399 silly cache add rawSpec: '^5.2.0',
399 silly cache add spec: '>=5.2.0 <6.0.0',
399 silly cache add type: 'range' }
400 silly addNamed supports-color@>=5.2.0 <6.0.0
401 verbose addNamed ">=5.2.0 <6.0.0" is a valid semver range for supports-color
402 silly addNameRange { name: 'supports-color',