-
Notifications
You must be signed in to change notification settings - Fork 1
/
find.txt
2399 lines (2399 loc) · 114 KB
/
find.txt
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
/home/joy/
/home/joy/.bash_history
/home/joy/.bash_logout
/home/joy/.bashrc
/home/joy/.config
/home/joy/.config/configstore
/home/joy/.config/configstore/update-notifier-npm.json
/home/joy/.config/menus
/home/joy/.config/menus/applications-merged
/home/joy/.emscripten
/home/joy/.emscripten_cache
/home/joy/.emscripten_cache/libc.bc
/home/joy/.emscripten_cache/libcxx.bc
/home/joy/.emscripten_sanity
/home/joy/.local
/home/joy/.local/share
/home/joy/.local/share/applications
/home/joy/.local/share/applications/wine-extension-chm.desktop
/home/joy/.local/share/applications/wine-extension-gif.desktop
/home/joy/.local/share/applications/wine-extension-hlp.desktop
/home/joy/.local/share/applications/wine-extension-htm.desktop
/home/joy/.local/share/applications/wine-extension-ini.desktop
/home/joy/.local/share/applications/wine-extension-jfif.desktop
/home/joy/.local/share/applications/wine-extension-jpe.desktop
/home/joy/.local/share/applications/wine-extension-msp.desktop
/home/joy/.local/share/applications/wine-extension-pdf.desktop
/home/joy/.local/share/applications/wine-extension-png.desktop
/home/joy/.local/share/applications/wine-extension-rtf.desktop
/home/joy/.local/share/applications/wine-extension-txt.desktop
/home/joy/.local/share/applications/wine-extension-url.desktop
/home/joy/.local/share/applications/wine-extension-vbs.desktop
/home/joy/.local/share/applications/wine-extension-wri.desktop
/home/joy/.local/share/applications/wine-extension-xml.desktop
/home/joy/.local/share/desktop-directories
/home/joy/.local/share/icons
/home/joy/.local/share/icons/hicolor
/home/joy/.local/share/icons/hicolor/16x16
/home/joy/.local/share/icons/hicolor/16x16/apps
/home/joy/.local/share/icons/hicolor/256x256
/home/joy/.local/share/icons/hicolor/256x256/apps
/home/joy/.local/share/icons/hicolor/32x32
/home/joy/.local/share/icons/hicolor/32x32/apps
/home/joy/.local/share/icons/hicolor/48x48
/home/joy/.local/share/icons/hicolor/48x48/apps
/home/joy/.local/share/mime
/home/joy/.local/share/mime/XMLnamespaces
/home/joy/.local/share/mime/aliases
/home/joy/.local/share/mime/application
/home/joy/.local/share/mime/application/x-ms-shortcut.xml
/home/joy/.local/share/mime/application/x-msdownload.xml
/home/joy/.local/share/mime/application/x-wine-extension-cpl.xml
/home/joy/.local/share/mime/application/x-wine-extension-inf.xml
/home/joy/.local/share/mime/application/x-wine-extension-ini.xml
/home/joy/.local/share/mime/application/x-wine-extension-its.xml
/home/joy/.local/share/mime/application/x-wine-extension-msp.xml
/home/joy/.local/share/mime/application/x-wine-extension-vbs.xml
/home/joy/.local/share/mime/generic-icons
/home/joy/.local/share/mime/globs
/home/joy/.local/share/mime/globs2
/home/joy/.local/share/mime/icons
/home/joy/.local/share/mime/image
/home/joy/.local/share/mime/image/jpeg.xml
/home/joy/.local/share/mime/magic
/home/joy/.local/share/mime/mime.cache
/home/joy/.local/share/mime/packages
/home/joy/.local/share/mime/packages/x-wine-extension-cpl.xml
/home/joy/.local/share/mime/packages/x-wine-extension-dll.xml
/home/joy/.local/share/mime/packages/x-wine-extension-htc.xml
/home/joy/.local/share/mime/packages/x-wine-extension-inf.xml
/home/joy/.local/share/mime/packages/x-wine-extension-ini.xml
/home/joy/.local/share/mime/packages/x-wine-extension-its.xml
/home/joy/.local/share/mime/packages/x-wine-extension-jfif.xml
/home/joy/.local/share/mime/packages/x-wine-extension-lnk.xml
/home/joy/.local/share/mime/packages/x-wine-extension-msp.xml
/home/joy/.local/share/mime/packages/x-wine-extension-vbs.xml
/home/joy/.local/share/mime/subclasses
/home/joy/.local/share/mime/text
/home/joy/.local/share/mime/text/x-component.xml
/home/joy/.local/share/mime/treemagic
/home/joy/.local/share/mime/types
/home/joy/.local/share/mime/version
/home/joy/.node_repl_history
/home/joy/.npm
/home/joy/.npm/@types
/home/joy/.npm/@types/node
/home/joy/.npm/@types/node/8.10.40
/home/joy/.npm/@types/node/8.10.40/package
/home/joy/.npm/@types/node/8.10.40/package/package.json
/home/joy/.npm/@types/node/8.10.40/package.tgz
/home/joy/.npm/_locks
/home/joy/.npm/address
/home/joy/.npm/address/1.0.3
/home/joy/.npm/address/1.0.3/package
/home/joy/.npm/address/1.0.3/package/package.json
/home/joy/.npm/address/1.0.3/package.tgz
/home/joy/.npm/agent-base
/home/joy/.npm/agent-base/4.2.1
/home/joy/.npm/agent-base/4.2.1/package
/home/joy/.npm/agent-base/4.2.1/package/package.json
/home/joy/.npm/agent-base/4.2.1/package.tgz
/home/joy/.npm/agentkeepalive
/home/joy/.npm/agentkeepalive/3.5.2
/home/joy/.npm/agentkeepalive/3.5.2/package
/home/joy/.npm/agentkeepalive/3.5.2/package/package.json
/home/joy/.npm/agentkeepalive/3.5.2/package.tgz
/home/joy/.npm/any-promise
/home/joy/.npm/any-promise/1.3.0
/home/joy/.npm/any-promise/1.3.0/package
/home/joy/.npm/any-promise/1.3.0/package/package.json
/home/joy/.npm/any-promise/1.3.0/package.tgz
/home/joy/.npm/aproba
/home/joy/.npm/aproba/1.2.0
/home/joy/.npm/aproba/1.2.0/package
/home/joy/.npm/aproba/1.2.0/package/package.json
/home/joy/.npm/aproba/1.2.0/package.tgz
/home/joy/.npm/are-we-there-yet
/home/joy/.npm/are-we-there-yet/1.1.5
/home/joy/.npm/are-we-there-yet/1.1.5/package
/home/joy/.npm/are-we-there-yet/1.1.5/package/package.json
/home/joy/.npm/are-we-there-yet/1.1.5/package.tgz
/home/joy/.npm/ast-types
/home/joy/.npm/ast-types/0.12.2
/home/joy/.npm/ast-types/0.12.2/package
/home/joy/.npm/ast-types/0.12.2/package/package.json
/home/joy/.npm/ast-types/0.12.2/package.tgz
/home/joy/.npm/auto-correct
/home/joy/.npm/auto-correct/1.0.0
/home/joy/.npm/auto-correct/1.0.0/package
/home/joy/.npm/auto-correct/1.0.0/package/package.json
/home/joy/.npm/auto-correct/1.0.0/package.tgz
/home/joy/.npm/await-event
/home/joy/.npm/await-event/2.1.0
/home/joy/.npm/await-event/2.1.0/package
/home/joy/.npm/await-event/2.1.0/package/package.json
/home/joy/.npm/await-event/2.1.0/package.tgz
/home/joy/.npm/bagpipe
/home/joy/.npm/bagpipe/0.3.5
/home/joy/.npm/bagpipe/0.3.5/package
/home/joy/.npm/bagpipe/0.3.5/package/package.json
/home/joy/.npm/bagpipe/0.3.5/package.tgz
/home/joy/.npm/binary-mirror-config
/home/joy/.npm/binary-mirror-config/1.19.0
/home/joy/.npm/binary-mirror-config/1.19.0/package
/home/joy/.npm/binary-mirror-config/1.19.0/package/package.json
/home/joy/.npm/binary-mirror-config/1.19.0/package.tgz
/home/joy/.npm/block-stream
/home/joy/.npm/block-stream/0.0.9
/home/joy/.npm/block-stream/0.0.9/package
/home/joy/.npm/block-stream/0.0.9/package/package.json
/home/joy/.npm/block-stream/0.0.9/package.tgz
/home/joy/.npm/bytes
/home/joy/.npm/bytes/2.5.0
/home/joy/.npm/bytes/2.5.0/package
/home/joy/.npm/bytes/2.5.0/package/package.json
/home/joy/.npm/bytes/2.5.0/package.tgz
/home/joy/.npm/bytes/3.0.0
/home/joy/.npm/bytes/3.0.0/package
/home/joy/.npm/bytes/3.0.0/package/package.json
/home/joy/.npm/bytes/3.0.0/package.tgz
/home/joy/.npm/chownr
/home/joy/.npm/chownr/1.1.1
/home/joy/.npm/chownr/1.1.1/package
/home/joy/.npm/chownr/1.1.1/package/package.json
/home/joy/.npm/chownr/1.1.1/package.tgz
/home/joy/.npm/cli-cursor
/home/joy/.npm/cli-cursor/2.1.0
/home/joy/.npm/cli-cursor/2.1.0/package
/home/joy/.npm/cli-cursor/2.1.0/package/package.json
/home/joy/.npm/cli-cursor/2.1.0/package.tgz
/home/joy/.npm/cli-spinners
/home/joy/.npm/cli-spinners/1.3.1
/home/joy/.npm/cli-spinners/1.3.1/package
/home/joy/.npm/cli-spinners/1.3.1/package/package.json
/home/joy/.npm/cli-spinners/1.3.1/package.tgz
/home/joy/.npm/cmd-shim
/home/joy/.npm/cmd-shim/2.0.2
/home/joy/.npm/cmd-shim/2.0.2/package
/home/joy/.npm/cmd-shim/2.0.2/package/package.json
/home/joy/.npm/cmd-shim/2.0.2/package.tgz
/home/joy/.npm/cnpm
/home/joy/.npm/cnpm/6.0.0
/home/joy/.npm/cnpm/6.0.0/package
/home/joy/.npm/cnpm/6.0.0/package/package.json
/home/joy/.npm/cnpm/6.0.0/package.tgz
/home/joy/.npm/co-from-stream
/home/joy/.npm/co-from-stream/0.0.0
/home/joy/.npm/co-from-stream/0.0.0/package
/home/joy/.npm/co-from-stream/0.0.0/package/package.json
/home/joy/.npm/co-from-stream/0.0.0/package.tgz
/home/joy/.npm/co-fs-extra
/home/joy/.npm/co-fs-extra/1.2.1
/home/joy/.npm/co-fs-extra/1.2.1/package
/home/joy/.npm/co-fs-extra/1.2.1/package/package.json
/home/joy/.npm/co-fs-extra/1.2.1/package.tgz
/home/joy/.npm/co-parallel
/home/joy/.npm/co-parallel/1.0.0
/home/joy/.npm/co-parallel/1.0.0/package
/home/joy/.npm/co-parallel/1.0.0/package/package.json
/home/joy/.npm/co-parallel/1.0.0/package.tgz
/home/joy/.npm/co-read
/home/joy/.npm/co-read/0.0.1
/home/joy/.npm/co-read/0.0.1/package
/home/joy/.npm/co-read/0.0.1/package/package.json
/home/joy/.npm/co-read/0.0.1/package.tgz
/home/joy/.npm/co-thread
/home/joy/.npm/co-thread/0.0.1
/home/joy/.npm/co-thread/0.0.1/package
/home/joy/.npm/co-thread/0.0.1/package/package.json
/home/joy/.npm/co-thread/0.0.1/package.tgz
/home/joy/.npm/colors
/home/joy/.npm/colors/1.3.3
/home/joy/.npm/colors/1.3.3/package
/home/joy/.npm/colors/1.3.3/package/package.json
/home/joy/.npm/colors/1.3.3/package.tgz
/home/joy/.npm/commander
/home/joy/.npm/commander/2.10.0
/home/joy/.npm/commander/2.10.0/package
/home/joy/.npm/commander/2.10.0/package/package.json
/home/joy/.npm/commander/2.10.0/package.tgz
/home/joy/.npm/console-control-strings
/home/joy/.npm/console-control-strings/1.1.0
/home/joy/.npm/console-control-strings/1.1.0/package
/home/joy/.npm/console-control-strings/1.1.0/package/package.json
/home/joy/.npm/console-control-strings/1.1.0/package.tgz
/home/joy/.npm/content-type
/home/joy/.npm/content-type/1.0.4
/home/joy/.npm/content-type/1.0.4/package
/home/joy/.npm/content-type/1.0.4/package/package.json
/home/joy/.npm/content-type/1.0.4/package.tgz
/home/joy/.npm/copy-to
/home/joy/.npm/copy-to/2.0.1
/home/joy/.npm/copy-to/2.0.1/package
/home/joy/.npm/copy-to/2.0.1/package/package.json
/home/joy/.npm/copy-to/2.0.1/package.tgz
/home/joy/.npm/cross-spawn
/home/joy/.npm/cross-spawn/0.2.9
/home/joy/.npm/cross-spawn/0.2.9/package
/home/joy/.npm/cross-spawn/0.2.9/package/package.json
/home/joy/.npm/cross-spawn/0.2.9/package.tgz
/home/joy/.npm/data-uri-to-buffer
/home/joy/.npm/data-uri-to-buffer/2.0.0
/home/joy/.npm/data-uri-to-buffer/2.0.0/package
/home/joy/.npm/data-uri-to-buffer/2.0.0/package/package.json
/home/joy/.npm/data-uri-to-buffer/2.0.0/package.tgz
/home/joy/.npm/debug
/home/joy/.npm/debug/3.1.0
/home/joy/.npm/debug/3.1.0/package
/home/joy/.npm/debug/3.1.0/package/package.json
/home/joy/.npm/debug/3.1.0/package.tgz
/home/joy/.npm/debug/4.1.1
/home/joy/.npm/debug/4.1.1/package
/home/joy/.npm/debug/4.1.1/package/package.json
/home/joy/.npm/debug/4.1.1/package.tgz
/home/joy/.npm/default-user-agent
/home/joy/.npm/default-user-agent/1.0.0
/home/joy/.npm/default-user-agent/1.0.0/package
/home/joy/.npm/default-user-agent/1.0.0/package/package.json
/home/joy/.npm/default-user-agent/1.0.0/package.tgz
/home/joy/.npm/degenerator
/home/joy/.npm/degenerator/1.0.4
/home/joy/.npm/degenerator/1.0.4/package
/home/joy/.npm/degenerator/1.0.4/package/package.json
/home/joy/.npm/degenerator/1.0.4/package.tgz
/home/joy/.npm/delegates
/home/joy/.npm/delegates/1.0.0
/home/joy/.npm/delegates/1.0.0/package
/home/joy/.npm/delegates/1.0.0/package/package.json
/home/joy/.npm/delegates/1.0.0/package.tgz
/home/joy/.npm/depd
/home/joy/.npm/depd/1.1.2
/home/joy/.npm/depd/1.1.2/package
/home/joy/.npm/depd/1.1.2/package/package.json
/home/joy/.npm/depd/1.1.2/package.tgz
/home/joy/.npm/destroy
/home/joy/.npm/destroy/1.0.4
/home/joy/.npm/destroy/1.0.4/package
/home/joy/.npm/destroy/1.0.4/package/package.json
/home/joy/.npm/destroy/1.0.4/package.tgz
/home/joy/.npm/digest-header
/home/joy/.npm/digest-header/0.0.1
/home/joy/.npm/digest-header/0.0.1/package
/home/joy/.npm/digest-header/0.0.1/package/package.json
/home/joy/.npm/digest-header/0.0.1/package.tgz
/home/joy/.npm/ee-first
/home/joy/.npm/ee-first/1.1.1
/home/joy/.npm/ee-first/1.1.1/package
/home/joy/.npm/ee-first/1.1.1/package/package.json
/home/joy/.npm/ee-first/1.1.1/package.tgz
/home/joy/.npm/enable
/home/joy/.npm/enable/1.3.2
/home/joy/.npm/enable/1.3.2/package
/home/joy/.npm/enable/1.3.2/package/package.json
/home/joy/.npm/enable/1.3.2/package.tgz
/home/joy/.npm/end-of-stream
/home/joy/.npm/end-of-stream/1.4.1
/home/joy/.npm/end-of-stream/1.4.1/package
/home/joy/.npm/end-of-stream/1.4.1/package/package.json
/home/joy/.npm/end-of-stream/1.4.1/package.tgz
/home/joy/.npm/es6-promisify
/home/joy/.npm/es6-promisify/5.0.0
/home/joy/.npm/es6-promisify/5.0.0/package
/home/joy/.npm/es6-promisify/5.0.0/package/package.json
/home/joy/.npm/es6-promisify/5.0.0/package.tgz
/home/joy/.npm/escape-html
/home/joy/.npm/escape-html/1.0.3
/home/joy/.npm/escape-html/1.0.3/package
/home/joy/.npm/escape-html/1.0.3/package/package.json
/home/joy/.npm/escape-html/1.0.3/package.tgz
/home/joy/.npm/escodegen
/home/joy/.npm/escodegen/1.11.0
/home/joy/.npm/escodegen/1.11.0/package
/home/joy/.npm/escodegen/1.11.0/package/package.json
/home/joy/.npm/escodegen/1.11.0/package.tgz
/home/joy/.npm/esprima
/home/joy/.npm/esprima/3.1.3
/home/joy/.npm/esprima/3.1.3/package
/home/joy/.npm/esprima/3.1.3/package/package.json
/home/joy/.npm/esprima/3.1.3/package.tgz
/home/joy/.npm/extend-shallow
/home/joy/.npm/extend-shallow/2.0.1
/home/joy/.npm/extend-shallow/2.0.1/package
/home/joy/.npm/extend-shallow/2.0.1/package/package.json
/home/joy/.npm/extend-shallow/2.0.1/package.tgz
/home/joy/.npm/file-uri-to-path
/home/joy/.npm/file-uri-to-path/1.0.0
/home/joy/.npm/file-uri-to-path/1.0.0/package
/home/joy/.npm/file-uri-to-path/1.0.0/package/package.json
/home/joy/.npm/file-uri-to-path/1.0.0/package.tgz
/home/joy/.npm/fs-minipass
/home/joy/.npm/fs-minipass/1.2.5
/home/joy/.npm/fs-minipass/1.2.5/package
/home/joy/.npm/fs-minipass/1.2.5/package/package.json
/home/joy/.npm/fs-minipass/1.2.5/package.tgz
/home/joy/.npm/fstream
/home/joy/.npm/fstream/1.0.11
/home/joy/.npm/fstream/1.0.11/package
/home/joy/.npm/fstream/1.0.11/package/package.json
/home/joy/.npm/fstream/1.0.11/package.tgz
/home/joy/.npm/ftp
/home/joy/.npm/ftp/0.3.10
/home/joy/.npm/ftp/0.3.10/package
/home/joy/.npm/ftp/0.3.10/package/package.json
/home/joy/.npm/ftp/0.3.10/package.tgz
/home/joy/.npm/gauge
/home/joy/.npm/gauge/2.7.4
/home/joy/.npm/gauge/2.7.4/package
/home/joy/.npm/gauge/2.7.4/package/package.json
/home/joy/.npm/gauge/2.7.4/package.tgz
/home/joy/.npm/get-uri
/home/joy/.npm/get-uri/2.0.3
/home/joy/.npm/get-uri/2.0.3/package
/home/joy/.npm/get-uri/2.0.3/package/package.json
/home/joy/.npm/get-uri/2.0.3/package.tgz
/home/joy/.npm/giturl
/home/joy/.npm/giturl/1.0.1
/home/joy/.npm/giturl/1.0.1/package
/home/joy/.npm/giturl/1.0.1/package/package.json
/home/joy/.npm/giturl/1.0.1/package.tgz
/home/joy/.npm/graceful-readlink
/home/joy/.npm/graceful-readlink/1.0.1
/home/joy/.npm/graceful-readlink/1.0.1/package
/home/joy/.npm/graceful-readlink/1.0.1/package/package.json
/home/joy/.npm/graceful-readlink/1.0.1/package.tgz
/home/joy/.npm/has-unicode
/home/joy/.npm/has-unicode/2.0.1
/home/joy/.npm/has-unicode/2.0.1/package
/home/joy/.npm/has-unicode/2.0.1/package/package.json
/home/joy/.npm/has-unicode/2.0.1/package.tgz
/home/joy/.npm/http-errors
/home/joy/.npm/http-errors/1.6.3
/home/joy/.npm/http-errors/1.6.3/package
/home/joy/.npm/http-errors/1.6.3/package/package.json
/home/joy/.npm/http-errors/1.6.3/package.tgz
/home/joy/.npm/http-proxy-agent
/home/joy/.npm/http-proxy-agent/2.1.0
/home/joy/.npm/http-proxy-agent/2.1.0/package
/home/joy/.npm/http-proxy-agent/2.1.0/package/package.json
/home/joy/.npm/http-proxy-agent/2.1.0/package.tgz
/home/joy/.npm/https-proxy-agent
/home/joy/.npm/https-proxy-agent/2.2.1
/home/joy/.npm/https-proxy-agent/2.2.1/package
/home/joy/.npm/https-proxy-agent/2.2.1/package/package.json
/home/joy/.npm/https-proxy-agent/2.2.1/package.tgz
/home/joy/.npm/humanize-ms
/home/joy/.npm/humanize-ms/1.2.1
/home/joy/.npm/humanize-ms/1.2.1/package
/home/joy/.npm/humanize-ms/1.2.1/package/package.json
/home/joy/.npm/humanize-ms/1.2.1/package.tgz
/home/joy/.npm/iconv-lite
/home/joy/.npm/iconv-lite/0.4.23
/home/joy/.npm/iconv-lite/0.4.23/package
/home/joy/.npm/iconv-lite/0.4.23/package/package.json
/home/joy/.npm/iconv-lite/0.4.23/package.tgz
/home/joy/.npm/iconv-lite/0.4.24
/home/joy/.npm/iconv-lite/0.4.24/package
/home/joy/.npm/iconv-lite/0.4.24/package/package.json
/home/joy/.npm/iconv-lite/0.4.24/package.tgz
/home/joy/.npm/ip
/home/joy/.npm/ip/1.1.5
/home/joy/.npm/ip/1.1.5/package
/home/joy/.npm/ip/1.1.5/package/package.json
/home/joy/.npm/ip/1.1.5/package.tgz
/home/joy/.npm/is-class-hotfix
/home/joy/.npm/is-class-hotfix/0.0.6
/home/joy/.npm/is-class-hotfix/0.0.6/package
/home/joy/.npm/is-class-hotfix/0.0.6/package/package.json
/home/joy/.npm/is-class-hotfix/0.0.6/package.tgz
/home/joy/.npm/is-extendable
/home/joy/.npm/is-extendable/0.1.1
/home/joy/.npm/is-extendable/0.1.1/package
/home/joy/.npm/is-extendable/0.1.1/package/package.json
/home/joy/.npm/is-extendable/0.1.1/package.tgz
/home/joy/.npm/is-type-of
/home/joy/.npm/is-type-of/1.2.1
/home/joy/.npm/is-type-of/1.2.1/package
/home/joy/.npm/is-type-of/1.2.1/package/package.json
/home/joy/.npm/is-type-of/1.2.1/package.tgz
/home/joy/.npm/isexe
/home/joy/.npm/isexe/2.0.0
/home/joy/.npm/isexe/2.0.0/package
/home/joy/.npm/isexe/2.0.0/package/package.json
/home/joy/.npm/isexe/2.0.0/package.tgz
/home/joy/.npm/ko-sleep
/home/joy/.npm/ko-sleep/1.0.3
/home/joy/.npm/ko-sleep/1.0.3/package
/home/joy/.npm/ko-sleep/1.0.3/package/package.json
/home/joy/.npm/ko-sleep/1.0.3/package.tgz
/home/joy/.npm/log-symbols
/home/joy/.npm/log-symbols/1.0.2
/home/joy/.npm/log-symbols/1.0.2/package
/home/joy/.npm/log-symbols/1.0.2/package/package.json
/home/joy/.npm/log-symbols/1.0.2/package.tgz
/home/joy/.npm/lru-cache
/home/joy/.npm/lru-cache/2.7.3
/home/joy/.npm/lru-cache/2.7.3/package
/home/joy/.npm/lru-cache/2.7.3/package/package.json
/home/joy/.npm/lru-cache/2.7.3/package.tgz
/home/joy/.npm/lru-cache/4.1.5
/home/joy/.npm/lru-cache/4.1.5/package
/home/joy/.npm/lru-cache/4.1.5/package/package.json
/home/joy/.npm/lru-cache/4.1.5/package.tgz
/home/joy/.npm/mimic-fn
/home/joy/.npm/mimic-fn/1.2.0
/home/joy/.npm/mimic-fn/1.2.0/package
/home/joy/.npm/mimic-fn/1.2.0/package/package.json
/home/joy/.npm/mimic-fn/1.2.0/package.tgz
/home/joy/.npm/minipass
/home/joy/.npm/minipass/2.3.5
/home/joy/.npm/minipass/2.3.5/package
/home/joy/.npm/minipass/2.3.5/package/package.json
/home/joy/.npm/minipass/2.3.5/package.tgz
/home/joy/.npm/minizlib
/home/joy/.npm/minizlib/1.2.1
/home/joy/.npm/minizlib/1.2.1/package
/home/joy/.npm/minizlib/1.2.1/package/package.json
/home/joy/.npm/minizlib/1.2.1/package.tgz
/home/joy/.npm/moment
/home/joy/.npm/moment/2.24.0
/home/joy/.npm/moment/2.24.0/package
/home/joy/.npm/moment/2.24.0/package/package.json
/home/joy/.npm/moment/2.24.0/package.tgz
/home/joy/.npm/mz
/home/joy/.npm/mz/2.7.0
/home/joy/.npm/mz/2.7.0/package
/home/joy/.npm/mz/2.7.0/package/package.json
/home/joy/.npm/mz/2.7.0/package.tgz
/home/joy/.npm/mz-modules
/home/joy/.npm/mz-modules/2.1.0
/home/joy/.npm/mz-modules/2.1.0/package
/home/joy/.npm/mz-modules/2.1.0/package/package.json
/home/joy/.npm/mz-modules/2.1.0/package.tgz
/home/joy/.npm/netmask
/home/joy/.npm/netmask/1.0.6
/home/joy/.npm/netmask/1.0.6/package
/home/joy/.npm/netmask/1.0.6/package/package.json
/home/joy/.npm/netmask/1.0.6/package.tgz
/home/joy/.npm/node-gyp
/home/joy/.npm/node-gyp/3.8.0
/home/joy/.npm/node-gyp/3.8.0/package
/home/joy/.npm/node-gyp/3.8.0/package/package.json
/home/joy/.npm/node-gyp/3.8.0/package.tgz
/home/joy/.npm/node-homedir
/home/joy/.npm/node-homedir/1.1.1
/home/joy/.npm/node-homedir/1.1.1/package
/home/joy/.npm/node-homedir/1.1.1/package/package.json
/home/joy/.npm/node-homedir/1.1.1/package.tgz
/home/joy/.npm/normalize-git-url
/home/joy/.npm/normalize-git-url/3.0.2
/home/joy/.npm/normalize-git-url/3.0.2/package
/home/joy/.npm/normalize-git-url/3.0.2/package/package.json
/home/joy/.npm/normalize-git-url/3.0.2/package.tgz
/home/joy/.npm/npm
/home/joy/.npm/npm/6.7.0
/home/joy/.npm/npm/6.7.0/package
/home/joy/.npm/npm/6.7.0/package/package.json
/home/joy/.npm/npm/6.7.0/package.tgz
/home/joy/.npm/npm-package-arg
/home/joy/.npm/npm-package-arg/4.2.1
/home/joy/.npm/npm-package-arg/4.2.1/package
/home/joy/.npm/npm-package-arg/4.2.1/package/package.json
/home/joy/.npm/npm-package-arg/4.2.1/package.tgz
/home/joy/.npm/npm-request
/home/joy/.npm/npm-request/1.0.0
/home/joy/.npm/npm-request/1.0.0/package
/home/joy/.npm/npm-request/1.0.0/package/package.json
/home/joy/.npm/npm-request/1.0.0/package.tgz
/home/joy/.npm/npminstall
/home/joy/.npm/npminstall/3.20.2
/home/joy/.npm/npminstall/3.20.2/package
/home/joy/.npm/npminstall/3.20.2/package/package.json
/home/joy/.npm/npminstall/3.20.2/package.tgz
/home/joy/.npm/npmlog
/home/joy/.npm/npmlog/4.1.2
/home/joy/.npm/npmlog/4.1.2/package
/home/joy/.npm/npmlog/4.1.2/package/package.json
/home/joy/.npm/npmlog/4.1.2/package.tgz
/home/joy/.npm/onetime
/home/joy/.npm/onetime/2.0.1
/home/joy/.npm/onetime/2.0.1/package
/home/joy/.npm/onetime/2.0.1/package/package.json
/home/joy/.npm/onetime/2.0.1/package.tgz
/home/joy/.npm/open
/home/joy/.npm/open/0.0.5
/home/joy/.npm/open/0.0.5/package
/home/joy/.npm/open/0.0.5/package/package.json
/home/joy/.npm/open/0.0.5/package.tgz
/home/joy/.npm/ora
/home/joy/.npm/ora/1.3.0
/home/joy/.npm/ora/1.3.0/package
/home/joy/.npm/ora/1.3.0/package/package.json
/home/joy/.npm/ora/1.3.0/package.tgz
/home/joy/.npm/os-name
/home/joy/.npm/os-name/1.0.3
/home/joy/.npm/os-name/1.0.3/package
/home/joy/.npm/os-name/1.0.3/package/package.json
/home/joy/.npm/os-name/1.0.3/package.tgz
/home/joy/.npm/osenv
/home/joy/.npm/osenv/0.1.5
/home/joy/.npm/osenv/0.1.5/package
/home/joy/.npm/osenv/0.1.5/package/package.json
/home/joy/.npm/osenv/0.1.5/package.tgz
/home/joy/.npm/osx-release
/home/joy/.npm/osx-release/1.1.0
/home/joy/.npm/osx-release/1.1.0/package
/home/joy/.npm/osx-release/1.1.0/package/package.json
/home/joy/.npm/osx-release/1.1.0/package.tgz
/home/joy/.npm/pac-proxy-agent
/home/joy/.npm/pac-proxy-agent/2.0.2
/home/joy/.npm/pac-proxy-agent/2.0.2/package
/home/joy/.npm/pac-proxy-agent/2.0.2/package/package.json
/home/joy/.npm/pac-proxy-agent/2.0.2/package.tgz
/home/joy/.npm/pac-resolver
/home/joy/.npm/pac-resolver/3.0.0
/home/joy/.npm/pac-resolver/3.0.0/package
/home/joy/.npm/pac-resolver/3.0.0/package/package.json
/home/joy/.npm/pac-resolver/3.0.0/package.tgz
/home/joy/.npm/proxy-agent
/home/joy/.npm/proxy-agent/2.3.1
/home/joy/.npm/proxy-agent/2.3.1/package
/home/joy/.npm/proxy-agent/2.3.1/package/package.json
/home/joy/.npm/proxy-agent/2.3.1/package.tgz
/home/joy/.npm/proxy-from-env
/home/joy/.npm/proxy-from-env/1.0.0
/home/joy/.npm/proxy-from-env/1.0.0/package
/home/joy/.npm/proxy-from-env/1.0.0/package/package.json
/home/joy/.npm/proxy-from-env/1.0.0/package.tgz
/home/joy/.npm/pseudomap
/home/joy/.npm/pseudomap/1.0.2
/home/joy/.npm/pseudomap/1.0.2/package
/home/joy/.npm/pseudomap/1.0.2/package/package.json
/home/joy/.npm/pseudomap/1.0.2/package.tgz
/home/joy/.npm/pump
/home/joy/.npm/pump/3.0.0
/home/joy/.npm/pump/3.0.0/package
/home/joy/.npm/pump/3.0.0/package/package.json
/home/joy/.npm/pump/3.0.0/package.tgz
/home/joy/.npm/raw-body
/home/joy/.npm/raw-body/2.3.3
/home/joy/.npm/raw-body/2.3.3/package
/home/joy/.npm/raw-body/2.3.3/package/package.json
/home/joy/.npm/raw-body/2.3.3/package.tgz
/home/joy/.npm/readable-stream
/home/joy/.npm/readable-stream/3.1.1
/home/joy/.npm/readable-stream/3.1.1/package
/home/joy/.npm/readable-stream/3.1.1/package/package.json
/home/joy/.npm/readable-stream/3.1.1/package.tgz
/home/joy/.npm/registry.npmjs.org
/home/joy/.npm/registry.npmjs.org/_40types_252fnode
/home/joy/.npm/registry.npmjs.org/_40types_252fnode/.cache.json
/home/joy/.npm/registry.npmjs.org/address
/home/joy/.npm/registry.npmjs.org/address/.cache.json
/home/joy/.npm/registry.npmjs.org/agent-base
/home/joy/.npm/registry.npmjs.org/agent-base/.cache.json
/home/joy/.npm/registry.npmjs.org/agentkeepalive
/home/joy/.npm/registry.npmjs.org/agentkeepalive/.cache.json
/home/joy/.npm/registry.npmjs.org/any-promise
/home/joy/.npm/registry.npmjs.org/any-promise/.cache.json
/home/joy/.npm/registry.npmjs.org/aproba
/home/joy/.npm/registry.npmjs.org/aproba/.cache.json
/home/joy/.npm/registry.npmjs.org/are-we-there-yet
/home/joy/.npm/registry.npmjs.org/are-we-there-yet/.cache.json
/home/joy/.npm/registry.npmjs.org/ast-types
/home/joy/.npm/registry.npmjs.org/ast-types/.cache.json
/home/joy/.npm/registry.npmjs.org/auto-correct
/home/joy/.npm/registry.npmjs.org/auto-correct/.cache.json
/home/joy/.npm/registry.npmjs.org/await-event
/home/joy/.npm/registry.npmjs.org/await-event/.cache.json
/home/joy/.npm/registry.npmjs.org/bagpipe
/home/joy/.npm/registry.npmjs.org/bagpipe/.cache.json
/home/joy/.npm/registry.npmjs.org/binary-mirror-config
/home/joy/.npm/registry.npmjs.org/binary-mirror-config/.cache.json
/home/joy/.npm/registry.npmjs.org/block-stream
/home/joy/.npm/registry.npmjs.org/block-stream/.cache.json
/home/joy/.npm/registry.npmjs.org/bytes
/home/joy/.npm/registry.npmjs.org/bytes/.cache.json
/home/joy/.npm/registry.npmjs.org/chownr
/home/joy/.npm/registry.npmjs.org/chownr/.cache.json
/home/joy/.npm/registry.npmjs.org/cli-cursor
/home/joy/.npm/registry.npmjs.org/cli-cursor/.cache.json
/home/joy/.npm/registry.npmjs.org/cli-spinners
/home/joy/.npm/registry.npmjs.org/cli-spinners/.cache.json
/home/joy/.npm/registry.npmjs.org/cmd-shim
/home/joy/.npm/registry.npmjs.org/cmd-shim/.cache.json
/home/joy/.npm/registry.npmjs.org/cnpm
/home/joy/.npm/registry.npmjs.org/cnpm/.cache.json
/home/joy/.npm/registry.npmjs.org/co-from-stream
/home/joy/.npm/registry.npmjs.org/co-from-stream/.cache.json
/home/joy/.npm/registry.npmjs.org/co-fs-extra
/home/joy/.npm/registry.npmjs.org/co-fs-extra/.cache.json
/home/joy/.npm/registry.npmjs.org/co-parallel
/home/joy/.npm/registry.npmjs.org/co-parallel/.cache.json
/home/joy/.npm/registry.npmjs.org/co-read
/home/joy/.npm/registry.npmjs.org/co-read/.cache.json
/home/joy/.npm/registry.npmjs.org/co-thread
/home/joy/.npm/registry.npmjs.org/co-thread/.cache.json
/home/joy/.npm/registry.npmjs.org/colors
/home/joy/.npm/registry.npmjs.org/colors/.cache.json
/home/joy/.npm/registry.npmjs.org/commander
/home/joy/.npm/registry.npmjs.org/commander/.cache.json
/home/joy/.npm/registry.npmjs.org/console-control-strings
/home/joy/.npm/registry.npmjs.org/console-control-strings/.cache.json
/home/joy/.npm/registry.npmjs.org/content-type
/home/joy/.npm/registry.npmjs.org/content-type/.cache.json
/home/joy/.npm/registry.npmjs.org/copy-to
/home/joy/.npm/registry.npmjs.org/copy-to/.cache.json
/home/joy/.npm/registry.npmjs.org/cross-spawn
/home/joy/.npm/registry.npmjs.org/cross-spawn/.cache.json
/home/joy/.npm/registry.npmjs.org/data-uri-to-buffer
/home/joy/.npm/registry.npmjs.org/data-uri-to-buffer/.cache.json
/home/joy/.npm/registry.npmjs.org/debug
/home/joy/.npm/registry.npmjs.org/debug/.cache.json
/home/joy/.npm/registry.npmjs.org/default-user-agent
/home/joy/.npm/registry.npmjs.org/default-user-agent/.cache.json
/home/joy/.npm/registry.npmjs.org/degenerator
/home/joy/.npm/registry.npmjs.org/degenerator/.cache.json
/home/joy/.npm/registry.npmjs.org/delegates
/home/joy/.npm/registry.npmjs.org/delegates/.cache.json
/home/joy/.npm/registry.npmjs.org/depd
/home/joy/.npm/registry.npmjs.org/depd/.cache.json
/home/joy/.npm/registry.npmjs.org/destroy
/home/joy/.npm/registry.npmjs.org/destroy/.cache.json
/home/joy/.npm/registry.npmjs.org/digest-header
/home/joy/.npm/registry.npmjs.org/digest-header/.cache.json
/home/joy/.npm/registry.npmjs.org/ee-first
/home/joy/.npm/registry.npmjs.org/ee-first/.cache.json
/home/joy/.npm/registry.npmjs.org/enable
/home/joy/.npm/registry.npmjs.org/enable/.cache.json
/home/joy/.npm/registry.npmjs.org/end-of-stream
/home/joy/.npm/registry.npmjs.org/end-of-stream/.cache.json
/home/joy/.npm/registry.npmjs.org/es6-promisify
/home/joy/.npm/registry.npmjs.org/es6-promisify/.cache.json
/home/joy/.npm/registry.npmjs.org/escape-html
/home/joy/.npm/registry.npmjs.org/escape-html/.cache.json
/home/joy/.npm/registry.npmjs.org/escodegen
/home/joy/.npm/registry.npmjs.org/escodegen/.cache.json
/home/joy/.npm/registry.npmjs.org/esprima
/home/joy/.npm/registry.npmjs.org/esprima/.cache.json
/home/joy/.npm/registry.npmjs.org/extend-shallow
/home/joy/.npm/registry.npmjs.org/extend-shallow/.cache.json
/home/joy/.npm/registry.npmjs.org/file-uri-to-path
/home/joy/.npm/registry.npmjs.org/file-uri-to-path/.cache.json
/home/joy/.npm/registry.npmjs.org/fs-minipass
/home/joy/.npm/registry.npmjs.org/fs-minipass/.cache.json
/home/joy/.npm/registry.npmjs.org/fstream
/home/joy/.npm/registry.npmjs.org/fstream/.cache.json
/home/joy/.npm/registry.npmjs.org/ftp
/home/joy/.npm/registry.npmjs.org/ftp/.cache.json
/home/joy/.npm/registry.npmjs.org/gauge
/home/joy/.npm/registry.npmjs.org/gauge/.cache.json
/home/joy/.npm/registry.npmjs.org/get-uri
/home/joy/.npm/registry.npmjs.org/get-uri/.cache.json
/home/joy/.npm/registry.npmjs.org/giturl
/home/joy/.npm/registry.npmjs.org/giturl/.cache.json
/home/joy/.npm/registry.npmjs.org/graceful-readlink
/home/joy/.npm/registry.npmjs.org/graceful-readlink/.cache.json
/home/joy/.npm/registry.npmjs.org/has-unicode
/home/joy/.npm/registry.npmjs.org/has-unicode/.cache.json
/home/joy/.npm/registry.npmjs.org/http-errors
/home/joy/.npm/registry.npmjs.org/http-errors/.cache.json
/home/joy/.npm/registry.npmjs.org/http-proxy-agent
/home/joy/.npm/registry.npmjs.org/http-proxy-agent/.cache.json
/home/joy/.npm/registry.npmjs.org/https-proxy-agent
/home/joy/.npm/registry.npmjs.org/https-proxy-agent/.cache.json
/home/joy/.npm/registry.npmjs.org/humanize-ms
/home/joy/.npm/registry.npmjs.org/humanize-ms/.cache.json
/home/joy/.npm/registry.npmjs.org/iconv-lite
/home/joy/.npm/registry.npmjs.org/iconv-lite/.cache.json
/home/joy/.npm/registry.npmjs.org/ip
/home/joy/.npm/registry.npmjs.org/ip/.cache.json
/home/joy/.npm/registry.npmjs.org/is-class-hotfix
/home/joy/.npm/registry.npmjs.org/is-class-hotfix/.cache.json
/home/joy/.npm/registry.npmjs.org/is-extendable
/home/joy/.npm/registry.npmjs.org/is-extendable/.cache.json
/home/joy/.npm/registry.npmjs.org/is-type-of
/home/joy/.npm/registry.npmjs.org/is-type-of/.cache.json
/home/joy/.npm/registry.npmjs.org/isexe
/home/joy/.npm/registry.npmjs.org/isexe/.cache.json
/home/joy/.npm/registry.npmjs.org/ko-sleep
/home/joy/.npm/registry.npmjs.org/ko-sleep/.cache.json
/home/joy/.npm/registry.npmjs.org/log-symbols
/home/joy/.npm/registry.npmjs.org/log-symbols/.cache.json
/home/joy/.npm/registry.npmjs.org/lru-cache
/home/joy/.npm/registry.npmjs.org/lru-cache/.cache.json
/home/joy/.npm/registry.npmjs.org/mimic-fn
/home/joy/.npm/registry.npmjs.org/mimic-fn/.cache.json
/home/joy/.npm/registry.npmjs.org/minipass
/home/joy/.npm/registry.npmjs.org/minipass/.cache.json
/home/joy/.npm/registry.npmjs.org/minizlib
/home/joy/.npm/registry.npmjs.org/minizlib/.cache.json
/home/joy/.npm/registry.npmjs.org/moment
/home/joy/.npm/registry.npmjs.org/moment/.cache.json
/home/joy/.npm/registry.npmjs.org/mz
/home/joy/.npm/registry.npmjs.org/mz/.cache.json
/home/joy/.npm/registry.npmjs.org/mz-modules
/home/joy/.npm/registry.npmjs.org/mz-modules/.cache.json
/home/joy/.npm/registry.npmjs.org/netmask
/home/joy/.npm/registry.npmjs.org/netmask/.cache.json
/home/joy/.npm/registry.npmjs.org/node-gyp
/home/joy/.npm/registry.npmjs.org/node-gyp/.cache.json
/home/joy/.npm/registry.npmjs.org/node-homedir
/home/joy/.npm/registry.npmjs.org/node-homedir/.cache.json
/home/joy/.npm/registry.npmjs.org/normalize-git-url
/home/joy/.npm/registry.npmjs.org/normalize-git-url/.cache.json
/home/joy/.npm/registry.npmjs.org/npm
/home/joy/.npm/registry.npmjs.org/npm/.cache.json
/home/joy/.npm/registry.npmjs.org/npm-package-arg
/home/joy/.npm/registry.npmjs.org/npm-package-arg/.cache.json
/home/joy/.npm/registry.npmjs.org/npm-request
/home/joy/.npm/registry.npmjs.org/npm-request/.cache.json
/home/joy/.npm/registry.npmjs.org/npminstall
/home/joy/.npm/registry.npmjs.org/npminstall/.cache.json
/home/joy/.npm/registry.npmjs.org/npmlog
/home/joy/.npm/registry.npmjs.org/npmlog/.cache.json
/home/joy/.npm/registry.npmjs.org/onetime
/home/joy/.npm/registry.npmjs.org/onetime/.cache.json
/home/joy/.npm/registry.npmjs.org/open
/home/joy/.npm/registry.npmjs.org/open/.cache.json
/home/joy/.npm/registry.npmjs.org/ora
/home/joy/.npm/registry.npmjs.org/ora/.cache.json
/home/joy/.npm/registry.npmjs.org/os-name
/home/joy/.npm/registry.npmjs.org/os-name/.cache.json
/home/joy/.npm/registry.npmjs.org/osenv
/home/joy/.npm/registry.npmjs.org/osenv/.cache.json
/home/joy/.npm/registry.npmjs.org/osx-release
/home/joy/.npm/registry.npmjs.org/osx-release/.cache.json
/home/joy/.npm/registry.npmjs.org/pac-proxy-agent
/home/joy/.npm/registry.npmjs.org/pac-proxy-agent/.cache.json
/home/joy/.npm/registry.npmjs.org/pac-resolver
/home/joy/.npm/registry.npmjs.org/pac-resolver/.cache.json
/home/joy/.npm/registry.npmjs.org/proxy-agent
/home/joy/.npm/registry.npmjs.org/proxy-agent/.cache.json
/home/joy/.npm/registry.npmjs.org/proxy-from-env
/home/joy/.npm/registry.npmjs.org/proxy-from-env/.cache.json
/home/joy/.npm/registry.npmjs.org/pseudomap
/home/joy/.npm/registry.npmjs.org/pseudomap/.cache.json
/home/joy/.npm/registry.npmjs.org/pump
/home/joy/.npm/registry.npmjs.org/pump/.cache.json
/home/joy/.npm/registry.npmjs.org/raw-body
/home/joy/.npm/registry.npmjs.org/raw-body/.cache.json
/home/joy/.npm/registry.npmjs.org/readable-stream
/home/joy/.npm/registry.npmjs.org/readable-stream/.cache.json
/home/joy/.npm/registry.npmjs.org/restore-cursor
/home/joy/.npm/registry.npmjs.org/restore-cursor/.cache.json
/home/joy/.npm/registry.npmjs.org/runscript
/home/joy/.npm/registry.npmjs.org/runscript/.cache.json
/home/joy/.npm/registry.npmjs.org/semver
/home/joy/.npm/registry.npmjs.org/semver/.cache.json
/home/joy/.npm/registry.npmjs.org/set-blocking
/home/joy/.npm/registry.npmjs.org/set-blocking/.cache.json
/home/joy/.npm/registry.npmjs.org/setprototypeof
/home/joy/.npm/registry.npmjs.org/setprototypeof/.cache.json
/home/joy/.npm/registry.npmjs.org/smart-buffer
/home/joy/.npm/registry.npmjs.org/smart-buffer/.cache.json
/home/joy/.npm/registry.npmjs.org/socks
/home/joy/.npm/registry.npmjs.org/socks/.cache.json
/home/joy/.npm/registry.npmjs.org/socks-proxy-agent
/home/joy/.npm/registry.npmjs.org/socks-proxy-agent/.cache.json
/home/joy/.npm/registry.npmjs.org/source-map
/home/joy/.npm/registry.npmjs.org/source-map/.cache.json
/home/joy/.npm/registry.npmjs.org/statuses
/home/joy/.npm/registry.npmjs.org/statuses/.cache.json
/home/joy/.npm/registry.npmjs.org/tar
/home/joy/.npm/registry.npmjs.org/tar/.cache.json
/home/joy/.npm/registry.npmjs.org/thenify
/home/joy/.npm/registry.npmjs.org/thenify/.cache.json
/home/joy/.npm/registry.npmjs.org/thenify-all
/home/joy/.npm/registry.npmjs.org/thenify-all/.cache.json
/home/joy/.npm/registry.npmjs.org/thunkify
/home/joy/.npm/registry.npmjs.org/thunkify/.cache.json
/home/joy/.npm/registry.npmjs.org/thunkify-wrap
/home/joy/.npm/registry.npmjs.org/thunkify-wrap/.cache.json
/home/joy/.npm/registry.npmjs.org/unescape
/home/joy/.npm/registry.npmjs.org/unescape/.cache.json
/home/joy/.npm/registry.npmjs.org/unpipe
/home/joy/.npm/registry.npmjs.org/unpipe/.cache.json
/home/joy/.npm/registry.npmjs.org/urllib
/home/joy/.npm/registry.npmjs.org/urllib/.cache.json
/home/joy/.npm/registry.npmjs.org/utility
/home/joy/.npm/registry.npmjs.org/utility/.cache.json
/home/joy/.npm/registry.npmjs.org/which
/home/joy/.npm/registry.npmjs.org/which/.cache.json
/home/joy/.npm/registry.npmjs.org/wide-align
/home/joy/.npm/registry.npmjs.org/wide-align/.cache.json
/home/joy/.npm/registry.npmjs.org/win-release
/home/joy/.npm/registry.npmjs.org/win-release/.cache.json
/home/joy/.npm/registry.npmjs.org/xregexp
/home/joy/.npm/registry.npmjs.org/xregexp/.cache.json
/home/joy/.npm/registry.npmjs.org/yallist
/home/joy/.npm/registry.npmjs.org/yallist/.cache.json
/home/joy/.npm/restore-cursor
/home/joy/.npm/restore-cursor/2.0.0
/home/joy/.npm/restore-cursor/2.0.0/package
/home/joy/.npm/restore-cursor/2.0.0/package/package.json
/home/joy/.npm/restore-cursor/2.0.0/package.tgz
/home/joy/.npm/runscript
/home/joy/.npm/runscript/1.3.0
/home/joy/.npm/runscript/1.3.0/package
/home/joy/.npm/runscript/1.3.0/package/package.json
/home/joy/.npm/runscript/1.3.0/package.tgz
/home/joy/.npm/semver
/home/joy/.npm/semver/5.3.0
/home/joy/.npm/semver/5.3.0/package
/home/joy/.npm/semver/5.3.0/package/package.json
/home/joy/.npm/semver/5.3.0/package.tgz
/home/joy/.npm/set-blocking
/home/joy/.npm/set-blocking/2.0.0
/home/joy/.npm/set-blocking/2.0.0/package
/home/joy/.npm/set-blocking/2.0.0/package/package.json
/home/joy/.npm/set-blocking/2.0.0/package.tgz
/home/joy/.npm/setprototypeof
/home/joy/.npm/setprototypeof/1.1.0
/home/joy/.npm/setprototypeof/1.1.0/package
/home/joy/.npm/setprototypeof/1.1.0/package/package.json
/home/joy/.npm/setprototypeof/1.1.0/package.tgz
/home/joy/.npm/smart-buffer
/home/joy/.npm/smart-buffer/1.1.15
/home/joy/.npm/smart-buffer/1.1.15/package
/home/joy/.npm/smart-buffer/1.1.15/package/package.json
/home/joy/.npm/smart-buffer/1.1.15/package.tgz
/home/joy/.npm/socks
/home/joy/.npm/socks/1.1.10
/home/joy/.npm/socks/1.1.10/package
/home/joy/.npm/socks/1.1.10/package/package.json
/home/joy/.npm/socks/1.1.10/package.tgz
/home/joy/.npm/socks-proxy-agent
/home/joy/.npm/socks-proxy-agent/3.0.1
/home/joy/.npm/socks-proxy-agent/3.0.1/package
/home/joy/.npm/socks-proxy-agent/3.0.1/package/package.json
/home/joy/.npm/socks-proxy-agent/3.0.1/package.tgz
/home/joy/.npm/source-map
/home/joy/.npm/source-map/0.6.1
/home/joy/.npm/source-map/0.6.1/package
/home/joy/.npm/source-map/0.6.1/package/package.json
/home/joy/.npm/source-map/0.6.1/package.tgz
/home/joy/.npm/statuses
/home/joy/.npm/statuses/1.5.0
/home/joy/.npm/statuses/1.5.0/package
/home/joy/.npm/statuses/1.5.0/package/package.json
/home/joy/.npm/statuses/1.5.0/package.tgz
/home/joy/.npm/tar
/home/joy/.npm/tar/2.2.1
/home/joy/.npm/tar/2.2.1/package
/home/joy/.npm/tar/2.2.1/package/package.json
/home/joy/.npm/tar/2.2.1/package.tgz
/home/joy/.npm/tar/4.4.8
/home/joy/.npm/tar/4.4.8/package
/home/joy/.npm/tar/4.4.8/package/package.json
/home/joy/.npm/tar/4.4.8/package.tgz
/home/joy/.npm/thenify
/home/joy/.npm/thenify/3.3.0
/home/joy/.npm/thenify/3.3.0/package
/home/joy/.npm/thenify/3.3.0/package/package.json
/home/joy/.npm/thenify/3.3.0/package.tgz
/home/joy/.npm/thenify-all
/home/joy/.npm/thenify-all/1.6.0
/home/joy/.npm/thenify-all/1.6.0/package
/home/joy/.npm/thenify-all/1.6.0/package/package.json
/home/joy/.npm/thenify-all/1.6.0/package.tgz
/home/joy/.npm/thunkify
/home/joy/.npm/thunkify/2.1.2
/home/joy/.npm/thunkify/2.1.2/package
/home/joy/.npm/thunkify/2.1.2/package/package.json
/home/joy/.npm/thunkify/2.1.2/package.tgz
/home/joy/.npm/thunkify-wrap
/home/joy/.npm/thunkify-wrap/1.0.4
/home/joy/.npm/thunkify-wrap/1.0.4/package
/home/joy/.npm/thunkify-wrap/1.0.4/package/package.json
/home/joy/.npm/thunkify-wrap/1.0.4/package.tgz
/home/joy/.npm/unescape
/home/joy/.npm/unescape/1.0.1
/home/joy/.npm/unescape/1.0.1/package
/home/joy/.npm/unescape/1.0.1/package/package.json
/home/joy/.npm/unescape/1.0.1/package.tgz
/home/joy/.npm/unpipe
/home/joy/.npm/unpipe/1.0.0
/home/joy/.npm/unpipe/1.0.0/package
/home/joy/.npm/unpipe/1.0.0/package/package.json
/home/joy/.npm/unpipe/1.0.0/package.tgz
/home/joy/.npm/urllib
/home/joy/.npm/urllib/2.33.0
/home/joy/.npm/urllib/2.33.0/package
/home/joy/.npm/urllib/2.33.0/package/package.json
/home/joy/.npm/urllib/2.33.0/package.tgz
/home/joy/.npm/utility
/home/joy/.npm/utility/0.1.11
/home/joy/.npm/utility/0.1.11/package
/home/joy/.npm/utility/0.1.11/package/package.json
/home/joy/.npm/utility/0.1.11/package.tgz
/home/joy/.npm/utility/1.15.0
/home/joy/.npm/utility/1.15.0/package
/home/joy/.npm/utility/1.15.0/package/package.json
/home/joy/.npm/utility/1.15.0/package.tgz
/home/joy/.npm/which
/home/joy/.npm/which/1.3.1
/home/joy/.npm/which/1.3.1/package
/home/joy/.npm/which/1.3.1/package/package.json
/home/joy/.npm/which/1.3.1/package.tgz
/home/joy/.npm/wide-align
/home/joy/.npm/wide-align/1.1.3
/home/joy/.npm/wide-align/1.1.3/package
/home/joy/.npm/wide-align/1.1.3/package/package.json
/home/joy/.npm/wide-align/1.1.3/package.tgz
/home/joy/.npm/win-release
/home/joy/.npm/win-release/1.1.1
/home/joy/.npm/win-release/1.1.1/package
/home/joy/.npm/win-release/1.1.1/package/package.json
/home/joy/.npm/win-release/1.1.1/package.tgz
/home/joy/.npm/xregexp
/home/joy/.npm/xregexp/2.0.0
/home/joy/.npm/xregexp/2.0.0/package
/home/joy/.npm/xregexp/2.0.0/package/package.json
/home/joy/.npm/xregexp/2.0.0/package.tgz
/home/joy/.npm/yallist
/home/joy/.npm/yallist/2.1.2
/home/joy/.npm/yallist/2.1.2/package
/home/joy/.npm/yallist/2.1.2/package/package.json
/home/joy/.npm/yallist/2.1.2/package.tgz
/home/joy/.npm/yallist/3.0.3
/home/joy/.npm/yallist/3.0.3/package
/home/joy/.npm/yallist/3.0.3/package/package.json
/home/joy/.npm/yallist/3.0.3/package.tgz
/home/joy/.profile
/home/joy/.rediscli_history
/home/joy/.ssh
/home/joy/.ssh/abc
/home/joy/.ssh/abc/.git
/home/joy/.ssh/abc/.git/HEAD
/home/joy/.ssh/abc/.git/branches
/home/joy/.ssh/abc/.git/config
/home/joy/.ssh/abc/.git/description
/home/joy/.ssh/abc/.git/hooks
/home/joy/.ssh/abc/.git/hooks/applypatch-msg.sample
/home/joy/.ssh/abc/.git/hooks/commit-msg.sample
/home/joy/.ssh/abc/.git/hooks/fsmonitor-watchman.sample
/home/joy/.ssh/abc/.git/hooks/post-update.sample
/home/joy/.ssh/abc/.git/hooks/pre-applypatch.sample
/home/joy/.ssh/abc/.git/hooks/pre-commit.sample
/home/joy/.ssh/abc/.git/hooks/pre-push.sample
/home/joy/.ssh/abc/.git/hooks/pre-rebase.sample
/home/joy/.ssh/abc/.git/hooks/pre-receive.sample
/home/joy/.ssh/abc/.git/hooks/prepare-commit-msg.sample
/home/joy/.ssh/abc/.git/hooks/update.sample
/home/joy/.ssh/abc/.git/index
/home/joy/.ssh/abc/.git/info
/home/joy/.ssh/abc/.git/info/exclude
/home/joy/.ssh/abc/.git/logs
/home/joy/.ssh/abc/.git/logs/HEAD
/home/joy/.ssh/abc/.git/logs/refs
/home/joy/.ssh/abc/.git/logs/refs/heads
/home/joy/.ssh/abc/.git/logs/refs/heads/master
/home/joy/.ssh/abc/.git/logs/refs/remotes
/home/joy/.ssh/abc/.git/logs/refs/remotes/origin
/home/joy/.ssh/abc/.git/logs/refs/remotes/origin/HEAD
/home/joy/.ssh/abc/.git/objects
/home/joy/.ssh/abc/.git/objects/info
/home/joy/.ssh/abc/.git/objects/pack
/home/joy/.ssh/abc/.git/objects/pack/pack-b0a123eec0df3a3c926724062cf2c7626c9b6e9b.idx
/home/joy/.ssh/abc/.git/objects/pack/pack-b0a123eec0df3a3c926724062cf2c7626c9b6e9b.pack
/home/joy/.ssh/abc/.git/packed-refs
/home/joy/.ssh/abc/.git/refs