This repository has been archived by the owner on Oct 12, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
npm-debug.log
9437 lines (9437 loc) · 504 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 [ '/usr/bin/node', '/usr/bin/npm', 'install', '-g', 'jshint' ]
2 info using [email protected]
3 info using [email protected]
4 silly loadCurrentTree Starting
5 silly install loadCurrentTree
6 silly install readGlobalPackageData
7 silly fetchPackageMetaData jshint
8 silly fetchNamedPackageData jshint
9 silly mapToRegistry name jshint
10 silly mapToRegistry using default registry
11 silly mapToRegistry registry https://registry.npmjs.org/
12 silly mapToRegistry uri https://registry.npmjs.org/jshint
13 verbose request uri https://registry.npmjs.org/jshint
14 verbose request no auth needed
15 info attempt registry request try #1 at 4:50:20 pm
16 verbose request id 9fddc720033b6003
17 verbose etag W/"2c517ee481966f7d18175c664eab4a85"
18 verbose lastModified Mon, 30 Jul 2018 20:33:49 GMT
19 http request GET https://registry.npmjs.org/jshint
20 http 304 https://registry.npmjs.org/jshint
21 verbose headers { date: 'Tue, 07 Aug 2018 06:50:20 GMT',
21 verbose headers connection: 'keep-alive',
21 verbose headers 'set-cookie':
21 verbose headers [ '__cfduid=d1d3a641edf3a9807cd835ac5bc1d3dfc1533624620; expires=Wed, 07-Aug-19 06:50:20 GMT; path=/; domain=.registry.npmjs.org; HttpOnly' ],
21 verbose headers 'cache-control': 'max-age=300',
21 verbose headers 'cf-cache-status': 'HIT',
21 verbose headers 'cf-ray': '4467cef81d7265f9-SYD',
21 verbose headers etag: '"2c517ee481966f7d18175c664eab4a85"',
21 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
21 verbose headers 'last-modified': 'Mon, 30 Jul 2018 20:33:49 GMT',
21 verbose headers vary: 'accept-encoding, accept',
21 verbose headers server: 'cloudflare' }
22 silly get cb [ 304,
22 silly get { date: 'Tue, 07 Aug 2018 06:50:20 GMT',
22 silly get connection: 'keep-alive',
22 silly get 'set-cookie':
22 silly get [ '__cfduid=d1d3a641edf3a9807cd835ac5bc1d3dfc1533624620; expires=Wed, 07-Aug-19 06:50:20 GMT; path=/; domain=.registry.npmjs.org; HttpOnly' ],
22 silly get 'cache-control': 'max-age=300',
22 silly get 'cf-cache-status': 'HIT',
22 silly get 'cf-ray': '4467cef81d7265f9-SYD',
22 silly get etag: '"2c517ee481966f7d18175c664eab4a85"',
22 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
22 silly get 'last-modified': 'Mon, 30 Jul 2018 20:33:49 GMT',
22 silly get vary: 'accept-encoding, accept',
22 silly get server: 'cloudflare' } ]
23 verbose etag https://registry.npmjs.org/jshint from cache
24 verbose get saving jshint to /home/pc/.npm/registry.npmjs.org/jshint/.cache.json
25 silly install normalizeTree
26 silly loadCurrentTree Finishing
27 silly loadIdealTree Starting
28 silly install loadIdealTree
29 silly cloneCurrentTree Starting
30 silly install cloneCurrentTreeToIdealTree
31 silly cloneCurrentTree Finishing
32 silly loadShrinkwrap Starting
33 silly install loadShrinkwrap
34 silly loadShrinkwrap Finishing
35 silly loadAllDepsIntoIdealTree Starting
36 silly install loadAllDepsIntoIdealTree
37 silly resolveWithNewModule [email protected] checking installable status
38 silly cache add args [ 'jshint', null ]
39 verbose cache add spec jshint
40 silly cache add parsed spec Result {
40 silly cache add raw: 'jshint',
40 silly cache add scope: null,
40 silly cache add name: 'jshint',
40 silly cache add rawSpec: '',
40 silly cache add spec: 'latest',
40 silly cache add type: 'tag' }
41 silly addNamed jshint@latest
42 verbose addNamed "latest" is being treated as a dist-tag for jshint
43 info addNameTag [ 'jshint', 'latest' ]
44 silly mapToRegistry name jshint
45 silly mapToRegistry using default registry
46 silly mapToRegistry registry https://registry.npmjs.org/
47 silly mapToRegistry uri https://registry.npmjs.org/jshint
48 verbose addNameTag registry:https://registry.npmjs.org/jshint not in flight; fetching
49 verbose get https://registry.npmjs.org/jshint not expired, no request
50 silly addNameTag next cb for jshint with tag latest
51 silly addNamed [email protected]
52 verbose addNamed "2.9.6" is a plain semver version for jshint
53 silly cache afterAdd [email protected]
54 verbose afterAdd /home/pc/.npm/jshint/2.9.6/package/package.json not in flight; writing
55 verbose afterAdd /home/pc/.npm/jshint/2.9.6/package/package.json written
56 silly fetchNamedPackageData cli
57 silly mapToRegistry name cli
58 silly mapToRegistry using default registry
59 silly mapToRegistry registry https://registry.npmjs.org/
60 silly mapToRegistry uri https://registry.npmjs.org/cli
61 silly fetchNamedPackageData console-browserify
62 silly mapToRegistry name console-browserify
63 silly mapToRegistry using default registry
64 silly mapToRegistry registry https://registry.npmjs.org/
65 silly mapToRegistry uri https://registry.npmjs.org/console-browserify
66 silly fetchNamedPackageData exit
67 silly mapToRegistry name exit
68 silly mapToRegistry using default registry
69 silly mapToRegistry registry https://registry.npmjs.org/
70 silly mapToRegistry uri https://registry.npmjs.org/exit
71 silly fetchNamedPackageData htmlparser2
72 silly mapToRegistry name htmlparser2
73 silly mapToRegistry using default registry
74 silly mapToRegistry registry https://registry.npmjs.org/
75 silly mapToRegistry uri https://registry.npmjs.org/htmlparser2
76 silly fetchNamedPackageData lodash
77 silly mapToRegistry name lodash
78 silly mapToRegistry using default registry
79 silly mapToRegistry registry https://registry.npmjs.org/
80 silly mapToRegistry uri https://registry.npmjs.org/lodash
81 silly fetchNamedPackageData minimatch
82 silly mapToRegistry name minimatch
83 silly mapToRegistry using default registry
84 silly mapToRegistry registry https://registry.npmjs.org/
85 silly mapToRegistry uri https://registry.npmjs.org/minimatch
86 silly fetchNamedPackageData shelljs
87 silly mapToRegistry name shelljs
88 silly mapToRegistry using default registry
89 silly mapToRegistry registry https://registry.npmjs.org/
90 silly mapToRegistry uri https://registry.npmjs.org/shelljs
91 silly fetchNamedPackageData strip-json-comments
92 silly mapToRegistry name strip-json-comments
93 silly mapToRegistry using default registry
94 silly mapToRegistry registry https://registry.npmjs.org/
95 silly mapToRegistry uri https://registry.npmjs.org/strip-json-comments
96 silly fetchNamedPackageData unicode-5.2.0
97 silly mapToRegistry name unicode-5.2.0
98 silly mapToRegistry using default registry
99 silly mapToRegistry registry https://registry.npmjs.org/
100 silly mapToRegistry uri https://registry.npmjs.org/unicode-5.2.0
101 silly fetchNamedPackageData phantom
102 silly mapToRegistry name phantom
103 silly mapToRegistry using default registry
104 silly mapToRegistry registry https://registry.npmjs.org/
105 silly mapToRegistry uri https://registry.npmjs.org/phantom
106 silly fetchNamedPackageData phantomjs-prebuilt
107 silly mapToRegistry name phantomjs-prebuilt
108 silly mapToRegistry using default registry
109 silly mapToRegistry registry https://registry.npmjs.org/
110 silly mapToRegistry uri https://registry.npmjs.org/phantomjs-prebuilt
111 verbose request uri https://registry.npmjs.org/console-browserify
112 verbose request no auth needed
113 info attempt registry request try #1 at 4:50:20 pm
114 verbose etag W/"81ccedb39487c66e8e14bbc1171a7664"
115 verbose lastModified Sat, 26 May 2018 20:45:20 GMT
116 http request GET https://registry.npmjs.org/console-browserify
117 verbose request uri https://registry.npmjs.org/cli
118 verbose request no auth needed
119 info attempt registry request try #1 at 4:50:20 pm
120 verbose etag W/"0d6b814ba44407b768ae5d1b13680baa"
121 verbose lastModified Sat, 26 May 2018 03:44:51 GMT
122 http request GET https://registry.npmjs.org/cli
123 verbose request uri https://registry.npmjs.org/exit
124 verbose request no auth needed
125 info attempt registry request try #1 at 4:50:20 pm
126 verbose etag W/"6c0a75b92734bbc749507447afcfedd5"
127 verbose lastModified Sun, 27 May 2018 00:05:47 GMT
128 http request GET https://registry.npmjs.org/exit
129 verbose request uri https://registry.npmjs.org/htmlparser2
130 verbose request no auth needed
131 info attempt registry request try #1 at 4:50:20 pm
132 verbose etag W/"7c28d760478275f3dbcdd7832d86aae7"
133 verbose lastModified Sun, 27 May 2018 04:02:54 GMT
134 http request GET https://registry.npmjs.org/htmlparser2
135 verbose request uri https://registry.npmjs.org/strip-json-comments
136 verbose request no auth needed
137 info attempt registry request try #1 at 4:50:20 pm
138 verbose etag W/"9364262af09ecc96f0475b808daeccd5"
139 verbose lastModified Sun, 27 May 2018 18:26:04 GMT
140 http request GET https://registry.npmjs.org/strip-json-comments
141 verbose get https://registry.npmjs.org/minimatch not expired, no request
142 silly resolveWithNewModule [email protected] checking installable status
143 silly cache add args [ 'minimatch@~3.0.2', null ]
144 verbose cache add spec minimatch@~3.0.2
145 silly cache add parsed spec Result {
145 silly cache add raw: 'minimatch@~3.0.2',
145 silly cache add scope: null,
145 silly cache add name: 'minimatch',
145 silly cache add rawSpec: '~3.0.2',
145 silly cache add spec: '>=3.0.2 <3.1.0',
145 silly cache add type: 'range' }
146 silly addNamed minimatch@>=3.0.2 <3.1.0
147 verbose addNamed ">=3.0.2 <3.1.0" is a valid semver range for minimatch
148 silly addNameRange { name: 'minimatch', range: '>=3.0.2 <3.1.0', hasData: false }
149 silly mapToRegistry name minimatch
150 silly mapToRegistry using default registry
151 silly mapToRegistry registry https://registry.npmjs.org/
152 silly mapToRegistry uri https://registry.npmjs.org/minimatch
153 verbose addNameRange registry:https://registry.npmjs.org/minimatch not in flight; fetching
154 verbose request uri https://registry.npmjs.org/shelljs
155 verbose request no auth needed
156 info attempt registry request try #1 at 4:50:20 pm
157 verbose etag W/"9a028358ded6f774130342ea046fd3f9"
158 verbose lastModified Fri, 13 Jul 2018 12:31:47 GMT
159 http request GET https://registry.npmjs.org/shelljs
160 verbose request uri https://registry.npmjs.org/phantomjs-prebuilt
161 verbose request no auth needed
162 info attempt registry request try #1 at 4:50:20 pm
163 verbose etag W/"6632e8ff996a0c14037347232604b47d"
164 verbose lastModified Fri, 03 Aug 2018 00:36:17 GMT
165 http request GET https://registry.npmjs.org/phantomjs-prebuilt
166 verbose request uri https://registry.npmjs.org/unicode-5.2.0
167 verbose request no auth needed
168 info attempt registry request try #1 at 4:50:20 pm
169 verbose etag W/"fe6e16173e72b8ed4f4fd91338afec48"
170 verbose lastModified Sun, 27 May 2018 20:27:33 GMT
171 http request GET https://registry.npmjs.org/unicode-5.2.0
172 verbose request uri https://registry.npmjs.org/lodash
173 verbose request no auth needed
174 info attempt registry request try #1 at 4:50:20 pm
175 verbose etag W/"2d740a276d720c424d510b0f14a86a41"
176 verbose lastModified Thu, 02 Aug 2018 09:52:36 GMT
177 http request GET https://registry.npmjs.org/lodash
178 verbose request uri https://registry.npmjs.org/phantom
179 verbose request no auth needed
180 info attempt registry request try #1 at 4:50:20 pm
181 verbose etag W/"c54604474ec113087982ca9c8f7a6298"
182 verbose lastModified Sat, 30 Jun 2018 21:45:59 GMT
183 http request GET https://registry.npmjs.org/phantom
184 verbose get https://registry.npmjs.org/minimatch not expired, no request
185 silly addNameRange number 2 { name: 'minimatch', range: '>=3.0.2 <3.1.0', hasData: true }
186 silly addNameRange versions [ 'minimatch',
186 silly addNameRange [ '0.0.1',
186 silly addNameRange '0.0.2',
186 silly addNameRange '0.0.4',
186 silly addNameRange '0.0.5',
186 silly addNameRange '0.1.1',
186 silly addNameRange '0.1.2',
186 silly addNameRange '0.1.3',
186 silly addNameRange '0.1.4',
186 silly addNameRange '0.1.5',
186 silly addNameRange '0.2.0',
186 silly addNameRange '0.2.2',
186 silly addNameRange '0.2.3',
186 silly addNameRange '0.2.4',
186 silly addNameRange '0.2.5',
186 silly addNameRange '0.2.6',
186 silly addNameRange '0.2.7',
186 silly addNameRange '0.2.8',
186 silly addNameRange '0.2.9',
186 silly addNameRange '0.2.10',
186 silly addNameRange '0.2.11',
186 silly addNameRange '0.2.12',
186 silly addNameRange '0.2.13',
186 silly addNameRange '0.2.14',
186 silly addNameRange '0.3.0',
186 silly addNameRange '0.4.0',
186 silly addNameRange '1.0.0',
186 silly addNameRange '2.0.0',
186 silly addNameRange '2.0.1',
186 silly addNameRange '2.0.2',
186 silly addNameRange '2.0.3',
186 silly addNameRange '2.0.4',
186 silly addNameRange '2.0.5',
186 silly addNameRange '2.0.6',
186 silly addNameRange '2.0.7',
186 silly addNameRange '2.0.8',
186 silly addNameRange '2.0.9',
186 silly addNameRange '2.0.10',
186 silly addNameRange '3.0.0',
186 silly addNameRange '3.0.2',
186 silly addNameRange '3.0.3',
186 silly addNameRange '3.0.4' ] ]
187 silly addNamed [email protected]
188 verbose addNamed "3.0.4" is a plain semver version for minimatch
189 silly cache afterAdd [email protected]
190 verbose afterAdd /home/pc/.npm/minimatch/3.0.4/package/package.json not in flight; writing
191 verbose afterAdd /home/pc/.npm/minimatch/3.0.4/package/package.json written
192 http 304 https://registry.npmjs.org/console-browserify
193 verbose headers { date: 'Tue, 07 Aug 2018 06:50:20 GMT',
193 verbose headers connection: 'keep-alive',
193 verbose headers 'set-cookie':
193 verbose headers [ '__cfduid=d1d3a641edf3a9807cd835ac5bc1d3dfc1533624620; expires=Wed, 07-Aug-19 06:50:20 GMT; path=/; domain=.registry.npmjs.org; HttpOnly' ],
193 verbose headers 'cache-control': 'max-age=300',
193 verbose headers 'cf-cache-status': 'HIT',
193 verbose headers 'cf-ray': '4467cef8cdfa65f9-SYD',
193 verbose headers etag: '"81ccedb39487c66e8e14bbc1171a7664"',
193 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
193 verbose headers 'last-modified': 'Sat, 26 May 2018 20:45:20 GMT',
193 verbose headers vary: 'accept-encoding, accept',
193 verbose headers server: 'cloudflare' }
194 silly get cb [ 304,
194 silly get { date: 'Tue, 07 Aug 2018 06:50:20 GMT',
194 silly get connection: 'keep-alive',
194 silly get 'set-cookie':
194 silly get [ '__cfduid=d1d3a641edf3a9807cd835ac5bc1d3dfc1533624620; expires=Wed, 07-Aug-19 06:50:20 GMT; path=/; domain=.registry.npmjs.org; HttpOnly' ],
194 silly get 'cache-control': 'max-age=300',
194 silly get 'cf-cache-status': 'HIT',
194 silly get 'cf-ray': '4467cef8cdfa65f9-SYD',
194 silly get etag: '"81ccedb39487c66e8e14bbc1171a7664"',
194 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
194 silly get 'last-modified': 'Sat, 26 May 2018 20:45:20 GMT',
194 silly get vary: 'accept-encoding, accept',
194 silly get server: 'cloudflare' } ]
195 verbose etag https://registry.npmjs.org/console-browserify from cache
196 verbose get saving console-browserify to /home/pc/.npm/registry.npmjs.org/console-browserify/.cache.json
197 silly resolveWithNewModule [email protected] checking installable status
198 silly cache add args [ '[email protected]', null ]
199 verbose cache add spec [email protected]
200 silly cache add parsed spec Result {
200 silly cache add raw: '[email protected]',
200 silly cache add scope: null,
200 silly cache add name: 'console-browserify',
200 silly cache add rawSpec: '1.1.x',
200 silly cache add spec: '>=1.1.0 <1.2.0',
200 silly cache add type: 'range' }
201 silly addNamed console-browserify@>=1.1.0 <1.2.0
202 verbose addNamed ">=1.1.0 <1.2.0" is a valid semver range for console-browserify
203 silly addNameRange { name: 'console-browserify',
203 silly addNameRange range: '>=1.1.0 <1.2.0',
203 silly addNameRange hasData: false }
204 silly mapToRegistry name console-browserify
205 silly mapToRegistry using default registry
206 silly mapToRegistry registry https://registry.npmjs.org/
207 silly mapToRegistry uri https://registry.npmjs.org/console-browserify
208 verbose addNameRange registry:https://registry.npmjs.org/console-browserify not in flight; fetching
209 verbose get https://registry.npmjs.org/console-browserify not expired, no request
210 silly addNameRange number 2 { name: 'console-browserify',
210 silly addNameRange range: '>=1.1.0 <1.2.0',
210 silly addNameRange hasData: true }
211 silly addNameRange versions [ 'console-browserify',
211 silly addNameRange [ '0.1.0',
211 silly addNameRange '0.1.1',
211 silly addNameRange '0.1.2',
211 silly addNameRange '0.1.3',
211 silly addNameRange '0.1.4',
211 silly addNameRange '0.1.5',
211 silly addNameRange '0.1.6',
211 silly addNameRange '1.0.1',
211 silly addNameRange '1.0.2',
211 silly addNameRange '1.0.3',
211 silly addNameRange '1.1.0' ] ]
212 silly addNamed [email protected]
213 verbose addNamed "1.1.0" is a plain semver version for console-browserify
214 silly cache afterAdd [email protected]
215 verbose afterAdd /home/pc/.npm/console-browserify/1.1.0/package/package.json not in flight; writing
216 verbose afterAdd /home/pc/.npm/console-browserify/1.1.0/package/package.json written
217 http 304 https://registry.npmjs.org/cli
218 verbose headers { date: 'Tue, 07 Aug 2018 06:50:20 GMT',
218 verbose headers connection: 'keep-alive',
218 verbose headers 'set-cookie':
218 verbose headers [ '__cfduid=d722498f034c893882eb3d86c11b285321533624620; expires=Wed, 07-Aug-19 06:50:20 GMT; path=/; domain=.registry.npmjs.org; HttpOnly' ],
218 verbose headers 'cache-control': 'max-age=300',
218 verbose headers 'cf-cache-status': 'HIT',
218 verbose headers 'cf-ray': '4467cef928c965bd-SYD',
218 verbose headers etag: '"0d6b814ba44407b768ae5d1b13680baa"',
218 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
218 verbose headers 'last-modified': 'Sat, 26 May 2018 03:44:51 GMT',
218 verbose headers vary: 'accept-encoding, accept',
218 verbose headers server: 'cloudflare' }
219 silly get cb [ 304,
219 silly get { date: 'Tue, 07 Aug 2018 06:50:20 GMT',
219 silly get connection: 'keep-alive',
219 silly get 'set-cookie':
219 silly get [ '__cfduid=d722498f034c893882eb3d86c11b285321533624620; expires=Wed, 07-Aug-19 06:50:20 GMT; path=/; domain=.registry.npmjs.org; HttpOnly' ],
219 silly get 'cache-control': 'max-age=300',
219 silly get 'cf-cache-status': 'HIT',
219 silly get 'cf-ray': '4467cef928c965bd-SYD',
219 silly get etag: '"0d6b814ba44407b768ae5d1b13680baa"',
219 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
219 silly get 'last-modified': 'Sat, 26 May 2018 03:44:51 GMT',
219 silly get vary: 'accept-encoding, accept',
219 silly get server: 'cloudflare' } ]
220 verbose etag https://registry.npmjs.org/cli from cache
221 verbose get saving cli to /home/pc/.npm/registry.npmjs.org/cli/.cache.json
222 http 304 https://registry.npmjs.org/exit
223 verbose headers { date: 'Tue, 07 Aug 2018 06:50:20 GMT',
223 verbose headers connection: 'keep-alive',
223 verbose headers 'set-cookie':
223 verbose headers [ '__cfduid=d1b47a38ad87b5e519da94c87950f2e561533624620; expires=Wed, 07-Aug-19 06:50:20 GMT; path=/; domain=.registry.npmjs.org; HttpOnly' ],
223 verbose headers 'cache-control': 'max-age=300',
223 verbose headers 'cf-cache-status': 'HIT',
223 verbose headers 'cf-ray': '4467cef92a370b0e-SYD',
223 verbose headers etag: '"6c0a75b92734bbc749507447afcfedd5"',
223 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
223 verbose headers 'last-modified': 'Sun, 27 May 2018 00:05:47 GMT',
223 verbose headers vary: 'accept-encoding, accept',
223 verbose headers server: 'cloudflare' }
224 silly get cb [ 304,
224 silly get { date: 'Tue, 07 Aug 2018 06:50:20 GMT',
224 silly get connection: 'keep-alive',
224 silly get 'set-cookie':
224 silly get [ '__cfduid=d1b47a38ad87b5e519da94c87950f2e561533624620; expires=Wed, 07-Aug-19 06:50:20 GMT; path=/; domain=.registry.npmjs.org; HttpOnly' ],
224 silly get 'cache-control': 'max-age=300',
224 silly get 'cf-cache-status': 'HIT',
224 silly get 'cf-ray': '4467cef92a370b0e-SYD',
224 silly get etag: '"6c0a75b92734bbc749507447afcfedd5"',
224 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
224 silly get 'last-modified': 'Sun, 27 May 2018 00:05:47 GMT',
224 silly get vary: 'accept-encoding, accept',
224 silly get server: 'cloudflare' } ]
225 verbose etag https://registry.npmjs.org/exit from cache
226 verbose get saving exit to /home/pc/.npm/registry.npmjs.org/exit/.cache.json
227 silly resolveWithNewModule [email protected] checking installable status
228 silly cache add args [ 'cli@~1.0.0', null ]
229 verbose cache add spec cli@~1.0.0
230 silly cache add parsed spec Result {
230 silly cache add raw: 'cli@~1.0.0',
230 silly cache add scope: null,
230 silly cache add name: 'cli',
230 silly cache add rawSpec: '~1.0.0',
230 silly cache add spec: '>=1.0.0 <1.1.0',
230 silly cache add type: 'range' }
231 silly addNamed cli@>=1.0.0 <1.1.0
232 verbose addNamed ">=1.0.0 <1.1.0" is a valid semver range for cli
233 silly addNameRange { name: 'cli', range: '>=1.0.0 <1.1.0', hasData: false }
234 silly mapToRegistry name cli
235 silly mapToRegistry using default registry
236 silly mapToRegistry registry https://registry.npmjs.org/
237 silly mapToRegistry uri https://registry.npmjs.org/cli
238 verbose addNameRange registry:https://registry.npmjs.org/cli not in flight; fetching
239 http 304 https://registry.npmjs.org/htmlparser2
240 verbose headers { date: 'Tue, 07 Aug 2018 06:50:20 GMT',
240 verbose headers connection: 'keep-alive',
240 verbose headers 'set-cookie':
240 verbose headers [ '__cfduid=d5aee157db59630639657de9724a6a11b1533624620; expires=Wed, 07-Aug-19 06:50:20 GMT; path=/; domain=.registry.npmjs.org; HttpOnly' ],
240 verbose headers 'cache-control': 'max-age=300',
240 verbose headers 'cf-cache-status': 'HIT',
240 verbose headers 'cf-ray': '4467cef92819652d-SYD',
240 verbose headers etag: '"7c28d760478275f3dbcdd7832d86aae7"',
240 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
240 verbose headers 'last-modified': 'Sun, 27 May 2018 04:02:54 GMT',
240 verbose headers vary: 'accept-encoding, accept',
240 verbose headers server: 'cloudflare' }
241 silly get cb [ 304,
241 silly get { date: 'Tue, 07 Aug 2018 06:50:20 GMT',
241 silly get connection: 'keep-alive',
241 silly get 'set-cookie':
241 silly get [ '__cfduid=d5aee157db59630639657de9724a6a11b1533624620; expires=Wed, 07-Aug-19 06:50:20 GMT; path=/; domain=.registry.npmjs.org; HttpOnly' ],
241 silly get 'cache-control': 'max-age=300',
241 silly get 'cf-cache-status': 'HIT',
241 silly get 'cf-ray': '4467cef92819652d-SYD',
241 silly get etag: '"7c28d760478275f3dbcdd7832d86aae7"',
241 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
241 silly get 'last-modified': 'Sun, 27 May 2018 04:02:54 GMT',
241 silly get vary: 'accept-encoding, accept',
241 silly get server: 'cloudflare' } ]
242 verbose etag https://registry.npmjs.org/htmlparser2 from cache
243 verbose get saving htmlparser2 to /home/pc/.npm/registry.npmjs.org/htmlparser2/.cache.json
244 http 304 https://registry.npmjs.org/unicode-5.2.0
245 verbose headers { date: 'Tue, 07 Aug 2018 06:50:21 GMT',
245 verbose headers connection: 'keep-alive',
245 verbose headers 'set-cookie':
245 verbose headers [ '__cfduid=d2a167a0d9c9dc4bc54e93a7878765d5b1533624621; expires=Wed, 07-Aug-19 06:50:21 GMT; path=/; domain=.registry.npmjs.org; HttpOnly' ],
245 verbose headers 'cache-control': 'max-age=300',
245 verbose headers 'cf-cache-status': 'HIT',
245 verbose headers 'cf-ray': '4467cef94b1e656f-SYD',
245 verbose headers etag: '"fe6e16173e72b8ed4f4fd91338afec48"',
245 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
245 verbose headers 'last-modified': 'Sun, 27 May 2018 20:27:33 GMT',
245 verbose headers vary: 'accept-encoding, accept',
245 verbose headers server: 'cloudflare' }
246 silly get cb [ 304,
246 silly get { date: 'Tue, 07 Aug 2018 06:50:21 GMT',
246 silly get connection: 'keep-alive',
246 silly get 'set-cookie':
246 silly get [ '__cfduid=d2a167a0d9c9dc4bc54e93a7878765d5b1533624621; expires=Wed, 07-Aug-19 06:50:21 GMT; path=/; domain=.registry.npmjs.org; HttpOnly' ],
246 silly get 'cache-control': 'max-age=300',
246 silly get 'cf-cache-status': 'HIT',
246 silly get 'cf-ray': '4467cef94b1e656f-SYD',
246 silly get etag: '"fe6e16173e72b8ed4f4fd91338afec48"',
246 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
246 silly get 'last-modified': 'Sun, 27 May 2018 20:27:33 GMT',
246 silly get vary: 'accept-encoding, accept',
246 silly get server: 'cloudflare' } ]
247 verbose etag https://registry.npmjs.org/unicode-5.2.0 from cache
248 verbose get saving unicode-5.2.0 to /home/pc/.npm/registry.npmjs.org/unicode-5.2.0/.cache.json
249 http 304 https://registry.npmjs.org/phantomjs-prebuilt
250 verbose headers { date: 'Tue, 07 Aug 2018 06:50:21 GMT',
250 verbose headers connection: 'keep-alive',
250 verbose headers 'set-cookie':
250 verbose headers [ '__cfduid=d95c8de1c13f210e21eaa2daaf26615001533624621; expires=Wed, 07-Aug-19 06:50:21 GMT; path=/; domain=.registry.npmjs.org; HttpOnly' ],
250 verbose headers 'cache-control': 'max-age=300',
250 verbose headers 'cf-cache-status': 'HIT',
250 verbose headers 'cf-ray': '4467cef94f0d65c9-SYD',
250 verbose headers etag: '"6632e8ff996a0c14037347232604b47d"',
250 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
250 verbose headers 'last-modified': 'Fri, 03 Aug 2018 00:36:17 GMT',
250 verbose headers vary: 'accept-encoding, accept',
250 verbose headers server: 'cloudflare' }
251 silly get cb [ 304,
251 silly get { date: 'Tue, 07 Aug 2018 06:50:21 GMT',
251 silly get connection: 'keep-alive',
251 silly get 'set-cookie':
251 silly get [ '__cfduid=d95c8de1c13f210e21eaa2daaf26615001533624621; expires=Wed, 07-Aug-19 06:50:21 GMT; path=/; domain=.registry.npmjs.org; HttpOnly' ],
251 silly get 'cache-control': 'max-age=300',
251 silly get 'cf-cache-status': 'HIT',
251 silly get 'cf-ray': '4467cef94f0d65c9-SYD',
251 silly get etag: '"6632e8ff996a0c14037347232604b47d"',
251 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
251 silly get 'last-modified': 'Fri, 03 Aug 2018 00:36:17 GMT',
251 silly get vary: 'accept-encoding, accept',
251 silly get server: 'cloudflare' } ]
252 verbose etag https://registry.npmjs.org/phantomjs-prebuilt from cache
253 verbose get saving phantomjs-prebuilt to /home/pc/.npm/registry.npmjs.org/phantomjs-prebuilt/.cache.json
254 verbose get https://registry.npmjs.org/cli not expired, no request
255 silly addNameRange number 2 { name: 'cli', range: '>=1.0.0 <1.1.0', hasData: true }
256 silly addNameRange versions [ 'cli',
256 silly addNameRange [ '0.1.0',
256 silly addNameRange '0.1.1',
256 silly addNameRange '0.1.3',
256 silly addNameRange '0.1.4',
256 silly addNameRange '0.1.5',
256 silly addNameRange '0.1.6',
256 silly addNameRange '0.1.7',
256 silly addNameRange '0.1.8',
256 silly addNameRange '0.1.9',
256 silly addNameRange '0.2.0',
256 silly addNameRange '0.2.1-1',
256 silly addNameRange '0.2.2-1',
256 silly addNameRange '0.2.3-1',
256 silly addNameRange '0.2.3-2',
256 silly addNameRange '0.2.3-3',
256 silly addNameRange '0.2.3-4',
256 silly addNameRange '0.2.3-5',
256 silly addNameRange '0.2.4-1',
256 silly addNameRange '0.2.4-2',
256 silly addNameRange '0.2.5',
256 silly addNameRange '0.2.6',
256 silly addNameRange '0.2.7',
256 silly addNameRange '0.2.8',
256 silly addNameRange '0.3.0',
256 silly addNameRange '0.3.1',
256 silly addNameRange '0.3.2',
256 silly addNameRange '0.3.3',
256 silly addNameRange '0.3.4',
256 silly addNameRange '0.3.5',
256 silly addNameRange '0.3.6',
256 silly addNameRange '0.3.7',
256 silly addNameRange '0.3.8',
256 silly addNameRange '0.3.9',
256 silly addNameRange '0.4.0',
256 silly addNameRange '0.4.1',
256 silly addNameRange '0.4.2',
256 silly addNameRange '0.4.3',
256 silly addNameRange '0.4.4',
256 silly addNameRange '0.4.4-1',
256 silly addNameRange '0.4.4-2',
256 silly addNameRange '0.4.5',
256 silly addNameRange '0.5.0',
256 silly addNameRange '0.6.0',
256 silly addNameRange '0.6.2',
256 silly addNameRange '0.6.3',
256 silly addNameRange '0.6.4',
256 silly addNameRange '0.6.5',
256 silly addNameRange '0.6.6',
256 silly addNameRange '0.7.0',
256 silly addNameRange '0.7.1',
256 silly addNameRange '0.8.0',
256 silly addNameRange '0.9.0',
256 silly addNameRange '0.10.0',
256 silly addNameRange '0.11.0',
256 silly addNameRange '0.11.1',
256 silly addNameRange '0.11.2',
256 silly addNameRange '0.11.3',
256 silly addNameRange '1.0.0',
256 silly addNameRange '1.0.1' ] ]
257 silly addNamed [email protected]
258 verbose addNamed "1.0.1" is a plain semver version for cli
259 silly resolveWithNewModule [email protected] checking installable status
260 silly cache add args [ '[email protected]', null ]
261 verbose cache add spec [email protected]
262 silly cache add parsed spec Result {
262 silly cache add raw: '[email protected]',
262 silly cache add scope: null,
262 silly cache add name: 'exit',
262 silly cache add rawSpec: '0.1.x',
262 silly cache add spec: '>=0.1.0 <0.2.0',
262 silly cache add type: 'range' }
263 silly addNamed exit@>=0.1.0 <0.2.0
264 verbose addNamed ">=0.1.0 <0.2.0" is a valid semver range for exit
265 silly addNameRange { name: 'exit', range: '>=0.1.0 <0.2.0', hasData: false }
266 silly mapToRegistry name exit
267 silly mapToRegistry using default registry
268 silly mapToRegistry registry https://registry.npmjs.org/
269 silly mapToRegistry uri https://registry.npmjs.org/exit
270 verbose addNameRange registry:https://registry.npmjs.org/exit not in flight; fetching
271 silly resolveWithNewModule [email protected] checking installable status
272 silly cache add args [ '[email protected]', null ]
273 verbose cache add spec [email protected]
274 silly cache add parsed spec Result {
274 silly cache add raw: '[email protected]',
274 silly cache add scope: null,
274 silly cache add name: 'htmlparser2',
274 silly cache add rawSpec: '3.8.x',
274 silly cache add spec: '>=3.8.0 <3.9.0',
274 silly cache add type: 'range' }
275 silly addNamed htmlparser2@>=3.8.0 <3.9.0
276 verbose addNamed ">=3.8.0 <3.9.0" is a valid semver range for htmlparser2
277 silly addNameRange { name: 'htmlparser2', range: '>=3.8.0 <3.9.0', hasData: false }
278 silly mapToRegistry name htmlparser2
279 silly mapToRegistry using default registry
280 silly mapToRegistry registry https://registry.npmjs.org/
281 silly mapToRegistry uri https://registry.npmjs.org/htmlparser2
282 verbose addNameRange registry:https://registry.npmjs.org/htmlparser2 not in flight; fetching
283 silly resolveWithNewModule [email protected] checking installable status
284 silly cache add args [ 'unicode-5.2.0@^0.7.5', null ]
285 verbose cache add spec unicode-5.2.0@^0.7.5
286 silly cache add parsed spec Result {
286 silly cache add raw: 'unicode-5.2.0@^0.7.5',
286 silly cache add scope: null,
286 silly cache add name: 'unicode-5.2.0',
286 silly cache add rawSpec: '^0.7.5',
286 silly cache add spec: '>=0.7.5 <0.8.0',
286 silly cache add type: 'range' }
287 silly addNamed unicode-5.2.0@>=0.7.5 <0.8.0
288 verbose addNamed ">=0.7.5 <0.8.0" is a valid semver range for unicode-5.2.0
289 silly addNameRange { name: 'unicode-5.2.0',
289 silly addNameRange range: '>=0.7.5 <0.8.0',
289 silly addNameRange hasData: false }
290 silly mapToRegistry name unicode-5.2.0
291 silly mapToRegistry using default registry
292 silly mapToRegistry registry https://registry.npmjs.org/
293 silly mapToRegistry uri https://registry.npmjs.org/unicode-5.2.0
294 verbose addNameRange registry:https://registry.npmjs.org/unicode-5.2.0 not in flight; fetching
295 silly cache afterAdd [email protected]
296 verbose afterAdd /home/pc/.npm/cli/1.0.1/package/package.json not in flight; writing
297 http 304 https://registry.npmjs.org/shelljs
298 verbose headers { date: 'Tue, 07 Aug 2018 06:50:21 GMT',
298 verbose headers connection: 'keep-alive',
298 verbose headers 'set-cookie':
298 verbose headers [ '__cfduid=d141a4c59a3e2e26d756fdb86cde563231533624620; expires=Wed, 07-Aug-19 06:50:20 GMT; path=/; domain=.registry.npmjs.org; HttpOnly' ],
298 verbose headers 'cache-control': 'max-age=300',
298 verbose headers 'cf-cache-status': 'HIT',
298 verbose headers 'cf-ray': '4467cef93c7b0b1a-SYD',
298 verbose headers etag: '"9a028358ded6f774130342ea046fd3f9"',
298 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
298 verbose headers 'last-modified': 'Fri, 13 Jul 2018 12:31:47 GMT',
298 verbose headers vary: 'accept-encoding, accept',
298 verbose headers server: 'cloudflare' }
299 silly get cb [ 304,
299 silly get { date: 'Tue, 07 Aug 2018 06:50:21 GMT',
299 silly get connection: 'keep-alive',
299 silly get 'set-cookie':
299 silly get [ '__cfduid=d141a4c59a3e2e26d756fdb86cde563231533624620; expires=Wed, 07-Aug-19 06:50:20 GMT; path=/; domain=.registry.npmjs.org; HttpOnly' ],
299 silly get 'cache-control': 'max-age=300',
299 silly get 'cf-cache-status': 'HIT',
299 silly get 'cf-ray': '4467cef93c7b0b1a-SYD',
299 silly get etag: '"9a028358ded6f774130342ea046fd3f9"',
299 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
299 silly get 'last-modified': 'Fri, 13 Jul 2018 12:31:47 GMT',
299 silly get vary: 'accept-encoding, accept',
299 silly get server: 'cloudflare' } ]
300 verbose etag https://registry.npmjs.org/shelljs from cache
301 verbose get saving shelljs to /home/pc/.npm/registry.npmjs.org/shelljs/.cache.json
302 http 304 https://registry.npmjs.org/phantom
303 verbose headers { date: 'Tue, 07 Aug 2018 06:50:21 GMT',
303 verbose headers connection: 'keep-alive',
303 verbose headers 'set-cookie':
303 verbose headers [ '__cfduid=d0483b0977c90df29e350567c03b80eb51533624621; expires=Wed, 07-Aug-19 06:50:21 GMT; path=/; domain=.registry.npmjs.org; HttpOnly' ],
303 verbose headers 'cache-control': 'max-age=300',
303 verbose headers 'cf-cache-status': 'HIT',
303 verbose headers 'cf-ray': '4467cef95a750b0e-SYD',
303 verbose headers etag: '"c54604474ec113087982ca9c8f7a6298"',
303 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
303 verbose headers 'last-modified': 'Sat, 30 Jun 2018 21:45:59 GMT',
303 verbose headers vary: 'accept-encoding, accept',
303 verbose headers server: 'cloudflare' }
304 silly get cb [ 304,
304 silly get { date: 'Tue, 07 Aug 2018 06:50:21 GMT',
304 silly get connection: 'keep-alive',
304 silly get 'set-cookie':
304 silly get [ '__cfduid=d0483b0977c90df29e350567c03b80eb51533624621; expires=Wed, 07-Aug-19 06:50:21 GMT; path=/; domain=.registry.npmjs.org; HttpOnly' ],
304 silly get 'cache-control': 'max-age=300',
304 silly get 'cf-cache-status': 'HIT',
304 silly get 'cf-ray': '4467cef95a750b0e-SYD',
304 silly get etag: '"c54604474ec113087982ca9c8f7a6298"',
304 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
304 silly get 'last-modified': 'Sat, 30 Jun 2018 21:45:59 GMT',
304 silly get vary: 'accept-encoding, accept',
304 silly get server: 'cloudflare' } ]
305 verbose etag https://registry.npmjs.org/phantom from cache
306 verbose get saving phantom to /home/pc/.npm/registry.npmjs.org/phantom/.cache.json
307 silly resolveWithNewModule [email protected] checking installable status
308 silly cache add args [ 'phantomjs-prebuilt@~2.1.7', null ]
309 verbose cache add spec phantomjs-prebuilt@~2.1.7
310 silly cache add parsed spec Result {
310 silly cache add raw: 'phantomjs-prebuilt@~2.1.7',
310 silly cache add scope: null,
310 silly cache add name: 'phantomjs-prebuilt',
310 silly cache add rawSpec: '~2.1.7',
310 silly cache add spec: '>=2.1.7 <2.2.0',
310 silly cache add type: 'range' }
311 silly addNamed phantomjs-prebuilt@>=2.1.7 <2.2.0
312 verbose addNamed ">=2.1.7 <2.2.0" is a valid semver range for phantomjs-prebuilt
313 silly addNameRange { name: 'phantomjs-prebuilt',
313 silly addNameRange range: '>=2.1.7 <2.2.0',
313 silly addNameRange hasData: false }
314 silly mapToRegistry name phantomjs-prebuilt
315 silly mapToRegistry using default registry
316 silly mapToRegistry registry https://registry.npmjs.org/
317 silly mapToRegistry uri https://registry.npmjs.org/phantomjs-prebuilt
318 verbose addNameRange registry:https://registry.npmjs.org/phantomjs-prebuilt not in flight; fetching
319 verbose get https://registry.npmjs.org/exit not expired, no request
320 silly addNameRange number 2 { name: 'exit', range: '>=0.1.0 <0.2.0', hasData: true }
321 silly addNameRange versions [ 'exit', [ '0.1.0', '0.1.1', '0.1.2' ] ]
322 silly addNamed [email protected]
323 verbose addNamed "0.1.2" is a plain semver version for exit
324 http 304 https://registry.npmjs.org/strip-json-comments
325 verbose headers { date: 'Tue, 07 Aug 2018 06:50:21 GMT',
325 verbose headers connection: 'keep-alive',
325 verbose headers 'set-cookie':
325 verbose headers [ '__cfduid=d7a4e874813418ce33c33c45f5ad1c3021533624621; expires=Wed, 07-Aug-19 06:50:21 GMT; path=/; domain=.registry.npmjs.org; HttpOnly' ],
325 verbose headers 'cache-control': 'max-age=300',
325 verbose headers 'cf-cache-status': 'HIT',
325 verbose headers 'cf-ray': '4467cef93eaf0b14-SYD',
325 verbose headers etag: '"9364262af09ecc96f0475b808daeccd5"',
325 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
325 verbose headers 'last-modified': 'Sun, 27 May 2018 18:26:04 GMT',
325 verbose headers vary: 'accept-encoding, accept',
325 verbose headers server: 'cloudflare' }
326 silly get cb [ 304,
326 silly get { date: 'Tue, 07 Aug 2018 06:50:21 GMT',
326 silly get connection: 'keep-alive',
326 silly get 'set-cookie':
326 silly get [ '__cfduid=d7a4e874813418ce33c33c45f5ad1c3021533624621; expires=Wed, 07-Aug-19 06:50:21 GMT; path=/; domain=.registry.npmjs.org; HttpOnly' ],
326 silly get 'cache-control': 'max-age=300',
326 silly get 'cf-cache-status': 'HIT',
326 silly get 'cf-ray': '4467cef93eaf0b14-SYD',
326 silly get etag: '"9364262af09ecc96f0475b808daeccd5"',
326 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
326 silly get 'last-modified': 'Sun, 27 May 2018 18:26:04 GMT',
326 silly get vary: 'accept-encoding, accept',
326 silly get server: 'cloudflare' } ]
327 verbose etag https://registry.npmjs.org/strip-json-comments from cache
328 verbose get saving strip-json-comments to /home/pc/.npm/registry.npmjs.org/strip-json-comments/.cache.json
329 http 304 https://registry.npmjs.org/lodash
330 verbose headers { date: 'Tue, 07 Aug 2018 06:50:21 GMT',
330 verbose headers connection: 'keep-alive',
330 verbose headers 'set-cookie':
330 verbose headers [ '__cfduid=d0483b0977c90df29e350567c03b80eb51533624621; expires=Wed, 07-Aug-19 06:50:21 GMT; path=/; domain=.registry.npmjs.org; HttpOnly' ],
330 verbose headers 'cache-control': 'max-age=300',
330 verbose headers 'cf-cache-status': 'HIT',
330 verbose headers 'cf-ray': '4467cef95a720b0e-SYD',
330 verbose headers etag: '"2d740a276d720c424d510b0f14a86a41"',
330 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
330 verbose headers 'last-modified': 'Thu, 02 Aug 2018 09:52:36 GMT',
330 verbose headers vary: 'accept-encoding, accept',
330 verbose headers server: 'cloudflare' }
331 silly get cb [ 304,
331 silly get { date: 'Tue, 07 Aug 2018 06:50:21 GMT',
331 silly get connection: 'keep-alive',
331 silly get 'set-cookie':
331 silly get [ '__cfduid=d0483b0977c90df29e350567c03b80eb51533624621; expires=Wed, 07-Aug-19 06:50:21 GMT; path=/; domain=.registry.npmjs.org; HttpOnly' ],
331 silly get 'cache-control': 'max-age=300',
331 silly get 'cf-cache-status': 'HIT',
331 silly get 'cf-ray': '4467cef95a720b0e-SYD',
331 silly get etag: '"2d740a276d720c424d510b0f14a86a41"',
331 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
331 silly get 'last-modified': 'Thu, 02 Aug 2018 09:52:36 GMT',
331 silly get vary: 'accept-encoding, accept',
331 silly get server: 'cloudflare' } ]
332 verbose etag https://registry.npmjs.org/lodash from cache
333 verbose get saving lodash to /home/pc/.npm/registry.npmjs.org/lodash/.cache.json
334 verbose get https://registry.npmjs.org/htmlparser2 not expired, no request
335 silly addNameRange number 2 { name: 'htmlparser2', range: '>=3.8.0 <3.9.0', hasData: true }
336 silly addNameRange versions [ 'htmlparser2',
336 silly addNameRange [ '1.0.0',
336 silly addNameRange '1.1.0',
336 silly addNameRange '1.5.0',
336 silly addNameRange '2.0.0',
336 silly addNameRange '2.0.1',
336 silly addNameRange '2.1.0',
336 silly addNameRange '2.1.1',
336 silly addNameRange '2.1.2',
336 silly addNameRange '2.1.3',
336 silly addNameRange '2.2.0',
336 silly addNameRange '2.2.2',
336 silly addNameRange '2.2.3',
336 silly addNameRange '2.2.4',
336 silly addNameRange '2.2.5',
336 silly addNameRange '2.2.6',
336 silly addNameRange '2.2.7',
336 silly addNameRange '2.2.8',
336 silly addNameRange '2.2.9',
336 silly addNameRange '2.3.0',
336 silly addNameRange '2.5.0',
336 silly addNameRange '2.5.1',
336 silly addNameRange '2.5.2',
336 silly addNameRange '2.6.0',
336 silly addNameRange '3.0.0',
336 silly addNameRange '3.0.1',
336 silly addNameRange '3.0.2',
336 silly addNameRange '3.0.3',
336 silly addNameRange '3.0.4',
336 silly addNameRange '3.0.5',
336 silly addNameRange '3.1.1',
336 silly addNameRange '3.1.2',
336 silly addNameRange '3.1.3',
336 silly addNameRange '3.1.4',
336 silly addNameRange '3.1.5',
336 silly addNameRange '3.1.6',
336 silly addNameRange '3.2.0',
336 silly addNameRange '3.2.1',
336 silly addNameRange '3.2.2',
336 silly addNameRange '3.2.3',
336 silly addNameRange '3.2.4',
336 silly addNameRange '3.2.5',
336 silly addNameRange '3.3.0',
336 silly addNameRange '3.4.0',
336 silly addNameRange '3.5.0',
336 silly addNameRange '3.5.1',
336 silly addNameRange '3.6.0',
336 silly addNameRange '3.7.0',
336 silly addNameRange '3.7.1',
336 silly addNameRange '3.7.2',
336 silly addNameRange '3.7.3',
336 silly addNameRange '3.8.0',
336 silly addNameRange '3.8.1',
336 silly addNameRange '3.8.2',
336 silly addNameRange '3.8.3',
336 silly addNameRange '3.9.0',
336 silly addNameRange '3.9.1',
336 silly addNameRange '3.9.2' ] ]
337 silly addNamed [email protected]
338 verbose addNamed "3.8.3" is a plain semver version for htmlparser2
339 verbose get https://registry.npmjs.org/unicode-5.2.0 not expired, no request
340 silly addNameRange number 2 { name: 'unicode-5.2.0', range: '>=0.7.5 <0.8.0', hasData: true }
341 silly addNameRange versions [ 'unicode-5.2.0',
341 silly addNameRange [ '0.1.0',
341 silly addNameRange '0.1.1',
341 silly addNameRange '0.1.2',
341 silly addNameRange '0.1.3',
341 silly addNameRange '0.1.4',
341 silly addNameRange '0.1.5',
341 silly addNameRange '0.1.6',
341 silly addNameRange '0.2.0',
341 silly addNameRange '0.3.0',
341 silly addNameRange '0.3.1',
341 silly addNameRange '0.4.0',
341 silly addNameRange '0.5.0',
341 silly addNameRange '0.6.0',
341 silly addNameRange '0.7.0',
341 silly addNameRange '0.7.1',
341 silly addNameRange '0.7.2',
341 silly addNameRange '0.7.3',
341 silly addNameRange '0.7.4',
341 silly addNameRange '0.7.5' ] ]
342 silly addNamed [email protected]
343 verbose addNamed "0.7.5" is a plain semver version for unicode-5.2.0
344 verbose afterAdd /home/pc/.npm/cli/1.0.1/package/package.json written
345 verbose get https://registry.npmjs.org/phantomjs-prebuilt not expired, no request
346 silly addNameRange number 2 { name: 'phantomjs-prebuilt',
346 silly addNameRange range: '>=2.1.7 <2.2.0',
346 silly addNameRange hasData: true }
347 silly addNameRange versions [ 'phantomjs-prebuilt',
347 silly addNameRange [ '2.1.2',
347 silly addNameRange '2.1.3',
347 silly addNameRange '2.1.4',
347 silly addNameRange '2.1.5',
347 silly addNameRange '2.1.6',
347 silly addNameRange '2.1.7',
347 silly addNameRange '2.1.8',
347 silly addNameRange '2.1.9',
347 silly addNameRange '2.1.10',
347 silly addNameRange '2.1.11-alpha',
347 silly addNameRange '2.1.11-alpha.1',
347 silly addNameRange '2.1.11',
347 silly addNameRange '2.1.12-alpha',
347 silly addNameRange '2.1.12',
347 silly addNameRange '2.1.13',
347 silly addNameRange '2.1.14',
347 silly addNameRange '2.1.15',
347 silly addNameRange '2.1.16' ] ]
348 silly addNamed [email protected]
349 verbose addNamed "2.1.16" is a plain semver version for phantomjs-prebuilt
350 silly cache afterAdd [email protected]
351 verbose afterAdd /home/pc/.npm/exit/0.1.2/package/package.json not in flight; writing
352 silly resolveWithNewModule [email protected] checking installable status
353 silly cache add args [ '[email protected]', null ]
354 verbose cache add spec [email protected]
355 silly cache add parsed spec Result {
355 silly cache add raw: '[email protected]',
355 silly cache add scope: null,
355 silly cache add name: 'shelljs',
355 silly cache add rawSpec: '0.3.x',
355 silly cache add spec: '>=0.3.0 <0.4.0',
355 silly cache add type: 'range' }
356 silly addNamed shelljs@>=0.3.0 <0.4.0
357 verbose addNamed ">=0.3.0 <0.4.0" is a valid semver range for shelljs
358 silly addNameRange { name: 'shelljs', range: '>=0.3.0 <0.4.0', hasData: false }
359 silly mapToRegistry name shelljs
360 silly mapToRegistry using default registry
361 silly mapToRegistry registry https://registry.npmjs.org/
362 silly mapToRegistry uri https://registry.npmjs.org/shelljs
363 verbose addNameRange registry:https://registry.npmjs.org/shelljs not in flight; fetching
364 silly resolveWithNewModule [email protected] checking installable status
365 silly cache add args [ 'phantom@~4.0.1', null ]
366 verbose cache add spec phantom@~4.0.1
367 silly cache add parsed spec Result {
367 silly cache add raw: 'phantom@~4.0.1',
367 silly cache add scope: null,
367 silly cache add name: 'phantom',
367 silly cache add rawSpec: '~4.0.1',
367 silly cache add spec: '>=4.0.1 <4.1.0',
367 silly cache add type: 'range' }
368 silly addNamed phantom@>=4.0.1 <4.1.0
369 verbose addNamed ">=4.0.1 <4.1.0" is a valid semver range for phantom
370 silly addNameRange { name: 'phantom', range: '>=4.0.1 <4.1.0', hasData: false }
371 silly mapToRegistry name phantom
372 silly mapToRegistry using default registry
373 silly mapToRegistry registry https://registry.npmjs.org/
374 silly mapToRegistry uri https://registry.npmjs.org/phantom
375 verbose addNameRange registry:https://registry.npmjs.org/phantom not in flight; fetching
376 silly cache afterAdd [email protected]
377 verbose afterAdd /home/pc/.npm/htmlparser2/3.8.3/package/package.json not in flight; writing
378 silly resolveWithNewModule [email protected] checking installable status
379 silly cache add args [ '[email protected]', null ]
380 verbose cache add spec [email protected]
381 silly cache add parsed spec Result {
381 silly cache add raw: '[email protected]',
381 silly cache add scope: null,
381 silly cache add name: 'strip-json-comments',
381 silly cache add rawSpec: '1.0.x',
381 silly cache add spec: '>=1.0.0 <1.1.0',
381 silly cache add type: 'range' }
382 silly addNamed strip-json-comments@>=1.0.0 <1.1.0
383 verbose addNamed ">=1.0.0 <1.1.0" is a valid semver range for strip-json-comments
384 silly addNameRange { name: 'strip-json-comments',
384 silly addNameRange range: '>=1.0.0 <1.1.0',
384 silly addNameRange hasData: false }
385 silly mapToRegistry name strip-json-comments
386 silly mapToRegistry using default registry
387 silly mapToRegistry registry https://registry.npmjs.org/
388 silly mapToRegistry uri https://registry.npmjs.org/strip-json-comments
389 verbose addNameRange registry:https://registry.npmjs.org/strip-json-comments not in flight; fetching
390 silly resolveWithNewModule [email protected] checking installable status
391 silly cache add args [ 'lodash@~4.17.10', null ]
392 verbose cache add spec lodash@~4.17.10
393 silly cache add parsed spec Result {
393 silly cache add raw: 'lodash@~4.17.10',
393 silly cache add scope: null,
393 silly cache add name: 'lodash',
393 silly cache add rawSpec: '~4.17.10',
393 silly cache add spec: '>=4.17.10 <4.18.0',
393 silly cache add type: 'range' }
394 silly addNamed lodash@>=4.17.10 <4.18.0
395 verbose addNamed ">=4.17.10 <4.18.0" is a valid semver range for lodash
396 silly addNameRange { name: 'lodash', range: '>=4.17.10 <4.18.0', hasData: false }
397 silly mapToRegistry name lodash
398 silly mapToRegistry using default registry
399 silly mapToRegistry registry https://registry.npmjs.org/
400 silly mapToRegistry uri https://registry.npmjs.org/lodash
401 verbose addNameRange registry:https://registry.npmjs.org/lodash not in flight; fetching
402 silly cache afterAdd [email protected]
403 verbose afterAdd /home/pc/.npm/unicode-5.2.0/0.7.5/package/package.json not in flight; writing
404 verbose afterAdd /home/pc/.npm/exit/0.1.2/package/package.json written
405 silly cache afterAdd [email protected]
406 verbose afterAdd /home/pc/.npm/phantomjs-prebuilt/2.1.16/package/package.json not in flight; writing
407 verbose get https://registry.npmjs.org/shelljs not expired, no request
408 silly addNameRange number 2 { name: 'shelljs', range: '>=0.3.0 <0.4.0', hasData: true }
409 silly addNameRange versions [ 'shelljs',
409 silly addNameRange [ '0.0.1',
409 silly addNameRange '0.0.2',
409 silly addNameRange '0.0.3',
409 silly addNameRange '0.0.4',
409 silly addNameRange '0.0.5',
409 silly addNameRange '0.0.6',
409 silly addNameRange '0.0.7',
409 silly addNameRange '0.0.8',
409 silly addNameRange '0.0.9',
409 silly addNameRange '0.1.0',
409 silly addNameRange '0.1.1',
409 silly addNameRange '0.1.2',
409 silly addNameRange '0.1.3',
409 silly addNameRange '0.1.4',
409 silly addNameRange '0.2.0',
409 silly addNameRange '0.2.1',
409 silly addNameRange '0.2.2',
409 silly addNameRange '0.2.3',
409 silly addNameRange '0.2.4',
409 silly addNameRange '0.2.5',
409 silly addNameRange '0.2.6',
409 silly addNameRange '0.3.0',
409 silly addNameRange '0.4.0',
409 silly addNameRange '0.5.0',
409 silly addNameRange '0.5.1',
409 silly addNameRange '0.5.2',
409 silly addNameRange '0.5.3',
409 silly addNameRange '0.6.0',
409 silly addNameRange '0.7.0',
409 silly addNameRange '0.7.1',
409 silly addNameRange '0.7.2',
409 silly addNameRange '0.7.3',
409 silly addNameRange '0.6.1',
409 silly addNameRange '0.7.4',
409 silly addNameRange '0.7.5',
409 silly addNameRange '0.7.6',
409 silly addNameRange '0.7.7',
409 silly addNameRange '0.7.8',
409 silly addNameRange '0.8.0',
409 silly addNameRange '0.8.1',
409 silly addNameRange '0.0.1-alpha1',
409 silly addNameRange '0.0.2-pre1',
409 silly addNameRange '0.0.4-pre1',
409 silly addNameRange '0.0.5-pre1',
409 silly addNameRange '0.0.5-pre2',
409 silly addNameRange '0.0.5-pre3',
409 silly addNameRange '0.0.5-pre4',
409 silly addNameRange '0.0.6-pre1',