-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnpm-debug.log
More file actions
7131 lines (7131 loc) · 371 KB
/
Copy pathnpm-debug.log
File metadata and controls
7131 lines (7131 loc) · 371 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
0 info it worked if it ends with ok
1 verbose cli [ 'C:\\Program Files\\nodejs\\node.exe',
1 verbose cli 'C:\\Program Files\\nodejs\\node_modules\\npm\\bin\\npm-cli.js',
1 verbose cli 'install',
1 verbose cli '-g',
1 verbose cli 'nodemon' ]
2 info using npm@3.10.10
3 info using node@v6.11.0
4 silly loadCurrentTree Starting
5 silly install loadCurrentTree
6 silly install readGlobalPackageData
7 silly fetchPackageMetaData nodemon
8 silly fetchNamedPackageData nodemon
9 silly mapToRegistry name nodemon
10 silly mapToRegistry using default registry
11 silly mapToRegistry registry https://registry.npmjs.org/
12 silly mapToRegistry data Result {
12 silly mapToRegistry raw: 'nodemon',
12 silly mapToRegistry scope: null,
12 silly mapToRegistry escapedName: 'nodemon',
12 silly mapToRegistry name: 'nodemon',
12 silly mapToRegistry rawSpec: '',
12 silly mapToRegistry spec: 'latest',
12 silly mapToRegistry type: 'tag' }
13 silly mapToRegistry uri https://registry.npmjs.org/nodemon
14 verbose request uri https://registry.npmjs.org/nodemon
15 verbose request no auth needed
16 info attempt registry request try #1 at 2:32:58 PM
17 verbose request id e98ba6637ed87e48
18 verbose etag W/"596d2683-312b1"
19 verbose lastModified Mon, 17 Jul 2017 21:05:07 GMT
20 http request GET https://registry.npmjs.org/nodemon
21 http 304 https://registry.npmjs.org/nodemon
22 verbose headers { date: 'Tue, 18 Jul 2017 18:33:00 GMT',
22 verbose headers via: '1.1 varnish',
22 verbose headers 'cache-control': 'max-age=300',
22 verbose headers etag: 'W/"596d2683-312b1"',
22 verbose headers age: '108',
22 verbose headers connection: 'keep-alive',
22 verbose headers 'x-served-by': 'cache-jfk8128-JFK',
22 verbose headers 'x-cache': 'HIT',
22 verbose headers 'x-cache-hits': '1',
22 verbose headers 'x-timer': 'S1500402780.410213,VS0,VE0',
22 verbose headers vary: 'Accept-Encoding, Accept' }
23 silly get cb [ 304,
23 silly get { date: 'Tue, 18 Jul 2017 18:33:00 GMT',
23 silly get via: '1.1 varnish',
23 silly get 'cache-control': 'max-age=300',
23 silly get etag: 'W/"596d2683-312b1"',
23 silly get age: '108',
23 silly get connection: 'keep-alive',
23 silly get 'x-served-by': 'cache-jfk8128-JFK',
23 silly get 'x-cache': 'HIT',
23 silly get 'x-cache-hits': '1',
23 silly get 'x-timer': 'S1500402780.410213,VS0,VE0',
23 silly get vary: 'Accept-Encoding, Accept' } ]
24 verbose etag https://registry.npmjs.org/nodemon from cache
25 verbose get saving nodemon to C:\Users\Althaf khan Pattan\AppData\Roaming\npm-cache\registry.npmjs.org\nodemon\.cache.json
26 verbose correctMkdir C:\Users\Althaf khan Pattan\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
27 silly install normalizeTree
28 silly loadCurrentTree Finishing
29 silly loadIdealTree Starting
30 silly install loadIdealTree
31 silly cloneCurrentTree Starting
32 silly install cloneCurrentTreeToIdealTree
33 silly cloneCurrentTree Finishing
34 silly loadShrinkwrap Starting
35 silly install loadShrinkwrap
36 silly loadShrinkwrap Finishing
37 silly loadAllDepsIntoIdealTree Starting
38 silly install loadAllDepsIntoIdealTree
39 silly resolveWithNewModule nodemon@1.11.0 checking installable status
40 silly cache add args [ 'nodemon', null ]
41 verbose cache add spec nodemon
42 silly cache add parsed spec Result {
42 silly cache add raw: 'nodemon',
42 silly cache add scope: null,
42 silly cache add escapedName: 'nodemon',
42 silly cache add name: 'nodemon',
42 silly cache add rawSpec: '',
42 silly cache add spec: 'latest',
42 silly cache add type: 'tag' }
43 silly addNamed nodemon@latest
44 verbose addNamed "latest" is being treated as a dist-tag for nodemon
45 info addNameTag [ 'nodemon', 'latest' ]
46 silly mapToRegistry name nodemon
47 silly mapToRegistry using default registry
48 silly mapToRegistry registry https://registry.npmjs.org/
49 silly mapToRegistry data Result {
49 silly mapToRegistry raw: 'nodemon',
49 silly mapToRegistry scope: null,
49 silly mapToRegistry escapedName: 'nodemon',
49 silly mapToRegistry name: 'nodemon',
49 silly mapToRegistry rawSpec: '',
49 silly mapToRegistry spec: 'latest',
49 silly mapToRegistry type: 'tag' }
50 silly mapToRegistry uri https://registry.npmjs.org/nodemon
51 verbose addNameTag registry:https://registry.npmjs.org/nodemon not in flight; fetching
52 verbose get https://registry.npmjs.org/nodemon not expired, no request
53 silly addNameTag next cb for nodemon with tag latest
54 silly addNamed nodemon@1.11.0
55 verbose addNamed "1.11.0" is a plain semver version for nodemon
56 silly cache afterAdd nodemon@1.11.0
57 verbose afterAdd C:\Users\Althaf khan Pattan\AppData\Roaming\npm-cache\nodemon\1.11.0\package\package.json not in flight; writing
58 verbose correctMkdir C:\Users\Althaf khan Pattan\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
59 verbose afterAdd C:\Users\Althaf khan Pattan\AppData\Roaming\npm-cache\nodemon\1.11.0\package\package.json written
60 silly fetchNamedPackageData chokidar
61 silly mapToRegistry name chokidar
62 silly mapToRegistry using default registry
63 silly mapToRegistry registry https://registry.npmjs.org/
64 silly mapToRegistry data Result {
64 silly mapToRegistry raw: 'chokidar',
64 silly mapToRegistry scope: null,
64 silly mapToRegistry escapedName: 'chokidar',
64 silly mapToRegistry name: 'chokidar',
64 silly mapToRegistry rawSpec: '',
64 silly mapToRegistry spec: 'latest',
64 silly mapToRegistry type: 'tag' }
65 silly mapToRegistry uri https://registry.npmjs.org/chokidar
66 silly fetchNamedPackageData debug
67 silly mapToRegistry name debug
68 silly mapToRegistry using default registry
69 silly mapToRegistry registry https://registry.npmjs.org/
70 silly mapToRegistry data Result {
70 silly mapToRegistry raw: 'debug',
70 silly mapToRegistry scope: null,
70 silly mapToRegistry escapedName: 'debug',
70 silly mapToRegistry name: 'debug',
70 silly mapToRegistry rawSpec: '',
70 silly mapToRegistry spec: 'latest',
70 silly mapToRegistry type: 'tag' }
71 silly mapToRegistry uri https://registry.npmjs.org/debug
72 silly fetchNamedPackageData es6-promise
73 silly mapToRegistry name es6-promise
74 silly mapToRegistry using default registry
75 silly mapToRegistry registry https://registry.npmjs.org/
76 silly mapToRegistry data Result {
76 silly mapToRegistry raw: 'es6-promise',
76 silly mapToRegistry scope: null,
76 silly mapToRegistry escapedName: 'es6-promise',
76 silly mapToRegistry name: 'es6-promise',
76 silly mapToRegistry rawSpec: '',
76 silly mapToRegistry spec: 'latest',
76 silly mapToRegistry type: 'tag' }
77 silly mapToRegistry uri https://registry.npmjs.org/es6-promise
78 silly fetchNamedPackageData ignore-by-default
79 silly mapToRegistry name ignore-by-default
80 silly mapToRegistry using default registry
81 silly mapToRegistry registry https://registry.npmjs.org/
82 silly mapToRegistry data Result {
82 silly mapToRegistry raw: 'ignore-by-default',
82 silly mapToRegistry scope: null,
82 silly mapToRegistry escapedName: 'ignore-by-default',
82 silly mapToRegistry name: 'ignore-by-default',
82 silly mapToRegistry rawSpec: '',
82 silly mapToRegistry spec: 'latest',
82 silly mapToRegistry type: 'tag' }
83 silly mapToRegistry uri https://registry.npmjs.org/ignore-by-default
84 silly fetchNamedPackageData lodash.defaults
85 silly mapToRegistry name lodash.defaults
86 silly mapToRegistry using default registry
87 silly mapToRegistry registry https://registry.npmjs.org/
88 silly mapToRegistry data Result {
88 silly mapToRegistry raw: 'lodash.defaults',
88 silly mapToRegistry scope: null,
88 silly mapToRegistry escapedName: 'lodash.defaults',
88 silly mapToRegistry name: 'lodash.defaults',
88 silly mapToRegistry rawSpec: '',
88 silly mapToRegistry spec: 'latest',
88 silly mapToRegistry type: 'tag' }
89 silly mapToRegistry uri https://registry.npmjs.org/lodash.defaults
90 silly fetchNamedPackageData minimatch
91 silly mapToRegistry name minimatch
92 silly mapToRegistry using default registry
93 silly mapToRegistry registry https://registry.npmjs.org/
94 silly mapToRegistry data Result {
94 silly mapToRegistry raw: 'minimatch',
94 silly mapToRegistry scope: null,
94 silly mapToRegistry escapedName: 'minimatch',
94 silly mapToRegistry name: 'minimatch',
94 silly mapToRegistry rawSpec: '',
94 silly mapToRegistry spec: 'latest',
94 silly mapToRegistry type: 'tag' }
95 silly mapToRegistry uri https://registry.npmjs.org/minimatch
96 silly fetchNamedPackageData ps-tree
97 silly mapToRegistry name ps-tree
98 silly mapToRegistry using default registry
99 silly mapToRegistry registry https://registry.npmjs.org/
100 silly mapToRegistry data Result {
100 silly mapToRegistry raw: 'ps-tree',
100 silly mapToRegistry scope: null,
100 silly mapToRegistry escapedName: 'ps-tree',
100 silly mapToRegistry name: 'ps-tree',
100 silly mapToRegistry rawSpec: '',
100 silly mapToRegistry spec: 'latest',
100 silly mapToRegistry type: 'tag' }
101 silly mapToRegistry uri https://registry.npmjs.org/ps-tree
102 silly fetchNamedPackageData touch
103 silly mapToRegistry name touch
104 silly mapToRegistry using default registry
105 silly mapToRegistry registry https://registry.npmjs.org/
106 silly mapToRegistry data Result {
106 silly mapToRegistry raw: 'touch',
106 silly mapToRegistry scope: null,
106 silly mapToRegistry escapedName: 'touch',
106 silly mapToRegistry name: 'touch',
106 silly mapToRegistry rawSpec: '',
106 silly mapToRegistry spec: 'latest',
106 silly mapToRegistry type: 'tag' }
107 silly mapToRegistry uri https://registry.npmjs.org/touch
108 silly fetchNamedPackageData undefsafe
109 silly mapToRegistry name undefsafe
110 silly mapToRegistry using default registry
111 silly mapToRegistry registry https://registry.npmjs.org/
112 silly mapToRegistry data Result {
112 silly mapToRegistry raw: 'undefsafe',
112 silly mapToRegistry scope: null,
112 silly mapToRegistry escapedName: 'undefsafe',
112 silly mapToRegistry name: 'undefsafe',
112 silly mapToRegistry rawSpec: '',
112 silly mapToRegistry spec: 'latest',
112 silly mapToRegistry type: 'tag' }
113 silly mapToRegistry uri https://registry.npmjs.org/undefsafe
114 silly fetchNamedPackageData update-notifier
115 silly mapToRegistry name update-notifier
116 silly mapToRegistry using default registry
117 silly mapToRegistry registry https://registry.npmjs.org/
118 silly mapToRegistry data Result {
118 silly mapToRegistry raw: 'update-notifier',
118 silly mapToRegistry scope: null,
118 silly mapToRegistry escapedName: 'update-notifier',
118 silly mapToRegistry name: 'update-notifier',
118 silly mapToRegistry rawSpec: '',
118 silly mapToRegistry spec: 'latest',
118 silly mapToRegistry type: 'tag' }
119 silly mapToRegistry uri https://registry.npmjs.org/update-notifier
120 verbose request uri https://registry.npmjs.org/chokidar
121 verbose request no auth needed
122 info attempt registry request try #1 at 2:32:58 PM
123 verbose etag W/"596dd32e-1c4c4"
124 verbose lastModified Tue, 18 Jul 2017 09:21:50 GMT
125 http request GET https://registry.npmjs.org/chokidar
126 verbose request uri https://registry.npmjs.org/debug
127 verbose request no auth needed
128 info attempt registry request try #1 at 2:32:58 PM
129 verbose etag W/"596de99d-13226"
130 verbose lastModified Tue, 18 Jul 2017 10:57:33 GMT
131 http request GET https://registry.npmjs.org/debug
132 verbose request uri https://registry.npmjs.org/ignore-by-default
133 verbose request no auth needed
134 info attempt registry request try #1 at 2:32:59 PM
135 verbose etag W/"56d065cf-107d"
136 verbose lastModified Fri, 26 Feb 2016 14:48:47 GMT
137 http request GET https://registry.npmjs.org/ignore-by-default
138 verbose request uri https://registry.npmjs.org/es6-promise
139 verbose request no auth needed
140 info attempt registry request try #1 at 2:32:59 PM
141 verbose etag W/"5953da0e-e268"
142 verbose lastModified Wed, 28 Jun 2017 16:32:14 GMT
143 http request GET https://registry.npmjs.org/es6-promise
144 verbose request uri https://registry.npmjs.org/lodash.defaults
145 verbose request no auth needed
146 info attempt registry request try #1 at 2:32:59 PM
147 verbose etag W/"58b06465-65a7"
148 verbose lastModified Fri, 24 Feb 2017 16:50:45 GMT
149 http request GET https://registry.npmjs.org/lodash.defaults
150 verbose request uri https://registry.npmjs.org/minimatch
151 verbose request no auth needed
152 info attempt registry request try #1 at 2:32:59 PM
153 verbose etag W/"595bab76-d1d3"
154 verbose lastModified Tue, 04 Jul 2017 14:51:34 GMT
155 http request GET https://registry.npmjs.org/minimatch
156 verbose request uri https://registry.npmjs.org/ps-tree
157 verbose request no auth needed
158 info attempt registry request try #1 at 2:32:59 PM
159 verbose etag W/"58ee9c6c-316d"
160 verbose lastModified Wed, 12 Apr 2017 21:30:20 GMT
161 http request GET https://registry.npmjs.org/ps-tree
162 verbose request uri https://registry.npmjs.org/touch
163 verbose request no auth needed
164 info attempt registry request try #1 at 2:32:59 PM
165 verbose etag W/"5956e177-32ac"
166 verbose lastModified Fri, 30 Jun 2017 23:40:39 GMT
167 http request GET https://registry.npmjs.org/touch
168 verbose request uri https://registry.npmjs.org/undefsafe
169 verbose request no auth needed
170 info attempt registry request try #1 at 2:32:59 PM
171 verbose etag W/"58ec5e4e-3756"
172 verbose lastModified Tue, 11 Apr 2017 04:40:46 GMT
173 http request GET https://registry.npmjs.org/undefsafe
174 verbose request uri https://registry.npmjs.org/update-notifier
175 verbose request no auth needed
176 info attempt registry request try #1 at 2:32:59 PM
177 verbose etag W/"59647c96-e01f"
178 verbose lastModified Tue, 11 Jul 2017 07:21:58 GMT
179 http request GET https://registry.npmjs.org/update-notifier
180 http 304 https://registry.npmjs.org/chokidar
181 verbose headers { date: 'Tue, 18 Jul 2017 18:33:00 GMT',
181 verbose headers via: '1.1 varnish',
181 verbose headers 'cache-control': 'max-age=300',
181 verbose headers etag: 'W/"596dd32e-1c4c4"',
181 verbose headers age: '9',
181 verbose headers connection: 'keep-alive',
181 verbose headers 'x-served-by': 'cache-jfk8128-JFK',
181 verbose headers 'x-cache': 'HIT',
181 verbose headers 'x-cache-hits': '1',
181 verbose headers 'x-timer': 'S1500402781.675124,VS0,VE0',
181 verbose headers vary: 'Accept-Encoding, Accept' }
182 silly get cb [ 304,
182 silly get { date: 'Tue, 18 Jul 2017 18:33:00 GMT',
182 silly get via: '1.1 varnish',
182 silly get 'cache-control': 'max-age=300',
182 silly get etag: 'W/"596dd32e-1c4c4"',
182 silly get age: '9',
182 silly get connection: 'keep-alive',
182 silly get 'x-served-by': 'cache-jfk8128-JFK',
182 silly get 'x-cache': 'HIT',
182 silly get 'x-cache-hits': '1',
182 silly get 'x-timer': 'S1500402781.675124,VS0,VE0',
182 silly get vary: 'Accept-Encoding, Accept' } ]
183 verbose etag https://registry.npmjs.org/chokidar from cache
184 verbose get saving chokidar to C:\Users\Althaf khan Pattan\AppData\Roaming\npm-cache\registry.npmjs.org\chokidar\.cache.json
185 verbose correctMkdir C:\Users\Althaf khan Pattan\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
186 silly resolveWithNewModule chokidar@1.7.0 checking installable status
187 silly cache add args [ 'chokidar@^1.4.3', null ]
188 verbose cache add spec chokidar@^1.4.3
189 silly cache add parsed spec Result {
189 silly cache add raw: 'chokidar@^1.4.3',
189 silly cache add scope: null,
189 silly cache add escapedName: 'chokidar',
189 silly cache add name: 'chokidar',
189 silly cache add rawSpec: '^1.4.3',
189 silly cache add spec: '>=1.4.3 <2.0.0',
189 silly cache add type: 'range' }
190 silly addNamed chokidar@>=1.4.3 <2.0.0
191 verbose addNamed ">=1.4.3 <2.0.0" is a valid semver range for chokidar
192 silly addNameRange { name: 'chokidar', range: '>=1.4.3 <2.0.0', hasData: false }
193 silly mapToRegistry name chokidar
194 silly mapToRegistry using default registry
195 silly mapToRegistry registry https://registry.npmjs.org/
196 silly mapToRegistry data Result {
196 silly mapToRegistry raw: 'chokidar',
196 silly mapToRegistry scope: null,
196 silly mapToRegistry escapedName: 'chokidar',
196 silly mapToRegistry name: 'chokidar',
196 silly mapToRegistry rawSpec: '',
196 silly mapToRegistry spec: 'latest',
196 silly mapToRegistry type: 'tag' }
197 silly mapToRegistry uri https://registry.npmjs.org/chokidar
198 verbose addNameRange registry:https://registry.npmjs.org/chokidar not in flight; fetching
199 verbose get https://registry.npmjs.org/chokidar not expired, no request
200 silly addNameRange number 2 { name: 'chokidar', range: '>=1.4.3 <2.0.0', hasData: true }
201 silly addNameRange versions [ 'chokidar',
201 silly addNameRange [ '0.1.1',
201 silly addNameRange '0.2.0',
201 silly addNameRange '0.2.1',
201 silly addNameRange '0.2.2',
201 silly addNameRange '0.2.3',
201 silly addNameRange '0.2.4',
201 silly addNameRange '0.2.5',
201 silly addNameRange '0.2.6',
201 silly addNameRange '0.3.0',
201 silly addNameRange '0.4.0',
201 silly addNameRange '0.5.0',
201 silly addNameRange '0.5.1',
201 silly addNameRange '0.5.2',
201 silly addNameRange '0.5.3',
201 silly addNameRange '0.6.0',
201 silly addNameRange '0.6.1',
201 silly addNameRange '0.6.2',
201 silly addNameRange '0.6.3',
201 silly addNameRange '0.7.0',
201 silly addNameRange '0.7.1',
201 silly addNameRange '0.8.0',
201 silly addNameRange '0.8.1',
201 silly addNameRange '0.8.2',
201 silly addNameRange '0.8.3',
201 silly addNameRange '0.8.4',
201 silly addNameRange '0.9.0',
201 silly addNameRange '0.10.0',
201 silly addNameRange '0.10.1',
201 silly addNameRange '0.10.2',
201 silly addNameRange '0.10.3',
201 silly addNameRange '0.10.4',
201 silly addNameRange '0.10.5',
201 silly addNameRange '0.10.6',
201 silly addNameRange '0.10.7',
201 silly addNameRange '0.10.8',
201 silly addNameRange '0.10.9',
201 silly addNameRange '0.11.0',
201 silly addNameRange '0.11.1',
201 silly addNameRange '0.12.0',
201 silly addNameRange '0.12.1',
201 silly addNameRange '0.12.2',
201 silly addNameRange '0.12.3',
201 silly addNameRange '0.12.4',
201 silly addNameRange '0.12.5',
201 silly addNameRange '0.12.6',
201 silly addNameRange '1.0.0-rc1',
201 silly addNameRange '1.0.0-rc1.1',
201 silly addNameRange '1.0.0-rc2',
201 silly addNameRange '1.0.0-rc3',
201 silly addNameRange '1.0.0-rc4',
201 silly addNameRange '1.0.0-rc5',
201 silly addNameRange '1.0.0',
201 silly addNameRange '1.0.1',
201 silly addNameRange '1.0.2',
201 silly addNameRange '1.0.3',
201 silly addNameRange '1.0.4',
201 silly addNameRange '1.0.5',
201 silly addNameRange '1.0.6',
201 silly addNameRange '1.1.0',
201 silly addNameRange '1.2.0',
201 silly addNameRange '1.3.0',
201 silly addNameRange '1.4.0',
201 silly addNameRange '1.4.1',
201 silly addNameRange '1.4.2',
201 silly addNameRange '1.4.3',
201 silly addNameRange '1.5.0',
201 silly addNameRange '1.5.1',
201 silly addNameRange '1.5.2',
201 silly addNameRange '1.6.0',
201 silly addNameRange '1.6.1',
201 silly addNameRange '1.7.0' ] ]
202 silly addNamed chokidar@1.7.0
203 verbose addNamed "1.7.0" is a plain semver version for chokidar
204 silly cache afterAdd chokidar@1.7.0
205 verbose afterAdd C:\Users\Althaf khan Pattan\AppData\Roaming\npm-cache\chokidar\1.7.0\package\package.json not in flight; writing
206 verbose correctMkdir C:\Users\Althaf khan Pattan\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
207 verbose afterAdd C:\Users\Althaf khan Pattan\AppData\Roaming\npm-cache\chokidar\1.7.0\package\package.json written
208 http 304 https://registry.npmjs.org/debug
209 verbose headers { date: 'Tue, 18 Jul 2017 18:33:00 GMT',
209 verbose headers via: '1.1 varnish',
209 verbose headers 'cache-control': 'max-age=300',
209 verbose headers etag: 'W/"596de99d-13226"',
209 verbose headers age: '256',
209 verbose headers connection: 'keep-alive',
209 verbose headers 'x-served-by': 'cache-jfk8126-JFK',
209 verbose headers 'x-cache': 'HIT',
209 verbose headers 'x-cache-hits': '2798',
209 verbose headers 'x-timer': 'S1500402781.736035,VS0,VE0',
209 verbose headers vary: 'Accept-Encoding, Accept' }
210 silly get cb [ 304,
210 silly get { date: 'Tue, 18 Jul 2017 18:33:00 GMT',
210 silly get via: '1.1 varnish',
210 silly get 'cache-control': 'max-age=300',
210 silly get etag: 'W/"596de99d-13226"',
210 silly get age: '256',
210 silly get connection: 'keep-alive',
210 silly get 'x-served-by': 'cache-jfk8126-JFK',
210 silly get 'x-cache': 'HIT',
210 silly get 'x-cache-hits': '2798',
210 silly get 'x-timer': 'S1500402781.736035,VS0,VE0',
210 silly get vary: 'Accept-Encoding, Accept' } ]
211 verbose etag https://registry.npmjs.org/debug from cache
212 verbose get saving debug to C:\Users\Althaf khan Pattan\AppData\Roaming\npm-cache\registry.npmjs.org\debug\.cache.json
213 verbose correctMkdir C:\Users\Althaf khan Pattan\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
214 silly resolveWithNewModule debug@2.6.8 checking installable status
215 silly cache add args [ 'debug@^2.2.0', null ]
216 verbose cache add spec debug@^2.2.0
217 silly cache add parsed spec Result {
217 silly cache add raw: 'debug@^2.2.0',
217 silly cache add scope: null,
217 silly cache add escapedName: 'debug',
217 silly cache add name: 'debug',
217 silly cache add rawSpec: '^2.2.0',
217 silly cache add spec: '>=2.2.0 <3.0.0',
217 silly cache add type: 'range' }
218 silly addNamed debug@>=2.2.0 <3.0.0
219 verbose addNamed ">=2.2.0 <3.0.0" is a valid semver range for debug
220 silly addNameRange { name: 'debug', range: '>=2.2.0 <3.0.0', hasData: false }
221 silly mapToRegistry name debug
222 silly mapToRegistry using default registry
223 silly mapToRegistry registry https://registry.npmjs.org/
224 silly mapToRegistry data Result {
224 silly mapToRegistry raw: 'debug',
224 silly mapToRegistry scope: null,
224 silly mapToRegistry escapedName: 'debug',
224 silly mapToRegistry name: 'debug',
224 silly mapToRegistry rawSpec: '',
224 silly mapToRegistry spec: 'latest',
224 silly mapToRegistry type: 'tag' }
225 silly mapToRegistry uri https://registry.npmjs.org/debug
226 verbose addNameRange registry:https://registry.npmjs.org/debug not in flight; fetching
227 verbose get https://registry.npmjs.org/debug not expired, no request
228 silly addNameRange number 2 { name: 'debug', range: '>=2.2.0 <3.0.0', hasData: true }
229 silly addNameRange versions [ 'debug',
229 silly addNameRange [ '0.0.1',
229 silly addNameRange '0.1.0',
229 silly addNameRange '0.2.0',
229 silly addNameRange '0.3.0',
229 silly addNameRange '0.4.0',
229 silly addNameRange '0.4.1',
229 silly addNameRange '0.5.0',
229 silly addNameRange '0.6.0',
229 silly addNameRange '0.7.0',
229 silly addNameRange '0.7.1',
229 silly addNameRange '0.7.2',
229 silly addNameRange '0.7.3',
229 silly addNameRange '0.7.4',
229 silly addNameRange '0.8.0',
229 silly addNameRange '0.8.1',
229 silly addNameRange '1.0.0',
229 silly addNameRange '1.0.1',
229 silly addNameRange '1.0.2',
229 silly addNameRange '1.0.3',
229 silly addNameRange '1.0.4',
229 silly addNameRange '2.0.0',
229 silly addNameRange '2.1.0',
229 silly addNameRange '2.1.1',
229 silly addNameRange '2.1.2',
229 silly addNameRange '2.1.3',
229 silly addNameRange '2.2.0',
229 silly addNameRange '2.3.0',
229 silly addNameRange '2.3.1',
229 silly addNameRange '2.3.2',
229 silly addNameRange '2.3.3',
229 silly addNameRange '2.4.0',
229 silly addNameRange '2.4.1',
229 silly addNameRange '2.4.2',
229 silly addNameRange '2.4.3',
229 silly addNameRange '2.4.4',
229 silly addNameRange '2.4.5',
229 silly addNameRange '2.5.0',
229 silly addNameRange '2.5.1',
229 silly addNameRange '2.5.2',
229 silly addNameRange '2.6.0',
229 silly addNameRange '2.6.1',
229 silly addNameRange '2.6.2',
229 silly addNameRange '2.6.3',
229 silly addNameRange '2.6.4',
229 silly addNameRange '2.6.5',
229 silly addNameRange '2.6.6',
229 silly addNameRange '2.6.7',
229 silly addNameRange '2.6.8',
229 silly addNameRange '1.0.5' ] ]
230 silly addNamed debug@2.6.8
231 verbose addNamed "2.6.8" is a plain semver version for debug
232 silly cache afterAdd debug@2.6.8
233 verbose afterAdd C:\Users\Althaf khan Pattan\AppData\Roaming\npm-cache\debug\2.6.8\package\package.json not in flight; writing
234 verbose correctMkdir C:\Users\Althaf khan Pattan\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
235 verbose afterAdd C:\Users\Althaf khan Pattan\AppData\Roaming\npm-cache\debug\2.6.8\package\package.json written
236 http 304 https://registry.npmjs.org/ignore-by-default
237 verbose headers { date: 'Tue, 18 Jul 2017 18:33:00 GMT',
237 verbose headers via: '1.1 varnish',
237 verbose headers 'cache-control': 'max-age=300',
237 verbose headers etag: 'W/"56d065cf-107d"',
237 verbose headers age: '215',
237 verbose headers connection: 'keep-alive',
237 verbose headers 'x-served-by': 'cache-jfk8146-JFK',
237 verbose headers 'x-cache': 'HIT',
237 verbose headers 'x-cache-hits': '2',
237 verbose headers 'x-timer': 'S1500402781.760796,VS0,VE0',
237 verbose headers vary: 'Accept-Encoding, Accept' }
238 silly get cb [ 304,
238 silly get { date: 'Tue, 18 Jul 2017 18:33:00 GMT',
238 silly get via: '1.1 varnish',
238 silly get 'cache-control': 'max-age=300',
238 silly get etag: 'W/"56d065cf-107d"',
238 silly get age: '215',
238 silly get connection: 'keep-alive',
238 silly get 'x-served-by': 'cache-jfk8146-JFK',
238 silly get 'x-cache': 'HIT',
238 silly get 'x-cache-hits': '2',
238 silly get 'x-timer': 'S1500402781.760796,VS0,VE0',
238 silly get vary: 'Accept-Encoding, Accept' } ]
239 verbose etag https://registry.npmjs.org/ignore-by-default from cache
240 verbose get saving ignore-by-default to C:\Users\Althaf khan Pattan\AppData\Roaming\npm-cache\registry.npmjs.org\ignore-by-default\.cache.json
241 verbose correctMkdir C:\Users\Althaf khan Pattan\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
242 http 304 https://registry.npmjs.org/es6-promise
243 verbose headers { date: 'Tue, 18 Jul 2017 18:33:00 GMT',
243 verbose headers via: '1.1 varnish',
243 verbose headers 'cache-control': 'max-age=300',
243 verbose headers etag: 'W/"5953da0e-e268"',
243 verbose headers age: '246',
243 verbose headers connection: 'keep-alive',
243 verbose headers 'x-served-by': 'cache-jfk8150-JFK',
243 verbose headers 'x-cache': 'HIT',
243 verbose headers 'x-cache-hits': '3',
243 verbose headers 'x-timer': 'S1500402781.760904,VS0,VE0',
243 verbose headers vary: 'Accept-Encoding' }
244 silly get cb [ 304,
244 silly get { date: 'Tue, 18 Jul 2017 18:33:00 GMT',
244 silly get via: '1.1 varnish',
244 silly get 'cache-control': 'max-age=300',
244 silly get etag: 'W/"5953da0e-e268"',
244 silly get age: '246',
244 silly get connection: 'keep-alive',
244 silly get 'x-served-by': 'cache-jfk8150-JFK',
244 silly get 'x-cache': 'HIT',
244 silly get 'x-cache-hits': '3',
244 silly get 'x-timer': 'S1500402781.760904,VS0,VE0',
244 silly get vary: 'Accept-Encoding' } ]
245 verbose etag https://registry.npmjs.org/es6-promise from cache
246 verbose get saving es6-promise to C:\Users\Althaf khan Pattan\AppData\Roaming\npm-cache\registry.npmjs.org\es6-promise\.cache.json
247 verbose correctMkdir C:\Users\Althaf khan Pattan\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
248 silly resolveWithNewModule es6-promise@3.3.1 checking installable status
249 silly cache add args [ 'es6-promise@^3.0.2', null ]
250 verbose cache add spec es6-promise@^3.0.2
251 silly cache add parsed spec Result {
251 silly cache add raw: 'es6-promise@^3.0.2',
251 silly cache add scope: null,
251 silly cache add escapedName: 'es6-promise',
251 silly cache add name: 'es6-promise',
251 silly cache add rawSpec: '^3.0.2',
251 silly cache add spec: '>=3.0.2 <4.0.0',
251 silly cache add type: 'range' }
252 silly addNamed es6-promise@>=3.0.2 <4.0.0
253 verbose addNamed ">=3.0.2 <4.0.0" is a valid semver range for es6-promise
254 silly addNameRange { name: 'es6-promise', range: '>=3.0.2 <4.0.0', hasData: false }
255 silly mapToRegistry name es6-promise
256 silly mapToRegistry using default registry
257 silly mapToRegistry registry https://registry.npmjs.org/
258 silly mapToRegistry data Result {
258 silly mapToRegistry raw: 'es6-promise',
258 silly mapToRegistry scope: null,
258 silly mapToRegistry escapedName: 'es6-promise',
258 silly mapToRegistry name: 'es6-promise',
258 silly mapToRegistry rawSpec: '',
258 silly mapToRegistry spec: 'latest',
258 silly mapToRegistry type: 'tag' }
259 silly mapToRegistry uri https://registry.npmjs.org/es6-promise
260 verbose addNameRange registry:https://registry.npmjs.org/es6-promise not in flight; fetching
261 http 304 https://registry.npmjs.org/lodash.defaults
262 verbose headers { date: 'Tue, 18 Jul 2017 18:33:00 GMT',
262 verbose headers via: '1.1 varnish',
262 verbose headers 'cache-control': 'max-age=300',
262 verbose headers etag: 'W/"58b06465-65a7"',
262 verbose headers age: '195',
262 verbose headers connection: 'keep-alive',
262 verbose headers 'x-served-by': 'cache-jfk8137-JFK',
262 verbose headers 'x-cache': 'HIT',
262 verbose headers 'x-cache-hits': '1',
262 verbose headers 'x-timer': 'S1500402781.765811,VS0,VE0',
262 verbose headers vary: 'Accept-Encoding, Accept' }
263 silly get cb [ 304,
263 silly get { date: 'Tue, 18 Jul 2017 18:33:00 GMT',
263 silly get via: '1.1 varnish',
263 silly get 'cache-control': 'max-age=300',
263 silly get etag: 'W/"58b06465-65a7"',
263 silly get age: '195',
263 silly get connection: 'keep-alive',
263 silly get 'x-served-by': 'cache-jfk8137-JFK',
263 silly get 'x-cache': 'HIT',
263 silly get 'x-cache-hits': '1',
263 silly get 'x-timer': 'S1500402781.765811,VS0,VE0',
263 silly get vary: 'Accept-Encoding, Accept' } ]
264 verbose etag https://registry.npmjs.org/lodash.defaults from cache
265 verbose get saving lodash.defaults to C:\Users\Althaf khan Pattan\AppData\Roaming\npm-cache\registry.npmjs.org\lodash.defaults\.cache.json
266 verbose correctMkdir C:\Users\Althaf khan Pattan\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
267 http 304 https://registry.npmjs.org/update-notifier
268 verbose headers { date: 'Tue, 18 Jul 2017 18:33:00 GMT',
268 verbose headers via: '1.1 varnish',
268 verbose headers 'cache-control': 'max-age=300',
268 verbose headers etag: 'W/"59647c96-e01f"',
268 verbose headers age: '190',
268 verbose headers connection: 'keep-alive',
268 verbose headers 'x-served-by': 'cache-jfk8142-JFK',
268 verbose headers 'x-cache': 'HIT',
268 verbose headers 'x-cache-hits': '2',
268 verbose headers 'x-timer': 'S1500402781.794027,VS0,VE0',
268 verbose headers vary: 'Accept-Encoding, Accept' }
269 silly get cb [ 304,
269 silly get { date: 'Tue, 18 Jul 2017 18:33:00 GMT',
269 silly get via: '1.1 varnish',
269 silly get 'cache-control': 'max-age=300',
269 silly get etag: 'W/"59647c96-e01f"',
269 silly get age: '190',
269 silly get connection: 'keep-alive',
269 silly get 'x-served-by': 'cache-jfk8142-JFK',
269 silly get 'x-cache': 'HIT',
269 silly get 'x-cache-hits': '2',
269 silly get 'x-timer': 'S1500402781.794027,VS0,VE0',
269 silly get vary: 'Accept-Encoding, Accept' } ]
270 verbose etag https://registry.npmjs.org/update-notifier from cache
271 verbose get saving update-notifier to C:\Users\Althaf khan Pattan\AppData\Roaming\npm-cache\registry.npmjs.org\update-notifier\.cache.json
272 verbose correctMkdir C:\Users\Althaf khan Pattan\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
273 http 304 https://registry.npmjs.org/undefsafe
274 verbose headers { date: 'Tue, 18 Jul 2017 18:33:00 GMT',
274 verbose headers via: '1.1 varnish',
274 verbose headers 'cache-control': 'max-age=300',
274 verbose headers etag: 'W/"58ec5e4e-3756"',
274 verbose headers age: '187',
274 verbose headers connection: 'keep-alive',
274 verbose headers 'x-served-by': 'cache-jfk8129-JFK',
274 verbose headers 'x-cache': 'HIT',
274 verbose headers 'x-cache-hits': '4',
274 verbose headers 'x-timer': 'S1500402781.794652,VS0,VE0',
274 verbose headers vary: 'Accept-Encoding, Accept' }
275 silly get cb [ 304,
275 silly get { date: 'Tue, 18 Jul 2017 18:33:00 GMT',
275 silly get via: '1.1 varnish',
275 silly get 'cache-control': 'max-age=300',
275 silly get etag: 'W/"58ec5e4e-3756"',
275 silly get age: '187',
275 silly get connection: 'keep-alive',
275 silly get 'x-served-by': 'cache-jfk8129-JFK',
275 silly get 'x-cache': 'HIT',
275 silly get 'x-cache-hits': '4',
275 silly get 'x-timer': 'S1500402781.794652,VS0,VE0',
275 silly get vary: 'Accept-Encoding, Accept' } ]
276 verbose etag https://registry.npmjs.org/undefsafe from cache
277 verbose get saving undefsafe to C:\Users\Althaf khan Pattan\AppData\Roaming\npm-cache\registry.npmjs.org\undefsafe\.cache.json
278 verbose correctMkdir C:\Users\Althaf khan Pattan\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
279 http 304 https://registry.npmjs.org/minimatch
280 verbose headers { date: 'Tue, 18 Jul 2017 18:33:00 GMT',
280 verbose headers via: '1.1 varnish',
280 verbose headers 'cache-control': 'max-age=300',
280 verbose headers etag: 'W/"595bab76-d1d3"',
280 verbose headers age: '149',
280 verbose headers connection: 'keep-alive',
280 verbose headers 'x-served-by': 'cache-jfk8137-JFK',
280 verbose headers 'x-cache': 'HIT',
280 verbose headers 'x-cache-hits': '15',
280 verbose headers 'x-timer': 'S1500402781.798140,VS0,VE0',
280 verbose headers vary: 'Accept-Encoding, Accept' }
281 silly get cb [ 304,
281 silly get { date: 'Tue, 18 Jul 2017 18:33:00 GMT',
281 silly get via: '1.1 varnish',
281 silly get 'cache-control': 'max-age=300',
281 silly get etag: 'W/"595bab76-d1d3"',
281 silly get age: '149',
281 silly get connection: 'keep-alive',
281 silly get 'x-served-by': 'cache-jfk8137-JFK',
281 silly get 'x-cache': 'HIT',
281 silly get 'x-cache-hits': '15',
281 silly get 'x-timer': 'S1500402781.798140,VS0,VE0',
281 silly get vary: 'Accept-Encoding, Accept' } ]
282 verbose etag https://registry.npmjs.org/minimatch from cache
283 verbose get saving minimatch to C:\Users\Althaf khan Pattan\AppData\Roaming\npm-cache\registry.npmjs.org\minimatch\.cache.json
284 verbose correctMkdir C:\Users\Althaf khan Pattan\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
285 http 304 https://registry.npmjs.org/ps-tree
286 verbose headers { date: 'Tue, 18 Jul 2017 18:33:00 GMT',
286 verbose headers via: '1.1 varnish',
286 verbose headers 'cache-control': 'max-age=300',
286 verbose headers etag: 'W/"58ee9c6c-316d"',
286 verbose headers age: '3',
286 verbose headers connection: 'keep-alive',
286 verbose headers 'x-served-by': 'cache-jfk8128-JFK',
286 verbose headers 'x-cache': 'HIT',
286 verbose headers 'x-cache-hits': '1',
286 verbose headers 'x-timer': 'S1500402781.798036,VS0,VE1',
286 verbose headers vary: 'Accept-Encoding, Accept' }
287 silly get cb [ 304,
287 silly get { date: 'Tue, 18 Jul 2017 18:33:00 GMT',
287 silly get via: '1.1 varnish',
287 silly get 'cache-control': 'max-age=300',
287 silly get etag: 'W/"58ee9c6c-316d"',
287 silly get age: '3',
287 silly get connection: 'keep-alive',
287 silly get 'x-served-by': 'cache-jfk8128-JFK',
287 silly get 'x-cache': 'HIT',
287 silly get 'x-cache-hits': '1',
287 silly get 'x-timer': 'S1500402781.798036,VS0,VE1',
287 silly get vary: 'Accept-Encoding, Accept' } ]
288 verbose etag https://registry.npmjs.org/ps-tree from cache
289 verbose get saving ps-tree to C:\Users\Althaf khan Pattan\AppData\Roaming\npm-cache\registry.npmjs.org\ps-tree\.cache.json
290 verbose correctMkdir C:\Users\Althaf khan Pattan\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
291 http 304 https://registry.npmjs.org/touch
292 verbose headers { date: 'Tue, 18 Jul 2017 18:33:00 GMT',
292 verbose headers via: '1.1 varnish',
292 verbose headers 'cache-control': 'max-age=300',
292 verbose headers etag: 'W/"5956e177-32ac"',
292 verbose headers age: '0',
292 verbose headers connection: 'keep-alive',
292 verbose headers 'x-served-by': 'cache-jfk8148-JFK',
292 verbose headers 'x-cache': 'HIT',
292 verbose headers 'x-cache-hits': '1',
292 verbose headers 'x-timer': 'S1500402781.793302,VS0,VE7',
292 verbose headers vary: 'Accept-Encoding, Accept' }
293 silly get cb [ 304,
293 silly get { date: 'Tue, 18 Jul 2017 18:33:00 GMT',
293 silly get via: '1.1 varnish',
293 silly get 'cache-control': 'max-age=300',
293 silly get etag: 'W/"5956e177-32ac"',
293 silly get age: '0',
293 silly get connection: 'keep-alive',
293 silly get 'x-served-by': 'cache-jfk8148-JFK',
293 silly get 'x-cache': 'HIT',
293 silly get 'x-cache-hits': '1',
293 silly get 'x-timer': 'S1500402781.793302,VS0,VE7',
293 silly get vary: 'Accept-Encoding, Accept' } ]
294 verbose etag https://registry.npmjs.org/touch from cache
295 verbose get saving touch to C:\Users\Althaf khan Pattan\AppData\Roaming\npm-cache\registry.npmjs.org\touch\.cache.json
296 verbose correctMkdir C:\Users\Althaf khan Pattan\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
297 silly resolveWithNewModule ignore-by-default@1.0.1 checking installable status
298 silly cache add args [ 'ignore-by-default@^1.0.0', null ]
299 verbose cache add spec ignore-by-default@^1.0.0
300 silly cache add parsed spec Result {
300 silly cache add raw: 'ignore-by-default@^1.0.0',
300 silly cache add scope: null,
300 silly cache add escapedName: 'ignore-by-default',
300 silly cache add name: 'ignore-by-default',
300 silly cache add rawSpec: '^1.0.0',
300 silly cache add spec: '>=1.0.0 <2.0.0',
300 silly cache add type: 'range' }
301 silly addNamed ignore-by-default@>=1.0.0 <2.0.0
302 verbose addNamed ">=1.0.0 <2.0.0" is a valid semver range for ignore-by-default
303 silly addNameRange { name: 'ignore-by-default',
303 silly addNameRange range: '>=1.0.0 <2.0.0',
303 silly addNameRange hasData: false }
304 silly mapToRegistry name ignore-by-default
305 silly mapToRegistry using default registry
306 silly mapToRegistry registry https://registry.npmjs.org/
307 silly mapToRegistry data Result {
307 silly mapToRegistry raw: 'ignore-by-default',
307 silly mapToRegistry scope: null,
307 silly mapToRegistry escapedName: 'ignore-by-default',
307 silly mapToRegistry name: 'ignore-by-default',
307 silly mapToRegistry rawSpec: '',
307 silly mapToRegistry spec: 'latest',
307 silly mapToRegistry type: 'tag' }
308 silly mapToRegistry uri https://registry.npmjs.org/ignore-by-default
309 verbose addNameRange registry:https://registry.npmjs.org/ignore-by-default not in flight; fetching
310 verbose get https://registry.npmjs.org/es6-promise not expired, no request
311 silly addNameRange number 2 { name: 'es6-promise', range: '>=3.0.2 <4.0.0', hasData: true }
312 silly addNameRange versions [ 'es6-promise',
312 silly addNameRange [ '0.1.0',
312 silly addNameRange '0.1.1',
312 silly addNameRange '0.1.2',
312 silly addNameRange '1.0.0',
312 silly addNameRange '2.0.0',
312 silly addNameRange '2.0.1',
312 silly addNameRange '2.1.0',
312 silly addNameRange '2.1.1',
312 silly addNameRange '2.2.0',
312 silly addNameRange '2.3.0',
312 silly addNameRange '3.0.0',
312 silly addNameRange '3.0.1',
312 silly addNameRange '3.0.2',
312 silly addNameRange '3.1.2',
312 silly addNameRange '3.2.1',
312 silly addNameRange '3.3.0',
312 silly addNameRange '3.3.1',
312 silly addNameRange '4.0.0',
312 silly addNameRange '4.0.1',
312 silly addNameRange '4.0.2',
312 silly addNameRange '4.0.3',
312 silly addNameRange '4.0.4',
312 silly addNameRange '4.0.5',
312 silly addNameRange '4.1.0',
312 silly addNameRange '4.1.1' ] ]
313 silly addNamed es6-promise@3.3.1
314 verbose addNamed "3.3.1" is a plain semver version for es6-promise
315 verbose get https://registry.npmjs.org/ignore-by-default not expired, no request
316 silly addNameRange number 2 { name: 'ignore-by-default',
316 silly addNameRange range: '>=1.0.0 <2.0.0',
316 silly addNameRange hasData: true }
317 silly addNameRange versions [ 'ignore-by-default', [ '1.0.0', '1.0.1' ] ]
318 silly addNamed ignore-by-default@1.0.1
319 verbose addNamed "1.0.1" is a plain semver version for ignore-by-default
320 silly cache afterAdd es6-promise@3.3.1
321 verbose afterAdd C:\Users\Althaf khan Pattan\AppData\Roaming\npm-cache\es6-promise\3.3.1\package\package.json not in flight; writing
322 verbose correctMkdir C:\Users\Althaf khan Pattan\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
323 silly resolveWithNewModule undefsafe@0.0.3 checking installable status
324 silly cache add args [ 'undefsafe@0.0.3', null ]
325 verbose cache add spec undefsafe@0.0.3
326 silly cache add parsed spec Result {
326 silly cache add raw: 'undefsafe@0.0.3',
326 silly cache add scope: null,
326 silly cache add escapedName: 'undefsafe',
326 silly cache add name: 'undefsafe',
326 silly cache add rawSpec: '0.0.3',
326 silly cache add spec: '0.0.3',
326 silly cache add type: 'version' }
327 silly addNamed undefsafe@0.0.3
328 verbose addNamed "0.0.3" is a plain semver version for undefsafe
329 silly mapToRegistry name undefsafe
330 silly mapToRegistry using default registry
331 silly mapToRegistry registry https://registry.npmjs.org/
332 silly mapToRegistry data Result {
332 silly mapToRegistry raw: 'undefsafe',
332 silly mapToRegistry scope: null,
332 silly mapToRegistry escapedName: 'undefsafe',
332 silly mapToRegistry name: 'undefsafe',
332 silly mapToRegistry rawSpec: '',
332 silly mapToRegistry spec: 'latest',
332 silly mapToRegistry type: 'tag' }
333 silly mapToRegistry uri https://registry.npmjs.org/undefsafe
334 verbose addNameVersion registry:https://registry.npmjs.org/undefsafe not in flight; fetching
335 silly resolveWithNewModule ps-tree@1.1.0 checking installable status
336 silly cache add args [ 'ps-tree@^1.0.1', null ]
337 verbose cache add spec ps-tree@^1.0.1
338 silly cache add parsed spec Result {
338 silly cache add raw: 'ps-tree@^1.0.1',
338 silly cache add scope: null,
338 silly cache add escapedName: 'ps-tree',
338 silly cache add name: 'ps-tree',
338 silly cache add rawSpec: '^1.0.1',
338 silly cache add spec: '>=1.0.1 <2.0.0',
338 silly cache add type: 'range' }
339 silly addNamed ps-tree@>=1.0.1 <2.0.0
340 verbose addNamed ">=1.0.1 <2.0.0" is a valid semver range for ps-tree
341 silly addNameRange { name: 'ps-tree', range: '>=1.0.1 <2.0.0', hasData: false }
342 silly mapToRegistry name ps-tree
343 silly mapToRegistry using default registry
344 silly mapToRegistry registry https://registry.npmjs.org/
345 silly mapToRegistry data Result {
345 silly mapToRegistry raw: 'ps-tree',
345 silly mapToRegistry scope: null,
345 silly mapToRegistry escapedName: 'ps-tree',
345 silly mapToRegistry name: 'ps-tree',
345 silly mapToRegistry rawSpec: '',
345 silly mapToRegistry spec: 'latest',
345 silly mapToRegistry type: 'tag' }
346 silly mapToRegistry uri https://registry.npmjs.org/ps-tree
347 verbose addNameRange registry:https://registry.npmjs.org/ps-tree not in flight; fetching
348 silly resolveWithNewModule lodash.defaults@3.1.2 checking installable status
349 silly cache add args [ 'lodash.defaults@^3.1.2', null ]
350 verbose cache add spec lodash.defaults@^3.1.2
351 silly cache add parsed spec Result {
351 silly cache add raw: 'lodash.defaults@^3.1.2',
351 silly cache add scope: null,
351 silly cache add escapedName: 'lodash.defaults',
351 silly cache add name: 'lodash.defaults',
351 silly cache add rawSpec: '^3.1.2',
351 silly cache add spec: '>=3.1.2 <4.0.0',
351 silly cache add type: 'range' }
352 silly addNamed lodash.defaults@>=3.1.2 <4.0.0
353 verbose addNamed ">=3.1.2 <4.0.0" is a valid semver range for lodash.defaults
354 silly addNameRange { name: 'lodash.defaults',
354 silly addNameRange range: '>=3.1.2 <4.0.0',
354 silly addNameRange hasData: false }
355 silly mapToRegistry name lodash.defaults
356 silly mapToRegistry using default registry
357 silly mapToRegistry registry https://registry.npmjs.org/
358 silly mapToRegistry data Result {
358 silly mapToRegistry raw: 'lodash.defaults',
358 silly mapToRegistry scope: null,
358 silly mapToRegistry escapedName: 'lodash.defaults',
358 silly mapToRegistry name: 'lodash.defaults',
358 silly mapToRegistry rawSpec: '',
358 silly mapToRegistry spec: 'latest',
358 silly mapToRegistry type: 'tag' }
359 silly mapToRegistry uri https://registry.npmjs.org/lodash.defaults
360 verbose addNameRange registry:https://registry.npmjs.org/lodash.defaults not in flight; fetching
361 silly resolveWithNewModule minimatch@3.0.4 checking installable status
362 silly cache add args [ 'minimatch@^3.0.0', null ]
363 verbose cache add spec minimatch@^3.0.0
364 silly cache add parsed spec Result {
364 silly cache add raw: 'minimatch@^3.0.0',
364 silly cache add scope: null,
364 silly cache add escapedName: 'minimatch',
364 silly cache add name: 'minimatch',
364 silly cache add rawSpec: '^3.0.0',
364 silly cache add spec: '>=3.0.0 <4.0.0',
364 silly cache add type: 'range' }
365 silly addNamed minimatch@>=3.0.0 <4.0.0
366 verbose addNamed ">=3.0.0 <4.0.0" is a valid semver range for minimatch
367 silly addNameRange { name: 'minimatch', range: '>=3.0.0 <4.0.0', hasData: false }
368 silly mapToRegistry name minimatch
369 silly mapToRegistry using default registry
370 silly mapToRegistry registry https://registry.npmjs.org/
371 silly mapToRegistry data Result {
371 silly mapToRegistry raw: 'minimatch',
371 silly mapToRegistry scope: null,
371 silly mapToRegistry escapedName: 'minimatch',
371 silly mapToRegistry name: 'minimatch',
371 silly mapToRegistry rawSpec: '',
371 silly mapToRegistry spec: 'latest',
371 silly mapToRegistry type: 'tag' }
372 silly mapToRegistry uri https://registry.npmjs.org/minimatch
373 verbose addNameRange registry:https://registry.npmjs.org/minimatch not in flight; fetching
374 silly cache afterAdd ignore-by-default@1.0.1
375 verbose afterAdd C:\Users\Althaf khan Pattan\AppData\Roaming\npm-cache\ignore-by-default\1.0.1\package\package.json not in flight; writing
376 verbose correctMkdir C:\Users\Althaf khan Pattan\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
377 silly resolveWithNewModule touch@1.0.0 checking installable status
378 silly cache add args [ 'touch@1.0.0', null ]
379 verbose cache add spec touch@1.0.0
380 silly cache add parsed spec Result {
380 silly cache add raw: 'touch@1.0.0',
380 silly cache add scope: null,
380 silly cache add escapedName: 'touch',
380 silly cache add name: 'touch',
380 silly cache add rawSpec: '1.0.0',
380 silly cache add spec: '1.0.0',
380 silly cache add type: 'version' }
381 silly addNamed touch@1.0.0
382 verbose addNamed "1.0.0" is a plain semver version for touch
383 silly mapToRegistry name touch
384 silly mapToRegistry using default registry
385 silly mapToRegistry registry https://registry.npmjs.org/
386 silly mapToRegistry data Result {
386 silly mapToRegistry raw: 'touch',
386 silly mapToRegistry scope: null,
386 silly mapToRegistry escapedName: 'touch',
386 silly mapToRegistry name: 'touch',
386 silly mapToRegistry rawSpec: '',
386 silly mapToRegistry spec: 'latest',
386 silly mapToRegistry type: 'tag' }
387 silly mapToRegistry uri https://registry.npmjs.org/touch
388 verbose addNameVersion registry:https://registry.npmjs.org/touch not in flight; fetching
389 silly resolveWithNewModule update-notifier@0.5.0 checking installable status
390 silly cache add args [ 'update-notifier@0.5.0', null ]
391 verbose cache add spec update-notifier@0.5.0
392 silly cache add parsed spec Result {
392 silly cache add raw: 'update-notifier@0.5.0',
392 silly cache add scope: null,
392 silly cache add escapedName: 'update-notifier',
392 silly cache add name: 'update-notifier',