-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnpm-debug.log
More file actions
4994 lines (4994 loc) · 489 KB
/
npm-debug.log
File metadata and controls
4994 lines (4994 loc) · 489 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 [ '/home/ubuntu/.nvm/versions/node/v4.6.1/bin/node',
1 verbose cli '/home/ubuntu/.nvm/versions/node/v4.6.1/bin/npm',
1 verbose cli 'update',
1 verbose cli '-g' ]
2 info using npm@4.0.5
3 info using node@v4.6.1
4 silly mapToRegistry name events
5 silly mapToRegistry using default registry
6 silly mapToRegistry registry https://registry.npmjs.org/
7 silly mapToRegistry data Result {
7 silly mapToRegistry raw: 'events',
7 silly mapToRegistry scope: null,
7 silly mapToRegistry escapedName: 'events',
7 silly mapToRegistry name: 'events',
7 silly mapToRegistry rawSpec: '',
7 silly mapToRegistry spec: 'latest',
7 silly mapToRegistry type: 'tag' }
8 silly mapToRegistry uri https://registry.npmjs.org/events
9 silly mapToRegistry name express
10 silly mapToRegistry using default registry
11 silly mapToRegistry registry https://registry.npmjs.org/
12 silly mapToRegistry data Result {
12 silly mapToRegistry raw: 'express',
12 silly mapToRegistry scope: null,
12 silly mapToRegistry escapedName: 'express',
12 silly mapToRegistry name: 'express',
12 silly mapToRegistry rawSpec: '',
12 silly mapToRegistry spec: 'latest',
12 silly mapToRegistry type: 'tag' }
13 silly mapToRegistry uri https://registry.npmjs.org/express
14 silly mapToRegistry name n
15 silly mapToRegistry using default registry
16 silly mapToRegistry registry https://registry.npmjs.org/
17 silly mapToRegistry data Result {
17 silly mapToRegistry raw: 'n',
17 silly mapToRegistry scope: null,
17 silly mapToRegistry escapedName: 'n',
17 silly mapToRegistry name: 'n',
17 silly mapToRegistry rawSpec: '',
17 silly mapToRegistry spec: 'latest',
17 silly mapToRegistry type: 'tag' }
18 silly mapToRegistry uri https://registry.npmjs.org/n
19 silly mapToRegistry name node
20 silly mapToRegistry using default registry
21 silly mapToRegistry registry https://registry.npmjs.org/
22 silly mapToRegistry data Result {
22 silly mapToRegistry raw: 'node',
22 silly mapToRegistry scope: null,
22 silly mapToRegistry escapedName: 'node',
22 silly mapToRegistry name: 'node',
22 silly mapToRegistry rawSpec: '',
22 silly mapToRegistry spec: 'latest',
22 silly mapToRegistry type: 'tag' }
23 silly mapToRegistry uri https://registry.npmjs.org/node
24 silly mapToRegistry name nodejs
25 silly mapToRegistry using default registry
26 silly mapToRegistry registry https://registry.npmjs.org/
27 silly mapToRegistry data Result {
27 silly mapToRegistry raw: 'nodejs',
27 silly mapToRegistry scope: null,
27 silly mapToRegistry escapedName: 'nodejs',
27 silly mapToRegistry name: 'nodejs',
27 silly mapToRegistry rawSpec: '',
27 silly mapToRegistry spec: 'latest',
27 silly mapToRegistry type: 'tag' }
28 silly mapToRegistry uri https://registry.npmjs.org/nodejs
29 silly mapToRegistry name npm
30 silly mapToRegistry using default registry
31 silly mapToRegistry registry https://registry.npmjs.org/
32 silly mapToRegistry data Result {
32 silly mapToRegistry raw: 'npm',
32 silly mapToRegistry scope: null,
32 silly mapToRegistry escapedName: 'npm',
32 silly mapToRegistry name: 'npm',
32 silly mapToRegistry rawSpec: '',
32 silly mapToRegistry spec: 'latest',
32 silly mapToRegistry type: 'tag' }
33 silly mapToRegistry uri https://registry.npmjs.org/npm
34 silly mapToRegistry name yum
35 silly mapToRegistry using default registry
36 silly mapToRegistry registry https://registry.npmjs.org/
37 silly mapToRegistry data Result {
37 silly mapToRegistry raw: 'yum',
37 silly mapToRegistry scope: null,
37 silly mapToRegistry escapedName: 'yum',
37 silly mapToRegistry name: 'yum',
37 silly mapToRegistry rawSpec: '',
37 silly mapToRegistry spec: 'latest',
37 silly mapToRegistry type: 'tag' }
38 silly mapToRegistry uri https://registry.npmjs.org/yum
39 verbose request uri https://registry.npmjs.org/events
40 verbose request no auth needed
41 info attempt registry request try #1 at 1:28:36 AM
42 verbose request id 4ea4d6c2c9be61c8
43 verbose etag W/"58350d5f-38ef"
44 verbose lastModified Wed, 23 Nov 2016 03:30:39 GMT
45 http request GET https://registry.npmjs.org/events
46 verbose request uri https://registry.npmjs.org/node
47 verbose request no auth needed
48 info attempt registry request try #1 at 1:28:36 AM
49 verbose etag W/"561c5238-43d"
50 verbose lastModified Tue, 13 Oct 2015 00:37:12 GMT
51 http request GET https://registry.npmjs.org/node
52 verbose request uri https://registry.npmjs.org/nodejs
53 verbose request no auth needed
54 info attempt registry request try #1 at 1:28:36 AM
55 verbose etag W/"580a265b-3dd"
56 verbose lastModified Fri, 21 Oct 2016 14:29:47 GMT
57 http request GET https://registry.npmjs.org/nodejs
58 verbose request uri https://registry.npmjs.org/express
59 verbose request no auth needed
60 info attempt registry request try #1 at 1:28:36 AM
61 verbose etag W/"5857717a-8545f"
62 verbose lastModified Mon, 19 Dec 2016 05:34:50 GMT
63 http request GET https://registry.npmjs.org/express
64 verbose request uri https://registry.npmjs.org/yum
65 verbose request no auth needed
66 info attempt registry request try #1 at 1:28:36 AM
67 verbose etag W/"57221c9f-1d89"
68 verbose lastModified Thu, 28 Apr 2016 14:22:23 GMT
69 http request GET https://registry.npmjs.org/yum
70 verbose request uri https://registry.npmjs.org/n
71 verbose request no auth needed
72 info attempt registry request try #1 at 1:28:36 AM
73 verbose etag "584f1c1f-f9ff"
74 http request GET https://registry.npmjs.org/n
75 verbose request uri https://registry.npmjs.org/npm
76 verbose request no auth needed
77 info attempt registry request try #1 at 1:28:37 AM
78 verbose etag W/"58543dd0-5aa3f5"
79 verbose lastModified Fri, 16 Dec 2016 19:17:36 GMT
80 http request GET https://registry.npmjs.org/npm
81 http 304 https://registry.npmjs.org/events
82 verbose headers { date: 'Tue, 20 Dec 2016 01:28:37 GMT',
82 verbose headers via: '1.1 varnish',
82 verbose headers 'cache-control': 'max-age=300',
82 verbose headers etag: 'W/"58350d5f-38ef"',
82 verbose headers age: '14',
82 verbose headers connection: 'keep-alive',
82 verbose headers 'x-served-by': 'cache-hkg6825-HKG',
82 verbose headers 'x-cache': 'HIT',
82 verbose headers 'x-cache-hits': '2',
82 verbose headers 'x-timer': 'S1482197317.093017,VS0,VE0',
82 verbose headers vary: 'Accept-Encoding' }
83 silly get cb [ 304,
83 silly get { date: 'Tue, 20 Dec 2016 01:28:37 GMT',
83 silly get via: '1.1 varnish',
83 silly get 'cache-control': 'max-age=300',
83 silly get etag: 'W/"58350d5f-38ef"',
83 silly get age: '14',
83 silly get connection: 'keep-alive',
83 silly get 'x-served-by': 'cache-hkg6825-HKG',
83 silly get 'x-cache': 'HIT',
83 silly get 'x-cache-hits': '2',
83 silly get 'x-timer': 'S1482197317.093017,VS0,VE0',
83 silly get vary: 'Accept-Encoding' } ]
84 verbose etag https://registry.npmjs.org/events from cache
85 verbose get saving events to /home/ubuntu/.npm/registry.npmjs.org/events/.cache.json
86 verbose correctMkdir /home/ubuntu/.npm correctMkdir not in flight; initializing
87 http 304 https://registry.npmjs.org/node
88 verbose headers { date: 'Tue, 20 Dec 2016 01:28:37 GMT',
88 verbose headers via: '1.1 varnish',
88 verbose headers 'cache-control': 'max-age=300',
88 verbose headers etag: 'W/"561c5238-43d"',
88 verbose headers age: '27',
88 verbose headers connection: 'keep-alive',
88 verbose headers 'x-served-by': 'cache-hkg6825-HKG',
88 verbose headers 'x-cache': 'HIT',
88 verbose headers 'x-cache-hits': '1',
88 verbose headers 'x-timer': 'S1482197317.095505,VS0,VE0',
88 verbose headers vary: 'Accept-Encoding' }
89 silly get cb [ 304,
89 silly get { date: 'Tue, 20 Dec 2016 01:28:37 GMT',
89 silly get via: '1.1 varnish',
89 silly get 'cache-control': 'max-age=300',
89 silly get etag: 'W/"561c5238-43d"',
89 silly get age: '27',
89 silly get connection: 'keep-alive',
89 silly get 'x-served-by': 'cache-hkg6825-HKG',
89 silly get 'x-cache': 'HIT',
89 silly get 'x-cache-hits': '1',
89 silly get 'x-timer': 'S1482197317.095505,VS0,VE0',
89 silly get vary: 'Accept-Encoding' } ]
90 verbose etag https://registry.npmjs.org/node from cache
91 verbose get saving node to /home/ubuntu/.npm/registry.npmjs.org/node/.cache.json
92 verbose correctMkdir /home/ubuntu/.npm correctMkdir already in flight; waiting
93 http 304 https://registry.npmjs.org/nodejs
94 verbose headers { date: 'Tue, 20 Dec 2016 01:28:37 GMT',
94 verbose headers via: '1.1 varnish',
94 verbose headers 'cache-control': 'max-age=300',
94 verbose headers etag: 'W/"580a265b-3dd"',
94 verbose headers age: '28',
94 verbose headers connection: 'keep-alive',
94 verbose headers 'x-served-by': 'cache-hkg6824-HKG',
94 verbose headers 'x-cache': 'HIT',
94 verbose headers 'x-cache-hits': '1',
94 verbose headers 'x-timer': 'S1482197317.095135,VS0,VE0',
94 verbose headers vary: 'Accept-Encoding' }
95 silly get cb [ 304,
95 silly get { date: 'Tue, 20 Dec 2016 01:28:37 GMT',
95 silly get via: '1.1 varnish',
95 silly get 'cache-control': 'max-age=300',
95 silly get etag: 'W/"580a265b-3dd"',
95 silly get age: '28',
95 silly get connection: 'keep-alive',
95 silly get 'x-served-by': 'cache-hkg6824-HKG',
95 silly get 'x-cache': 'HIT',
95 silly get 'x-cache-hits': '1',
95 silly get 'x-timer': 'S1482197317.095135,VS0,VE0',
95 silly get vary: 'Accept-Encoding' } ]
96 verbose etag https://registry.npmjs.org/nodejs from cache
97 verbose get saving nodejs to /home/ubuntu/.npm/registry.npmjs.org/nodejs/.cache.json
98 verbose correctMkdir /home/ubuntu/.npm correctMkdir already in flight; waiting
99 http 304 https://registry.npmjs.org/yum
100 verbose headers { date: 'Tue, 20 Dec 2016 01:28:37 GMT',
100 verbose headers via: '1.1 varnish',
100 verbose headers 'cache-control': 'max-age=300',
100 verbose headers etag: 'W/"57221c9f-1d89"',
100 verbose headers age: '28',
100 verbose headers connection: 'keep-alive',
100 verbose headers 'x-served-by': 'cache-hkg6820-HKG',
100 verbose headers 'x-cache': 'HIT',
100 verbose headers 'x-cache-hits': '1',
100 verbose headers 'x-timer': 'S1482197317.090743,VS0,VE0',
100 verbose headers vary: 'Accept-Encoding' }
101 silly get cb [ 304,
101 silly get { date: 'Tue, 20 Dec 2016 01:28:37 GMT',
101 silly get via: '1.1 varnish',
101 silly get 'cache-control': 'max-age=300',
101 silly get etag: 'W/"57221c9f-1d89"',
101 silly get age: '28',
101 silly get connection: 'keep-alive',
101 silly get 'x-served-by': 'cache-hkg6820-HKG',
101 silly get 'x-cache': 'HIT',
101 silly get 'x-cache-hits': '1',
101 silly get 'x-timer': 'S1482197317.090743,VS0,VE0',
101 silly get vary: 'Accept-Encoding' } ]
102 verbose etag https://registry.npmjs.org/yum from cache
103 verbose get saving yum to /home/ubuntu/.npm/registry.npmjs.org/yum/.cache.json
104 verbose correctMkdir /home/ubuntu/.npm correctMkdir already in flight; waiting
105 http 304 https://registry.npmjs.org/npm
106 verbose headers { date: 'Tue, 20 Dec 2016 01:28:37 GMT',
106 verbose headers via: '1.1 varnish',
106 verbose headers 'cache-control': 'max-age=300',
106 verbose headers etag: 'W/"58543dd0-5aa3f5"',
106 verbose headers age: '28',
106 verbose headers connection: 'keep-alive',
106 verbose headers 'x-served-by': 'cache-hkg6826-HKG',
106 verbose headers 'x-cache': 'HIT',
106 verbose headers 'x-cache-hits': '1',
106 verbose headers 'x-timer': 'S1482197317.102719,VS0,VE3',
106 verbose headers vary: 'Accept-Encoding' }
107 silly get cb [ 304,
107 silly get { date: 'Tue, 20 Dec 2016 01:28:37 GMT',
107 silly get via: '1.1 varnish',
107 silly get 'cache-control': 'max-age=300',
107 silly get etag: 'W/"58543dd0-5aa3f5"',
107 silly get age: '28',
107 silly get connection: 'keep-alive',
107 silly get 'x-served-by': 'cache-hkg6826-HKG',
107 silly get 'x-cache': 'HIT',
107 silly get 'x-cache-hits': '1',
107 silly get 'x-timer': 'S1482197317.102719,VS0,VE3',
107 silly get vary: 'Accept-Encoding' } ]
108 verbose etag https://registry.npmjs.org/npm from cache
109 verbose get saving npm to /home/ubuntu/.npm/registry.npmjs.org/npm/.cache.json
110 verbose correctMkdir /home/ubuntu/.npm correctMkdir not in flight; initializing
111 http 304 https://registry.npmjs.org/express
112 verbose headers { date: 'Tue, 20 Dec 2016 01:28:37 GMT',
112 verbose headers via: '1.1 varnish',
112 verbose headers 'cache-control': 'max-age=300',
112 verbose headers etag: 'W/"5857717a-8545f"',
112 verbose headers age: '108',
112 verbose headers connection: 'keep-alive',
112 verbose headers 'x-served-by': 'cache-hkg6822-HKG',
112 verbose headers 'x-cache': 'HIT',
112 verbose headers 'x-cache-hits': '68',
112 verbose headers 'x-timer': 'S1482197317.106235,VS0,VE0',
112 verbose headers vary: 'Accept-Encoding' }
113 silly get cb [ 304,
113 silly get { date: 'Tue, 20 Dec 2016 01:28:37 GMT',
113 silly get via: '1.1 varnish',
113 silly get 'cache-control': 'max-age=300',
113 silly get etag: 'W/"5857717a-8545f"',
113 silly get age: '108',
113 silly get connection: 'keep-alive',
113 silly get 'x-served-by': 'cache-hkg6822-HKG',
113 silly get 'x-cache': 'HIT',
113 silly get 'x-cache-hits': '68',
113 silly get 'x-timer': 'S1482197317.106235,VS0,VE0',
113 silly get vary: 'Accept-Encoding' } ]
114 verbose etag https://registry.npmjs.org/express from cache
115 verbose get saving express to /home/ubuntu/.npm/registry.npmjs.org/express/.cache.json
116 verbose correctMkdir /home/ubuntu/.npm correctMkdir not in flight; initializing
117 http 304 https://registry.npmjs.org/n
118 verbose headers { date: 'Tue, 20 Dec 2016 01:28:37 GMT',
118 verbose headers via: '1.1 varnish',
118 verbose headers 'cache-control': 'max-age=300',
118 verbose headers etag: '"584f1c1f-f9ff"',
118 verbose headers age: '27',
118 verbose headers connection: 'keep-alive',
118 verbose headers 'x-served-by': 'cache-hkg6822-HKG',
118 verbose headers 'x-cache': 'HIT',
118 verbose headers 'x-cache-hits': '1',
118 verbose headers 'x-timer': 'S1482197317.112273,VS0,VE0',
118 verbose headers vary: 'Accept-Encoding' }
119 silly get cb [ 304,
119 silly get { date: 'Tue, 20 Dec 2016 01:28:37 GMT',
119 silly get via: '1.1 varnish',
119 silly get 'cache-control': 'max-age=300',
119 silly get etag: '"584f1c1f-f9ff"',
119 silly get age: '27',
119 silly get connection: 'keep-alive',
119 silly get 'x-served-by': 'cache-hkg6822-HKG',
119 silly get 'x-cache': 'HIT',
119 silly get 'x-cache-hits': '1',
119 silly get 'x-timer': 'S1482197317.112273,VS0,VE0',
119 silly get vary: 'Accept-Encoding' } ]
120 verbose etag https://registry.npmjs.org/n from cache
121 verbose get saving n to /home/ubuntu/.npm/registry.npmjs.org/n/.cache.json
122 verbose correctMkdir /home/ubuntu/.npm correctMkdir not in flight; initializing
123 info outdated updating [ { dep:
123 info outdated Node {
123 info outdated id: 7,
123 info outdated package: [Object],
123 info outdated path: '/home/ubuntu/.nvm/versions/node/v4.6.1/lib/node_modules/npm',
123 info outdated realpath: '/home/ubuntu/.nvm/versions/node/v4.6.1/lib/node_modules/npm',
123 info outdated parent: [Object],
123 info outdated isLink: false,
123 info outdated children: [Object],
123 info outdated error: null,
123 info outdated loaded: false,
123 info outdated requiredBy: [],
123 info outdated requires: [Object],
123 info outdated missingDeps: {},
123 info outdated missingDevDeps: {},
123 info outdated phantomChildren: {},
123 info outdated location: '/npm',
123 info outdated userRequired: false,
123 info outdated existing: false,
123 info outdated isTop: false,
123 info outdated resolved: [Object] },
123 info outdated depname: 'npm',
123 info outdated current: '4.0.5',
123 info outdated wanted: '4.1.1',
123 info outdated latest: '4.0.5',
123 info outdated req: '*',
123 info outdated what: 'npm@4.1.1' } ]
124 silly loadCurrentTree Starting
125 silly install loadCurrentTree
126 silly install readGlobalPackageData
127 silly fetchPackageMetaData npm@4.1.1
128 silly fetchNamedPackageData npm
129 silly mapToRegistry name npm
130 silly mapToRegistry using default registry
131 silly mapToRegistry registry https://registry.npmjs.org/
132 silly mapToRegistry data Result {
132 silly mapToRegistry raw: 'npm',
132 silly mapToRegistry scope: null,
132 silly mapToRegistry escapedName: 'npm',
132 silly mapToRegistry name: 'npm',
132 silly mapToRegistry rawSpec: '',
132 silly mapToRegistry spec: 'latest',
132 silly mapToRegistry type: 'tag' }
133 silly mapToRegistry uri https://registry.npmjs.org/npm
134 verbose get https://registry.npmjs.org/npm not expired, no request
135 silly install normalizeTree
136 silly loadCurrentTree Finishing
137 silly loadIdealTree Starting
138 silly install loadIdealTree
139 silly cloneCurrentTree Starting
140 silly install cloneCurrentTreeToIdealTree
141 silly cloneCurrentTree Finishing
142 silly loadShrinkwrap Starting
143 silly install loadShrinkwrap
144 silly loadShrinkwrap Finishing
145 silly loadAllDepsIntoIdealTree Starting
146 silly install loadAllDepsIntoIdealTree
147 silly resolveWithNewModule npm@4.1.1 checking installable status
148 silly cache add args [ 'npm@4.1.1', null ]
149 verbose cache add spec npm@4.1.1
150 silly cache add parsed spec Result {
150 silly cache add raw: 'npm@4.1.1',
150 silly cache add scope: null,
150 silly cache add escapedName: 'npm',
150 silly cache add name: 'npm',
150 silly cache add rawSpec: '4.1.1',
150 silly cache add spec: '4.1.1',
150 silly cache add type: 'version' }
151 silly addNamed npm@4.1.1
152 verbose addNamed "4.1.1" is a plain semver version for npm
153 silly mapToRegistry name npm
154 silly mapToRegistry using default registry
155 silly mapToRegistry registry https://registry.npmjs.org/
156 silly mapToRegistry data Result {
156 silly mapToRegistry raw: 'npm',
156 silly mapToRegistry scope: null,
156 silly mapToRegistry escapedName: 'npm',
156 silly mapToRegistry name: 'npm',
156 silly mapToRegistry rawSpec: '',
156 silly mapToRegistry spec: 'latest',
156 silly mapToRegistry type: 'tag' }
157 silly mapToRegistry uri https://registry.npmjs.org/npm
158 verbose addNameVersion registry:https://registry.npmjs.org/npm not in flight; fetching
159 verbose get https://registry.npmjs.org/npm not expired, no request
160 silly cache afterAdd npm@4.1.1
161 verbose afterAdd /home/ubuntu/.npm/npm/4.1.1/package/package.json not in flight; writing
162 verbose correctMkdir /home/ubuntu/.npm correctMkdir not in flight; initializing
163 verbose afterAdd /home/ubuntu/.npm/npm/4.1.1/package/package.json written
164 verbose correctMkdir /home/ubuntu/.npm correctMkdir not in flight; initializing
165 verbose addBundled extract /home/ubuntu/.npm/npm/4.1.1/package.tgz
166 verbose tar unpack /home/ubuntu/.npm/npm/4.1.1/package.tgz
167 verbose tar unpacking to /tmp/npm-15943-5cc6f2cd/unpack-1b4a8443
168 silly gentlyRm /tmp/npm-15943-5cc6f2cd/unpack-1b4a8443 is being purged
169 verbose gentlyRm don't care about contents; nuking /tmp/npm-15943-5cc6f2cd/unpack-1b4a8443
170 silly gunzTarPerm modes [ '755', '644' ]
171 silly gunzTarPerm extractEntry package.json
172 silly gunzTarPerm extractEntry .npmignore
173 silly gunzTarPerm extractEntry README.md
174 silly gunzTarPerm extractEntry LICENSE
175 silly gunzTarPerm extractEntry cli.js
176 silly gunzTarPerm extractEntry changelogs/CHANGELOG-1.md
177 silly gunzTarPerm extractEntry changelogs/CHANGELOG-2.md
178 silly gunzTarPerm extractEntry changelogs/CHANGELOG-3.md
179 silly gunzTarPerm extractEntry AUTHORS
180 silly gunzTarPerm extractEntry CHANGELOG.md
181 silly gunzTarPerm extractEntry CONTRIBUTING.md
182 silly gunzTarPerm extractEntry .mailmap
183 silly gunzTarPerm extractEntry Makefile
184 silly gunzTarPerm extractEntry appveyor.yml
185 silly gunzTarPerm extractEntry bin/npm-cli.js
186 silly gunzTarPerm extractEntry bin/read-package-json.js
187 silly gunzTarPerm extractEntry bin/node-gyp-bin/node-gyp
188 silly gunzTarPerm extractEntry bin/node-gyp-bin/node-gyp.cmd
189 silly gunzTarPerm extractEntry bin/npm
190 silly gunzTarPerm extractEntry bin/npm.cmd
191 silly gunzTarPerm extractEntry .github/issue_template.md
192 silly gunzTarPerm extractEntry configure
193 silly gunzTarPerm extractEntry doc/cli/npm-owner.md
194 silly gunzTarPerm extractEntry doc/cli/npm-access.md
195 silly gunzTarPerm extractEntry doc/cli/npm-bin.md
196 silly gunzTarPerm extractEntry doc/cli/npm-bugs.md
197 silly gunzTarPerm extractEntry doc/cli/npm-build.md
198 silly gunzTarPerm extractEntry doc/cli/npm-bundle.md
199 silly gunzTarPerm extractEntry doc/cli/npm-cache.md
200 silly gunzTarPerm extractEntry doc/cli/npm-completion.md
201 silly gunzTarPerm extractEntry doc/cli/npm-config.md
202 silly gunzTarPerm extractEntry doc/cli/npm-dedupe.md
203 silly gunzTarPerm extractEntry doc/cli/npm-deprecate.md
204 silly gunzTarPerm extractEntry doc/cli/npm-dist-tag.md
205 silly gunzTarPerm extractEntry doc/cli/npm-docs.md
206 silly gunzTarPerm extractEntry doc/cli/npm-doctor.md
207 silly gunzTarPerm extractEntry doc/cli/npm-edit.md
208 silly gunzTarPerm extractEntry doc/cli/npm-explore.md
209 silly gunzTarPerm extractEntry doc/cli/npm-help-search.md
210 silly gunzTarPerm extractEntry doc/cli/npm-help.md
211 silly gunzTarPerm extractEntry doc/cli/npm-init.md
212 silly gunzTarPerm extractEntry doc/cli/npm-install-test.md
213 silly gunzTarPerm extractEntry doc/cli/npm-install.md
214 silly gunzTarPerm extractEntry doc/cli/npm-link.md
215 silly gunzTarPerm extractEntry doc/cli/npm-logout.md
216 silly gunzTarPerm extractEntry doc/cli/npm-ls.md
217 silly gunzTarPerm extractEntry doc/cli/npm-outdated.md
218 silly gunzTarPerm extractEntry doc/cli/npm-adduser.md
219 silly gunzTarPerm extractEntry doc/cli/npm-pack.md
220 silly gunzTarPerm extractEntry doc/cli/npm-ping.md
221 silly gunzTarPerm extractEntry doc/cli/npm-prefix.md
222 silly gunzTarPerm extractEntry doc/cli/npm-prune.md
223 silly gunzTarPerm extractEntry doc/cli/npm-publish.md
224 silly gunzTarPerm extractEntry doc/cli/npm-rebuild.md
225 silly gunzTarPerm extractEntry doc/cli/npm-repo.md
226 silly gunzTarPerm extractEntry doc/cli/npm-restart.md
227 silly gunzTarPerm extractEntry doc/cli/npm-root.md
228 silly gunzTarPerm extractEntry doc/cli/npm-run-script.md
229 silly gunzTarPerm extractEntry doc/cli/npm-search.md
230 silly gunzTarPerm extractEntry doc/cli/npm-shrinkwrap.md
231 silly gunzTarPerm extractEntry doc/cli/npm-star.md
232 silly gunzTarPerm extractEntry doc/cli/npm-stars.md
233 silly gunzTarPerm extractEntry doc/cli/npm-start.md
234 silly gunzTarPerm extractEntry doc/cli/npm-stop.md
235 silly gunzTarPerm extractEntry doc/cli/npm-team.md
236 silly gunzTarPerm extractEntry doc/cli/npm-test.md
237 silly gunzTarPerm extractEntry doc/cli/npm-uninstall.md
238 silly gunzTarPerm extractEntry doc/cli/npm-unpublish.md
239 silly gunzTarPerm extractEntry doc/cli/npm-update.md
240 silly gunzTarPerm extractEntry doc/cli/npm-version.md
241 silly gunzTarPerm extractEntry doc/cli/npm-view.md
242 silly gunzTarPerm extractEntry doc/cli/npm-whoami.md
243 silly gunzTarPerm extractEntry doc/cli/npm.md
244 silly gunzTarPerm extractEntry doc/files/npm-folders.md
245 silly gunzTarPerm extractEntry doc/files/npmrc.md
246 silly gunzTarPerm extractEntry doc/files/package.json.md
247 silly gunzTarPerm extractEntry doc/misc/npm-orgs.md
248 silly gunzTarPerm extractEntry doc/misc/npm-coding-style.md
249 silly gunzTarPerm extractEntry doc/misc/npm-developers.md
250 silly gunzTarPerm extractEntry doc/misc/npm-disputes.md
251 silly gunzTarPerm extractEntry doc/misc/npm-index.md
252 silly gunzTarPerm extractEntry doc/misc/npm-config.md
253 silly gunzTarPerm extractEntry doc/misc/npm-registry.md
254 silly gunzTarPerm extractEntry doc/misc/npm-scope.md
255 silly gunzTarPerm extractEntry doc/misc/npm-scripts.md
256 silly gunzTarPerm extractEntry doc/misc/removing-npm.md
257 silly gunzTarPerm extractEntry doc/misc/semver.md
258 silly gunzTarPerm extractEntry html/doc/README.html
259 silly gunzTarPerm extractEntry html/doc/cli/npm-owner.html
260 silly gunzTarPerm extractEntry html/doc/cli/npm-access.html
261 silly gunzTarPerm extractEntry html/doc/cli/npm-bin.html
262 silly gunzTarPerm extractEntry html/doc/cli/npm-bugs.html
263 silly gunzTarPerm extractEntry html/doc/cli/npm-build.html
264 silly gunzTarPerm extractEntry html/doc/cli/npm-bundle.html
265 silly gunzTarPerm extractEntry html/doc/cli/npm-cache.html
266 silly gunzTarPerm extractEntry html/doc/cli/npm-completion.html
267 silly gunzTarPerm extractEntry html/doc/cli/npm-config.html
268 silly gunzTarPerm extractEntry html/doc/cli/npm-dedupe.html
269 silly gunzTarPerm extractEntry html/doc/cli/npm-deprecate.html
270 silly gunzTarPerm extractEntry html/doc/cli/npm-dist-tag.html
271 silly gunzTarPerm extractEntry html/doc/cli/npm-docs.html
272 silly gunzTarPerm extractEntry html/doc/cli/npm-doctor.html
273 silly gunzTarPerm extractEntry html/doc/cli/npm-edit.html
274 silly gunzTarPerm extractEntry html/doc/cli/npm-explore.html
275 silly gunzTarPerm extractEntry html/doc/cli/npm-help-search.html
276 silly gunzTarPerm extractEntry html/doc/cli/npm-help.html
277 silly gunzTarPerm extractEntry html/doc/cli/npm-init.html
278 silly gunzTarPerm extractEntry html/doc/cli/npm-install-test.html
279 silly gunzTarPerm extractEntry html/doc/cli/npm-install.html
280 silly gunzTarPerm extractEntry html/doc/cli/npm-link.html
281 silly gunzTarPerm extractEntry html/doc/cli/npm-logout.html
282 silly gunzTarPerm extractEntry html/doc/cli/npm-ls.html
283 silly gunzTarPerm extractEntry html/doc/cli/npm-outdated.html
284 silly gunzTarPerm extractEntry html/doc/cli/npm-adduser.html
285 silly gunzTarPerm extractEntry html/doc/cli/npm-pack.html
286 silly gunzTarPerm extractEntry html/doc/cli/npm-ping.html
287 silly gunzTarPerm extractEntry html/doc/cli/npm-prefix.html
288 silly gunzTarPerm extractEntry html/doc/cli/npm-prune.html
289 silly gunzTarPerm extractEntry html/doc/cli/npm-publish.html
290 silly gunzTarPerm extractEntry html/doc/cli/npm-rebuild.html
291 silly gunzTarPerm extractEntry html/doc/cli/npm-repo.html
292 silly gunzTarPerm extractEntry html/doc/cli/npm-restart.html
293 silly gunzTarPerm extractEntry html/doc/cli/npm-root.html
294 silly gunzTarPerm extractEntry html/doc/cli/npm-run-script.html
295 silly gunzTarPerm extractEntry html/doc/cli/npm-search.html
296 silly gunzTarPerm extractEntry html/doc/cli/npm-shrinkwrap.html
297 silly gunzTarPerm extractEntry html/doc/cli/npm-star.html
298 silly gunzTarPerm extractEntry html/doc/cli/npm-stars.html
299 silly gunzTarPerm extractEntry html/doc/cli/npm-start.html
300 silly gunzTarPerm extractEntry html/doc/cli/npm-stop.html
301 silly gunzTarPerm extractEntry html/doc/cli/npm-team.html
302 silly gunzTarPerm extractEntry html/doc/cli/npm-test.html
303 silly gunzTarPerm extractEntry html/doc/cli/npm-uninstall.html
304 silly gunzTarPerm extractEntry html/doc/cli/npm-unpublish.html
305 silly gunzTarPerm extractEntry html/doc/cli/npm-update.html
306 silly gunzTarPerm extractEntry html/doc/cli/npm-version.html
307 silly gunzTarPerm extractEntry html/doc/cli/npm-view.html
308 silly gunzTarPerm extractEntry html/doc/cli/npm-whoami.html
309 silly gunzTarPerm extractEntry html/doc/cli/npm.html
310 silly gunzTarPerm extractEntry html/doc/files/npm-folders.html
311 silly gunzTarPerm extractEntry html/doc/files/npm-global.html
312 silly gunzTarPerm extractEntry html/doc/files/npm-json.html
313 silly gunzTarPerm extractEntry html/doc/files/npmrc.html
314 silly gunzTarPerm extractEntry html/doc/files/package.json.html
315 silly gunzTarPerm extractEntry html/doc/index.html
316 silly gunzTarPerm extractEntry html/doc/misc/npm-orgs.html
317 silly gunzTarPerm extractEntry html/doc/misc/npm-coding-style.html
318 silly gunzTarPerm extractEntry html/doc/misc/npm-developers.html
319 silly gunzTarPerm extractEntry html/doc/misc/npm-disputes.html
320 silly gunzTarPerm extractEntry html/doc/misc/npm-index.html
321 silly gunzTarPerm extractEntry html/doc/misc/npm-config.html
322 silly gunzTarPerm extractEntry html/doc/misc/npm-registry.html
323 silly gunzTarPerm extractEntry html/doc/misc/npm-scope.html
324 silly gunzTarPerm extractEntry html/doc/misc/npm-scripts.html
325 silly gunzTarPerm extractEntry html/doc/misc/removing-npm.html
326 silly gunzTarPerm extractEntry html/doc/misc/semver.html
327 silly gunzTarPerm extractEntry html/docfoot.html
328 silly gunzTarPerm extractEntry html/dochead.html
329 silly gunzTarPerm extractEntry html/favicon.ico
330 silly gunzTarPerm extractEntry html/index.html
331 silly gunzTarPerm extractEntry html/static/toc.js
332 silly gunzTarPerm extractEntry html/static/style.css
333 silly gunzTarPerm extractEntry lib/access.js
334 silly gunzTarPerm extractEntry lib/install-test.js
335 silly gunzTarPerm extractEntry lib/install.js
336 silly gunzTarPerm extractEntry lib/link.js
337 silly gunzTarPerm extractEntry lib/update.js
338 silly gunzTarPerm extractEntry lib/ls.js
339 silly gunzTarPerm extractEntry lib/npm.js
340 silly gunzTarPerm extractEntry lib/outdated.js
341 silly gunzTarPerm extractEntry lib/adduser.js
342 silly gunzTarPerm extractEntry lib/pack.js
343 silly gunzTarPerm extractEntry lib/init.js
344 silly gunzTarPerm extractEntry lib/ping.js
345 silly gunzTarPerm extractEntry lib/help.js
346 silly gunzTarPerm extractEntry lib/prefix.js
347 silly gunzTarPerm extractEntry lib/help-search.js
348 silly gunzTarPerm extractEntry lib/prune.js
349 silly gunzTarPerm extractEntry lib/get.js
350 silly gunzTarPerm extractEntry lib/publish.js
351 silly gunzTarPerm extractEntry lib/version.js
352 silly gunzTarPerm extractEntry lib/rebuild.js
353 silly gunzTarPerm extractEntry lib/fetch-package-metadata.js
354 silly gunzTarPerm extractEntry lib/repo.js
355 silly gunzTarPerm extractEntry lib/explore.js
356 silly gunzTarPerm extractEntry lib/restart.js
357 silly gunzTarPerm extractEntry lib/edit.js
358 silly gunzTarPerm extractEntry lib/root.js
359 silly gunzTarPerm extractEntry lib/doctor.js
360 silly gunzTarPerm extractEntry lib/run-script.js
361 silly gunzTarPerm extractEntry lib/view.js
362 silly gunzTarPerm extractEntry lib/unpublish.js
363 silly gunzTarPerm extractEntry lib/docs.js
364 silly gunzTarPerm extractEntry lib/search.js
365 silly gunzTarPerm extractEntry lib/dist-tag.js
366 silly gunzTarPerm extractEntry lib/set.js
367 silly gunzTarPerm extractEntry lib/deprecate.js
368 silly gunzTarPerm extractEntry lib/shrinkwrap.js
369 silly gunzTarPerm extractEntry lib/dedupe.js
370 silly gunzTarPerm extractEntry lib/star.js
371 silly gunzTarPerm extractEntry lib/config.js
372 silly gunzTarPerm extractEntry lib/stars.js
373 silly gunzTarPerm extractEntry lib/visnup.js
374 silly gunzTarPerm extractEntry lib/start.js
375 silly gunzTarPerm extractEntry lib/completion.js
376 silly gunzTarPerm extractEntry lib/stop.js
377 silly gunzTarPerm extractEntry lib/cache.js
378 silly gunzTarPerm extractEntry lib/substack.js
379 silly gunzTarPerm extractEntry lib/whoami.js
380 silly gunzTarPerm extractEntry lib/team.js
381 silly gunzTarPerm extractEntry lib/build.js
382 silly gunzTarPerm extractEntry lib/test.js
383 silly gunzTarPerm extractEntry lib/bugs.js
384 silly gunzTarPerm extractEntry lib/unbuild.js
385 silly gunzTarPerm extractEntry lib/bin.js
386 silly gunzTarPerm extractEntry lib/uninstall.js
387 silly gunzTarPerm extractEntry lib/logout.js
388 silly gunzTarPerm extractEntry lib/xmas.js
389 silly gunzTarPerm extractEntry lib/owner.js
390 silly gunzTarPerm extractEntry lib/search/all-package-metadata.js
391 silly gunzTarPerm extractEntry lib/search/format-package-stream.js
392 silly gunzTarPerm extractEntry lib/search/package-filter.js
393 silly gunzTarPerm extractEntry lib/install/access-error.js
394 silly gunzTarPerm extractEntry lib/install/filter-invalid-actions.js
395 silly gunzTarPerm extractEntry lib/install/flatten-tree.js
396 silly gunzTarPerm extractEntry lib/install/inflate-bundled.js
397 silly gunzTarPerm extractEntry lib/install/inflate-shrinkwrap.js
398 silly gunzTarPerm extractEntry lib/install/exists.js
399 silly gunzTarPerm extractEntry lib/install/is-extraneous.js
400 silly gunzTarPerm extractEntry lib/install/is-fs-access-available.js
401 silly gunzTarPerm extractEntry lib/install/is-opt-dep.js
402 silly gunzTarPerm extractEntry lib/install/is-prod-dep.js
403 silly gunzTarPerm extractEntry lib/install/is-registry-specifier.js
404 silly gunzTarPerm extractEntry lib/install/diff-trees.js
405 silly gunzTarPerm extractEntry lib/install/module-staging-path.js
406 silly gunzTarPerm extractEntry lib/install/deps.js
407 silly gunzTarPerm extractEntry lib/install/mutate-into-logical-tree.js
408 silly gunzTarPerm extractEntry lib/install/decompose-actions.js
409 silly gunzTarPerm extractEntry lib/install/node.js
410 silly gunzTarPerm extractEntry lib/install/copy-tree.js
411 silly gunzTarPerm extractEntry lib/install/read-shrinkwrap.js
412 silly gunzTarPerm extractEntry lib/install/check-permissions.js
413 silly gunzTarPerm extractEntry lib/install/realize-shrinkwrap-specifier.js
414 silly gunzTarPerm extractEntry lib/install/and-ignore-errors.js
415 silly gunzTarPerm extractEntry lib/install/report-optional-failure.js
416 silly gunzTarPerm extractEntry lib/install/and-finish-tracker.js
417 silly gunzTarPerm extractEntry lib/install/save.js
418 silly gunzTarPerm extractEntry lib/install/and-add-parent-to-errors.js
419 silly gunzTarPerm extractEntry lib/install/update-package-json.js
420 silly gunzTarPerm extractEntry lib/install/actions.js
421 silly gunzTarPerm extractEntry lib/install/validate-args.js
422 silly gunzTarPerm extractEntry lib/install/validate-tree.js
423 silly gunzTarPerm extractEntry lib/install/writable.js
424 silly gunzTarPerm extractEntry lib/install/is-dev-dep.js
425 silly gunzTarPerm extractEntry lib/install/action/build.js
426 silly gunzTarPerm extractEntry lib/install/action/finalize.js
427 silly gunzTarPerm extractEntry lib/install/action/global-install.js
428 silly gunzTarPerm extractEntry lib/install/action/global-link.js
429 silly gunzTarPerm extractEntry lib/install/action/install.js
430 silly gunzTarPerm extractEntry lib/install/action/fetch.js
431 silly gunzTarPerm extractEntry lib/install/action/postinstall.js
432 silly gunzTarPerm extractEntry lib/install/action/preinstall.js
433 silly gunzTarPerm extractEntry lib/install/action/prepare.js
434 silly gunzTarPerm extractEntry lib/install/action/remove.js
435 silly gunzTarPerm extractEntry lib/install/action/test.js
436 silly gunzTarPerm extractEntry lib/install/action/extract.js
437 silly gunzTarPerm extractEntry lib/install/action/update-linked.js
438 silly gunzTarPerm extractEntry lib/install/action/move.js
439 silly gunzTarPerm extractEntry lib/utils/ansi-trim.js
440 silly gunzTarPerm extractEntry lib/utils/is-windows-shell.js
441 silly gunzTarPerm extractEntry lib/utils/is-windows.js
442 silly gunzTarPerm extractEntry lib/utils/lifecycle.js
443 silly gunzTarPerm extractEntry lib/utils/link.js
444 silly gunzTarPerm extractEntry lib/utils/is-windows-bash.js
445 silly gunzTarPerm extractEntry lib/utils/child-path.js
446 silly gunzTarPerm extractEntry lib/utils/metrics-launch.js
447 silly gunzTarPerm extractEntry lib/utils/metrics.js
448 silly gunzTarPerm extractEntry lib/utils/module-name.js
449 silly gunzTarPerm extractEntry lib/utils/no-progress-while-running.js
450 silly gunzTarPerm extractEntry lib/utils/git.js
451 silly gunzTarPerm extractEntry lib/utils/output.js
452 silly gunzTarPerm extractEntry lib/utils/get-publish-config.js
453 silly gunzTarPerm extractEntry lib/utils/package-id.js
454 silly gunzTarPerm extractEntry lib/utils/gently-rm.js
455 silly gunzTarPerm extractEntry lib/utils/parse-json.js
456 silly gunzTarPerm extractEntry lib/utils/escape-exec-path.js
457 silly gunzTarPerm extractEntry lib/utils/pick-manifest-from-registry-metadata.js
458 silly gunzTarPerm extractEntry lib/utils/escape-arg.js
459 silly gunzTarPerm extractEntry lib/utils/pulse-till-done.js
460 silly gunzTarPerm extractEntry lib/utils/error-message.js
461 silly gunzTarPerm extractEntry lib/utils/read-local-package.js
462 silly gunzTarPerm extractEntry lib/utils/error-handler.js
463 silly gunzTarPerm extractEntry lib/utils/rename.js
464 silly gunzTarPerm extractEntry lib/utils/depr-check.js
465 silly gunzTarPerm extractEntry lib/utils/save-stack.js
466 silly gunzTarPerm extractEntry lib/utils/deep-sort-object.js
467 silly gunzTarPerm extractEntry lib/utils/spawn.js
468 silly gunzTarPerm extractEntry lib/utils/correct-mkdir.js
469 silly gunzTarPerm extractEntry lib/utils/tar.js
470 silly gunzTarPerm extractEntry lib/utils/unsupported.js
471 silly gunzTarPerm extractEntry lib/utils/temp-filename.js
472 silly gunzTarPerm extractEntry lib/utils/usage.js
473 silly gunzTarPerm extractEntry lib/utils/umask.js
474 silly gunzTarPerm extractEntry lib/utils/locker.js
475 silly gunzTarPerm extractEntry lib/utils/warn-deprecated.js
476 silly gunzTarPerm extractEntry lib/utils/map-to-registry.js
477 silly gunzTarPerm extractEntry lib/utils/completion.sh
478 silly gunzTarPerm extractEntry lib/utils/completion/file-completion.js
479 silly gunzTarPerm extractEntry lib/utils/completion/installed-deep.js
480 silly gunzTarPerm extractEntry lib/utils/completion/installed-shallow.js
481 silly gunzTarPerm extractEntry lib/fetch-package-metadata.md
482 silly gunzTarPerm extractEntry lib/doctor/check-files-permission.js
483 silly gunzTarPerm extractEntry lib/doctor/check-ping.js
484 silly gunzTarPerm extractEntry lib/doctor/checksum-cached-files.js
485 silly gunzTarPerm extractEntry lib/doctor/get-git-path.js
486 silly gunzTarPerm extractEntry lib/doctor/get-latest-nodejs-version.js
487 silly gunzTarPerm extractEntry lib/doctor/get-latest-npm-version.js
488 silly gunzTarPerm extractEntry lib/config/clear-credentials-by-uri.js
489 silly gunzTarPerm extractEntry lib/config/core.js
490 silly gunzTarPerm extractEntry lib/config/defaults.js
491 silly gunzTarPerm extractEntry lib/config/find-prefix.js
492 silly gunzTarPerm extractEntry lib/config/get-credentials-by-uri.js
493 silly gunzTarPerm extractEntry lib/config/cmd-list.js
494 silly gunzTarPerm extractEntry lib/config/load-prefix.js
495 silly gunzTarPerm extractEntry lib/config/load-uid.js
496 silly gunzTarPerm extractEntry lib/config/nerf-dart.js
497 silly gunzTarPerm extractEntry lib/config/set-credentials-by-uri.js
498 silly gunzTarPerm extractEntry lib/config/set-user.js
499 silly gunzTarPerm extractEntry lib/config/load-cafile.js
500 silly gunzTarPerm extractEntry lib/cache/add-local-tarball.js
501 silly gunzTarPerm extractEntry lib/cache/add-local.js
502 silly gunzTarPerm extractEntry lib/cache/add-named.js
503 silly gunzTarPerm extractEntry lib/cache/add-remote-git.js
504 silly gunzTarPerm extractEntry lib/cache/add-remote-tarball.js
505 silly gunzTarPerm extractEntry lib/cache/cached-package-root.js
506 silly gunzTarPerm extractEntry lib/cache/caching-client.js
507 silly gunzTarPerm extractEntry lib/cache/get-stat.js
508 silly gunzTarPerm extractEntry make.bat
509 silly gunzTarPerm extractEntry man/man1/npm-owner.1
510 silly gunzTarPerm extractEntry man/man1/npm-README.1
511 silly gunzTarPerm extractEntry man/man1/npm-adduser.1
512 silly gunzTarPerm extractEntry man/man1/npm-bin.1
513 silly gunzTarPerm extractEntry man/man1/npm-bugs.1
514 silly gunzTarPerm extractEntry man/man1/npm-build.1
515 silly gunzTarPerm extractEntry man/man1/npm-bundle.1
516 silly gunzTarPerm extractEntry man/man1/npm-cache.1
517 silly gunzTarPerm extractEntry man/man1/npm-completion.1
518 silly gunzTarPerm extractEntry man/man1/npm-config.1
519 silly gunzTarPerm extractEntry man/man1/npm-dedupe.1
520 silly gunzTarPerm extractEntry man/man1/npm-deprecate.1
521 silly gunzTarPerm extractEntry man/man1/npm-dist-tag.1
522 silly gunzTarPerm extractEntry man/man1/npm-docs.1
523 silly gunzTarPerm extractEntry man/man1/npm-doctor.1
524 silly gunzTarPerm extractEntry man/man1/npm-edit.1
525 silly gunzTarPerm extractEntry man/man1/npm-explore.1
526 silly gunzTarPerm extractEntry man/man1/npm-help-search.1
527 silly gunzTarPerm extractEntry man/man1/npm-help.1
528 silly gunzTarPerm extractEntry man/man1/npm-init.1
529 silly gunzTarPerm extractEntry man/man1/npm-install-test.1
530 silly gunzTarPerm extractEntry man/man1/npm-install.1
531 silly gunzTarPerm extractEntry man/man1/npm-link.1
532 silly gunzTarPerm extractEntry man/man1/npm-logout.1
533 silly gunzTarPerm extractEntry man/man1/npm-ls.1
534 silly gunzTarPerm extractEntry man/man1/npm-outdated.1
535 silly gunzTarPerm extractEntry man/man1/npm-access.1
536 silly gunzTarPerm extractEntry man/man1/npm-pack.1
537 silly gunzTarPerm extractEntry man/man1/npm-ping.1
538 silly gunzTarPerm extractEntry man/man1/npm-prefix.1
539 silly gunzTarPerm extractEntry man/man1/npm-prune.1
540 silly gunzTarPerm extractEntry man/man1/npm-publish.1
541 silly gunzTarPerm extractEntry man/man1/npm-rebuild.1
542 silly gunzTarPerm extractEntry man/man1/npm-repo.1
543 silly gunzTarPerm extractEntry man/man1/npm-restart.1
544 silly gunzTarPerm extractEntry man/man1/npm-root.1
545 silly gunzTarPerm extractEntry man/man1/npm-run-script.1
546 silly gunzTarPerm extractEntry man/man1/npm-search.1
547 silly gunzTarPerm extractEntry man/man1/npm-shrinkwrap.1
548 silly gunzTarPerm extractEntry man/man1/npm-star.1
549 silly gunzTarPerm extractEntry man/man1/npm-stars.1
550 silly gunzTarPerm extractEntry man/man1/npm-start.1
551 silly gunzTarPerm extractEntry man/man1/npm-stop.1
552 silly gunzTarPerm extractEntry man/man1/npm-team.1
553 silly gunzTarPerm extractEntry man/man1/npm-test.1
554 silly gunzTarPerm extractEntry man/man1/npm-uninstall.1
555 silly gunzTarPerm extractEntry man/man1/npm-unpublish.1
556 silly gunzTarPerm extractEntry man/man1/npm-update.1
557 silly gunzTarPerm extractEntry man/man1/npm-version.1
558 silly gunzTarPerm extractEntry man/man1/npm-view.1
559 silly gunzTarPerm extractEntry man/man1/npm-whoami.1
560 silly gunzTarPerm extractEntry man/man1/npm.1
561 silly gunzTarPerm extractEntry man/man5/npm-folders.5
562 silly gunzTarPerm extractEntry man/man5/npm-global.5
563 silly gunzTarPerm extractEntry man/man5/npm-json.5
564 silly gunzTarPerm extractEntry man/man5/npmrc.5
565 silly gunzTarPerm extractEntry man/man5/package.json.5
566 silly gunzTarPerm extractEntry man/man7/npm-orgs.7
567 silly gunzTarPerm extractEntry man/man7/npm-coding-style.7
568 silly gunzTarPerm extractEntry man/man7/npm-developers.7
569 silly gunzTarPerm extractEntry man/man7/npm-disputes.7
570 silly gunzTarPerm extractEntry man/man7/npm-index.7
571 silly gunzTarPerm extractEntry man/man7/npm-config.7
572 silly gunzTarPerm extractEntry man/man7/npm-registry.7
573 silly gunzTarPerm extractEntry man/man7/npm-scope.7
574 silly gunzTarPerm extractEntry man/man7/npm-scripts.7
575 silly gunzTarPerm extractEntry man/man7/removing-npm.7
576 silly gunzTarPerm extractEntry man/man7/semver.7
577 silly gunzTarPerm extractEntry scripts/changelog.js
578 silly gunzTarPerm extractEntry scripts/publish-tag.js
579 silly gunzTarPerm extractEntry scripts/index-build.js
580 silly gunzTarPerm extractEntry scripts/dev-dep-update
581 silly gunzTarPerm extractEntry scripts/doc-build.sh
582 silly gunzTarPerm extractEntry scripts/gen-changelog
583 silly gunzTarPerm extractEntry scripts/clean-old.sh
584 silly gunzTarPerm extractEntry scripts/install.sh
585 silly gunzTarPerm extractEntry scripts/maketest
586 silly gunzTarPerm extractEntry scripts/dep-update
587 silly gunzTarPerm extractEntry scripts/release.sh
588 silly gunzTarPerm extractEntry scripts/relocate.sh
589 silly gunzTarPerm extractEntry scripts/update-authors.sh
590 silly gunzTarPerm extractEntry .travis.yml
591 silly gunzTarPerm extractEntry test/common-tap.js
592 silly gunzTarPerm extractEntry test/broken-under-nyc-and-travis/lifecycle-path.js
593 silly gunzTarPerm extractEntry test/broken-under-nyc-and-travis/whoami.js
594 silly gunzTarPerm extractEntry test/fixtures/onload.js
595 silly gunzTarPerm extractEntry test/fixtures/gitignore-and-npmignore-2.tar
596 silly gunzTarPerm extractEntry test/fixtures/github.amrom.workers.dev-BryanDonovan-dummy-npm-bar.git.tar.gz
597 silly gunzTarPerm extractEntry test/fixtures/github.amrom.workers.dev-BryanDonovan-dummy-npm-buzz.git.tar.gz
598 silly gunzTarPerm extractEntry test/fixtures/github.amrom.workers.dev-BryanDonovan-dummy-npm-foo.git.tar.gz
599 silly gunzTarPerm extractEntry test/fixtures/github.amrom.workers.dev-BryanDonovan-npm-git-test.git.tar.gz
600 silly gunzTarPerm extractEntry test/fixtures/forked-underscore-1.5.1.tgz
601 silly gunzTarPerm extractEntry test/fixtures/gitignore-and-npmignore.tar
602 silly gunzTarPerm extractEntry test/fixtures/gitignore-and-npmignore.tgz
603 silly gunzTarPerm extractEntry test/fixtures/gitignore.tgz
604 silly gunzTarPerm extractEntry test/fixtures/npmignore.tgz
605 silly gunzTarPerm extractEntry test/fixtures/config/builtin
606 silly gunzTarPerm extractEntry test/fixtures/config/globalconfig
607 silly gunzTarPerm extractEntry test/fixtures/config/malformed
608 silly gunzTarPerm extractEntry test/fixtures/config/multi-ca
609 silly gunzTarPerm extractEntry test/fixtures/config/userconfig
610 silly gunzTarPerm extractEntry test/fixtures/scoped-underscore-1.3.1.tgz
611 silly gunzTarPerm extractEntry test/network/git-cache-locking.js
612 silly gunzTarPerm extractEntry test/network/git-cache-no-hooks.js
613 silly gunzTarPerm extractEntry test/network/legacy-bundled-git.js
614 silly gunzTarPerm extractEntry test/network/legacy-shrinkwrap.js
615 silly gunzTarPerm extractEntry test/network/legacy-url-dep.js
616 silly gunzTarPerm extractEntry test/network/registry.js
617 silly gunzTarPerm extractEntry test/tap/00-check-mock-dep.js
618 silly gunzTarPerm extractEntry test/tap/legacy-platform-all.js
619 silly gunzTarPerm extractEntry test/tap/legacy-platform.js
620 silly gunzTarPerm extractEntry test/tap/legacy-private.js
621 silly gunzTarPerm extractEntry test/tap/legacy-test-package.js
622 silly gunzTarPerm extractEntry test/tap/legacy-optional-deps.js
623 silly gunzTarPerm extractEntry test/tap/lifecycle-signal.js
624 silly gunzTarPerm extractEntry test/tap/lifecycle.js
625 silly gunzTarPerm extractEntry test/tap/link.js
626 silly gunzTarPerm extractEntry test/tap/local-args-relative-to-cwd.js
627 silly gunzTarPerm extractEntry test/tap/locker.js
628 silly gunzTarPerm extractEntry test/tap/legacy-npm-self-install.js
629 silly gunzTarPerm extractEntry test/tap/logout-scoped.js
630 silly gunzTarPerm extractEntry test/tap/legacy-no-auth-leak.js
631 silly gunzTarPerm extractEntry test/tap/logout.js
632 silly gunzTarPerm extractEntry test/tap/legacy-missing-bindir.js
633 silly gunzTarPerm extractEntry test/tap/ls-depth-cli.js
634 silly gunzTarPerm extractEntry test/tap/legacy-ignore-nested-nm.js
635 silly gunzTarPerm extractEntry test/tap/ls-depth-unmet.js
636 silly gunzTarPerm extractEntry test/tap/legacy-dir-bin.js
637 silly gunzTarPerm extractEntry test/tap/ls-env.js
638 silly gunzTarPerm extractEntry test/tap/legacy-array-bin.js
639 silly gunzTarPerm extractEntry test/tap/ls-l-depth-0.js
640 silly gunzTarPerm extractEntry test/tap/it.js
641 silly gunzTarPerm extractEntry test/tap/ls-no-results.js
642 silly gunzTarPerm extractEntry test/tap/is-fs-access-available.js
643 silly gunzTarPerm extractEntry test/tap/ls-production-and-dev.js
644 silly gunzTarPerm extractEntry test/tap/invalid-dep-version-filtering.js
645 silly gunzTarPerm extractEntry test/tap/ls-top-errors.js
646 silly gunzTarPerm extractEntry test/tap/invalid-cmd-exit-code.js
647 silly gunzTarPerm extractEntry test/tap/ls.js
648 silly gunzTarPerm extractEntry test/tap/install-with-dev-dep-duplicate.js
649 silly gunzTarPerm extractEntry test/tap/map-to-registry.js
650 silly gunzTarPerm extractEntry test/tap/install-shrinkwrapped-git.js
651 silly gunzTarPerm extractEntry test/tap/move-no-clobber-dest-node-modules.js
652 silly gunzTarPerm extractEntry test/tap/install-scoped-with-peer-dependency.js
653 silly gunzTarPerm extractEntry test/tap/nerf-dart.js
654 silly gunzTarPerm extractEntry test/tap/install-scoped-with-bundled-dependency.js
655 silly gunzTarPerm extractEntry test/tap/nested-extraneous.js
656 silly gunzTarPerm extractEntry test/tap/install-scoped-link.js
657 silly gunzTarPerm extractEntry test/tap/no-global-warns.js
658 silly gunzTarPerm extractEntry test/tap/install-scoped-already-installed.js
659 silly gunzTarPerm extractEntry test/tap/no-scan-full-global-dir.js
660 silly gunzTarPerm extractEntry test/tap/install-save-prefix.js
661 silly gunzTarPerm extractEntry test/tap/noargs-install-config-save.js
662 silly gunzTarPerm extractEntry test/tap/install-save-local.js
663 silly gunzTarPerm extractEntry test/tap/node-modules-path-munge.js
664 silly gunzTarPerm extractEntry test/tap/install-save-exact.js
665 silly gunzTarPerm extractEntry test/tap/normalize-package-explode.js
666 silly gunzTarPerm extractEntry test/tap/install-report-just-installed.js
667 silly gunzTarPerm extractEntry test/tap/npm-api-not-loaded-error.js
668 silly gunzTarPerm extractEntry test/tap/install-property-conflicts.js
669 silly gunzTarPerm extractEntry test/tap/onload.js
670 silly gunzTarPerm extractEntry test/tap/install-preferglobal-warnings.js
671 silly gunzTarPerm extractEntry test/tap/optional-metadep-rollback-collision.js
672 silly gunzTarPerm extractEntry test/tap/install-parse-error.js
673 silly gunzTarPerm extractEntry test/tap/outdated-bad-read-tree.js
674 silly gunzTarPerm extractEntry test/tap/install-package-json-order.js
675 silly gunzTarPerm extractEntry test/tap/outdated-color.js
676 silly gunzTarPerm extractEntry test/tap/install-order.js
677 silly gunzTarPerm extractEntry test/tap/outdated-depth-deep.js
678 silly gunzTarPerm extractEntry test/tap/install-noargs-dev.js
679 silly gunzTarPerm extractEntry test/tap/outdated-depth-integer.js
680 silly gunzTarPerm extractEntry test/tap/install-man.js
681 silly gunzTarPerm extractEntry test/tap/outdated-depth.js
682 silly gunzTarPerm extractEntry test/tap/install-local-dep-cycle.js
683 silly gunzTarPerm extractEntry test/tap/outdated-git.js
684 silly gunzTarPerm extractEntry test/tap/install-link-scripts.js
685 silly gunzTarPerm extractEntry test/tap/outdated-include-devdependencies.js
686 silly gunzTarPerm extractEntry test/tap/install-into-likenamed-folder.js
687 silly gunzTarPerm extractEntry test/tap/outdated-json.js
688 silly gunzTarPerm extractEntry test/tap/install-from-local.js
689 silly gunzTarPerm extractEntry test/tap/outdated-local.js
690 silly gunzTarPerm extractEntry test/tap/install-cli-unicode.js
691 silly gunzTarPerm extractEntry test/tap/outdated-long.js
692 silly gunzTarPerm extractEntry test/tap/install-cli-production.js
693 silly gunzTarPerm extractEntry test/tap/outdated-new-versions.js
694 silly gunzTarPerm extractEntry test/tap/install-cli-production-nosave.js
695 silly gunzTarPerm extractEntry test/tap/outdated-notarget.js
696 silly gunzTarPerm extractEntry test/tap/install-cli-only-shrinkwrap.js
697 silly gunzTarPerm extractEntry test/tap/outdated-private.js
698 silly gunzTarPerm extractEntry test/tap/install-cli-only-production.js
699 silly gunzTarPerm extractEntry test/tap/outdated-symlink.js
700 silly gunzTarPerm extractEntry test/tap/install-cli-only-development.js
701 silly gunzTarPerm extractEntry test/tap/outdated.js
702 silly gunzTarPerm extractEntry test/tap/install-bin-null.js
703 silly gunzTarPerm extractEntry test/tap/override-bundled.js
704 silly gunzTarPerm extractEntry test/tap/install-bad-man.js
705 silly gunzTarPerm extractEntry test/tap/owner.js
706 silly gunzTarPerm extractEntry test/tap/install-bad-dep-format.js
707 silly gunzTarPerm extractEntry test/tap/pack-scoped.js
708 silly gunzTarPerm extractEntry test/tap/install-at-locally.js
709 silly gunzTarPerm extractEntry test/tap/peer-deps-invalid.js
710 silly gunzTarPerm extractEntry test/tap/install-actions.js
711 silly gunzTarPerm extractEntry test/tap/peer-deps-toplevel.js
712 silly gunzTarPerm extractEntry test/tap/init-interrupt.js
713 silly gunzTarPerm extractEntry test/tap/peer-deps-without-package-json.js
714 silly gunzTarPerm extractEntry test/tap/ignore-shrinkwrap.js
715 silly gunzTarPerm extractEntry test/tap/peer-deps.js
716 silly gunzTarPerm extractEntry test/tap/ignore-scripts.js
717 silly gunzTarPerm extractEntry test/tap/pick-manifest-from-registry-metadata.js
718 silly gunzTarPerm extractEntry test/tap/ignore-install-link.js
719 silly gunzTarPerm extractEntry test/tap/ping.js
720 silly gunzTarPerm extractEntry test/tap/graceful-restart.js
721 silly gunzTarPerm extractEntry test/tap/prepare.js
722 silly gunzTarPerm extractEntry test/tap/global-prefix-set-in-userconfig.js
723 silly gunzTarPerm extractEntry test/tap/prepublish-only.js
724 silly gunzTarPerm extractEntry test/tap/gitlab-shortcut.js
725 silly gunzTarPerm extractEntry test/tap/prepublish.js
726 silly gunzTarPerm extractEntry test/tap/gitlab-shortcut-package.js
727 silly gunzTarPerm extractEntry test/tap/progress-config.js
728 silly gunzTarPerm extractEntry test/tap/github-shortcut.js
729 silly gunzTarPerm extractEntry test/tap/prune.js
730 silly gunzTarPerm extractEntry test/tap/github-shortcut-package.js
731 silly gunzTarPerm extractEntry test/tap/publish-access-scoped.js
732 silly gunzTarPerm extractEntry test/tap/git-races.js
733 silly gunzTarPerm extractEntry test/tap/publish-access-unscoped-restricted-fails.js
734 silly gunzTarPerm extractEntry test/tap/git-npmignore.js
735 silly gunzTarPerm extractEntry test/tap/publish-access-unscoped.js
736 silly gunzTarPerm extractEntry test/tap/git-dependency-install-link.js
737 silly gunzTarPerm extractEntry test/tap/publish-config.js
738 silly gunzTarPerm extractEntry test/tap/gist-shortcut.js
739 silly gunzTarPerm extractEntry test/tap/publish-invalid-semver-tag.js
740 silly gunzTarPerm extractEntry test/tap/gist-shortcut-package.js
741 silly gunzTarPerm extractEntry test/tap/publish-scoped.js
742 silly gunzTarPerm extractEntry test/tap/gist-short-shortcut.js
743 silly gunzTarPerm extractEntry test/tap/pwd-prefix.js
744 silly gunzTarPerm extractEntry test/tap/gist-short-shortcut-package.js
745 silly gunzTarPerm extractEntry test/tap/referer.js
746 silly gunzTarPerm extractEntry test/tap/get.js
747 silly gunzTarPerm extractEntry test/tap/repo.js
748 silly gunzTarPerm extractEntry test/tap/gently-rm-symlinked-global-dir.js
749 silly gunzTarPerm extractEntry test/tap/retry-on-stale-cache.js
750 silly gunzTarPerm extractEntry test/tap/gently-rm-overeager.js
751 silly gunzTarPerm extractEntry test/tap/rm-linked.js
752 silly gunzTarPerm extractEntry test/tap/gently-rm-linked-module.js
753 silly gunzTarPerm extractEntry test/tap/run-script-filter-private.js