-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnpm-debug.log
More file actions
3236 lines (3236 loc) · 287 KB
/
npm-debug.log
File metadata and controls
3236 lines (3236 loc) · 287 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
0 info it worked if it ends with ok
1 verbose cli [ 'C:\\Program Files\\nodejs\\\\node.exe',
1 verbose cli 'C:\\Program Files\\nodejs\\node_modules\\npm\\bin\\npm-cli.js',
1 verbose cli 'install' ]
2 info using npm@1.3.21
3 info using node@v0.10.24
4 verbose node symlink C:\Program Files\nodejs\\node.exe
5 warn package.json DDAlerts@0.0.1 No README data
6 verbose readDependencies using package.json deps
7 verbose install where, deps [ 'C:\\Sites\\node_projects\\DataDrivenAlerts', [ 'phantom' ] ]
8 info preinstall DDAlerts@0.0.1
9 verbose readDependencies using package.json deps
10 verbose cache add [ 'phantom@latest', null ]
11 verbose cache add name=undefined spec="phantom@latest" args=["phantom@latest",null]
12 verbose parsed url { protocol: null,
12 verbose parsed url slashes: null,
12 verbose parsed url auth: null,
12 verbose parsed url host: null,
12 verbose parsed url port: null,
12 verbose parsed url hostname: null,
12 verbose parsed url hash: null,
12 verbose parsed url search: null,
12 verbose parsed url query: null,
12 verbose parsed url pathname: 'phantom@latest',
12 verbose parsed url path: 'phantom@latest',
12 verbose parsed url href: 'phantom@latest' }
13 verbose cache add name="phantom" spec="latest" args=["phantom","latest"]
14 verbose parsed url { protocol: null,
14 verbose parsed url slashes: null,
14 verbose parsed url auth: null,
14 verbose parsed url host: null,
14 verbose parsed url port: null,
14 verbose parsed url hostname: null,
14 verbose parsed url hash: null,
14 verbose parsed url search: null,
14 verbose parsed url query: null,
14 verbose parsed url pathname: 'latest',
14 verbose parsed url path: 'latest',
14 verbose parsed url href: 'latest' }
15 verbose addNamed [ 'phantom', 'latest' ]
16 verbose addNamed [ null, null ]
17 silly lockFile bc153596-phantom-latest phantom@latest
18 verbose lock phantom@latest C:\Users\mkovner\AppData\Roaming\npm-cache\bc153596-phantom-latest.lock
19 info addNameTag [ 'phantom', 'latest' ]
20 verbose url raw phantom
21 verbose url resolving [ 'https://registry.npmjs.org/', './phantom' ]
22 verbose url resolved https://registry.npmjs.org/phantom
23 info trying registry request attempt 1 at 18:02:05
24 http GET https://registry.npmjs.org/phantom
25 http 200 https://registry.npmjs.org/phantom
26 silly registry.get cb [ 200,
26 silly registry.get { date: 'Thu, 03 Apr 2014 01:02:06 GMT',
26 silly registry.get server: 'CouchDB/1.5.0 (Erlang OTP/R14B04)',
26 silly registry.get etag: '"CJZT0WV37ZB6086BGXE54F1UY"',
26 silly registry.get 'content-type': 'application/json',
26 silly registry.get via: '1.1 varnish',
26 silly registry.get 'cache-control': 'max-age=1',
26 silly registry.get 'content-length': '31620',
26 silly registry.get 'accept-ranges': 'bytes',
26 silly registry.get age: '8216',
26 silly registry.get 'x-served-by': 'cache-v41-ASH, cache-lax1433-LAX',
26 silly registry.get 'x-cache': 'HIT, MISS',
26 silly registry.get 'x-cache-hits': '1, 0',
26 silly registry.get 'x-timer': 'S1396478456.878642082,VS0,VS32,VE126,VE8469150',
26 silly registry.get vary: 'Accept',
26 silly registry.get 'keep-alive': 'timeout=10, max=50',
26 silly registry.get connection: 'Keep-Alive' } ]
27 verbose addNamed [ 'phantom', '0.5.7' ]
28 verbose addNamed [ '0.5.7', '0.5.7' ]
29 silly lockFile b9355d0a-phantom-0-5-7 phantom@0.5.7
30 verbose lock phantom@0.5.7 C:\Users\mkovner\AppData\Roaming\npm-cache\b9355d0a-phantom-0-5-7.lock
31 silly lockFile b9a530cb-js-org-phantom-phantom-0-5-7-tgz https://registry.npmjs.org/phantom/-/phantom-0.5.7.tgz
32 verbose lock https://registry.npmjs.org/phantom/-/phantom-0.5.7.tgz C:\Users\mkovner\AppData\Roaming\npm-cache\b9a530cb-js-org-phantom-phantom-0-5-7-tgz.lock
33 verbose addRemoteTarball [ 'https://registry.npmjs.org/phantom/-/phantom-0.5.7.tgz',
33 verbose addRemoteTarball 'f4703e60e1fe7602d19105d32eec9db764d6b23b' ]
34 info retry fetch attempt 1 at 18:02:06
35 verbose fetch to= C:\Users\mkovner\AppData\Local\Temp\npm-12848-F9E1kxLC\1396486926191-0.521476853871718\tmp.tgz
36 http GET https://registry.npmjs.org/phantom/-/phantom-0.5.7.tgz
37 http 200 https://registry.npmjs.org/phantom/-/phantom-0.5.7.tgz
38 verbose tar unpack C:\Users\mkovner\AppData\Local\Temp\npm-12848-F9E1kxLC\1396486926191-0.521476853871718\tmp.tgz
39 silly lockFile cd809266-926191-0-521476853871718-package tar://C:\Users\mkovner\AppData\Local\Temp\npm-12848-F9E1kxLC\1396486926191-0.521476853871718\package
40 verbose lock tar://C:\Users\mkovner\AppData\Local\Temp\npm-12848-F9E1kxLC\1396486926191-0.521476853871718\package C:\Users\mkovner\AppData\Roaming\npm-cache\cd809266-926191-0-521476853871718-package.lock
41 silly lockFile 472cbc19-926191-0-521476853871718-tmp-tgz tar://C:\Users\mkovner\AppData\Local\Temp\npm-12848-F9E1kxLC\1396486926191-0.521476853871718\tmp.tgz
42 verbose lock tar://C:\Users\mkovner\AppData\Local\Temp\npm-12848-F9E1kxLC\1396486926191-0.521476853871718\tmp.tgz C:\Users\mkovner\AppData\Roaming\npm-cache\472cbc19-926191-0-521476853871718-tmp-tgz.lock
43 silly gunzTarPerm modes [ '755', '644' ]
44 silly gunzTarPerm extractEntry package.json
45 silly gunzTarPerm extractEntry .npmignore
46 silly gunzTarPerm extractEntry phantom.js
47 silly gunzTarPerm extractEntry pre_shim.js
48 silly gunzTarPerm extractEntry shim.js
49 silly gunzTarPerm extractEntry phantom.coffee
50 silly gunzTarPerm extractEntry .travis.yml
51 silly gunzTarPerm extractEntry Cakefile
52 silly gunzTarPerm extractEntry README.markdown
53 silly gunzTarPerm extractEntry samples/test_phantom.js
54 silly gunzTarPerm extractEntry samples/test_phantom_4.coffee
55 silly gunzTarPerm extractEntry samples/test_phantom_10.coffee
56 silly gunzTarPerm extractEntry samples/test_phantom_2.coffee
57 silly gunzTarPerm extractEntry samples/test_phantom_3.coffee
58 silly gunzTarPerm extractEntry samples/test_phantom.coffee
59 silly gunzTarPerm extractEntry samples/test_phantom_5.coffee
60 silly gunzTarPerm extractEntry samples/test_phantom_6.coffee
61 silly gunzTarPerm extractEntry samples/test_phantom_7.coffee
62 silly gunzTarPerm extractEntry samples/test_phantom_8.coffee
63 silly gunzTarPerm extractEntry samples/test_phantom_9.coffee
64 silly gunzTarPerm extractEntry shim.coffee
65 silly gunzTarPerm extractEntry .idea/.name
66 silly gunzTarPerm extractEntry .idea/encodings.xml
67 silly gunzTarPerm extractEntry .idea/misc.xml
68 silly gunzTarPerm extractEntry .idea/modules.xml
69 silly gunzTarPerm extractEntry .idea/phantomjs-node.iml
70 silly gunzTarPerm extractEntry .idea/scopes/scope_settings.xml
71 silly gunzTarPerm extractEntry .idea/vcs.xml
72 silly gunzTarPerm extractEntry .idea/workspace.xml
73 silly gunzTarPerm extractEntry test/inject.js
74 silly gunzTarPerm extractEntry test/adv.coffee
75 silly gunzTarPerm extractEntry test/basic.coffee
76 silly gunzTarPerm extractEntry test/page.coffee
77 silly gunzTarPerm extractEntry test/test.gif
78 silly lockFile cd809266-926191-0-521476853871718-package tar://C:\Users\mkovner\AppData\Local\Temp\npm-12848-F9E1kxLC\1396486926191-0.521476853871718\package
79 silly lockFile cd809266-926191-0-521476853871718-package tar://C:\Users\mkovner\AppData\Local\Temp\npm-12848-F9E1kxLC\1396486926191-0.521476853871718\package
80 silly lockFile 472cbc19-926191-0-521476853871718-tmp-tgz tar://C:\Users\mkovner\AppData\Local\Temp\npm-12848-F9E1kxLC\1396486926191-0.521476853871718\tmp.tgz
81 silly lockFile 472cbc19-926191-0-521476853871718-tmp-tgz tar://C:\Users\mkovner\AppData\Local\Temp\npm-12848-F9E1kxLC\1396486926191-0.521476853871718\tmp.tgz
82 verbose tar pack [ 'C:\\Users\\mkovner\\AppData\\Roaming\\npm-cache\\phantom\\0.5.7\\package.tgz',
82 verbose tar pack 'C:\\Users\\mkovner\\AppData\\Local\\Temp\\npm-12848-F9E1kxLC\\1396486926191-0.521476853871718\\package' ]
83 verbose tarball C:\Users\mkovner\AppData\Roaming\npm-cache\phantom\0.5.7\package.tgz
84 verbose folder C:\Users\mkovner\AppData\Local\Temp\npm-12848-F9E1kxLC\1396486926191-0.521476853871718\package
85 silly lockFile cd809266-926191-0-521476853871718-package tar://C:\Users\mkovner\AppData\Local\Temp\npm-12848-F9E1kxLC\1396486926191-0.521476853871718\package
86 verbose lock tar://C:\Users\mkovner\AppData\Local\Temp\npm-12848-F9E1kxLC\1396486926191-0.521476853871718\package C:\Users\mkovner\AppData\Roaming\npm-cache\cd809266-926191-0-521476853871718-package.lock
87 silly lockFile 9bc69f20--cache-phantom-0-5-7-package-tgz tar://C:\Users\mkovner\AppData\Roaming\npm-cache\phantom\0.5.7\package.tgz
88 verbose lock tar://C:\Users\mkovner\AppData\Roaming\npm-cache\phantom\0.5.7\package.tgz C:\Users\mkovner\AppData\Roaming\npm-cache\9bc69f20--cache-phantom-0-5-7-package-tgz.lock
89 silly lockFile cd809266-926191-0-521476853871718-package tar://C:\Users\mkovner\AppData\Local\Temp\npm-12848-F9E1kxLC\1396486926191-0.521476853871718\package
90 silly lockFile cd809266-926191-0-521476853871718-package tar://C:\Users\mkovner\AppData\Local\Temp\npm-12848-F9E1kxLC\1396486926191-0.521476853871718\package
91 silly lockFile 9bc69f20--cache-phantom-0-5-7-package-tgz tar://C:\Users\mkovner\AppData\Roaming\npm-cache\phantom\0.5.7\package.tgz
92 silly lockFile 9bc69f20--cache-phantom-0-5-7-package-tgz tar://C:\Users\mkovner\AppData\Roaming\npm-cache\phantom\0.5.7\package.tgz
93 silly lockFile 756962eb--npm-cache-phantom-0-5-7-package C:\Users\mkovner\AppData\Roaming\npm-cache\phantom\0.5.7\package
94 verbose lock C:\Users\mkovner\AppData\Roaming\npm-cache\phantom\0.5.7\package C:\Users\mkovner\AppData\Roaming\npm-cache\756962eb--npm-cache-phantom-0-5-7-package.lock
95 silly lockFile 756962eb--npm-cache-phantom-0-5-7-package C:\Users\mkovner\AppData\Roaming\npm-cache\phantom\0.5.7\package
96 silly lockFile 756962eb--npm-cache-phantom-0-5-7-package C:\Users\mkovner\AppData\Roaming\npm-cache\phantom\0.5.7\package
97 verbose tar unpack C:\Users\mkovner\AppData\Roaming\npm-cache\phantom\0.5.7\package.tgz
98 silly lockFile d7eab557--npm-cache-phantom-0-5-7-package tar://C:\Users\mkovner\AppData\Roaming\npm-cache\phantom\0.5.7\package
99 verbose lock tar://C:\Users\mkovner\AppData\Roaming\npm-cache\phantom\0.5.7\package C:\Users\mkovner\AppData\Roaming\npm-cache\d7eab557--npm-cache-phantom-0-5-7-package.lock
100 silly lockFile 9bc69f20--cache-phantom-0-5-7-package-tgz tar://C:\Users\mkovner\AppData\Roaming\npm-cache\phantom\0.5.7\package.tgz
101 verbose lock tar://C:\Users\mkovner\AppData\Roaming\npm-cache\phantom\0.5.7\package.tgz C:\Users\mkovner\AppData\Roaming\npm-cache\9bc69f20--cache-phantom-0-5-7-package-tgz.lock
102 silly gunzTarPerm modes [ '755', '644' ]
103 silly gunzTarPerm extractEntry package.json
104 silly gunzTarPerm modified mode [ 'package.json', 438, 420 ]
105 silly gunzTarPerm extractEntry .npmignore
106 silly gunzTarPerm modified mode [ '.npmignore', 438, 420 ]
107 silly gunzTarPerm extractEntry phantom.js
108 silly gunzTarPerm modified mode [ 'phantom.js', 438, 420 ]
109 silly gunzTarPerm extractEntry pre_shim.js
110 silly gunzTarPerm modified mode [ 'pre_shim.js', 438, 420 ]
111 silly gunzTarPerm extractEntry shim.js
112 silly gunzTarPerm modified mode [ 'shim.js', 438, 420 ]
113 silly gunzTarPerm extractEntry phantom.coffee
114 silly gunzTarPerm modified mode [ 'phantom.coffee', 438, 420 ]
115 silly gunzTarPerm extractEntry .travis.yml
116 silly gunzTarPerm modified mode [ '.travis.yml', 438, 420 ]
117 silly gunzTarPerm extractEntry Cakefile
118 silly gunzTarPerm modified mode [ 'Cakefile', 438, 420 ]
119 silly gunzTarPerm extractEntry README.markdown
120 silly gunzTarPerm modified mode [ 'README.markdown', 438, 420 ]
121 silly gunzTarPerm extractEntry samples/test_phantom.js
122 silly gunzTarPerm modified mode [ 'samples/test_phantom.js', 438, 420 ]
123 silly gunzTarPerm extractEntry samples/test_phantom_4.coffee
124 silly gunzTarPerm modified mode [ 'samples/test_phantom_4.coffee', 438, 420 ]
125 silly gunzTarPerm extractEntry samples/test_phantom_10.coffee
126 silly gunzTarPerm modified mode [ 'samples/test_phantom_10.coffee', 438, 420 ]
127 silly gunzTarPerm extractEntry samples/test_phantom_2.coffee
128 silly gunzTarPerm modified mode [ 'samples/test_phantom_2.coffee', 438, 420 ]
129 silly gunzTarPerm extractEntry samples/test_phantom_3.coffee
130 silly gunzTarPerm modified mode [ 'samples/test_phantom_3.coffee', 438, 420 ]
131 silly gunzTarPerm extractEntry samples/test_phantom.coffee
132 silly gunzTarPerm modified mode [ 'samples/test_phantom.coffee', 438, 420 ]
133 silly gunzTarPerm extractEntry samples/test_phantom_5.coffee
134 silly gunzTarPerm modified mode [ 'samples/test_phantom_5.coffee', 438, 420 ]
135 silly gunzTarPerm extractEntry samples/test_phantom_6.coffee
136 silly gunzTarPerm modified mode [ 'samples/test_phantom_6.coffee', 438, 420 ]
137 silly gunzTarPerm extractEntry samples/test_phantom_7.coffee
138 silly gunzTarPerm modified mode [ 'samples/test_phantom_7.coffee', 438, 420 ]
139 silly gunzTarPerm extractEntry samples/test_phantom_8.coffee
140 silly gunzTarPerm modified mode [ 'samples/test_phantom_8.coffee', 438, 420 ]
141 silly gunzTarPerm extractEntry samples/test_phantom_9.coffee
142 silly gunzTarPerm modified mode [ 'samples/test_phantom_9.coffee', 438, 420 ]
143 silly gunzTarPerm extractEntry shim.coffee
144 silly gunzTarPerm modified mode [ 'shim.coffee', 438, 420 ]
145 silly gunzTarPerm extractEntry .idea/.name
146 silly gunzTarPerm modified mode [ '.idea/.name', 438, 420 ]
147 silly gunzTarPerm extractEntry .idea/encodings.xml
148 silly gunzTarPerm modified mode [ '.idea/encodings.xml', 438, 420 ]
149 silly gunzTarPerm extractEntry .idea/misc.xml
150 silly gunzTarPerm modified mode [ '.idea/misc.xml', 438, 420 ]
151 silly gunzTarPerm extractEntry .idea/modules.xml
152 silly gunzTarPerm modified mode [ '.idea/modules.xml', 438, 420 ]
153 silly gunzTarPerm extractEntry .idea/phantomjs-node.iml
154 silly gunzTarPerm modified mode [ '.idea/phantomjs-node.iml', 438, 420 ]
155 silly gunzTarPerm extractEntry .idea/scopes/scope_settings.xml
156 silly gunzTarPerm modified mode [ '.idea/scopes/scope_settings.xml', 438, 420 ]
157 silly gunzTarPerm extractEntry .idea/vcs.xml
158 silly gunzTarPerm modified mode [ '.idea/vcs.xml', 438, 420 ]
159 silly gunzTarPerm extractEntry .idea/workspace.xml
160 silly gunzTarPerm modified mode [ '.idea/workspace.xml', 438, 420 ]
161 silly gunzTarPerm extractEntry test/inject.js
162 silly gunzTarPerm modified mode [ 'test/inject.js', 438, 420 ]
163 silly gunzTarPerm extractEntry test/adv.coffee
164 silly gunzTarPerm modified mode [ 'test/adv.coffee', 438, 420 ]
165 silly gunzTarPerm extractEntry test/basic.coffee
166 silly gunzTarPerm modified mode [ 'test/basic.coffee', 438, 420 ]
167 silly gunzTarPerm extractEntry test/page.coffee
168 silly gunzTarPerm modified mode [ 'test/page.coffee', 438, 420 ]
169 silly gunzTarPerm extractEntry test/test.gif
170 silly gunzTarPerm modified mode [ 'test/test.gif', 438, 420 ]
171 silly lockFile d7eab557--npm-cache-phantom-0-5-7-package tar://C:\Users\mkovner\AppData\Roaming\npm-cache\phantom\0.5.7\package
172 silly lockFile d7eab557--npm-cache-phantom-0-5-7-package tar://C:\Users\mkovner\AppData\Roaming\npm-cache\phantom\0.5.7\package
173 silly lockFile 9bc69f20--cache-phantom-0-5-7-package-tgz tar://C:\Users\mkovner\AppData\Roaming\npm-cache\phantom\0.5.7\package.tgz
174 silly lockFile 9bc69f20--cache-phantom-0-5-7-package-tgz tar://C:\Users\mkovner\AppData\Roaming\npm-cache\phantom\0.5.7\package.tgz
175 verbose chmod C:\Users\mkovner\AppData\Roaming\npm-cache\phantom\0.5.7\package.tgz 644
176 silly chown skipping for windows C:\Users\mkovner\AppData\Roaming\npm-cache\phantom\0.5.7\package.tgz
177 silly lockFile b9a530cb-js-org-phantom-phantom-0-5-7-tgz https://registry.npmjs.org/phantom/-/phantom-0.5.7.tgz
178 silly lockFile b9a530cb-js-org-phantom-phantom-0-5-7-tgz https://registry.npmjs.org/phantom/-/phantom-0.5.7.tgz
179 silly lockFile b9355d0a-phantom-0-5-7 phantom@0.5.7
180 silly lockFile b9355d0a-phantom-0-5-7 phantom@0.5.7
181 silly lockFile bc153596-phantom-latest phantom@latest
182 silly lockFile bc153596-phantom-latest phantom@latest
183 silly resolved [ { author: { name: 'Sam Gentle', email: 'sam@samgentle.com' },
183 silly resolved name: 'phantom',
183 silly resolved description: 'PhantomJS wrapper for Node',
183 silly resolved homepage: 'https://github.com/sgentle/phantomjs-node',
183 silly resolved version: '0.5.7',
183 silly resolved repository:
183 silly resolved { type: 'git',
183 silly resolved url: 'git://github.com/sgentle/phantomjs-node.git' },
183 silly resolved contributors: [ [Object] ],
183 silly resolved main: 'phantom.js',
183 silly resolved engines: { node: '>=v0.4.9' },
183 silly resolved dependencies: { dnode: '~1.0.5', shoe: '~0.0.10' },
183 silly resolved devDependencies:
183 silly resolved { browserify: '1.10.9',
183 silly resolved traverse: '~0.6.3',
183 silly resolved 'coffee-script': '~1.3.3',
183 silly resolved express: '3.2.5',
183 silly resolved temp: '~0.4.0',
183 silly resolved 'ps-tree': '~0.0.2',
183 silly resolved vows: '~0.6.2' },
183 silly resolved licenses: { type: 'MIT', url: 'http://www.opensource.org/licenses/MIT' },
183 silly resolved scripts: { test: 'cake test' },
183 silly resolved readme: '# PhantomJS bridge for NodeJS [](http://travis-ci.org/endel/phantomjs-node)\n\n"It sure would be neat if [PhantomJS](http://www.phantomjs.org/) was a NodeJS module", I hear you say. Well, wait no longer! This node module implements a nauseously clever bridge between Phantom and Node, so that you can use all your favourite PhantomJS functions without leaving NPM behind and living in a cave.\n\n## Installation\n\nFirst, make sure PhantomJS is installed. This module expects the ```phantomjs``` binary to be in PATH somewhere. In other words, type this:\n\n $ phantomjs\n\nIf that works, so will phantomjs-node. It\'s only been tested with PhantomJS 1.3, and almost certainly doesn\'t work with anything older.\n\nInstall it like this:\n\n npm install phantom\n \n \nFor a brief introduction continue reading, otherwise **go to the [Wiki page](https://github.com/sgentle/phantomjs-node/wiki) for more information!**\n\n\n## How do I use it?\n\nUse it like this in Coffeescript:\n\n```coffeescript\nphantom = require \'phantom\'\n\nphantom.create (ph) ->\n ph.createPage (page) ->\n page.open "http://www.google.com", (status) ->\n console.log "opened google? ", status\n page.evaluate (-> document.title), (result) ->\n console.log \'Page title is \' + result\n ph.exit()\n```\n\nIn Javascript, do the same but add parentheses and curly braces everywhere.\n\nYou can use all the methods listed on the [PhantomJS API page](https://github.com/ariya/phantomjs/wiki/API-Reference)\n\n\nDue to the async nature of the bridge, some things have changed, though:\n\n* Return values (ie, of ```page.evaluate```) are returned in a callback instead\n* ```page.render()``` takes a callback so you can tell when it\'s done writing the file\n* Properties can\'t be get/set directly, instead use ```p.get(\'version\', callback)``` or ```p.page.set(\'viewportSize\', {width:640,height:480})```, etc. Nested objects can be accessed by including dots in keys, such as ```p.page.set(\'settings.loadImages\', false)```\n* Callbacks can\'t be set directly, instead use ```page.set(\'callbackName\', callback)```, e.g. ```page.set(\'onLoadFinished\', function(success) {})```\n* onResourceRequested takes a function that executes in the scope of phantom which has access to ```request.abort()```, ```request.changeUrl(url)```, and ```request.setHeader(key,value)```. The second argument is the callback which can execute in the scope of your code, with access to just the requestData. e.g.\n```\npage.onResourceRequested(\n\tfunction(requestData, request) { request.abort(); },\n\tfunction(requestData) { console.log(requestData.url) }\n);\n```\n\n```ph.createPage()``` makes new PhantomJS WebPage objects, so use that if you want to open lots of webpages. You can also make multiple phantomjs processes by calling ```phantom.create(\'flags\', { port: someDiffNumber})``` multiple times, so if you need that for some crazy reason, knock yourself out!\n\nYou can also pass command line switches to the phantomjs process by specifying additional args to ```phantom.create()```, eg:\n\n```coffeescript\nphantom.create \'--load-images=no\', \'--local-to-remote-url-access=yes\', (page) ->\n```\n\n##Note for Mac users\n\nPhantom requires you to have the XCode Command Line Tools installed on your box, or else you will get some nasty errors (`xcode` not found or `make` not found). If you haven\'t already, simply install XCode through the App Store, then [install the command line tools](http://stackoverflow.com/questions/6767481/where-can-i-find-make-program-for-mac-os-x-lion). \n\n## How does it work?\n\nDon\'t ask. The things these eyes have seen.\n\n## No really, how does it work?\n\nI will answer that question with a question. How do you communicate with a process that doesn\'t support shared memory, sockets, FIFOs, or standard input?\n\nWell, there\'s one thing PhantomJS does support, and that\'s opening webpages. In fact, it\'s really good at opening web pages. So we communicate with PhantomJS by spinning up an instance of ExpressJS, opening Phantom in a subprocess, and pointing it at a special webpage that turns socket.io messages into ```alert()``` calls. Those ```alert()``` calls are picked up by Phantom and there you go!\n\nThe communication itself happens via James Halliday\'s fantastic [dnode](https://github.com/substack/dnode) library, which fortunately works well enough when combined with [browserify](https://github.com/substack/node-browserify) to run straight out of PhantomJS\'s pidgin Javascript environment.\n\nIf you\'d like to hack on phantom, please do! You can run the tests with ```cake test``` or ```npm test```, and rebuild the coffeescript/browserified code with ```cake build```. You might need to ```npm install -g coffee-script``` for cake to work.\n',
183 silly resolved readmeFilename: 'README.markdown',
183 silly resolved bugs: { url: 'https://github.com/sgentle/phantomjs-node/issues' },
183 silly resolved _id: 'phantom@0.5.7',
183 silly resolved dist: { shasum: 'c190571223c3748aa6110dd1a1f397a589fa2bbe' },
183 silly resolved _from: 'phantom@latest',
183 silly resolved _resolved: 'https://registry.npmjs.org/phantom/-/phantom-0.5.7.tgz' } ]
184 info install phantom@0.5.7 into C:\Sites\node_projects\DataDrivenAlerts
185 info installOne phantom@0.5.7
186 info C:\Sites\node_projects\DataDrivenAlerts\node_modules\phantom unbuild
187 verbose tar unpack C:\Users\mkovner\AppData\Roaming\npm-cache\phantom\0.5.7\package.tgz
188 silly lockFile c6af4d2f-rivenAlerts-node-modules-phantom tar://C:\Sites\node_projects\DataDrivenAlerts\node_modules\phantom
189 verbose lock tar://C:\Sites\node_projects\DataDrivenAlerts\node_modules\phantom C:\Users\mkovner\AppData\Roaming\npm-cache\c6af4d2f-rivenAlerts-node-modules-phantom.lock
190 silly lockFile 9bc69f20--cache-phantom-0-5-7-package-tgz tar://C:\Users\mkovner\AppData\Roaming\npm-cache\phantom\0.5.7\package.tgz
191 verbose lock tar://C:\Users\mkovner\AppData\Roaming\npm-cache\phantom\0.5.7\package.tgz C:\Users\mkovner\AppData\Roaming\npm-cache\9bc69f20--cache-phantom-0-5-7-package-tgz.lock
192 silly gunzTarPerm modes [ '755', '644' ]
193 silly gunzTarPerm extractEntry package.json
194 silly gunzTarPerm modified mode [ 'package.json', 438, 420 ]
195 silly gunzTarPerm extractEntry .npmignore
196 silly gunzTarPerm modified mode [ '.npmignore', 438, 420 ]
197 silly gunzTarPerm extractEntry phantom.js
198 silly gunzTarPerm modified mode [ 'phantom.js', 438, 420 ]
199 silly gunzTarPerm extractEntry pre_shim.js
200 silly gunzTarPerm modified mode [ 'pre_shim.js', 438, 420 ]
201 silly gunzTarPerm extractEntry shim.js
202 silly gunzTarPerm modified mode [ 'shim.js', 438, 420 ]
203 silly gunzTarPerm extractEntry phantom.coffee
204 silly gunzTarPerm modified mode [ 'phantom.coffee', 438, 420 ]
205 silly gunzTarPerm extractEntry .travis.yml
206 silly gunzTarPerm modified mode [ '.travis.yml', 438, 420 ]
207 silly gunzTarPerm extractEntry Cakefile
208 silly gunzTarPerm modified mode [ 'Cakefile', 438, 420 ]
209 silly gunzTarPerm extractEntry README.markdown
210 silly gunzTarPerm modified mode [ 'README.markdown', 438, 420 ]
211 silly gunzTarPerm extractEntry samples/test_phantom.js
212 silly gunzTarPerm modified mode [ 'samples/test_phantom.js', 438, 420 ]
213 silly gunzTarPerm extractEntry samples/test_phantom_4.coffee
214 silly gunzTarPerm modified mode [ 'samples/test_phantom_4.coffee', 438, 420 ]
215 silly gunzTarPerm extractEntry samples/test_phantom_10.coffee
216 silly gunzTarPerm modified mode [ 'samples/test_phantom_10.coffee', 438, 420 ]
217 silly gunzTarPerm extractEntry samples/test_phantom_2.coffee
218 silly gunzTarPerm modified mode [ 'samples/test_phantom_2.coffee', 438, 420 ]
219 silly gunzTarPerm extractEntry samples/test_phantom_3.coffee
220 silly gunzTarPerm modified mode [ 'samples/test_phantom_3.coffee', 438, 420 ]
221 silly gunzTarPerm extractEntry samples/test_phantom.coffee
222 silly gunzTarPerm modified mode [ 'samples/test_phantom.coffee', 438, 420 ]
223 silly gunzTarPerm extractEntry samples/test_phantom_5.coffee
224 silly gunzTarPerm modified mode [ 'samples/test_phantom_5.coffee', 438, 420 ]
225 silly gunzTarPerm extractEntry samples/test_phantom_6.coffee
226 silly gunzTarPerm modified mode [ 'samples/test_phantom_6.coffee', 438, 420 ]
227 silly gunzTarPerm extractEntry samples/test_phantom_7.coffee
228 silly gunzTarPerm modified mode [ 'samples/test_phantom_7.coffee', 438, 420 ]
229 silly gunzTarPerm extractEntry samples/test_phantom_8.coffee
230 silly gunzTarPerm modified mode [ 'samples/test_phantom_8.coffee', 438, 420 ]
231 silly gunzTarPerm extractEntry samples/test_phantom_9.coffee
232 silly gunzTarPerm modified mode [ 'samples/test_phantom_9.coffee', 438, 420 ]
233 silly gunzTarPerm extractEntry shim.coffee
234 silly gunzTarPerm modified mode [ 'shim.coffee', 438, 420 ]
235 silly gunzTarPerm extractEntry .idea/.name
236 silly gunzTarPerm modified mode [ '.idea/.name', 438, 420 ]
237 silly gunzTarPerm extractEntry .idea/encodings.xml
238 silly gunzTarPerm modified mode [ '.idea/encodings.xml', 438, 420 ]
239 silly gunzTarPerm extractEntry .idea/misc.xml
240 silly gunzTarPerm modified mode [ '.idea/misc.xml', 438, 420 ]
241 silly gunzTarPerm extractEntry .idea/modules.xml
242 silly gunzTarPerm modified mode [ '.idea/modules.xml', 438, 420 ]
243 silly gunzTarPerm extractEntry .idea/phantomjs-node.iml
244 silly gunzTarPerm modified mode [ '.idea/phantomjs-node.iml', 438, 420 ]
245 silly gunzTarPerm extractEntry .idea/scopes/scope_settings.xml
246 silly gunzTarPerm modified mode [ '.idea/scopes/scope_settings.xml', 438, 420 ]
247 silly gunzTarPerm extractEntry .idea/vcs.xml
248 silly gunzTarPerm modified mode [ '.idea/vcs.xml', 438, 420 ]
249 silly gunzTarPerm extractEntry .idea/workspace.xml
250 silly gunzTarPerm modified mode [ '.idea/workspace.xml', 438, 420 ]
251 silly gunzTarPerm extractEntry test/inject.js
252 silly gunzTarPerm modified mode [ 'test/inject.js', 438, 420 ]
253 silly gunzTarPerm extractEntry test/adv.coffee
254 silly gunzTarPerm modified mode [ 'test/adv.coffee', 438, 420 ]
255 silly gunzTarPerm extractEntry test/basic.coffee
256 silly gunzTarPerm modified mode [ 'test/basic.coffee', 438, 420 ]
257 silly gunzTarPerm extractEntry test/page.coffee
258 silly gunzTarPerm modified mode [ 'test/page.coffee', 438, 420 ]
259 silly gunzTarPerm extractEntry test/test.gif
260 silly gunzTarPerm modified mode [ 'test/test.gif', 438, 420 ]
261 silly lockFile c6af4d2f-rivenAlerts-node-modules-phantom tar://C:\Sites\node_projects\DataDrivenAlerts\node_modules\phantom
262 silly lockFile c6af4d2f-rivenAlerts-node-modules-phantom tar://C:\Sites\node_projects\DataDrivenAlerts\node_modules\phantom
263 silly lockFile 9bc69f20--cache-phantom-0-5-7-package-tgz tar://C:\Users\mkovner\AppData\Roaming\npm-cache\phantom\0.5.7\package.tgz
264 silly lockFile 9bc69f20--cache-phantom-0-5-7-package-tgz tar://C:\Users\mkovner\AppData\Roaming\npm-cache\phantom\0.5.7\package.tgz
265 info preinstall phantom@0.5.7
266 verbose readDependencies using package.json deps
267 verbose readDependencies using package.json deps
268 verbose cache add [ 'dnode@~1.0.5', null ]
269 verbose cache add name=undefined spec="dnode@~1.0.5" args=["dnode@~1.0.5",null]
270 verbose parsed url { protocol: null,
270 verbose parsed url slashes: null,
270 verbose parsed url auth: null,
270 verbose parsed url host: null,
270 verbose parsed url port: null,
270 verbose parsed url hostname: null,
270 verbose parsed url hash: null,
270 verbose parsed url search: null,
270 verbose parsed url query: null,
270 verbose parsed url pathname: 'dnode@~1.0.5',
270 verbose parsed url path: 'dnode@~1.0.5',
270 verbose parsed url href: 'dnode@~1.0.5' }
271 verbose cache add name="dnode" spec="~1.0.5" args=["dnode","~1.0.5"]
272 verbose parsed url { protocol: null,
272 verbose parsed url slashes: null,
272 verbose parsed url auth: null,
272 verbose parsed url host: null,
272 verbose parsed url port: null,
272 verbose parsed url hostname: null,
272 verbose parsed url hash: null,
272 verbose parsed url search: null,
272 verbose parsed url query: null,
272 verbose parsed url pathname: '~1.0.5',
272 verbose parsed url path: '~1.0.5',
272 verbose parsed url href: '~1.0.5' }
273 verbose addNamed [ 'dnode', '~1.0.5' ]
274 verbose addNamed [ null, '>=1.0.5-0 <1.1.0-0' ]
275 silly lockFile 93435f57-dnode-1-0-5 dnode@~1.0.5
276 verbose lock dnode@~1.0.5 C:\Users\mkovner\AppData\Roaming\npm-cache\93435f57-dnode-1-0-5.lock
277 verbose cache add [ 'shoe@~0.0.10', null ]
278 verbose cache add name=undefined spec="shoe@~0.0.10" args=["shoe@~0.0.10",null]
279 verbose parsed url { protocol: null,
279 verbose parsed url slashes: null,
279 verbose parsed url auth: null,
279 verbose parsed url host: null,
279 verbose parsed url port: null,
279 verbose parsed url hostname: null,
279 verbose parsed url hash: null,
279 verbose parsed url search: null,
279 verbose parsed url query: null,
279 verbose parsed url pathname: 'shoe@~0.0.10',
279 verbose parsed url path: 'shoe@~0.0.10',
279 verbose parsed url href: 'shoe@~0.0.10' }
280 verbose cache add name="shoe" spec="~0.0.10" args=["shoe","~0.0.10"]
281 verbose parsed url { protocol: null,
281 verbose parsed url slashes: null,
281 verbose parsed url auth: null,
281 verbose parsed url host: null,
281 verbose parsed url port: null,
281 verbose parsed url hostname: null,
281 verbose parsed url hash: null,
281 verbose parsed url search: null,
281 verbose parsed url query: null,
281 verbose parsed url pathname: '~0.0.10',
281 verbose parsed url path: '~0.0.10',
281 verbose parsed url href: '~0.0.10' }
282 verbose addNamed [ 'shoe', '~0.0.10' ]
283 verbose addNamed [ null, '>=0.0.10-0 <0.1.0-0' ]
284 silly lockFile cf1a1e68-shoe-0-0-10 shoe@~0.0.10
285 verbose lock shoe@~0.0.10 C:\Users\mkovner\AppData\Roaming\npm-cache\cf1a1e68-shoe-0-0-10.lock
286 silly addNameRange { name: 'dnode', range: '>=1.0.5-0 <1.1.0-0', hasData: false }
287 verbose url raw dnode
288 verbose url resolving [ 'https://registry.npmjs.org/', './dnode' ]
289 verbose url resolved https://registry.npmjs.org/dnode
290 info trying registry request attempt 1 at 18:02:07
291 http GET https://registry.npmjs.org/dnode
292 silly addNameRange { name: 'shoe', range: '>=0.0.10-0 <0.1.0-0', hasData: false }
293 verbose url raw shoe
294 verbose url resolving [ 'https://registry.npmjs.org/', './shoe' ]
295 verbose url resolved https://registry.npmjs.org/shoe
296 info trying registry request attempt 1 at 18:02:07
297 http GET https://registry.npmjs.org/shoe
298 http 200 https://registry.npmjs.org/shoe
299 silly registry.get cb [ 200,
299 silly registry.get { date: 'Thu, 03 Apr 2014 01:02:07 GMT',
299 silly registry.get server: 'CouchDB/1.5.0 (Erlang OTP/R14B04)',
299 silly registry.get etag: '"2VMP4B6PRJGGQWYUYN4NA4W9Q"',
299 silly registry.get 'content-type': 'application/json',
299 silly registry.get via: '1.1 varnish',
299 silly registry.get 'cache-control': 'max-age=1',
299 silly registry.get 'content-length': '76994',
299 silly registry.get 'accept-ranges': 'bytes',
299 silly registry.get age: '595',
299 silly registry.get 'x-served-by': 'cache-v42-ASH, cache-lax1425-LAX',
299 silly registry.get 'x-cache': 'MISS, MISS',
299 silly registry.get 'x-cache-hits': '0, 0',
299 silly registry.get 'x-timer': 'S1396486332.628927231,VS0,VS33,VE120,VE595091',
299 silly registry.get vary: 'Accept',
299 silly registry.get 'keep-alive': 'timeout=10, max=50',
299 silly registry.get connection: 'Keep-Alive' } ]
300 silly addNameRange number 2 { name: 'shoe', range: '>=0.0.10-0 <0.1.0-0', hasData: true }
301 silly addNameRange versions [ 'shoe',
301 silly addNameRange [ '0.0.0',
301 silly addNameRange '0.0.1',
301 silly addNameRange '0.0.2',
301 silly addNameRange '0.0.3',
301 silly addNameRange '0.0.4',
301 silly addNameRange '0.0.5',
301 silly addNameRange '0.0.6',
301 silly addNameRange '0.0.7',
301 silly addNameRange '0.0.9',
301 silly addNameRange '0.0.10',
301 silly addNameRange '0.0.11',
301 silly addNameRange '0.0.12',
301 silly addNameRange '0.0.13',
301 silly addNameRange '0.0.14',
301 silly addNameRange '0.0.15' ] ]
302 verbose addNamed [ 'shoe', '0.0.15' ]
303 verbose addNamed [ '0.0.15', '0.0.15' ]
304 silly lockFile c068bcab-shoe-0-0-15 shoe@0.0.15
305 verbose lock shoe@0.0.15 C:\Users\mkovner\AppData\Roaming\npm-cache\c068bcab-shoe-0-0-15.lock
306 silly lockFile 70c310fb-y-npmjs-org-shoe-shoe-0-0-15-tgz https://registry.npmjs.org/shoe/-/shoe-0.0.15.tgz
307 verbose lock https://registry.npmjs.org/shoe/-/shoe-0.0.15.tgz C:\Users\mkovner\AppData\Roaming\npm-cache\70c310fb-y-npmjs-org-shoe-shoe-0-0-15-tgz.lock
308 verbose addRemoteTarball [ 'https://registry.npmjs.org/shoe/-/shoe-0.0.15.tgz',
308 verbose addRemoteTarball 'baed8f1a7f08f530b66f0914287fcaa65b12443a' ]
309 info retry fetch attempt 1 at 18:02:07
310 verbose fetch to= C:\Users\mkovner\AppData\Local\Temp\npm-12848-F9E1kxLC\1396486927950-0.7237317881081253\tmp.tgz
311 http GET https://registry.npmjs.org/shoe/-/shoe-0.0.15.tgz
312 http 200 https://registry.npmjs.org/dnode
313 silly registry.get cb [ 200,
313 silly registry.get { date: 'Thu, 03 Apr 2014 01:02:07 GMT',
313 silly registry.get server: 'CouchDB/1.5.0 (Erlang OTP/R14B04)',
313 silly registry.get etag: '"DDV0N6X9GA3WN1Q2ANKBZJ3LD"',
313 silly registry.get 'content-type': 'application/json',
313 silly registry.get via: '1.1 varnish',
313 silly registry.get 'cache-control': 'max-age=1',
313 silly registry.get 'content-length': '134542',
313 silly registry.get 'accept-ranges': 'bytes',
313 silly registry.get age: '1455',
313 silly registry.get 'x-served-by': 'cache-v42-ASH, cache-lax1429-LAX',
313 silly registry.get 'x-cache': 'HIT, MISS',
313 silly registry.get 'x-cache-hits': '1, 0',
313 silly registry.get 'x-timer': 'S1396477166.312183380,VS0,VS31,VE125,VE9761413',
313 silly registry.get vary: 'Accept',
313 silly registry.get 'keep-alive': 'timeout=10, max=50',
313 silly registry.get connection: 'Keep-Alive' } ]
314 silly addNameRange number 2 { name: 'dnode', range: '>=1.0.5-0 <1.1.0-0', hasData: true }
315 silly addNameRange versions [ 'dnode',
315 silly addNameRange [ '0.2.10',
315 silly addNameRange '0.2.11',
315 silly addNameRange '0.2.12',
315 silly addNameRange '0.2.13',
315 silly addNameRange '0.2.4',
315 silly addNameRange '0.2.5',
315 silly addNameRange '0.2.6',
315 silly addNameRange '0.2.7',
315 silly addNameRange '0.2.9',
315 silly addNameRange '0.3.0',
315 silly addNameRange '0.3.1',
315 silly addNameRange '0.3.2',
315 silly addNameRange '0.3.3',
315 silly addNameRange '0.3.5',
315 silly addNameRange '0.3.6',
315 silly addNameRange '0.3.7',
315 silly addNameRange '0.3.8',
315 silly addNameRange '0.3.9',
315 silly addNameRange '0.3.10',
315 silly addNameRange '0.3.11',
315 silly addNameRange '0.4.0',
315 silly addNameRange '0.4.1',
315 silly addNameRange '0.4.2',
315 silly addNameRange '0.4.3',
315 silly addNameRange '0.4.4',
315 silly addNameRange '0.4.5',
315 silly addNameRange '0.5.0',
315 silly addNameRange '0.5.1',
315 silly addNameRange '0.5.2',
315 silly addNameRange '0.5.3',
315 silly addNameRange '0.5.4',
315 silly addNameRange '0.5.5',
315 silly addNameRange '0.5.6',
315 silly addNameRange '0.5.7',
315 silly addNameRange '0.5.8',
315 silly addNameRange '0.5.9',
315 silly addNameRange '0.6.0',
315 silly addNameRange '0.6.1',
315 silly addNameRange '0.6.2',
315 silly addNameRange '0.6.3',
315 silly addNameRange '0.6.4',
315 silly addNameRange '0.6.5',
315 silly addNameRange '0.6.6',
315 silly addNameRange '0.6.7',
315 silly addNameRange '0.6.8',
315 silly addNameRange '0.6.9',
315 silly addNameRange '0.6.10',
315 silly addNameRange '0.6.11',
315 silly addNameRange '0.6.12',
315 silly addNameRange '0.7.0',
315 silly addNameRange '0.7.1',
315 silly addNameRange '0.7.2',
315 silly addNameRange '0.7.3',
315 silly addNameRange '0.7.4',
315 silly addNameRange '0.7.5',
315 silly addNameRange '0.8.0',
315 silly addNameRange '0.8.1',
315 silly addNameRange '0.8.2',
315 silly addNameRange '0.9.0',
315 silly addNameRange '0.9.1',
315 silly addNameRange '0.9.2',
315 silly addNameRange '0.9.3',
315 silly addNameRange '0.9.4',
315 silly addNameRange '0.9.5',
315 silly addNameRange '0.9.6',
315 silly addNameRange '0.9.8',
315 silly addNameRange '0.9.9',
315 silly addNameRange '0.9.10',
315 silly addNameRange '0.9.11',
315 silly addNameRange '0.9.12',
315 silly addNameRange '1.0.0',
315 silly addNameRange '1.0.1',
315 silly addNameRange '1.0.2',
315 silly addNameRange '1.0.3',
315 silly addNameRange '1.0.4',
315 silly addNameRange '1.0.5',
315 silly addNameRange '1.1.0',
315 silly addNameRange '1.2.0' ] ]
316 verbose addNamed [ 'dnode', '1.0.5' ]
317 verbose addNamed [ '1.0.5', '1.0.5' ]
318 silly lockFile 74d688ce-dnode-1-0-5 dnode@1.0.5
319 verbose lock dnode@1.0.5 C:\Users\mkovner\AppData\Roaming\npm-cache\74d688ce-dnode-1-0-5.lock
320 silly lockFile 81fdf64a--npmjs-org-dnode-dnode-1-0-5-tgz https://registry.npmjs.org/dnode/-/dnode-1.0.5.tgz
321 verbose lock https://registry.npmjs.org/dnode/-/dnode-1.0.5.tgz C:\Users\mkovner\AppData\Roaming\npm-cache\81fdf64a--npmjs-org-dnode-dnode-1-0-5-tgz.lock
322 verbose addRemoteTarball [ 'https://registry.npmjs.org/dnode/-/dnode-1.0.5.tgz',
322 verbose addRemoteTarball '6c9f78eaf482eb525fa14de60c2652a88e03d59c' ]
323 info retry fetch attempt 1 at 18:02:08
324 verbose fetch to= C:\Users\mkovner\AppData\Local\Temp\npm-12848-F9E1kxLC\1396486928045-0.9151484365575016\tmp.tgz
325 http GET https://registry.npmjs.org/dnode/-/dnode-1.0.5.tgz
326 http 200 https://registry.npmjs.org/shoe/-/shoe-0.0.15.tgz
327 verbose tar unpack C:\Users\mkovner\AppData\Local\Temp\npm-12848-F9E1kxLC\1396486927950-0.7237317881081253\tmp.tgz
328 silly lockFile 346d0785-27950-0-7237317881081253-package tar://C:\Users\mkovner\AppData\Local\Temp\npm-12848-F9E1kxLC\1396486927950-0.7237317881081253\package
329 verbose lock tar://C:\Users\mkovner\AppData\Local\Temp\npm-12848-F9E1kxLC\1396486927950-0.7237317881081253\package C:\Users\mkovner\AppData\Roaming\npm-cache\346d0785-27950-0-7237317881081253-package.lock
330 silly lockFile 94d0ad80-27950-0-7237317881081253-tmp-tgz tar://C:\Users\mkovner\AppData\Local\Temp\npm-12848-F9E1kxLC\1396486927950-0.7237317881081253\tmp.tgz
331 verbose lock tar://C:\Users\mkovner\AppData\Local\Temp\npm-12848-F9E1kxLC\1396486927950-0.7237317881081253\tmp.tgz C:\Users\mkovner\AppData\Roaming\npm-cache\94d0ad80-27950-0-7237317881081253-tmp-tgz.lock
332 silly gunzTarPerm modes [ '755', '644' ]
333 silly gunzTarPerm extractEntry package.json
334 silly gunzTarPerm extractEntry .npmignore
335 silly gunzTarPerm extractEntry LICENSE
336 silly gunzTarPerm extractEntry browser.js
337 silly gunzTarPerm extractEntry index.js
338 silly gunzTarPerm extractEntry example/dnode/package.json
339 silly gunzTarPerm extractEntry example/dnode/client.js
340 silly gunzTarPerm extractEntry example/dnode/server.js
341 silly gunzTarPerm extractEntry example/dnode/Makefile
342 silly gunzTarPerm extractEntry example/dnode/static/index.html
343 silly gunzTarPerm extractEntry example/invert/package.json
344 silly gunzTarPerm extractEntry example/invert/client.js
345 silly gunzTarPerm extractEntry example/invert/server.js
346 silly gunzTarPerm extractEntry example/invert/Makefile
347 http 200 https://registry.npmjs.org/dnode/-/dnode-1.0.5.tgz
348 silly gunzTarPerm extractEntry example/invert/static/index.html
349 silly gunzTarPerm extractEntry readme.markdown
350 silly gunzTarPerm extractEntry test/browser.js
351 silly gunzTarPerm extractEntry test/server.js
352 silly gunzTarPerm extractEntry node_modules/sockjs-client/package.json
353 silly gunzTarPerm extractEntry node_modules/sockjs-client/.npmignore
354 silly gunzTarPerm extractEntry node_modules/sockjs-client/README.md
355 silly gunzTarPerm extractEntry node_modules/sockjs-client/sockjs.js
356 silly gunzTarPerm extractEntry node_modules/sockjs-client/Makefile
357 silly gunzTarPerm extractEntry node_modules/sockjs-client/version
358 silly gunzTarPerm extractEntry node_modules/sockjs-client/COPYING
359 silly gunzTarPerm extractEntry node_modules/sockjs-client/bin/render.coffee
360 silly gunzTarPerm extractEntry node_modules/sockjs-client/bin/run_testling.sh
361 silly gunzTarPerm extractEntry node_modules/sockjs-client/lib/all.js
362 silly gunzTarPerm extractEntry node_modules/sockjs-client/lib/sockjs.js
363 silly gunzTarPerm extractEntry node_modules/sockjs-client/lib/test-hooks.js
364 silly gunzTarPerm extractEntry node_modules/sockjs-client/lib/trans-iframe-eventsource.js
365 silly gunzTarPerm extractEntry node_modules/sockjs-client/lib/trans-iframe-htmlfile.js
366 silly gunzTarPerm extractEntry node_modules/sockjs-client/lib/simpleevent.js
367 silly gunzTarPerm extractEntry node_modules/sockjs-client/lib/trans-iframe-xhr-polling.js
368 silly gunzTarPerm extractEntry node_modules/sockjs-client/lib/trans-iframe.js
369 silly gunzTarPerm extractEntry node_modules/sockjs-client/lib/trans-jsonp-polling.js
370 silly gunzTarPerm extractEntry node_modules/sockjs-client/lib/trans-jsonp-receiver.js
371 silly gunzTarPerm extractEntry node_modules/sockjs-client/lib/trans-polling.js
372 silly gunzTarPerm extractEntry node_modules/sockjs-client/lib/reventtarget.js
373 silly gunzTarPerm extractEntry node_modules/sockjs-client/lib/trans-receiver-eventsource.js
374 silly gunzTarPerm extractEntry node_modules/sockjs-client/lib/json2.min.js
375 silly gunzTarPerm extractEntry node_modules/sockjs-client/lib/trans-receiver-htmlfile.js
376 silly gunzTarPerm extractEntry node_modules/sockjs-client/lib/info.js
377 silly gunzTarPerm extractEntry node_modules/sockjs-client/lib/trans-receiver-xhr.js
378 silly gunzTarPerm extractEntry node_modules/sockjs-client/lib/index.js
379 silly gunzTarPerm extractEntry node_modules/sockjs-client/lib/trans-sender.js
380 silly gunzTarPerm extractEntry node_modules/sockjs-client/lib/eventemitter.js
381 silly gunzTarPerm extractEntry node_modules/sockjs-client/lib/trans-websocket.js
382 silly gunzTarPerm extractEntry node_modules/sockjs-client/lib/dom2.js
383 silly gunzTarPerm extractEntry node_modules/sockjs-client/lib/trans-xhr.js
384 silly gunzTarPerm extractEntry node_modules/sockjs-client/lib/dom.js
385 silly gunzTarPerm extractEntry node_modules/sockjs-client/lib/utils.js
386 silly gunzTarPerm extractEntry node_modules/sockjs-client/lib/trans-iframe-within.js
387 silly gunzTarPerm extractEntry node_modules/sockjs-client/Changelog
388 silly gunzTarPerm extractEntry node_modules/sockjs-client/LICENSE-MIT-SockJS
389 silly gunzTarPerm extractEntry node_modules/sockjs-client/VERSION-GEN
390 silly lockFile 346d0785-27950-0-7237317881081253-package tar://C:\Users\mkovner\AppData\Local\Temp\npm-12848-F9E1kxLC\1396486927950-0.7237317881081253\package
391 silly lockFile 346d0785-27950-0-7237317881081253-package tar://C:\Users\mkovner\AppData\Local\Temp\npm-12848-F9E1kxLC\1396486927950-0.7237317881081253\package
392 silly lockFile 94d0ad80-27950-0-7237317881081253-tmp-tgz tar://C:\Users\mkovner\AppData\Local\Temp\npm-12848-F9E1kxLC\1396486927950-0.7237317881081253\tmp.tgz
393 silly lockFile 94d0ad80-27950-0-7237317881081253-tmp-tgz tar://C:\Users\mkovner\AppData\Local\Temp\npm-12848-F9E1kxLC\1396486927950-0.7237317881081253\tmp.tgz
394 verbose tar pack [ 'C:\\Users\\mkovner\\AppData\\Roaming\\npm-cache\\shoe\\0.0.15\\package.tgz',
394 verbose tar pack 'C:\\Users\\mkovner\\AppData\\Local\\Temp\\npm-12848-F9E1kxLC\\1396486927950-0.7237317881081253\\package' ]
395 verbose tarball C:\Users\mkovner\AppData\Roaming\npm-cache\shoe\0.0.15\package.tgz
396 verbose folder C:\Users\mkovner\AppData\Local\Temp\npm-12848-F9E1kxLC\1396486927950-0.7237317881081253\package
397 silly lockFile 346d0785-27950-0-7237317881081253-package tar://C:\Users\mkovner\AppData\Local\Temp\npm-12848-F9E1kxLC\1396486927950-0.7237317881081253\package
398 verbose lock tar://C:\Users\mkovner\AppData\Local\Temp\npm-12848-F9E1kxLC\1396486927950-0.7237317881081253\package C:\Users\mkovner\AppData\Roaming\npm-cache\346d0785-27950-0-7237317881081253-package.lock
399 silly lockFile dc8f40aa-pm-cache-shoe-0-0-15-package-tgz tar://C:\Users\mkovner\AppData\Roaming\npm-cache\shoe\0.0.15\package.tgz
400 verbose lock tar://C:\Users\mkovner\AppData\Roaming\npm-cache\shoe\0.0.15\package.tgz C:\Users\mkovner\AppData\Roaming\npm-cache\dc8f40aa-pm-cache-shoe-0-0-15-package-tgz.lock
401 silly lockFile 346d0785-27950-0-7237317881081253-package tar://C:\Users\mkovner\AppData\Local\Temp\npm-12848-F9E1kxLC\1396486927950-0.7237317881081253\package
402 silly lockFile 346d0785-27950-0-7237317881081253-package tar://C:\Users\mkovner\AppData\Local\Temp\npm-12848-F9E1kxLC\1396486927950-0.7237317881081253\package
403 silly lockFile dc8f40aa-pm-cache-shoe-0-0-15-package-tgz tar://C:\Users\mkovner\AppData\Roaming\npm-cache\shoe\0.0.15\package.tgz
404 silly lockFile dc8f40aa-pm-cache-shoe-0-0-15-package-tgz tar://C:\Users\mkovner\AppData\Roaming\npm-cache\shoe\0.0.15\package.tgz
405 silly lockFile 4d15b73a-ng-npm-cache-shoe-0-0-15-package C:\Users\mkovner\AppData\Roaming\npm-cache\shoe\0.0.15\package
406 verbose lock C:\Users\mkovner\AppData\Roaming\npm-cache\shoe\0.0.15\package C:\Users\mkovner\AppData\Roaming\npm-cache\4d15b73a-ng-npm-cache-shoe-0-0-15-package.lock
407 silly lockFile 4d15b73a-ng-npm-cache-shoe-0-0-15-package C:\Users\mkovner\AppData\Roaming\npm-cache\shoe\0.0.15\package
408 silly lockFile 4d15b73a-ng-npm-cache-shoe-0-0-15-package C:\Users\mkovner\AppData\Roaming\npm-cache\shoe\0.0.15\package
409 verbose tar unpack C:\Users\mkovner\AppData\Roaming\npm-cache\shoe\0.0.15\package.tgz
410 silly lockFile c91c8f33-ng-npm-cache-shoe-0-0-15-package tar://C:\Users\mkovner\AppData\Roaming\npm-cache\shoe\0.0.15\package
411 verbose lock tar://C:\Users\mkovner\AppData\Roaming\npm-cache\shoe\0.0.15\package C:\Users\mkovner\AppData\Roaming\npm-cache\c91c8f33-ng-npm-cache-shoe-0-0-15-package.lock
412 silly lockFile dc8f40aa-pm-cache-shoe-0-0-15-package-tgz tar://C:\Users\mkovner\AppData\Roaming\npm-cache\shoe\0.0.15\package.tgz
413 verbose lock tar://C:\Users\mkovner\AppData\Roaming\npm-cache\shoe\0.0.15\package.tgz C:\Users\mkovner\AppData\Roaming\npm-cache\dc8f40aa-pm-cache-shoe-0-0-15-package-tgz.lock
414 silly gunzTarPerm modes [ '755', '644' ]
415 silly gunzTarPerm extractEntry package.json
416 silly gunzTarPerm modified mode [ 'package.json', 438, 420 ]
417 silly gunzTarPerm extractEntry .npmignore
418 silly gunzTarPerm modified mode [ '.npmignore', 438, 420 ]
419 silly gunzTarPerm extractEntry LICENSE
420 silly gunzTarPerm modified mode [ 'LICENSE', 438, 420 ]
421 silly gunzTarPerm extractEntry browser.js
422 silly gunzTarPerm modified mode [ 'browser.js', 438, 420 ]
423 silly gunzTarPerm extractEntry index.js
424 silly gunzTarPerm modified mode [ 'index.js', 438, 420 ]
425 silly gunzTarPerm extractEntry example/dnode/package.json
426 silly gunzTarPerm modified mode [ 'example/dnode/package.json', 438, 420 ]
427 silly gunzTarPerm extractEntry example/dnode/client.js
428 silly gunzTarPerm modified mode [ 'example/dnode/client.js', 438, 420 ]
429 silly gunzTarPerm extractEntry example/dnode/server.js
430 silly gunzTarPerm modified mode [ 'example/dnode/server.js', 438, 420 ]
431 silly gunzTarPerm extractEntry example/dnode/Makefile
432 silly gunzTarPerm modified mode [ 'example/dnode/Makefile', 438, 420 ]
433 silly gunzTarPerm extractEntry example/dnode/static/index.html
434 silly gunzTarPerm modified mode [ 'example/dnode/static/index.html', 438, 420 ]
435 silly gunzTarPerm extractEntry example/invert/package.json
436 silly gunzTarPerm modified mode [ 'example/invert/package.json', 438, 420 ]
437 silly gunzTarPerm extractEntry example/invert/client.js
438 silly gunzTarPerm modified mode [ 'example/invert/client.js', 438, 420 ]
439 silly gunzTarPerm extractEntry example/invert/server.js
440 silly gunzTarPerm modified mode [ 'example/invert/server.js', 438, 420 ]
441 silly gunzTarPerm extractEntry example/invert/Makefile
442 silly gunzTarPerm modified mode [ 'example/invert/Makefile', 438, 420 ]
443 silly gunzTarPerm extractEntry example/invert/static/index.html
444 silly gunzTarPerm modified mode [ 'example/invert/static/index.html', 438, 420 ]
445 silly gunzTarPerm extractEntry readme.markdown
446 silly gunzTarPerm modified mode [ 'readme.markdown', 438, 420 ]
447 silly gunzTarPerm extractEntry test/browser.js
448 silly gunzTarPerm modified mode [ 'test/browser.js', 438, 420 ]
449 silly gunzTarPerm extractEntry test/server.js
450 silly gunzTarPerm modified mode [ 'test/server.js', 438, 420 ]
451 silly gunzTarPerm extractEntry node_modules/sockjs-client/package.json
452 silly gunzTarPerm modified mode [ 'node_modules/sockjs-client/package.json', 438, 420 ]
453 silly gunzTarPerm extractEntry node_modules/sockjs-client/.npmignore
454 silly gunzTarPerm modified mode [ 'node_modules/sockjs-client/.npmignore', 438, 420 ]
455 silly gunzTarPerm extractEntry node_modules/sockjs-client/README.md
456 silly gunzTarPerm modified mode [ 'node_modules/sockjs-client/README.md', 438, 420 ]
457 silly gunzTarPerm extractEntry node_modules/sockjs-client/sockjs.js
458 silly gunzTarPerm modified mode [ 'node_modules/sockjs-client/sockjs.js', 438, 420 ]
459 silly gunzTarPerm extractEntry node_modules/sockjs-client/lib/all.js
460 silly gunzTarPerm modified mode [ 'node_modules/sockjs-client/lib/all.js', 438, 420 ]
461 silly gunzTarPerm extractEntry node_modules/sockjs-client/lib/sockjs.js
462 silly gunzTarPerm modified mode [ 'node_modules/sockjs-client/lib/sockjs.js', 438, 420 ]
463 silly gunzTarPerm extractEntry node_modules/sockjs-client/lib/test-hooks.js
464 silly gunzTarPerm modified mode [ 'node_modules/sockjs-client/lib/test-hooks.js', 438, 420 ]
465 silly gunzTarPerm extractEntry node_modules/sockjs-client/lib/trans-iframe-eventsource.js
466 silly gunzTarPerm modified mode [ 'node_modules/sockjs-client/lib/trans-iframe-eventsource.js',
466 silly gunzTarPerm 438,
466 silly gunzTarPerm 420 ]
467 silly gunzTarPerm extractEntry node_modules/sockjs-client/lib/trans-iframe-htmlfile.js
468 silly gunzTarPerm modified mode [ 'node_modules/sockjs-client/lib/trans-iframe-htmlfile.js',
468 silly gunzTarPerm 438,
468 silly gunzTarPerm 420 ]
469 silly gunzTarPerm extractEntry node_modules/sockjs-client/lib/simpleevent.js
470 silly gunzTarPerm modified mode [ 'node_modules/sockjs-client/lib/simpleevent.js', 438, 420 ]
471 silly gunzTarPerm extractEntry node_modules/sockjs-client/lib/trans-iframe-xhr-polling.js
472 silly gunzTarPerm modified mode [ 'node_modules/sockjs-client/lib/trans-iframe-xhr-polling.js',
472 silly gunzTarPerm 438,
472 silly gunzTarPerm 420 ]
473 silly gunzTarPerm extractEntry node_modules/sockjs-client/lib/trans-iframe.js
474 silly gunzTarPerm modified mode [ 'node_modules/sockjs-client/lib/trans-iframe.js', 438, 420 ]
475 silly gunzTarPerm extractEntry node_modules/sockjs-client/lib/trans-jsonp-polling.js
476 silly gunzTarPerm modified mode [ 'node_modules/sockjs-client/lib/trans-jsonp-polling.js',
476 silly gunzTarPerm 438,
476 silly gunzTarPerm 420 ]
477 silly gunzTarPerm extractEntry node_modules/sockjs-client/lib/trans-jsonp-receiver.js
478 silly gunzTarPerm modified mode [ 'node_modules/sockjs-client/lib/trans-jsonp-receiver.js',
478 silly gunzTarPerm 438,
478 silly gunzTarPerm 420 ]
479 silly gunzTarPerm extractEntry node_modules/sockjs-client/lib/trans-polling.js
480 silly gunzTarPerm modified mode [ 'node_modules/sockjs-client/lib/trans-polling.js', 438, 420 ]
481 silly gunzTarPerm extractEntry node_modules/sockjs-client/lib/reventtarget.js
482 silly gunzTarPerm modified mode [ 'node_modules/sockjs-client/lib/reventtarget.js', 438, 420 ]
483 silly gunzTarPerm extractEntry node_modules/sockjs-client/lib/trans-receiver-eventsource.js
484 silly gunzTarPerm modified mode [ 'node_modules/sockjs-client/lib/trans-receiver-eventsource.js',
484 silly gunzTarPerm 438,
484 silly gunzTarPerm 420 ]
485 silly gunzTarPerm extractEntry node_modules/sockjs-client/lib/json2.min.js
486 silly gunzTarPerm modified mode [ 'node_modules/sockjs-client/lib/json2.min.js', 438, 420 ]
487 silly gunzTarPerm extractEntry node_modules/sockjs-client/lib/trans-receiver-htmlfile.js
488 silly gunzTarPerm modified mode [ 'node_modules/sockjs-client/lib/trans-receiver-htmlfile.js',
488 silly gunzTarPerm 438,
488 silly gunzTarPerm 420 ]
489 silly gunzTarPerm extractEntry node_modules/sockjs-client/lib/info.js
490 silly gunzTarPerm modified mode [ 'node_modules/sockjs-client/lib/info.js', 438, 420 ]
491 silly gunzTarPerm extractEntry node_modules/sockjs-client/lib/trans-receiver-xhr.js
492 silly gunzTarPerm modified mode [ 'node_modules/sockjs-client/lib/trans-receiver-xhr.js',
492 silly gunzTarPerm 438,
492 silly gunzTarPerm 420 ]
493 silly gunzTarPerm extractEntry node_modules/sockjs-client/lib/index.js
494 silly gunzTarPerm modified mode [ 'node_modules/sockjs-client/lib/index.js', 438, 420 ]
495 silly gunzTarPerm extractEntry node_modules/sockjs-client/lib/trans-sender.js
496 silly gunzTarPerm modified mode [ 'node_modules/sockjs-client/lib/trans-sender.js', 438, 420 ]
497 silly gunzTarPerm extractEntry node_modules/sockjs-client/lib/eventemitter.js
498 silly gunzTarPerm modified mode [ 'node_modules/sockjs-client/lib/eventemitter.js', 438, 420 ]
499 silly gunzTarPerm extractEntry node_modules/sockjs-client/lib/trans-websocket.js
500 silly gunzTarPerm modified mode [ 'node_modules/sockjs-client/lib/trans-websocket.js', 438, 420 ]
501 silly gunzTarPerm extractEntry node_modules/sockjs-client/lib/dom2.js
502 silly gunzTarPerm modified mode [ 'node_modules/sockjs-client/lib/dom2.js', 438, 420 ]
503 silly gunzTarPerm extractEntry node_modules/sockjs-client/lib/trans-xhr.js
504 silly gunzTarPerm modified mode [ 'node_modules/sockjs-client/lib/trans-xhr.js', 438, 420 ]
505 silly gunzTarPerm extractEntry node_modules/sockjs-client/lib/dom.js
506 silly gunzTarPerm modified mode [ 'node_modules/sockjs-client/lib/dom.js', 438, 420 ]
507 silly gunzTarPerm extractEntry node_modules/sockjs-client/lib/utils.js
508 silly gunzTarPerm modified mode [ 'node_modules/sockjs-client/lib/utils.js', 438, 420 ]
509 silly gunzTarPerm extractEntry node_modules/sockjs-client/lib/trans-iframe-within.js
510 silly gunzTarPerm modified mode [ 'node_modules/sockjs-client/lib/trans-iframe-within.js',
510 silly gunzTarPerm 438,
510 silly gunzTarPerm 420 ]
511 silly gunzTarPerm extractEntry node_modules/sockjs-client/LICENSE-MIT-SockJS
512 silly gunzTarPerm modified mode [ 'node_modules/sockjs-client/LICENSE-MIT-SockJS', 438, 420 ]
513 silly gunzTarPerm extractEntry node_modules/sockjs-client/bin/render.coffee
514 silly gunzTarPerm modified mode [ 'node_modules/sockjs-client/bin/render.coffee', 438, 420 ]
515 silly gunzTarPerm extractEntry node_modules/sockjs-client/bin/run_testling.sh
516 silly gunzTarPerm modified mode [ 'node_modules/sockjs-client/bin/run_testling.sh', 438, 420 ]
517 silly gunzTarPerm extractEntry node_modules/sockjs-client/VERSION-GEN
518 silly gunzTarPerm modified mode [ 'node_modules/sockjs-client/VERSION-GEN', 438, 420 ]
519 silly gunzTarPerm extractEntry node_modules/sockjs-client/Changelog
520 silly gunzTarPerm modified mode [ 'node_modules/sockjs-client/Changelog', 438, 420 ]
521 silly gunzTarPerm extractEntry node_modules/sockjs-client/COPYING
522 silly gunzTarPerm modified mode [ 'node_modules/sockjs-client/COPYING', 438, 420 ]
523 silly gunzTarPerm extractEntry node_modules/sockjs-client/version
524 silly gunzTarPerm modified mode [ 'node_modules/sockjs-client/version', 438, 420 ]
525 silly gunzTarPerm extractEntry node_modules/sockjs-client/Makefile
526 silly gunzTarPerm modified mode [ 'node_modules/sockjs-client/Makefile', 438, 420 ]
527 silly lockFile c91c8f33-ng-npm-cache-shoe-0-0-15-package tar://C:\Users\mkovner\AppData\Roaming\npm-cache\shoe\0.0.15\package
528 silly lockFile c91c8f33-ng-npm-cache-shoe-0-0-15-package tar://C:\Users\mkovner\AppData\Roaming\npm-cache\shoe\0.0.15\package
529 silly lockFile dc8f40aa-pm-cache-shoe-0-0-15-package-tgz tar://C:\Users\mkovner\AppData\Roaming\npm-cache\shoe\0.0.15\package.tgz
530 silly lockFile dc8f40aa-pm-cache-shoe-0-0-15-package-tgz tar://C:\Users\mkovner\AppData\Roaming\npm-cache\shoe\0.0.15\package.tgz
531 verbose chmod C:\Users\mkovner\AppData\Roaming\npm-cache\shoe\0.0.15\package.tgz 644
532 silly chown skipping for windows C:\Users\mkovner\AppData\Roaming\npm-cache\shoe\0.0.15\package.tgz
533 silly lockFile 70c310fb-y-npmjs-org-shoe-shoe-0-0-15-tgz https://registry.npmjs.org/shoe/-/shoe-0.0.15.tgz
534 silly lockFile 70c310fb-y-npmjs-org-shoe-shoe-0-0-15-tgz https://registry.npmjs.org/shoe/-/shoe-0.0.15.tgz
535 silly lockFile c068bcab-shoe-0-0-15 shoe@0.0.15
536 silly lockFile c068bcab-shoe-0-0-15 shoe@0.0.15
537 silly lockFile cf1a1e68-shoe-0-0-10 shoe@~0.0.10
538 silly lockFile cf1a1e68-shoe-0-0-10 shoe@~0.0.10
539 verbose tar unpack C:\Users\mkovner\AppData\Local\Temp\npm-12848-F9E1kxLC\1396486928045-0.9151484365575016\tmp.tgz
540 silly lockFile 0b1fcb9a-28045-0-9151484365575016-package tar://C:\Users\mkovner\AppData\Local\Temp\npm-12848-F9E1kxLC\1396486928045-0.9151484365575016\package
541 verbose lock tar://C:\Users\mkovner\AppData\Local\Temp\npm-12848-F9E1kxLC\1396486928045-0.9151484365575016\package C:\Users\mkovner\AppData\Roaming\npm-cache\0b1fcb9a-28045-0-9151484365575016-package.lock
542 silly lockFile ba3b8fc0-28045-0-9151484365575016-tmp-tgz tar://C:\Users\mkovner\AppData\Local\Temp\npm-12848-F9E1kxLC\1396486928045-0.9151484365575016\tmp.tgz
543 verbose lock tar://C:\Users\mkovner\AppData\Local\Temp\npm-12848-F9E1kxLC\1396486928045-0.9151484365575016\tmp.tgz C:\Users\mkovner\AppData\Roaming\npm-cache\ba3b8fc0-28045-0-9151484365575016-tmp-tgz.lock
544 silly gunzTarPerm modes [ '755', '644' ]
545 silly gunzTarPerm extractEntry package.json
546 silly gunzTarPerm extractEntry .npmignore
547 silly gunzTarPerm extractEntry LICENSE
548 silly gunzTarPerm extractEntry browser.js
549 silly gunzTarPerm extractEntry index.js
550 silly gunzTarPerm extractEntry test/simple.js
551 silly gunzTarPerm extractEntry test/broadcast.js
552 silly gunzTarPerm extractEntry test/double.js
553 silly gunzTarPerm extractEntry test/self-referential.js
554 silly gunzTarPerm extractEntry test/obj.js
555 silly gunzTarPerm extractEntry test/middleware.js
556 silly gunzTarPerm extractEntry test/refs.js
557 silly gunzTarPerm extractEntry test/null.js
558 silly gunzTarPerm extractEntry test/circular.js
559 silly gunzTarPerm extractEntry test/emit.js
560 silly gunzTarPerm extractEntry test/args.js
561 silly gunzTarPerm extractEntry test/_id.js
562 silly gunzTarPerm extractEntry test/bidirectional.js
563 silly gunzTarPerm extractEntry test/nested.js
564 silly gunzTarPerm extractEntry test/stream.js
565 silly gunzTarPerm extractEntry test/server/port0.js
566 silly gunzTarPerm extractEntry test/server/unix.js
567 silly gunzTarPerm extractEntry test/server/stream.js
568 silly gunzTarPerm extractEntry test/server/null.js
569 silly gunzTarPerm extractEntry test/server/zero.js
570 silly gunzTarPerm extractEntry test/server/tcp.js
571 silly gunzTarPerm extractEntry test/server/unicode.js
572 silly gunzTarPerm extractEntry perf/memory/server.js
573 silly gunzTarPerm extractEntry perf/memory/client.js
574 silly gunzTarPerm extractEntry readme.markdown
575 silly gunzTarPerm extractEntry .travis.yml
576 silly gunzTarPerm extractEntry lib/parse_args.js
577 silly gunzTarPerm extractEntry lib/dnode.js
578 silly gunzTarPerm extractEntry example/simple/server.js
579 silly gunzTarPerm extractEntry example/simple/client.js
580 silly gunzTarPerm extractEntry example/auth/server.js
581 silly gunzTarPerm extractEntry example/auth/client.js
582 silly gunzTarPerm extractEntry example/auth/quotes.json
583 silly gunzTarPerm extractEntry example/shoe/package.json
584 silly gunzTarPerm extractEntry example/shoe/server.js
585 silly gunzTarPerm extractEntry example/shoe/client.js
586 silly gunzTarPerm extractEntry example/shoe/static/index.html
587 silly gunzTarPerm extractEntry example/shoe/Makefile
588 silly gunzTarPerm extractEntry example/shoe/node_modules/domready/package.json
589 silly gunzTarPerm extractEntry example/shoe/node_modules/domready/.npmignore
590 silly gunzTarPerm extractEntry example/shoe/node_modules/domready/README.md
591 silly gunzTarPerm extractEntry example/shoe/node_modules/domready/ready.min.js
592 silly gunzTarPerm extractEntry example/shoe/node_modules/domready/ready.js
593 silly gunzTarPerm extractEntry example/shoe/node_modules/domready/Makefile
594 silly gunzTarPerm extractEntry example/shoe/node_modules/domready/tests/test.html
595 silly gunzTarPerm extractEntry example/shoe/node_modules/domready/src/ready.js
596 silly gunzTarPerm extractEntry example/shoe/node_modules/domready/src/ender.js
597 silly gunzTarPerm extractEntry example/shoe/node_modules/domready/make/build.js
598 silly gunzTarPerm extractEntry example/shoe/node_modules/ecstatic/package.json
599 silly gunzTarPerm extractEntry example/shoe/node_modules/ecstatic/README.md
600 silly gunzTarPerm extractEntry example/shoe/node_modules/ecstatic/example/core.js
601 silly gunzTarPerm extractEntry example/shoe/node_modules/ecstatic/example/express.js
602 silly gunzTarPerm extractEntry example/shoe/node_modules/ecstatic/example/union.js
603 silly gunzTarPerm extractEntry example/shoe/node_modules/ecstatic/example/public/beep/index.html
604 silly gunzTarPerm extractEntry example/shoe/node_modules/ecstatic/example/public/turtle.png
605 silly gunzTarPerm extractEntry example/shoe/node_modules/ecstatic/example/public/subdir/world.txt
606 silly gunzTarPerm extractEntry example/shoe/node_modules/ecstatic/example/public/hello.txt
607 silly gunzTarPerm extractEntry example/shoe/node_modules/ecstatic/test/express.js
608 silly gunzTarPerm extractEntry example/shoe/node_modules/ecstatic/test/express/c.js
609 silly gunzTarPerm extractEntry example/shoe/node_modules/ecstatic/test/express/a.txt
610 silly gunzTarPerm extractEntry example/shoe/node_modules/ecstatic/test/express/b.txt
611 silly gunzTarPerm extractEntry example/shoe/node_modules/ecstatic/test/express/subdir/index.html
612 silly gunzTarPerm extractEntry example/shoe/node_modules/ecstatic/test/express/subdir/e.html
613 silly gunzTarPerm extractEntry example/shoe/node_modules/ecstatic/lib/ecstatic.js
614 silly gunzTarPerm extractEntry example/shoe/node_modules/ecstatic/lib/ecstatic/status-handlers.js
615 silly gunzTarPerm extractEntry example/shoe/node_modules/ecstatic/lib/ecstatic/etag.js
616 silly gunzTarPerm extractEntry example/shoe/node_modules/ecstatic/lib/ecstatic/showdir.js
617 silly gunzTarPerm extractEntry example/shoe/node_modules/ecstatic/lib/ecstatic/opts.js
618 silly gunzTarPerm extractEntry example/shoe/node_modules/ecstatic/lib/templates/showdir.html
619 silly gunzTarPerm extractEntry example/shoe/node_modules/ecstatic/node_modules/mime/package.json
620 silly gunzTarPerm extractEntry example/shoe/node_modules/ecstatic/node_modules/mime/README.md
621 silly gunzTarPerm extractEntry example/shoe/node_modules/ecstatic/node_modules/mime/LICENSE
622 silly gunzTarPerm extractEntry example/shoe/node_modules/ecstatic/node_modules/mime/test.js
623 silly gunzTarPerm extractEntry example/shoe/node_modules/ecstatic/node_modules/mime/mime.js
624 silly gunzTarPerm extractEntry example/shoe/node_modules/ecstatic/node_modules/mime/types/node.types
625 silly gunzTarPerm extractEntry example/shoe/node_modules/ecstatic/node_modules/mime/types/mime.types
626 silly gunzTarPerm extractEntry example/shoe/node_modules/ecstatic/node_modules/ent/package.json
627 silly gunzTarPerm extractEntry example/shoe/node_modules/ecstatic/node_modules/ent/.npmignore
628 silly gunzTarPerm extractEntry example/shoe/node_modules/ecstatic/node_modules/ent/index.js
629 silly gunzTarPerm extractEntry example/shoe/node_modules/ecstatic/node_modules/ent/examples/simple.js
630 silly gunzTarPerm extractEntry example/shoe/node_modules/ecstatic/node_modules/ent/test/codes.js
631 silly gunzTarPerm extractEntry example/shoe/node_modules/ecstatic/node_modules/ent/entities.json
632 silly gunzTarPerm extractEntry example/shoe/node_modules/ecstatic/node_modules/ent/README.markdown
633 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/package.json
634 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/.npmignore
635 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/LICENSE
636 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/index.js
637 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/browser.js
638 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/example/dnode/package.json
639 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/example/dnode/server.js
640 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/example/dnode/client.js
641 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/example/dnode/static/bundle.js
642 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/example/dnode/static/index.html
643 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/example/dnode/Makefile
644 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/example/invert/package.json
645 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/example/invert/server.js
646 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/example/invert/client.js
647 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/example/invert/static/bundle.js
648 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/example/invert/static/index.html
649 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/example/invert/Makefile
650 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/README.markdown
651 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs-client/package.json
652 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs-client/.npmignore
653 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs-client/README.md
654 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs-client/sockjs.js
655 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs-client/VERSION-GEN
656 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs-client/Makefile
657 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs-client/bin/render.coffee
658 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs-client/bin/run_testling.sh
659 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs-client/version
660 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs-client/lib/trans-websocket.js
661 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs-client/lib/dom2.js
662 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs-client/lib/trans-iframe.js
663 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs-client/lib/trans-polling.js
664 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs-client/lib/trans-sender.js
665 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs-client/lib/reventtarget.js
666 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs-client/lib/eventemitter.js
667 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs-client/lib/json2.min.js
668 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs-client/lib/info.js
669 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs-client/lib/utils.js
670 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs-client/lib/dom.js
671 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs-client/lib/test-hooks.js
672 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs-client/lib/trans-receiver-htmlfile.js
673 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs-client/lib/sockjs.js
674 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs-client/lib/trans-iframe-eventsource.js
675 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs-client/lib/trans-jsonp-polling.js
676 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs-client/lib/all.js
677 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs-client/lib/index.js
678 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs-client/lib/trans-iframe-within.js
679 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs-client/lib/trans-receiver-eventsource.js
680 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs-client/lib/trans-receiver-xhr.js
681 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs-client/lib/simpleevent.js
682 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs-client/lib/trans-iframe-xhr-polling.js
683 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs-client/lib/trans-xhr.js
684 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs-client/lib/trans-iframe-htmlfile.js
685 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs-client/lib/trans-jsonp-receiver.js
686 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs-client/Changelog
687 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs-client/COPYING
688 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs-client/LICENSE-MIT-SockJS
689 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs/package.json
690 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs/.npmignore
691 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs/README.md
692 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs/index.js
693 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs/Makefile
694 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs/COPYING
695 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs/.pidfile.pid
696 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs/lib/trans-websocket.js
697 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs/lib/chunking-test.js
698 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs/lib/trans-eventsource.js
699 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs/lib/sockjs.js
700 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs/lib/trans-xhr.js
701 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs/lib/transport.js
702 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs/lib/trans-jsonp.js
703 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs/lib/utils.js
704 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs/lib/iframe.js
705 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs/lib/trans-htmlfile.js
706 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs/lib/webjs.js
707 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs/Changelog
708 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs/examples/haproxy.cfg
709 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs/examples/test_server/package.json
710 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs/examples/test_server/README.md
711 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs/examples/test_server/server.js
712 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs/examples/test_server/sockjs_app.js
713 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs/examples/test_server/config.js
714 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs/examples/echo/package.json
715 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs/examples/echo/README.md
716 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs/examples/echo/server.js
717 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs/examples/echo/index.html
718 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs/examples/multiplex/package.json
719 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs/examples/multiplex/README.md
720 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs/examples/multiplex/server.js
721 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs/examples/multiplex/index.html
722 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs/examples/express/package.json
723 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs/examples/express/server.js
724 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs/examples/express/index.html
725 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs/LICENSE-MIT-SockJS
726 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs/node_modules/node-uuid/package.json
727 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs/node_modules/node-uuid/.npmignore
728 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs/node_modules/node-uuid/README.md
729 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs/node_modules/node-uuid/uuid.js
730 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs/node_modules/node-uuid/LICENSE.md
731 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs/node_modules/node-uuid/test/compare_v1.js
732 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs/node_modules/node-uuid/test/test.js
733 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs/node_modules/node-uuid/test/test.html
734 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs/node_modules/node-uuid/benchmark/README.md
735 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs/node_modules/node-uuid/benchmark/benchmark.js
736 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs/node_modules/node-uuid/benchmark/bench.sh
737 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs/node_modules/node-uuid/benchmark/bench.gnu
738 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs/node_modules/node-uuid/benchmark/benchmark-native.c
739 silly gunzTarPerm extractEntry example/shoe/node_modules/shoe/node_modules/sockjs/node_modules/faye-websocket/package.json