-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnpm-debug.log
9824 lines (9824 loc) · 661 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
8004 silly decomposeActions install [email protected]
8005 silly decomposeActions postinstall [email protected]
8006 silly decomposeActions finalize [email protected]
8007 silly decomposeActions fetch [email protected]
8008 silly decomposeActions extract [email protected]
8009 silly decomposeActions test [email protected]
8010 silly decomposeActions preinstall [email protected]
8011 silly decomposeActions build [email protected]
8012 silly decomposeActions install [email protected]
8013 silly decomposeActions postinstall [email protected]
8014 silly decomposeActions finalize [email protected]
8015 silly decomposeActions fetch [email protected]
8016 silly decomposeActions extract [email protected]
8017 silly decomposeActions test [email protected]
8018 silly decomposeActions preinstall [email protected]
8019 silly decomposeActions build [email protected]
8020 silly decomposeActions install [email protected]
8021 silly decomposeActions postinstall [email protected]
8022 silly decomposeActions finalize [email protected]
8023 silly decomposeActions fetch [email protected]
8024 silly decomposeActions extract [email protected]
8025 silly decomposeActions test [email protected]
8026 silly decomposeActions preinstall [email protected]
8027 silly decomposeActions build [email protected]
8028 silly decomposeActions install [email protected]
8029 silly decomposeActions postinstall [email protected]
8030 silly decomposeActions finalize [email protected]
8031 silly decomposeActions fetch [email protected]
8032 silly decomposeActions extract [email protected]
8033 silly decomposeActions test [email protected]
8034 silly decomposeActions preinstall [email protected]
8035 silly decomposeActions build [email protected]
8036 silly decomposeActions install [email protected]
8037 silly decomposeActions postinstall [email protected]
8038 silly decomposeActions finalize [email protected]
8039 silly decomposeActions fetch [email protected]
8040 silly decomposeActions extract [email protected]
8041 silly decomposeActions test [email protected]
8042 silly decomposeActions preinstall [email protected]
8043 silly decomposeActions build [email protected]
8044 silly decomposeActions install [email protected]
8045 silly decomposeActions postinstall [email protected]
8046 silly decomposeActions finalize [email protected]
8047 silly decomposeActions fetch [email protected]
8048 silly decomposeActions extract [email protected]
8049 silly decomposeActions test [email protected]
8050 silly decomposeActions preinstall [email protected]
8051 silly decomposeActions build [email protected]
8052 silly decomposeActions install [email protected]
8053 silly decomposeActions postinstall [email protected]
8054 silly decomposeActions finalize [email protected]
8055 silly decomposeActions fetch [email protected]
8056 silly decomposeActions extract [email protected]
8057 silly decomposeActions test [email protected]
8058 silly decomposeActions preinstall [email protected]
8059 silly decomposeActions build [email protected]
8060 silly decomposeActions install [email protected]
8061 silly decomposeActions postinstall [email protected]
8062 silly decomposeActions finalize [email protected]
8063 silly decomposeActions fetch [email protected]
8064 silly decomposeActions extract [email protected]
8065 silly decomposeActions test [email protected]
8066 silly decomposeActions preinstall [email protected]
8067 silly decomposeActions build [email protected]
8068 silly decomposeActions install [email protected]
8069 silly decomposeActions postinstall [email protected]
8070 silly decomposeActions finalize [email protected]
8071 silly decomposeActions fetch [email protected]
8072 silly decomposeActions extract [email protected]
8073 silly decomposeActions test [email protected]
8074 silly decomposeActions preinstall [email protected]
8075 silly decomposeActions build [email protected]
8076 silly decomposeActions install [email protected]
8077 silly decomposeActions postinstall [email protected]
8078 silly decomposeActions finalize [email protected]
8079 silly decomposeActions fetch [email protected]
8080 silly decomposeActions extract [email protected]
8081 silly decomposeActions test [email protected]
8082 silly decomposeActions preinstall [email protected]
8083 silly decomposeActions build [email protected]
8084 silly decomposeActions install [email protected]
8085 silly decomposeActions postinstall [email protected]
8086 silly decomposeActions finalize [email protected]
8087 silly decomposeActions fetch [email protected]
8088 silly decomposeActions extract [email protected]
8089 silly decomposeActions test [email protected]
8090 silly decomposeActions preinstall [email protected]
8091 silly decomposeActions build [email protected]
8092 silly decomposeActions install [email protected]
8093 silly decomposeActions postinstall [email protected]
8094 silly decomposeActions finalize [email protected]
8095 silly decomposeActions fetch [email protected]
8096 silly decomposeActions extract [email protected]
8097 silly decomposeActions test [email protected]
8098 silly decomposeActions preinstall [email protected]
8099 silly decomposeActions build [email protected]
8100 silly decomposeActions install [email protected]
8101 silly decomposeActions postinstall [email protected]
8102 silly decomposeActions finalize [email protected]
8103 silly decomposeActions fetch [email protected]
8104 silly decomposeActions extract [email protected]
8105 silly decomposeActions test [email protected]
8106 silly decomposeActions preinstall [email protected]
8107 silly decomposeActions build [email protected]
8108 silly decomposeActions install [email protected]
8109 silly decomposeActions postinstall [email protected]
8110 silly decomposeActions finalize [email protected]
8111 silly decomposeActions fetch [email protected]
8112 silly decomposeActions extract [email protected]
8113 silly decomposeActions test [email protected]
8114 silly decomposeActions preinstall [email protected]
8115 silly decomposeActions build [email protected]
8116 silly decomposeActions install [email protected]
8117 silly decomposeActions postinstall [email protected]
8118 silly decomposeActions finalize [email protected]
8119 silly decomposeActions fetch [email protected]
8120 silly decomposeActions extract [email protected]
8121 silly decomposeActions test [email protected]
8122 silly decomposeActions preinstall [email protected]
8123 silly decomposeActions build [email protected]
8124 silly decomposeActions install [email protected]
8125 silly decomposeActions postinstall [email protected]
8126 silly decomposeActions finalize [email protected]
8127 silly decomposeActions fetch [email protected]
8128 silly decomposeActions extract [email protected]
8129 silly decomposeActions test [email protected]
8130 silly decomposeActions preinstall [email protected]
8131 silly decomposeActions build [email protected]
8132 silly decomposeActions install [email protected]
8133 silly decomposeActions postinstall [email protected]
8134 silly decomposeActions finalize [email protected]
8135 silly decomposeActions fetch [email protected]
8136 silly decomposeActions extract [email protected]
8137 silly decomposeActions test [email protected]
8138 silly decomposeActions preinstall [email protected]
8139 silly decomposeActions build [email protected]
8140 silly decomposeActions install [email protected]
8141 silly decomposeActions postinstall [email protected]
8142 silly decomposeActions finalize [email protected]
8143 silly decomposeActions fetch [email protected]
8144 silly decomposeActions extract [email protected]
8145 silly decomposeActions test [email protected]
8146 silly decomposeActions preinstall [email protected]
8147 silly decomposeActions build [email protected]
8148 silly decomposeActions install [email protected]
8149 silly decomposeActions postinstall [email protected]
8150 silly decomposeActions finalize [email protected]
8151 silly decomposeActions fetch [email protected]
8152 silly decomposeActions extract [email protected]
8153 silly decomposeActions test [email protected]
8154 silly decomposeActions preinstall [email protected]
8155 silly decomposeActions build [email protected]
8156 silly decomposeActions install [email protected]
8157 silly decomposeActions postinstall [email protected]
8158 silly decomposeActions finalize [email protected]
8159 silly decomposeActions fetch [email protected]
8160 silly decomposeActions extract [email protected]
8161 silly decomposeActions test [email protected]
8162 silly decomposeActions preinstall [email protected]
8163 silly decomposeActions build [email protected]
8164 silly decomposeActions install [email protected]
8165 silly decomposeActions postinstall [email protected]
8166 silly decomposeActions finalize [email protected]
8167 silly decomposeActions fetch [email protected]
8168 silly decomposeActions extract [email protected]
8169 silly decomposeActions test [email protected]
8170 silly decomposeActions preinstall [email protected]
8171 silly decomposeActions build [email protected]
8172 silly decomposeActions install [email protected]
8173 silly decomposeActions postinstall [email protected]
8174 silly decomposeActions finalize [email protected]
8175 silly decomposeActions fetch [email protected]
8176 silly decomposeActions extract [email protected]
8177 silly decomposeActions test [email protected]
8178 silly decomposeActions preinstall [email protected]
8179 silly decomposeActions build [email protected]
8180 silly decomposeActions install [email protected]
8181 silly decomposeActions postinstall [email protected]
8182 silly decomposeActions finalize [email protected]
8183 silly decomposeActions fetch [email protected]
8184 silly decomposeActions extract [email protected]
8185 silly decomposeActions test [email protected]
8186 silly decomposeActions preinstall [email protected]
8187 silly decomposeActions build [email protected]
8188 silly decomposeActions install [email protected]
8189 silly decomposeActions postinstall [email protected]
8190 silly decomposeActions finalize [email protected]
8191 silly decomposeActions fetch [email protected]
8192 silly decomposeActions extract [email protected]
8193 silly decomposeActions test [email protected]
8194 silly decomposeActions preinstall [email protected]
8195 silly decomposeActions build [email protected]
8196 silly decomposeActions install [email protected]
8197 silly decomposeActions postinstall [email protected]
8198 silly decomposeActions finalize [email protected]
8199 silly decomposeActions fetch [email protected]
8200 silly decomposeActions extract [email protected]
8201 silly decomposeActions test [email protected]
8202 silly decomposeActions preinstall [email protected]
8203 silly decomposeActions build [email protected]
8204 silly decomposeActions install [email protected]
8205 silly decomposeActions postinstall [email protected]
8206 silly decomposeActions finalize [email protected]
8207 silly decomposeActions fetch [email protected]
8208 silly decomposeActions extract [email protected]
8209 silly decomposeActions test [email protected]
8210 silly decomposeActions preinstall [email protected]
8211 silly decomposeActions build [email protected]
8212 silly decomposeActions install [email protected]
8213 silly decomposeActions postinstall [email protected]
8214 silly decomposeActions finalize [email protected]
8215 silly decomposeActions fetch [email protected]
8216 silly decomposeActions extract [email protected]
8217 silly decomposeActions test [email protected]
8218 silly decomposeActions preinstall [email protected]
8219 silly decomposeActions build [email protected]
8220 silly decomposeActions install [email protected]
8221 silly decomposeActions postinstall [email protected]
8222 silly decomposeActions finalize [email protected]
8223 silly decomposeActions fetch [email protected]
8224 silly decomposeActions extract [email protected]
8225 silly decomposeActions test [email protected]
8226 silly decomposeActions preinstall [email protected]
8227 silly decomposeActions build [email protected]
8228 silly decomposeActions install [email protected]
8229 silly decomposeActions postinstall [email protected]
8230 silly decomposeActions finalize [email protected]
8231 silly decomposeActions fetch [email protected]
8232 silly decomposeActions extract [email protected]
8233 silly decomposeActions test [email protected]
8234 silly decomposeActions preinstall [email protected]
8235 silly decomposeActions build [email protected]
8236 silly decomposeActions install [email protected]
8237 silly decomposeActions postinstall [email protected]
8238 silly decomposeActions finalize [email protected]
8239 silly decomposeActions fetch [email protected]
8240 silly decomposeActions extract [email protected]
8241 silly decomposeActions test [email protected]
8242 silly decomposeActions preinstall [email protected]
8243 silly decomposeActions build [email protected]
8244 silly decomposeActions install [email protected]
8245 silly decomposeActions postinstall [email protected]
8246 silly decomposeActions finalize [email protected]
8247 silly decomposeActions fetch [email protected]
8248 silly decomposeActions extract [email protected]
8249 silly decomposeActions test [email protected]
8250 silly decomposeActions preinstall [email protected]
8251 silly decomposeActions build [email protected]
8252 silly decomposeActions install [email protected]
8253 silly decomposeActions postinstall [email protected]
8254 silly decomposeActions finalize [email protected]
8255 silly decomposeActions fetch [email protected]
8256 silly decomposeActions extract [email protected]
8257 silly decomposeActions test [email protected]
8258 silly decomposeActions preinstall [email protected]
8259 silly decomposeActions build [email protected]
8260 silly decomposeActions install [email protected]
8261 silly decomposeActions postinstall [email protected]
8262 silly decomposeActions finalize [email protected]
8263 silly decomposeActions fetch [email protected]
8264 silly decomposeActions extract [email protected]
8265 silly decomposeActions test [email protected]
8266 silly decomposeActions preinstall [email protected]
8267 silly decomposeActions build [email protected]
8268 silly decomposeActions install [email protected]
8269 silly decomposeActions postinstall [email protected]
8270 silly decomposeActions finalize [email protected]
8271 silly decomposeActions fetch [email protected]
8272 silly decomposeActions extract [email protected]
8273 silly decomposeActions test [email protected]
8274 silly decomposeActions preinstall [email protected]
8275 silly decomposeActions build [email protected]
8276 silly decomposeActions install [email protected]
8277 silly decomposeActions postinstall [email protected]
8278 silly decomposeActions finalize [email protected]
8279 silly decomposeActions fetch [email protected]
8280 silly decomposeActions extract [email protected]
8281 silly decomposeActions test [email protected]
8282 silly decomposeActions preinstall [email protected]
8283 silly decomposeActions build [email protected]
8284 silly decomposeActions install [email protected]
8285 silly decomposeActions postinstall [email protected]
8286 silly decomposeActions finalize [email protected]
8287 silly decomposeActions fetch [email protected]
8288 silly decomposeActions extract [email protected]
8289 silly decomposeActions test [email protected]
8290 silly decomposeActions preinstall [email protected]
8291 silly decomposeActions build [email protected]
8292 silly decomposeActions install [email protected]
8293 silly decomposeActions postinstall [email protected]
8294 silly decomposeActions finalize [email protected]
8295 silly decomposeActions fetch [email protected]
8296 silly decomposeActions extract [email protected]
8297 silly decomposeActions test [email protected]
8298 silly decomposeActions preinstall [email protected]
8299 silly decomposeActions build [email protected]
8300 silly decomposeActions install [email protected]
8301 silly decomposeActions postinstall [email protected]
8302 silly decomposeActions finalize [email protected]
8303 silly decomposeActions fetch [email protected]
8304 silly decomposeActions extract [email protected]
8305 silly decomposeActions test [email protected]
8306 silly decomposeActions preinstall [email protected]
8307 silly decomposeActions build [email protected]
8308 silly decomposeActions install [email protected]
8309 silly decomposeActions postinstall [email protected]
8310 silly decomposeActions finalize [email protected]
8311 silly decomposeActions fetch [email protected]
8312 silly decomposeActions extract [email protected]
8313 silly decomposeActions test [email protected]
8314 silly decomposeActions preinstall [email protected]
8315 silly decomposeActions build [email protected]
8316 silly decomposeActions install [email protected]
8317 silly decomposeActions postinstall [email protected]
8318 silly decomposeActions finalize [email protected]
8319 silly decomposeActions fetch [email protected]
8320 silly decomposeActions extract [email protected]
8321 silly decomposeActions test [email protected]
8322 silly decomposeActions preinstall [email protected]
8323 silly decomposeActions build [email protected]
8324 silly decomposeActions install [email protected]
8325 silly decomposeActions postinstall [email protected]
8326 silly decomposeActions finalize [email protected]
8327 silly decomposeActions fetch [email protected]
8328 silly decomposeActions extract [email protected]
8329 silly decomposeActions test [email protected]
8330 silly decomposeActions preinstall [email protected]
8331 silly decomposeActions build [email protected]
8332 silly decomposeActions install [email protected]
8333 silly decomposeActions postinstall [email protected]
8334 silly decomposeActions finalize [email protected]
8335 silly decomposeActions fetch [email protected]
8336 silly decomposeActions extract [email protected]
8337 silly decomposeActions test [email protected]
8338 silly decomposeActions preinstall [email protected]
8339 silly decomposeActions build [email protected]
8340 silly decomposeActions install [email protected]
8341 silly decomposeActions postinstall [email protected]
8342 silly decomposeActions finalize [email protected]
8343 silly executeActions Starting
8344 silly install executeActions
8345 silly doSerial global-install 0
8346 silly doParallel fetch 186
8347 verbose lock using /home/callum/.npm/_locks/staging-3a08f0df5026584d.lock for /usr/local/lib/node_modules/.staging
8348 silly doParallel extract 186
8349 silly extract [email protected]
8350 silly extract [email protected]
8351 silly extract [email protected]
8352 silly extract [email protected]
8353 silly extract [email protected]
8354 silly extract [email protected]
8355 silly extract [email protected]
8356 silly extract [email protected]
8357 silly extract [email protected]
8358 silly extract [email protected]
8359 silly extract [email protected]
8360 silly extract [email protected]
8361 silly extract [email protected]
8362 silly extract [email protected]
8363 silly extract [email protected]
8364 silly extract [email protected]
8365 silly extract [email protected]
8366 silly extract [email protected]
8367 silly extract [email protected]
8368 silly extract [email protected]
8369 silly extract [email protected]
8370 silly extract [email protected]
8371 silly extract [email protected]
8372 silly extract [email protected]
8373 silly extract [email protected]
8374 silly extract [email protected]
8375 silly extract [email protected]
8376 silly extract [email protected]
8377 silly extract [email protected]
8378 silly extract [email protected]
8379 silly extract [email protected]
8380 silly extract [email protected]
8381 silly extract [email protected]
8382 silly extract [email protected]
8383 silly extract [email protected]
8384 silly extract [email protected]
8385 silly extract [email protected]
8386 silly extract [email protected]
8387 silly extract [email protected]
8388 silly extract [email protected]
8389 silly extract [email protected]
8390 silly extract [email protected]
8391 silly extract [email protected]
8392 silly extract [email protected]
8393 silly extract [email protected]
8394 silly extract [email protected]
8395 silly extract [email protected]
8396 silly extract [email protected]
8397 silly extract [email protected]
8398 silly extract [email protected]
8399 silly extract [email protected]
8400 silly extract [email protected]
8401 silly extract [email protected]
8402 silly extract [email protected]
8403 silly extract [email protected]
8404 silly extract [email protected]
8405 silly extract [email protected]
8406 silly extract [email protected]
8407 silly extract [email protected]
8408 silly extract [email protected]
8409 silly extract [email protected]
8410 silly extract [email protected]
8411 silly extract [email protected]
8412 silly extract [email protected]
8413 silly extract [email protected]
8414 silly extract [email protected]
8415 silly extract [email protected]
8416 silly extract [email protected]
8417 silly extract [email protected]
8418 silly extract [email protected]
8419 silly extract [email protected]
8420 silly extract [email protected]
8421 silly extract [email protected]
8422 silly extract [email protected]
8423 silly extract [email protected]
8424 silly extract [email protected]
8425 silly extract [email protected]
8426 silly extract [email protected]
8427 silly extract [email protected]
8428 silly extract [email protected]
8429 silly extract [email protected]
8430 silly extract [email protected]
8431 silly extract [email protected]
8432 silly extract [email protected]
8433 silly extract [email protected]
8434 silly extract [email protected]
8435 silly extract [email protected]
8436 silly extract [email protected]
8437 silly extract [email protected]
8438 silly extract [email protected]
8439 silly extract [email protected]
8440 silly extract [email protected]
8441 silly extract [email protected]
8442 silly extract [email protected]
8443 silly extract [email protected]
8444 silly extract [email protected]
8445 silly extract [email protected]
8446 silly extract [email protected]
8447 silly extract [email protected]
8448 silly extract [email protected]
8449 silly extract [email protected]
8450 silly extract [email protected]
8451 silly extract [email protected]
8452 silly extract [email protected]
8453 silly extract [email protected]
8454 silly extract [email protected]
8455 silly extract [email protected]
8456 silly extract [email protected]
8457 silly extract [email protected]
8458 silly extract [email protected]
8459 silly extract [email protected]
8460 silly extract [email protected]
8461 silly extract [email protected]
8462 silly extract [email protected]
8463 silly extract [email protected]
8464 silly extract [email protected]
8465 silly extract [email protected]
8466 silly extract [email protected]
8467 silly extract [email protected]
8468 silly extract [email protected]
8469 silly extract [email protected]
8470 silly extract [email protected]
8471 silly extract [email protected]
8472 silly extract [email protected]
8473 silly extract [email protected]
8474 silly extract [email protected]
8475 silly extract [email protected]
8476 silly extract [email protected]
8477 silly extract [email protected]
8478 silly extract [email protected]
8479 silly extract [email protected]
8480 silly extract [email protected]
8481 silly extract [email protected]
8482 silly extract [email protected]
8483 silly extract [email protected]
8484 silly extract [email protected]
8485 silly extract [email protected]
8486 silly extract [email protected]
8487 silly extract [email protected]
8488 silly extract [email protected]
8489 silly extract [email protected]
8490 silly extract [email protected]
8491 silly extract [email protected]
8492 silly extract [email protected]
8493 silly extract [email protected]
8494 silly extract [email protected]
8495 silly extract [email protected]
8496 silly extract [email protected]
8497 silly extract [email protected]
8498 silly extract [email protected]
8499 silly extract [email protected]
8500 silly extract [email protected]
8501 silly extract [email protected]
8502 silly extract [email protected]
8503 silly extract [email protected]
8504 silly extract [email protected]
8505 silly extract [email protected]
8506 silly extract [email protected]
8507 silly extract [email protected]
8508 silly extract [email protected]
8509 silly extract [email protected]
8510 silly extract [email protected]
8511 silly extract [email protected]
8512 silly extract [email protected]
8513 silly extract [email protected]
8514 silly extract [email protected]
8515 silly extract [email protected]
8516 silly extract [email protected]
8517 silly extract [email protected]
8518 silly extract [email protected]
8519 silly extract [email protected]
8520 silly extract [email protected]
8521 silly extract [email protected]
8522 silly extract [email protected]
8523 silly extract [email protected]
8524 silly extract [email protected]
8525 silly extract [email protected]
8526 silly extract [email protected]
8527 silly extract [email protected]
8528 silly extract [email protected]
8529 silly extract [email protected]
8530 silly extract [email protected]
8531 silly extract [email protected]
8532 silly extract [email protected]
8533 silly extract [email protected]
8534 silly extract [email protected]
8535 verbose unbuild lib/node_modules/.staging/abbrev-2c9ab62f
8536 verbose unbuild lib/node_modules/.staging/ansi-regex-3c984b5a
8537 verbose unbuild lib/node_modules/.staging/aproba-803227e9
8538 verbose unbuild lib/node_modules/.staging/array-find-index-bb3a2c48
8539 verbose unbuild lib/node_modules/.staging/ansi-styles-7929ede3
8540 verbose unbuild lib/node_modules/.staging/assert-plus-144372d3
8541 verbose unbuild lib/node_modules/.staging/asn1-49d7b342
8542 verbose unbuild lib/node_modules/.staging/async-foreach-3d25a1d3
8543 verbose unbuild lib/node_modules/.staging/asynckit-c37f8261
8544 verbose unbuild lib/node_modules/.staging/aws-sign2-5f5a8e06
8545 verbose unbuild lib/node_modules/.staging/balanced-match-91d77cd4
8546 verbose unbuild lib/node_modules/.staging/builtin-modules-9953e5b8
8547 verbose unbuild lib/node_modules/.staging/buffer-shims-bcc3dc04
8548 verbose unbuild lib/node_modules/.staging/camelcase-7eae5e8c
8549 verbose unbuild lib/node_modules/.staging/caseless-a2ae9c36
8550 verbose unbuild lib/node_modules/.staging/code-point-at-cfcd502e
8551 verbose unbuild lib/node_modules/.staging/concat-map-db4549ed
8552 verbose unbuild lib/node_modules/.staging/brace-expansion-cea1b839
8553 verbose unbuild lib/node_modules/.staging/aws4-3534a13f
8554 verbose unbuild lib/node_modules/.staging/console-control-strings-da6b80e0
8555 verbose unbuild lib/node_modules/.staging/currently-unhandled-b490e510
8556 verbose unbuild lib/node_modules/.staging/core-util-is-bf296c2d
8557 verbose unbuild lib/node_modules/.staging/assert-plus-f5150055
8558 verbose unbuild lib/node_modules/.staging/dashdash-74b5f327
8559 verbose unbuild lib/node_modules/.staging/delayed-stream-af939e3f
8560 verbose unbuild lib/node_modules/.staging/combined-stream-bb34e637
8561 verbose unbuild lib/node_modules/.staging/delegates-b134b505
8562 verbose unbuild lib/node_modules/.staging/decamelize-6e115f15
8563 verbose unbuild lib/node_modules/.staging/es6-symbol-538f3cc8
8564 verbose unbuild lib/node_modules/.staging/d-dc41bcf7
8565 verbose unbuild lib/node_modules/.staging/es5-ext-61b30bb0
8566 verbose unbuild lib/node_modules/.staging/escape-string-regexp-abb086ec
8567 verbose unbuild lib/node_modules/.staging/es6-iterator-06f715c6
8568 verbose unbuild lib/node_modules/.staging/extend-f47c46e2
8569 verbose unbuild lib/node_modules/.staging/forever-agent-70f6e3b9
8570 verbose unbuild lib/node_modules/.staging/extsprintf-504135fb
8571 verbose unbuild lib/node_modules/.staging/fs.realpath-da51c8ec
8572 verbose unbuild lib/node_modules/.staging/get-caller-file-c78c2d0f
8573 verbose unbuild lib/node_modules/.staging/get-stdin-f774aa56
8574 verbose unbuild lib/node_modules/.staging/generate-function-06f3a94f
8575 verbose unbuild lib/node_modules/.staging/assert-plus-f1565856
8576 verbose unbuild lib/node_modules/.staging/getpass-01ebff6c
8577 verbose unbuild lib/node_modules/.staging/graceful-fs-9be7dfd1
8578 verbose unbuild lib/node_modules/.staging/graceful-readlink-c505bba4
8579 verbose unbuild lib/node_modules/.staging/commander-e4ef6112
8580 verbose unbuild lib/node_modules/.staging/has-color-4c0a7314
8581 verbose unbuild lib/node_modules/.staging/has-ansi-599457fb
8582 verbose unbuild lib/node_modules/.staging/boom-61027d96
8583 verbose unbuild lib/node_modules/.staging/hoek-2c30a5b4
8584 verbose unbuild lib/node_modules/.staging/cryptiles-95b1d52e
8585 verbose unbuild lib/node_modules/.staging/has-unicode-cc1ccba7
8586 verbose unbuild lib/node_modules/.staging/hosted-git-info-eee584be
8587 verbose unbuild lib/node_modules/.staging/inherits-dc03e7ec
8588 verbose unbuild lib/node_modules/.staging/block-stream-7cad014c
8589 verbose unbuild lib/node_modules/.staging/invert-kv-d702f72c
8590 verbose unbuild lib/node_modules/.staging/error-ex-e3d1ee96
8591 verbose unbuild lib/node_modules/.staging/is-arrayish-c8bec796
8592 verbose unbuild lib/node_modules/.staging/is-builtin-module-9b87ac76
8593 verbose unbuild lib/node_modules/.staging/generate-object-property-dfb21336
8594 verbose unbuild lib/node_modules/.staging/is-property-cfce7336
8595 verbose unbuild lib/node_modules/.staging/is-typedarray-ce658dfd
8596 verbose unbuild lib/node_modules/.staging/isexe-ede7756f
8597 verbose unbuild lib/node_modules/.staging/jsbn-47663171
8598 verbose unbuild lib/node_modules/.staging/jodid25519-e6a9a658
8599 verbose unbuild lib/node_modules/.staging/isstream-298fa0e9
8600 verbose unbuild lib/node_modules/.staging/ecc-jsbn-bf851eff
8601 verbose unbuild lib/node_modules/.staging/isarray-77223db1
8602 verbose unbuild lib/node_modules/.staging/json-stringify-safe-a24426c0
8603 verbose unbuild lib/node_modules/.staging/is-utf8-20a82765
8604 verbose unbuild lib/node_modules/.staging/json-schema-3997576f
8605 verbose unbuild lib/node_modules/.staging/lodash.assign-2cc22394
8606 verbose unbuild lib/node_modules/.staging/jsonpointer-b0ea4d86
8607 verbose unbuild lib/node_modules/.staging/lodash-8c042143
8608 verbose unbuild lib/node_modules/.staging/lcid-553aa3dc
8609 verbose unbuild lib/node_modules/.staging/lodash.clonedeep-4a61521f
8610 verbose unbuild lib/node_modules/.staging/mime-db-469ac054
8611 verbose unbuild lib/node_modules/.staging/map-obj-2ab0547b
8612 verbose unbuild lib/node_modules/.staging/minimatch-0cd9a629
8613 verbose unbuild lib/node_modules/.staging/camelcase-keys-caac7169
8614 verbose unbuild lib/node_modules/.staging/minimist-e11c8e7b
8615 verbose unbuild lib/node_modules/.staging/mime-types-722349b0
8616 verbose unbuild lib/node_modules/.staging/minimist-3a5584fa
8617 verbose unbuild lib/node_modules/.staging/debug-22113bc6
8618 verbose unbuild lib/node_modules/.staging/array-index-354cc4bd
8619 verbose unbuild lib/node_modules/.staging/nan-2780c2ab
8620 verbose unbuild lib/node_modules/.staging/number-is-nan-ee9f9d3d
8621 verbose unbuild lib/node_modules/.staging/is-finite-2079f9c2
8622 verbose unbuild lib/node_modules/.staging/ms-156d0e21
8623 verbose unbuild lib/node_modules/.staging/object-assign-d4c70042
8624 verbose unbuild lib/node_modules/.staging/os-homedir-8dea656a
8625 verbose unbuild lib/node_modules/.staging/oauth-sign-0974744e
8626 verbose unbuild lib/node_modules/.staging/os-tmpdir-cf08b56b
8627 verbose unbuild lib/node_modules/.staging/os-locale-b894dbf6
8628 verbose unbuild lib/node_modules/.staging/osenv-674ed6c4
8629 verbose unbuild lib/node_modules/.staging/parse-json-5f980647
8630 verbose unbuild lib/node_modules/.staging/path-array-18450e3d
8631 verbose unbuild lib/node_modules/.staging/path-is-absolute-1e25cdc4
8632 verbose unbuild lib/node_modules/.staging/form-data-8f31842b
8633 verbose unbuild lib/node_modules/.staging/pify-da20c093
8634 verbose unbuild lib/node_modules/.staging/pinkie-5399651d
8635 verbose unbuild lib/node_modules/.staging/pinkie-promise-44d92eb3
8636 verbose unbuild lib/node_modules/.staging/path-exists-db370aea
8637 verbose unbuild lib/node_modules/.staging/path-type-024051cd
8638 verbose unbuild lib/node_modules/.staging/process-nextick-args-3f864c02
8639 verbose unbuild lib/node_modules/.staging/pseudomap-c028e92e
8640 verbose unbuild lib/node_modules/.staging/punycode-2681a18a
8641 verbose unbuild lib/node_modules/.staging/find-up-27a92426
8642 verbose unbuild lib/node_modules/.staging/qs-9f6b0e7a
8643 verbose unbuild lib/node_modules/.staging/repeating-58fec241
8644 verbose unbuild lib/node_modules/.staging/require-directory-94122af9
8645 verbose unbuild lib/node_modules/.staging/require-main-filename-284f5fd8
8646 verbose unbuild lib/node_modules/.staging/is-fullwidth-code-point-db1709e1
8647 verbose unbuild lib/node_modules/.staging/signal-exit-01155dc2
8648 verbose unbuild lib/node_modules/.staging/indent-string-6ec049e0
8649 verbose unbuild lib/node_modules/.staging/set-blocking-f4c51da9
8650 verbose unbuild lib/node_modules/.staging/loud-rejection-b9614ed7
8651 verbose unbuild lib/node_modules/.staging/hawk-ce3605c7
8652 verbose unbuild lib/node_modules/.staging/spdx-expression-parse-4cd5685a
8653 verbose unbuild lib/node_modules/.staging/sntp-400091bc
8654 verbose unbuild lib/node_modules/.staging/spdx-correct-fec8c53f
8655 verbose unbuild lib/node_modules/.staging/string_decoder-40c319cb
8656 verbose unbuild lib/node_modules/.staging/assert-plus-4cb89450
8657 verbose unbuild lib/node_modules/.staging/stringstream-4b0e6127
8658 verbose unbuild lib/node_modules/.staging/strip-ansi-f163d45b
8659 verbose unbuild lib/node_modules/.staging/spdx-license-ids-1fee434f
8660 verbose unbuild lib/node_modules/.staging/string-width-67ee5ff9
8661 verbose unbuild lib/node_modules/.staging/strip-bom-80af7ef1
8662 verbose unbuild lib/node_modules/.staging/chalk-097d5032
8663 verbose unbuild lib/node_modules/.staging/tough-cookie-39e0399a
8664 verbose unbuild lib/node_modules/.staging/redent-92c5d699
8665 verbose unbuild lib/node_modules/.staging/load-json-file-3a29d2cb
8666 verbose unbuild lib/node_modules/.staging/supports-color-e96294dc
8667 verbose unbuild lib/node_modules/.staging/tunnel-agent-908e238e
8668 verbose unbuild lib/node_modules/.staging/trim-newlines-d821b1b8
8669 verbose unbuild lib/node_modules/.staging/bcrypt-pbkdf-1c4ced42
8670 verbose unbuild lib/node_modules/.staging/tweetnacl-dc471a1a
8671 verbose unbuild lib/node_modules/.staging/readable-stream-a614b29b
8672 verbose unbuild lib/node_modules/.staging/are-we-there-yet-8f43d911
8673 verbose unbuild lib/node_modules/.staging/validate-npm-package-license-0f37ed85
8674 verbose unbuild lib/node_modules/.staging/normalize-package-data-8831b4b6
8675 verbose unbuild lib/node_modules/.staging/meow-559a02ad
8676 verbose unbuild lib/node_modules/.staging/jsprim-7ed5d17f
8677 verbose unbuild lib/node_modules/.staging/verror-b56a036e
8678 verbose unbuild lib/node_modules/.staging/which-module-cd714ce4
8679 verbose unbuild lib/node_modules/.staging/npmlog-cc4ff342
8680 verbose unbuild lib/node_modules/.staging/util-deprecate-88675793
8681 verbose unbuild lib/node_modules/.staging/wide-align-909ad48f
8682 verbose unbuild lib/node_modules/.staging/gauge-864b3a73
8683 verbose unbuild lib/node_modules/.staging/http-signature-0de4bfdc
8684 verbose unbuild lib/node_modules/.staging/npmlog-7ecef20e
8685 verbose unbuild lib/node_modules/.staging/wrap-ansi-4f0b4a4d
8686 verbose unbuild lib/node_modules/.staging/cliui-c614948c
8687 verbose unbuild lib/node_modules/.staging/wrappy-6ac75ccc
8688 verbose unbuild lib/node_modules/.staging/once-7871a841
8689 verbose unbuild lib/node_modules/.staging/inflight-e268fbc6
8690 verbose unbuild lib/node_modules/.staging/glob-318629c3
8691 verbose unbuild lib/node_modules/.staging/fstream-bcd52fe1
8692 verbose unbuild lib/node_modules/.staging/tar-a70b29d2
8693 verbose unbuild lib/node_modules/.staging/gaze-caa55533
8694 verbose unbuild lib/node_modules/.staging/globule-98ddd565
8695 verbose unbuild lib/node_modules/.staging/read-pkg-up-105a89bd
8696 verbose unbuild lib/node_modules/.staging/is-my-json-valid-a2fa23ef
8697 verbose unbuild lib/node_modules/.staging/read-pkg-0e809304
8698 verbose unbuild lib/node_modules/.staging/y18n-092d642a
8699 verbose unbuild lib/node_modules/.staging/yallist-21ec3029
8700 verbose unbuild lib/node_modules/.staging/camelcase-23e0a143
8701 verbose unbuild lib/node_modules/.staging/cross-spawn-b7143bd1
8702 verbose unbuild lib/node_modules/.staging/request-3ffb0e89
8703 verbose unbuild lib/node_modules/.staging/lru-cache-6247f0a2
8704 verbose unbuild lib/node_modules/.staging/xtend-a69cbb41
8705 verbose unbuild lib/node_modules/.staging/yargs-00834d1f
8706 verbose unbuild lib/node_modules/.staging/yargs-parser-59eaba0c
8707 verbose unbuild lib/node_modules/.staging/in-publish-740d832c
8708 verbose unbuild lib/node_modules/.staging/mkdirp-887aeaf4
8709 verbose unbuild lib/node_modules/.staging/node-uuid-901a9677
8710 verbose unbuild lib/node_modules/.staging/nopt-fc644ef3
8711 verbose unbuild lib/node_modules/.staging/semver-2e40d341
8712 verbose unbuild lib/node_modules/.staging/strip-indent-ab8596fe
8713 verbose unbuild lib/node_modules/.staging/sshpk-0d8cc667
8714 verbose unbuild lib/node_modules/.staging/which-b98c91ff
8715 verbose unbuild lib/node_modules/.staging/window-size-b59b4c29
8716 verbose unbuild lib/node_modules/.staging/rimraf-5f3dcc92
8717 verbose unbuild lib/node_modules/.staging/har-validator-2f59dba2
8718 verbose unbuild lib/node_modules/.staging/node-gyp-ea9fe2ca
8719 verbose unbuild lib/node_modules/.staging/sass-graph-d0df8d17
8720 silly gentlyRm /usr/local/lib/node_modules/.staging/abbrev-2c9ab62f is being purged from base /usr/local
8721 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/abbrev-2c9ab62f
8722 silly gentlyRm /usr/local/lib/node_modules/.staging/ansi-regex-3c984b5a is being purged from base /usr/local
8723 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/ansi-regex-3c984b5a
8724 silly gentlyRm /usr/local/lib/node_modules/.staging/aproba-803227e9 is being purged from base /usr/local
8725 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/aproba-803227e9
8726 verbose unbuild lib/node_modules/.staging/node-sass-172d7a5b
8727 silly gentlyRm /usr/local/lib/node_modules/.staging/array-find-index-bb3a2c48 is being purged from base /usr/local
8728 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/array-find-index-bb3a2c48
8729 silly gentlyRm /usr/local/lib/node_modules/.staging/ansi-styles-7929ede3 is being purged from base /usr/local
8730 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/ansi-styles-7929ede3
8731 silly gentlyRm /usr/local/lib/node_modules/.staging/assert-plus-144372d3 is being purged from base /usr/local
8732 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/assert-plus-144372d3
8733 silly gentlyRm /usr/local/lib/node_modules/.staging/asn1-49d7b342 is being purged from base /usr/local
8734 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/asn1-49d7b342
8735 silly gentlyRm /usr/local/lib/node_modules/.staging/async-foreach-3d25a1d3 is being purged from base /usr/local
8736 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/async-foreach-3d25a1d3
8737 silly gentlyRm /usr/local/lib/node_modules/.staging/asynckit-c37f8261 is being purged from base /usr/local
8738 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/asynckit-c37f8261
8739 silly gentlyRm /usr/local/lib/node_modules/.staging/aws-sign2-5f5a8e06 is being purged from base /usr/local
8740 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/aws-sign2-5f5a8e06
8741 silly gentlyRm /usr/local/lib/node_modules/.staging/balanced-match-91d77cd4 is being purged from base /usr/local
8742 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/balanced-match-91d77cd4
8743 silly gentlyRm /usr/local/lib/node_modules/.staging/builtin-modules-9953e5b8 is being purged from base /usr/local
8744 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/builtin-modules-9953e5b8
8745 silly gentlyRm /usr/local/lib/node_modules/.staging/buffer-shims-bcc3dc04 is being purged from base /usr/local
8746 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/buffer-shims-bcc3dc04
8747 silly gentlyRm /usr/local/lib/node_modules/.staging/camelcase-7eae5e8c is being purged from base /usr/local
8748 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/camelcase-7eae5e8c
8749 silly gentlyRm /usr/local/lib/node_modules/.staging/caseless-a2ae9c36 is being purged from base /usr/local
8750 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/caseless-a2ae9c36
8751 silly gentlyRm /usr/local/lib/node_modules/.staging/code-point-at-cfcd502e is being purged from base /usr/local
8752 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/code-point-at-cfcd502e
8753 silly gentlyRm /usr/local/lib/node_modules/.staging/concat-map-db4549ed is being purged from base /usr/local
8754 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/concat-map-db4549ed
8755 silly gentlyRm /usr/local/lib/node_modules/.staging/brace-expansion-cea1b839 is being purged from base /usr/local
8756 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/brace-expansion-cea1b839
8757 silly gentlyRm /usr/local/lib/node_modules/.staging/aws4-3534a13f is being purged from base /usr/local
8758 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/aws4-3534a13f
8759 silly gentlyRm /usr/local/lib/node_modules/.staging/console-control-strings-da6b80e0 is being purged from base /usr/local
8760 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/console-control-strings-da6b80e0
8761 silly gentlyRm /usr/local/lib/node_modules/.staging/currently-unhandled-b490e510 is being purged from base /usr/local
8762 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/currently-unhandled-b490e510
8763 silly gentlyRm /usr/local/lib/node_modules/.staging/core-util-is-bf296c2d is being purged from base /usr/local
8764 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/core-util-is-bf296c2d
8765 silly gentlyRm /usr/local/lib/node_modules/.staging/assert-plus-f5150055 is being purged from base /usr/local
8766 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/assert-plus-f5150055
8767 silly gentlyRm /usr/local/lib/node_modules/.staging/dashdash-74b5f327 is being purged from base /usr/local
8768 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/dashdash-74b5f327
8769 silly gentlyRm /usr/local/lib/node_modules/.staging/delayed-stream-af939e3f is being purged from base /usr/local
8770 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/delayed-stream-af939e3f
8771 silly gentlyRm /usr/local/lib/node_modules/.staging/combined-stream-bb34e637 is being purged from base /usr/local
8772 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/combined-stream-bb34e637
8773 silly gentlyRm /usr/local/lib/node_modules/.staging/delegates-b134b505 is being purged from base /usr/local
8774 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/delegates-b134b505
8775 silly gentlyRm /usr/local/lib/node_modules/.staging/decamelize-6e115f15 is being purged from base /usr/local
8776 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/decamelize-6e115f15
8777 silly gentlyRm /usr/local/lib/node_modules/.staging/es6-symbol-538f3cc8 is being purged from base /usr/local
8778 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/es6-symbol-538f3cc8
8779 silly gentlyRm /usr/local/lib/node_modules/.staging/d-dc41bcf7 is being purged from base /usr/local
8780 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/d-dc41bcf7
8781 silly gentlyRm /usr/local/lib/node_modules/.staging/es5-ext-61b30bb0 is being purged from base /usr/local
8782 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/es5-ext-61b30bb0
8783 silly gentlyRm /usr/local/lib/node_modules/.staging/escape-string-regexp-abb086ec is being purged from base /usr/local
8784 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/escape-string-regexp-abb086ec
8785 silly gentlyRm /usr/local/lib/node_modules/.staging/es6-iterator-06f715c6 is being purged from base /usr/local
8786 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/es6-iterator-06f715c6
8787 silly gentlyRm /usr/local/lib/node_modules/.staging/extend-f47c46e2 is being purged from base /usr/local
8788 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/extend-f47c46e2
8789 silly gentlyRm /usr/local/lib/node_modules/.staging/forever-agent-70f6e3b9 is being purged from base /usr/local
8790 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/forever-agent-70f6e3b9
8791 silly gentlyRm /usr/local/lib/node_modules/.staging/extsprintf-504135fb is being purged from base /usr/local
8792 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/extsprintf-504135fb
8793 silly gentlyRm /usr/local/lib/node_modules/.staging/fs.realpath-da51c8ec is being purged from base /usr/local
8794 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/fs.realpath-da51c8ec
8795 silly gentlyRm /usr/local/lib/node_modules/.staging/get-caller-file-c78c2d0f is being purged from base /usr/local
8796 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/get-caller-file-c78c2d0f
8797 silly gentlyRm /usr/local/lib/node_modules/.staging/get-stdin-f774aa56 is being purged from base /usr/local
8798 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/get-stdin-f774aa56
8799 silly gentlyRm /usr/local/lib/node_modules/.staging/generate-function-06f3a94f is being purged from base /usr/local
8800 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/generate-function-06f3a94f
8801 silly gentlyRm /usr/local/lib/node_modules/.staging/assert-plus-f1565856 is being purged from base /usr/local
8802 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/assert-plus-f1565856
8803 silly gentlyRm /usr/local/lib/node_modules/.staging/getpass-01ebff6c is being purged from base /usr/local
8804 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/getpass-01ebff6c
8805 silly gentlyRm /usr/local/lib/node_modules/.staging/graceful-fs-9be7dfd1 is being purged from base /usr/local
8806 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/graceful-fs-9be7dfd1
8807 silly gentlyRm /usr/local/lib/node_modules/.staging/graceful-readlink-c505bba4 is being purged from base /usr/local
8808 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/graceful-readlink-c505bba4
8809 silly gentlyRm /usr/local/lib/node_modules/.staging/commander-e4ef6112 is being purged from base /usr/local
8810 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/commander-e4ef6112
8811 silly gentlyRm /usr/local/lib/node_modules/.staging/has-color-4c0a7314 is being purged from base /usr/local
8812 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/has-color-4c0a7314
8813 silly gentlyRm /usr/local/lib/node_modules/.staging/has-ansi-599457fb is being purged from base /usr/local
8814 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/has-ansi-599457fb
8815 silly gentlyRm /usr/local/lib/node_modules/.staging/boom-61027d96 is being purged from base /usr/local
8816 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/boom-61027d96
8817 silly gentlyRm /usr/local/lib/node_modules/.staging/hoek-2c30a5b4 is being purged from base /usr/local
8818 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/hoek-2c30a5b4
8819 silly gentlyRm /usr/local/lib/node_modules/.staging/cryptiles-95b1d52e is being purged from base /usr/local
8820 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/cryptiles-95b1d52e
8821 silly gentlyRm /usr/local/lib/node_modules/.staging/has-unicode-cc1ccba7 is being purged from base /usr/local
8822 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/has-unicode-cc1ccba7
8823 silly gentlyRm /usr/local/lib/node_modules/.staging/hosted-git-info-eee584be is being purged from base /usr/local
8824 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/hosted-git-info-eee584be
8825 silly gentlyRm /usr/local/lib/node_modules/.staging/inherits-dc03e7ec is being purged from base /usr/local
8826 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/inherits-dc03e7ec
8827 silly gentlyRm /usr/local/lib/node_modules/.staging/block-stream-7cad014c is being purged from base /usr/local
8828 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/block-stream-7cad014c
8829 silly gentlyRm /usr/local/lib/node_modules/.staging/invert-kv-d702f72c is being purged from base /usr/local
8830 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/invert-kv-d702f72c
8831 silly gentlyRm /usr/local/lib/node_modules/.staging/error-ex-e3d1ee96 is being purged from base /usr/local
8832 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/error-ex-e3d1ee96
8833 silly gentlyRm /usr/local/lib/node_modules/.staging/is-arrayish-c8bec796 is being purged from base /usr/local
8834 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/is-arrayish-c8bec796
8835 silly gentlyRm /usr/local/lib/node_modules/.staging/is-builtin-module-9b87ac76 is being purged from base /usr/local
8836 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/is-builtin-module-9b87ac76
8837 silly gentlyRm /usr/local/lib/node_modules/.staging/generate-object-property-dfb21336 is being purged from base /usr/local
8838 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/generate-object-property-dfb21336
8839 silly gentlyRm /usr/local/lib/node_modules/.staging/is-property-cfce7336 is being purged from base /usr/local
8840 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/is-property-cfce7336
8841 silly gentlyRm /usr/local/lib/node_modules/.staging/is-typedarray-ce658dfd is being purged from base /usr/local
8842 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/is-typedarray-ce658dfd
8843 silly gentlyRm /usr/local/lib/node_modules/.staging/isexe-ede7756f is being purged from base /usr/local
8844 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/isexe-ede7756f
8845 silly gentlyRm /usr/local/lib/node_modules/.staging/jsbn-47663171 is being purged from base /usr/local
8846 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/jsbn-47663171
8847 silly gentlyRm /usr/local/lib/node_modules/.staging/jodid25519-e6a9a658 is being purged from base /usr/local
8848 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/jodid25519-e6a9a658
8849 silly gentlyRm /usr/local/lib/node_modules/.staging/isstream-298fa0e9 is being purged from base /usr/local
8850 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/isstream-298fa0e9
8851 silly gentlyRm /usr/local/lib/node_modules/.staging/ecc-jsbn-bf851eff is being purged from base /usr/local
8852 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/ecc-jsbn-bf851eff
8853 silly gentlyRm /usr/local/lib/node_modules/.staging/isarray-77223db1 is being purged from base /usr/local
8854 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/isarray-77223db1
8855 silly gentlyRm /usr/local/lib/node_modules/.staging/json-stringify-safe-a24426c0 is being purged from base /usr/local
8856 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/json-stringify-safe-a24426c0
8857 silly gentlyRm /usr/local/lib/node_modules/.staging/is-utf8-20a82765 is being purged from base /usr/local
8858 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/is-utf8-20a82765
8859 silly gentlyRm /usr/local/lib/node_modules/.staging/json-schema-3997576f is being purged from base /usr/local
8860 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/json-schema-3997576f
8861 silly gentlyRm /usr/local/lib/node_modules/.staging/lodash.assign-2cc22394 is being purged from base /usr/local
8862 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/lodash.assign-2cc22394
8863 silly gentlyRm /usr/local/lib/node_modules/.staging/jsonpointer-b0ea4d86 is being purged from base /usr/local
8864 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/jsonpointer-b0ea4d86
8865 silly gentlyRm /usr/local/lib/node_modules/.staging/lodash-8c042143 is being purged from base /usr/local
8866 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/lodash-8c042143
8867 silly gentlyRm /usr/local/lib/node_modules/.staging/lcid-553aa3dc is being purged from base /usr/local
8868 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/lcid-553aa3dc
8869 silly gentlyRm /usr/local/lib/node_modules/.staging/lodash.clonedeep-4a61521f is being purged from base /usr/local
8870 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/lodash.clonedeep-4a61521f
8871 silly gentlyRm /usr/local/lib/node_modules/.staging/mime-db-469ac054 is being purged from base /usr/local
8872 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/mime-db-469ac054
8873 silly gentlyRm /usr/local/lib/node_modules/.staging/map-obj-2ab0547b is being purged from base /usr/local
8874 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/map-obj-2ab0547b
8875 silly gentlyRm /usr/local/lib/node_modules/.staging/minimatch-0cd9a629 is being purged from base /usr/local
8876 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/minimatch-0cd9a629
8877 silly gentlyRm /usr/local/lib/node_modules/.staging/camelcase-keys-caac7169 is being purged from base /usr/local
8878 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/camelcase-keys-caac7169
8879 silly gentlyRm /usr/local/lib/node_modules/.staging/minimist-e11c8e7b is being purged from base /usr/local
8880 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/minimist-e11c8e7b
8881 silly gentlyRm /usr/local/lib/node_modules/.staging/mime-types-722349b0 is being purged from base /usr/local
8882 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/mime-types-722349b0
8883 silly gentlyRm /usr/local/lib/node_modules/.staging/minimist-3a5584fa is being purged from base /usr/local
8884 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/minimist-3a5584fa
8885 silly gentlyRm /usr/local/lib/node_modules/.staging/debug-22113bc6 is being purged from base /usr/local
8886 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/debug-22113bc6
8887 silly gentlyRm /usr/local/lib/node_modules/.staging/array-index-354cc4bd is being purged from base /usr/local
8888 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/array-index-354cc4bd
8889 silly gentlyRm /usr/local/lib/node_modules/.staging/nan-2780c2ab is being purged from base /usr/local
8890 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/nan-2780c2ab
8891 silly gentlyRm /usr/local/lib/node_modules/.staging/number-is-nan-ee9f9d3d is being purged from base /usr/local
8892 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/number-is-nan-ee9f9d3d
8893 silly gentlyRm /usr/local/lib/node_modules/.staging/is-finite-2079f9c2 is being purged from base /usr/local
8894 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/is-finite-2079f9c2
8895 silly gentlyRm /usr/local/lib/node_modules/.staging/ms-156d0e21 is being purged from base /usr/local
8896 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/ms-156d0e21
8897 silly gentlyRm /usr/local/lib/node_modules/.staging/object-assign-d4c70042 is being purged from base /usr/local
8898 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/object-assign-d4c70042
8899 silly gentlyRm /usr/local/lib/node_modules/.staging/os-homedir-8dea656a is being purged from base /usr/local
8900 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/os-homedir-8dea656a
8901 silly gentlyRm /usr/local/lib/node_modules/.staging/oauth-sign-0974744e is being purged from base /usr/local
8902 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/oauth-sign-0974744e
8903 silly gentlyRm /usr/local/lib/node_modules/.staging/os-tmpdir-cf08b56b is being purged from base /usr/local
8904 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/os-tmpdir-cf08b56b
8905 silly gentlyRm /usr/local/lib/node_modules/.staging/os-locale-b894dbf6 is being purged from base /usr/local
8906 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/os-locale-b894dbf6
8907 silly gentlyRm /usr/local/lib/node_modules/.staging/osenv-674ed6c4 is being purged from base /usr/local
8908 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/osenv-674ed6c4
8909 silly gentlyRm /usr/local/lib/node_modules/.staging/parse-json-5f980647 is being purged from base /usr/local
8910 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/parse-json-5f980647
8911 silly gentlyRm /usr/local/lib/node_modules/.staging/path-array-18450e3d is being purged from base /usr/local
8912 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/path-array-18450e3d
8913 silly gentlyRm /usr/local/lib/node_modules/.staging/path-is-absolute-1e25cdc4 is being purged from base /usr/local
8914 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/path-is-absolute-1e25cdc4
8915 silly gentlyRm /usr/local/lib/node_modules/.staging/form-data-8f31842b is being purged from base /usr/local
8916 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/form-data-8f31842b
8917 silly gentlyRm /usr/local/lib/node_modules/.staging/pify-da20c093 is being purged from base /usr/local
8918 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/pify-da20c093
8919 silly gentlyRm /usr/local/lib/node_modules/.staging/pinkie-5399651d is being purged from base /usr/local
8920 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/pinkie-5399651d
8921 silly gentlyRm /usr/local/lib/node_modules/.staging/pinkie-promise-44d92eb3 is being purged from base /usr/local
8922 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/pinkie-promise-44d92eb3
8923 silly gentlyRm /usr/local/lib/node_modules/.staging/path-exists-db370aea is being purged from base /usr/local
8924 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/path-exists-db370aea
8925 silly gentlyRm /usr/local/lib/node_modules/.staging/path-type-024051cd is being purged from base /usr/local
8926 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/path-type-024051cd
8927 silly gentlyRm /usr/local/lib/node_modules/.staging/process-nextick-args-3f864c02 is being purged from base /usr/local
8928 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/process-nextick-args-3f864c02
8929 silly gentlyRm /usr/local/lib/node_modules/.staging/pseudomap-c028e92e is being purged from base /usr/local
8930 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/pseudomap-c028e92e
8931 silly gentlyRm /usr/local/lib/node_modules/.staging/punycode-2681a18a is being purged from base /usr/local
8932 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/punycode-2681a18a
8933 silly gentlyRm /usr/local/lib/node_modules/.staging/find-up-27a92426 is being purged from base /usr/local
8934 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/find-up-27a92426
8935 silly gentlyRm /usr/local/lib/node_modules/.staging/qs-9f6b0e7a is being purged from base /usr/local
8936 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/qs-9f6b0e7a
8937 silly gentlyRm /usr/local/lib/node_modules/.staging/repeating-58fec241 is being purged from base /usr/local
8938 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/repeating-58fec241
8939 silly gentlyRm /usr/local/lib/node_modules/.staging/require-directory-94122af9 is being purged from base /usr/local
8940 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/require-directory-94122af9
8941 silly gentlyRm /usr/local/lib/node_modules/.staging/require-main-filename-284f5fd8 is being purged from base /usr/local
8942 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/require-main-filename-284f5fd8
8943 silly gentlyRm /usr/local/lib/node_modules/.staging/is-fullwidth-code-point-db1709e1 is being purged from base /usr/local
8944 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/is-fullwidth-code-point-db1709e1
8945 silly gentlyRm /usr/local/lib/node_modules/.staging/signal-exit-01155dc2 is being purged from base /usr/local
8946 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/signal-exit-01155dc2
8947 silly gentlyRm /usr/local/lib/node_modules/.staging/indent-string-6ec049e0 is being purged from base /usr/local
8948 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/indent-string-6ec049e0
8949 silly gentlyRm /usr/local/lib/node_modules/.staging/set-blocking-f4c51da9 is being purged from base /usr/local
8950 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/set-blocking-f4c51da9
8951 silly gentlyRm /usr/local/lib/node_modules/.staging/loud-rejection-b9614ed7 is being purged from base /usr/local
8952 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/loud-rejection-b9614ed7
8953 silly gentlyRm /usr/local/lib/node_modules/.staging/hawk-ce3605c7 is being purged from base /usr/local
8954 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/hawk-ce3605c7
8955 silly gentlyRm /usr/local/lib/node_modules/.staging/spdx-expression-parse-4cd5685a is being purged from base /usr/local
8956 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/spdx-expression-parse-4cd5685a
8957 silly gentlyRm /usr/local/lib/node_modules/.staging/sntp-400091bc is being purged from base /usr/local
8958 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/sntp-400091bc
8959 silly gentlyRm /usr/local/lib/node_modules/.staging/spdx-correct-fec8c53f is being purged from base /usr/local
8960 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/spdx-correct-fec8c53f
8961 silly gentlyRm /usr/local/lib/node_modules/.staging/string_decoder-40c319cb is being purged from base /usr/local
8962 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/string_decoder-40c319cb
8963 silly gentlyRm /usr/local/lib/node_modules/.staging/assert-plus-4cb89450 is being purged from base /usr/local
8964 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/assert-plus-4cb89450
8965 silly gentlyRm /usr/local/lib/node_modules/.staging/stringstream-4b0e6127 is being purged from base /usr/local
8966 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/stringstream-4b0e6127
8967 silly gentlyRm /usr/local/lib/node_modules/.staging/strip-ansi-f163d45b is being purged from base /usr/local
8968 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/strip-ansi-f163d45b
8969 silly gentlyRm /usr/local/lib/node_modules/.staging/spdx-license-ids-1fee434f is being purged from base /usr/local
8970 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/spdx-license-ids-1fee434f
8971 silly gentlyRm /usr/local/lib/node_modules/.staging/string-width-67ee5ff9 is being purged from base /usr/local
8972 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/string-width-67ee5ff9
8973 silly gentlyRm /usr/local/lib/node_modules/.staging/strip-bom-80af7ef1 is being purged from base /usr/local
8974 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/strip-bom-80af7ef1
8975 silly gentlyRm /usr/local/lib/node_modules/.staging/chalk-097d5032 is being purged from base /usr/local
8976 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/chalk-097d5032
8977 silly gentlyRm /usr/local/lib/node_modules/.staging/tough-cookie-39e0399a is being purged from base /usr/local
8978 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/tough-cookie-39e0399a
8979 silly gentlyRm /usr/local/lib/node_modules/.staging/redent-92c5d699 is being purged from base /usr/local
8980 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/redent-92c5d699
8981 silly gentlyRm /usr/local/lib/node_modules/.staging/load-json-file-3a29d2cb is being purged from base /usr/local
8982 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/load-json-file-3a29d2cb
8983 silly gentlyRm /usr/local/lib/node_modules/.staging/supports-color-e96294dc is being purged from base /usr/local
8984 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/supports-color-e96294dc
8985 silly gentlyRm /usr/local/lib/node_modules/.staging/tunnel-agent-908e238e is being purged from base /usr/local
8986 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/tunnel-agent-908e238e
8987 silly gentlyRm /usr/local/lib/node_modules/.staging/trim-newlines-d821b1b8 is being purged from base /usr/local
8988 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/trim-newlines-d821b1b8
8989 silly gentlyRm /usr/local/lib/node_modules/.staging/bcrypt-pbkdf-1c4ced42 is being purged from base /usr/local
8990 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/bcrypt-pbkdf-1c4ced42
8991 silly gentlyRm /usr/local/lib/node_modules/.staging/tweetnacl-dc471a1a is being purged from base /usr/local
8992 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/tweetnacl-dc471a1a
8993 silly gentlyRm /usr/local/lib/node_modules/.staging/readable-stream-a614b29b is being purged from base /usr/local
8994 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/readable-stream-a614b29b
8995 silly gentlyRm /usr/local/lib/node_modules/.staging/are-we-there-yet-8f43d911 is being purged from base /usr/local
8996 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/are-we-there-yet-8f43d911
8997 silly gentlyRm /usr/local/lib/node_modules/.staging/validate-npm-package-license-0f37ed85 is being purged from base /usr/local
8998 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/validate-npm-package-license-0f37ed85
8999 silly gentlyRm /usr/local/lib/node_modules/.staging/normalize-package-data-8831b4b6 is being purged from base /usr/local
9000 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/normalize-package-data-8831b4b6
9001 silly gentlyRm /usr/local/lib/node_modules/.staging/meow-559a02ad is being purged from base /usr/local
9002 verbose gentlyRm don't care about contents; nuking /usr/local/lib/node_modules/.staging/meow-559a02ad
9003 silly gentlyRm /usr/local/lib/node_modules/.staging/jsprim-7ed5d17f is being purged from base /usr/local