This repository has been archived by the owner on Nov 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnpm-debug.log
1718 lines (1718 loc) · 125 KB
/
npm-debug.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
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',
1 verbose cli 'ssh' ]
2 info using [email protected]
3 info using [email protected]
4 verbose install initial load of C:\Users\max\Desktop\Hackthon-Team-3\package.json
5 warn package.json [email protected] No description
6 warn package.json [email protected] No README data
7 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\abab\package.json
8 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\accepts\package.json
9 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\acorn\package.json
10 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\acorn-globals\package.json
11 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\amdefine\package.json
12 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\ansi-regex\package.json
13 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\ansi-styles\package.json
14 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\array-flatten\package.json
15 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\asn1\package.json
16 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\assert-plus\package.json
17 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\async\package.json
18 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\aws-sign2\package.json
19 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\aws4\package.json
20 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\bl\package.json
21 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\boolbase\package.json
22 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\boom\package.json
23 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\caseless\package.json
24 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\chalk\package.json
25 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\cheerio\package.json
26 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\combined-stream\package.json
27 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\commander\package.json
28 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\content-disposition\package.json
29 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\content-type\package.json
30 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\cookie\package.json
31 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\cookie-parser\package.json
32 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\cookie-signature\package.json
33 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\core-util-is\package.json
34 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\cryptiles\package.json
35 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\css-select\package.json
36 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\css-what\package.json
37 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\cssom\package.json
38 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\cssstyle\package.json
39 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\dashdash\package.json
40 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\debug\package.json
41 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\deep-is\package.json
42 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\delayed-stream\package.json
43 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\depd\package.json
44 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\destroy\package.json
45 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\dom-serializer\package.json
46 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\domelementtype\package.json
47 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\domhandler\package.json
48 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\domutils\package.json
49 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\ecc-jsbn\package.json
50 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\ee-first\package.json
51 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\encodeurl\package.json
52 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\entities\package.json
53 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\escape-html\package.json
54 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\escape-string-regexp\package.json
55 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\escodegen\package.json
56 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\esprima\package.json
57 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\estraverse\package.json
58 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\esutils\package.json
59 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\etag\package.json
60 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\express\package.json
61 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\extend\package.json
62 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\extsprintf\package.json
63 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\fast-levenshtein\package.json
64 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\finalhandler\package.json
65 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\forever-agent\package.json
66 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\form-data\package.json
67 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\forwarded\package.json
68 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\fresh\package.json
69 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\generate-function\package.json
70 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\generate-object-property\package.json
71 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\getpass\package.json
72 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\graceful-readlink\package.json
73 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\har-validator\package.json
74 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\has-ansi\package.json
75 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\hawk\package.json
76 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\hoek\package.json
77 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\htmlparser2\package.json
78 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\http-errors\package.json
79 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\http-signature\package.json
80 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\inherits\package.json
81 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\ipaddr.js\package.json
82 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\is-my-json-valid\package.json
83 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\is-property\package.json
84 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\is-typedarray\package.json
85 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\isarray\package.json
86 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\isstream\package.json
87 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\jQuery\package.json
88 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\jodid25519\package.json
89 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\jsbn\package.json
90 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\jsdom\package.json
91 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\json-schema\package.json
92 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\json-stringify-safe\package.json
93 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\jsonpointer\package.json
94 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\jsprim\package.json
95 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\levn\package.json
96 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\lodash\package.json
97 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\media-typer\package.json
98 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\merge-descriptors\package.json
99 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\methods\package.json
100 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\mime\package.json
101 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\mime-db\package.json
102 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\mime-types\package.json
103 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\ms\package.json
104 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\negotiator\package.json
105 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\node-uuid\package.json
106 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\nth-check\package.json
107 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\nwmatcher\package.json
108 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\oauth\package.json
109 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\oauth-sign\package.json
110 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\on-finished\package.json
111 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\optionator\package.json
112 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\parse5\package.json
113 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\parseurl\package.json
114 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\passport\package.json
115 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\passport-facebook\package.json
116 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\passport-oauth2\package.json
117 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\passport-strategy\package.json
118 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\path\package.json
119 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\path-to-regexp\package.json
120 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\pause\package.json
121 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\pinkie\package.json
122 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\pinkie-promise\package.json
123 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\prelude-ls\package.json
124 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\process\package.json
125 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\process-nextick-args\package.json
126 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\proxy-addr\package.json
127 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\qs\package.json
128 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\range-parser\package.json
129 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\readable-stream\package.json
130 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\readline\package.json
131 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\readline-sync\package.json
132 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\request\package.json
133 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\sax\package.json
134 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\send\package.json
135 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\serve-static\package.json
136 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\setprototypeof\package.json
137 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\sntp\package.json
138 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\source-map\package.json
139 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\sshpk\package.json
140 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\statuses\package.json
141 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\string_decoder\package.json
142 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\stringstream\package.json
143 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\strip-ansi\package.json
144 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\supports-color\package.json
145 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\symbol-tree\package.json
146 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\tough-cookie\package.json
147 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\tr46\package.json
148 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\tunnel-agent\package.json
149 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\tweetnacl\package.json
150 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\type-check\package.json
151 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\type-is\package.json
152 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\uid2\package.json
153 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\unpipe\package.json
154 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\util\package.json
155 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\util-deprecate\package.json
156 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\utils-merge\package.json
157 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\vary\package.json
158 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\verror\package.json
159 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\webidl-conversions\package.json
160 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\whatwg-url-compat\package.json
161 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\wordwrap\package.json
162 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\xml-name-validator\package.json
163 verbose installManyTop reading scoped package data from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\xtend\package.json
164 info package.json [email protected] license should be a valid SPDX license expression
165 info package.json [email protected] license should be a valid SPDX license expression
166 info package.json [email protected] license should be a valid SPDX license expression
167 info package.json [email protected] No license field.
168 info package.json [email protected] No license field.
169 info package.json [email protected] No license field.
170 info package.json [email protected] license should be a valid SPDX license expression
171 info package.json [email protected] No license field.
172 info package.json [email protected] No license field.
173 info package.json [email protected] No license field.
174 info package.json [email protected] No license field.
175 info package.json [email protected] license should be a valid SPDX license expression
176 info package.json [email protected] No license field.
177 info package.json [email protected] No license field.
178 info package.json [email protected] No license field.
179 info package.json [email protected] No license field.
180 info package.json [email protected] license should be a valid SPDX license expression
181 info package.json [email protected] No license field.
182 info package.json [email protected] No license field.
183 info package.json [email protected] No license field.
184 info package.json [email protected] No license field.
185 info package.json [email protected] path is also the name of a node core module.
186 info package.json [email protected] No repository field.
187 info package.json [email protected] No license field.
188 info package.json [email protected] process is also the name of a node core module.
189 info package.json [email protected] No license field.
190 info package.json [email protected] readline is also the name of a node core module.
191 info package.json [email protected] license should be a valid SPDX license expression
192 info package.json [email protected] No license field.
193 info package.json [email protected] No license field.
194 info package.json [email protected] string_decoder is also the name of a node core module.
195 info package.json [email protected] license should be a valid SPDX license expression
196 info package.json [email protected] No repository field.
197 info package.json [email protected] No license field.
198 info package.json [email protected] util is also the name of a node core module.
199 info package.json [email protected] No license field.
200 info package.json [email protected] No license field.
201 verbose readDependencies loading dependencies from C:\Users\max\Desktop\Hackthon-Team-3\package.json
202 silly cache add args [ 'ssh', null ]
203 verbose cache add spec ssh
204 silly cache add parsed spec Result {
204 silly cache add raw: 'ssh',
204 silly cache add scope: null,
204 silly cache add name: 'ssh',
204 silly cache add rawSpec: '',
204 silly cache add spec: 'latest',
204 silly cache add type: 'tag' }
205 silly addNamed ssh@latest
206 verbose addNamed "latest" is being treated as a dist-tag for ssh
207 info addNameTag [ 'ssh', 'latest' ]
208 silly mapToRegistry name ssh
209 silly mapToRegistry using default registry
210 silly mapToRegistry registry https://registry.npmjs.org/
211 silly mapToRegistry data Result {
211 silly mapToRegistry raw: 'ssh',
211 silly mapToRegistry scope: null,
211 silly mapToRegistry name: 'ssh',
211 silly mapToRegistry rawSpec: '',
211 silly mapToRegistry spec: 'latest',
211 silly mapToRegistry type: 'tag' }
212 silly mapToRegistry uri https://registry.npmjs.org/ssh
213 verbose addNameTag registry:https://registry.npmjs.org/ssh not in flight; fetching
214 verbose request uri https://registry.npmjs.org/ssh
215 verbose request no auth needed
216 info attempt registry request try #1 at 17:17:21
217 verbose request id 94c3e119e48de388
218 http request GET https://registry.npmjs.org/ssh
219 http 200 https://registry.npmjs.org/ssh
220 verbose headers { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
220 verbose headers etag: '"36UTYKITFDA3VBGSHL0TTUB7A"',
220 verbose headers 'content-type': 'application/json',
220 verbose headers 'content-encoding': 'gzip',
220 verbose headers 'cache-control': 'max-age=300',
220 verbose headers 'content-length': '7605',
220 verbose headers 'accept-ranges': 'bytes',
220 verbose headers date: 'Sat, 06 Aug 2016 08:17:36 GMT',
220 verbose headers via: '1.1 varnish',
220 verbose headers age: '0',
220 verbose headers connection: 'keep-alive',
220 verbose headers 'x-served-by': 'cache-hkg6826-HKG',
220 verbose headers 'x-cache': 'MISS',
220 verbose headers 'x-cache-hits': '0',
220 verbose headers 'x-timer': 'S1470471456.229251,VS0,VE436',
220 verbose headers vary: 'Accept-Encoding' }
221 silly get cb [ 200,
221 silly get { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
221 silly get etag: '"36UTYKITFDA3VBGSHL0TTUB7A"',
221 silly get 'content-type': 'application/json',
221 silly get 'content-encoding': 'gzip',
221 silly get 'cache-control': 'max-age=300',
221 silly get 'content-length': '7605',
221 silly get 'accept-ranges': 'bytes',
221 silly get date: 'Sat, 06 Aug 2016 08:17:36 GMT',
221 silly get via: '1.1 varnish',
221 silly get age: '0',
221 silly get connection: 'keep-alive',
221 silly get 'x-served-by': 'cache-hkg6826-HKG',
221 silly get 'x-cache': 'MISS',
221 silly get 'x-cache-hits': '0',
221 silly get 'x-timer': 'S1470471456.229251,VS0,VE436',
221 silly get vary: 'Accept-Encoding' } ]
222 verbose get saving ssh to C:\Users\max\AppData\Roaming\npm-cache\registry.npmjs.org\ssh\.cache.json
223 verbose correctMkdir C:\Users\max\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
224 verbose makeDirectory C:\Users\max\AppData\Roaming\npm-cache creation not in flight; initializing
225 verbose makeCacheDir UID & GID are irrelevant on win32
226 silly addNameTag next cb for ssh with tag latest
227 silly addNamed [email protected]
228 verbose addNamed "1.8.0" is a plain semver version for ssh
229 silly mapToRegistry name ssh
230 silly mapToRegistry using default registry
231 silly mapToRegistry registry https://registry.npmjs.org/
232 silly mapToRegistry data Result {
232 silly mapToRegistry raw: 'ssh',
232 silly mapToRegistry scope: null,
232 silly mapToRegistry name: 'ssh',
232 silly mapToRegistry rawSpec: '',
232 silly mapToRegistry spec: 'latest',
232 silly mapToRegistry type: 'tag' }
233 silly mapToRegistry uri https://registry.npmjs.org/ssh
234 verbose addRemoteTarball https://registry.npmjs.org/ssh/-/ssh-1.8.0.tgz not in flight; adding
235 verbose addRemoteTarball [ 'https://registry.npmjs.org/ssh/-/ssh-1.8.0.tgz',
235 verbose addRemoteTarball 'd959af33f75efaf908713c1c328c485692a9635a' ]
236 info retry fetch attempt 1 at 17:17:22
237 info attempt registry request try #1 at 17:17:22
238 http fetch GET https://registry.npmjs.org/ssh/-/ssh-1.8.0.tgz
239 http fetch 200 https://registry.npmjs.org/ssh/-/ssh-1.8.0.tgz
240 silly fetchAndShaCheck shasum d959af33f75efaf908713c1c328c485692a9635a
241 verbose addTmpTarball C:\Users\max\AppData\Local\Temp\npm-33964-f5355b83\registry.npmjs.org\ssh\-\ssh-1.8.0.tgz not in flight; adding
242 verbose addTmpTarball already have metadata; skipping unpack for [email protected]
243 verbose correctMkdir C:\Users\max\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
244 silly cache afterAdd [email protected]
245 verbose afterAdd C:\Users\max\AppData\Roaming\npm-cache\ssh\1.8.0\package\package.json not in flight; writing
246 verbose correctMkdir C:\Users\max\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
247 verbose afterAdd C:\Users\max\AppData\Roaming\npm-cache\ssh\1.8.0\package\package.json written
248 silly install resolved [ { name: 'ssh',
248 silly install resolved description: 'A Node.js binding for libssh',
248 silly install resolved maintainers: [ [Object], [Object], [Object], [Object] ],
248 silly install resolved keywords: [ 'ssh', 'libssh' ],
248 silly install resolved version: '1.8.0',
248 silly install resolved main: 'index.js',
248 silly install resolved dependencies: { bindings: '*', nan: '^1.8.4' },
248 silly install resolved devDependencies:
248 silly install resolved { tap: '*',
248 silly install resolved ssh2: '*',
248 silly install resolved bl: '*',
248 silly install resolved 'node-gyp': '~1.0.1',
248 silly install resolved 'pty.js': 'git://github.com/chjj/pty.js.git' },
248 silly install resolved repository:
248 silly install resolved { type: 'git',
248 silly install resolved url: 'git+https://github.com/rvagg/node-libssh.git' },
248 silly install resolved scripts:
248 silly install resolved { test: 'tap test/*-test.js --stderr',
248 silly install resolved install: 'node-gyp rebuild' },
248 silly install resolved license: 'MIT',
248 silly install resolved gypfile: true,
248 silly install resolved gitHead: '0c6c00c5796ba0cbd0964ba662d1c6d544abc18d',
248 silly install resolved bugs: { url: 'https://github.com/rvagg/node-libssh/issues' },
248 silly install resolved homepage: 'https://github.com/rvagg/node-libssh#readme',
248 silly install resolved _id: '[email protected]',
248 silly install resolved _shasum: 'd959af33f75efaf908713c1c328c485692a9635a',
248 silly install resolved _from: 'ssh@latest',
248 silly install resolved _npmVersion: '2.8.3',
248 silly install resolved _nodeVersion: '1.8.1',
248 silly install resolved _npmUser: { name: 'kenansulayman', email: '[email protected]' },
248 silly install resolved dist:
248 silly install resolved { shasum: 'd959af33f75efaf908713c1c328c485692a9635a',
248 silly install resolved tarball: 'https://registry.npmjs.org/ssh/-/ssh-1.8.0.tgz' },
248 silly install resolved directories: {},
248 silly install resolved _resolved: 'https://registry.npmjs.org/ssh/-/ssh-1.8.0.tgz' } ]
249 info install [email protected] into C:\Users\max\Desktop\Hackthon-Team-3
250 info installOne [email protected]
251 verbose installOne of ssh to C:\Users\max\Desktop\Hackthon-Team-3 not in flight; installing
252 verbose correctMkdir C:\Users\max\AppData\Roaming\npm-cache\_locks correctMkdir not in flight; initializing
253 verbose makeDirectory C:\Users\max\AppData\Roaming\npm-cache\_locks creation not in flight; initializing
254 verbose makeCacheDir UID & GID are irrelevant on win32
255 verbose lock using C:\Users\max\AppData\Roaming\npm-cache\_locks\ssh-4698afec5354cd3a.lock for C:\Users\max\Desktop\Hackthon-Team-3\node_modules\ssh
256 silly install write writing ssh 1.8.0 to C:\Users\max\Desktop\Hackthon-Team-3\node_modules\ssh
257 verbose unbuild node_modules\ssh
258 silly gentlyRm C:\Users\max\Desktop\Hackthon-Team-3\node_modules\ssh is being purged from base C:\Users\max\Desktop\Hackthon-Team-3
259 verbose gentlyRm don't care about contents; nuking C:\Users\max\Desktop\Hackthon-Team-3\node_modules\ssh
260 verbose tar unpack C:\Users\max\AppData\Roaming\npm-cache\ssh\1.8.0\package.tgz
261 verbose tar unpacking to C:\Users\max\Desktop\Hackthon-Team-3\node_modules\ssh
262 silly gentlyRm C:\Users\max\Desktop\Hackthon-Team-3\node_modules\ssh is being purged
263 verbose gentlyRm don't care about contents; nuking C:\Users\max\Desktop\Hackthon-Team-3\node_modules\ssh
264 silly gunzTarPerm modes [ '777', '666' ]
265 silly gunzTarPerm extractEntry package.json
266 silly gunzTarPerm modified mode [ 'package.json', 420, 438 ]
267 silly gunzTarPerm extractEntry .npmignore
268 silly gunzTarPerm modified mode [ '.npmignore', 420, 438 ]
269 silly gunzTarPerm extractEntry README.md
270 silly gunzTarPerm modified mode [ 'README.md', 420, 438 ]
271 silly gunzTarPerm extractEntry LICENSE
272 silly gunzTarPerm modified mode [ 'LICENSE', 420, 438 ]
273 silly gunzTarPerm extractEntry index.js
274 silly gunzTarPerm modified mode [ 'index.js', 420, 438 ]
275 silly gunzTarPerm extractEntry binding.gyp
276 silly gunzTarPerm modified mode [ 'binding.gyp', 420, 438 ]
277 silly gunzTarPerm extractEntry .jshintrc
278 silly gunzTarPerm modified mode [ '.jshintrc', 420, 438 ]
279 silly gunzTarPerm extractEntry .travis.yml
280 silly gunzTarPerm modified mode [ '.travis.yml', 420, 438 ]
281 silly gunzTarPerm extractEntry deps/include/config.h
282 silly gunzTarPerm modified mode [ 'deps/include/config.h', 420, 438 ]
283 silly gunzTarPerm extractEntry deps/include-osx/config.h
284 silly gunzTarPerm modified mode [ 'deps/include-osx/config.h', 420, 438 ]
285 silly gunzTarPerm extractEntry deps/include-win/config.h
286 silly gunzTarPerm modified mode [ 'deps/include-win/config.h', 420, 438 ]
287 silly gunzTarPerm extractEntry deps/libssh-0.6.4/README
288 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/README', 420, 438 ]
289 silly gunzTarPerm extractEntry deps/libssh-0.6.4/SubmittingPatches
290 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/SubmittingPatches', 420, 438 ]
291 silly gunzTarPerm extractEntry deps/libssh-0.6.4/CMakeLists.txt
292 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/CMakeLists.txt', 420, 438 ]
293 silly gunzTarPerm extractEntry deps/libssh-0.6.4/COPYING
294 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/COPYING', 420, 438 ]
295 silly gunzTarPerm extractEntry deps/libssh-0.6.4/CPackConfig.cmake
296 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/CPackConfig.cmake', 420, 438 ]
297 silly gunzTarPerm extractEntry deps/libssh-0.6.4/CTestConfig.cmake
298 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/CTestConfig.cmake', 420, 438 ]
299 silly gunzTarPerm extractEntry deps/libssh-0.6.4/ChangeLog
300 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/ChangeLog', 420, 438 ]
301 silly gunzTarPerm extractEntry deps/libssh-0.6.4/CodingStyle
302 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/CodingStyle', 420, 438 ]
303 silly gunzTarPerm extractEntry deps/libssh-0.6.4/ConfigureChecks.cmake
304 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/ConfigureChecks.cmake', 420, 438 ]
305 silly gunzTarPerm extractEntry deps/libssh-0.6.4/DefineOptions.cmake
306 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/DefineOptions.cmake', 420, 438 ]
307 silly gunzTarPerm extractEntry deps/libssh-0.6.4/INSTALL
308 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/INSTALL', 420, 438 ]
309 silly gunzTarPerm extractEntry deps/libssh-0.6.4/AUTHORS
310 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/AUTHORS', 420, 438 ]
311 silly gunzTarPerm extractEntry deps/libssh-0.6.4/BSD
312 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/BSD', 420, 438 ]
313 silly gunzTarPerm extractEntry deps/libssh-0.6.4/cmake/Modules/FindCMocka.cmake
314 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/cmake/Modules/FindCMocka.cmake', 420, 438 ]
315 silly gunzTarPerm extractEntry deps/libssh-0.6.4/cmake/Modules/AddCMockaTest.cmake
316 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/cmake/Modules/AddCMockaTest.cmake',
316 silly gunzTarPerm 420,
316 silly gunzTarPerm 438 ]
317 silly gunzTarPerm extractEntry deps/libssh-0.6.4/cmake/Modules/CheckCCompilerFlagSSP.cmake
318 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/cmake/Modules/CheckCCompilerFlagSSP.cmake',
318 silly gunzTarPerm 420,
318 silly gunzTarPerm 438 ]
319 silly gunzTarPerm extractEntry deps/libssh-0.6.4/cmake/Modules/DefineCMakeDefaults.cmake
320 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/cmake/Modules/DefineCMakeDefaults.cmake',
320 silly gunzTarPerm 420,
320 silly gunzTarPerm 438 ]
321 silly gunzTarPerm extractEntry deps/libssh-0.6.4/cmake/Modules/DefineCompilerFlags.cmake
322 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/cmake/Modules/DefineCompilerFlags.cmake',
322 silly gunzTarPerm 420,
322 silly gunzTarPerm 438 ]
323 silly gunzTarPerm extractEntry deps/libssh-0.6.4/cmake/Modules/DefineInstallationPaths.cmake
324 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/cmake/Modules/DefineInstallationPaths.cmake',
324 silly gunzTarPerm 420,
324 silly gunzTarPerm 438 ]
325 silly gunzTarPerm extractEntry deps/libssh-0.6.4/cmake/Modules/DefinePlatformDefaults.cmake
326 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/cmake/Modules/DefinePlatformDefaults.cmake',
326 silly gunzTarPerm 420,
326 silly gunzTarPerm 438 ]
327 silly gunzTarPerm extractEntry deps/libssh-0.6.4/cmake/Modules/FindArgp.cmake
328 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/cmake/Modules/FindArgp.cmake', 420, 438 ]
329 silly gunzTarPerm extractEntry deps/libssh-0.6.4/cmake/Modules/COPYING-CMAKE-SCRIPTS
330 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/cmake/Modules/COPYING-CMAKE-SCRIPTS',
330 silly gunzTarPerm 420,
330 silly gunzTarPerm 438 ]
331 silly gunzTarPerm extractEntry deps/libssh-0.6.4/cmake/Modules/FindGCrypt.cmake
332 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/cmake/Modules/FindGCrypt.cmake', 420, 438 ]
333 silly gunzTarPerm extractEntry deps/libssh-0.6.4/cmake/Modules/FindGSSAPI.cmake
334 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/cmake/Modules/FindGSSAPI.cmake', 420, 438 ]
335 silly gunzTarPerm extractEntry deps/libssh-0.6.4/cmake/Modules/FindNSIS.cmake
336 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/cmake/Modules/FindNSIS.cmake', 420, 438 ]
337 silly gunzTarPerm extractEntry deps/libssh-0.6.4/cmake/Modules/FindNaCl.cmake
338 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/cmake/Modules/FindNaCl.cmake', 420, 438 ]
339 silly gunzTarPerm extractEntry deps/libssh-0.6.4/cmake/Modules/FindOpenSSL.cmake
340 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/cmake/Modules/FindOpenSSL.cmake', 420, 438 ]
341 silly gunzTarPerm extractEntry deps/libssh-0.6.4/cmake/Modules/FindZLIB.cmake
342 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/cmake/Modules/FindZLIB.cmake', 420, 438 ]
343 silly gunzTarPerm extractEntry deps/libssh-0.6.4/cmake/Modules/MacroEnsureOutOfSourceBuild.cmake
344 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/cmake/Modules/MacroEnsureOutOfSourceBuild.cmake',
344 silly gunzTarPerm 420,
344 silly gunzTarPerm 438 ]
345 silly gunzTarPerm extractEntry deps/libssh-0.6.4/cmake/Modules/UseDoxygen.cmake
346 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/cmake/Modules/UseDoxygen.cmake', 420, 438 ]
347 silly gunzTarPerm extractEntry deps/libssh-0.6.4/config.h.cmake
348 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/config.h.cmake', 420, 438 ]
349 silly gunzTarPerm extractEntry deps/libssh-0.6.4/doc/introduction.dox
350 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/doc/introduction.dox', 420, 438 ]
351 silly gunzTarPerm extractEntry deps/libssh-0.6.4/doc/CMakeLists.txt
352 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/doc/CMakeLists.txt', 420, 438 ]
353 silly gunzTarPerm extractEntry deps/libssh-0.6.4/doc/authentication.dox
354 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/doc/authentication.dox', 420, 438 ]
355 silly gunzTarPerm extractEntry deps/libssh-0.6.4/doc/command.dox
356 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/doc/command.dox', 420, 438 ]
357 silly gunzTarPerm extractEntry deps/libssh-0.6.4/doc/[email protected]
358 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/doc/[email protected]',
358 silly gunzTarPerm 420,
358 silly gunzTarPerm 438 ]
359 silly gunzTarPerm extractEntry deps/libssh-0.6.4/doc/forwarding.dox
360 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/doc/forwarding.dox', 420, 438 ]
361 silly gunzTarPerm extractEntry deps/libssh-0.6.4/doc/guided_tour.dox
362 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/doc/guided_tour.dox', 420, 438 ]
363 silly gunzTarPerm extractEntry deps/libssh-0.6.4/doc/Doxyfile.in
364 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/doc/Doxyfile.in', 420, 438 ]
365 silly gunzTarPerm extractEntry deps/libssh-0.6.4/doc/linking.dox
366 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/doc/linking.dox', 420, 438 ]
367 silly gunzTarPerm extractEntry deps/libssh-0.6.4/doc/mainpage.dox
368 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/doc/mainpage.dox', 420, 438 ]
369 silly gunzTarPerm extractEntry deps/libssh-0.6.4/doc/scp.dox
370 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/doc/scp.dox', 420, 438 ]
371 silly gunzTarPerm extractEntry deps/libssh-0.6.4/doc/sftp.dox
372 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/doc/sftp.dox', 420, 438 ]
373 silly gunzTarPerm extractEntry deps/libssh-0.6.4/doc/shell.dox
374 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/doc/shell.dox', 420, 438 ]
375 silly gunzTarPerm extractEntry deps/libssh-0.6.4/doc/tbd.dox
376 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/doc/tbd.dox', 420, 438 ]
377 silly gunzTarPerm extractEntry deps/libssh-0.6.4/doc/threading.dox
378 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/doc/threading.dox', 420, 438 ]
379 silly gunzTarPerm extractEntry deps/libssh-0.6.4/examples/proxy.c
380 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/examples/proxy.c', 420, 438 ]
381 silly gunzTarPerm extractEntry deps/libssh-0.6.4/examples/CMakeLists.txt
382 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/examples/CMakeLists.txt', 420, 438 ]
383 silly gunzTarPerm extractEntry deps/libssh-0.6.4/examples/connect_ssh.c
384 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/examples/connect_ssh.c', 420, 438 ]
385 silly gunzTarPerm extractEntry deps/libssh-0.6.4/examples/examples_common.h
386 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/examples/examples_common.h', 420, 438 ]
387 silly gunzTarPerm extractEntry deps/libssh-0.6.4/examples/exec.c
388 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/examples/exec.c', 420, 438 ]
389 silly gunzTarPerm extractEntry deps/libssh-0.6.4/examples/knownhosts.c
390 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/examples/knownhosts.c', 420, 438 ]
391 silly gunzTarPerm extractEntry deps/libssh-0.6.4/examples/libssh_scp.c
392 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/examples/libssh_scp.c', 420, 438 ]
393 silly gunzTarPerm extractEntry deps/libssh-0.6.4/examples/libsshpp.cpp
394 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/examples/libsshpp.cpp', 420, 438 ]
395 silly gunzTarPerm extractEntry deps/libssh-0.6.4/examples/libsshpp_noexcept.cpp
396 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/examples/libsshpp_noexcept.cpp', 420, 438 ]
397 silly gunzTarPerm extractEntry deps/libssh-0.6.4/examples/authentication.c
398 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/examples/authentication.c', 420, 438 ]
399 silly gunzTarPerm extractEntry deps/libssh-0.6.4/examples/sample.c
400 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/examples/sample.c', 420, 438 ]
401 silly gunzTarPerm extractEntry deps/libssh-0.6.4/examples/samplesftp.c
402 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/examples/samplesftp.c', 420, 438 ]
403 silly gunzTarPerm extractEntry deps/libssh-0.6.4/examples/samplesshd-cb.c
404 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/examples/samplesshd-cb.c', 420, 438 ]
405 silly gunzTarPerm extractEntry deps/libssh-0.6.4/examples/samplesshd-kbdint.c
406 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/examples/samplesshd-kbdint.c', 420, 438 ]
407 silly gunzTarPerm extractEntry deps/libssh-0.6.4/examples/samplesshd-tty.c
408 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/examples/samplesshd-tty.c', 420, 438 ]
409 silly gunzTarPerm extractEntry deps/libssh-0.6.4/examples/samplesshd.c
410 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/examples/samplesshd.c', 420, 438 ]
411 silly gunzTarPerm extractEntry deps/libssh-0.6.4/examples/scp_download.c
412 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/examples/scp_download.c', 420, 438 ]
413 silly gunzTarPerm extractEntry deps/libssh-0.6.4/examples/senddata.c
414 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/examples/senddata.c', 420, 438 ]
415 silly gunzTarPerm extractEntry deps/libssh-0.6.4/examples/sshnetcat.c
416 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/examples/sshnetcat.c', 420, 438 ]
417 silly gunzTarPerm extractEntry deps/libssh-0.6.4/include/CMakeLists.txt
418 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/include/CMakeLists.txt', 420, 438 ]
419 silly gunzTarPerm extractEntry deps/libssh-0.6.4/include/libssh/libsshpp.hpp
420 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/include/libssh/libsshpp.hpp', 420, 438 ]
421 silly gunzTarPerm extractEntry deps/libssh-0.6.4/include/libssh/CMakeLists.txt
422 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/include/libssh/CMakeLists.txt', 420, 438 ]
423 silly gunzTarPerm extractEntry deps/libssh-0.6.4/include/libssh/auth.h
424 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/include/libssh/auth.h', 420, 438 ]
425 silly gunzTarPerm extractEntry deps/libssh-0.6.4/include/libssh/bind.h
426 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/include/libssh/bind.h', 420, 438 ]
427 silly gunzTarPerm extractEntry deps/libssh-0.6.4/include/libssh/buffer.h
428 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/include/libssh/buffer.h', 420, 438 ]
429 silly gunzTarPerm extractEntry deps/libssh-0.6.4/include/libssh/callbacks.h
430 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/include/libssh/callbacks.h', 420, 438 ]
431 silly gunzTarPerm extractEntry deps/libssh-0.6.4/include/libssh/channels.h
432 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/include/libssh/channels.h', 420, 438 ]
433 silly gunzTarPerm extractEntry deps/libssh-0.6.4/include/libssh/crc32.h
434 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/include/libssh/crc32.h', 420, 438 ]
435 silly gunzTarPerm extractEntry deps/libssh-0.6.4/include/libssh/crypto.h
436 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/include/libssh/crypto.h', 420, 438 ]
437 silly gunzTarPerm extractEntry deps/libssh-0.6.4/include/libssh/curve25519.h
438 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/include/libssh/curve25519.h', 420, 438 ]
439 silly gunzTarPerm extractEntry deps/libssh-0.6.4/include/libssh/dh.h
440 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/include/libssh/dh.h', 420, 438 ]
441 silly gunzTarPerm extractEntry deps/libssh-0.6.4/include/libssh/ecdh.h
442 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/include/libssh/ecdh.h', 420, 438 ]
443 silly gunzTarPerm extractEntry deps/libssh-0.6.4/include/libssh/gssapi.h
444 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/include/libssh/gssapi.h', 420, 438 ]
445 silly gunzTarPerm extractEntry deps/libssh-0.6.4/include/libssh/kex.h
446 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/include/libssh/kex.h', 420, 438 ]
447 silly gunzTarPerm extractEntry deps/libssh-0.6.4/include/libssh/keys.h
448 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/include/libssh/keys.h', 420, 438 ]
449 silly gunzTarPerm extractEntry deps/libssh-0.6.4/include/libssh/knownhosts.h
450 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/include/libssh/knownhosts.h', 420, 438 ]
451 silly gunzTarPerm extractEntry deps/libssh-0.6.4/include/libssh/legacy.h
452 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/include/libssh/legacy.h', 420, 438 ]
453 silly gunzTarPerm extractEntry deps/libssh-0.6.4/include/libssh/libcrypto.h
454 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/include/libssh/libcrypto.h', 420, 438 ]
455 silly gunzTarPerm extractEntry deps/libssh-0.6.4/include/libssh/libgcrypt.h
456 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/include/libssh/libgcrypt.h', 420, 438 ]
457 silly gunzTarPerm extractEntry deps/libssh-0.6.4/include/libssh/libssh.h
458 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/include/libssh/libssh.h', 420, 438 ]
459 silly gunzTarPerm extractEntry deps/libssh-0.6.4/include/libssh/agent.h
460 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/include/libssh/agent.h', 420, 438 ]
461 silly gunzTarPerm extractEntry deps/libssh-0.6.4/include/libssh/messages.h
462 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/include/libssh/messages.h', 420, 438 ]
463 silly gunzTarPerm extractEntry deps/libssh-0.6.4/include/libssh/misc.h
464 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/include/libssh/misc.h', 420, 438 ]
465 silly gunzTarPerm extractEntry deps/libssh-0.6.4/include/libssh/options.h
466 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/include/libssh/options.h', 420, 438 ]
467 silly gunzTarPerm extractEntry deps/libssh-0.6.4/include/libssh/packet.h
468 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/include/libssh/packet.h', 420, 438 ]
469 silly gunzTarPerm extractEntry deps/libssh-0.6.4/include/libssh/pcap.h
470 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/include/libssh/pcap.h', 420, 438 ]
471 silly gunzTarPerm extractEntry deps/libssh-0.6.4/include/libssh/pki.h
472 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/include/libssh/pki.h', 420, 438 ]
473 silly gunzTarPerm extractEntry deps/libssh-0.6.4/include/libssh/pki_priv.h
474 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/include/libssh/pki_priv.h', 420, 438 ]
475 silly gunzTarPerm extractEntry deps/libssh-0.6.4/include/libssh/poll.h
476 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/include/libssh/poll.h', 420, 438 ]
477 silly gunzTarPerm extractEntry deps/libssh-0.6.4/include/libssh/priv.h
478 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/include/libssh/priv.h', 420, 438 ]
479 silly gunzTarPerm extractEntry deps/libssh-0.6.4/include/libssh/scp.h
480 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/include/libssh/scp.h', 420, 438 ]
481 silly gunzTarPerm extractEntry deps/libssh-0.6.4/include/libssh/server.h
482 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/include/libssh/server.h', 420, 438 ]
483 silly gunzTarPerm extractEntry deps/libssh-0.6.4/include/libssh/session.h
484 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/include/libssh/session.h', 420, 438 ]
485 silly gunzTarPerm extractEntry deps/libssh-0.6.4/include/libssh/sftp.h
486 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/include/libssh/sftp.h', 420, 438 ]
487 silly gunzTarPerm extractEntry deps/libssh-0.6.4/include/libssh/socket.h
488 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/include/libssh/socket.h', 420, 438 ]
489 silly gunzTarPerm extractEntry deps/libssh-0.6.4/include/libssh/ssh1.h
490 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/include/libssh/ssh1.h', 420, 438 ]
491 silly gunzTarPerm extractEntry deps/libssh-0.6.4/include/libssh/ssh2.h
492 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/include/libssh/ssh2.h', 420, 438 ]
493 silly gunzTarPerm extractEntry deps/libssh-0.6.4/include/libssh/string.h
494 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/include/libssh/string.h', 420, 438 ]
495 silly gunzTarPerm extractEntry deps/libssh-0.6.4/include/libssh/threads.h
496 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/include/libssh/threads.h', 420, 438 ]
497 silly gunzTarPerm extractEntry deps/libssh-0.6.4/include/libssh/wrapper.h
498 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/include/libssh/wrapper.h', 420, 438 ]
499 silly gunzTarPerm extractEntry deps/libssh-0.6.4/libssh-build-tree-settings.cmake.in
500 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/libssh-build-tree-settings.cmake.in',
500 silly gunzTarPerm 420,
500 silly gunzTarPerm 438 ]
501 silly gunzTarPerm extractEntry deps/libssh-0.6.4/libssh-config-version.cmake.in
502 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/libssh-config-version.cmake.in', 420, 438 ]
503 silly gunzTarPerm extractEntry deps/libssh-0.6.4/libssh-config.cmake.in
504 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/libssh-config.cmake.in', 420, 438 ]
505 silly gunzTarPerm extractEntry deps/libssh-0.6.4/libssh.pc.cmake
506 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/libssh.pc.cmake', 420, 438 ]
507 silly gunzTarPerm extractEntry deps/libssh-0.6.4/libssh_threads.pc.cmake
508 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/libssh_threads.pc.cmake', 420, 438 ]
509 silly gunzTarPerm extractEntry deps/libssh-0.6.4/src/legacy.c
510 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/src/legacy.c', 420, 438 ]
511 silly gunzTarPerm extractEntry deps/libssh-0.6.4/src/CMakeLists.txt
512 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/src/CMakeLists.txt', 420, 438 ]
513 silly gunzTarPerm extractEntry deps/libssh-0.6.4/src/auth.c
514 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/src/auth.c', 420, 438 ]
515 silly gunzTarPerm extractEntry deps/libssh-0.6.4/src/auth1.c
516 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/src/auth1.c', 420, 438 ]
517 silly gunzTarPerm extractEntry deps/libssh-0.6.4/src/base64.c
518 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/src/base64.c', 420, 438 ]
519 silly gunzTarPerm extractEntry deps/libssh-0.6.4/src/bind.c
520 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/src/bind.c', 420, 438 ]
521 silly gunzTarPerm extractEntry deps/libssh-0.6.4/src/buffer.c
522 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/src/buffer.c', 420, 438 ]
523 silly gunzTarPerm extractEntry deps/libssh-0.6.4/src/callbacks.c
524 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/src/callbacks.c', 420, 438 ]
525 silly gunzTarPerm extractEntry deps/libssh-0.6.4/src/channels.c
526 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/src/channels.c', 420, 438 ]
527 silly gunzTarPerm extractEntry deps/libssh-0.6.4/src/channels1.c
528 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/src/channels1.c', 420, 438 ]
529 silly gunzTarPerm extractEntry deps/libssh-0.6.4/src/client.c
530 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/src/client.c', 420, 438 ]
531 silly gunzTarPerm extractEntry deps/libssh-0.6.4/src/config.c
532 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/src/config.c', 420, 438 ]
533 silly gunzTarPerm extractEntry deps/libssh-0.6.4/src/connect.c
534 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/src/connect.c', 420, 438 ]
535 silly gunzTarPerm extractEntry deps/libssh-0.6.4/src/crc32.c
536 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/src/crc32.c', 420, 438 ]
537 silly gunzTarPerm extractEntry deps/libssh-0.6.4/src/curve25519.c
538 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/src/curve25519.c', 420, 438 ]
539 silly gunzTarPerm extractEntry deps/libssh-0.6.4/src/curve25519_ref.c
540 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/src/curve25519_ref.c', 420, 438 ]
541 silly gunzTarPerm extractEntry deps/libssh-0.6.4/src/dh.c
542 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/src/dh.c', 420, 438 ]
543 silly gunzTarPerm extractEntry deps/libssh-0.6.4/src/ecdh.c
544 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/src/ecdh.c', 420, 438 ]
545 silly gunzTarPerm extractEntry deps/libssh-0.6.4/src/error.c
546 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/src/error.c', 420, 438 ]
547 silly gunzTarPerm extractEntry deps/libssh-0.6.4/src/gcrypt_missing.c
548 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/src/gcrypt_missing.c', 420, 438 ]
549 silly gunzTarPerm extractEntry deps/libssh-0.6.4/src/getpass.c
550 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/src/getpass.c', 420, 438 ]
551 silly gunzTarPerm extractEntry deps/libssh-0.6.4/src/gssapi.c
552 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/src/gssapi.c', 420, 438 ]
553 silly gunzTarPerm extractEntry deps/libssh-0.6.4/src/gzip.c
554 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/src/gzip.c', 420, 438 ]
555 silly gunzTarPerm extractEntry deps/libssh-0.6.4/src/init.c
556 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/src/init.c', 420, 438 ]
557 silly gunzTarPerm extractEntry deps/libssh-0.6.4/src/kex.c
558 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/src/kex.c', 420, 438 ]
559 silly gunzTarPerm extractEntry deps/libssh-0.6.4/src/kex1.c
560 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/src/kex1.c', 420, 438 ]
561 silly gunzTarPerm extractEntry deps/libssh-0.6.4/src/known_hosts.c
562 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/src/known_hosts.c', 420, 438 ]
563 silly gunzTarPerm extractEntry deps/libssh-0.6.4/src/agent.c
564 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/src/agent.c', 420, 438 ]
565 silly gunzTarPerm extractEntry deps/libssh-0.6.4/src/libcrypto.c
566 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/src/libcrypto.c', 420, 438 ]
567 silly gunzTarPerm extractEntry deps/libssh-0.6.4/src/libgcrypt.c
568 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/src/libgcrypt.c', 420, 438 ]
569 silly gunzTarPerm extractEntry deps/libssh-0.6.4/src/log.c
570 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/src/log.c', 420, 438 ]
571 silly gunzTarPerm extractEntry deps/libssh-0.6.4/src/match.c
572 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/src/match.c', 420, 438 ]
573 silly gunzTarPerm extractEntry deps/libssh-0.6.4/src/messages.c
574 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/src/messages.c', 420, 438 ]
575 silly gunzTarPerm extractEntry deps/libssh-0.6.4/src/misc.c
576 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/src/misc.c', 420, 438 ]
577 silly gunzTarPerm extractEntry deps/libssh-0.6.4/src/options.c
578 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/src/options.c', 420, 438 ]
579 silly gunzTarPerm extractEntry deps/libssh-0.6.4/src/packet.c
580 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/src/packet.c', 420, 438 ]
581 silly gunzTarPerm extractEntry deps/libssh-0.6.4/src/packet1.c
582 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/src/packet1.c', 420, 438 ]
583 silly gunzTarPerm extractEntry deps/libssh-0.6.4/src/packet_cb.c
584 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/src/packet_cb.c', 420, 438 ]
585 silly gunzTarPerm extractEntry deps/libssh-0.6.4/src/packet_crypt.c
586 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/src/packet_crypt.c', 420, 438 ]
587 silly gunzTarPerm extractEntry deps/libssh-0.6.4/src/pcap.c
588 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/src/pcap.c', 420, 438 ]
589 silly gunzTarPerm extractEntry deps/libssh-0.6.4/src/pki.c
590 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/src/pki.c', 420, 438 ]
591 silly gunzTarPerm extractEntry deps/libssh-0.6.4/src/pki_crypto.c
592 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/src/pki_crypto.c', 420, 438 ]
593 silly gunzTarPerm extractEntry deps/libssh-0.6.4/src/pki_gcrypt.c
594 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/src/pki_gcrypt.c', 420, 438 ]
595 silly gunzTarPerm extractEntry deps/libssh-0.6.4/src/poll.c
596 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/src/poll.c', 420, 438 ]
597 silly gunzTarPerm extractEntry deps/libssh-0.6.4/src/scp.c
598 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/src/scp.c', 420, 438 ]
599 silly gunzTarPerm extractEntry deps/libssh-0.6.4/src/server.c
600 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/src/server.c', 420, 438 ]
601 silly gunzTarPerm extractEntry deps/libssh-0.6.4/src/session.c
602 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/src/session.c', 420, 438 ]
603 silly gunzTarPerm extractEntry deps/libssh-0.6.4/src/sftp.c
604 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/src/sftp.c', 420, 438 ]
605 silly gunzTarPerm extractEntry deps/libssh-0.6.4/src/sftpserver.c
606 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/src/sftpserver.c', 420, 438 ]
607 silly gunzTarPerm extractEntry deps/libssh-0.6.4/src/socket.c
608 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/src/socket.c', 420, 438 ]
609 silly gunzTarPerm extractEntry deps/libssh-0.6.4/src/string.c
610 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/src/string.c', 420, 438 ]
611 silly gunzTarPerm extractEntry deps/libssh-0.6.4/src/threads/CMakeLists.txt
612 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/src/threads/CMakeLists.txt', 420, 438 ]
613 silly gunzTarPerm extractEntry deps/libssh-0.6.4/src/threads/pthread.c
614 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/src/threads/pthread.c', 420, 438 ]
615 silly gunzTarPerm extractEntry deps/libssh-0.6.4/src/threads.c
616 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/src/threads.c', 420, 438 ]
617 silly gunzTarPerm extractEntry deps/libssh-0.6.4/src/wrapper.c
618 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/src/wrapper.c', 420, 438 ]
619 silly gunzTarPerm extractEntry deps/libssh-0.6.4/tests/test_exec.c
620 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/tests/test_exec.c', 420, 438 ]
621 silly gunzTarPerm extractEntry deps/libssh-0.6.4/tests/CMakeLists.txt
622 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/tests/CMakeLists.txt', 420, 438 ]
623 silly gunzTarPerm extractEntry deps/libssh-0.6.4/tests/benchmarks/CMakeLists.txt
624 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/tests/benchmarks/CMakeLists.txt', 420, 438 ]
625 silly gunzTarPerm extractEntry deps/libssh-0.6.4/tests/benchmarks/bench1.sh
626 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/tests/benchmarks/bench1.sh', 420, 438 ]
627 silly gunzTarPerm extractEntry deps/libssh-0.6.4/tests/benchmarks/bench2.sh
628 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/tests/benchmarks/bench2.sh', 493, 511 ]
629 silly gunzTarPerm extractEntry deps/libssh-0.6.4/tests/benchmarks/bench_raw.c
630 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/tests/benchmarks/bench_raw.c', 420, 438 ]
631 silly gunzTarPerm extractEntry deps/libssh-0.6.4/tests/benchmarks/bench_scp.c
632 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/tests/benchmarks/bench_scp.c', 420, 438 ]
633 silly gunzTarPerm extractEntry deps/libssh-0.6.4/tests/benchmarks/bench_sftp.c
634 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/tests/benchmarks/bench_sftp.c', 420, 438 ]
635 silly gunzTarPerm extractEntry deps/libssh-0.6.4/tests/benchmarks/benchmarks.c
636 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/tests/benchmarks/benchmarks.c', 420, 438 ]
637 silly gunzTarPerm extractEntry deps/libssh-0.6.4/tests/benchmarks/benchmarks.h
638 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/tests/benchmarks/benchmarks.h', 420, 438 ]
639 silly gunzTarPerm extractEntry deps/libssh-0.6.4/tests/benchmarks/latency.c
640 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/tests/benchmarks/latency.c', 420, 438 ]
641 silly gunzTarPerm extractEntry deps/libssh-0.6.4/tests/chmodtest.c
642 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/tests/chmodtest.c', 420, 438 ]
643 silly gunzTarPerm extractEntry deps/libssh-0.6.4/tests/client/torture_proxycommand.c
644 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/tests/client/torture_proxycommand.c',
644 silly gunzTarPerm 420,
644 silly gunzTarPerm 438 ]
645 silly gunzTarPerm extractEntry deps/libssh-0.6.4/tests/client/CMakeLists.txt
646 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/tests/client/CMakeLists.txt', 420, 438 ]
647 silly gunzTarPerm extractEntry deps/libssh-0.6.4/tests/client/torture_auth.c
648 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/tests/client/torture_auth.c', 420, 438 ]
649 silly gunzTarPerm extractEntry deps/libssh-0.6.4/tests/client/torture_connect.c
650 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/tests/client/torture_connect.c', 420, 438 ]
651 silly gunzTarPerm extractEntry deps/libssh-0.6.4/tests/client/torture_forward.c
652 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/tests/client/torture_forward.c', 420, 438 ]
653 silly gunzTarPerm extractEntry deps/libssh-0.6.4/tests/client/torture_knownhosts.c
654 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/tests/client/torture_knownhosts.c',
654 silly gunzTarPerm 420,
654 silly gunzTarPerm 438 ]
655 silly gunzTarPerm extractEntry deps/libssh-0.6.4/tests/client/torture_algorithms.c
656 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/tests/client/torture_algorithms.c',
656 silly gunzTarPerm 420,
656 silly gunzTarPerm 438 ]
657 silly gunzTarPerm extractEntry deps/libssh-0.6.4/tests/client/torture_request_env.c
658 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/tests/client/torture_request_env.c',
658 silly gunzTarPerm 420,
658 silly gunzTarPerm 438 ]
659 silly gunzTarPerm extractEntry deps/libssh-0.6.4/tests/client/torture_session.c
660 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/tests/client/torture_session.c', 420, 438 ]
661 silly gunzTarPerm extractEntry deps/libssh-0.6.4/tests/client/torture_sftp_dir.c
662 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/tests/client/torture_sftp_dir.c', 420, 438 ]
663 silly gunzTarPerm extractEntry deps/libssh-0.6.4/tests/client/torture_sftp_read.c
664 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/tests/client/torture_sftp_read.c',
664 silly gunzTarPerm 420,
664 silly gunzTarPerm 438 ]
665 silly gunzTarPerm extractEntry deps/libssh-0.6.4/tests/client/torture_sftp_static.c
666 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/tests/client/torture_sftp_static.c',
666 silly gunzTarPerm 420,
666 silly gunzTarPerm 438 ]
667 silly gunzTarPerm extractEntry deps/libssh-0.6.4/tests/cmdline.c
668 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/tests/cmdline.c', 420, 438 ]
669 silly gunzTarPerm extractEntry deps/libssh-0.6.4/tests/connection.c
670 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/tests/connection.c', 420, 438 ]
671 silly gunzTarPerm extractEntry deps/libssh-0.6.4/tests/ctest-default.cmake
672 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/tests/ctest-default.cmake', 420, 438 ]
673 silly gunzTarPerm extractEntry deps/libssh-0.6.4/tests/generate.py
674 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/tests/generate.py', 493, 511 ]
675 silly gunzTarPerm extractEntry deps/libssh-0.6.4/tests/sftp_stress/main.c
676 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/tests/sftp_stress/main.c', 420, 438 ]
677 silly gunzTarPerm extractEntry deps/libssh-0.6.4/tests/authentication.c
678 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/tests/authentication.c', 420, 438 ]
679 silly gunzTarPerm extractEntry deps/libssh-0.6.4/tests/test_pcap.c
680 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/tests/test_pcap.c', 420, 438 ]
681 silly gunzTarPerm extractEntry deps/libssh-0.6.4/tests/test_socket.c
682 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/tests/test_socket.c', 420, 438 ]
683 silly gunzTarPerm extractEntry deps/libssh-0.6.4/tests/test_ssh_bind_accept_fd.c
684 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/tests/test_ssh_bind_accept_fd.c', 420, 438 ]
685 silly gunzTarPerm extractEntry deps/libssh-0.6.4/tests/test_tunnel.c
686 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/tests/test_tunnel.c', 420, 438 ]
687 silly gunzTarPerm extractEntry deps/libssh-0.6.4/tests/tests.h
688 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/tests/tests.h', 420, 438 ]
689 silly gunzTarPerm extractEntry deps/libssh-0.6.4/tests/torture.c
690 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/tests/torture.c', 420, 438 ]
691 silly gunzTarPerm extractEntry deps/libssh-0.6.4/tests/torture.h
692 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/tests/torture.h', 420, 438 ]
693 silly gunzTarPerm extractEntry deps/libssh-0.6.4/tests/unittests/torture_keyfiles.c
694 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/tests/unittests/torture_keyfiles.c',
694 silly gunzTarPerm 420,
694 silly gunzTarPerm 438 ]
695 silly gunzTarPerm extractEntry deps/libssh-0.6.4/tests/unittests/CMakeLists.txt
696 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/tests/unittests/CMakeLists.txt', 420, 438 ]
697 silly gunzTarPerm extractEntry deps/libssh-0.6.4/tests/unittests/torture_callbacks.c
698 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/tests/unittests/torture_callbacks.c',
698 silly gunzTarPerm 420,
698 silly gunzTarPerm 438 ]
699 silly gunzTarPerm extractEntry deps/libssh-0.6.4/tests/unittests/torture_channel.c
700 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/tests/unittests/torture_channel.c',
700 silly gunzTarPerm 420,
700 silly gunzTarPerm 438 ]
701 silly gunzTarPerm extractEntry deps/libssh-0.6.4/tests/unittests/torture_init.c
702 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/tests/unittests/torture_init.c', 420, 438 ]
703 silly gunzTarPerm extractEntry deps/libssh-0.6.4/tests/unittests/torture_isipaddr.c
704 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/tests/unittests/torture_isipaddr.c',
704 silly gunzTarPerm 420,
704 silly gunzTarPerm 438 ]
705 silly gunzTarPerm extractEntry deps/libssh-0.6.4/tests/unittests/torture_buffer.c
706 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/tests/unittests/torture_buffer.c',
706 silly gunzTarPerm 420,
706 silly gunzTarPerm 438 ]
707 silly gunzTarPerm extractEntry deps/libssh-0.6.4/tests/unittests/torture_list.c
708 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/tests/unittests/torture_list.c', 420, 438 ]
709 silly gunzTarPerm extractEntry deps/libssh-0.6.4/tests/unittests/torture_misc.c
710 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/tests/unittests/torture_misc.c', 420, 438 ]
711 silly gunzTarPerm extractEntry deps/libssh-0.6.4/tests/unittests/torture_options.c
712 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/tests/unittests/torture_options.c',
712 silly gunzTarPerm 420,
712 silly gunzTarPerm 438 ]
713 silly gunzTarPerm extractEntry deps/libssh-0.6.4/tests/unittests/torture_pki.c
714 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/tests/unittests/torture_pki.c', 420, 438 ]
715 silly gunzTarPerm extractEntry deps/libssh-0.6.4/tests/unittests/torture_rand.c
716 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/tests/unittests/torture_rand.c', 420, 438 ]
717 silly gunzTarPerm extractEntry deps/libssh-0.6.4/tests/valgrind.supp
718 silly gunzTarPerm modified mode [ 'deps/libssh-0.6.4/tests/valgrind.supp', 420, 438 ]
719 silly gunzTarPerm extractEntry deps/libssh.gyp
720 silly gunzTarPerm modified mode [ 'deps/libssh.gyp', 420, 438 ]
721 silly gunzTarPerm extractEntry examples/exec.js
722 silly gunzTarPerm modified mode [ 'examples/exec.js', 420, 438 ]
723 silly gunzTarPerm extractEntry examples/stdiopipe.js
724 silly gunzTarPerm modified mode [ 'examples/stdiopipe.js', 420, 438 ]
725 silly gunzTarPerm extractEntry examples/term.js
726 silly gunzTarPerm modified mode [ 'examples/term.js', 420, 438 ]
727 silly gunzTarPerm extractEntry examples/trickysftp.js
728 silly gunzTarPerm modified mode [ 'examples/trickysftp.js', 420, 438 ]
729 silly gunzTarPerm extractEntry examples/fileforyou.txt
730 silly gunzTarPerm modified mode [ 'examples/fileforyou.txt', 420, 438 ]
731 silly gunzTarPerm extractEntry CONTRIBUTING.md
732 silly gunzTarPerm modified mode [ 'CONTRIBUTING.md', 420, 438 ]
733 silly gunzTarPerm extractEntry lib/channel.js
734 silly gunzTarPerm modified mode [ 'lib/channel.js', 420, 438 ]
735 silly gunzTarPerm extractEntry lib/server.js
736 silly gunzTarPerm modified mode [ 'lib/server.js', 420, 438 ]
737 silly gunzTarPerm extractEntry lib/session.js
738 silly gunzTarPerm modified mode [ 'lib/session.js', 420, 438 ]
739 silly gunzTarPerm extractEntry lib/stat.js
740 silly gunzTarPerm modified mode [ 'lib/stat.js', 420, 438 ]
741 silly gunzTarPerm extractEntry .dntrc
742 silly gunzTarPerm modified mode [ '.dntrc', 420, 438 ]
743 silly gunzTarPerm extractEntry src/server.cc
744 silly gunzTarPerm modified mode [ 'src/server.cc', 420, 438 ]
745 silly gunzTarPerm extractEntry src/channel.cc
746 silly gunzTarPerm modified mode [ 'src/channel.cc', 420, 438 ]
747 silly gunzTarPerm extractEntry src/message.cc
748 silly gunzTarPerm modified mode [ 'src/message.cc', 420, 438 ]
749 silly gunzTarPerm extractEntry src/message.h
750 silly gunzTarPerm modified mode [ 'src/message.h', 420, 438 ]
751 silly gunzTarPerm extractEntry src/nssh.cc
752 silly gunzTarPerm modified mode [ 'src/nssh.cc', 420, 438 ]
753 silly gunzTarPerm extractEntry src/nssh.h
754 silly gunzTarPerm modified mode [ 'src/nssh.h', 420, 438 ]
755 silly gunzTarPerm extractEntry src/channel.h
756 silly gunzTarPerm modified mode [ 'src/channel.h', 420, 438 ]
757 silly gunzTarPerm extractEntry src/server.h
758 silly gunzTarPerm modified mode [ 'src/server.h', 420, 438 ]
759 silly gunzTarPerm extractEntry src/session.cc
760 silly gunzTarPerm modified mode [ 'src/session.cc', 420, 438 ]
761 silly gunzTarPerm extractEntry src/session.h
762 silly gunzTarPerm modified mode [ 'src/session.h', 420, 438 ]
763 silly gunzTarPerm extractEntry src/sftp_message.cc
764 silly gunzTarPerm modified mode [ 'src/sftp_message.cc', 420, 438 ]
765 silly gunzTarPerm extractEntry src/sftp_message.h
766 silly gunzTarPerm modified mode [ 'src/sftp_message.h', 420, 438 ]
767 silly gunzTarPerm extractEntry test/basic-test.js
768 silly gunzTarPerm modified mode [ 'test/basic-test.js', 420, 438 ]
769 silly gunzTarPerm extractEntry test/exec-test.js
770 silly gunzTarPerm modified mode [ 'test/exec-test.js', 420, 438 ]
771 silly gunzTarPerm extractEntry test/execute-server.js
772 silly gunzTarPerm modified mode [ 'test/execute-server.js', 420, 438 ]
773 silly gunzTarPerm extractEntry test/sftp-test.js
774 silly gunzTarPerm modified mode [ 'test/sftp-test.js', 420, 438 ]
775 silly gunzTarPerm extractEntry test/standard-connection-test.js
776 silly gunzTarPerm modified mode [ 'test/standard-connection-test.js', 420, 438 ]
777 silly gunzTarPerm extractEntry test/util.js
778 silly gunzTarPerm modified mode [ 'test/util.js', 420, 438 ]
779 silly gunzTarPerm extractEntry test/keys/host_dsa
780 silly gunzTarPerm modified mode [ 'test/keys/host_dsa', 420, 438 ]
781 silly gunzTarPerm extractEntry test/keys/host_dsa.pub
782 silly gunzTarPerm modified mode [ 'test/keys/host_dsa.pub', 420, 438 ]
783 silly gunzTarPerm extractEntry test/keys/host_rsa
784 silly gunzTarPerm modified mode [ 'test/keys/host_rsa', 420, 438 ]
785 silly gunzTarPerm extractEntry test/keys/host_rsa.pub
786 silly gunzTarPerm modified mode [ 'test/keys/host_rsa.pub', 420, 438 ]
787 silly gunzTarPerm extractEntry test/keys/id_rsa
788 silly gunzTarPerm modified mode [ 'test/keys/id_rsa', 420, 438 ]
789 silly gunzTarPerm extractEntry test/keys/id_rsa.pub
790 silly gunzTarPerm modified mode [ 'test/keys/id_rsa.pub', 420, 438 ]
791 silly gunzTarPerm extractEntry test/testdata.bin
792 silly gunzTarPerm modified mode [ 'test/testdata.bin', 420, 438 ]
793 verbose write writing to C:\Users\max\Desktop\Hackthon-Team-3\node_modules\ssh\package.json
794 info preinstall [email protected]
795 verbose readDependencies loading dependencies from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\ssh\package.json
796 silly prepareForInstallMany adding bindings@* from ssh dependencies
797 silly prepareForInstallMany adding nan@^1.8.4 from ssh dependencies
798 verbose readDependencies loading dependencies from C:\Users\max\Desktop\Hackthon-Team-3\node_modules\ssh\package.json
799 silly cache add args [ 'bindings@*', null ]
800 verbose cache add spec bindings@*
801 silly cache add args [ 'nan@^1.8.4', null ]
802 verbose cache add spec nan@^1.8.4
803 silly cache add parsed spec Result {
803 silly cache add raw: 'bindings@*',
803 silly cache add scope: null,
803 silly cache add name: 'bindings',
803 silly cache add rawSpec: '*',
803 silly cache add spec: '*',
803 silly cache add type: 'range' }
804 silly addNamed bindings@*
805 verbose addNamed "*" is a valid semver range for bindings
806 silly addNameRange { name: 'bindings', range: '*', hasData: false }
807 silly mapToRegistry name bindings
808 silly mapToRegistry using default registry
809 silly mapToRegistry registry https://registry.npmjs.org/
810 silly mapToRegistry data Result {
810 silly mapToRegistry raw: 'bindings',
810 silly mapToRegistry scope: null,
810 silly mapToRegistry name: 'bindings',
810 silly mapToRegistry rawSpec: '',
810 silly mapToRegistry spec: 'latest',
810 silly mapToRegistry type: 'tag' }
811 silly mapToRegistry uri https://registry.npmjs.org/bindings
812 verbose addNameRange registry:https://registry.npmjs.org/bindings not in flight; fetching
813 silly cache add parsed spec Result {
813 silly cache add raw: 'nan@^1.8.4',
813 silly cache add scope: null,
813 silly cache add name: 'nan',
813 silly cache add rawSpec: '^1.8.4',
813 silly cache add spec: '>=1.8.4 <2.0.0',
813 silly cache add type: 'range' }
814 silly addNamed nan@>=1.8.4 <2.0.0
815 verbose addNamed ">=1.8.4 <2.0.0" is a valid semver range for nan
816 silly addNameRange { name: 'nan', range: '>=1.8.4 <2.0.0', hasData: false }
817 silly mapToRegistry name nan
818 silly mapToRegistry using default registry
819 silly mapToRegistry registry https://registry.npmjs.org/
820 silly mapToRegistry data Result {
820 silly mapToRegistry raw: 'nan',
820 silly mapToRegistry scope: null,
820 silly mapToRegistry name: 'nan',
820 silly mapToRegistry rawSpec: '',
820 silly mapToRegistry spec: 'latest',
820 silly mapToRegistry type: 'tag' }
821 silly mapToRegistry uri https://registry.npmjs.org/nan
822 verbose addNameRange registry:https://registry.npmjs.org/nan not in flight; fetching
823 verbose request uri https://registry.npmjs.org/bindings
824 verbose request no auth needed
825 info attempt registry request try #1 at 17:17:30
826 http request GET https://registry.npmjs.org/bindings
827 verbose request uri https://registry.npmjs.org/nan
828 verbose request no auth needed
829 info attempt registry request try #1 at 17:17:30
830 http request GET https://registry.npmjs.org/nan
831 http 200 https://registry.npmjs.org/bindings
832 verbose headers { server: 'CouchDB/1.6.1 (Erlang OTP/R16B03)',
832 verbose headers etag: '"33TX4J3DNTGF7K41ZUV6OA182"',
832 verbose headers 'content-type': 'application/json',
832 verbose headers 'content-encoding': 'gzip',
832 verbose headers 'cache-control': 'max-age=300',
832 verbose headers 'content-length': '3804',
832 verbose headers 'accept-ranges': 'bytes',
832 verbose headers date: 'Sat, 06 Aug 2016 08:17:44 GMT',
832 verbose headers via: '1.1 varnish',
832 verbose headers age: '4',
832 verbose headers connection: 'keep-alive',
832 verbose headers 'x-served-by': 'cache-hkg6826-HKG',
832 verbose headers 'x-cache': 'HIT',