-
Notifications
You must be signed in to change notification settings - Fork 1
/
npm-debug.log
10690 lines (10690 loc) · 838 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
146073 verbose linkBins [email protected]
146074 verbose linkMans [email protected]
146075 silly build [email protected]
146076 info linkStuff [email protected]
146077 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146078 silly linkStuff [email protected] is part of a global install
146079 silly linkStuff [email protected] is installed into a global node_modules
146080 verbose linkBins [email protected]
146081 verbose linkMans [email protected]
146082 silly build [email protected]
146083 info linkStuff [email protected]
146084 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146085 silly linkStuff [email protected] is part of a global install
146086 silly linkStuff [email protected] is installed into a global node_modules
146087 verbose linkBins [email protected]
146088 verbose linkMans [email protected]
146089 silly build [email protected]
146090 info linkStuff [email protected]
146091 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146092 silly linkStuff [email protected] is part of a global install
146093 silly linkStuff [email protected] is installed into a global node_modules
146094 verbose linkBins [email protected]
146095 verbose linkMans [email protected]
146096 silly build [email protected]
146097 info linkStuff [email protected]
146098 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146099 silly linkStuff [email protected] is part of a global install
146100 silly linkStuff [email protected] is installed into a global node_modules
146101 verbose linkBins [email protected]
146102 verbose linkMans [email protected]
146103 silly build [email protected]
146104 info linkStuff [email protected]
146105 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146106 silly linkStuff [email protected] is part of a global install
146107 silly linkStuff [email protected] is installed into a global node_modules
146108 verbose linkBins [email protected]
146109 verbose linkMans [email protected]
146110 silly build [email protected]
146111 info linkStuff [email protected]
146112 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146113 silly linkStuff [email protected] is part of a global install
146114 silly linkStuff [email protected] is installed into a global node_modules
146115 verbose linkBins [email protected]
146116 verbose linkMans [email protected]
146117 silly build [email protected]
146118 info linkStuff [email protected]
146119 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146120 silly linkStuff [email protected] is part of a global install
146121 silly linkStuff [email protected] is installed into a global node_modules
146122 verbose linkBins [email protected]
146123 verbose linkMans [email protected]
146124 silly build [email protected]
146125 info linkStuff [email protected]
146126 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146127 silly linkStuff [email protected] is part of a global install
146128 silly linkStuff [email protected] is installed into a global node_modules
146129 verbose linkBins [email protected]
146130 verbose linkMans [email protected]
146131 silly build [email protected]
146132 info linkStuff [email protected]
146133 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146134 silly linkStuff [email protected] is part of a global install
146135 silly linkStuff [email protected] is installed into a global node_modules
146136 verbose linkBins [email protected]
146137 verbose linkMans [email protected]
146138 silly build [email protected]
146139 info linkStuff [email protected]
146140 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146141 silly linkStuff [email protected] is part of a global install
146142 silly linkStuff [email protected] is installed into a global node_modules
146143 verbose linkBins [email protected]
146144 verbose link bins [ { 'sshpk-conv': 'bin/sshpk-conv',
146144 verbose link bins 'sshpk-sign': 'bin/sshpk-sign',
146144 verbose link bins 'sshpk-verify': 'bin/sshpk-verify' },
146144 verbose link bins '/usr/lib/node_modules/yo/node_modules/.bin',
146144 verbose link bins false ]
146145 verbose linkMans [email protected]
146146 silly gentlyRm /usr/lib/node_modules/yo/node_modules/.bin/sshpk-sign is being purged
146147 verbose gentlyRm don't care about contents; nuking /usr/lib/node_modules/yo/node_modules/.bin/sshpk-sign
146148 silly gentlyRm /usr/lib/node_modules/yo/node_modules/.bin/sshpk-conv is being purged
146149 verbose gentlyRm don't care about contents; nuking /usr/lib/node_modules/yo/node_modules/.bin/sshpk-conv
146150 silly gentlyRm /usr/lib/node_modules/yo/node_modules/.bin/sshpk-verify is being purged
146151 verbose gentlyRm don't care about contents; nuking /usr/lib/node_modules/yo/node_modules/.bin/sshpk-verify
146152 silly build [email protected]
146153 info linkStuff [email protected]
146154 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146155 silly linkStuff [email protected] is part of a global install
146156 silly linkStuff [email protected] is installed into a global node_modules
146157 verbose linkBins [email protected]
146158 verbose linkMans [email protected]
146159 silly build [email protected]
146160 info linkStuff [email protected]
146161 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146162 silly linkStuff [email protected] is part of a global install
146163 silly linkStuff [email protected] is installed into a global node_modules
146164 verbose linkBins [email protected]
146165 verbose linkMans [email protected]
146166 silly build [email protected]
146167 info linkStuff [email protected]
146168 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146169 silly linkStuff [email protected] is part of a global install
146170 silly linkStuff [email protected] is installed into a global node_modules
146171 verbose linkBins [email protected]
146172 verbose linkMans [email protected]
146173 silly build [email protected]
146174 info linkStuff [email protected]
146175 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146176 silly linkStuff [email protected] is part of a global install
146177 silly linkStuff [email protected] is installed into a global node_modules
146178 verbose linkBins [email protected]
146179 verbose linkMans [email protected]
146180 silly build [email protected]
146181 info linkStuff [email protected]
146182 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146183 silly linkStuff [email protected] is part of a global install
146184 silly linkStuff [email protected] is installed into a global node_modules
146185 verbose linkBins [email protected]
146186 verbose linkMans [email protected]
146187 silly build [email protected]
146188 info linkStuff [email protected]
146189 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146190 silly linkStuff [email protected] is part of a global install
146191 silly linkStuff [email protected] is installed into a global node_modules
146192 verbose linkBins [email protected]
146193 verbose linkMans [email protected]
146194 silly build [email protected]
146195 info linkStuff [email protected]
146196 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules/unset-value/node_modules/has-value/node_modules as its parent node_modules
146197 silly linkStuff [email protected] is part of a global install
146198 silly linkStuff [email protected] is installed into a global node_modules
146199 verbose linkBins [email protected]
146200 verbose linkMans [email protected]
146201 silly build [email protected]
146202 info linkStuff [email protected]
146203 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules/unset-value/node_modules as its parent node_modules
146204 silly linkStuff [email protected] is part of a global install
146205 silly linkStuff [email protected] is installed into a global node_modules
146206 verbose linkBins [email protected]
146207 verbose linkMans [email protected]
146208 silly build [email protected]
146209 info linkStuff [email protected]
146210 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules/unset-value/node_modules as its parent node_modules
146211 silly linkStuff [email protected] is part of a global install
146212 silly linkStuff [email protected] is installed into a global node_modules
146213 verbose linkBins [email protected]
146214 verbose linkMans [email protected]
146215 silly build [email protected]
146216 info linkStuff [email protected]
146217 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146218 silly linkStuff [email protected] is part of a global install
146219 silly linkStuff [email protected] is installed into a global node_modules
146220 verbose linkBins [email protected]
146221 verbose linkMans [email protected]
146222 silly build [email protected]
146223 info linkStuff [email protected]
146224 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146225 silly linkStuff [email protected] is part of a global install
146226 silly linkStuff [email protected] is installed into a global node_modules
146227 verbose linkBins [email protected]
146228 verbose linkMans [email protected]
146229 silly build [email protected]
146230 info linkStuff [email protected]
146231 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146232 silly linkStuff [email protected] is part of a global install
146233 silly linkStuff [email protected] is installed into a global node_modules
146234 verbose linkBins [email protected]
146235 verbose linkMans [email protected]
146236 silly build [email protected]
146237 info linkStuff [email protected]
146238 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146239 silly linkStuff [email protected] is part of a global install
146240 silly linkStuff [email protected] is installed into a global node_modules
146241 verbose linkBins [email protected]
146242 verbose linkMans [email protected]
146243 silly build [email protected]
146244 info linkStuff [email protected]
146245 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146246 silly linkStuff [email protected] is part of a global install
146247 silly linkStuff [email protected] is installed into a global node_modules
146248 verbose linkBins [email protected]
146249 verbose linkMans [email protected]
146250 silly build [email protected]
146251 info linkStuff [email protected]
146252 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules/latest-version/node_modules as its parent node_modules
146253 silly linkStuff [email protected] is part of a global install
146254 silly linkStuff [email protected] is installed into a global node_modules
146255 verbose linkBins [email protected]
146256 verbose linkMans [email protected]
146257 silly build [email protected]
146258 info linkStuff [email protected]
146259 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules/latest-version/node_modules as its parent node_modules
146260 silly linkStuff [email protected] is part of a global install
146261 silly linkStuff [email protected] is installed into a global node_modules
146262 verbose linkBins [email protected]
146263 verbose linkMans [email protected]
146264 silly build [email protected]
146265 info linkStuff [email protected]
146266 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146267 silly linkStuff [email protected] is part of a global install
146268 silly linkStuff [email protected] is installed into a global node_modules
146269 verbose linkBins [email protected]
146270 verbose linkMans [email protected]
146271 silly build [email protected]
146272 info linkStuff [email protected]
146273 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146274 silly linkStuff [email protected] is part of a global install
146275 silly linkStuff [email protected] is installed into a global node_modules
146276 verbose linkBins [email protected]
146277 verbose linkMans [email protected]
146278 silly build [email protected]
146279 info linkStuff [email protected]
146280 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146281 silly linkStuff [email protected] is part of a global install
146282 silly linkStuff [email protected] is installed into a global node_modules
146283 verbose linkBins [email protected]
146284 verbose linkMans [email protected]
146285 silly build [email protected]
146286 info linkStuff [email protected]
146287 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146288 silly linkStuff [email protected] is part of a global install
146289 silly linkStuff [email protected] is installed into a global node_modules
146290 verbose linkBins [email protected]
146291 verbose linkMans [email protected]
146292 silly build [email protected]
146293 info linkStuff [email protected]
146294 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146295 silly linkStuff [email protected] is part of a global install
146296 silly linkStuff [email protected] is installed into a global node_modules
146297 verbose linkBins [email protected]
146298 verbose linkMans [email protected]
146299 silly build [email protected]
146300 info linkStuff [email protected]
146301 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146302 silly linkStuff [email protected] is part of a global install
146303 silly linkStuff [email protected] is installed into a global node_modules
146304 verbose linkBins [email protected]
146305 verbose linkMans [email protected]
146306 silly build [email protected]
146307 info linkStuff [email protected]
146308 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146309 silly linkStuff [email protected] is part of a global install
146310 silly linkStuff [email protected] is installed into a global node_modules
146311 verbose linkBins [email protected]
146312 verbose linkMans [email protected]
146313 silly build [email protected]
146314 info linkStuff [email protected]
146315 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146316 silly linkStuff [email protected] is part of a global install
146317 silly linkStuff [email protected] is installed into a global node_modules
146318 verbose linkBins [email protected]
146319 verbose linkMans [email protected]
146320 silly build [email protected]
146321 info linkStuff [email protected]
146322 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules/npm-keyword/node_modules as its parent node_modules
146323 silly linkStuff [email protected] is part of a global install
146324 silly linkStuff [email protected] is installed into a global node_modules
146325 verbose linkBins [email protected]
146326 verbose linkMans [email protected]
146327 silly build [email protected]
146328 info linkStuff [email protected]
146329 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146330 silly linkStuff [email protected] is part of a global install
146331 silly linkStuff [email protected] is installed into a global node_modules
146332 verbose linkBins [email protected]
146333 verbose linkMans [email protected]
146334 silly build [email protected]
146335 info linkStuff [email protected]
146336 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146337 silly linkStuff [email protected] is part of a global install
146338 silly linkStuff [email protected] is installed into a global node_modules
146339 verbose linkBins [email protected]
146340 verbose linkMans [email protected]
146341 silly build [email protected]
146342 info linkStuff [email protected]
146343 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146344 silly linkStuff [email protected] is part of a global install
146345 silly linkStuff [email protected] is installed into a global node_modules
146346 verbose linkBins [email protected]
146347 verbose linkMans [email protected]
146348 silly build [email protected]
146349 info linkStuff [email protected]
146350 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146351 silly linkStuff [email protected] is part of a global install
146352 silly linkStuff [email protected] is installed into a global node_modules
146353 verbose linkBins [email protected]
146354 verbose linkMans [email protected]
146355 silly build [email protected]
146356 info linkStuff [email protected]
146357 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146358 silly linkStuff [email protected] is part of a global install
146359 silly linkStuff [email protected] is installed into a global node_modules
146360 verbose linkBins [email protected]
146361 verbose linkMans [email protected]
146362 silly build [email protected]
146363 info linkStuff [email protected]
146364 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146365 silly linkStuff [email protected] is part of a global install
146366 silly linkStuff [email protected] is installed into a global node_modules
146367 verbose linkBins [email protected]
146368 verbose linkMans [email protected]
146369 silly build [email protected]
146370 info linkStuff [email protected]
146371 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146372 silly linkStuff [email protected] is part of a global install
146373 silly linkStuff [email protected] is installed into a global node_modules
146374 verbose linkBins [email protected]
146375 verbose linkMans [email protected]
146376 silly build [email protected]
146377 info linkStuff [email protected]
146378 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146379 silly linkStuff [email protected] is part of a global install
146380 silly linkStuff [email protected] is installed into a global node_modules
146381 verbose linkBins [email protected]
146382 verbose linkMans [email protected]
146383 silly build [email protected]
146384 info linkStuff [email protected]
146385 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146386 silly linkStuff [email protected] is part of a global install
146387 silly linkStuff [email protected] is installed into a global node_modules
146388 verbose linkBins [email protected]
146389 verbose linkMans [email protected]
146390 silly build [email protected]
146391 info linkStuff [email protected]
146392 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146393 silly linkStuff [email protected] is part of a global install
146394 silly linkStuff [email protected] is installed into a global node_modules
146395 verbose linkBins [email protected]
146396 verbose linkMans [email protected]
146397 silly build [email protected]
146398 info linkStuff [email protected]
146399 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146400 silly linkStuff [email protected] is part of a global install
146401 silly linkStuff [email protected] is installed into a global node_modules
146402 verbose linkBins [email protected]
146403 verbose linkMans [email protected]
146404 silly build [email protected]
146405 info linkStuff [email protected]
146406 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146407 silly linkStuff [email protected] is part of a global install
146408 silly linkStuff [email protected] is installed into a global node_modules
146409 verbose linkBins [email protected]
146410 verbose linkMans [email protected]
146411 silly build [email protected]
146412 info linkStuff [email protected]
146413 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146414 silly linkStuff [email protected] is part of a global install
146415 silly linkStuff [email protected] is installed into a global node_modules
146416 verbose linkBins [email protected]
146417 verbose linkMans [email protected]
146418 silly build [email protected]
146419 info linkStuff [email protected]
146420 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146421 silly linkStuff [email protected] is part of a global install
146422 silly linkStuff [email protected] is installed into a global node_modules
146423 verbose linkBins [email protected]
146424 verbose linkMans [email protected]
146425 silly build [email protected]
146426 info linkStuff [email protected]
146427 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146428 silly linkStuff [email protected] is part of a global install
146429 silly linkStuff [email protected] is installed into a global node_modules
146430 verbose linkBins [email protected]
146431 verbose linkMans [email protected]
146432 silly build [email protected]
146433 info linkStuff [email protected]
146434 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules/tabtab/node_modules as its parent node_modules
146435 silly linkStuff [email protected] is part of a global install
146436 silly linkStuff [email protected] is installed into a global node_modules
146437 verbose linkBins [email protected]
146438 verbose linkMans [email protected]
146439 silly build [email protected]
146440 info linkStuff [email protected]
146441 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules/tabtab/node_modules as its parent node_modules
146442 silly linkStuff [email protected] is part of a global install
146443 silly linkStuff [email protected] is installed into a global node_modules
146444 verbose linkBins [email protected]
146445 verbose linkMans [email protected]
146446 silly build [email protected]
146447 info linkStuff [email protected]
146448 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146449 silly linkStuff [email protected] is part of a global install
146450 silly linkStuff [email protected] is installed into a global node_modules
146451 verbose linkBins [email protected]
146452 verbose linkMans [email protected]
146453 silly build [email protected]
146454 info linkStuff [email protected]
146455 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146456 silly linkStuff [email protected] is part of a global install
146457 silly linkStuff [email protected] is installed into a global node_modules
146458 verbose linkBins [email protected]
146459 verbose linkMans [email protected]
146460 silly build [email protected]
146461 info linkStuff [email protected]
146462 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146463 silly linkStuff [email protected] is part of a global install
146464 silly linkStuff [email protected] is installed into a global node_modules
146465 verbose linkBins [email protected]
146466 verbose linkMans [email protected]
146467 silly build [email protected]
146468 info linkStuff [email protected]
146469 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146470 silly linkStuff [email protected] is part of a global install
146471 silly linkStuff [email protected] is installed into a global node_modules
146472 verbose linkBins [email protected]
146473 verbose linkMans [email protected]
146474 silly build [email protected]
146475 info linkStuff [email protected]
146476 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146477 silly linkStuff [email protected] is part of a global install
146478 silly linkStuff [email protected] is installed into a global node_modules
146479 verbose linkBins [email protected]
146480 verbose linkMans [email protected]
146481 silly build [email protected]
146482 info linkStuff [email protected]
146483 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146484 silly linkStuff [email protected] is part of a global install
146485 silly linkStuff [email protected] is installed into a global node_modules
146486 verbose linkBins [email protected]
146487 verbose link bins [ { uuid: './bin/uuid' },
146487 verbose link bins '/usr/lib/node_modules/yo/node_modules/.bin',
146487 verbose link bins false ]
146488 verbose linkMans [email protected]
146489 silly gentlyRm /usr/lib/node_modules/yo/node_modules/.bin/uuid is being purged
146490 verbose gentlyRm don't care about contents; nuking /usr/lib/node_modules/yo/node_modules/.bin/uuid
146491 silly build [email protected]
146492 info linkStuff [email protected]
146493 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146494 silly linkStuff [email protected] is part of a global install
146495 silly linkStuff [email protected] is installed into a global node_modules
146496 verbose linkBins [email protected]
146497 verbose linkMans [email protected]
146498 silly build [email protected]
146499 info linkStuff [email protected]
146500 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146501 silly linkStuff [email protected] is part of a global install
146502 silly linkStuff [email protected] is installed into a global node_modules
146503 verbose linkBins [email protected]
146504 verbose linkMans [email protected]
146505 silly build [email protected]
146506 info linkStuff [email protected]
146507 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146508 silly linkStuff [email protected] is part of a global install
146509 silly linkStuff [email protected] is installed into a global node_modules
146510 verbose linkBins [email protected]
146511 verbose linkMans [email protected]
146512 silly build [email protected]
146513 info linkStuff [email protected]
146514 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules/meow/node_modules as its parent node_modules
146515 silly linkStuff [email protected] is part of a global install
146516 silly linkStuff [email protected] is installed into a global node_modules
146517 verbose linkBins [email protected]
146518 verbose linkMans [email protected]
146519 silly build [email protected]
146520 info linkStuff [email protected]
146521 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules/read-pkg-up/node_modules as its parent node_modules
146522 silly linkStuff [email protected] is part of a global install
146523 silly linkStuff [email protected] is installed into a global node_modules
146524 verbose linkBins [email protected]
146525 verbose linkMans [email protected]
146526 silly build [email protected]
146527 info linkStuff [email protected]
146528 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146529 silly linkStuff [email protected] is part of a global install
146530 silly linkStuff [email protected] is installed into a global node_modules
146531 verbose linkBins [email protected]
146532 verbose linkMans [email protected]
146533 silly build [email protected]
146534 info linkStuff [email protected]
146535 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146536 silly linkStuff [email protected] is part of a global install
146537 silly linkStuff [email protected] is installed into a global node_modules
146538 verbose linkBins [email protected]
146539 verbose linkMans [email protected]
146540 silly build [email protected]
146541 info linkStuff [email protected]
146542 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146543 silly linkStuff [email protected] is part of a global install
146544 silly linkStuff [email protected] is installed into a global node_modules
146545 verbose linkBins [email protected]
146546 verbose linkMans [email protected]
146547 silly build [email protected]
146548 info linkStuff [email protected]
146549 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146550 silly linkStuff [email protected] is part of a global install
146551 silly linkStuff [email protected] is installed into a global node_modules
146552 verbose linkBins [email protected]
146553 verbose linkMans [email protected]
146554 silly build [email protected]
146555 info linkStuff [email protected]
146556 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146557 silly linkStuff [email protected] is part of a global install
146558 silly linkStuff [email protected] is installed into a global node_modules
146559 verbose linkBins [email protected]
146560 verbose linkMans [email protected]
146561 silly build [email protected]
146562 info linkStuff [email protected]
146563 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules/vinyl-file/node_modules as its parent node_modules
146564 silly linkStuff [email protected] is part of a global install
146565 silly linkStuff [email protected] is installed into a global node_modules
146566 verbose linkBins [email protected]
146567 verbose linkMans [email protected]
146568 silly build [email protected]
146569 info linkStuff [email protected]
146570 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146571 silly linkStuff [email protected] is part of a global install
146572 silly linkStuff [email protected] is installed into a global node_modules
146573 verbose linkBins [email protected]
146574 verbose linkMans [email protected]
146575 silly build [email protected]
146576 info linkStuff [email protected]
146577 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146578 silly linkStuff [email protected] is part of a global install
146579 silly linkStuff [email protected] is installed into a global node_modules
146580 verbose linkBins [email protected]
146581 verbose linkMans [email protected]
146582 silly build [email protected]
146583 info linkStuff [email protected]
146584 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146585 silly linkStuff [email protected] is part of a global install
146586 silly linkStuff [email protected] is installed into a global node_modules
146587 verbose linkBins [email protected]
146588 verbose link bins [ { twigjs: './bin/twigjs' },
146588 verbose link bins '/usr/lib/node_modules/yo/node_modules/.bin',
146588 verbose link bins false ]
146589 verbose linkMans [email protected]
146590 silly gentlyRm /usr/lib/node_modules/yo/node_modules/.bin/twigjs is being purged
146591 verbose gentlyRm don't care about contents; nuking /usr/lib/node_modules/yo/node_modules/.bin/twigjs
146592 silly build [email protected]
146593 info linkStuff [email protected]
146594 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146595 silly linkStuff [email protected] is part of a global install
146596 silly linkStuff [email protected] is installed into a global node_modules
146597 verbose linkBins [email protected]
146598 verbose link bins [ { which: './bin/which' },
146598 verbose link bins '/usr/lib/node_modules/yo/node_modules/.bin',
146598 verbose link bins false ]
146599 verbose linkMans [email protected]
146600 silly gentlyRm /usr/lib/node_modules/yo/node_modules/.bin/which is being purged
146601 verbose gentlyRm don't care about contents; nuking /usr/lib/node_modules/yo/node_modules/.bin/which
146602 silly build [email protected]
146603 info linkStuff [email protected]
146604 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146605 silly linkStuff [email protected] is part of a global install
146606 silly linkStuff [email protected] is installed into a global node_modules
146607 verbose linkBins [email protected]
146608 verbose linkMans [email protected]
146609 silly build [email protected]
146610 info linkStuff [email protected]
146611 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146612 silly linkStuff [email protected] is part of a global install
146613 silly linkStuff [email protected] is installed into a global node_modules
146614 verbose linkBins [email protected]
146615 verbose linkMans [email protected]
146616 silly build [email protected]
146617 info linkStuff [email protected]
146618 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules/wrap-ansi/node_modules as its parent node_modules
146619 silly linkStuff [email protected] is part of a global install
146620 silly linkStuff [email protected] is installed into a global node_modules
146621 verbose linkBins [email protected]
146622 verbose linkMans [email protected]
146623 silly build [email protected]
146624 info linkStuff [email protected]
146625 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules/wrap-ansi/node_modules as its parent node_modules
146626 silly linkStuff [email protected] is part of a global install
146627 silly linkStuff [email protected] is installed into a global node_modules
146628 verbose linkBins [email protected]
146629 verbose linkMans [email protected]
146630 silly build [email protected]
146631 info linkStuff [email protected]
146632 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules/wrap-ansi/node_modules as its parent node_modules
146633 silly linkStuff [email protected] is part of a global install
146634 silly linkStuff [email protected] is installed into a global node_modules
146635 verbose linkBins [email protected]
146636 verbose linkMans [email protected]
146637 silly build [email protected]
146638 info linkStuff [email protected]
146639 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules/wrap-ansi/node_modules as its parent node_modules
146640 silly linkStuff [email protected] is part of a global install
146641 silly linkStuff [email protected] is installed into a global node_modules
146642 verbose linkBins [email protected]
146643 verbose linkMans [email protected]
146644 silly build [email protected]
146645 info linkStuff [email protected]
146646 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146647 silly linkStuff [email protected] is part of a global install
146648 silly linkStuff [email protected] is installed into a global node_modules
146649 verbose linkBins [email protected]
146650 verbose linkMans [email protected]
146651 silly build [email protected]
146652 info linkStuff [email protected]
146653 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146654 silly linkStuff [email protected] is part of a global install
146655 silly linkStuff [email protected] is installed into a global node_modules
146656 verbose linkBins [email protected]
146657 verbose linkMans [email protected]
146658 silly build [email protected]
146659 info linkStuff [email protected]
146660 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146661 silly linkStuff [email protected] is part of a global install
146662 silly linkStuff [email protected] is installed into a global node_modules
146663 verbose linkBins [email protected]
146664 verbose linkMans [email protected]
146665 silly build [email protected]
146666 info linkStuff [email protected]
146667 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146668 silly linkStuff [email protected] is part of a global install
146669 silly linkStuff [email protected] is installed into a global node_modules
146670 verbose linkBins [email protected]
146671 verbose linkMans [email protected]
146672 silly build [email protected]
146673 info linkStuff [email protected]
146674 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146675 silly linkStuff [email protected] is part of a global install
146676 silly linkStuff [email protected] is installed into a global node_modules
146677 verbose linkBins [email protected]
146678 verbose linkMans [email protected]
146679 silly build [email protected]
146680 info linkStuff [email protected]
146681 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146682 silly linkStuff [email protected] is part of a global install
146683 silly linkStuff [email protected] is installed into a global node_modules
146684 verbose linkBins [email protected]
146685 verbose linkMans [email protected]
146686 silly build [email protected]
146687 info linkStuff [email protected]
146688 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146689 silly linkStuff [email protected] is part of a global install
146690 silly linkStuff [email protected] is installed into a global node_modules
146691 verbose linkBins [email protected]
146692 verbose linkMans [email protected]
146693 silly build [email protected]
146694 info linkStuff [email protected]
146695 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146696 silly linkStuff [email protected] is part of a global install
146697 silly linkStuff [email protected] is installed into a global node_modules
146698 verbose linkBins [email protected]
146699 verbose linkMans [email protected]
146700 silly build [email protected]
146701 info linkStuff [email protected]
146702 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules/windows-release/node_modules as its parent node_modules
146703 silly linkStuff [email protected] is part of a global install
146704 silly linkStuff [email protected] is installed into a global node_modules
146705 verbose linkBins [email protected]
146706 verbose linkMans [email protected]
146707 silly build [email protected]
146708 info linkStuff [email protected]
146709 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules/windows-release/node_modules as its parent node_modules
146710 silly linkStuff [email protected] is part of a global install
146711 silly linkStuff [email protected] is installed into a global node_modules
146712 verbose linkBins [email protected]
146713 verbose linkMans [email protected]
146714 silly build [email protected]
146715 info linkStuff [email protected]
146716 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146717 silly linkStuff [email protected] is part of a global install
146718 silly linkStuff [email protected] is installed into a global node_modules
146719 verbose linkBins [email protected]
146720 verbose linkMans [email protected]
146721 silly build [email protected]
146722 info linkStuff [email protected]
146723 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146724 silly linkStuff [email protected] is part of a global install
146725 silly linkStuff [email protected] is installed into a global node_modules
146726 verbose linkBins [email protected]
146727 verbose linkMans [email protected]
146728 silly build [email protected]
146729 info linkStuff [email protected]
146730 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146731 silly linkStuff [email protected] is part of a global install
146732 silly linkStuff [email protected] is installed into a global node_modules
146733 verbose linkBins [email protected]
146734 verbose linkMans [email protected]
146735 silly build [email protected]
146736 info linkStuff [email protected]
146737 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146738 silly linkStuff [email protected] is part of a global install
146739 silly linkStuff [email protected] is installed into a global node_modules
146740 verbose linkBins [email protected]
146741 verbose linkMans [email protected]
146742 silly build [email protected]
146743 info linkStuff [email protected]
146744 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146745 silly linkStuff [email protected] is part of a global install
146746 silly linkStuff [email protected] is installed into a global node_modules
146747 verbose linkBins [email protected]
146748 verbose linkMans [email protected]
146749 silly build [email protected]
146750 info linkStuff [email protected]
146751 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146752 silly linkStuff [email protected] is part of a global install
146753 silly linkStuff [email protected] is installed into a global node_modules
146754 verbose linkBins [email protected]
146755 verbose linkMans [email protected]
146756 silly build [email protected]
146757 info linkStuff [email protected]
146758 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146759 silly linkStuff [email protected] is part of a global install
146760 silly linkStuff [email protected] is installed into a global node_modules
146761 verbose linkBins [email protected]
146762 verbose linkMans [email protected]
146763 silly build [email protected]
146764 info linkStuff [email protected]
146765 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146766 silly linkStuff [email protected] is part of a global install
146767 silly linkStuff [email protected] is installed into a global node_modules
146768 verbose linkBins [email protected]
146769 verbose linkMans [email protected]
146770 silly build [email protected]
146771 info linkStuff [email protected]
146772 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146773 silly linkStuff [email protected] is part of a global install
146774 silly linkStuff [email protected] is installed into a global node_modules
146775 verbose linkBins [email protected]
146776 verbose linkMans [email protected]
146777 silly build [email protected]
146778 info linkStuff [email protected]
146779 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146780 silly linkStuff [email protected] is part of a global install
146781 silly linkStuff [email protected] is installed into a global node_modules
146782 verbose linkBins [email protected]
146783 verbose linkMans [email protected]
146784 silly build [email protected]
146785 info linkStuff [email protected]
146786 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146787 silly linkStuff [email protected] is part of a global install
146788 silly linkStuff [email protected] is installed into a global node_modules
146789 verbose linkBins [email protected]
146790 verbose linkMans [email protected]
146791 silly build [email protected]
146792 info linkStuff [email protected]
146793 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146794 silly linkStuff [email protected] is part of a global install
146795 silly linkStuff [email protected] is installed into a global node_modules
146796 verbose linkBins [email protected]
146797 verbose linkMans [email protected]
146798 silly build [email protected]
146799 info linkStuff [email protected]
146800 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules/bin-version/node_modules as its parent node_modules
146801 silly linkStuff [email protected] is part of a global install
146802 silly linkStuff [email protected] is installed into a global node_modules
146803 verbose linkBins [email protected]
146804 verbose linkMans [email protected]
146805 silly build [email protected]
146806 info linkStuff [email protected]
146807 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146808 silly linkStuff [email protected] is part of a global install
146809 silly linkStuff [email protected] is installed into a global node_modules
146810 verbose linkBins [email protected]
146811 verbose linkMans [email protected]
146812 silly build [email protected]
146813 info linkStuff [email protected]
146814 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146815 silly linkStuff [email protected] is part of a global install
146816 silly linkStuff [email protected] is installed into a global node_modules
146817 verbose linkBins [email protected]
146818 verbose linkMans [email protected]
146819 silly build [email protected]
146820 info linkStuff [email protected]
146821 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules/passwd-user/node_modules as its parent node_modules
146822 silly linkStuff [email protected] is part of a global install
146823 silly linkStuff [email protected] is installed into a global node_modules
146824 verbose linkBins [email protected]
146825 verbose linkMans [email protected]
146826 silly build [email protected]
146827 info linkStuff [email protected]
146828 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146829 silly linkStuff [email protected] is part of a global install
146830 silly linkStuff [email protected] is installed into a global node_modules
146831 verbose linkBins [email protected]
146832 verbose linkMans [email protected]
146833 silly build [email protected]
146834 info linkStuff [email protected]
146835 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules/execa/node_modules as its parent node_modules
146836 silly linkStuff [email protected] is part of a global install
146837 silly linkStuff [email protected] is installed into a global node_modules
146838 verbose linkBins [email protected]
146839 verbose linkMans [email protected]
146840 silly build [email protected]
146841 info linkStuff [email protected]
146842 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146843 silly linkStuff [email protected] is part of a global install
146844 silly linkStuff [email protected] is installed into a global node_modules
146845 verbose linkBins [email protected]
146846 verbose linkMans [email protected]
146847 silly build [email protected]
146848 info linkStuff [email protected]
146849 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules/term-size/node_modules as its parent node_modules
146850 silly linkStuff [email protected] is part of a global install
146851 silly linkStuff [email protected] is installed into a global node_modules
146852 verbose linkBins [email protected]
146853 verbose linkMans [email protected]
146854 silly build [email protected]
146855 info linkStuff [email protected]
146856 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules/term-size/node_modules as its parent node_modules
146857 silly linkStuff [email protected] is part of a global install
146858 silly linkStuff [email protected] is installed into a global node_modules
146859 verbose linkBins [email protected]
146860 verbose linkMans [email protected]
146861 silly build [email protected]
146862 info linkStuff [email protected]
146863 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146864 silly linkStuff [email protected] is part of a global install
146865 silly linkStuff [email protected] is installed into a global node_modules
146866 verbose linkBins [email protected]
146867 verbose linkMans [email protected]
146868 silly build [email protected]
146869 info linkStuff [email protected]
146870 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
146871 silly linkStuff [email protected] is part of a global install
146872 silly linkStuff [email protected] is installed into a global node_modules
146873 verbose linkBins [email protected]
146874 verbose linkMans [email protected]
146875 silly build [email protected]
146876 info linkStuff [email protected]
146877 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules/yeoman-character/node_modules as its parent node_modules
146878 silly linkStuff [email protected] is part of a global install
146879 silly linkStuff [email protected] is installed into a global node_modules
146880 verbose linkBins [email protected]
146881 verbose linkMans [email protected]
146882 silly build [email protected]
146883 info linkStuff [email protected]
146884 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules/yeoman-character/node_modules as its parent node_modules
146885 silly linkStuff [email protected] is part of a global install
146886 silly linkStuff [email protected] is installed into a global node_modules
146887 verbose linkBins [email protected]
146888 verbose linkMans [email protected]
146889 silly build [email protected]
146890 info linkStuff [email protected]
146891 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules/yeoman-environment/node_modules as its parent node_modules
146892 silly linkStuff [email protected] is part of a global install
146893 silly linkStuff [email protected] is installed into a global node_modules
146894 verbose linkBins [email protected]
146895 verbose linkMans [email protected]
146896 silly build [email protected]
146897 info linkStuff [email protected]
146898 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules/yeoman-environment/node_modules as its parent node_modules
146899 silly linkStuff [email protected] is part of a global install
146900 silly linkStuff [email protected] is installed into a global node_modules
146901 verbose linkBins [email protected]
146902 verbose linkMans [email protected]
146903 silly build [email protected]
146904 info linkStuff [email protected]
146905 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules/yeoman-environment/node_modules as its parent node_modules
146906 silly linkStuff [email protected] is part of a global install
146907 silly linkStuff [email protected] is installed into a global node_modules
146908 verbose linkBins [email protected]
146909 verbose linkMans [email protected]
146910 silly build [email protected]
146911 info linkStuff [email protected]
146912 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules/yosay/node_modules as its parent node_modules
146913 silly linkStuff [email protected] is part of a global install
146914 silly linkStuff [email protected] is installed into a global node_modules
146915 verbose linkBins [email protected]
146916 verbose linkMans [email protected]
146917 silly build [email protected]
146918 info linkStuff [email protected]
146919 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules/yosay/node_modules/chalk/node_modules as its parent node_modules
146920 silly linkStuff [email protected] is part of a global install
146921 silly linkStuff [email protected] is installed into a global node_modules
146922 verbose linkBins [email protected]
146923 verbose linkMans [email protected]
146924 silly build [email protected]
146925 info linkStuff [email protected]
146926 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules/yosay/node_modules as its parent node_modules
146927 silly linkStuff [email protected] is part of a global install
146928 silly linkStuff [email protected] is installed into a global node_modules
146929 verbose linkBins [email protected]
146930 verbose linkMans [email protected]
146931 silly build [email protected]
146932 info linkStuff [email protected]
146933 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules/yosay/node_modules as its parent node_modules
146934 silly linkStuff [email protected] is part of a global install
146935 silly linkStuff [email protected] is installed into a global node_modules
146936 verbose linkBins [email protected]
146937 verbose linkMans [email protected]
146938 silly build [email protected]
146939 info linkStuff [email protected]
146940 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules/yosay/node_modules as its parent node_modules
146941 silly linkStuff [email protected] is part of a global install
146942 silly linkStuff [email protected] is installed into a global node_modules
146943 verbose linkBins [email protected]
146944 verbose linkMans [email protected]
146945 silly build [email protected]
146946 info linkStuff [email protected]
146947 silly linkStuff [email protected] has /usr/lib/node_modules as its parent node_modules
146948 silly linkStuff [email protected] is part of a global install
146949 silly linkStuff [email protected] is installed into a global node_modules
146950 silly linkStuff [email protected] is installed into the top-level global node_modules
146951 verbose linkBins [email protected]
146952 verbose link bins [ { bower: 'bin/bower' }, '/usr/bin', true ]
146953 verbose linkMans [email protected]
146954 silly gentlyRm /usr/bin/bower is being gently removed
146955 silly build [email protected]
146956 info linkStuff [email protected]
146957 silly linkStuff [email protected] has /usr/lib/node_modules/generator-karma/node_modules as its parent node_modules
146958 silly linkStuff [email protected] is part of a global install
146959 silly linkStuff [email protected] is installed into a global node_modules
146960 verbose linkBins [email protected]
146961 verbose linkMans [email protected]
146962 silly build [email protected]
146963 info linkStuff [email protected]
146964 silly linkStuff [email protected] has /usr/lib/node_modules as its parent node_modules
146965 silly linkStuff [email protected] is part of a global install
146966 silly linkStuff [email protected] is installed into a global node_modules
146967 silly linkStuff [email protected] is installed into the top-level global node_modules
146968 verbose linkBins [email protected]
146969 verbose linkMans [email protected]
146970 silly build [email protected]
146971 info linkStuff [email protected]
146972 silly linkStuff [email protected] has /usr/lib/node_modules/generator-oas/node_modules as its parent node_modules
146973 silly linkStuff [email protected] is part of a global install
146974 silly linkStuff [email protected] is installed into a global node_modules
146975 verbose linkBins [email protected]
146976 verbose link bins [ { wiredep: './wiredep-cli.js' },
146976 verbose link bins '/usr/lib/node_modules/generator-oas/node_modules/.bin',
146976 verbose link bins false ]
146977 verbose linkMans [email protected]
146978 silly gentlyRm /usr/lib/node_modules/generator-oas/node_modules/.bin/wiredep is being purged
146979 verbose gentlyRm don't care about contents; nuking /usr/lib/node_modules/generator-oas/node_modules/.bin/wiredep
146980 silly build [email protected]
146981 info linkStuff [email protected]
146982 silly linkStuff [email protected] has /usr/lib/node_modules/generator-oas/node_modules as its parent node_modules
146983 silly linkStuff [email protected] is part of a global install
146984 silly linkStuff [email protected] is installed into a global node_modules
146985 verbose linkBins [email protected]
146986 verbose linkMans [email protected]
146987 silly build [email protected]
146988 info linkStuff [email protected]
146989 silly linkStuff [email protected] has /usr/lib/node_modules/generator-oas/node_modules as its parent node_modules
146990 silly linkStuff [email protected] is part of a global install
146991 silly linkStuff [email protected] is installed into a global node_modules
146992 verbose linkBins [email protected]
146993 verbose link bins [ { yosay: 'cli.js' },
146993 verbose link bins '/usr/lib/node_modules/generator-oas/node_modules/.bin',
146993 verbose link bins false ]
146994 verbose linkMans [email protected]
146995 silly gentlyRm /usr/lib/node_modules/generator-oas/node_modules/.bin/yosay is being purged
146996 verbose gentlyRm don't care about contents; nuking /usr/lib/node_modules/generator-oas/node_modules/.bin/yosay
146997 silly build [email protected]
146998 info linkStuff [email protected]
146999 silly linkStuff [email protected] has /usr/lib/node_modules as its parent node_modules
147000 silly linkStuff [email protected] is part of a global install
147001 silly linkStuff [email protected] is installed into a global node_modules
147002 silly linkStuff [email protected] is installed into the top-level global node_modules
147003 verbose linkBins [email protected]
147004 verbose linkMans [email protected]
147005 silly build [email protected]
147006 info linkStuff [email protected]
147007 silly linkStuff [email protected] has /usr/lib/node_modules/grunt-cli/node_modules as its parent node_modules
147008 silly linkStuff [email protected] is part of a global install
147009 silly linkStuff [email protected] is installed into a global node_modules
147010 verbose linkBins [email protected]
147011 verbose linkMans [email protected]
147012 silly build [email protected]
147013 info linkStuff [email protected]
147014 silly linkStuff [email protected] has /usr/lib/node_modules/grunt-cli/node_modules as its parent node_modules
147015 silly linkStuff [email protected] is part of a global install
147016 silly linkStuff [email protected] is installed into a global node_modules
147017 verbose linkBins [email protected]
147018 verbose linkMans [email protected]
147019 silly build [email protected]
147020 info linkStuff [email protected]
147021 silly linkStuff [email protected] has /usr/lib/node_modules/grunt-cli/node_modules as its parent node_modules
147022 silly linkStuff [email protected] is part of a global install
147023 silly linkStuff [email protected] is installed into a global node_modules
147024 verbose linkBins [email protected]
147025 verbose linkMans [email protected]
147026 silly build [email protected]
147027 info linkStuff [email protected]
147028 silly linkStuff [email protected] has /usr/lib/node_modules/grunt-cli/node_modules as its parent node_modules
147029 silly linkStuff [email protected] is part of a global install
147030 silly linkStuff [email protected] is installed into a global node_modules
147031 verbose linkBins [email protected]
147032 verbose link bins [ { nopt: './bin/nopt.js' },
147032 verbose link bins '/usr/lib/node_modules/grunt-cli/node_modules/.bin',
147032 verbose link bins false ]
147033 verbose linkMans [email protected]
147034 silly gentlyRm /usr/lib/node_modules/grunt-cli/node_modules/.bin/nopt is being purged
147035 verbose gentlyRm don't care about contents; nuking /usr/lib/node_modules/grunt-cli/node_modules/.bin/nopt
147036 silly build [email protected]
147037 info linkStuff [email protected]
147038 silly linkStuff [email protected] has /usr/lib/node_modules/grunt-cli/node_modules as its parent node_modules
147039 silly linkStuff [email protected] is part of a global install
147040 silly linkStuff [email protected] is installed into a global node_modules
147041 verbose linkBins [email protected]
147042 verbose linkMans [email protected]
147043 silly build [email protected]
147044 info linkStuff [email protected]
147045 silly linkStuff [email protected] has /usr/lib/node_modules as its parent node_modules
147046 silly linkStuff [email protected] is part of a global install
147047 silly linkStuff [email protected] is installed into a global node_modules
147048 silly linkStuff [email protected] is installed into the top-level global node_modules
147049 verbose linkBins [email protected]
147050 verbose link bins [ { grunt: 'bin/grunt' }, '/usr/bin', true ]
147051 verbose linkMans [email protected]
147052 silly gentlyRm /usr/bin/grunt is being gently removed
147053 silly build [email protected]
147054 info linkStuff [email protected]
147055 silly linkStuff [email protected] has /usr/lib/node_modules/yo/node_modules as its parent node_modules
147056 silly linkStuff [email protected] is part of a global install