-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnpm-debug.log
9572 lines (9572 loc) · 636 KB
/
npm-debug.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
0 info it worked if it ends with ok
1 verbose cli [ 'C:\\Program Files (x86)\\nodejs\\\\node.exe',
1 verbose cli 'C:\\Program Files (x86)\\nodejs\\node_modules\\npm\\bin\\npm-cli.js',
1 verbose cli 'install',
1 verbose cli 'grunt-contrib-watch',
1 verbose cli '--save',
1 verbose cli 'dev' ]
2 info using [email protected]
3 info using [email protected]
4 verbose install initial load of E:\xampp\htdocs\base_path\package.json
5 warn package.json [email protected] No repository field.
6 verbose installManyTop reading scoped package data from E:\xampp\htdocs\base_path\node_modules\grunt\package.json
7 verbose installManyTop reading scoped package data from E:\xampp\htdocs\base_path\node_modules\grunt-contrib-uglify\package.json
8 verbose readDependencies loading dependencies from E:\xampp\htdocs\base_path\package.json
9 silly cache add args [ 'grunt-contrib-watch', null ]
10 verbose cache add spec grunt-contrib-watch
11 silly cache add args [ 'dev', null ]
12 verbose cache add spec dev
13 silly cache add parsed spec { raw: 'grunt-contrib-watch',
13 silly cache add scope: null,
13 silly cache add name: 'grunt-contrib-watch',
13 silly cache add rawSpec: '',
13 silly cache add spec: '*',
13 silly cache add type: 'range' }
14 silly addNamed grunt-contrib-watch@*
15 verbose addNamed "*" is a valid semver range for grunt-contrib-watch
16 silly addNameRange { name: 'grunt-contrib-watch', range: '*', hasData: false }
17 silly mapToRegistry name grunt-contrib-watch
18 silly mapToRegistry using default registry
19 silly mapToRegistry registry https://registry.npmjs.org/
20 silly mapToRegistry uri https://registry.npmjs.org/grunt-contrib-watch
21 verbose addNameRange registry:https://registry.npmjs.org/grunt-contrib-watch not in flight; fetching
22 silly cache add parsed spec { raw: 'dev',
22 silly cache add scope: null,
22 silly cache add name: 'dev',
22 silly cache add rawSpec: '',
22 silly cache add spec: '*',
22 silly cache add type: 'range' }
23 silly addNamed dev@*
24 verbose addNamed "*" is a valid semver range for dev
25 silly addNameRange { name: 'dev', range: '*', hasData: false }
26 silly mapToRegistry name dev
27 silly mapToRegistry using default registry
28 silly mapToRegistry registry https://registry.npmjs.org/
29 silly mapToRegistry uri https://registry.npmjs.org/dev
30 verbose addNameRange registry:https://registry.npmjs.org/dev not in flight; fetching
31 verbose request uri https://registry.npmjs.org/grunt-contrib-watch
32 verbose request no auth needed
33 info attempt registry request try #1 at 7:37:11 PM
34 verbose request id 7e0e7716ab8d8176
35 http request GET https://registry.npmjs.org/grunt-contrib-watch
36 verbose request uri https://registry.npmjs.org/dev
37 verbose request no auth needed
38 info attempt registry request try #1 at 7:37:11 PM
39 http request GET https://registry.npmjs.org/dev
40 http 200 https://registry.npmjs.org/dev
41 silly get cb [ 200,
41 silly get { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
41 silly get etag: '"70CDUJPAHIRCO4UM5CM28RZUB"',
41 silly get 'content-type': 'application/json',
41 silly get 'content-encoding': 'gzip',
41 silly get 'cache-control': 'max-age=300',
41 silly get 'content-length': '1360',
41 silly get 'accept-ranges': 'bytes',
41 silly get date: 'Thu, 08 Sep 2016 14:07:14 GMT',
41 silly get via: '1.1 varnish',
41 silly get age: '0',
41 silly get connection: 'keep-alive',
41 silly get 'x-served-by': 'cache-sin6920-SIN',
41 silly get 'x-cache': 'HIT',
41 silly get 'x-cache-hits': '1',
41 silly get 'x-timer': 'S1473343633.920293,VS0,VE268',
41 silly get vary: 'Accept-Encoding' } ]
42 verbose get saving dev to C:\Users\IZ-Syed\AppData\Roaming\npm-cache\registry.npmjs.org\dev\.cache.json
43 silly addNameRange number 2 { name: 'dev', range: '*', hasData: true }
44 silly addNameRange versions [ 'dev',
44 silly addNameRange [ '0.1.0',
44 silly addNameRange '0.1.1',
44 silly addNameRange '0.1.2',
44 silly addNameRange '0.1.3',
44 silly addNameRange '0.1.1-d',
44 silly addNameRange '0.1.1-e',
44 silly addNameRange '0.1.1-f',
44 silly addNameRange '0.1.1-g',
44 silly addNameRange '0.1.1-h',
44 silly addNameRange '0.1.1-n',
44 silly addNameRange '0.1.1-p' ] ]
45 silly addNamed [email protected]
46 verbose addNamed "0.1.3" is a plain semver version for dev
47 silly mapToRegistry name dev
48 silly mapToRegistry using default registry
49 silly mapToRegistry registry https://registry.npmjs.org/
50 silly mapToRegistry uri https://registry.npmjs.org/dev
51 verbose addRemoteTarball https://registry.npmjs.org/dev/-/dev-0.1.3.tgz not in flight; adding
52 verbose addRemoteTarball [ 'https://registry.npmjs.org/dev/-/dev-0.1.3.tgz',
52 verbose addRemoteTarball '89fdc08705e0e7eaef92d012e26751e4d744322a' ]
53 info retry fetch attempt 1 at 7:37:13 PM
54 info attempt registry request try #1 at 7:37:13 PM
55 http fetch GET https://registry.npmjs.org/dev/-/dev-0.1.3.tgz
56 http 200 https://registry.npmjs.org/grunt-contrib-watch
57 silly get cb [ 200,
57 silly get { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
57 silly get etag: '"5UM9TQIF17VJVMT45DKV30F8R"',
57 silly get 'content-type': 'application/json',
57 silly get 'content-encoding': 'gzip',
57 silly get 'cache-control': 'max-age=300',
57 silly get 'content-length': '14701',
57 silly get 'accept-ranges': 'bytes',
57 silly get date: 'Thu, 08 Sep 2016 14:07:13 GMT',
57 silly get via: '1.1 varnish',
57 silly get age: '199',
57 silly get connection: 'keep-alive',
57 silly get 'x-served-by': 'cache-sin6927-SIN',
57 silly get 'x-cache': 'HIT',
57 silly get 'x-cache-hits': '1',
57 silly get 'x-timer': 'S1473343633.948986,VS0,VE0',
57 silly get vary: 'Accept-Encoding' } ]
58 verbose get saving grunt-contrib-watch to C:\Users\IZ-Syed\AppData\Roaming\npm-cache\registry.npmjs.org\grunt-contrib-watch\.cache.json
59 silly addNameRange number 2 { name: 'grunt-contrib-watch', range: '*', hasData: true }
60 silly addNameRange versions [ 'grunt-contrib-watch',
60 silly addNameRange [ '0.1.0',
60 silly addNameRange '0.1.1',
60 silly addNameRange '0.1.2',
60 silly addNameRange '0.1.3',
60 silly addNameRange '0.1.4',
60 silly addNameRange '0.2.0',
60 silly addNameRange '0.3.0',
60 silly addNameRange '0.3.1',
60 silly addNameRange '0.4.0',
60 silly addNameRange '0.4.1',
60 silly addNameRange '0.4.2',
60 silly addNameRange '0.4.3',
60 silly addNameRange '0.4.4',
60 silly addNameRange '0.5.0',
60 silly addNameRange '0.5.1',
60 silly addNameRange '0.5.2',
60 silly addNameRange '0.5.3',
60 silly addNameRange '0.6.0',
60 silly addNameRange '0.6.1',
60 silly addNameRange '1.0.0',
60 silly addNameRange '0.2.0-a',
60 silly addNameRange '0.2.0-rc5',
60 silly addNameRange '0.2.0-rc7' ] ]
61 silly addNamed [email protected]
62 verbose addNamed "1.0.0" is a plain semver version for grunt-contrib-watch
63 silly mapToRegistry name grunt-contrib-watch
64 silly mapToRegistry using default registry
65 silly mapToRegistry registry https://registry.npmjs.org/
66 silly mapToRegistry uri https://registry.npmjs.org/grunt-contrib-watch
67 verbose addRemoteTarball https://registry.npmjs.org/grunt-contrib-watch/-/grunt-contrib-watch-1.0.0.tgz not in flight; adding
68 verbose addRemoteTarball [ 'https://registry.npmjs.org/grunt-contrib-watch/-/grunt-contrib-watch-1.0.0.tgz',
68 verbose addRemoteTarball '84a1a7a1d6abd26ed568413496c73133e990018f' ]
69 info retry fetch attempt 1 at 7:37:13 PM
70 info attempt registry request try #1 at 7:37:13 PM
71 http fetch GET https://registry.npmjs.org/grunt-contrib-watch/-/grunt-contrib-watch-1.0.0.tgz
72 http fetch 200 https://registry.npmjs.org/dev/-/dev-0.1.3.tgz
73 silly fetchAndShaCheck shasum 89fdc08705e0e7eaef92d012e26751e4d744322a
74 verbose addTmpTarball C:\Users\IZ-Syed\AppData\Local\Temp\npm-5224-f2108467\registry.npmjs.org\dev\-\dev-0.1.3.tgz not in flight; adding
75 verbose addTmpTarball already have metadata; skipping unpack for [email protected]
76 silly cache afterAdd [email protected]
77 verbose afterAdd C:\Users\IZ-Syed\AppData\Roaming\npm-cache\dev\0.1.3\package\package.json not in flight; writing
78 verbose afterAdd C:\Users\IZ-Syed\AppData\Roaming\npm-cache\dev\0.1.3\package\package.json written
79 http fetch 200 https://registry.npmjs.org/grunt-contrib-watch/-/grunt-contrib-watch-1.0.0.tgz
80 silly fetchAndShaCheck shasum 84a1a7a1d6abd26ed568413496c73133e990018f
81 verbose addTmpTarball C:\Users\IZ-Syed\AppData\Local\Temp\npm-5224-f2108467\registry.npmjs.org\grunt-contrib-watch\-\grunt-contrib-watch-1.0.0.tgz not in flight; adding
82 verbose addTmpTarball already have metadata; skipping unpack for [email protected]
83 silly cache afterAdd [email protected]
84 verbose afterAdd C:\Users\IZ-Syed\AppData\Roaming\npm-cache\grunt-contrib-watch\1.0.0\package\package.json not in flight; writing
85 verbose afterAdd C:\Users\IZ-Syed\AppData\Roaming\npm-cache\grunt-contrib-watch\1.0.0\package\package.json written
86 silly install resolved [ { name: 'dev',
86 silly install resolved description: 'Reruns the given file whenever the current working dir subtree has modifications.',
86 silly install resolved version: '0.1.3',
86 silly install resolved repository: { type: 'git', url: 'git://github.com/iliakan/node-dev.git' },
86 silly install resolved author:
86 silly install resolved { name: 'Ilya Kantor',
86 silly install resolved email: '[email protected]',
86 silly install resolved url: 'http://javascript.info/' },
86 silly install resolved preferGlobal: true,
86 silly install resolved bin: { 'node-dev': './node-dev.sh' },
86 silly install resolved dependencies: { inotify: '>= 0.1.6' },
86 silly install resolved devDependencies: {},
86 silly install resolved _id: '[email protected]',
86 silly install resolved engines: { node: '*' },
86 silly install resolved _engineSupported: true,
86 silly install resolved _npmVersion: '1.0.6',
86 silly install resolved _nodeVersion: 'v0.5.0-pre',
86 silly install resolved _defaultsLoaded: true,
86 silly install resolved dist:
86 silly install resolved { shasum: '89fdc08705e0e7eaef92d012e26751e4d744322a',
86 silly install resolved tarball: 'https://registry.npmjs.org/dev/-/dev-0.1.3.tgz' },
86 silly install resolved scripts: {},
86 silly install resolved directories: {},
86 silly install resolved _shasum: '89fdc08705e0e7eaef92d012e26751e4d744322a',
86 silly install resolved _resolved: 'https://registry.npmjs.org/dev/-/dev-0.1.3.tgz',
86 silly install resolved _from: 'dev@*' },
86 silly install resolved { name: 'grunt-contrib-watch',
86 silly install resolved description: 'Run predefined tasks whenever watched file patterns are added, changed or deleted',
86 silly install resolved version: '1.0.0',
86 silly install resolved author: { name: 'Grunt Team', url: 'http://gruntjs.com/' },
86 silly install resolved repository:
86 silly install resolved { type: 'git',
86 silly install resolved url: 'https://github.com/gruntjs/grunt-contrib-watch' },
86 silly install resolved license: 'MIT',
86 silly install resolved engines: { node: '>=0.10.0' },
86 silly install resolved main: 'tasks/watch.js',
86 silly install resolved scripts: { test: 'grunt test -v' },
86 silly install resolved dependencies:
86 silly install resolved { async: '^1.5.0',
86 silly install resolved gaze: '^1.0.0',
86 silly install resolved lodash: '^3.10.1',
86 silly install resolved 'tiny-lr': '^0.2.1' },
86 silly install resolved devDependencies:
86 silly install resolved { grunt: '^0.4.5',
86 silly install resolved 'grunt-cli': '^0.1.13',
86 silly install resolved 'grunt-contrib-internal': '^0.4.14',
86 silly install resolved 'grunt-contrib-jshint': '^1.0.0',
86 silly install resolved 'grunt-contrib-nodeunit': '^1.0.0',
86 silly install resolved 'grunt-jscs': '^2.8.0',
86 silly install resolved 'underscore.string': '^3.2.2' },
86 silly install resolved keywords: [ 'gruntplugin', 'watch', 'livereload' ],
86 silly install resolved files: [ 'tasks' ],
86 silly install resolved contributors:
86 silly install resolved [ [Object],
86 silly install resolved [Object],
86 silly install resolved [Object],
86 silly install resolved [Object],
86 silly install resolved [Object],
86 silly install resolved [Object],
86 silly install resolved [Object],
86 silly install resolved [Object],
86 silly install resolved [Object],
86 silly install resolved [Object],
86 silly install resolved [Object],
86 silly install resolved [Object],
86 silly install resolved [Object],
86 silly install resolved [Object],
86 silly install resolved [Object],
86 silly install resolved [Object],
86 silly install resolved [Object],
86 silly install resolved [Object],
86 silly install resolved [Object],
86 silly install resolved [Object],
86 silly install resolved [Object] ],
86 silly install resolved gitHead: 'd3d8c01b25e0c759d76b236313cf49963983cb77',
86 silly install resolved bugs: { url: 'https://github.com/gruntjs/grunt-contrib-watch/issues' },
86 silly install resolved homepage: 'https://github.com/gruntjs/grunt-contrib-watch',
86 silly install resolved _id: '[email protected]',
86 silly install resolved _shasum: '84a1a7a1d6abd26ed568413496c73133e990018f',
86 silly install resolved _from: 'grunt-contrib-watch@*',
86 silly install resolved _npmVersion: '2.14.12',
86 silly install resolved _nodeVersion: '4.2.6',
86 silly install resolved _npmUser: { name: 'shama', email: '[email protected]' },
86 silly install resolved maintainers: [ [Object], [Object], [Object], [Object], [Object], [Object] ],
86 silly install resolved dist:
86 silly install resolved { shasum: '84a1a7a1d6abd26ed568413496c73133e990018f',
86 silly install resolved tarball: 'https://registry.npmjs.org/grunt-contrib-watch/-/grunt-contrib-watch-1.0.0.tgz' },
86 silly install resolved _npmOperationalInternal:
86 silly install resolved { host: 'packages-12-west.internal.npmjs.com',
86 silly install resolved tmp: 'tmp/grunt-contrib-watch-1.0.0.tgz_1457820583535_0.12563787307590246' },
86 silly install resolved directories: {},
86 silly install resolved _resolved: 'https://registry.npmjs.org/grunt-contrib-watch/-/grunt-contrib-watch-1.0.0.tgz' } ]
87 info install [email protected] into E:\xampp\htdocs\base_path
88 info install [email protected] into E:\xampp\htdocs\base_path
89 info installOne [email protected]
90 verbose installOne of dev to E:\xampp\htdocs\base_path not in flight; installing
91 info installOne [email protected]
92 verbose installOne of grunt-contrib-watch to E:\xampp\htdocs\base_path not in flight; installing
93 verbose lock using C:\Users\IZ-Syed\AppData\Roaming\npm-cache\_locks\dev-bed1499cffba6946.lock for E:\xampp\htdocs\base_path\node_modules\dev
94 silly install write writing dev 0.1.3 to E:\xampp\htdocs\base_path\node_modules\dev
95 verbose lock using C:\Users\IZ-Syed\AppData\Roaming\npm-cache\_locks\grunt-contrib-watch-c3a122429259efbe.lock for E:\xampp\htdocs\base_path\node_modules\grunt-contrib-watch
96 silly install write writing grunt-contrib-watch 1.0.0 to E:\xampp\htdocs\base_path\node_modules\grunt-contrib-watch
97 verbose unbuild node_modules\dev
98 verbose unbuild node_modules\grunt-contrib-watch
99 silly gentlyRm E:\xampp\htdocs\base_path\node_modules\dev is being purged from base E:\xampp\htdocs\base_path
100 verbose gentlyRm don't care about contents; nuking E:\xampp\htdocs\base_path\node_modules\dev
101 verbose tar unpack C:\Users\IZ-Syed\AppData\Roaming\npm-cache\dev\0.1.3\package.tgz
102 verbose tar unpacking to E:\xampp\htdocs\base_path\node_modules\dev
103 silly gentlyRm E:\xampp\htdocs\base_path\node_modules\dev is being purged
104 verbose gentlyRm don't care about contents; nuking E:\xampp\htdocs\base_path\node_modules\dev
105 silly gentlyRm E:\xampp\htdocs\base_path\node_modules\grunt-contrib-watch is being purged from base E:\xampp\htdocs\base_path
106 verbose gentlyRm don't care about contents; nuking E:\xampp\htdocs\base_path\node_modules\grunt-contrib-watch
107 silly gunzTarPerm modes [ '777', '666' ]
108 verbose tar unpack C:\Users\IZ-Syed\AppData\Roaming\npm-cache\grunt-contrib-watch\1.0.0\package.tgz
109 verbose tar unpacking to E:\xampp\htdocs\base_path\node_modules\grunt-contrib-watch
110 silly gentlyRm E:\xampp\htdocs\base_path\node_modules\grunt-contrib-watch is being purged
111 verbose gentlyRm don't care about contents; nuking E:\xampp\htdocs\base_path\node_modules\grunt-contrib-watch
112 silly gunzTarPerm modes [ '777', '666' ]
113 silly gunzTarPerm extractEntry index.js
114 silly gunzTarPerm modified mode [ 'index.js', 420, 438 ]
115 silly gunzTarPerm extractEntry package.json
116 silly gunzTarPerm modified mode [ 'package.json', 420, 438 ]
117 silly gunzTarPerm extractEntry .npmignore
118 silly gunzTarPerm modified mode [ '.npmignore', 420, 438 ]
119 silly gunzTarPerm extractEntry readme.md
120 silly gunzTarPerm modified mode [ 'readme.md', 484, 502 ]
121 silly gunzTarPerm extractEntry README.md
122 silly gunzTarPerm modified mode [ 'README.md', 420, 438 ]
123 silly gunzTarPerm extractEntry CHANGELOG
124 silly gunzTarPerm modified mode [ 'CHANGELOG', 420, 438 ]
125 silly gunzTarPerm extractEntry tasks/watch.js
126 silly gunzTarPerm modified mode [ 'tasks/watch.js', 420, 438 ]
127 silly gunzTarPerm extractEntry tasks/lib/livereload.js
128 silly gunzTarPerm modified mode [ 'tasks/lib/livereload.js', 420, 438 ]
129 silly gunzTarPerm extractEntry tasks/lib/taskrun.js
130 silly gunzTarPerm modified mode [ 'tasks/lib/taskrun.js', 420, 438 ]
131 silly gunzTarPerm extractEntry tasks/lib/taskrunner.js
132 silly gunzTarPerm modified mode [ 'tasks/lib/taskrunner.js', 420, 438 ]
133 silly gunzTarPerm extractEntry package.json
134 silly gunzTarPerm modified mode [ 'package.json', 484, 502 ]
135 silly gunzTarPerm extractEntry node-dev.sh
136 silly gunzTarPerm modified mode [ 'node-dev.sh', 484, 502 ]
137 silly gunzTarPerm extractEntry manager.js
138 silly gunzTarPerm modified mode [ 'manager.js', 484, 502 ]
139 verbose write writing to E:\xampp\htdocs\base_path\node_modules\dev\package.json
140 info preinstall [email protected]
141 verbose readDependencies loading dependencies from E:\xampp\htdocs\base_path\node_modules\dev\package.json
142 silly prepareForInstallMany adding inotify@>= 0.1.6 from dev dependencies
143 verbose readDependencies loading dependencies from E:\xampp\htdocs\base_path\node_modules\dev\package.json
144 silly cache add args [ 'inotify@>= 0.1.6', null ]
145 verbose cache add spec inotify@>= 0.1.6
146 silly cache add parsed spec { raw: 'inotify@>= 0.1.6',
146 silly cache add scope: null,
146 silly cache add name: 'inotify',
146 silly cache add rawSpec: '>= 0.1.6',
146 silly cache add spec: '>=0.1.6',
146 silly cache add type: 'range' }
147 silly addNamed inotify@>=0.1.6
148 verbose addNamed ">=0.1.6" is a valid semver range for inotify
149 silly addNameRange { name: 'inotify', range: '>=0.1.6', hasData: false }
150 silly mapToRegistry name inotify
151 silly mapToRegistry using default registry
152 silly mapToRegistry registry https://registry.npmjs.org/
153 silly mapToRegistry uri https://registry.npmjs.org/inotify
154 verbose addNameRange registry:https://registry.npmjs.org/inotify not in flight; fetching
155 verbose request uri https://registry.npmjs.org/inotify
156 verbose request no auth needed
157 info attempt registry request try #1 at 7:37:15 PM
158 http request GET https://registry.npmjs.org/inotify
159 verbose write writing to E:\xampp\htdocs\base_path\node_modules\grunt-contrib-watch\package.json
160 info preinstall [email protected]
161 verbose readDependencies loading dependencies from E:\xampp\htdocs\base_path\node_modules\grunt-contrib-watch\package.json
162 silly prepareForInstallMany adding async@^1.5.0 from grunt-contrib-watch dependencies
163 silly prepareForInstallMany adding gaze@^1.0.0 from grunt-contrib-watch dependencies
164 silly prepareForInstallMany adding lodash@^3.10.1 from grunt-contrib-watch dependencies
165 silly prepareForInstallMany adding tiny-lr@^0.2.1 from grunt-contrib-watch dependencies
166 verbose readDependencies loading dependencies from E:\xampp\htdocs\base_path\node_modules\grunt-contrib-watch\package.json
167 silly cache add args [ 'async@^1.5.0', null ]
168 verbose cache add spec async@^1.5.0
169 silly cache add args [ 'gaze@^1.0.0', null ]
170 verbose cache add spec gaze@^1.0.0
171 silly cache add parsed spec { raw: 'async@^1.5.0',
171 silly cache add scope: null,
171 silly cache add name: 'async',
171 silly cache add rawSpec: '^1.5.0',
171 silly cache add spec: '>=1.5.0 <2.0.0',
171 silly cache add type: 'range' }
172 silly addNamed async@>=1.5.0 <2.0.0
173 verbose addNamed ">=1.5.0 <2.0.0" is a valid semver range for async
174 silly addNameRange { name: 'async', range: '>=1.5.0 <2.0.0', hasData: false }
175 silly mapToRegistry name async
176 silly mapToRegistry using default registry
177 silly mapToRegistry registry https://registry.npmjs.org/
178 silly mapToRegistry uri https://registry.npmjs.org/async
179 verbose addNameRange registry:https://registry.npmjs.org/async not in flight; fetching
180 silly cache add parsed spec { raw: 'gaze@^1.0.0',
180 silly cache add scope: null,
180 silly cache add name: 'gaze',
180 silly cache add rawSpec: '^1.0.0',
180 silly cache add spec: '>=1.0.0 <2.0.0',
180 silly cache add type: 'range' }
181 silly addNamed gaze@>=1.0.0 <2.0.0
182 verbose addNamed ">=1.0.0 <2.0.0" is a valid semver range for gaze
183 silly addNameRange { name: 'gaze', range: '>=1.0.0 <2.0.0', hasData: false }
184 silly mapToRegistry name gaze
185 silly mapToRegistry using default registry
186 silly mapToRegistry registry https://registry.npmjs.org/
187 silly mapToRegistry uri https://registry.npmjs.org/gaze
188 verbose addNameRange registry:https://registry.npmjs.org/gaze not in flight; fetching
189 silly cache add args [ 'lodash@^3.10.1', null ]
190 verbose cache add spec lodash@^3.10.1
191 silly cache add parsed spec { raw: 'lodash@^3.10.1',
191 silly cache add scope: null,
191 silly cache add name: 'lodash',
191 silly cache add rawSpec: '^3.10.1',
191 silly cache add spec: '>=3.10.1 <4.0.0',
191 silly cache add type: 'range' }
192 silly addNamed lodash@>=3.10.1 <4.0.0
193 verbose addNamed ">=3.10.1 <4.0.0" is a valid semver range for lodash
194 silly addNameRange { name: 'lodash', range: '>=3.10.1 <4.0.0', hasData: false }
195 silly mapToRegistry name lodash
196 silly mapToRegistry using default registry
197 silly mapToRegistry registry https://registry.npmjs.org/
198 silly mapToRegistry uri https://registry.npmjs.org/lodash
199 verbose addNameRange registry:https://registry.npmjs.org/lodash not in flight; fetching
200 silly cache add args [ 'tiny-lr@^0.2.1', null ]
201 verbose cache add spec tiny-lr@^0.2.1
202 silly cache add parsed spec { raw: 'tiny-lr@^0.2.1',
202 silly cache add scope: null,
202 silly cache add name: 'tiny-lr',
202 silly cache add rawSpec: '^0.2.1',
202 silly cache add spec: '>=0.2.1 <0.3.0',
202 silly cache add type: 'range' }
203 silly addNamed tiny-lr@>=0.2.1 <0.3.0
204 verbose addNamed ">=0.2.1 <0.3.0" is a valid semver range for tiny-lr
205 silly addNameRange { name: 'tiny-lr', range: '>=0.2.1 <0.3.0', hasData: false }
206 silly mapToRegistry name tiny-lr
207 silly mapToRegistry using default registry
208 silly mapToRegistry registry https://registry.npmjs.org/
209 silly mapToRegistry uri https://registry.npmjs.org/tiny-lr
210 verbose addNameRange registry:https://registry.npmjs.org/tiny-lr not in flight; fetching
211 verbose request uri https://registry.npmjs.org/async
212 verbose request no auth needed
213 info attempt registry request try #1 at 7:37:15 PM
214 verbose etag "31SS41WWRPKKC7NRCRVEF8O61"
215 http request GET https://registry.npmjs.org/async
216 verbose request uri https://registry.npmjs.org/lodash
217 verbose request no auth needed
218 info attempt registry request try #1 at 7:37:15 PM
219 verbose etag "AFW2398T0L5OUVRFD1DTGMWZS"
220 http request GET https://registry.npmjs.org/lodash
221 verbose request uri https://registry.npmjs.org/tiny-lr
222 verbose request no auth needed
223 info attempt registry request try #1 at 7:37:15 PM
224 http request GET https://registry.npmjs.org/tiny-lr
225 verbose request uri https://registry.npmjs.org/gaze
226 verbose request no auth needed
227 info attempt registry request try #1 at 7:37:15 PM
228 verbose etag "BFP25EFPDVI8F42LAG14OJJSY"
229 http request GET https://registry.npmjs.org/gaze
230 http 304 https://registry.npmjs.org/lodash
231 silly get cb [ 304,
231 silly get { date: 'Thu, 08 Sep 2016 14:07:17 GMT',
231 silly get via: '1.1 varnish',
231 silly get 'cache-control': 'max-age=300',
231 silly get etag: '"AFW2398T0L5OUVRFD1DTGMWZS"',
231 silly get age: '17',
231 silly get connection: 'keep-alive',
231 silly get 'x-served-by': 'cache-sin6924-SIN',
231 silly get 'x-cache': 'HIT',
231 silly get 'x-cache-hits': '2',
231 silly get 'x-timer': 'S1473343637.487085,VS0,VE0',
231 silly get vary: 'Accept-Encoding' } ]
232 verbose etag https://registry.npmjs.org/lodash from cache
233 verbose get saving lodash to C:\Users\IZ-Syed\AppData\Roaming\npm-cache\registry.npmjs.org\lodash\.cache.json
234 http 304 https://registry.npmjs.org/async
235 silly get cb [ 304,
235 silly get { date: 'Thu, 08 Sep 2016 14:07:17 GMT',
235 silly get via: '1.1 varnish',
235 silly get 'cache-control': 'max-age=300',
235 silly get etag: '"31SS41WWRPKKC7NRCRVEF8O61"',
235 silly get age: '257',
235 silly get connection: 'keep-alive',
235 silly get 'x-served-by': 'cache-sin6926-SIN',
235 silly get 'x-cache': 'HIT',
235 silly get 'x-cache-hits': '42',
235 silly get 'x-timer': 'S1473343637.480826,VS0,VE0',
235 silly get vary: 'Accept-Encoding' } ]
236 verbose etag https://registry.npmjs.org/async from cache
237 verbose get saving async to C:\Users\IZ-Syed\AppData\Roaming\npm-cache\registry.npmjs.org\async\.cache.json
238 silly addNameRange number 2 { name: 'lodash', range: '>=3.10.1 <4.0.0', hasData: true }
239 silly addNameRange versions [ 'lodash',
239 silly addNameRange [ '0.1.0',
239 silly addNameRange '0.2.0',
239 silly addNameRange '0.2.1',
239 silly addNameRange '0.2.2',
239 silly addNameRange '0.3.0',
239 silly addNameRange '0.3.1',
239 silly addNameRange '0.3.2',
239 silly addNameRange '0.4.0',
239 silly addNameRange '0.4.1',
239 silly addNameRange '0.4.2',
239 silly addNameRange '0.5.0-rc.1',
239 silly addNameRange '0.5.0',
239 silly addNameRange '0.5.1',
239 silly addNameRange '0.5.2',
239 silly addNameRange '0.6.0',
239 silly addNameRange '0.6.1',
239 silly addNameRange '0.7.0',
239 silly addNameRange '0.8.0',
239 silly addNameRange '0.8.1',
239 silly addNameRange '0.8.2',
239 silly addNameRange '0.9.0',
239 silly addNameRange '0.9.1',
239 silly addNameRange '0.9.2',
239 silly addNameRange '0.10.0',
239 silly addNameRange '1.0.0-rc.1',
239 silly addNameRange '1.0.0-rc.2',
239 silly addNameRange '1.0.0-rc.3',
239 silly addNameRange '1.0.0',
239 silly addNameRange '1.0.1',
239 silly addNameRange '1.1.0',
239 silly addNameRange '1.1.1',
239 silly addNameRange '1.2.0',
239 silly addNameRange '1.2.1',
239 silly addNameRange '1.3.0',
239 silly addNameRange '1.3.1',
239 silly addNameRange '2.0.0',
239 silly addNameRange '2.1.0',
239 silly addNameRange '2.2.0',
239 silly addNameRange '2.2.1',
239 silly addNameRange '2.3.0',
239 silly addNameRange '2.4.0',
239 silly addNameRange '2.4.1',
239 silly addNameRange '3.0.0',
239 silly addNameRange '3.0.1',
239 silly addNameRange '3.1.0',
239 silly addNameRange '3.2.0',
239 silly addNameRange '3.3.0',
239 silly addNameRange '3.3.1',
239 silly addNameRange '3.4.0',
239 silly addNameRange '3.5.0',
239 silly addNameRange '3.6.0',
239 silly addNameRange '1.0.2',
239 silly addNameRange '3.7.0',
239 silly addNameRange '2.4.2',
239 silly addNameRange '3.8.0',
239 silly addNameRange '3.9.0',
239 silly addNameRange '3.9.1',
239 silly addNameRange '3.9.2',
239 silly addNameRange '3.9.3',
239 silly addNameRange '3.10.0',
239 silly addNameRange '3.10.1',
239 silly addNameRange '4.0.0',
239 silly addNameRange '4.0.1',
239 silly addNameRange '4.1.0',
239 silly addNameRange '4.2.0',
239 silly addNameRange '4.2.1',
239 silly addNameRange '4.3.0',
239 silly addNameRange '4.4.0',
239 silly addNameRange '4.5.0',
239 silly addNameRange '4.5.1',
239 silly addNameRange '4.6.0',
239 silly addNameRange '4.6.1',
239 silly addNameRange '4.7.0',
239 silly addNameRange '4.8.0',
239 silly addNameRange '4.8.1',
239 silly addNameRange '4.8.2',
239 silly addNameRange '4.9.0',
239 silly addNameRange '4.10.0',
239 silly addNameRange '4.11.0',
239 silly addNameRange '4.11.1',
239 silly addNameRange '4.11.2',
239 silly addNameRange '4.12.0',
239 silly addNameRange '4.13.0',
239 silly addNameRange '4.13.1',
239 silly addNameRange '4.14.0',
239 silly addNameRange '4.14.1',
239 silly addNameRange '4.14.2',
239 silly addNameRange '4.15.0' ] ]
240 silly addNamed [email protected]
241 verbose addNamed "3.10.1" is a plain semver version for lodash
242 silly addNameRange number 2 { name: 'async', range: '>=1.5.0 <2.0.0', hasData: true }
243 silly addNameRange versions [ 'async',
243 silly addNameRange [ '0.1.0',
243 silly addNameRange '0.1.1',
243 silly addNameRange '0.1.2',
243 silly addNameRange '0.1.3',
243 silly addNameRange '0.1.4',
243 silly addNameRange '0.1.5',
243 silly addNameRange '0.1.6',
243 silly addNameRange '0.1.7',
243 silly addNameRange '0.1.8',
243 silly addNameRange '0.1.9',
243 silly addNameRange '0.1.10',
243 silly addNameRange '0.1.11',
243 silly addNameRange '0.1.12',
243 silly addNameRange '0.1.13',
243 silly addNameRange '0.1.14',
243 silly addNameRange '0.1.15',
243 silly addNameRange '0.1.16',
243 silly addNameRange '0.1.17',
243 silly addNameRange '0.1.18',
243 silly addNameRange '0.1.19',
243 silly addNameRange '0.1.20',
243 silly addNameRange '0.1.21',
243 silly addNameRange '0.1.22',
243 silly addNameRange '0.2.0',
243 silly addNameRange '0.2.1',
243 silly addNameRange '0.2.2',
243 silly addNameRange '0.2.3',
243 silly addNameRange '0.2.4',
243 silly addNameRange '0.2.5',
243 silly addNameRange '0.2.6',
243 silly addNameRange '0.2.7',
243 silly addNameRange '0.2.8',
243 silly addNameRange '0.2.9',
243 silly addNameRange '0.2.10',
243 silly addNameRange '0.3.0',
243 silly addNameRange '0.4.0',
243 silly addNameRange '0.4.1',
243 silly addNameRange '0.5.0',
243 silly addNameRange '0.6.0',
243 silly addNameRange '0.6.1',
243 silly addNameRange '0.6.2',
243 silly addNameRange '0.7.0',
243 silly addNameRange '0.8.0',
243 silly addNameRange '0.9.0',
243 silly addNameRange '0.9.2',
243 silly addNameRange '1.0.0',
243 silly addNameRange '1.1.0',
243 silly addNameRange '1.2.0',
243 silly addNameRange '1.1.1',
243 silly addNameRange '1.2.1',
243 silly addNameRange '1.3.0',
243 silly addNameRange '1.4.0',
243 silly addNameRange '1.4.1',
243 silly addNameRange '1.4.2',
243 silly addNameRange '1.5.0',
243 silly addNameRange '1.5.1',
243 silly addNameRange '1.5.2',
243 silly addNameRange '2.0.0-alpha.0',
243 silly addNameRange '2.0.0-rc.1',
243 silly addNameRange '2.0.0-rc.2',
243 silly addNameRange '2.0.0-rc.3',
243 silly addNameRange '2.0.0-rc.4',
243 silly addNameRange '2.0.0-rc.5',
243 silly addNameRange '2.0.0-rc.6',
243 silly addNameRange '2.0.0',
243 silly addNameRange '2.0.1' ] ]
244 silly addNamed [email protected]
245 verbose addNamed "1.5.2" is a plain semver version for async
246 silly cache afterAdd [email protected]
247 verbose afterAdd C:\Users\IZ-Syed\AppData\Roaming\npm-cache\lodash\3.10.1\package\package.json not in flight; writing
248 silly cache afterAdd [email protected]
249 verbose afterAdd C:\Users\IZ-Syed\AppData\Roaming\npm-cache\async\1.5.2\package\package.json not in flight; writing
250 verbose afterAdd C:\Users\IZ-Syed\AppData\Roaming\npm-cache\lodash\3.10.1\package\package.json written
251 verbose afterAdd C:\Users\IZ-Syed\AppData\Roaming\npm-cache\async\1.5.2\package\package.json written
252 http 200 https://registry.npmjs.org/tiny-lr
253 silly get cb [ 200,
253 silly get { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
253 silly get etag: '"BGN3IAYXXLFNPD2CJZKMSO702"',
253 silly get 'content-type': 'application/json',
253 silly get 'content-encoding': 'gzip',
253 silly get 'cache-control': 'max-age=300',
253 silly get 'content-length': '6955',
253 silly get 'accept-ranges': 'bytes',
253 silly get date: 'Thu, 08 Sep 2016 14:07:17 GMT',
253 silly get via: '1.1 varnish',
253 silly get age: '159',
253 silly get connection: 'keep-alive',
253 silly get 'x-served-by': 'cache-sin6927-SIN',
253 silly get 'x-cache': 'HIT',
253 silly get 'x-cache-hits': '57',
253 silly get 'x-timer': 'S1473343637.506791,VS0,VE0',
253 silly get vary: 'Accept-Encoding' } ]
254 verbose get saving tiny-lr to C:\Users\IZ-Syed\AppData\Roaming\npm-cache\registry.npmjs.org\tiny-lr\.cache.json
255 http 200 https://registry.npmjs.org/gaze
256 silly get cb [ 200,
256 silly get { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
256 silly get etag: '"F0MIBIB7879KB0V5FCWS9ATSW"',
256 silly get 'content-type': 'application/json',
256 silly get 'content-encoding': 'gzip',
256 silly get 'cache-control': 'max-age=300',
256 silly get 'content-length': '9287',
256 silly get 'accept-ranges': 'bytes',
256 silly get date: 'Thu, 08 Sep 2016 14:07:17 GMT',
256 silly get via: '1.1 varnish',
256 silly get age: '68',
256 silly get connection: 'keep-alive',
256 silly get 'x-served-by': 'cache-sin6920-SIN',
256 silly get 'x-cache': 'HIT',
256 silly get 'x-cache-hits': '2',
256 silly get 'x-timer': 'S1473343637.518505,VS0,VE0',
256 silly get vary: 'Accept-Encoding' } ]
257 verbose get saving gaze to C:\Users\IZ-Syed\AppData\Roaming\npm-cache\registry.npmjs.org\gaze\.cache.json
258 silly addNameRange number 2 { name: 'tiny-lr', range: '>=0.2.1 <0.3.0', hasData: true }
259 silly addNameRange versions [ 'tiny-lr',
259 silly addNameRange [ '0.0.1',
259 silly addNameRange '0.0.2',
259 silly addNameRange '0.0.3',
259 silly addNameRange '0.0.4',
259 silly addNameRange '0.0.5',
259 silly addNameRange '0.0.7',
259 silly addNameRange '0.0.8',
259 silly addNameRange '0.0.9',
259 silly addNameRange '0.1.0',
259 silly addNameRange '0.1.1',
259 silly addNameRange '0.1.3',
259 silly addNameRange '0.1.4',
259 silly addNameRange '0.1.5',
259 silly addNameRange '0.1.6',
259 silly addNameRange '0.1.7',
259 silly addNameRange '0.2.0',
259 silly addNameRange '0.2.1' ] ]
260 silly addNamed [email protected]
261 verbose addNamed "0.2.1" is a plain semver version for tiny-lr
262 silly mapToRegistry name tiny-lr
263 silly mapToRegistry using default registry
264 silly mapToRegistry registry https://registry.npmjs.org/
265 silly mapToRegistry uri https://registry.npmjs.org/tiny-lr
266 verbose addRemoteTarball https://registry.npmjs.org/tiny-lr/-/tiny-lr-0.2.1.tgz not in flight; adding
267 verbose addRemoteTarball [ 'https://registry.npmjs.org/tiny-lr/-/tiny-lr-0.2.1.tgz',
267 verbose addRemoteTarball 'b3fdba802e5d56a33c2f6f10794b32e477ac729d' ]
268 info retry fetch attempt 1 at 7:37:16 PM
269 info attempt registry request try #1 at 7:37:16 PM
270 http fetch GET https://registry.npmjs.org/tiny-lr/-/tiny-lr-0.2.1.tgz
271 silly addNameRange number 2 { name: 'gaze', range: '>=1.0.0 <2.0.0', hasData: true }
272 silly addNameRange versions [ 'gaze',
272 silly addNameRange [ '0.1.0',
272 silly addNameRange '0.1.1',
272 silly addNameRange '0.1.2',
272 silly addNameRange '0.1.3',
272 silly addNameRange '0.1.4',
272 silly addNameRange '0.1.5',
272 silly addNameRange '0.1.6',
272 silly addNameRange '0.2.0',
272 silly addNameRange '0.2.1',
272 silly addNameRange '0.2.2',
272 silly addNameRange '0.3.0',
272 silly addNameRange '0.3.1',
272 silly addNameRange '0.3.2',
272 silly addNameRange '0.3.3',
272 silly addNameRange '0.3.4',
272 silly addNameRange '0.4.0',
272 silly addNameRange '0.4.1',
272 silly addNameRange '0.4.2',
272 silly addNameRange '0.4.3',
272 silly addNameRange '0.5.0',
272 silly addNameRange '0.5.1',
272 silly addNameRange '0.6.0',
272 silly addNameRange '0.6.1',
272 silly addNameRange '0.6.2',
272 silly addNameRange '0.6.3',
272 silly addNameRange '0.6.4',
272 silly addNameRange '0.5.2',
272 silly addNameRange '1.0.0',
272 silly addNameRange '1.1.0',
272 silly addNameRange '1.1.1' ] ]
273 silly addNamed [email protected]
274 verbose addNamed "1.1.1" is a plain semver version for gaze
275 silly cache afterAdd [email protected]
276 verbose afterAdd C:\Users\IZ-Syed\AppData\Roaming\npm-cache\gaze\1.1.1\package\package.json not in flight; writing
277 verbose afterAdd C:\Users\IZ-Syed\AppData\Roaming\npm-cache\gaze\1.1.1\package\package.json written
278 http 200 https://registry.npmjs.org/inotify
279 silly get cb [ 200,
279 silly get { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
279 silly get etag: '"DJDJZLGYF0JXWEDSAJB20ON5A"',
279 silly get 'content-type': 'application/json',
279 silly get 'content-encoding': 'gzip',
279 silly get 'cache-control': 'max-age=300',
279 silly get 'content-length': '6577',
279 silly get 'accept-ranges': 'bytes',
279 silly get date: 'Thu, 08 Sep 2016 14:07:17 GMT',
279 silly get via: '1.1 varnish',
279 silly get age: '0',
279 silly get connection: 'keep-alive',
279 silly get 'x-served-by': 'cache-sin6921-SIN',
279 silly get 'x-cache': 'HIT',
279 silly get 'x-cache-hits': '1',
279 silly get 'x-timer': 'S1473343637.424987,VS0,VE286',
279 silly get vary: 'Accept-Encoding' } ]
280 verbose get saving inotify to C:\Users\IZ-Syed\AppData\Roaming\npm-cache\registry.npmjs.org\inotify\.cache.json
281 silly addNameRange number 2 { name: 'inotify', range: '>=0.1.6', hasData: true }
282 silly addNameRange versions [ 'inotify',
282 silly addNameRange [ '0.1.2',
282 silly addNameRange '0.1.3',
282 silly addNameRange '0.1.4',
282 silly addNameRange '0.1.5',
282 silly addNameRange '0.1.6',
282 silly addNameRange '0.1.7',
282 silly addNameRange '0.1.8',
282 silly addNameRange '0.2.0',
282 silly addNameRange '0.2.1',
282 silly addNameRange '0.2.2',
282 silly addNameRange '1.0.0',
282 silly addNameRange '1.1.0',
282 silly addNameRange '1.2.0',
282 silly addNameRange '1.2.1',
282 silly addNameRange '1.3.0',
282 silly addNameRange '1.4.0',
282 silly addNameRange '1.4.1' ] ]
283 silly addNamed [email protected]
284 verbose addNamed "1.4.1" is a plain semver version for inotify
285 silly mapToRegistry name inotify
286 silly mapToRegistry using default registry
287 silly mapToRegistry registry https://registry.npmjs.org/
288 silly mapToRegistry uri https://registry.npmjs.org/inotify
289 verbose addRemoteTarball https://registry.npmjs.org/inotify/-/inotify-1.4.1.tgz not in flight; adding
290 verbose addRemoteTarball [ 'https://registry.npmjs.org/inotify/-/inotify-1.4.1.tgz',
290 verbose addRemoteTarball '8abdeb7ee9cbc291542a252df00d848b2a8f9287' ]
291 info retry fetch attempt 1 at 7:37:16 PM
292 info attempt registry request try #1 at 7:37:16 PM
293 http fetch GET https://registry.npmjs.org/inotify/-/inotify-1.4.1.tgz
294 http fetch 200 https://registry.npmjs.org/tiny-lr/-/tiny-lr-0.2.1.tgz
295 silly fetchAndShaCheck shasum b3fdba802e5d56a33c2f6f10794b32e477ac729d
296 verbose addTmpTarball C:\Users\IZ-Syed\AppData\Local\Temp\npm-5224-f2108467\registry.npmjs.org\tiny-lr\-\tiny-lr-0.2.1.tgz not in flight; adding
297 verbose addTmpTarball already have metadata; skipping unpack for [email protected]
298 silly cache afterAdd [email protected]
299 verbose afterAdd C:\Users\IZ-Syed\AppData\Roaming\npm-cache\tiny-lr\0.2.1\package\package.json not in flight; writing
300 verbose afterAdd C:\Users\IZ-Syed\AppData\Roaming\npm-cache\tiny-lr\0.2.1\package\package.json written
301 silly install resolved [ { name: 'lodash',
301 silly install resolved version: '3.10.1',
301 silly install resolved description: 'The modern build of lodash modular utilities.',
301 silly install resolved homepage: 'https://lodash.com/',
301 silly install resolved icon: 'https://lodash.com/icon.svg',
301 silly install resolved license: 'MIT',
301 silly install resolved main: 'index.js',
301 silly install resolved keywords: [ 'modules', 'stdlib', 'util' ],
301 silly install resolved author:
301 silly install resolved { name: 'John-David Dalton',
301 silly install resolved email: '[email protected]',
301 silly install resolved url: 'http://allyoucanleet.com/' },
301 silly install resolved contributors: [ [Object], [Object], [Object], [Object], [Object] ],
301 silly install resolved repository: { type: 'git', url: 'git+https://github.com/lodash/lodash.git' },
301 silly install resolved scripts: { test: 'echo "See https://travis-ci.org/lodash/lodash-cli for testing details."' },
301 silly install resolved bugs: { url: 'https://github.com/lodash/lodash/issues' },
301 silly install resolved _id: '[email protected]',
301 silly install resolved _shasum: '5bf45e8e49ba4189e17d482789dfd15bd140b7b6',
301 silly install resolved _from: 'lodash@>=3.10.1 <4.0.0',
301 silly install resolved _npmVersion: '2.13.1',
301 silly install resolved _nodeVersion: '0.12.5',
301 silly install resolved _npmUser: { name: 'jdalton', email: '[email protected]' },
301 silly install resolved maintainers: [ [Object], [Object], [Object], [Object], [Object] ],
301 silly install resolved dist:
301 silly install resolved { shasum: '5bf45e8e49ba4189e17d482789dfd15bd140b7b6',
301 silly install resolved tarball: 'https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz' },
301 silly install resolved directories: {},
301 silly install resolved _resolved: 'https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz',
301 silly install resolved readme: 'ERROR: No README data found!' },
301 silly install resolved { name: 'async',
301 silly install resolved description: 'Higher-order functions and common patterns for asynchronous code',
301 silly install resolved main: 'lib/async.js',
301 silly install resolved files: [ 'lib', 'dist/async.js', 'dist/async.min.js' ],
301 silly install resolved author: { name: 'Caolan McMahon' },
301 silly install resolved version: '1.5.2',
301 silly install resolved keywords: [ 'async', 'callback', 'utility', 'module' ],
301 silly install resolved repository: { type: 'git', url: 'git+https://github.com/caolan/async.git' },
301 silly install resolved bugs: { url: 'https://github.com/caolan/async/issues' },
301 silly install resolved license: 'MIT',
301 silly install resolved devDependencies:
301 silly install resolved { benchmark: 'github:bestiejs/benchmark.js',
301 silly install resolved bluebird: '^2.9.32',
301 silly install resolved chai: '^3.1.0',
301 silly install resolved coveralls: '^2.11.2',
301 silly install resolved 'es6-promise': '^2.3.0',
301 silly install resolved jscs: '^1.13.1',
301 silly install resolved jshint: '~2.8.0',
301 silly install resolved karma: '^0.13.2',
301 silly install resolved 'karma-browserify': '^4.2.1',
301 silly install resolved 'karma-firefox-launcher': '^0.1.6',
301 silly install resolved 'karma-mocha': '^0.2.0',
301 silly install resolved 'karma-mocha-reporter': '^1.0.2',
301 silly install resolved lodash: '^3.9.0',
301 silly install resolved mkdirp: '~0.5.1',
301 silly install resolved mocha: '^2.2.5',
301 silly install resolved 'native-promise-only': '^0.8.0-a',
301 silly install resolved nodeunit: '>0.0.0',
301 silly install resolved nyc: '^2.1.0',
301 silly install resolved rsvp: '^3.0.18',
301 silly install resolved semver: '^4.3.6',
301 silly install resolved 'uglify-js': '~2.4.0',
301 silly install resolved xyz: '^0.5.0',
301 silly install resolved yargs: '~3.9.1' },
301 silly install resolved jam: { main: 'lib/async.js', include: [Object], categories: [Object] },
301 silly install resolved scripts:
301 silly install resolved { 'mocha-node-test': 'mocha mocha_test/',
301 silly install resolved 'mocha-browser-test': 'karma start',
301 silly install resolved 'mocha-test': 'npm run mocha-node-test && npm run mocha-browser-test',
301 silly install resolved 'nodeunit-test': 'nodeunit test/test-async.js',
301 silly install resolved test: 'npm run-script lint && npm run nodeunit-test && npm run mocha-test',
301 silly install resolved lint: 'jshint lib/*.js test/*.js perf/*.js && jscs lib/*.js test/*.js perf/*.js',
301 silly install resolved coverage: 'nyc npm test && nyc report',
301 silly install resolved coveralls: 'nyc npm test && nyc report --reporter=text-lcov | coveralls' },
301 silly install resolved spm: { main: 'lib/async.js' },
301 silly install resolved volo: { main: 'lib/async.js', ignore: [Object] },
301 silly install resolved gitHead: '9ab5c67b7cb3a4c3dad4a2d4552a2f6775545d6c',
301 silly install resolved homepage: 'https://github.com/caolan/async#readme',
301 silly install resolved _id: '[email protected]',
301 silly install resolved _shasum: 'ec6a61ae56480c0c3cb241c95618e20892f9672a',
301 silly install resolved _from: 'async@>=1.5.0 <2.0.0',
301 silly install resolved _npmVersion: '3.5.2',
301 silly install resolved _nodeVersion: '4.2.3',
301 silly install resolved _npmUser: { name: 'aearly', email: '[email protected]' },
301 silly install resolved maintainers: [ [Object], [Object], [Object], [Object] ],
301 silly install resolved dist:
301 silly install resolved { shasum: 'ec6a61ae56480c0c3cb241c95618e20892f9672a',
301 silly install resolved tarball: 'https://registry.npmjs.org/async/-/async-1.5.2.tgz' },
301 silly install resolved directories: {},
301 silly install resolved _resolved: 'https://registry.npmjs.org/async/-/async-1.5.2.tgz',
301 silly install resolved readme: 'ERROR: No README data found!' },
301 silly install resolved { name: 'gaze',
301 silly install resolved description: 'A globbing fs.watch wrapper built from the best parts of other fine watch libs.',
301 silly install resolved version: '1.1.1',
301 silly install resolved homepage: 'https://github.com/shama/gaze',
301 silly install resolved author: { name: 'Kyle Robinson Young', email: '[email protected]' },
301 silly install resolved repository: { type: 'git', url: 'git+https://github.com/shama/gaze.git' },
301 silly install resolved bugs: { url: 'https://github.com/shama/gaze/issues' },
301 silly install resolved license: 'MIT',
301 silly install resolved main: 'lib/gaze',
301 silly install resolved engines: { node: '>= 0.10.0' },
301 silly install resolved scripts: { test: 'semistandard && grunt nodeunit -v' },
301 silly install resolved dependencies: { globule: '^1.0.0' },
301 silly install resolved devDependencies:
301 silly install resolved { async: '^1.5.2',
301 silly install resolved grunt: '^1.0.1',
301 silly install resolved 'grunt-benchmark': '^0.3.0',
301 silly install resolved 'grunt-cli': '^1.2.0',
301 silly install resolved 'grunt-contrib-jshint': '^1.0.0',
301 silly install resolved 'grunt-contrib-nodeunit': '^1.0.0',
301 silly install resolved rimraf: '^2.5.2',
301 silly install resolved semistandard: '^7.0.5' },
301 silly install resolved keywords: [ 'watch', 'glob' ],
301 silly install resolved files: [ 'lib', 'LICENSE-MIT' ],
301 silly install resolved semistandard: { ignore: [Object] },
301 silly install resolved contributors:
301 silly install resolved [ [Object],
301 silly install resolved [Object],
301 silly install resolved [Object],
301 silly install resolved [Object],
301 silly install resolved [Object],
301 silly install resolved [Object],
301 silly install resolved [Object],
301 silly install resolved [Object],
301 silly install resolved [Object],
301 silly install resolved [Object] ],
301 silly install resolved gitHead: '4a0a837ee194097b28860fa960a654302ef590b9',
301 silly install resolved _id: '[email protected]',
301 silly install resolved _shasum: 'ab81d557d1b515f5752bd5f1117d6fa3c4e9db41',
301 silly install resolved _from: 'gaze@>=1.0.0 <2.0.0',
301 silly install resolved _npmVersion: '2.15.2',
301 silly install resolved _nodeVersion: '4.4.1',
301 silly install resolved _npmUser: { name: 'shama', email: '[email protected]' },
301 silly install resolved maintainers: [ [Object], [Object] ],
301 silly install resolved dist:
301 silly install resolved { shasum: 'ab81d557d1b515f5752bd5f1117d6fa3c4e9db41',
301 silly install resolved tarball: 'https://registry.npmjs.org/gaze/-/gaze-1.1.1.tgz' },
301 silly install resolved _npmOperationalInternal:
301 silly install resolved { host: 'packages-16-east.internal.npmjs.com',
301 silly install resolved tmp: 'tmp/gaze-1.1.1.tgz_1470358845533_0.7018349366262555' },
301 silly install resolved directories: {},
301 silly install resolved _resolved: 'https://registry.npmjs.org/gaze/-/gaze-1.1.1.tgz',
301 silly install resolved readme: 'ERROR: No README data found!' },
301 silly install resolved { author: { name: 'mklabs' },
301 silly install resolved name: 'tiny-lr',
301 silly install resolved description: 'Tiny LiveReload server, background-friendly',
301 silly install resolved version: '0.2.1',
301 silly install resolved homepage: 'https://github.com/mklabs/tiny-lr',
301 silly install resolved bugs: { url: 'https://github.com/mklabs/tiny-lr/issues' },
301 silly install resolved repository: { type: 'git', url: 'git://github.com/mklabs/tiny-lr.git' },
301 silly install resolved main: './lib',
301 silly install resolved scripts:
301 silly install resolved { 'prepublish:': 'npm test',
301 silly install resolved test: 'mocha --reporter spec test/wd test',
301 silly install resolved 'test-debug': 'DEBUG=tinylr:* mocha --reporter list',
301 silly install resolved 'test-debug-all': 'DEBUG=* mocha --reporter list',
301 silly install resolved pretest: 'npm run phantom-start',
301 silly install resolved posttest: 'npm run phantom-stop',
301 silly install resolved 'phantom-start': 'sh scripts/phantom-start',
301 silly install resolved 'phantom-stop': 'sh scripts/phantom-stop',
301 silly install resolved serve: 'node examples/express/server.js',
301 silly install resolved 'post-change': 'sh scripts/post-change',
301 silly install resolved 'get-change': 'curl http://localhost:35729/changed?files=site.css' },
301 silly install resolved dependencies:
301 silly install resolved { 'body-parser': '~1.14.0',
301 silly install resolved debug: '~2.2.0',
301 silly install resolved 'faye-websocket': '~0.10.0',
301 silly install resolved 'livereload-js': '^2.2.0',
301 silly install resolved parseurl: '~1.3.0',
301 silly install resolved qs: '~5.1.0' },
301 silly install resolved devDependencies:
301 silly install resolved { connect: '^3.4.0',
301 silly install resolved express: '^4.1.1',
301 silly install resolved mocha: '^2.3.3',
301 silly install resolved phantomjs: '^1.9.7-5',
301 silly install resolved request: '^2.34.0',
301 silly install resolved supertest: '^1.1.0',
301 silly install resolved wd: '^0.3.12' },
301 silly install resolved config: { test_port: '9001' },
301 silly install resolved license: 'MIT',
301 silly install resolved gitHead: '7839c0b6b5097eab7b241781c9ce442d384eaf5b',
301 silly install resolved _id: '[email protected]',
301 silly install resolved _shasum: 'b3fdba802e5d56a33c2f6f10794b32e477ac729d',
301 silly install resolved _from: 'tiny-lr@>=0.2.1 <0.3.0',
301 silly install resolved _npmVersion: '3.3.4',
301 silly install resolved _nodeVersion: '4.0.0',
301 silly install resolved _npmUser: { name: 'shama', email: '[email protected]' },
301 silly install resolved maintainers: [ [Object], [Object] ],
301 silly install resolved dist:
301 silly install resolved { shasum: 'b3fdba802e5d56a33c2f6f10794b32e477ac729d',
301 silly install resolved tarball: 'https://registry.npmjs.org/tiny-lr/-/tiny-lr-0.2.1.tgz' },
301 silly install resolved directories: {},
301 silly install resolved _resolved: 'https://registry.npmjs.org/tiny-lr/-/tiny-lr-0.2.1.tgz' } ]
302 info install [email protected] into E:\xampp\htdocs\base_path\node_modules\grunt-contrib-watch
303 info install [email protected] into E:\xampp\htdocs\base_path\node_modules\grunt-contrib-watch
304 info install [email protected] into E:\xampp\htdocs\base_path\node_modules\grunt-contrib-watch
305 info install [email protected] into E:\xampp\htdocs\base_path\node_modules\grunt-contrib-watch
306 info installOne [email protected]
307 verbose installOne of lodash to E:\xampp\htdocs\base_path\node_modules\grunt-contrib-watch not in flight; installing
308 info installOne [email protected]
309 verbose installOne of async to E:\xampp\htdocs\base_path\node_modules\grunt-contrib-watch not in flight; installing
310 info installOne [email protected]
311 verbose installOne of gaze to E:\xampp\htdocs\base_path\node_modules\grunt-contrib-watch not in flight; installing
312 info installOne [email protected]
313 verbose installOne of tiny-lr to E:\xampp\htdocs\base_path\node_modules\grunt-contrib-watch not in flight; installing
314 verbose lock using C:\Users\IZ-Syed\AppData\Roaming\npm-cache\_locks\async-6e328f4313509fa1.lock for E:\xampp\htdocs\base_path\node_modules\grunt-contrib-watch\node_modules\async
315 verbose lock using C:\Users\IZ-Syed\AppData\Roaming\npm-cache\_locks\gaze-f8f6051cbbe16c9c.lock for E:\xampp\htdocs\base_path\node_modules\grunt-contrib-watch\node_modules\gaze
316 verbose lock using C:\Users\IZ-Syed\AppData\Roaming\npm-cache\_locks\lodash-0e6440fd81999276.lock for E:\xampp\htdocs\base_path\node_modules\grunt-contrib-watch\node_modules\lodash
317 silly install write writing async 1.5.2 to E:\xampp\htdocs\base_path\node_modules\grunt-contrib-watch\node_modules\async
318 silly install write writing gaze 1.1.1 to E:\xampp\htdocs\base_path\node_modules\grunt-contrib-watch\node_modules\gaze
319 silly install write writing lodash 3.10.1 to E:\xampp\htdocs\base_path\node_modules\grunt-contrib-watch\node_modules\lodash