-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnpm-debug.log
More file actions
4991 lines (4991 loc) · 272 KB
/
npm-debug.log
File metadata and controls
4991 lines (4991 loc) · 272 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 'monkeylearn' ]
2 info using npm@3.9.5
3 info using node@v6.2.2
4 silly loadCurrentTree Starting
5 silly install loadCurrentTree
6 silly install readLocalPackageData
7 silly fetchPackageMetaData monkeylearn
8 silly fetchNamedPackageData monkeylearn
9 silly mapToRegistry name monkeylearn
10 silly mapToRegistry using default registry
11 silly mapToRegistry registry https://registry.npmjs.org/
12 silly mapToRegistry data Result {
12 silly mapToRegistry raw: 'monkeylearn',
12 silly mapToRegistry scope: null,
12 silly mapToRegistry name: 'monkeylearn',
12 silly mapToRegistry rawSpec: '',
12 silly mapToRegistry spec: 'latest',
12 silly mapToRegistry type: 'tag' }
13 silly mapToRegistry uri https://registry.npmjs.org/monkeylearn
14 verbose request uri https://registry.npmjs.org/monkeylearn
15 verbose request no auth needed
16 info attempt registry request try #1 at 21:30:00
17 verbose request id 00c9582555b5b128
18 verbose etag W/"57f7a16a-397d"
19 verbose lastModified Fri, 07 Oct 2016 13:21:46 GMT
20 http request GET https://registry.npmjs.org/monkeylearn
21 http 304 https://registry.npmjs.org/monkeylearn
22 verbose headers { date: 'Sat, 24 Dec 2016 19:30:02 GMT',
22 verbose headers via: '1.1 varnish',
22 verbose headers 'cache-control': 'max-age=300',
22 verbose headers etag: 'W/"57f7a16a-397d"',
22 verbose headers age: '110',
22 verbose headers connection: 'keep-alive',
22 verbose headers 'x-served-by': 'cache-hhn1531-HHN',
22 verbose headers 'x-cache': 'HIT',
22 verbose headers 'x-cache-hits': '1',
22 verbose headers 'x-timer': 'S1482607802.209110,VS0,VE0',
22 verbose headers vary: 'Accept-Encoding' }
23 silly get cb [ 304,
23 silly get { date: 'Sat, 24 Dec 2016 19:30:02 GMT',
23 silly get via: '1.1 varnish',
23 silly get 'cache-control': 'max-age=300',
23 silly get etag: 'W/"57f7a16a-397d"',
23 silly get age: '110',
23 silly get connection: 'keep-alive',
23 silly get 'x-served-by': 'cache-hhn1531-HHN',
23 silly get 'x-cache': 'HIT',
23 silly get 'x-cache-hits': '1',
23 silly get 'x-timer': 'S1482607802.209110,VS0,VE0',
23 silly get vary: 'Accept-Encoding' } ]
24 verbose etag https://registry.npmjs.org/monkeylearn from cache
25 verbose get saving monkeylearn to C:\Users\anil_\AppData\Roaming\npm-cache\registry.npmjs.org\monkeylearn\.cache.json
26 verbose correctMkdir C:\Users\anil_\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 monkeylearn@0.1.10 checking installable status
40 silly cache add args [ 'monkeylearn', null ]
41 verbose cache add spec monkeylearn
42 silly cache add parsed spec Result {
42 silly cache add raw: 'monkeylearn',
42 silly cache add scope: null,
42 silly cache add name: 'monkeylearn',
42 silly cache add rawSpec: '',
42 silly cache add spec: 'latest',
42 silly cache add type: 'tag' }
43 silly addNamed monkeylearn@latest
44 verbose addNamed "latest" is being treated as a dist-tag for monkeylearn
45 info addNameTag [ 'monkeylearn', 'latest' ]
46 silly mapToRegistry name monkeylearn
47 silly mapToRegistry using default registry
48 silly mapToRegistry registry https://registry.npmjs.org/
49 silly mapToRegistry data Result {
49 silly mapToRegistry raw: 'monkeylearn',
49 silly mapToRegistry scope: null,
49 silly mapToRegistry name: 'monkeylearn',
49 silly mapToRegistry rawSpec: '',
49 silly mapToRegistry spec: 'latest',
49 silly mapToRegistry type: 'tag' }
50 silly mapToRegistry uri https://registry.npmjs.org/monkeylearn
51 verbose addNameTag registry:https://registry.npmjs.org/monkeylearn not in flight; fetching
52 verbose get https://registry.npmjs.org/monkeylearn not expired, no request
53 silly addNameTag next cb for monkeylearn with tag latest
54 silly addNamed monkeylearn@0.1.10
55 verbose addNamed "0.1.10" is a plain semver version for monkeylearn
56 silly cache afterAdd monkeylearn@0.1.10
57 verbose afterAdd C:\Users\anil_\AppData\Roaming\npm-cache\monkeylearn\0.1.10\package\package.json not in flight; writing
58 verbose correctMkdir C:\Users\anil_\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
59 verbose afterAdd C:\Users\anil_\AppData\Roaming\npm-cache\monkeylearn\0.1.10\package\package.json written
60 silly fetchNamedPackageData request
61 silly mapToRegistry name request
62 silly mapToRegistry using default registry
63 silly mapToRegistry registry https://registry.npmjs.org/
64 silly mapToRegistry data Result {
64 silly mapToRegistry raw: 'request',
64 silly mapToRegistry scope: null,
64 silly mapToRegistry name: 'request',
64 silly mapToRegistry rawSpec: '',
64 silly mapToRegistry spec: 'latest',
64 silly mapToRegistry type: 'tag' }
65 silly mapToRegistry uri https://registry.npmjs.org/request
66 silly fetchNamedPackageData sleep
67 silly mapToRegistry name sleep
68 silly mapToRegistry using default registry
69 silly mapToRegistry registry https://registry.npmjs.org/
70 silly mapToRegistry data Result {
70 silly mapToRegistry raw: 'sleep',
70 silly mapToRegistry scope: null,
70 silly mapToRegistry name: 'sleep',
70 silly mapToRegistry rawSpec: '',
70 silly mapToRegistry spec: 'latest',
70 silly mapToRegistry type: 'tag' }
71 silly mapToRegistry uri https://registry.npmjs.org/sleep
72 verbose request uri https://registry.npmjs.org/sleep
73 verbose request no auth needed
74 info attempt registry request try #1 at 21:30:01
75 verbose etag W/"5826f3f8-4cf6"
76 verbose lastModified Sat, 12 Nov 2016 10:50:32 GMT
77 http request GET https://registry.npmjs.org/sleep
78 verbose request uri https://registry.npmjs.org/request
79 verbose request no auth needed
80 info attempt registry request try #1 at 21:30:01
81 verbose etag W/"585eacd4-34ff9"
82 verbose lastModified Sat, 24 Dec 2016 17:13:56 GMT
83 http request GET https://registry.npmjs.org/request
84 http 304 https://registry.npmjs.org/sleep
85 verbose headers { date: 'Sat, 24 Dec 2016 19:30:02 GMT',
85 verbose headers via: '1.1 varnish',
85 verbose headers 'cache-control': 'max-age=300',
85 verbose headers etag: 'W/"5826f3f8-4cf6"',
85 verbose headers age: '110',
85 verbose headers connection: 'keep-alive',
85 verbose headers 'x-served-by': 'cache-hhn1531-HHN',
85 verbose headers 'x-cache': 'HIT',
85 verbose headers 'x-cache-hits': '1',
85 verbose headers 'x-timer': 'S1482607802.638306,VS0,VE0',
85 verbose headers vary: 'Accept-Encoding' }
86 silly get cb [ 304,
86 silly get { date: 'Sat, 24 Dec 2016 19:30:02 GMT',
86 silly get via: '1.1 varnish',
86 silly get 'cache-control': 'max-age=300',
86 silly get etag: 'W/"5826f3f8-4cf6"',
86 silly get age: '110',
86 silly get connection: 'keep-alive',
86 silly get 'x-served-by': 'cache-hhn1531-HHN',
86 silly get 'x-cache': 'HIT',
86 silly get 'x-cache-hits': '1',
86 silly get 'x-timer': 'S1482607802.638306,VS0,VE0',
86 silly get vary: 'Accept-Encoding' } ]
87 verbose etag https://registry.npmjs.org/sleep from cache
88 verbose get saving sleep to C:\Users\anil_\AppData\Roaming\npm-cache\registry.npmjs.org\sleep\.cache.json
89 verbose correctMkdir C:\Users\anil_\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
90 silly resolveWithNewModule sleep@3.0.0 checking installable status
91 silly cache add args [ 'sleep@3.0.0', null ]
92 verbose cache add spec sleep@3.0.0
93 silly cache add parsed spec Result {
93 silly cache add raw: 'sleep@3.0.0',
93 silly cache add scope: null,
93 silly cache add name: 'sleep',
93 silly cache add rawSpec: '3.0.0',
93 silly cache add spec: '3.0.0',
93 silly cache add type: 'version' }
94 silly addNamed sleep@3.0.0
95 verbose addNamed "3.0.0" is a plain semver version for sleep
96 silly mapToRegistry name sleep
97 silly mapToRegistry using default registry
98 silly mapToRegistry registry https://registry.npmjs.org/
99 silly mapToRegistry data Result {
99 silly mapToRegistry raw: 'sleep',
99 silly mapToRegistry scope: null,
99 silly mapToRegistry name: 'sleep',
99 silly mapToRegistry rawSpec: '',
99 silly mapToRegistry spec: 'latest',
99 silly mapToRegistry type: 'tag' }
100 silly mapToRegistry uri https://registry.npmjs.org/sleep
101 verbose addNameVersion registry:https://registry.npmjs.org/sleep not in flight; fetching
102 verbose get https://registry.npmjs.org/sleep not expired, no request
103 silly cache afterAdd sleep@3.0.0
104 verbose afterAdd C:\Users\anil_\AppData\Roaming\npm-cache\sleep\3.0.0\package\package.json not in flight; writing
105 verbose correctMkdir C:\Users\anil_\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
106 verbose afterAdd C:\Users\anil_\AppData\Roaming\npm-cache\sleep\3.0.0\package\package.json written
107 http 304 https://registry.npmjs.org/request
108 verbose headers { date: 'Sat, 24 Dec 2016 19:30:02 GMT',
108 verbose headers via: '1.1 varnish',
108 verbose headers 'cache-control': 'max-age=300',
108 verbose headers etag: 'W/"585eacd4-34ff9"',
108 verbose headers age: '22',
108 verbose headers connection: 'keep-alive',
108 verbose headers 'x-served-by': 'cache-hhn1527-HHN',
108 verbose headers 'x-cache': 'HIT',
108 verbose headers 'x-cache-hits': '1',
108 verbose headers 'x-timer': 'S1482607802.752505,VS0,VE0',
108 verbose headers vary: 'Accept-Encoding' }
109 silly get cb [ 304,
109 silly get { date: 'Sat, 24 Dec 2016 19:30:02 GMT',
109 silly get via: '1.1 varnish',
109 silly get 'cache-control': 'max-age=300',
109 silly get etag: 'W/"585eacd4-34ff9"',
109 silly get age: '22',
109 silly get connection: 'keep-alive',
109 silly get 'x-served-by': 'cache-hhn1527-HHN',
109 silly get 'x-cache': 'HIT',
109 silly get 'x-cache-hits': '1',
109 silly get 'x-timer': 'S1482607802.752505,VS0,VE0',
109 silly get vary: 'Accept-Encoding' } ]
110 verbose etag https://registry.npmjs.org/request from cache
111 verbose get saving request to C:\Users\anil_\AppData\Roaming\npm-cache\registry.npmjs.org\request\.cache.json
112 verbose correctMkdir C:\Users\anil_\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
113 silly resolveWithNewModule request@2.55.0 checking installable status
114 silly cache add args [ 'request@2.55.x', null ]
115 verbose cache add spec request@2.55.x
116 silly cache add parsed spec Result {
116 silly cache add raw: 'request@2.55.x',
116 silly cache add scope: null,
116 silly cache add name: 'request',
116 silly cache add rawSpec: '2.55.x',
116 silly cache add spec: '>=2.55.0 <2.56.0',
116 silly cache add type: 'range' }
117 silly addNamed request@>=2.55.0 <2.56.0
118 verbose addNamed ">=2.55.0 <2.56.0" is a valid semver range for request
119 silly addNameRange { name: 'request', range: '>=2.55.0 <2.56.0', hasData: false }
120 silly mapToRegistry name request
121 silly mapToRegistry using default registry
122 silly mapToRegistry registry https://registry.npmjs.org/
123 silly mapToRegistry data Result {
123 silly mapToRegistry raw: 'request',
123 silly mapToRegistry scope: null,
123 silly mapToRegistry name: 'request',
123 silly mapToRegistry rawSpec: '',
123 silly mapToRegistry spec: 'latest',
123 silly mapToRegistry type: 'tag' }
124 silly mapToRegistry uri https://registry.npmjs.org/request
125 verbose addNameRange registry:https://registry.npmjs.org/request not in flight; fetching
126 verbose get https://registry.npmjs.org/request not expired, no request
127 silly addNameRange number 2 { name: 'request', range: '>=2.55.0 <2.56.0', hasData: true }
128 silly addNameRange versions [ 'request',
128 silly addNameRange [ '0.10.0',
128 silly addNameRange '0.8.3',
128 silly addNameRange '0.9.0',
128 silly addNameRange '0.9.1',
128 silly addNameRange '0.9.5',
128 silly addNameRange '1.0.0',
128 silly addNameRange '1.1.0',
128 silly addNameRange '1.1.1',
128 silly addNameRange '1.2.0',
128 silly addNameRange '1.9.0',
128 silly addNameRange '1.9.1',
128 silly addNameRange '1.9.2',
128 silly addNameRange '1.9.3',
128 silly addNameRange '1.9.5',
128 silly addNameRange '1.9.7',
128 silly addNameRange '1.9.8',
128 silly addNameRange '1.9.9',
128 silly addNameRange '2.0.0',
128 silly addNameRange '2.0.1',
128 silly addNameRange '2.0.2',
128 silly addNameRange '2.0.3',
128 silly addNameRange '2.0.4',
128 silly addNameRange '2.0.5',
128 silly addNameRange '2.1.0',
128 silly addNameRange '2.1.1',
128 silly addNameRange '2.2.0',
128 silly addNameRange '2.2.5',
128 silly addNameRange '2.2.6',
128 silly addNameRange '2.2.9',
128 silly addNameRange '2.9.0',
128 silly addNameRange '2.9.1',
128 silly addNameRange '2.9.2',
128 silly addNameRange '2.9.3',
128 silly addNameRange '2.9.100',
128 silly addNameRange '2.9.150',
128 silly addNameRange '2.9.151',
128 silly addNameRange '2.9.152',
128 silly addNameRange '2.9.153',
128 silly addNameRange '2.9.200',
128 silly addNameRange '2.9.201',
128 silly addNameRange '2.9.202',
128 silly addNameRange '2.9.203',
128 silly addNameRange '2.10.0',
128 silly addNameRange '2.11.0',
128 silly addNameRange '2.11.1',
128 silly addNameRange '2.11.2',
128 silly addNameRange '2.11.3',
128 silly addNameRange '2.11.4',
128 silly addNameRange '2.12.0',
128 silly addNameRange '2.14.0',
128 silly addNameRange '2.16.0',
128 silly addNameRange '2.16.2',
128 silly addNameRange '2.16.4',
128 silly addNameRange '2.16.6',
128 silly addNameRange '2.18.0',
128 silly addNameRange '2.19.0',
128 silly addNameRange '2.20.0',
128 silly addNameRange '2.21.0',
128 silly addNameRange '2.22.0',
128 silly addNameRange '2.23.0',
128 silly addNameRange '2.24.0',
128 silly addNameRange '2.25.0',
128 silly addNameRange '2.26.0',
128 silly addNameRange '2.27.0',
128 silly addNameRange '2.28.0',
128 silly addNameRange '2.29.0',
128 silly addNameRange '2.30.0',
128 silly addNameRange '2.31.0',
128 silly addNameRange '2.32.0',
128 silly addNameRange '2.33.0',
128 silly addNameRange '2.34.0',
128 silly addNameRange '2.35.0',
128 silly addNameRange '2.36.0',
128 silly addNameRange '2.37.0',
128 silly addNameRange '2.38.0',
128 silly addNameRange '2.39.0',
128 silly addNameRange '2.40.0',
128 silly addNameRange '2.41.0',
128 silly addNameRange '2.42.0',
128 silly addNameRange '2.43.0',
128 silly addNameRange '2.44.0',
128 silly addNameRange '2.45.0',
128 silly addNameRange '2.46.0',
128 silly addNameRange '2.47.0',
128 silly addNameRange '2.48.0',
128 silly addNameRange '2.49.0',
128 silly addNameRange '2.50.0',
128 silly addNameRange '2.51.0',
128 silly addNameRange '2.52.0',
128 silly addNameRange '2.53.0',
128 silly addNameRange '2.54.0',
128 silly addNameRange '2.55.0',
128 silly addNameRange '2.56.0',
128 silly addNameRange '2.57.0',
128 silly addNameRange '2.58.0',
128 silly addNameRange '2.59.0',
128 silly addNameRange '2.60.0',
128 silly addNameRange '2.61.0',
128 silly addNameRange '2.62.0',
128 silly addNameRange '2.63.0',
128 silly addNameRange ... 16 more items ] ]
129 silly addNamed request@2.55.0
130 verbose addNamed "2.55.0" is a plain semver version for request
131 silly cache afterAdd request@2.55.0
132 verbose afterAdd C:\Users\anil_\AppData\Roaming\npm-cache\request\2.55.0\package\package.json not in flight; writing
133 verbose correctMkdir C:\Users\anil_\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
134 verbose afterAdd C:\Users\anil_\AppData\Roaming\npm-cache\request\2.55.0\package\package.json written
135 silly fetchNamedPackageData caseless
136 silly mapToRegistry name caseless
137 silly mapToRegistry using default registry
138 silly mapToRegistry registry https://registry.npmjs.org/
139 silly mapToRegistry data Result {
139 silly mapToRegistry raw: 'caseless',
139 silly mapToRegistry scope: null,
139 silly mapToRegistry name: 'caseless',
139 silly mapToRegistry rawSpec: '',
139 silly mapToRegistry spec: 'latest',
139 silly mapToRegistry type: 'tag' }
140 silly mapToRegistry uri https://registry.npmjs.org/caseless
141 silly fetchNamedPackageData form-data
142 silly mapToRegistry name form-data
143 silly mapToRegistry using default registry
144 silly mapToRegistry registry https://registry.npmjs.org/
145 silly mapToRegistry data Result {
145 silly mapToRegistry raw: 'form-data',
145 silly mapToRegistry scope: null,
145 silly mapToRegistry name: 'form-data',
145 silly mapToRegistry rawSpec: '',
145 silly mapToRegistry spec: 'latest',
145 silly mapToRegistry type: 'tag' }
146 silly mapToRegistry uri https://registry.npmjs.org/form-data
147 silly fetchNamedPackageData mime-types
148 silly mapToRegistry name mime-types
149 silly mapToRegistry using default registry
150 silly mapToRegistry registry https://registry.npmjs.org/
151 silly mapToRegistry data Result {
151 silly mapToRegistry raw: 'mime-types',
151 silly mapToRegistry scope: null,
151 silly mapToRegistry name: 'mime-types',
151 silly mapToRegistry rawSpec: '',
151 silly mapToRegistry spec: 'latest',
151 silly mapToRegistry type: 'tag' }
152 silly mapToRegistry uri https://registry.npmjs.org/mime-types
153 silly fetchNamedPackageData node-uuid
154 silly mapToRegistry name node-uuid
155 silly mapToRegistry using default registry
156 silly mapToRegistry registry https://registry.npmjs.org/
157 silly mapToRegistry data Result {
157 silly mapToRegistry raw: 'node-uuid',
157 silly mapToRegistry scope: null,
157 silly mapToRegistry name: 'node-uuid',
157 silly mapToRegistry rawSpec: '',
157 silly mapToRegistry spec: 'latest',
157 silly mapToRegistry type: 'tag' }
158 silly mapToRegistry uri https://registry.npmjs.org/node-uuid
159 silly fetchNamedPackageData qs
160 silly mapToRegistry name qs
161 silly mapToRegistry using default registry
162 silly mapToRegistry registry https://registry.npmjs.org/
163 silly mapToRegistry data Result {
163 silly mapToRegistry raw: 'qs',
163 silly mapToRegistry scope: null,
163 silly mapToRegistry name: 'qs',
163 silly mapToRegistry rawSpec: '',
163 silly mapToRegistry spec: 'latest',
163 silly mapToRegistry type: 'tag' }
164 silly mapToRegistry uri https://registry.npmjs.org/qs
165 silly fetchNamedPackageData http-signature
166 silly mapToRegistry name http-signature
167 silly mapToRegistry using default registry
168 silly mapToRegistry registry https://registry.npmjs.org/
169 silly mapToRegistry data Result {
169 silly mapToRegistry raw: 'http-signature',
169 silly mapToRegistry scope: null,
169 silly mapToRegistry name: 'http-signature',
169 silly mapToRegistry rawSpec: '',
169 silly mapToRegistry spec: 'latest',
169 silly mapToRegistry type: 'tag' }
170 silly mapToRegistry uri https://registry.npmjs.org/http-signature
171 silly fetchNamedPackageData oauth-sign
172 silly mapToRegistry name oauth-sign
173 silly mapToRegistry using default registry
174 silly mapToRegistry registry https://registry.npmjs.org/
175 silly mapToRegistry data Result {
175 silly mapToRegistry raw: 'oauth-sign',
175 silly mapToRegistry scope: null,
175 silly mapToRegistry name: 'oauth-sign',
175 silly mapToRegistry rawSpec: '',
175 silly mapToRegistry spec: 'latest',
175 silly mapToRegistry type: 'tag' }
176 silly mapToRegistry uri https://registry.npmjs.org/oauth-sign
177 silly fetchNamedPackageData hawk
178 silly mapToRegistry name hawk
179 silly mapToRegistry using default registry
180 silly mapToRegistry registry https://registry.npmjs.org/
181 silly mapToRegistry data Result {
181 silly mapToRegistry raw: 'hawk',
181 silly mapToRegistry scope: null,
181 silly mapToRegistry name: 'hawk',
181 silly mapToRegistry rawSpec: '',
181 silly mapToRegistry spec: 'latest',
181 silly mapToRegistry type: 'tag' }
182 silly mapToRegistry uri https://registry.npmjs.org/hawk
183 silly fetchNamedPackageData aws-sign2
184 silly mapToRegistry name aws-sign2
185 silly mapToRegistry using default registry
186 silly mapToRegistry registry https://registry.npmjs.org/
187 silly mapToRegistry data Result {
187 silly mapToRegistry raw: 'aws-sign2',
187 silly mapToRegistry scope: null,
187 silly mapToRegistry name: 'aws-sign2',
187 silly mapToRegistry rawSpec: '',
187 silly mapToRegistry spec: 'latest',
187 silly mapToRegistry type: 'tag' }
188 silly mapToRegistry uri https://registry.npmjs.org/aws-sign2
189 silly fetchNamedPackageData combined-stream
190 silly mapToRegistry name combined-stream
191 silly mapToRegistry using default registry
192 silly mapToRegistry registry https://registry.npmjs.org/
193 silly mapToRegistry data Result {
193 silly mapToRegistry raw: 'combined-stream',
193 silly mapToRegistry scope: null,
193 silly mapToRegistry name: 'combined-stream',
193 silly mapToRegistry rawSpec: '',
193 silly mapToRegistry spec: 'latest',
193 silly mapToRegistry type: 'tag' }
194 silly mapToRegistry uri https://registry.npmjs.org/combined-stream
195 silly fetchNamedPackageData har-validator
196 silly mapToRegistry name har-validator
197 silly mapToRegistry using default registry
198 silly mapToRegistry registry https://registry.npmjs.org/
199 silly mapToRegistry data Result {
199 silly mapToRegistry raw: 'har-validator',
199 silly mapToRegistry scope: null,
199 silly mapToRegistry name: 'har-validator',
199 silly mapToRegistry rawSpec: '',
199 silly mapToRegistry spec: 'latest',
199 silly mapToRegistry type: 'tag' }
200 silly mapToRegistry uri https://registry.npmjs.org/har-validator
201 verbose request uri https://registry.npmjs.org/caseless
202 verbose request no auth needed
203 info attempt registry request try #1 at 21:30:01
204 verbose etag W/"558c750a-32e5"
205 verbose lastModified Thu, 25 Jun 2015 21:39:22 GMT
206 http request GET https://registry.npmjs.org/caseless
207 verbose request uri https://registry.npmjs.org/mime-types
208 verbose request no auth needed
209 info attempt registry request try #1 at 21:30:01
210 verbose etag W/"582f7510-e0ad"
211 verbose lastModified Fri, 18 Nov 2016 21:39:28 GMT
212 http request GET https://registry.npmjs.org/mime-types
213 verbose request uri https://registry.npmjs.org/form-data
214 verbose request no auth needed
215 info attempt registry request try #1 at 21:30:01
216 verbose etag W/"584cf08b-c281"
217 verbose lastModified Sun, 11 Dec 2016 06:22:03 GMT
218 http request GET https://registry.npmjs.org/form-data
219 verbose request uri https://registry.npmjs.org/http-signature
220 verbose request no auth needed
221 info attempt registry request try #1 at 21:30:01
222 verbose etag W/"5818d103-6418"
223 verbose lastModified Tue, 01 Nov 2016 17:29:39 GMT
224 http request GET https://registry.npmjs.org/http-signature
225 verbose request uri https://registry.npmjs.org/node-uuid
226 verbose request no auth needed
227 info attempt registry request try #1 at 21:30:01
228 verbose etag W/"585ccca9-6202"
229 verbose lastModified Fri, 23 Dec 2016 07:05:13 GMT
230 http request GET https://registry.npmjs.org/node-uuid
231 verbose request uri https://registry.npmjs.org/oauth-sign
232 verbose request no auth needed
233 info attempt registry request try #1 at 21:30:01
234 verbose etag W/"5818d7b8-2973"
235 verbose lastModified Tue, 01 Nov 2016 17:58:16 GMT
236 http request GET https://registry.npmjs.org/oauth-sign
237 verbose request uri https://registry.npmjs.org/qs
238 verbose request no auth needed
239 info attempt registry request try #1 at 21:30:01
240 verbose etag W/"58539272-134bb"
241 verbose lastModified Fri, 16 Dec 2016 07:06:26 GMT
242 http request GET https://registry.npmjs.org/qs
243 verbose request uri https://registry.npmjs.org/aws-sign2
244 verbose request no auth needed
245 info attempt registry request try #1 at 21:30:01
246 verbose etag W/"561a9b34-ea8"
247 verbose lastModified Sun, 11 Oct 2015 17:24:04 GMT
248 http request GET https://registry.npmjs.org/aws-sign2
249 verbose request uri https://registry.npmjs.org/combined-stream
250 verbose request no auth needed
251 info attempt registry request try #1 at 21:30:01
252 verbose etag W/"5834bb23-4e71"
253 verbose lastModified Tue, 22 Nov 2016 21:39:47 GMT
254 http request GET https://registry.npmjs.org/combined-stream
255 verbose request uri https://registry.npmjs.org/hawk
256 verbose request no auth needed
257 info attempt registry request try #1 at 21:30:01
258 verbose etag W/"583fb8ce-1a5eb"
259 verbose lastModified Thu, 01 Dec 2016 05:44:46 GMT
260 http request GET https://registry.npmjs.org/hawk
261 verbose request uri https://registry.npmjs.org/har-validator
262 verbose request no auth needed
263 info attempt registry request try #1 at 21:30:01
264 verbose etag W/"5844789c-15729"
265 verbose lastModified Sun, 04 Dec 2016 20:12:12 GMT
266 http request GET https://registry.npmjs.org/har-validator
267 http 304 https://registry.npmjs.org/mime-types
268 verbose headers { date: 'Sat, 24 Dec 2016 19:30:02 GMT',
268 verbose headers via: '1.1 varnish',
268 verbose headers 'cache-control': 'max-age=300',
268 verbose headers etag: 'W/"582f7510-e0ad"',
268 verbose headers age: '272',
268 verbose headers connection: 'keep-alive',
268 verbose headers 'x-served-by': 'cache-hhn1527-HHN',
268 verbose headers 'x-cache': 'HIT',
268 verbose headers 'x-cache-hits': '11',
268 verbose headers 'x-timer': 'S1482607802.917131,VS0,VE0',
268 verbose headers vary: 'Accept-Encoding' }
269 silly get cb [ 304,
269 silly get { date: 'Sat, 24 Dec 2016 19:30:02 GMT',
269 silly get via: '1.1 varnish',
269 silly get 'cache-control': 'max-age=300',
269 silly get etag: 'W/"582f7510-e0ad"',
269 silly get age: '272',
269 silly get connection: 'keep-alive',
269 silly get 'x-served-by': 'cache-hhn1527-HHN',
269 silly get 'x-cache': 'HIT',
269 silly get 'x-cache-hits': '11',
269 silly get 'x-timer': 'S1482607802.917131,VS0,VE0',
269 silly get vary: 'Accept-Encoding' } ]
270 verbose etag https://registry.npmjs.org/mime-types from cache
271 verbose get saving mime-types to C:\Users\anil_\AppData\Roaming\npm-cache\registry.npmjs.org\mime-types\.cache.json
272 verbose correctMkdir C:\Users\anil_\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
273 http 304 https://registry.npmjs.org/caseless
274 verbose headers { date: 'Sat, 24 Dec 2016 19:30:02 GMT',
274 verbose headers via: '1.1 varnish',
274 verbose headers 'cache-control': 'max-age=300',
274 verbose headers etag: 'W/"558c750a-32e5"',
274 verbose headers age: '0',
274 verbose headers connection: 'keep-alive',
274 verbose headers 'x-served-by': 'cache-hhn1531-HHN',
274 verbose headers 'x-cache': 'HIT',
274 verbose headers 'x-cache-hits': '1',
274 verbose headers 'x-timer': 'S1482607802.915012,VS0,VE2',
274 verbose headers vary: 'Accept-Encoding' }
275 silly get cb [ 304,
275 silly get { date: 'Sat, 24 Dec 2016 19:30:02 GMT',
275 silly get via: '1.1 varnish',
275 silly get 'cache-control': 'max-age=300',
275 silly get etag: 'W/"558c750a-32e5"',
275 silly get age: '0',
275 silly get connection: 'keep-alive',
275 silly get 'x-served-by': 'cache-hhn1531-HHN',
275 silly get 'x-cache': 'HIT',
275 silly get 'x-cache-hits': '1',
275 silly get 'x-timer': 'S1482607802.915012,VS0,VE2',
275 silly get vary: 'Accept-Encoding' } ]
276 verbose etag https://registry.npmjs.org/caseless from cache
277 verbose get saving caseless to C:\Users\anil_\AppData\Roaming\npm-cache\registry.npmjs.org\caseless\.cache.json
278 verbose correctMkdir C:\Users\anil_\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
279 silly resolveWithNewModule mime-types@2.0.14 checking installable status
280 silly cache add args [ 'mime-types@~2.0.1', null ]
281 verbose cache add spec mime-types@~2.0.1
282 silly cache add parsed spec Result {
282 silly cache add raw: 'mime-types@~2.0.1',
282 silly cache add scope: null,
282 silly cache add name: 'mime-types',
282 silly cache add rawSpec: '~2.0.1',
282 silly cache add spec: '>=2.0.1 <2.1.0',
282 silly cache add type: 'range' }
283 silly addNamed mime-types@>=2.0.1 <2.1.0
284 verbose addNamed ">=2.0.1 <2.1.0" is a valid semver range for mime-types
285 silly addNameRange { name: 'mime-types', range: '>=2.0.1 <2.1.0', hasData: false }
286 silly mapToRegistry name mime-types
287 silly mapToRegistry using default registry
288 silly mapToRegistry registry https://registry.npmjs.org/
289 silly mapToRegistry data Result {
289 silly mapToRegistry raw: 'mime-types',
289 silly mapToRegistry scope: null,
289 silly mapToRegistry name: 'mime-types',
289 silly mapToRegistry rawSpec: '',
289 silly mapToRegistry spec: 'latest',
289 silly mapToRegistry type: 'tag' }
290 silly mapToRegistry uri https://registry.npmjs.org/mime-types
291 verbose addNameRange registry:https://registry.npmjs.org/mime-types not in flight; fetching
292 verbose get https://registry.npmjs.org/mime-types not expired, no request
293 silly addNameRange number 2 { name: 'mime-types', range: '>=2.0.1 <2.1.0', hasData: true }
294 silly addNameRange versions [ 'mime-types',
294 silly addNameRange [ '0.1.0',
294 silly addNameRange '1.0.0',
294 silly addNameRange '1.0.1',
294 silly addNameRange '1.0.2',
294 silly addNameRange '2.0.0',
294 silly addNameRange '2.0.1',
294 silly addNameRange '2.0.2',
294 silly addNameRange '2.0.3',
294 silly addNameRange '2.0.4',
294 silly addNameRange '2.0.5',
294 silly addNameRange '2.0.6',
294 silly addNameRange '2.0.7',
294 silly addNameRange '2.0.8',
294 silly addNameRange '2.0.9',
294 silly addNameRange '2.0.10',
294 silly addNameRange '2.0.11',
294 silly addNameRange '2.0.12',
294 silly addNameRange '2.0.13',
294 silly addNameRange '2.0.14',
294 silly addNameRange '2.1.0',
294 silly addNameRange '2.1.1',
294 silly addNameRange '2.1.2',
294 silly addNameRange '2.1.3',
294 silly addNameRange '2.1.4',
294 silly addNameRange '2.1.5',
294 silly addNameRange '2.1.6',
294 silly addNameRange '2.1.7',
294 silly addNameRange '2.1.8',
294 silly addNameRange '2.1.9',
294 silly addNameRange '2.1.10',
294 silly addNameRange '2.1.11',
294 silly addNameRange '2.1.12',
294 silly addNameRange '2.1.13' ] ]
295 silly addNamed mime-types@2.0.14
296 verbose addNamed "2.0.14" is a plain semver version for mime-types
297 silly cache afterAdd mime-types@2.0.14
298 verbose afterAdd C:\Users\anil_\AppData\Roaming\npm-cache\mime-types\2.0.14\package\package.json not in flight; writing
299 verbose correctMkdir C:\Users\anil_\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
300 silly resolveWithNewModule caseless@0.9.0 checking installable status
301 silly cache add args [ 'caseless@~0.9.0', null ]
302 verbose cache add spec caseless@~0.9.0
303 silly cache add parsed spec Result {
303 silly cache add raw: 'caseless@~0.9.0',
303 silly cache add scope: null,
303 silly cache add name: 'caseless',
303 silly cache add rawSpec: '~0.9.0',
303 silly cache add spec: '>=0.9.0 <0.10.0',
303 silly cache add type: 'range' }
304 silly addNamed caseless@>=0.9.0 <0.10.0
305 verbose addNamed ">=0.9.0 <0.10.0" is a valid semver range for caseless
306 silly addNameRange { name: 'caseless', range: '>=0.9.0 <0.10.0', hasData: false }
307 silly mapToRegistry name caseless
308 silly mapToRegistry using default registry
309 silly mapToRegistry registry https://registry.npmjs.org/
310 silly mapToRegistry data Result {
310 silly mapToRegistry raw: 'caseless',
310 silly mapToRegistry scope: null,
310 silly mapToRegistry name: 'caseless',
310 silly mapToRegistry rawSpec: '',
310 silly mapToRegistry spec: 'latest',
310 silly mapToRegistry type: 'tag' }
311 silly mapToRegistry uri https://registry.npmjs.org/caseless
312 verbose addNameRange registry:https://registry.npmjs.org/caseless not in flight; fetching
313 verbose get https://registry.npmjs.org/caseless not expired, no request
314 silly addNameRange number 2 { name: 'caseless', range: '>=0.9.0 <0.10.0', hasData: true }
315 silly addNameRange versions [ 'caseless',
315 silly addNameRange [ '0.1.0',
315 silly addNameRange '0.2.0',
315 silly addNameRange '0.3.0',
315 silly addNameRange '0.4.0',
315 silly addNameRange '0.5.0',
315 silly addNameRange '0.6.0',
315 silly addNameRange '0.7.0',
315 silly addNameRange '0.8.0',
315 silly addNameRange '0.9.0',
315 silly addNameRange '0.10.0',
315 silly addNameRange '0.11.0' ] ]
316 silly addNamed caseless@0.9.0
317 verbose addNamed "0.9.0" is a plain semver version for caseless
318 silly cache afterAdd caseless@0.9.0
319 verbose afterAdd C:\Users\anil_\AppData\Roaming\npm-cache\caseless\0.9.0\package\package.json not in flight; writing
320 verbose correctMkdir C:\Users\anil_\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
321 verbose afterAdd C:\Users\anil_\AppData\Roaming\npm-cache\mime-types\2.0.14\package\package.json written
322 verbose afterAdd C:\Users\anil_\AppData\Roaming\npm-cache\caseless\0.9.0\package\package.json written
323 http 304 https://registry.npmjs.org/form-data
324 verbose headers { date: 'Sat, 24 Dec 2016 19:30:03 GMT',
324 verbose headers via: '1.1 varnish',
324 verbose headers 'cache-control': 'max-age=300',
324 verbose headers etag: 'W/"584cf08b-c281"',
324 verbose headers age: '120',
324 verbose headers connection: 'keep-alive',
324 verbose headers 'x-served-by': 'cache-hhn1531-HHN',
324 verbose headers 'x-cache': 'HIT',
324 verbose headers 'x-cache-hits': '4',
324 verbose headers 'x-timer': 'S1482607803.018950,VS0,VE0',
324 verbose headers vary: 'Accept-Encoding' }
325 silly get cb [ 304,
325 silly get { date: 'Sat, 24 Dec 2016 19:30:03 GMT',
325 silly get via: '1.1 varnish',
325 silly get 'cache-control': 'max-age=300',
325 silly get etag: 'W/"584cf08b-c281"',
325 silly get age: '120',
325 silly get connection: 'keep-alive',
325 silly get 'x-served-by': 'cache-hhn1531-HHN',
325 silly get 'x-cache': 'HIT',
325 silly get 'x-cache-hits': '4',
325 silly get 'x-timer': 'S1482607803.018950,VS0,VE0',
325 silly get vary: 'Accept-Encoding' } ]
326 verbose etag https://registry.npmjs.org/form-data from cache
327 verbose get saving form-data to C:\Users\anil_\AppData\Roaming\npm-cache\registry.npmjs.org\form-data\.cache.json
328 verbose correctMkdir C:\Users\anil_\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
329 http 304 https://registry.npmjs.org/node-uuid
330 verbose headers { date: 'Sat, 24 Dec 2016 19:30:03 GMT',
330 verbose headers via: '1.1 varnish',
330 verbose headers 'cache-control': 'max-age=300',
330 verbose headers etag: 'W/"585ccca9-6202"',
330 verbose headers age: '184',
330 verbose headers connection: 'keep-alive',
330 verbose headers 'x-served-by': 'cache-hhn1548-HHN',
330 verbose headers 'x-cache': 'HIT',
330 verbose headers 'x-cache-hits': '3',
330 verbose headers 'x-timer': 'S1482607803.023248,VS0,VE0',
330 verbose headers vary: 'Accept-Encoding' }
331 silly get cb [ 304,
331 silly get { date: 'Sat, 24 Dec 2016 19:30:03 GMT',
331 silly get via: '1.1 varnish',
331 silly get 'cache-control': 'max-age=300',
331 silly get etag: 'W/"585ccca9-6202"',
331 silly get age: '184',
331 silly get connection: 'keep-alive',
331 silly get 'x-served-by': 'cache-hhn1548-HHN',
331 silly get 'x-cache': 'HIT',
331 silly get 'x-cache-hits': '3',
331 silly get 'x-timer': 'S1482607803.023248,VS0,VE0',
331 silly get vary: 'Accept-Encoding' } ]
332 verbose etag https://registry.npmjs.org/node-uuid from cache
333 verbose get saving node-uuid to C:\Users\anil_\AppData\Roaming\npm-cache\registry.npmjs.org\node-uuid\.cache.json
334 verbose correctMkdir C:\Users\anil_\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
335 http 304 https://registry.npmjs.org/qs
336 verbose headers { date: 'Sat, 24 Dec 2016 19:30:03 GMT',
336 verbose headers via: '1.1 varnish',
336 verbose headers 'cache-control': 'max-age=300',
336 verbose headers etag: 'W/"58539272-134bb"',
336 verbose headers age: '81',
336 verbose headers connection: 'keep-alive',
336 verbose headers 'x-served-by': 'cache-hhn1539-HHN',
336 verbose headers 'x-cache': 'HIT',
336 verbose headers 'x-cache-hits': '5',
336 verbose headers 'x-timer': 'S1482607803.029562,VS0,VE0',
336 verbose headers vary: 'Accept-Encoding' }
337 silly get cb [ 304,
337 silly get { date: 'Sat, 24 Dec 2016 19:30:03 GMT',
337 silly get via: '1.1 varnish',
337 silly get 'cache-control': 'max-age=300',
337 silly get etag: 'W/"58539272-134bb"',
337 silly get age: '81',
337 silly get connection: 'keep-alive',
337 silly get 'x-served-by': 'cache-hhn1539-HHN',
337 silly get 'x-cache': 'HIT',
337 silly get 'x-cache-hits': '5',
337 silly get 'x-timer': 'S1482607803.029562,VS0,VE0',
337 silly get vary: 'Accept-Encoding' } ]
338 verbose etag https://registry.npmjs.org/qs from cache
339 verbose get saving qs to C:\Users\anil_\AppData\Roaming\npm-cache\registry.npmjs.org\qs\.cache.json
340 verbose correctMkdir C:\Users\anil_\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
341 http 304 https://registry.npmjs.org/http-signature
342 verbose headers { date: 'Sat, 24 Dec 2016 19:30:03 GMT',
342 verbose headers via: '1.1 varnish',
342 verbose headers 'cache-control': 'max-age=300',
342 verbose headers etag: 'W/"5818d103-6418"',
342 verbose headers age: '231',
342 verbose headers connection: 'keep-alive',
342 verbose headers 'x-served-by': 'cache-hhn1527-HHN',
342 verbose headers 'x-cache': 'HIT',
342 verbose headers 'x-cache-hits': '5',
342 verbose headers 'x-timer': 'S1482607803.032188,VS0,VE0',
342 verbose headers vary: 'Accept-Encoding' }
343 silly get cb [ 304,
343 silly get { date: 'Sat, 24 Dec 2016 19:30:03 GMT',
343 silly get via: '1.1 varnish',
343 silly get 'cache-control': 'max-age=300',
343 silly get etag: 'W/"5818d103-6418"',
343 silly get age: '231',
343 silly get connection: 'keep-alive',
343 silly get 'x-served-by': 'cache-hhn1527-HHN',
343 silly get 'x-cache': 'HIT',
343 silly get 'x-cache-hits': '5',
343 silly get 'x-timer': 'S1482607803.032188,VS0,VE0',
343 silly get vary: 'Accept-Encoding' } ]
344 verbose etag https://registry.npmjs.org/http-signature from cache
345 verbose get saving http-signature to C:\Users\anil_\AppData\Roaming\npm-cache\registry.npmjs.org\http-signature\.cache.json
346 verbose correctMkdir C:\Users\anil_\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
347 http 304 https://registry.npmjs.org/oauth-sign
348 verbose headers { date: 'Sat, 24 Dec 2016 19:30:03 GMT',
348 verbose headers via: '1.1 varnish',
348 verbose headers 'cache-control': 'max-age=300',
348 verbose headers etag: 'W/"5818d7b8-2973"',
348 verbose headers age: '0',
348 verbose headers connection: 'keep-alive',
348 verbose headers 'x-served-by': 'cache-hhn1538-HHN',
348 verbose headers 'x-cache': 'HIT',
348 verbose headers 'x-cache-hits': '1',
348 verbose headers 'x-timer': 'S1482607803.026380,VS0,VE1',
348 verbose headers vary: 'Accept-Encoding' }
349 silly get cb [ 304,
349 silly get { date: 'Sat, 24 Dec 2016 19:30:03 GMT',
349 silly get via: '1.1 varnish',
349 silly get 'cache-control': 'max-age=300',
349 silly get etag: 'W/"5818d7b8-2973"',
349 silly get age: '0',
349 silly get connection: 'keep-alive',
349 silly get 'x-served-by': 'cache-hhn1538-HHN',
349 silly get 'x-cache': 'HIT',
349 silly get 'x-cache-hits': '1',
349 silly get 'x-timer': 'S1482607803.026380,VS0,VE1',
349 silly get vary: 'Accept-Encoding' } ]
350 verbose etag https://registry.npmjs.org/oauth-sign from cache
351 verbose get saving oauth-sign to C:\Users\anil_\AppData\Roaming\npm-cache\registry.npmjs.org\oauth-sign\.cache.json
352 verbose correctMkdir C:\Users\anil_\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
353 http 304 https://registry.npmjs.org/har-validator
354 verbose headers { date: 'Sat, 24 Dec 2016 19:30:03 GMT',
354 verbose headers via: '1.1 varnish',
354 verbose headers 'cache-control': 'max-age=300',
354 verbose headers etag: 'W/"5844789c-15729"',
354 verbose headers age: '0',
354 verbose headers connection: 'keep-alive',
354 verbose headers 'x-served-by': 'cache-hhn1534-HHN',
354 verbose headers 'x-cache': 'HIT',
354 verbose headers 'x-cache-hits': '1',
354 verbose headers 'x-timer': 'S1482607803.036999,VS0,VE1',
354 verbose headers vary: 'Accept-Encoding' }
355 silly get cb [ 304,
355 silly get { date: 'Sat, 24 Dec 2016 19:30:03 GMT',
355 silly get via: '1.1 varnish',
355 silly get 'cache-control': 'max-age=300',
355 silly get etag: 'W/"5844789c-15729"',
355 silly get age: '0',
355 silly get connection: 'keep-alive',
355 silly get 'x-served-by': 'cache-hhn1534-HHN',
355 silly get 'x-cache': 'HIT',
355 silly get 'x-cache-hits': '1',
355 silly get 'x-timer': 'S1482607803.036999,VS0,VE1',
355 silly get vary: 'Accept-Encoding' } ]
356 verbose etag https://registry.npmjs.org/har-validator from cache
357 verbose get saving har-validator to C:\Users\anil_\AppData\Roaming\npm-cache\registry.npmjs.org\har-validator\.cache.json
358 verbose correctMkdir C:\Users\anil_\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
359 http 304 https://registry.npmjs.org/combined-stream
360 verbose headers { date: 'Sat, 24 Dec 2016 19:30:03 GMT',
360 verbose headers via: '1.1 varnish',
360 verbose headers 'cache-control': 'max-age=300',
360 verbose headers etag: 'W/"5834bb23-4e71"',
360 verbose headers age: '221',
360 verbose headers connection: 'keep-alive',
360 verbose headers 'x-served-by': 'cache-hhn1540-HHN',
360 verbose headers 'x-cache': 'HIT',
360 verbose headers 'x-cache-hits': '5',
360 verbose headers 'x-timer': 'S1482607803.044916,VS0,VE0',
360 verbose headers vary: 'Accept-Encoding' }
361 silly get cb [ 304,
361 silly get { date: 'Sat, 24 Dec 2016 19:30:03 GMT',
361 silly get via: '1.1 varnish',
361 silly get 'cache-control': 'max-age=300',
361 silly get etag: 'W/"5834bb23-4e71"',
361 silly get age: '221',
361 silly get connection: 'keep-alive',
361 silly get 'x-served-by': 'cache-hhn1540-HHN',
361 silly get 'x-cache': 'HIT',
361 silly get 'x-cache-hits': '5',
361 silly get 'x-timer': 'S1482607803.044916,VS0,VE0',
361 silly get vary: 'Accept-Encoding' } ]
362 verbose etag https://registry.npmjs.org/combined-stream from cache
363 verbose get saving combined-stream to C:\Users\anil_\AppData\Roaming\npm-cache\registry.npmjs.org\combined-stream\.cache.json
364 verbose correctMkdir C:\Users\anil_\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
365 http 304 https://registry.npmjs.org/hawk
366 verbose headers { date: 'Sat, 24 Dec 2016 19:30:03 GMT',
366 verbose headers via: '1.1 varnish',
366 verbose headers 'cache-control': 'max-age=300',
366 verbose headers etag: 'W/"583fb8ce-1a5eb"',
366 verbose headers age: '0',
366 verbose headers connection: 'keep-alive',
366 verbose headers 'x-served-by': 'cache-hhn1532-HHN',
366 verbose headers 'x-cache': 'HIT',
366 verbose headers 'x-cache-hits': '1',
366 verbose headers 'x-timer': 'S1482607803.041808,VS0,VE1',
366 verbose headers vary: 'Accept-Encoding' }
367 silly get cb [ 304,
367 silly get { date: 'Sat, 24 Dec 2016 19:30:03 GMT',
367 silly get via: '1.1 varnish',
367 silly get 'cache-control': 'max-age=300',
367 silly get etag: 'W/"583fb8ce-1a5eb"',
367 silly get age: '0',
367 silly get connection: 'keep-alive',
367 silly get 'x-served-by': 'cache-hhn1532-HHN',
367 silly get 'x-cache': 'HIT',
367 silly get 'x-cache-hits': '1',
367 silly get 'x-timer': 'S1482607803.041808,VS0,VE1',
367 silly get vary: 'Accept-Encoding' } ]
368 verbose etag https://registry.npmjs.org/hawk from cache
369 verbose get saving hawk to C:\Users\anil_\AppData\Roaming\npm-cache\registry.npmjs.org\hawk\.cache.json
370 verbose correctMkdir C:\Users\anil_\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
371 silly resolveWithNewModule node-uuid@1.4.7 checking installable status
372 silly cache add args [ 'node-uuid@~1.4.0', null ]
373 verbose cache add spec node-uuid@~1.4.0
374 silly cache add parsed spec Result {
374 silly cache add raw: 'node-uuid@~1.4.0',
374 silly cache add scope: null,
374 silly cache add name: 'node-uuid',
374 silly cache add rawSpec: '~1.4.0',
374 silly cache add spec: '>=1.4.0 <1.5.0',
374 silly cache add type: 'range' }
375 silly addNamed node-uuid@>=1.4.0 <1.5.0
376 verbose addNamed ">=1.4.0 <1.5.0" is a valid semver range for node-uuid
377 silly addNameRange { name: 'node-uuid', range: '>=1.4.0 <1.5.0', hasData: false }
378 silly mapToRegistry name node-uuid
379 silly mapToRegistry using default registry
380 silly mapToRegistry registry https://registry.npmjs.org/
381 silly mapToRegistry data Result {
381 silly mapToRegistry raw: 'node-uuid',
381 silly mapToRegistry scope: null,
381 silly mapToRegistry name: 'node-uuid',
381 silly mapToRegistry rawSpec: '',
381 silly mapToRegistry spec: 'latest',
381 silly mapToRegistry type: 'tag' }
382 silly mapToRegistry uri https://registry.npmjs.org/node-uuid
383 verbose addNameRange registry:https://registry.npmjs.org/node-uuid not in flight; fetching
384 silly resolveWithNewModule qs@2.4.2 checking installable status
385 silly cache add args [ 'qs@~2.4.0', null ]
386 verbose cache add spec qs@~2.4.0
387 silly cache add parsed spec Result {
387 silly cache add raw: 'qs@~2.4.0',
387 silly cache add scope: null,
387 silly cache add name: 'qs',
387 silly cache add rawSpec: '~2.4.0',
387 silly cache add spec: '>=2.4.0 <2.5.0',
387 silly cache add type: 'range' }
388 silly addNamed qs@>=2.4.0 <2.5.0
389 verbose addNamed ">=2.4.0 <2.5.0" is a valid semver range for qs
390 silly addNameRange { name: 'qs', range: '>=2.4.0 <2.5.0', hasData: false }
391 silly mapToRegistry name qs
392 silly mapToRegistry using default registry
393 silly mapToRegistry registry https://registry.npmjs.org/
394 silly mapToRegistry data Result {
394 silly mapToRegistry raw: 'qs',
394 silly mapToRegistry scope: null,
394 silly mapToRegistry name: 'qs',
394 silly mapToRegistry rawSpec: '',
394 silly mapToRegistry spec: 'latest',
394 silly mapToRegistry type: 'tag' }
395 silly mapToRegistry uri https://registry.npmjs.org/qs
396 verbose addNameRange registry:https://registry.npmjs.org/qs not in flight; fetching
397 silly resolveWithNewModule form-data@0.2.0 checking installable status
398 silly cache add args [ 'form-data@~0.2.0', null ]
399 verbose cache add spec form-data@~0.2.0
400 silly cache add parsed spec Result {
400 silly cache add raw: 'form-data@~0.2.0',
400 silly cache add scope: null,
400 silly cache add name: 'form-data',
400 silly cache add rawSpec: '~0.2.0',
400 silly cache add spec: '>=0.2.0 <0.3.0',
400 silly cache add type: 'range' }
401 silly addNamed form-data@>=0.2.0 <0.3.0
402 verbose addNamed ">=0.2.0 <0.3.0" is a valid semver range for form-data
403 silly addNameRange { name: 'form-data', range: '>=0.2.0 <0.3.0', hasData: false }
404 silly mapToRegistry name form-data