-
Notifications
You must be signed in to change notification settings - Fork 0
/
npm-debug.log
1330 lines (1330 loc) · 89.5 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\\nodejs\\\\node.exe',
1 verbose cli 'C:\\Program Files\\nodejs\\node_modules\\npm\\bin\\npm-cli.js',
1 verbose cli '-g',
1 verbose cli 'install',
1 verbose cli 'ionic' ]
2 info using [email protected]
3 info using [email protected]
4 verbose node symlink C:\Program Files\nodejs\\node.exe
5 verbose read json C:\Users\Piyush\AppData\Roaming\npm\package.json
6 verbose read json C:\Users\Piyush\AppData\Roaming\npm\package.json
7 verbose cache add [ 'ionic', null ]
8 silly cache add name=undefined spec="ionic" args=["ionic",null]
9 verbose parsed url { pathname: 'ionic', path: 'ionic', href: 'ionic' }
10 silly lockFile 00d10074-ionic ionic
11 verbose lock ionic C:\Users\Piyush\AppData\Roaming\npm-cache\00d10074-ionic.lock
12 silly lockFile 00d10074-ionic ionic
13 verbose addNamed [ 'ionic', '' ]
14 verbose addNamed [ null, '' ]
15 silly lockFile 966fc04a-ionic ionic@
16 verbose lock ionic@ C:\Users\Piyush\AppData\Roaming\npm-cache\966fc04a-ionic.lock
17 silly addNameRange { name: 'ionic', range: '', hasData: false }
18 verbose url raw ionic
19 verbose url resolving [ 'https://registry.npmjs.org/', './ionic' ]
20 verbose url resolved https://registry.npmjs.org/ionic
21 info trying registry request attempt 1 at 23:05:51
22 verbose etag "46HKK50V7SXFX5GWJAPETCSNI"
23 http GET https://registry.npmjs.org/ionic
24 http 200 https://registry.npmjs.org/ionic
25 silly registry.get cb [ 200,
25 silly registry.get { date: 'Tue, 23 Dec 2014 07:05:51 GMT',
25 silly registry.get server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
25 silly registry.get etag: '"C5NY1IUQDY8477F14OBJNCNGS"',
25 silly registry.get 'content-type': 'application/json',
25 silly registry.get 'cache-control': 'max-age=60',
25 silly registry.get 'content-length': '163319',
25 silly registry.get 'accept-ranges': 'bytes',
25 silly registry.get via: '1.1 varnish',
25 silly registry.get age: '5',
25 silly registry.get 'x-served-by': 'cache-sn89-SIN',
25 silly registry.get 'x-cache': 'HIT',
25 silly registry.get 'x-cache-hits': '1',
25 silly registry.get 'x-timer': 'S1419318351.956394,VS0,VE0',
25 silly registry.get vary: 'Accept',
25 silly registry.get 'keep-alive': 'timeout=10, max=50',
25 silly registry.get connection: 'Keep-Alive' } ]
26 silly addNameRange number 2 { name: 'ionic', range: '', hasData: true }
27 silly addNameRange versions [ 'ionic',
27 silly addNameRange [ '0.9.6',
27 silly addNameRange '0.9.8',
27 silly addNameRange '0.9.9',
27 silly addNameRange '0.9.10',
27 silly addNameRange '0.9.11',
27 silly addNameRange '0.9.12',
27 silly addNameRange '0.9.13',
27 silly addNameRange '0.9.14',
27 silly addNameRange '0.9.15',
27 silly addNameRange '0.9.16',
27 silly addNameRange '1.0.0-beta.1',
27 silly addNameRange '1.0.0-beta',
27 silly addNameRange '1.0.1-beta',
27 silly addNameRange '1.0.3-beta',
27 silly addNameRange '1.0.4',
27 silly addNameRange '1.0.5',
27 silly addNameRange '1.0.6',
27 silly addNameRange '1.0.7',
27 silly addNameRange '1.0.8',
27 silly addNameRange '1.0.9',
27 silly addNameRange '1.0.10',
27 silly addNameRange '1.0.11',
27 silly addNameRange '1.0.12',
27 silly addNameRange '1.0.13',
27 silly addNameRange '1.0.14',
27 silly addNameRange '1.0.15',
27 silly addNameRange '1.0.16',
27 silly addNameRange '1.0.17',
27 silly addNameRange '1.1.0-beta1',
27 silly addNameRange '1.1.0-beta2',
27 silly addNameRange '1.1.0-beta3',
27 silly addNameRange '1.1.0-beta4',
27 silly addNameRange '1.1.0-beta5',
27 silly addNameRange '1.1.0-beta6',
27 silly addNameRange '1.1.0',
27 silly addNameRange '1.1.1-beta1',
27 silly addNameRange '1.1.1-beta2',
27 silly addNameRange '1.1.1-beta3',
27 silly addNameRange '1.1.1',
27 silly addNameRange '1.1.3',
27 silly addNameRange '1.1.4',
27 silly addNameRange '1.1.5-beta1',
27 silly addNameRange '1.1.5-beta2',
27 silly addNameRange '1.1.5-beta3',
27 silly addNameRange '1.1.5-beta4',
27 silly addNameRange '1.1.5-beta5',
27 silly addNameRange '1.1.5',
27 silly addNameRange '1.1.6',
27 silly addNameRange '1.1.7-beta1',
27 silly addNameRange '1.1.7',
27 silly addNameRange '1.1.8-beta1',
27 silly addNameRange '1.1.8-beta2',
27 silly addNameRange '1.1.8-beta3',
27 silly addNameRange '1.1.8-beta4',
27 silly addNameRange '1.1.8-beta5',
27 silly addNameRange '1.1.8',
27 silly addNameRange '1.1.9-beta1',
27 silly addNameRange '1.1.9',
27 silly addNameRange '1.1.10',
27 silly addNameRange '1.1.11-beta1',
27 silly addNameRange '1.1.11-beta2',
27 silly addNameRange '1.1.11',
27 silly addNameRange '1.1.12-beta1',
27 silly addNameRange '1.1.12-beta2',
27 silly addNameRange '1.1.12-beta3',
27 silly addNameRange '1.1.12',
27 silly addNameRange '1.1.13',
27 silly addNameRange '1.1.14-beta1',
27 silly addNameRange '1.1.14-beta2',
27 silly addNameRange '1.1.14-beta3',
27 silly addNameRange '1.2.0-beta1',
27 silly addNameRange '1.2.0',
27 silly addNameRange '1.2.1-beta1',
27 silly addNameRange '1.2.1-beta2',
27 silly addNameRange '1.2.1-beta3',
27 silly addNameRange '1.2.1-beta4',
27 silly addNameRange '1.2.1',
27 silly addNameRange '1.2.2',
27 silly addNameRange '1.2.3-beta1',
27 silly addNameRange '1.2.3-beta2',
27 silly addNameRange '1.2.3-beta3',
27 silly addNameRange '1.2.3',
27 silly addNameRange '1.2.4-beta1',
27 silly addNameRange '1.2.4-beta2',
27 silly addNameRange '1.2.4-beta3',
27 silly addNameRange '1.2.4',
27 silly addNameRange '1.2.5-beta1',
27 silly addNameRange '1.2.5-beta2',
27 silly addNameRange '1.2.5-beta3',
27 silly addNameRange '1.2.5',
27 silly addNameRange '1.2.6-beta1',
27 silly addNameRange '1.2.6-beta2',
27 silly addNameRange '1.2.6-beta3',
27 silly addNameRange '1.2.6',
27 silly addNameRange '1.2.7',
27 silly addNameRange '1.2.8-beta1',
27 silly addNameRange '1.2.8-beta2',
27 silly addNameRange '1.2.8',
27 silly addNameRange '1.2.9',
27 silly addNameRange '1.2.10',
27 silly addNameRange '1.2.11',
27 silly addNameRange '1.2.12',
27 silly addNameRange '1.2.13',
27 silly addNameRange '1.2.14-beta1',
27 silly addNameRange '1.2.14-beta2' ] ]
28 verbose addNamed [ 'ionic', '1.2.13' ]
29 verbose addNamed [ '1.2.13', '1.2.13' ]
30 silly lockFile 5e1bd26f-ionic-1-2-13 [email protected]
31 verbose lock [email protected] C:\Users\Piyush\AppData\Roaming\npm-cache\5e1bd26f-ionic-1-2-13.lock
32 verbose read json C:\Users\Piyush\AppData\Roaming\npm-cache\ionic\1.2.13\package\package.json
33 silly lockFile 5e1bd26f-ionic-1-2-13 [email protected]
34 silly lockFile 966fc04a-ionic ionic@
35 silly resolved [ { name: 'ionic',
35 silly resolved version: '1.2.13',
35 silly resolved preferGlobal: true,
35 silly resolved description: 'A tool for creating and developing Ionic Framework mobile apps.',
35 silly resolved homepage: 'http://ionicframework.com/',
35 silly resolved bin: { ionic: 'bin/ionic' },
35 silly resolved keywords:
35 silly resolved [ 'ionic',
35 silly resolved 'ionic framework',
35 silly resolved 'ionicframework',
35 silly resolved 'mobile',
35 silly resolved 'app',
35 silly resolved 'hybrid',
35 silly resolved 'cordova',
35 silly resolved 'phonegap' ],
35 silly resolved repository:
35 silly resolved { type: 'git',
35 silly resolved url: 'https://github.com/driftyco/ionic-cli.git' },
35 silly resolved contributors: [ [Object], [Object], [Object], [Object] ],
35 silly resolved license: 'MIT',
35 silly resolved dependencies:
35 silly resolved { archiver: '0.5.1',
35 silly resolved colors: '0.6.2',
35 silly resolved connect: '3.1.1',
35 silly resolved 'cross-spawn': '0.2.3',
35 silly resolved 'connect-livereload': '0.4.0',
35 silly resolved 'event-stream': '3.0.x',
35 silly resolved finalhandler: '0.2.0',
35 silly resolved 'form-data': '0.1.4',
35 silly resolved gulp: '3.8.8',
35 silly resolved ncp: '0.4.2',
35 silly resolved npm: '2.1.3',
35 silly resolved open: '0.0.5',
35 silly resolved optimist: '0.6.0',
35 silly resolved prompt: '0.2.12',
35 silly resolved progress: '1.1.7',
35 silly resolved 'proxy-middleware': '^0.7.0',
35 silly resolved q: '1.0.1',
35 silly resolved request: '2.27.0',
35 silly resolved 'serve-static': '1.7.1',
35 silly resolved shelljs: '0.2.6',
35 silly resolved 'tiny-lr-fork': '0.0.5',
35 silly resolved unzip: '0.1.9',
35 silly resolved 'vinyl-fs': '0.3.7',
35 silly resolved xml2js: '0.4.4',
35 silly resolved underscore: '~1.7.0' },
35 silly resolved readme: 'Ionic-Cli\n=========\n\nThe Ionic Framework command line utility makes it easy to start, build, run, and emulate [Ionic](http://ionicframework.com/) apps. In the future, it will also have support for our mobile development services and tools that make Ionic even more powerful.\n\nUse the `ionic --help` command for more detailed task information.\n\n## Installing\n\n```bash\n$ npm install -g ionic\n```\n\n*Note: For a global install of `-g ionic`, OSX/Linux users may need to prefix the command with `sudo`.*\n\n\n## Starting an Ionic App\n\n```bash\n$ ionic start myapp [template]\n```\n\nStarter templates can either come from a named template, a Github repo, a Codepen, or a local directory. A starter template is what becomes the `www` directory within the Cordova project.\n\n__Named template starters:__\n\n* [tabs](https://github.com/driftyco/ionic-starter-tabs) (Default)\n* [sidemenu](https://github.com/driftyco/ionic-starter-sidemenu)\n* [blank](https://github.com/driftyco/ionic-starter-blank)\n\n__Github Repo starters:__\n\n* Any Github repo url, ex: [https://github.com/driftyco/ionic-starter-tabs](https://github.com/driftyco/ionic-starter-tabs)\n* Named templates are simply aliases to Ionic starter repos\n\n__Codepen URL starters:__\n\n* Any Codepen url, ex: [http://codepen.io/ionic/pen/odqCz](http://codepen.io/ionic/pen/odqCz)\n* [Ionic Codepen Demos](http://codepen.io/ionic/public-list/)\n\n__Local directory starters:__\n\n* Relative or absolute path to a local directory\n\n__Command-line flags/options:__\n\n --appname, -a ....... Human readable name for the app\n (Use quotes around the name)\n --id, -i ............ Package name set in the <widget id> config\n ex: com.mycompany.myapp\n --no-cordova, -w .... Do not create an app targeted for Cordova\n\n\n## Testing in a Browser\n\nUse `ionic serve` to start a local development server for app dev and testing. This is useful for both desktop browser testing, and to test within a device browser which is connected to the same network. Additionally, this command starts LiveReload which is used to monitor changes in the file system. As soon as you save a file the browser is refreshed automatically. View [Using Sass](https://github.com/driftyco/ionic-cli/blob/master/README.md#using-sass) if you would also like to have `ionic serve` watch the project\'s Sass files.\n\n```bash\n$ ionic serve [options]\n```\n\n__Service Proxies:__\n\nThe `serve` command can add some proxies to the http server. These proxies are useful if you are developing in the browser and you need to make calls to an external API. With this feature you can proxy request to the external api through the ionic http server preventing the `No \'Access-Control-Allow-Origin\' header is present on the requested resource` error.\n\nIn the `ionic.project` file you can add a property with an array of proxies you want to add. The proxies are object with two properties:\n\n* `path`: string that will be matched against the beginning of the incoming request URL.\n* `proxyUrl`: a string with the url of where the proxied request should go.\n\n```json\n{\n "name": "appname",\n "email": "",\n "app_id": "",\n "proxies": [\n {\n "path": "/v1",\n "proxyUrl": "https://api.instagram.com/v1"\n }\n ]\n}\n\n```\n\nUsing the above configuration, you can now make requests to your local server at `http://localhost:8100/v1` to have it proxy out requests to `https://api.instagram.com/v1`\n\nFor example:\n\n```js\nangular.module(\'starter.controllers\', [])\n.constant(\'InstagramApiUrl\', \'\')\n// .contant(\'InstagramApiUrl\',\'https://api.instagram.com\')\n//In production, make this the real URL\n\n.controller(\'FeedCtrl\', function($scope, $http, InstagramApiUrl) {\n\n $scope.feed = null;\n\n $http.get(InstagramApiUrl + \'/v1/media/search?client_id=1&lat=48&lng=2.294351\').then(function(data) {\n console.log(\'data \' , data)\n $scope.feed = data;\n })\n\n})\n```\n\nSee also [this gist](https://gist.github.com/jbavari/d9c1c94058c4fdd4e935) for more help.\n\n__Command-line flags/options:__\n\n [--consolelogs|-c] ...... Print app console logs to Ionic CLI\n [--serverlogs|-s] ....... Print dev server logs to Ionic CLI\n [--port|-p] ............. Dev server HTTP port (8100 default)\n [--livereload-port|-i] .. Live Reload port (35729 default)\n [--nobrowser|-b] ........ Disable launching a browser\n [--nolivereload|-r] ..... Do not start live reload\n [--noproxy|-x] .......... Do not add proxies\n\n\n## Adding a platform target\n\n```bash\n$ ionic platform ios android\n```\n\n## Building your app\n\n```bash\n$ ionic build ios\n```\n\n## Live Reload App During Development (beta)\n\nThe `run` or `emulate` command will deploy the app to the specified platform devices/emulators. You can also run __live reload__ on the specified platform device by adding the `--livereload` option. The live reload functionality is similar to `ionic serve`, but instead of developing and debugging an app using a standard browser, the compiled hybrid app itself is watching for any changes to its files and reloading the app when needed. This reduces the requirement to constantly rebuild the app for small changes. However, any changes to plugins will still require a full rebuild. For live reload to work, the dev machine and device must be on the same local network, and the device must support [web sockets](http://caniuse.com/websockets).\n\nWith live reload enabled, an app\'s console logs can also be printed to the terminal/command prompt by including the `--consolelogs` or `-c` option. Additionally, the development server\'s request logs can be printed out using `--serverlogs` or `-s` options.\n\n__Command-line flags/options for `run` and `emulate`:__\n\n [--livereload|-l] ....... Live Reload app dev files from the device (beta)\n [--consolelogs|-c] ...... Print app console logs to Ionic CLI (live reload req.)\n [--serverlogs|-s] ....... Print dev server logs to Ionic CLI (live reload req.)\n [--port|-p] ............. Dev server HTTP port (8100 default, live reload req.)\n [--livereload-port|-i] .. Live Reload port (35729 default, live reload req.)\n [--debug|--release]\n\nWhile the server is running for live reload, you can use the following commands within the CLI:\n\n restart or r to restart the client app from the root\n goto or g and a url to have the app navigate to the given url\n consolelogs or c to enable/disable console log output\n serverlogs or s to enable/disable server log output\n quit or q to shutdown the server and exit\n\n\n## Emulating your app\n\nDeploys the Ionic app on specified platform emulator. This is simply an alias for `run --emulator`.\n\n```bash\n$ ionic emulate ios [options]\n```\n\n\n## Running your app\n\nDeploys the Ionic app on specified platform devices. If a device is not found it\'ll then deploy to an emulator/simulator.\n\n```bash\n$ ionic run ios [options]\n```\n\n\n## Update Ionic lib\n\nUpdate Ionic library files, which are found in the `www/lib/ionic` directory. If bower is being used\nby the project, this command will automatically run `bower update ionic`, otherwise this command updates\nthe local static files from Ionic\'s CDN.\n\n```bash\n$ ionic lib update\n```\n*Note: Using bower? This command does not update Ionic\'s dependencies. Run `bower update` to update Ionic and all of it\'s dependencies defined in `bower.json`.*\n\n## Packaging an app (beta)\n\nUsing Ionic\'s service, you can compile and package your project into an app-store ready app without\nrequiring native SDKs on your machine.\n\n```bash\n$ ionic package debug android\n```\n\nThe third argument can be either `debug` or `release`, and the last argument can be either `android` or `ios`.\n\n\n## Cordova Commands\n\nIonic uses Cordova underneath, so you can also substitute Cordova commands to prepare/build/emulate/run, or to add additional plugins.\n\n*Note: we occasionally send anonymous usage statistics to the Ionic team to make the tool better.*\n\n## Working around proxies\n\nIf you have a proxy you need to get around, you can pass that proxy with the default `http_proxy` [node environment variable](https://www.npmjs.org/doc/misc/npm-config.html#proxy) or an environment variable `proxy`.\n\nA few ways to set up and use the environment variable:\n\n```bash\nexport http_proxy=internal.proxy.com\n# Or\nexport PROXY=internal.proxy.com\n\nionic start my_app\n\n# Additionally, pass in line\nPROXY=internal.proxy.com ionic start my_app\n```\n\n\n## Using Sass\n\nBy default, starter projects are hooked up to Ionic\'s precompiled CSS file, which is found in the project\'s `www/lib/ionic/css` directory, and is linked to the app in the head of the root `index.html` file. However, Ionic projects can also be customized using [Sass](http://sass-lang.com/), which gives developers and designers "superpowers" in terms of creating and maintaining CSS. Below are two ways to setup Sass for your Ionic project (the `ionic setup sass` command simply does the manual steps for you). Once Sass has been setup for your Ionic project, then the `ionic serve` command will also watch for Sass changes.\n\n#### Setup Sass Automatically\n\n ionic setup sass\n\n\n#### Setup Sass Manually\n\n1. Run `npm install` from the working directory of an Ionic project. This will install [gulp.js](http://gulpjs.com/) and a few handy tasks, such as [gulp-sass](https://www.npmjs.org/package/gulp-sass) and [gulp-minify-css](https://www.npmjs.org/package/gulp-minify-css).\n2. Remove `<link href="lib/ionic/css/ionic.css" rel="stylesheet">` from the `<head>` of the root `index.html` file.\n3. Remove `<link href="css/style.css" rel="stylesheet">` from the `<head>` of the root `index.html` file.\n4. Add `<link href="css/ionic.app.css" rel="stylesheet">` to the `<head>` of the root `index.html` file.\n5. In the `ionic.project` file, add the JavaScript property `"gulpStartupTasks": ["sass", "watch"]` (this can also be customized to whatever gulp tasks you\'d like).\n',
35 silly resolved readmeFilename: 'README.md',
35 silly resolved _id: '[email protected]',
35 silly resolved _from: 'ionic' } ]
36 info install [email protected] into C:\Users\Piyush\AppData\Roaming\npm
37 info installOne [email protected]
38 verbose from cache C:\Users\Piyush\AppData\Roaming\npm-cache\ionic\1.2.13\package\package.json
39 info C:\Users\Piyush\AppData\Roaming\npm\node_modules\ionic unbuild
40 verbose read json C:\Users\Piyush\AppData\Roaming\npm\node_modules\ionic\package.json
41 verbose tar unpack C:\Users\Piyush\AppData\Roaming\npm-cache\ionic\1.2.13\package.tgz
42 silly lockFile 8707c15e-a-Roaming-npm-node-modules-ionic C:\Users\Piyush\AppData\Roaming\npm\node_modules\ionic
43 verbose lock C:\Users\Piyush\AppData\Roaming\npm\node_modules\ionic C:\Users\Piyush\AppData\Roaming\npm-cache\8707c15e-a-Roaming-npm-node-modules-ionic.lock
44 silly gunzTarPerm modes [ '755', '644' ]
45 silly gunzTarPerm extractEntry package.json
46 silly gunzTarPerm modified mode [ 'package.json', 438, 420 ]
47 silly gunzTarPerm extractEntry .npmignore
48 silly gunzTarPerm modified mode [ '.npmignore', 438, 420 ]
49 silly gunzTarPerm extractEntry README.md
50 silly gunzTarPerm modified mode [ 'README.md', 438, 420 ]
51 silly gunzTarPerm extractEntry LICENSE
52 silly gunzTarPerm modified mode [ 'LICENSE', 438, 420 ]
53 silly gunzTarPerm extractEntry .gitattributes
54 silly gunzTarPerm modified mode [ '.gitattributes', 438, 420 ]
55 silly gunzTarPerm extractEntry bin/ionic
56 silly gunzTarPerm modified mode [ 'bin/ionic', 438, 420 ]
57 silly gunzTarPerm extractEntry CHANGELOG.md
58 silly gunzTarPerm modified mode [ 'CHANGELOG.md', 438, 420 ]
59 silly gunzTarPerm extractEntry lib/ionic.js
60 silly gunzTarPerm modified mode [ 'lib/ionic.js', 438, 420 ]
61 silly gunzTarPerm extractEntry lib/hooks/after_prepare/010_add_platform_class.js
62 silly gunzTarPerm modified mode [ 'lib/hooks/after_prepare/010_add_platform_class.js', 438, 420 ]
63 silly gunzTarPerm extractEntry lib/ionic/add.js
64 silly gunzTarPerm modified mode [ 'lib/ionic/add.js', 438, 420 ]
65 silly gunzTarPerm extractEntry lib/ionic/cordova.js
66 silly gunzTarPerm modified mode [ 'lib/ionic/cordova.js', 438, 420 ]
67 silly gunzTarPerm extractEntry lib/ionic/lib.js
68 silly gunzTarPerm modified mode [ 'lib/ionic/lib.js', 438, 420 ]
69 silly gunzTarPerm extractEntry lib/ionic/login.js
70 silly gunzTarPerm modified mode [ 'lib/ionic/login.js', 438, 420 ]
71 silly gunzTarPerm extractEntry lib/ionic/config.js
72 silly gunzTarPerm modified mode [ 'lib/ionic/config.js', 438, 420 ]
73 silly gunzTarPerm extractEntry lib/ionic/app.js
74 silly gunzTarPerm modified mode [ 'lib/ionic/app.js', 438, 420 ]
75 silly gunzTarPerm extractEntry lib/ionic/serve.js
76 silly gunzTarPerm modified mode [ 'lib/ionic/serve.js', 438, 420 ]
77 silly gunzTarPerm extractEntry lib/ionic/service.js
78 silly gunzTarPerm modified mode [ 'lib/ionic/service.js', 438, 420 ]
79 silly gunzTarPerm extractEntry lib/ionic/setup.js
80 silly gunzTarPerm modified mode [ 'lib/ionic/setup.js', 438, 420 ]
81 silly gunzTarPerm extractEntry lib/ionic/start.js
82 silly gunzTarPerm modified mode [ 'lib/ionic/start.js', 438, 420 ]
83 silly gunzTarPerm extractEntry lib/ionic/bower.js
84 silly gunzTarPerm modified mode [ 'lib/ionic/bower.js', 438, 420 ]
85 silly gunzTarPerm extractEntry lib/ionic/stats.js
86 silly gunzTarPerm modified mode [ 'lib/ionic/stats.js', 438, 420 ]
87 silly gunzTarPerm extractEntry lib/ionic/task.js
88 silly gunzTarPerm modified mode [ 'lib/ionic/task.js', 438, 420 ]
89 silly gunzTarPerm extractEntry lib/ionic/store.js
90 silly gunzTarPerm modified mode [ 'lib/ionic/store.js', 438, 420 ]
91 silly gunzTarPerm extractEntry lib/ionic/package.js
92 silly gunzTarPerm modified mode [ 'lib/ionic/package.js', 438, 420 ]
93 silly gunzTarPerm extractEntry lib/ionic/upload.js
94 silly gunzTarPerm modified mode [ 'lib/ionic/upload.js', 438, 420 ]
95 silly gunzTarPerm extractEntry lib/ionic/project.js
96 silly gunzTarPerm modified mode [ 'lib/ionic/project.js', 438, 420 ]
97 silly gunzTarPerm extractEntry lib/ionic/assets/preview.html
98 silly gunzTarPerm modified mode [ 'lib/ionic/assets/preview.html', 438, 420 ]
99 silly gunzTarPerm extractEntry npm-shrinkwrap.json
100 silly gunzTarPerm modified mode [ 'npm-shrinkwrap.json', 438, 420 ]
101 verbose read json C:\Users\Piyush\AppData\Roaming\npm\node_modules\ionic\package.json
102 silly lockFile 8707c15e-a-Roaming-npm-node-modules-ionic C:\Users\Piyush\AppData\Roaming\npm\node_modules\ionic
103 info preinstall [email protected]
104 verbose from cache C:\Users\Piyush\AppData\Roaming\npm\node_modules\ionic\package.json
105 info shrinkwrap file "C:\\Users\\Piyush\\AppData\\Roaming\\npm\\node_modules\\ionic\\npm-shrinkwrap.json"
106 verbose readDependencies returned deps { archiver: '[email protected]',
106 verbose readDependencies returned deps colors: '[email protected]',
106 verbose readDependencies returned deps connect: '[email protected]',
106 verbose readDependencies returned deps 'connect-livereload': '[email protected]',
106 verbose readDependencies returned deps 'cross-spawn': '[email protected]',
106 verbose readDependencies returned deps 'event-stream': 'event-stream@>=3.0.0 <3.1.0',
106 verbose readDependencies returned deps finalhandler: '[email protected]',
106 verbose readDependencies returned deps 'form-data': '[email protected]',
106 verbose readDependencies returned deps gulp: '[email protected]',
106 verbose readDependencies returned deps ncp: '[email protected]',
106 verbose readDependencies returned deps npm: '[email protected]',
106 verbose readDependencies returned deps open: '[email protected]',
106 verbose readDependencies returned deps optimist: '[email protected]',
106 verbose readDependencies returned deps progress: '[email protected]',
106 verbose readDependencies returned deps prompt: '[email protected]',
106 verbose readDependencies returned deps 'proxy-middleware': 'proxy-middleware@>=0.7.0 <0.8.0',
106 verbose readDependencies returned deps q: '[email protected]',
106 verbose readDependencies returned deps request: '[email protected]',
106 verbose readDependencies returned deps 'serve-static': '[email protected]',
106 verbose readDependencies returned deps shelljs: '[email protected]',
106 verbose readDependencies returned deps 'tiny-lr-fork': '[email protected]',
106 verbose readDependencies returned deps underscore: 'underscore@>=1.7.0 <1.8.0',
106 verbose readDependencies returned deps unzip: '[email protected]',
106 verbose readDependencies returned deps 'vinyl-fs': '[email protected]',
106 verbose readDependencies returned deps xml2js: '[email protected]' }
107 verbose from cache C:\Users\Piyush\AppData\Roaming\npm\node_modules\ionic\package.json
108 verbose readDependencies: using existing wrap [ 'C:\\Users\\Piyush\\AppData\\Roaming\\npm\\node_modules\\ionic',
108 verbose readDependencies: using existing wrap { archiver:
108 verbose readDependencies: using existing wrap { version: '0.5.1',
108 verbose readDependencies: using existing wrap from: '[email protected]',
108 verbose readDependencies: using existing wrap resolved: 'https://registry.npmjs.org/archiver/-/archiver-0.5.1.tgz',
108 verbose readDependencies: using existing wrap dependencies: [Object] },
108 verbose readDependencies: using existing wrap colors:
108 verbose readDependencies: using existing wrap { version: '0.6.2',
108 verbose readDependencies: using existing wrap from: '[email protected]',
108 verbose readDependencies: using existing wrap resolved: 'https://registry.npmjs.org/colors/-/colors-0.6.2.tgz' },
108 verbose readDependencies: using existing wrap connect:
108 verbose readDependencies: using existing wrap { version: '3.1.1',
108 verbose readDependencies: using existing wrap from: '[email protected]',
108 verbose readDependencies: using existing wrap resolved: 'https://registry.npmjs.org/connect/-/connect-3.1.1.tgz',
108 verbose readDependencies: using existing wrap dependencies: [Object] },
108 verbose readDependencies: using existing wrap 'connect-livereload':
108 verbose readDependencies: using existing wrap { version: '0.4.0',
108 verbose readDependencies: using existing wrap from: '[email protected]',
108 verbose readDependencies: using existing wrap resolved: 'https://registry.npmjs.org/connect-livereload/-/connect-livereload-0.4.0.tgz' },
108 verbose readDependencies: using existing wrap 'cross-spawn':
108 verbose readDependencies: using existing wrap { version: '0.2.3',
108 verbose readDependencies: using existing wrap from: '[email protected]',
108 verbose readDependencies: using existing wrap resolved: 'https://registry.npmjs.org/cross-spawn/-/cross-spawn-0.2.3.tgz',
108 verbose readDependencies: using existing wrap dependencies: [Object] },
108 verbose readDependencies: using existing wrap 'event-stream':
108 verbose readDependencies: using existing wrap { version: '3.0.20',
108 verbose readDependencies: using existing wrap from: 'event-stream@>=3.0.0 <3.1.0',
108 verbose readDependencies: using existing wrap resolved: 'https://registry.npmjs.org/event-stream/-/event-stream-3.0.20.tgz',
108 verbose readDependencies: using existing wrap dependencies: [Object] },
108 verbose readDependencies: using existing wrap finalhandler:
108 verbose readDependencies: using existing wrap { version: '0.2.0',
108 verbose readDependencies: using existing wrap from: '[email protected]',
108 verbose readDependencies: using existing wrap resolved: 'https://registry.npmjs.org/finalhandler/-/finalhandler-0.2.0.tgz',
108 verbose readDependencies: using existing wrap dependencies: [Object] },
108 verbose readDependencies: using existing wrap 'form-data':
108 verbose readDependencies: using existing wrap { version: '0.1.4',
108 verbose readDependencies: using existing wrap from: '[email protected]',
108 verbose readDependencies: using existing wrap resolved: 'https://registry.npmjs.org/form-data/-/form-data-0.1.4.tgz',
108 verbose readDependencies: using existing wrap dependencies: [Object] },
108 verbose readDependencies: using existing wrap gulp:
108 verbose readDependencies: using existing wrap { version: '3.8.8',
108 verbose readDependencies: using existing wrap from: '[email protected]',
108 verbose readDependencies: using existing wrap resolved: 'https://registry.npmjs.org/gulp/-/gulp-3.8.8.tgz',
108 verbose readDependencies: using existing wrap dependencies: [Object] },
108 verbose readDependencies: using existing wrap ncp:
108 verbose readDependencies: using existing wrap { version: '0.4.2',
108 verbose readDependencies: using existing wrap from: '[email protected]',
108 verbose readDependencies: using existing wrap resolved: 'https://registry.npmjs.org/ncp/-/ncp-0.4.2.tgz' },
108 verbose readDependencies: using existing wrap npm:
108 verbose readDependencies: using existing wrap { version: '2.1.3',
108 verbose readDependencies: using existing wrap from: '[email protected]',
108 verbose readDependencies: using existing wrap resolved: 'https://registry.npmjs.org/npm/-/npm-2.1.3.tgz',
108 verbose readDependencies: using existing wrap dependencies: [Object] },
108 verbose readDependencies: using existing wrap open:
108 verbose readDependencies: using existing wrap { version: '0.0.5',
108 verbose readDependencies: using existing wrap from: '[email protected]',
108 verbose readDependencies: using existing wrap resolved: 'https://registry.npmjs.org/open/-/open-0.0.5.tgz' },
108 verbose readDependencies: using existing wrap optimist:
108 verbose readDependencies: using existing wrap { version: '0.6.0',
108 verbose readDependencies: using existing wrap from: '[email protected]',
108 verbose readDependencies: using existing wrap resolved: 'https://registry.npmjs.org/optimist/-/optimist-0.6.0.tgz',
108 verbose readDependencies: using existing wrap dependencies: [Object] },
108 verbose readDependencies: using existing wrap progress:
108 verbose readDependencies: using existing wrap { version: '1.1.7',
108 verbose readDependencies: using existing wrap from: '[email protected]',
108 verbose readDependencies: using existing wrap resolved: 'https://registry.npmjs.org/progress/-/progress-1.1.7.tgz' },
108 verbose readDependencies: using existing wrap prompt:
108 verbose readDependencies: using existing wrap { version: '0.2.12',
108 verbose readDependencies: using existing wrap from: '[email protected]',
108 verbose readDependencies: using existing wrap resolved: 'https://registry.npmjs.org/prompt/-/prompt-0.2.12.tgz',
108 verbose readDependencies: using existing wrap dependencies: [Object] },
108 verbose readDependencies: using existing wrap 'proxy-middleware':
108 verbose readDependencies: using existing wrap { version: '0.7.0',
108 verbose readDependencies: using existing wrap from: 'proxy-middleware@>=0.7.0 <0.8.0',
108 verbose readDependencies: using existing wrap resolved: 'https://registry.npmjs.org/proxy-middleware/-/proxy-middleware-0.7.0.tgz' },
108 verbose readDependencies: using existing wrap q:
108 verbose readDependencies: using existing wrap { version: '1.0.1',
108 verbose readDependencies: using existing wrap from: '[email protected]',
108 verbose readDependencies: using existing wrap resolved: 'https://registry.npmjs.org/q/-/q-1.0.1.tgz' },
108 verbose readDependencies: using existing wrap request:
108 verbose readDependencies: using existing wrap { version: '2.27.0',
108 verbose readDependencies: using existing wrap from: '[email protected]',
108 verbose readDependencies: using existing wrap resolved: 'https://registry.npmjs.org/request/-/request-2.27.0.tgz',
108 verbose readDependencies: using existing wrap dependencies: [Object] },
108 verbose readDependencies: using existing wrap 'serve-static':
108 verbose readDependencies: using existing wrap { version: '1.7.1',
108 verbose readDependencies: using existing wrap from: '[email protected]',
108 verbose readDependencies: using existing wrap resolved: 'https://registry.npmjs.org/serve-static/-/serve-static-1.7.1.tgz',
108 verbose readDependencies: using existing wrap dependencies: [Object] },
108 verbose readDependencies: using existing wrap shelljs:
108 verbose readDependencies: using existing wrap { version: '0.2.6',
108 verbose readDependencies: using existing wrap from: '[email protected]',
108 verbose readDependencies: using existing wrap resolved: 'https://registry.npmjs.org/shelljs/-/shelljs-0.2.6.tgz' },
108 verbose readDependencies: using existing wrap 'tiny-lr-fork':
108 verbose readDependencies: using existing wrap { version: '0.0.5',
108 verbose readDependencies: using existing wrap from: '[email protected]',
108 verbose readDependencies: using existing wrap resolved: 'https://registry.npmjs.org/tiny-lr-fork/-/tiny-lr-fork-0.0.5.tgz',
108 verbose readDependencies: using existing wrap dependencies: [Object] },
108 verbose readDependencies: using existing wrap underscore:
108 verbose readDependencies: using existing wrap { version: '1.7.0',
108 verbose readDependencies: using existing wrap from: 'underscore@>=1.7.0 <1.8.0',
108 verbose readDependencies: using existing wrap resolved: 'https://registry.npmjs.org/underscore/-/underscore-1.7.0.tgz' },
108 verbose readDependencies: using existing wrap unzip:
108 verbose readDependencies: using existing wrap { version: '0.1.9',
108 verbose readDependencies: using existing wrap from: '[email protected]',
108 verbose readDependencies: using existing wrap resolved: 'https://registry.npmjs.org/unzip/-/unzip-0.1.9.tgz',
108 verbose readDependencies: using existing wrap dependencies: [Object] },
108 verbose readDependencies: using existing wrap 'vinyl-fs':
108 verbose readDependencies: using existing wrap { version: '0.3.7',
108 verbose readDependencies: using existing wrap from: '[email protected]',
108 verbose readDependencies: using existing wrap resolved: 'https://registry.npmjs.org/vinyl-fs/-/vinyl-fs-0.3.7.tgz',
108 verbose readDependencies: using existing wrap dependencies: [Object] },
108 verbose readDependencies: using existing wrap xml2js:
108 verbose readDependencies: using existing wrap { version: '0.4.4',
108 verbose readDependencies: using existing wrap from: '[email protected]',
108 verbose readDependencies: using existing wrap resolved: 'https://registry.npmjs.org/xml2js/-/xml2js-0.4.4.tgz',
108 verbose readDependencies: using existing wrap dependencies: [Object] } } ]
109 verbose from wrap [ 'archiver',
109 verbose from wrap { version: '0.5.1',
109 verbose from wrap from: '[email protected]',
109 verbose from wrap resolved: 'https://registry.npmjs.org/archiver/-/archiver-0.5.1.tgz',
109 verbose from wrap dependencies:
109 verbose from wrap { 'readable-stream': [Object],
109 verbose from wrap 'zip-stream': [Object],
109 verbose from wrap lazystream: [Object],
109 verbose from wrap 'file-utils': [Object],
109 verbose from wrap lodash: [Object] } } ]
110 verbose from wrap [ 'colors',
110 verbose from wrap { version: '0.6.2',
110 verbose from wrap from: '[email protected]',
110 verbose from wrap resolved: 'https://registry.npmjs.org/colors/-/colors-0.6.2.tgz' } ]
111 verbose from wrap [ 'connect',
111 verbose from wrap { version: '3.1.1',
111 verbose from wrap from: '[email protected]',
111 verbose from wrap resolved: 'https://registry.npmjs.org/connect/-/connect-3.1.1.tgz',
111 verbose from wrap dependencies:
111 verbose from wrap { debug: [Object],
111 verbose from wrap finalhandler: [Object],
111 verbose from wrap parseurl: [Object],
111 verbose from wrap 'utils-merge': [Object] } } ]
112 verbose from wrap [ 'connect-livereload',
112 verbose from wrap { version: '0.4.0',
112 verbose from wrap from: '[email protected]',
112 verbose from wrap resolved: 'https://registry.npmjs.org/connect-livereload/-/connect-livereload-0.4.0.tgz' } ]
113 verbose from wrap [ 'cross-spawn',
113 verbose from wrap { version: '0.2.3',
113 verbose from wrap from: '[email protected]',
113 verbose from wrap resolved: 'https://registry.npmjs.org/cross-spawn/-/cross-spawn-0.2.3.tgz',
113 verbose from wrap dependencies: { 'lru-cache': [Object] } } ]
114 verbose from wrap [ 'event-stream',
114 verbose from wrap { version: '3.0.20',
114 verbose from wrap from: 'event-stream@>=3.0.0 <3.1.0',
114 verbose from wrap resolved: 'https://registry.npmjs.org/event-stream/-/event-stream-3.0.20.tgz',
114 verbose from wrap dependencies:
114 verbose from wrap { through: [Object],
114 verbose from wrap duplexer: [Object],
114 verbose from wrap from: [Object],
114 verbose from wrap 'map-stream': [Object],
114 verbose from wrap 'pause-stream': [Object],
114 verbose from wrap split: [Object],
114 verbose from wrap 'stream-combiner': [Object] } } ]
115 verbose from wrap [ 'finalhandler',
115 verbose from wrap { version: '0.2.0',
115 verbose from wrap from: '[email protected]',
115 verbose from wrap resolved: 'https://registry.npmjs.org/finalhandler/-/finalhandler-0.2.0.tgz',
115 verbose from wrap dependencies: { debug: [Object], 'escape-html': [Object] } } ]
116 verbose from wrap [ 'form-data',
116 verbose from wrap { version: '0.1.4',
116 verbose from wrap from: '[email protected]',
116 verbose from wrap resolved: 'https://registry.npmjs.org/form-data/-/form-data-0.1.4.tgz',
116 verbose from wrap dependencies: { 'combined-stream': [Object], mime: [Object], async: [Object] } } ]
117 verbose from wrap [ 'gulp',
117 verbose from wrap { version: '3.8.8',
117 verbose from wrap from: '[email protected]',
117 verbose from wrap resolved: 'https://registry.npmjs.org/gulp/-/gulp-3.8.8.tgz',
117 verbose from wrap dependencies:
117 verbose from wrap { archy: [Object],
117 verbose from wrap chalk: [Object],
117 verbose from wrap deprecated: [Object],
117 verbose from wrap 'gulp-util': [Object],
117 verbose from wrap interpret: [Object],
117 verbose from wrap liftoff: [Object],
117 verbose from wrap minimist: [Object],
117 verbose from wrap orchestrator: [Object],
117 verbose from wrap 'pretty-hrtime': [Object],
117 verbose from wrap semver: [Object],
117 verbose from wrap tildify: [Object] } } ]
118 verbose from wrap [ 'ncp',
118 verbose from wrap { version: '0.4.2',
118 verbose from wrap from: '[email protected]',
118 verbose from wrap resolved: 'https://registry.npmjs.org/ncp/-/ncp-0.4.2.tgz' } ]
119 verbose from wrap [ 'npm',
119 verbose from wrap { version: '2.1.3',
119 verbose from wrap from: '[email protected]',
119 verbose from wrap resolved: 'https://registry.npmjs.org/npm/-/npm-2.1.3.tgz',
119 verbose from wrap dependencies:
119 verbose from wrap { abbrev: [Object],
119 verbose from wrap ansi: [Object],
119 verbose from wrap ansicolors: [Object],
119 verbose from wrap ansistyles: [Object],
119 verbose from wrap archy: [Object],
119 verbose from wrap 'async-some': [Object],
119 verbose from wrap 'block-stream': [Object],
119 verbose from wrap 'char-spinner': [Object],
119 verbose from wrap 'child-process-close': [Object],
119 verbose from wrap chmodr: [Object],
119 verbose from wrap chownr: [Object],
119 verbose from wrap 'cmd-shim': [Object],
119 verbose from wrap columnify: [Object],
119 verbose from wrap dezalgo: [Object],
119 verbose from wrap editor: [Object],
119 verbose from wrap 'fs-vacuum': [Object],
119 verbose from wrap 'fs-write-stream-atomic': [Object],
119 verbose from wrap fstream: [Object],
119 verbose from wrap 'fstream-npm': [Object],
119 verbose from wrap 'github-url-from-git': [Object],
119 verbose from wrap 'github-url-from-username-repo': [Object],
119 verbose from wrap glob: [Object],
119 verbose from wrap 'graceful-fs': [Object],
119 verbose from wrap inflight: [Object],
119 verbose from wrap inherits: [Object],
119 verbose from wrap ini: [Object],
119 verbose from wrap 'init-package-json': [Object],
119 verbose from wrap lockfile: [Object],
119 verbose from wrap 'lru-cache': [Object],
119 verbose from wrap minimatch: [Object],
119 verbose from wrap mkdirp: [Object],
119 verbose from wrap 'node-gyp': [Object],
119 verbose from wrap nopt: [Object],
119 verbose from wrap 'normalize-package-data': [Object],
119 verbose from wrap 'npm-cache-filename': [Object],
119 verbose from wrap 'npm-install-checks': [Object],
119 verbose from wrap 'npm-package-arg': [Object],
119 verbose from wrap 'npm-registry-client': [Object],
119 verbose from wrap 'npm-user-validate': [Object],
119 verbose from wrap npmconf: [Object],
119 verbose from wrap npmlog: [Object],
119 verbose from wrap once: [Object],
119 verbose from wrap opener: [Object],
119 verbose from wrap osenv: [Object],
119 verbose from wrap 'path-is-inside': [Object],
119 verbose from wrap read: [Object],
119 verbose from wrap 'read-installed': [Object],
119 verbose from wrap 'read-package-json': [Object],
119 verbose from wrap 'readable-stream': [Object],
119 verbose from wrap 'realize-package-specifier': [Object],
119 verbose from wrap request: [Object],
119 verbose from wrap retry: [Object],
119 verbose from wrap rimraf: [Object],
119 verbose from wrap semver: [Object],
119 verbose from wrap sha: [Object],
119 verbose from wrap slide: [Object],
119 verbose from wrap 'sorted-object': [Object],
119 verbose from wrap tar: [Object],
119 verbose from wrap 'text-table': [Object],
119 verbose from wrap 'uid-number': [Object],
119 verbose from wrap which: [Object],
119 verbose from wrap wrappy: [Object],
119 verbose from wrap 'write-file-atomic': [Object] } } ]
120 verbose from wrap [ 'open',
120 verbose from wrap { version: '0.0.5',
120 verbose from wrap from: '[email protected]',
120 verbose from wrap resolved: 'https://registry.npmjs.org/open/-/open-0.0.5.tgz' } ]
121 verbose from wrap [ 'optimist',
121 verbose from wrap { version: '0.6.0',
121 verbose from wrap from: '[email protected]',
121 verbose from wrap resolved: 'https://registry.npmjs.org/optimist/-/optimist-0.6.0.tgz',
121 verbose from wrap dependencies: { wordwrap: [Object], minimist: [Object] } } ]
122 verbose from wrap [ 'progress',
122 verbose from wrap { version: '1.1.7',
122 verbose from wrap from: '[email protected]',
122 verbose from wrap resolved: 'https://registry.npmjs.org/progress/-/progress-1.1.7.tgz' } ]
123 verbose from wrap [ 'prompt',
123 verbose from wrap { version: '0.2.12',
123 verbose from wrap from: '[email protected]',
123 verbose from wrap resolved: 'https://registry.npmjs.org/prompt/-/prompt-0.2.12.tgz',
123 verbose from wrap dependencies:
123 verbose from wrap { pkginfo: [Object],
123 verbose from wrap read: [Object],
123 verbose from wrap revalidator: [Object],
123 verbose from wrap utile: [Object],
123 verbose from wrap winston: [Object] } } ]
124 verbose from wrap [ 'proxy-middleware',
124 verbose from wrap { version: '0.7.0',
124 verbose from wrap from: 'proxy-middleware@>=0.7.0 <0.8.0',
124 verbose from wrap resolved: 'https://registry.npmjs.org/proxy-middleware/-/proxy-middleware-0.7.0.tgz' } ]
125 verbose from wrap [ 'q',
125 verbose from wrap { version: '1.0.1',
125 verbose from wrap from: '[email protected]',
125 verbose from wrap resolved: 'https://registry.npmjs.org/q/-/q-1.0.1.tgz' } ]
126 verbose from wrap [ 'request',
126 verbose from wrap { version: '2.27.0',
126 verbose from wrap from: '[email protected]',
126 verbose from wrap resolved: 'https://registry.npmjs.org/request/-/request-2.27.0.tgz',
126 verbose from wrap dependencies:
126 verbose from wrap { qs: [Object],
126 verbose from wrap 'json-stringify-safe': [Object],
126 verbose from wrap 'forever-agent': [Object],
126 verbose from wrap 'tunnel-agent': [Object],
126 verbose from wrap 'http-signature': [Object],
126 verbose from wrap hawk: [Object],
126 verbose from wrap 'aws-sign': [Object],
126 verbose from wrap 'oauth-sign': [Object],
126 verbose from wrap 'cookie-jar': [Object],
126 verbose from wrap 'node-uuid': [Object],
126 verbose from wrap mime: [Object] } } ]
127 verbose from wrap [ 'serve-static',
127 verbose from wrap { version: '1.7.1',
127 verbose from wrap from: '[email protected]',
127 verbose from wrap resolved: 'https://registry.npmjs.org/serve-static/-/serve-static-1.7.1.tgz',
127 verbose from wrap dependencies:
127 verbose from wrap { 'escape-html': [Object],
127 verbose from wrap parseurl: [Object],
127 verbose from wrap send: [Object],
127 verbose from wrap 'utils-merge': [Object] } } ]
128 verbose from wrap [ 'shelljs',
128 verbose from wrap { version: '0.2.6',
128 verbose from wrap from: '[email protected]',
128 verbose from wrap resolved: 'https://registry.npmjs.org/shelljs/-/shelljs-0.2.6.tgz' } ]
129 verbose from wrap [ 'tiny-lr-fork',
129 verbose from wrap { version: '0.0.5',
129 verbose from wrap from: '[email protected]',
129 verbose from wrap resolved: 'https://registry.npmjs.org/tiny-lr-fork/-/tiny-lr-fork-0.0.5.tgz',
129 verbose from wrap dependencies:
129 verbose from wrap { qs: [Object],
129 verbose from wrap 'faye-websocket': [Object],
129 verbose from wrap noptify: [Object],
129 verbose from wrap debug: [Object] } } ]
130 verbose from wrap [ 'underscore',
130 verbose from wrap { version: '1.7.0',
130 verbose from wrap from: 'underscore@>=1.7.0 <1.8.0',
130 verbose from wrap resolved: 'https://registry.npmjs.org/underscore/-/underscore-1.7.0.tgz' } ]
131 verbose from wrap [ 'unzip',
131 verbose from wrap { version: '0.1.9',
131 verbose from wrap from: '[email protected]',
131 verbose from wrap resolved: 'https://registry.npmjs.org/unzip/-/unzip-0.1.9.tgz',
131 verbose from wrap dependencies:
131 verbose from wrap { fstream: [Object],
131 verbose from wrap pullstream: [Object],
131 verbose from wrap binary: [Object],
131 verbose from wrap 'readable-stream': [Object],
131 verbose from wrap setimmediate: [Object],
131 verbose from wrap 'match-stream': [Object] } } ]
132 verbose from wrap [ 'vinyl-fs',
132 verbose from wrap { version: '0.3.7',
132 verbose from wrap from: '[email protected]',
132 verbose from wrap resolved: 'https://registry.npmjs.org/vinyl-fs/-/vinyl-fs-0.3.7.tgz',
132 verbose from wrap dependencies:
132 verbose from wrap { 'glob-stream': [Object],
132 verbose from wrap 'glob-watcher': [Object],
132 verbose from wrap 'graceful-fs': [Object],
132 verbose from wrap lodash: [Object],
132 verbose from wrap mkdirp: [Object],
132 verbose from wrap 'strip-bom': [Object],
132 verbose from wrap through2: [Object],
132 verbose from wrap vinyl: [Object] } } ]
133 verbose from wrap [ 'xml2js',
133 verbose from wrap { version: '0.4.4',
133 verbose from wrap from: '[email protected]',
133 verbose from wrap resolved: 'https://registry.npmjs.org/xml2js/-/xml2js-0.4.4.tgz',
133 verbose from wrap dependencies: { sax: [Object], xmlbuilder: [Object] } } ]
134 verbose readDependencies returned deps { archiver: '[email protected]',
134 verbose readDependencies returned deps colors: '[email protected]',
134 verbose readDependencies returned deps connect: '[email protected]',
134 verbose readDependencies returned deps 'connect-livereload': '[email protected]',
134 verbose readDependencies returned deps 'cross-spawn': '[email protected]',
134 verbose readDependencies returned deps 'event-stream': 'event-stream@>=3.0.0 <3.1.0',
134 verbose readDependencies returned deps finalhandler: '[email protected]',
134 verbose readDependencies returned deps 'form-data': '[email protected]',
134 verbose readDependencies returned deps gulp: '[email protected]',
134 verbose readDependencies returned deps ncp: '[email protected]',
134 verbose readDependencies returned deps npm: '[email protected]',
134 verbose readDependencies returned deps open: '[email protected]',
134 verbose readDependencies returned deps optimist: '[email protected]',
134 verbose readDependencies returned deps progress: '[email protected]',
134 verbose readDependencies returned deps prompt: '[email protected]',
134 verbose readDependencies returned deps 'proxy-middleware': 'proxy-middleware@>=0.7.0 <0.8.0',
134 verbose readDependencies returned deps q: '[email protected]',
134 verbose readDependencies returned deps request: '[email protected]',
134 verbose readDependencies returned deps 'serve-static': '[email protected]',
134 verbose readDependencies returned deps shelljs: '[email protected]',
134 verbose readDependencies returned deps 'tiny-lr-fork': '[email protected]',
134 verbose readDependencies returned deps underscore: 'underscore@>=1.7.0 <1.8.0',
134 verbose readDependencies returned deps unzip: '[email protected]',
134 verbose readDependencies returned deps 'vinyl-fs': '[email protected]',
134 verbose readDependencies returned deps xml2js: '[email protected]' }
135 verbose shrinkwrap resolving [email protected] to connect-livereload@[email protected]
136 verbose cache add [ 'connect-livereload@[email protected]', null ]
137 silly cache add name=undefined spec="connect-livereload@[email protected]" args=["connect-livereload@[email protected]",null]
138 verbose parsed url { pathname: 'connect-livereload@[email protected]',
138 verbose parsed url path: 'connect-livereload@[email protected]',
138 verbose parsed url href: 'connect-livereload@[email protected]' }
139 silly cache add name="connect-livereload" spec="[email protected]" args=["connect-livereload","[email protected]"]
140 verbose parsed url { pathname: '[email protected]',
140 verbose parsed url path: '[email protected]',
140 verbose parsed url href: '[email protected]' }
141 verbose addNamed [ 'connect-livereload', '[email protected]' ]
142 verbose addNamed [ null, null ]
143 silly lockFile c0184f76-ereload-connect-livereload-0-4-0 connect-livereload@[email protected]
144 verbose lock connect-livereload@[email protected] C:\Users\Piyush\AppData\Roaming\npm-cache\c0184f76-ereload-connect-livereload-0-4-0.lock
145 verbose shrinkwrap resolving [email protected] to cross-spawn@[email protected]
146 verbose cache add [ 'cross-spawn@[email protected]', null ]
147 silly cache add name=undefined spec="cross-spawn@[email protected]" args=["cross-spawn@[email protected]",null]
148 verbose parsed url { pathname: 'cross-spawn@[email protected]',
148 verbose parsed url path: 'cross-spawn@[email protected]',
148 verbose parsed url href: 'cross-spawn@[email protected]' }
149 silly cache add name="cross-spawn" spec="[email protected]" args=["cross-spawn","[email protected]"]
150 verbose parsed url { pathname: '[email protected]',
150 verbose parsed url path: '[email protected]',
150 verbose parsed url href: '[email protected]' }
151 verbose addNamed [ 'cross-spawn', '[email protected]' ]
152 verbose addNamed [ null, null ]
153 silly lockFile 3ab24a32-cross-spawn-cross-spawn-0-2-3 cross-spawn@[email protected]
154 verbose lock cross-spawn@[email protected] C:\Users\Piyush\AppData\Roaming\npm-cache\3ab24a32-cross-spawn-cross-spawn-0-2-3.lock
155 verbose shrinkwrap resolving event-stream@>=3.0.0 <3.1.0 to event-stream@event-stream@>=3.0.0 <3.1.0
156 verbose cache add [ 'event-stream@event-stream@>=3.0.0 <3.1.0', null ]
157 silly cache add name=undefined spec="event-stream@event-stream@>=3.0.0 <3.1.0" args=["event-stream@event-stream@>=3.0.0 <3.1.0",null]
158 verbose parsed url { pathname: 'event-stream@event-stream@%3E=3.0.0%20%3C3.1.0',
158 verbose parsed url path: 'event-stream@event-stream@%3E=3.0.0%20%3C3.1.0',
158 verbose parsed url href: 'event-stream@event-stream@%3E=3.0.0%20%3C3.1.0' }
159 silly cache add name="event-stream" spec="event-stream@>=3.0.0 <3.1.0" args=["event-stream","event-stream@>=3.0.0 <3.1.0"]
160 verbose parsed url { pathname: 'event-stream@%3E=3.0.0%20%3C3.1.0',
160 verbose parsed url path: 'event-stream@%3E=3.0.0%20%3C3.1.0',
160 verbose parsed url href: 'event-stream@%3E=3.0.0%20%3C3.1.0' }
161 verbose addNamed [ 'event-stream', 'event-stream@>=3.0.0 <3.1.0' ]
162 verbose addNamed [ null, '<3.1.0' ]
163 silly lockFile 57179c0b--stream-event-stream-3-0-0-3-1-0 event-stream@event-stream@>=3.0.0 <3.1.0
164 verbose lock event-stream@event-stream@>=3.0.0 <3.1.0 C:\Users\Piyush\AppData\Roaming\npm-cache\57179c0b--stream-event-stream-3-0-0-3-1-0.lock
165 verbose shrinkwrap resolving [email protected] to finalhandler@[email protected]
166 verbose cache add [ 'finalhandler@[email protected]', null ]
167 silly cache add name=undefined spec="finalhandler@[email protected]" args=["finalhandler@[email protected]",null]
168 verbose parsed url { pathname: 'finalhandler@[email protected]',
168 verbose parsed url path: 'finalhandler@[email protected]',
168 verbose parsed url href: 'finalhandler@[email protected]' }
169 silly cache add name="finalhandler" spec="[email protected]" args=["finalhandler","[email protected]"]
170 verbose parsed url { pathname: '[email protected]',
170 verbose parsed url path: '[email protected]',
170 verbose parsed url href: '[email protected]' }
171 verbose addNamed [ 'finalhandler', '[email protected]' ]
172 verbose addNamed [ null, null ]
173 silly lockFile ba1ba4f0-finalhandler-finalhandler-0-2-0 finalhandler@[email protected]
174 verbose lock finalhandler@[email protected] C:\Users\Piyush\AppData\Roaming\npm-cache\ba1ba4f0-finalhandler-finalhandler-0-2-0.lock
175 verbose shrinkwrap resolving [email protected] to form-data@[email protected]
176 verbose cache add [ 'form-data@[email protected]', null ]
177 silly cache add name=undefined spec="form-data@[email protected]" args=["form-data@[email protected]",null]
178 verbose parsed url { pathname: 'form-data@[email protected]',
178 verbose parsed url path: 'form-data@[email protected]',
178 verbose parsed url href: 'form-data@[email protected]' }
179 silly cache add name="form-data" spec="[email protected]" args=["form-data","[email protected]"]
180 verbose parsed url { pathname: '[email protected]',
180 verbose parsed url path: '[email protected]',
180 verbose parsed url href: '[email protected]' }
181 verbose addNamed [ 'form-data', '[email protected]' ]
182 verbose addNamed [ null, null ]
183 silly lockFile 3c4bcef7-form-data-form-data-0-1-4 form-data@[email protected]
184 verbose lock form-data@[email protected] C:\Users\Piyush\AppData\Roaming\npm-cache\3c4bcef7-form-data-form-data-0-1-4.lock
185 verbose shrinkwrap resolving [email protected] to gulp@[email protected]
186 verbose cache add [ 'gulp@[email protected]', null ]
187 silly cache add name=undefined spec="gulp@[email protected]" args=["gulp@[email protected]",null]
188 verbose parsed url { pathname: 'gulp@[email protected]',
188 verbose parsed url path: 'gulp@[email protected]',
188 verbose parsed url href: 'gulp@[email protected]' }
189 silly cache add name="gulp" spec="[email protected]" args=["gulp","[email protected]"]
190 verbose parsed url { pathname: '[email protected]',
190 verbose parsed url path: '[email protected]',
190 verbose parsed url href: '[email protected]' }
191 verbose addNamed [ 'gulp', '[email protected]' ]
192 verbose addNamed [ null, null ]
193 silly lockFile 459727df-gulp-gulp-3-8-8 gulp@[email protected]
194 verbose lock gulp@[email protected] C:\Users\Piyush\AppData\Roaming\npm-cache\459727df-gulp-gulp-3-8-8.lock
195 verbose shrinkwrap resolving [email protected] to ncp@[email protected]
196 verbose cache add [ 'ncp@[email protected]', null ]
197 silly cache add name=undefined spec="ncp@[email protected]" args=["ncp@[email protected]",null]
198 verbose parsed url { pathname: 'ncp@[email protected]',
198 verbose parsed url path: 'ncp@[email protected]',
198 verbose parsed url href: 'ncp@[email protected]' }
199 silly cache add name="ncp" spec="[email protected]" args=["ncp","[email protected]"]
200 verbose parsed url { pathname: '[email protected]', path: '[email protected]', href: '[email protected]' }
201 verbose addNamed [ 'ncp', '[email protected]' ]
202 verbose addNamed [ null, null ]
203 silly lockFile 68aae1b6-ncp-ncp-0-4-2 ncp@[email protected]
204 verbose lock ncp@[email protected] C:\Users\Piyush\AppData\Roaming\npm-cache\68aae1b6-ncp-ncp-0-4-2.lock
205 verbose shrinkwrap resolving [email protected] to npm@[email protected]
206 verbose cache add [ 'npm@[email protected]', null ]
207 silly cache add name=undefined spec="npm@[email protected]" args=["npm@[email protected]",null]
208 verbose parsed url { pathname: 'npm@[email protected]',
208 verbose parsed url path: 'npm@[email protected]',
208 verbose parsed url href: 'npm@[email protected]' }
209 silly cache add name="npm" spec="[email protected]" args=["npm","[email protected]"]
210 verbose parsed url { pathname: '[email protected]', path: '[email protected]', href: '[email protected]' }
211 verbose addNamed [ 'npm', '[email protected]' ]
212 verbose addNamed [ null, null ]
213 silly lockFile d53f04e0-npm-npm-2-1-3 npm@[email protected]
214 verbose lock npm@[email protected] C:\Users\Piyush\AppData\Roaming\npm-cache\d53f04e0-npm-npm-2-1-3.lock
215 verbose shrinkwrap resolving [email protected] to open@[email protected]
216 verbose cache add [ 'open@[email protected]', null ]
217 silly cache add name=undefined spec="open@[email protected]" args=["open@[email protected]",null]
218 verbose parsed url { pathname: 'open@[email protected]',
218 verbose parsed url path: 'open@[email protected]',
218 verbose parsed url href: 'open@[email protected]' }
219 silly cache add name="open" spec="[email protected]" args=["open","[email protected]"]
220 verbose parsed url { pathname: '[email protected]',
220 verbose parsed url path: '[email protected]',
220 verbose parsed url href: '[email protected]' }
221 verbose addNamed [ 'open', '[email protected]' ]
222 verbose addNamed [ null, null ]
223 silly lockFile c33c7153-open-open-0-0-5 open@[email protected]
224 verbose lock open@[email protected] C:\Users\Piyush\AppData\Roaming\npm-cache\c33c7153-open-open-0-0-5.lock
225 verbose shrinkwrap resolving [email protected] to optimist@[email protected]
226 verbose cache add [ 'optimist@[email protected]', null ]
227 silly cache add name=undefined spec="optimist@[email protected]" args=["optimist@[email protected]",null]
228 verbose parsed url { pathname: 'optimist@[email protected]',
228 verbose parsed url path: 'optimist@[email protected]',
228 verbose parsed url href: 'optimist@[email protected]' }
229 silly cache add name="optimist" spec="[email protected]" args=["optimist","[email protected]"]
230 verbose parsed url { pathname: '[email protected]',
230 verbose parsed url path: '[email protected]',
230 verbose parsed url href: '[email protected]' }
231 verbose addNamed [ 'optimist', '[email protected]' ]
232 verbose addNamed [ null, null ]
233 silly lockFile 4be7ab77-optimist-optimist-0-6-0 optimist@[email protected]
234 verbose lock optimist@[email protected] C:\Users\Piyush\AppData\Roaming\npm-cache\4be7ab77-optimist-optimist-0-6-0.lock
235 verbose shrinkwrap resolving [email protected] to progress@[email protected]
236 verbose cache add [ 'progress@[email protected]', null ]
237 silly cache add name=undefined spec="progress@[email protected]" args=["progress@[email protected]",null]
238 verbose parsed url { pathname: 'progress@[email protected]',
238 verbose parsed url path: 'progress@[email protected]',
238 verbose parsed url href: 'progress@[email protected]' }
239 silly cache add name="progress" spec="[email protected]" args=["progress","[email protected]"]
240 verbose parsed url { pathname: '[email protected]',
240 verbose parsed url path: '[email protected]',
240 verbose parsed url href: '[email protected]' }
241 verbose addNamed [ 'progress', '[email protected]' ]
242 verbose addNamed [ null, null ]
243 silly lockFile 5db4ba26-progress-progress-1-1-7 progress@[email protected]
244 verbose lock progress@[email protected] C:\Users\Piyush\AppData\Roaming\npm-cache\5db4ba26-progress-progress-1-1-7.lock
245 verbose shrinkwrap resolving [email protected] to prompt@[email protected]
246 verbose cache add [ 'prompt@[email protected]', null ]
247 silly cache add name=undefined spec="prompt@[email protected]" args=["prompt@[email protected]",null]
248 verbose parsed url { pathname: 'prompt@[email protected]',
248 verbose parsed url path: 'prompt@[email protected]',
248 verbose parsed url href: 'prompt@[email protected]' }
249 silly cache add name="prompt" spec="[email protected]" args=["prompt","[email protected]"]
250 verbose parsed url { pathname: '[email protected]',
250 verbose parsed url path: '[email protected]',
250 verbose parsed url href: '[email protected]' }
251 verbose addNamed [ 'prompt', '[email protected]' ]
252 verbose addNamed [ null, null ]
253 silly lockFile f5395279-prompt-prompt-0-2-12 prompt@[email protected]
254 verbose lock prompt@[email protected] C:\Users\Piyush\AppData\Roaming\npm-cache\f5395279-prompt-prompt-0-2-12.lock
255 verbose shrinkwrap resolving proxy-middleware@>=0.7.0 <0.8.0 to proxy-middleware@proxy-middleware@>=0.7.0 <0.8.0
256 verbose cache add [ 'proxy-middleware@proxy-middleware@>=0.7.0 <0.8.0', null ]
257 silly cache add name=undefined spec="proxy-middleware@proxy-middleware@>=0.7.0 <0.8.0" args=["proxy-middleware@proxy-middleware@>=0.7.0 <0.8.0",null]
258 verbose parsed url { pathname: 'proxy-middleware@proxy-middleware@%3E=0.7.0%20%3C0.8.0',
258 verbose parsed url path: 'proxy-middleware@proxy-middleware@%3E=0.7.0%20%3C0.8.0',
258 verbose parsed url href: 'proxy-middleware@proxy-middleware@%3E=0.7.0%20%3C0.8.0' }
259 silly cache add name="proxy-middleware" spec="proxy-middleware@>=0.7.0 <0.8.0" args=["proxy-middleware","proxy-middleware@>=0.7.0 <0.8.0"]
260 verbose parsed url { pathname: 'proxy-middleware@%3E=0.7.0%20%3C0.8.0',
260 verbose parsed url path: 'proxy-middleware@%3E=0.7.0%20%3C0.8.0',
260 verbose parsed url href: 'proxy-middleware@%3E=0.7.0%20%3C0.8.0' }
261 verbose addNamed [ 'proxy-middleware', 'proxy-middleware@>=0.7.0 <0.8.0' ]
262 verbose addNamed [ null, '<0.8.0' ]
263 silly lockFile 7c92c5a0-are-proxy-middleware-0-7-0-0-8-0 proxy-middleware@proxy-middleware@>=0.7.0 <0.8.0
264 verbose lock proxy-middleware@proxy-middleware@>=0.7.0 <0.8.0 C:\Users\Piyush\AppData\Roaming\npm-cache\7c92c5a0-are-proxy-middleware-0-7-0-0-8-0.lock
265 verbose shrinkwrap resolving [email protected] to q@[email protected]
266 verbose cache add [ 'q@[email protected]', null ]
267 silly cache add name=undefined spec="q@[email protected]" args=["q@[email protected]",null]
268 verbose parsed url { pathname: 'q@[email protected]', path: 'q@[email protected]', href: 'q@[email protected]' }
269 silly cache add name="q" spec="[email protected]" args=["q","[email protected]"]
270 verbose parsed url { pathname: '[email protected]', path: '[email protected]', href: '[email protected]' }
271 verbose addNamed [ 'q', '[email protected]' ]
272 verbose addNamed [ null, null ]
273 silly lockFile 6f7fefb6-q-q-1-0-1 q@[email protected]
274 verbose lock q@[email protected] C:\Users\Piyush\AppData\Roaming\npm-cache\6f7fefb6-q-q-1-0-1.lock
275 silly addNameRange { name: 'event-stream', range: '<3.1.0', hasData: false }
276 info addNameTag [ 'finalhandler', '[email protected]' ]
277 info addNameTag [ 'connect-livereload', '[email protected]' ]
278 info addNameTag [ 'cross-spawn', '[email protected]' ]
279 info addNameTag [ 'ncp', '[email protected]' ]
280 info addNameTag [ 'gulp', '[email protected]' ]
281 info addNameTag [ 'form-data', '[email protected]' ]
282 info addNameTag [ 'npm', '[email protected]' ]
283 info addNameTag [ 'open', '[email protected]' ]
284 info addNameTag [ 'optimist', '[email protected]' ]
285 info addNameTag [ 'progress', '[email protected]' ]
286 info addNameTag [ 'prompt', '[email protected]' ]
287 silly addNameRange { name: 'proxy-middleware', range: '<0.8.0', hasData: false }
288 verbose shrinkwrap resolving [email protected] to request@[email protected]
289 verbose cache add [ 'request@[email protected]', null ]
290 silly cache add name=undefined spec="request@[email protected]" args=["request@[email protected]",null]
291 verbose parsed url { pathname: 'request@[email protected]',
291 verbose parsed url path: 'request@[email protected]',
291 verbose parsed url href: 'request@[email protected]' }
292 silly cache add name="request" spec="[email protected]" args=["request","[email protected]"]
293 verbose parsed url { pathname: '[email protected]',
293 verbose parsed url path: '[email protected]',
293 verbose parsed url href: '[email protected]' }
294 verbose addNamed [ 'request', '[email protected]' ]
295 verbose addNamed [ null, null ]
296 silly lockFile 47b11d89-request-request-2-27-0 request@[email protected]
297 verbose lock request@[email protected] C:\Users\Piyush\AppData\Roaming\npm-cache\47b11d89-request-request-2-27-0.lock
298 verbose shrinkwrap resolving [email protected] to shelljs@[email protected]
299 verbose cache add [ 'shelljs@[email protected]', null ]
300 silly cache add name=undefined spec="shelljs@[email protected]" args=["shelljs@[email protected]",null]
301 verbose parsed url { pathname: 'shelljs@[email protected]',
301 verbose parsed url path: 'shelljs@[email protected]',
301 verbose parsed url href: 'shelljs@[email protected]' }
302 silly cache add name="shelljs" spec="[email protected]" args=["shelljs","[email protected]"]
303 verbose parsed url { pathname: '[email protected]',
303 verbose parsed url path: '[email protected]',
303 verbose parsed url href: '[email protected]' }
304 verbose addNamed [ 'shelljs', '[email protected]' ]
305 verbose addNamed [ null, null ]
306 silly lockFile 6d4a027e-shelljs-shelljs-0-2-6 shelljs@[email protected]
307 verbose lock shelljs@[email protected] C:\Users\Piyush\AppData\Roaming\npm-cache\6d4a027e-shelljs-shelljs-0-2-6.lock
308 verbose shrinkwrap resolving [email protected] to vinyl-fs@[email protected]
309 verbose cache add [ 'vinyl-fs@[email protected]', null ]
310 silly cache add name=undefined spec="vinyl-fs@[email protected]" args=["vinyl-fs@[email protected]",null]
311 verbose parsed url { pathname: 'vinyl-fs@[email protected]',
311 verbose parsed url path: 'vinyl-fs@[email protected]',
311 verbose parsed url href: 'vinyl-fs@[email protected]' }
312 silly cache add name="vinyl-fs" spec="[email protected]" args=["vinyl-fs","[email protected]"]
313 verbose parsed url { pathname: '[email protected]',
313 verbose parsed url path: '[email protected]',
313 verbose parsed url href: '[email protected]' }
314 verbose addNamed [ 'vinyl-fs', '[email protected]' ]
315 verbose addNamed [ null, null ]
316 silly lockFile 6dc4deac-vinyl-fs-vinyl-fs-0-3-7 vinyl-fs@[email protected]
317 verbose lock vinyl-fs@[email protected] C:\Users\Piyush\AppData\Roaming\npm-cache\6dc4deac-vinyl-fs-vinyl-fs-0-3-7.lock
318 verbose shrinkwrap resolving underscore@>=1.7.0 <1.8.0 to underscore@underscore@>=1.7.0 <1.8.0
319 verbose cache add [ 'underscore@underscore@>=1.7.0 <1.8.0', null ]
320 silly cache add name=undefined spec="underscore@underscore@>=1.7.0 <1.8.0" args=["underscore@underscore@>=1.7.0 <1.8.0",null]
321 verbose parsed url { pathname: 'underscore@underscore@%3E=1.7.0%20%3C1.8.0',
321 verbose parsed url path: 'underscore@underscore@%3E=1.7.0%20%3C1.8.0',
321 verbose parsed url href: 'underscore@underscore@%3E=1.7.0%20%3C1.8.0' }
322 silly cache add name="underscore" spec="underscore@>=1.7.0 <1.8.0" args=["underscore","underscore@>=1.7.0 <1.8.0"]
323 verbose parsed url { pathname: 'underscore@%3E=1.7.0%20%3C1.8.0',
323 verbose parsed url path: 'underscore@%3E=1.7.0%20%3C1.8.0',
323 verbose parsed url href: 'underscore@%3E=1.7.0%20%3C1.8.0' }
324 verbose addNamed [ 'underscore', 'underscore@>=1.7.0 <1.8.0' ]
325 verbose addNamed [ null, '<1.8.0' ]
326 silly lockFile f18dbf96-nderscore-underscore-1-7-0-1-8-0 underscore@underscore@>=1.7.0 <1.8.0
327 verbose lock underscore@underscore@>=1.7.0 <1.8.0 C:\Users\Piyush\AppData\Roaming\npm-cache\f18dbf96-nderscore-underscore-1-7-0-1-8-0.lock
328 verbose shrinkwrap resolving [email protected] to unzip@[email protected]
329 verbose cache add [ 'unzip@[email protected]', null ]
330 silly cache add name=undefined spec="unzip@[email protected]" args=["unzip@[email protected]",null]
331 verbose parsed url { pathname: 'unzip@[email protected]',
331 verbose parsed url path: 'unzip@[email protected]',
331 verbose parsed url href: 'unzip@[email protected]' }
332 silly cache add name="unzip" spec="[email protected]" args=["unzip","[email protected]"]
333 verbose parsed url { pathname: '[email protected]',
333 verbose parsed url path: '[email protected]',
333 verbose parsed url href: '[email protected]' }
334 verbose addNamed [ 'unzip', '[email protected]' ]
335 verbose addNamed [ null, null ]
336 silly lockFile 6f308e17-unzip-unzip-0-1-9 unzip@[email protected]
337 verbose lock unzip@[email protected] C:\Users\Piyush\AppData\Roaming\npm-cache\6f308e17-unzip-unzip-0-1-9.lock
338 verbose shrinkwrap resolving [email protected] to serve-static@[email protected]
339 verbose cache add [ 'serve-static@[email protected]', null ]
340 silly cache add name=undefined spec="serve-static@[email protected]" args=["serve-static@[email protected]",null]
341 verbose parsed url { pathname: 'serve-static@[email protected]',
341 verbose parsed url path: 'serve-static@[email protected]',
341 verbose parsed url href: 'serve-static@[email protected]' }
342 silly cache add name="serve-static" spec="[email protected]" args=["serve-static","[email protected]"]
343 verbose parsed url { pathname: '[email protected]',
343 verbose parsed url path: '[email protected]',
343 verbose parsed url href: '[email protected]' }
344 verbose addNamed [ 'serve-static', '[email protected]' ]
345 verbose addNamed [ null, null ]
346 silly lockFile 320cf61d-serve-static-serve-static-1-7-1 serve-static@[email protected]
347 verbose lock serve-static@[email protected] C:\Users\Piyush\AppData\Roaming\npm-cache\320cf61d-serve-static-serve-static-1-7-1.lock
348 verbose shrinkwrap resolving [email protected] to tiny-lr-fork@[email protected]
349 verbose cache add [ 'tiny-lr-fork@[email protected]', null ]
350 silly cache add name=undefined spec="tiny-lr-fork@[email protected]" args=["tiny-lr-fork@[email protected]",null]
351 verbose parsed url { pathname: 'tiny-lr-fork@[email protected]',
351 verbose parsed url path: 'tiny-lr-fork@[email protected]',
351 verbose parsed url href: 'tiny-lr-fork@[email protected]' }
352 silly cache add name="tiny-lr-fork" spec="[email protected]" args=["tiny-lr-fork","[email protected]"]
353 verbose parsed url { pathname: '[email protected]',
353 verbose parsed url path: '[email protected]',
353 verbose parsed url href: '[email protected]' }
354 verbose addNamed [ 'tiny-lr-fork', '[email protected]' ]
355 verbose addNamed [ null, null ]
356 silly lockFile 26893bd0-tiny-lr-fork-tiny-lr-fork-0-0-5 tiny-lr-fork@[email protected]
357 verbose lock tiny-lr-fork@[email protected] C:\Users\Piyush\AppData\Roaming\npm-cache\26893bd0-tiny-lr-fork-tiny-lr-fork-0-0-5.lock
358 verbose shrinkwrap resolving [email protected] to xml2js@[email protected]
359 verbose cache add [ 'xml2js@[email protected]', null ]
360 silly cache add name=undefined spec="xml2js@[email protected]" args=["xml2js@[email protected]",null]
361 verbose parsed url { pathname: 'xml2js@[email protected]',
361 verbose parsed url path: 'xml2js@[email protected]',
361 verbose parsed url href: 'xml2js@[email protected]' }
362 silly cache add name="xml2js" spec="[email protected]" args=["xml2js","[email protected]"]
363 verbose parsed url { pathname: '[email protected]',
363 verbose parsed url path: '[email protected]',