-
Notifications
You must be signed in to change notification settings - Fork 0
/
npm-debug.log
10043 lines (10043 loc) · 843 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
72036 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/extend-shallow-e05f6038
72037 info lifecycle [email protected]~preinstall: [email protected]
72038 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/plugin-error-75b089bc
72039 info lifecycle [email protected]~preinstall: [email protected]
72040 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/replace-ext-0415b564
72041 info lifecycle [email protected]~preinstall: [email protected]
72042 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/arr-union-68bca24f
72043 info lifecycle [email protected]~preinstall: [email protected]
72044 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/array-slice-e7b3bfad
72045 info lifecycle [email protected]~preinstall: [email protected]
72046 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/arr-diff-59b895fd
72047 info lifecycle [email protected]~preinstall: [email protected]
72048 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/kind-of-24ee75ef
72049 info lifecycle [email protected]~preinstall: [email protected]
72050 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/extend-shallow-01bcb167
72051 info lifecycle [email protected]~preinstall: [email protected]
72052 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/plugin-error-839042e4
72053 info lifecycle [email protected]~preinstall: [email protected]
72054 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/arr-union-ca51297b
72055 info lifecycle [email protected]~preinstall: [email protected]
72056 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/array-slice-88f828ed
72057 info lifecycle [email protected]~preinstall: [email protected]
72058 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/arr-diff-9e6200b4
72059 info lifecycle [email protected]~preinstall: [email protected]
72060 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/kind-of-faa8a19f
72061 info lifecycle [email protected]~preinstall: [email protected]
72062 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/extend-shallow-04b0dbd3
72063 info lifecycle [email protected]~preinstall: [email protected]
72064 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/plugin-error-beff67e5
72065 info lifecycle [email protected]~preinstall: [email protected]
72066 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/ansi-styles-cce02568
72067 info lifecycle [email protected]~preinstall: [email protected]
72068 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/minimist-d94caa9e
72069 info lifecycle [email protected]~preinstall: [email protected]
72070 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/object-assign-7183504a
72071 info lifecycle [email protected]~preinstall: [email protected]
72072 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/supports-color-62c068fd
72073 info lifecycle [email protected]~preinstall: [email protected]
72074 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/ansi-styles-bf7bae8e
72075 info lifecycle [email protected]~preinstall: [email protected]
72076 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/minimist-902acd08
72077 info lifecycle [email protected]~preinstall: [email protected]
72078 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/semver-ddc4a045
72079 info lifecycle [email protected]~preinstall: [email protected]
72080 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/supports-color-60e8ded8
72081 info lifecycle [email protected]~preinstall: [email protected]
72082 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/has-95ca5d5d
72083 info lifecycle [email protected]~preinstall: [email protected]
72084 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/has-ansi-4ab20560
72085 info lifecycle [email protected]~preinstall: [email protected]
72086 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/has-flag-2d0ec483
72087 info lifecycle [email protected]~preinstall: [email protected]
72088 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/has-symbols-eb7106f2
72089 info lifecycle [email protected]~preinstall: [email protected]
72090 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/has-unicode-42ebe928
72091 info lifecycle [email protected]~preinstall: [email protected]
72092 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/hoek-957e780d
72093 info lifecycle [email protected]~preinstall: [email protected]
72094 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/hosted-git-info-f063475a
72095 info lifecycle [email protected]~preinstall: [email protected]
72096 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/inherits-f8ac5b75
72097 info lifecycle [email protected]~preinstall: [email protected]
72098 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/ignore-41294c8a
72099 info lifecycle [email protected]~preinstall: [email protected]
72100 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/ignore-by-default-f1cda96a
72101 info lifecycle [email protected]~preinstall: [email protected]
72102 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/import-lazy-cf1a99b2
72103 info lifecycle [email protected]~preinstall: [email protected]
72104 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/imurmurhash-b134a40a
72105 info lifecycle [email protected]~preinstall: [email protected]
72106 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/inflection-9b085b96
72107 info lifecycle [email protected]~preinstall: [email protected]
72108 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/inherits-485bf429
72109 info lifecycle [email protected]~preinstall: [email protected]
72110 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/readable-stream-3f3d6d03
72111 info lifecycle [email protected]~preinstall: [email protected]
72112 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/duplexer2-bbc46892
72113 info lifecycle [email protected]~preinstall: [email protected]
72114 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/readable-stream-8f126c0a
72115 info lifecycle [email protected]~preinstall: [email protected]
72116 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/ini-4b35622a
72117 info lifecycle [email protected]~preinstall: [email protected]
72118 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/global-dirs-8fdee298
72119 info lifecycle [email protected]~preinstall: [email protected]
72120 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/ansi-regex-0b350870
72121 info lifecycle [email protected]~preinstall: [email protected]
72122 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/is-fullwidth-code-point-9e265194
72123 info lifecycle [email protected]~preinstall: [email protected]
72124 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/strip-ansi-f864d469
72125 info lifecycle [email protected]~preinstall: [email protected]
72126 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/string-width-30d73b9b
72127 info lifecycle [email protected]~preinstall: [email protected]
72128 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/ansi-regex-f4b55608
72129 info lifecycle [email protected]~preinstall: [email protected]
72130 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/strip-ansi-257c3768
72131 info lifecycle [email protected]~preinstall: [email protected]
72132 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/interpret-d16947ab
72133 info lifecycle [email protected]~preinstall: [email protected]
72134 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/ipaddr.js-9afc823f
72135 info lifecycle [email protected]~preinstall: [email protected]
72136 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/is-4b2432d6
72137 info lifecycle [email protected]~preinstall: [email protected]
72138 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/is-arrayish-8efc5bf4
72139 info lifecycle [email protected]~preinstall: [email protected]
72140 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/is-binary-path-8fc2f932
72141 info lifecycle [email protected]~preinstall: [email protected]
72142 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/is-bluebird-10eed5c9
72143 info lifecycle [email protected]~preinstall: [email protected]
72144 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/is-buffer-ba520d9c
72145 info lifecycle [email protected]~preinstall: [email protected]
72146 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/kind-of-c16e72ac
72147 info lifecycle [email protected]~preinstall: [email protected]
72148 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/kind-of-42eb1fdf
72149 info lifecycle [email protected]~preinstall: [email protected]
72150 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/is-accessor-descriptor-ddb8939e
72151 info lifecycle [email protected]~preinstall: [email protected]
72152 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/is-callable-c71c5f8c
72153 info lifecycle [email protected]~preinstall: [email protected]
72154 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/is-ci-9f64d737
72155 info lifecycle [email protected]~preinstall: [email protected]
72156 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/kind-of-ffeff54c
72157 info lifecycle [email protected]~preinstall: [email protected]
72158 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/is-data-descriptor-f603741a
72159 info lifecycle [email protected]~preinstall: [email protected]
72160 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/is-date-object-55c7a783
72161 info lifecycle [email protected]~preinstall: [email protected]
72162 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/kind-of-0d68ca2b
72163 info lifecycle [email protected]~preinstall: [email protected]
72164 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/is-descriptor-67d7c6d4
72165 info lifecycle [email protected]~preinstall: [email protected]
72166 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/define-property-8be40e4d
72167 info lifecycle [email protected]~preinstall: [email protected]
72168 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/define-property-8a0be32e
72169 info lifecycle [email protected]~preinstall: [email protected]
72170 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/is-extendable-c2eb1b30
72171 info lifecycle [email protected]~preinstall: [email protected]
72172 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/extend-shallow-d3e4a9ea
72173 info lifecycle [email protected]~preinstall: [email protected]
72174 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/extend-shallow-2dff948f
72175 info lifecycle [email protected]~preinstall: [email protected]
72176 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/extend-shallow-281d8616
72177 info lifecycle [email protected]~preinstall: [email protected]
72178 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/extend-shallow-81f3371e
72179 info lifecycle [email protected]~preinstall: [email protected]
72180 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/is-extglob-3b6c7947
72181 info lifecycle [email protected]~preinstall: [email protected]
72182 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/is-glob-aaf0de8d
72183 info lifecycle [email protected]~preinstall: [email protected]
72184 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/is-glob-cc0c9543
72185 info lifecycle [email protected]~preinstall: [email protected]
72186 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/is-glob-f10cf01a
72187 info lifecycle [email protected]~preinstall: [email protected]
72188 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/is-npm-be4222da
72189 info lifecycle [email protected]~preinstall: [email protected]
72190 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/kind-of-5d317abb
72191 info lifecycle [email protected]~preinstall: [email protected]
72192 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/is-number-feca5f2d
72193 info lifecycle [email protected]~preinstall: [email protected]
72194 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/has-values-464ae3f4
72195 info lifecycle [email protected]~preinstall: [email protected]
72196 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/is-obj-21b90f20
72197 info lifecycle [email protected]~preinstall: [email protected]
72198 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/dot-prop-8d2e2a4d
72199 info lifecycle [email protected]~preinstall: [email protected]
72200 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/is-promise-37943ac7
72201 info lifecycle [email protected]~preinstall: [email protected]
72202 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/is-redirect-a9be10b4
72203 info lifecycle [email protected]~preinstall: [email protected]
72204 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/is-regex-7dc5d47d
72205 info lifecycle [email protected]~preinstall: [email protected]
72206 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/is-retry-allowed-5f237baa
72207 info lifecycle [email protected]~preinstall: [email protected]
72208 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/is-stream-49f1c4f3
72209 info lifecycle [email protected]~preinstall: [email protected]
72210 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/is-symbol-e72c60d1
72211 info lifecycle [email protected]~preinstall: [email protected]
72212 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/es-to-primitive-70ddbd2b
72213 info lifecycle [email protected]~preinstall: [email protected]
72214 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/is-utf8-03268991
72215 info lifecycle [email protected]~preinstall: [email protected]
72216 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/is-windows-42cffa2d
72217 info lifecycle [email protected]~preinstall: [email protected]
72218 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/is-wsl-ac8d1070
72219 info lifecycle [email protected]~preinstall: [email protected]
72220 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/isarray-0f7b6dcf
72221 info lifecycle [email protected]~preinstall: [email protected]
72222 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/doctrine-857eb169
72223 info lifecycle [email protected]~preinstall: [email protected]
72224 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/isexe-6c2bc87d
72225 info lifecycle [email protected]~preinstall: [email protected]
72226 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/isobject-bd271209
72227 info lifecycle [email protected]~preinstall: [email protected]
72228 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/has-value-c1465d11
72229 info lifecycle [email protected]~preinstall: [email protected]
72230 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/is-plain-object-6d8bec71
72231 info lifecycle [email protected]~preinstall: [email protected]
72232 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/is-extendable-621b8444
72233 info lifecycle [email protected]~preinstall: [email protected]
72234 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/extend-shallow-e9b9c594
72235 info lifecycle [email protected]~preinstall: [email protected]
72236 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/js-tokens-be7131e4
72237 info lifecycle [email protected]~preinstall: [email protected]
72238 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/json-schema-traverse-627cad67
72239 info lifecycle [email protected]~preinstall: [email protected]
72240 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/json-stable-stringify-without-jsonify-dd4680d8
72241 info lifecycle [email protected]~preinstall: [email protected]
72242 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/jsonfile-5d32b5af
72243 info lifecycle [email protected]~preinstall: [email protected]
72244 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/kind-of-ce2771c1
72245 info lifecycle [email protected]~preinstall: [email protected]
72246 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/is-accessor-descriptor-444d565e
72247 info lifecycle [email protected]~preinstall: [email protected]
72248 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/is-data-descriptor-7e4e4c69
72249 info lifecycle [email protected]~preinstall: [email protected]
72250 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/is-descriptor-22cb73db
72251 info lifecycle [email protected]~preinstall: [email protected]
72252 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/define-property-bd670c69
72253 info lifecycle [email protected]~preinstall: [email protected]
72254 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/is-accessor-descriptor-543278d2
72255 info lifecycle [email protected]~preinstall: [email protected]
72256 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/is-data-descriptor-a1651d3d
72257 info lifecycle [email protected]~preinstall: [email protected]
72258 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/is-descriptor-c43faae9
72259 info lifecycle [email protected]~preinstall: [email protected]
72260 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/define-property-d654c690
72261 info lifecycle [email protected]~preinstall: [email protected]
72262 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/is-accessor-descriptor-521ff14a
72263 info lifecycle [email protected]~preinstall: [email protected]
72264 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/is-data-descriptor-0b876a73
72265 info lifecycle [email protected]~preinstall: [email protected]
72266 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/is-descriptor-31e509e2
72267 info lifecycle [email protected]~preinstall: [email protected]
72268 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/define-property-29cc1381
72269 info lifecycle [email protected]~preinstall: [email protected]
72270 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/kuler-9447d391
72271 info lifecycle [email protected]~preinstall: [email protected]
72272 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/pify-ad171cb2
72273 info lifecycle [email protected]~preinstall: [email protected]
72274 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/lodash-f325a7f1
72275 info lifecycle [email protected]~preinstall: [email protected]
72276 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/async-22c7afe6
72277 info lifecycle [email protected]~preinstall: [email protected]
72278 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/lodash._basecopy-f40e66f4
72279 info lifecycle [email protected]~preinstall: [email protected]
72280 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/lodash._basetostring-d0387287
72281 info lifecycle [email protected]~preinstall: [email protected]
72282 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/lodash._basevalues-3cc25557
72283 info lifecycle [email protected]~preinstall: [email protected]
72284 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/lodash._getnative-6cce540b
72285 info lifecycle [email protected]~preinstall: [email protected]
72286 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/lodash._isiterateecall-4fb22aea
72287 info lifecycle [email protected]~preinstall: [email protected]
72288 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/lodash._reescape-567b65f4
72289 info lifecycle [email protected]~preinstall: [email protected]
72290 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/lodash._reevaluate-9704f888
72291 info lifecycle [email protected]~preinstall: [email protected]
72292 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/lodash._reinterpolate-cbd256fe
72293 info lifecycle [email protected]~preinstall: [email protected]
72294 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/lodash.templatesettings-bf86a911
72295 info lifecycle [email protected]~preinstall: [email protected]
72296 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/lodash.template-23639865
72297 info lifecycle [email protected]~preinstall: [email protected]
72298 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/lodash._root-cca07567
72299 info lifecycle [email protected]~preinstall: [email protected]
72300 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/lodash.chunk-f7264f06
72301 info lifecycle [email protected]~preinstall: [email protected]
72302 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/lodash.escape-cc89fb99
72303 info lifecycle [email protected]~preinstall: [email protected]
72304 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/lodash.get-64ca836b
72305 info lifecycle [email protected]~preinstall: [email protected]
72306 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/lodash.includes-3f4761b5
72307 info lifecycle [email protected]~preinstall: [email protected]
72308 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/lodash.isarguments-1ccb86f9
72309 info lifecycle [email protected]~preinstall: [email protected]
72310 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/lodash.isarray-eb22e707
72311 info lifecycle [email protected]~preinstall: [email protected]
72312 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/lodash.isboolean-6048eb1c
72313 info lifecycle [email protected]~preinstall: [email protected]
72314 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/lodash.isequal-27ddc20c
72315 info lifecycle [email protected]~preinstall: [email protected]
72316 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/lodash.isinteger-af591467
72317 info lifecycle [email protected]~preinstall: [email protected]
72318 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/lodash.isnumber-0c9767ed
72319 info lifecycle [email protected]~preinstall: [email protected]
72320 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/lodash.isplainobject-0949f543
72321 info lifecycle [email protected]~preinstall: [email protected]
72322 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/lodash.isstring-f2ffa14c
72323 info lifecycle [email protected]~preinstall: [email protected]
72324 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/lodash.keys-022c9af1
72325 info lifecycle [email protected]~preinstall: [email protected]
72326 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/lodash.once-bbc11dc8
72327 info lifecycle [email protected]~preinstall: [email protected]
72328 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/lodash.restparam-2c9939aa
72329 info lifecycle [email protected]~preinstall: [email protected]
72330 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/lodash.set-15b7098b
72331 info lifecycle [email protected]~preinstall: [email protected]
72332 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/lodash.templatesettings-b7ed63e9
72333 info lifecycle [email protected]~preinstall: [email protected]
72334 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/lodash.template-dacbc26f
72335 info lifecycle [email protected]~preinstall: [email protected]
72336 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/lowercase-keys-713fb13e
72337 info lifecycle [email protected]~preinstall: [email protected]
72338 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/yallist-91376506
72339 info lifecycle [email protected]~preinstall: [email protected]
72340 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/make-iterator-ec6248b1
72341 info lifecycle [email protected]~preinstall: [email protected]
72342 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/map-cache-28e17b5d
72343 info lifecycle [email protected]~preinstall: [email protected]
72344 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/fragment-cache-dbf4e9ca
72345 info lifecycle [email protected]~preinstall: [email protected]
72346 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/media-typer-02fce850
72347 info lifecycle [email protected]~preinstall: [email protected]
72348 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/merge-descriptors-2784620d
72349 info lifecycle [email protected]~preinstall: [email protected]
72350 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/ms-94a198c7
72351 info lifecycle [email protected]~preinstall: [email protected]
72352 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/debug-afa5dec7
72353 info lifecycle [email protected]~preinstall: [email protected]
72354 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/methods-d2c221fb
72355 info lifecycle [email protected]~preinstall: [email protected]
72356 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/mime-b3dd8c8a
72357 info lifecycle [email protected]~preinstall: [email protected]
72358 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/mime-db-2906205b
72359 info lifecycle [email protected]~preinstall: [email protected]
72360 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/compressible-cec99f6b
72361 info lifecycle [email protected]~preinstall: [email protected]
72362 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/mime-types-2e525f5a
72363 info lifecycle [email protected]~preinstall: [email protected]
72364 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/mimic-fn-5faac8df
72365 info lifecycle [email protected]~preinstall: [email protected]
72366 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/mimic-response-e86dcdf9
72367 info lifecycle [email protected]~preinstall: [email protected]
72368 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/decompress-response-c4c823f8
72369 info lifecycle [email protected]~preinstall: [email protected]
72370 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/minimatch-32544428
72371 info lifecycle [email protected]~preinstall: [email protected]
72372 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/ignore-walk-05d74a9c
72373 info lifecycle [email protected]~preinstall: [email protected]
72374 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/minimist-fad745ce
72375 info lifecycle [email protected]~preinstall: [email protected]
72376 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/is-extendable-7e80805c
72377 info lifecycle [email protected]~preinstall: [email protected]
72378 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/mixin-deep-ae5a935e
72379 info lifecycle [email protected]~preinstall: [email protected]
72380 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/mkdirp-86ffa716
72381 info lifecycle [email protected]~preinstall: [email protected]
72382 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/moment-03611a6d
72383 info lifecycle [email protected]~preinstall: [email protected]
72384 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/file-stream-rotator-4561385b
72385 info lifecycle [email protected]~preinstall: [email protected]
72386 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/moment-timezone-f14c19e0
72387 info lifecycle [email protected]~preinstall: [email protected]
72388 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/ms-86108a38
72389 info lifecycle [email protected]~preinstall: [email protected]
72390 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/debug-5b36f212
72391 info lifecycle [email protected]~preinstall: [email protected]
72392 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/debug-2f68043d
72393 info lifecycle [email protected]~preinstall: [email protected]
72394 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/multipipe-a77e0c8e
72395 info lifecycle [email protected]~preinstall: [email protected]
72396 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/mute-stream-761e18e9
72397 info lifecycle [email protected]~preinstall: [email protected]
72398 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/nan-d594879c
72399 info lifecycle [email protected]~preinstall: [email protected]
72400 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/natives-fd834941
72401 info lifecycle [email protected]~preinstall: [email protected]
72402 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/natural-compare-b2dfd87e
72403 info lifecycle [email protected]~preinstall: [email protected]
72404 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/negotiator-7fb8427d
72405 info lifecycle [email protected]~preinstall: [email protected]
72406 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/accepts-023627e6
72407 info lifecycle [email protected]~preinstall: [email protected]
72408 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/next-tick-bd6d1e8f
72409 info lifecycle [email protected]~preinstall: [email protected]
72410 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/nice-try-9fbb7502
72411 info lifecycle [email protected]~preinstall: [email protected]
72412 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/node.extend-deeb58a2
72413 info lifecycle [email protected]~preinstall: [email protected]
72414 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/normalize-path-d36912d4
72415 info lifecycle [email protected]~preinstall: [email protected]
72416 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/npm-bundled-2f87292b
72417 info lifecycle [email protected]~preinstall: [email protected]
72418 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/npm-packlist-7b4b6224
72419 info lifecycle [email protected]~preinstall: [email protected]
72420 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/number-is-nan-2e325176
72421 info lifecycle [email protected]~preinstall: [email protected]
72422 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/is-fullwidth-code-point-f6c4f2c7
72423 info lifecycle [email protected]~preinstall: [email protected]
72424 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/object-assign-d948c848
72425 info lifecycle [email protected]~preinstall: [email protected]
72426 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/define-property-ddcaa5c3
72427 info lifecycle [email protected]~preinstall: [email protected]
72428 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/kind-of-39a502d3
72429 info lifecycle [email protected]~preinstall: [email protected]
72430 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/object-copy-1bd5deb6
72431 info lifecycle [email protected]~preinstall: [email protected]
72432 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/object-hash-4cb43d6b
72433 info lifecycle [email protected]~preinstall: [email protected]
72434 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/object-inspect-4ddfa668
72435 info lifecycle [email protected]~preinstall: [email protected]
72436 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/object-keys-4c1a5b06
72437 info lifecycle [email protected]~preinstall: [email protected]
72438 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/define-properties-7a464754
72439 info lifecycle [email protected]~preinstall: [email protected]
72440 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/object-visit-3cf5f3a4
72441 info lifecycle [email protected]~preinstall: [email protected]
72442 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/map-visit-9c7698f9
72443 info lifecycle [email protected]~preinstall: [email protected]
72444 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/collection-visit-3bde341d
72445 info lifecycle [email protected]~preinstall: [email protected]
72446 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/object.assign-304bbff6
72447 info lifecycle [email protected]~preinstall: [email protected]
72448 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/object.defaults-710015f3
72449 info lifecycle [email protected]~preinstall: [email protected]
72450 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/object.map-e2d6cb2b
72451 info lifecycle [email protected]~preinstall: [email protected]
72452 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/object.pick-c8788427
72453 info lifecycle [email protected]~preinstall: [email protected]
72454 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/on-finished-0028e2f7
72455 info lifecycle [email protected]~preinstall: [email protected]
72456 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/on-headers-e88189cb
72457 info lifecycle [email protected]~preinstall: [email protected]
72458 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/one-time-d1928a77
72459 info lifecycle [email protected]~preinstall: [email protected]
72460 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/onetime-58025ee1
72461 info lifecycle [email protected]~preinstall: [email protected]
72462 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/ono-34e61d3e
72463 info lifecycle [email protected]~preinstall: [email protected]
72464 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/openapi-schemas-a8a87b6f
72465 info lifecycle [email protected]~preinstall: [email protected]
72466 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/openapi-types-57c28947
72467 info lifecycle [email protected]~preinstall: [email protected]
72468 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/ordered-read-streams-79d23d6d
72469 info lifecycle [email protected]~preinstall: [email protected]
72470 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/os-homedir-cf022537
72471 info lifecycle [email protected]~preinstall: [email protected]
72472 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/os-tmpdir-cdced1a2
72473 info lifecycle [email protected]~preinstall: [email protected]
72474 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/osenv-e242b17c
72475 info lifecycle [email protected]~preinstall: [email protected]
72476 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/nopt-b7ff246a
72477 info lifecycle [email protected]~preinstall: [email protected]
72478 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/p-finally-fbd9cce4
72479 info lifecycle [email protected]~preinstall: [email protected]
72480 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/p-try-84952dff
72481 info lifecycle [email protected]~preinstall: [email protected]
72482 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/p-limit-7e0ccad7
72483 info lifecycle [email protected]~preinstall: [email protected]
72484 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/p-locate-4e4c2a03
72485 info lifecycle [email protected]~preinstall: [email protected]
72486 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/packet-reader-9a45b32d
72487 info lifecycle [email protected]~preinstall: [email protected]
72488 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/parent-module-32fdcae1
72489 info lifecycle [email protected]~preinstall: [email protected]
72490 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/parse-json-a6823044
72491 info lifecycle [email protected]~preinstall: [email protected]
72492 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/parse-node-version-bdb0177d
72493 info lifecycle [email protected]~preinstall: [email protected]
72494 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/parse-passwd-deda7c3a
72495 info lifecycle [email protected]~preinstall: [email protected]
72496 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/homedir-polyfill-f9d19647
72497 info lifecycle [email protected]~preinstall: [email protected]
72498 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/expand-tilde-245095b2
72499 info lifecycle [email protected]~preinstall: [email protected]
72500 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/parseurl-c9263ae1
72501 info lifecycle [email protected]~preinstall: [email protected]
72502 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/pascalcase-46c5c210
72503 info lifecycle [email protected]~preinstall: [email protected]
72504 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/path-dirname-d2095616
72505 info lifecycle [email protected]~preinstall: [email protected]
72506 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/glob-parent-c23977a2
72507 info lifecycle [email protected]~preinstall: [email protected]
72508 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/path-exists-04f139dd
72509 info lifecycle [email protected]~preinstall: [email protected]
72510 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/locate-path-25e70047
72511 info lifecycle [email protected]~preinstall: [email protected]
72512 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/find-up-4b7f5bbf
72513 info lifecycle [email protected]~preinstall: [email protected]
72514 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/path-is-absolute-c05fca5e
72515 info lifecycle [email protected]~preinstall: [email protected]
72516 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/path-is-inside-956c348c
72517 info lifecycle [email protected]~preinstall: [email protected]
72518 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/is-path-inside-41e42d71
72519 info lifecycle [email protected]~preinstall: [email protected]
72520 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/is-installed-globally-14719485
72521 info lifecycle [email protected]~preinstall: [email protected]
72522 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/path-key-818d229a
72523 info lifecycle [email protected]~preinstall: [email protected]
72524 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/npm-run-path-4c681a78
72525 info lifecycle [email protected]~preinstall: [email protected]
72526 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/path-parse-bf6fed97
72527 info lifecycle [email protected]~preinstall: [email protected]
72528 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/path-root-regex-4a6d0fd1
72529 info lifecycle [email protected]~preinstall: [email protected]
72530 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/path-root-b8045c84
72531 info lifecycle [email protected]~preinstall: [email protected]
72532 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/path-to-regexp-aafcfb17
72533 info lifecycle [email protected]~preinstall: [email protected]
72534 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/pify-ea23984b
72535 info lifecycle [email protected]~preinstall: [email protected]
72536 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/path-type-ff5685cb
72537 info lifecycle [email protected]~preinstall: [email protected]
72538 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/pg-connection-string-efc2013f
72539 info lifecycle [email protected]~preinstall: [email protected]
72540 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/pg-int8-51a39256
72541 info lifecycle [email protected]~preinstall: [email protected]
72542 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/pg-pool-271270f5
72543 info lifecycle [email protected]~preinstall: [email protected]
72544 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/semver-17bff45a
72545 info lifecycle [email protected]~preinstall: [email protected]
72546 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/pify-fba09726
72547 info lifecycle [email protected]~preinstall: [email protected]
72548 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/gzip-size-472b2a3a
72549 info lifecycle [email protected]~preinstall: [email protected]
72550 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/make-dir-9675252d
72551 info lifecycle [email protected]~preinstall: [email protected]
72552 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/p-try-dbfc17b5
72553 info lifecycle [email protected]~preinstall: [email protected]
72554 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/p-limit-ebf4e75b
72555 info lifecycle [email protected]~preinstall: [email protected]
72556 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/p-locate-7843b3ab
72557 info lifecycle [email protected]~preinstall: [email protected]
72558 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/locate-path-79bd1118
72559 info lifecycle [email protected]~preinstall: [email protected]
72560 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/find-up-dbee8b4e
72561 info lifecycle [email protected]~preinstall: [email protected]
72562 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/pkg-dir-ee51f8b7
72563 info lifecycle [email protected]~preinstall: [email protected]
72564 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/eslint-module-utils-4ecc851a
72565 info lifecycle [email protected]~preinstall: [email protected]
72566 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/plugin-error-55319b12
72567 info lifecycle [email protected]~preinstall: [email protected]
72568 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/posix-character-classes-56f10f97
72569 info lifecycle [email protected]~preinstall: [email protected]
72570 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/postgres-array-7f40c638
72571 info lifecycle [email protected]~preinstall: [email protected]
72572 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/postgres-bytea-b1975cfa
72573 info lifecycle [email protected]~preinstall: [email protected]
72574 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/postgres-date-1cd6c0e7
72575 info lifecycle [email protected]~preinstall: [email protected]
72576 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/prelude-ls-c27a1055
72577 info lifecycle [email protected]~preinstall: [email protected]
72578 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/prepend-http-6a7198e5
72579 info lifecycle [email protected]~preinstall: [email protected]
72580 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/pretty-bytes-b4441d14
72581 info lifecycle [email protected]~preinstall: [email protected]
72582 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/pretty-hrtime-cd1ebc1b
72583 info lifecycle [email protected]~preinstall: [email protected]
72584 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/process-nextick-args-27e5d370
72585 info lifecycle [email protected]~preinstall: [email protected]
72586 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/progress-4ab29920
72587 info lifecycle [email protected]~preinstall: [email protected]
72588 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/proto-list-7b331a02
72589 info lifecycle [email protected]~preinstall: [email protected]
72590 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/config-chain-3df7ecd3
72591 info lifecycle [email protected]~preinstall: [email protected]
72592 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/proxy-addr-b2712876
72593 info lifecycle [email protected]~preinstall: [email protected]
72594 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/pseudomap-75987d68
72595 info lifecycle [email protected]~preinstall: [email protected]
72596 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/lru-cache-208c6baf
72597 info lifecycle [email protected]~preinstall: [email protected]
72598 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/pstree.remy-cff5b97e
72599 info lifecycle [email protected]~preinstall: [email protected]
72600 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/punycode-1aaf3030
72601 info lifecycle [email protected]~preinstall: [email protected]
72602 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/isemail-b363bdcc
72603 info lifecycle [email protected]~preinstall: [email protected]
72604 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/qs-f352eaf0
72605 info lifecycle [email protected]~preinstall: [email protected]
72606 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/range-parser-174379e4
72607 info lifecycle [email protected]~preinstall: [email protected]
72608 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/minimist-c874eb46
72609 info lifecycle [email protected]~preinstall: [email protected]
72610 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/p-try-4063b2e3
72611 info lifecycle [email protected]~preinstall: [email protected]
72612 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/p-limit-59b2006c
72613 info lifecycle [email protected]~preinstall: [email protected]
72614 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/p-locate-39d9d197
72615 info lifecycle [email protected]~preinstall: [email protected]
72616 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/locate-path-1c482e85
72617 info lifecycle [email protected]~preinstall: [email protected]
72618 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/find-up-306276ab
72619 info lifecycle [email protected]~preinstall: [email protected]
72620 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/regenerator-runtime-4c292d5f
72621 info lifecycle [email protected]~preinstall: [email protected]
72622 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/babel-runtime-cdae9749
72623 info lifecycle [email protected]~preinstall: [email protected]
72624 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/regexpp-d5efeaad
72625 info lifecycle [email protected]~preinstall: [email protected]
72626 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/eslint-plugin-es-f8c7c3fe
72627 info lifecycle [email protected]~preinstall: [email protected]
72628 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/remove-trailing-separator-79e1aa99
72629 info lifecycle [email protected]~preinstall: [email protected]
72630 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/normalize-path-eaa71f67
72631 info lifecycle [email protected]~preinstall: [email protected]
72632 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/repeat-element-e8c6a02b
72633 info lifecycle [email protected]~preinstall: [email protected]
72634 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/repeat-string-d522b043
72635 info lifecycle [email protected]~preinstall: [email protected]
72636 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/replace-ext-aafc0e65
72637 info lifecycle [email protected]~preinstall: [email protected]
72638 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/require-directory-74d1504a
72639 info lifecycle [email protected]~preinstall: [email protected]
72640 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/require-main-filename-ffc34255
72641 info lifecycle [email protected]~preinstall: [email protected]
72642 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/resolve-f667aa96
72643 info lifecycle [email protected]~preinstall: [email protected]
72644 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/eslint-import-resolver-node-9f9b0538
72645 info lifecycle [email protected]~preinstall: [email protected]
72646 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/rechoir-1e09850f
72647 info lifecycle [email protected]~preinstall: [email protected]
72648 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/resolve-from-eefcf530
72649 info lifecycle [email protected]~preinstall: [email protected]
72650 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/import-fresh-1a1052d8
72651 info lifecycle [email protected]~preinstall: [email protected]
72652 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/resolve-url-40b0e79f
72653 info lifecycle [email protected]~preinstall: [email protected]
72654 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/ret-23d2b5a0
72655 info lifecycle [email protected]~preinstall: [email protected]
72656 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/ms-f76f2450
72657 info lifecycle [email protected]~preinstall: [email protected]
72658 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/debug-dc530283
72659 info lifecycle [email protected]~preinstall: [email protected]
72660 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/retry-as-promised-d81cdebc
72661 info lifecycle [email protected]~preinstall: [email protected]
72662 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/run-async-31b7489c
72663 info lifecycle [email protected]~preinstall: [email protected]
72664 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/safe-buffer-43643ae9
72665 info lifecycle [email protected]~preinstall: [email protected]
72666 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/content-disposition-d06fbaaf
72667 info lifecycle [email protected]~preinstall: [email protected]
72668 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/ecdsa-sig-formatter-752a0642
72669 info lifecycle [email protected]~preinstall: [email protected]
72670 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/jwa-58bff87e
72671 info lifecycle [email protected]~preinstall: [email protected]
72672 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/jws-61c4b2e1
72673 info lifecycle [email protected]~preinstall: [email protected]
72674 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/safe-regex-ed7d94dd
72675 info lifecycle [email protected]~preinstall: [email protected]
72676 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/regex-not-c0ece5cf
72677 info lifecycle [email protected]~preinstall: [email protected]
72678 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/safer-buffer-433e5e4a
72679 info lifecycle [email protected]~preinstall: [email protected]
72680 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/iconv-lite-0d7f762d
72681 info lifecycle [email protected]~preinstall: [email protected]
72682 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/encoding-ff4a51e3
72683 info lifecycle [email protected]~preinstall: [email protected]
72684 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/mimelib-559074e9
72685 info lifecycle [email protected]~preinstall: [email protected]
72686 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/sax-208548f4
72687 info lifecycle [email protected]~preinstall: [email protected]
72688 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/needle-deff991e
72689 info lifecycle [email protected]~preinstall: [email protected]
72690 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/semver-f4fc1547
72691 info lifecycle [email protected]~preinstall: [email protected]
72692 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/jsonwebtoken-c63faf0c
72693 info lifecycle [email protected]~preinstall: [email protected]
72694 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/semver-diff-74c8c4d9
72695 info lifecycle [email protected]~preinstall: [email protected]
72696 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/ms-4af4b2fd
72697 info lifecycle [email protected]~preinstall: [email protected]
72698 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/debug-492832b5
72699 info lifecycle [email protected]~preinstall: [email protected]
72700 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/ms-5ff89b1f
72701 info lifecycle [email protected]~preinstall: [email protected]
72702 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/sendgrid-rest-2ae3f49e
72703 info lifecycle [email protected]~preinstall: [email protected]
72704 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/ms-fe8382f4
72705 info lifecycle [email protected]~preinstall: [email protected]
72706 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/debug-2fd461a0
72707 info lifecycle [email protected]~preinstall: [email protected]
72708 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/sequencify-16df1a77
72709 info lifecycle [email protected]~preinstall: [email protected]
72710 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/set-blocking-0ebd661c
72711 info lifecycle [email protected]~preinstall: [email protected]
72712 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/extend-shallow-22c017e4
72713 info lifecycle [email protected]~preinstall: [email protected]
72714 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/setprototypeof-617ba4a5
72715 info lifecycle [email protected]~preinstall: [email protected]
72716 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/shebang-regex-3f4cc024
72717 info lifecycle [email protected]~preinstall: [email protected]
72718 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/shebang-command-1d14d715
72719 info lifecycle [email protected]~preinstall: [email protected]
72720 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/shellwords-e968fd1f
72721 info lifecycle [email protected]~preinstall: [email protected]
72722 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/shimmer-82882061
72723 info lifecycle [email protected]~preinstall: [email protected]
72724 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/cls-bluebird-dca836a7
72725 info lifecycle [email protected]~preinstall: [email protected]
72726 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/sigmund-7cd8446f
72727 info lifecycle [email protected]~preinstall: [email protected]
72728 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/editorconfig-1cae9568
72729 info lifecycle [email protected]~preinstall: [email protected]
72730 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/minimatch-0c4670e7
72731 info lifecycle [email protected]~preinstall: [email protected]
72732 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/glob-c52c1291
72733 info lifecycle [email protected]~preinstall: [email protected]
72734 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/globule-fc7124a0
72735 info lifecycle [email protected]~preinstall: [email protected]
72736 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/gaze-8dbedfe7
72737 info lifecycle [email protected]~preinstall: [email protected]
72738 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/glob-watcher-bab86fa9
72739 info lifecycle [email protected]~preinstall: [email protected]
72740 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/signal-exit-9bfa316d
72741 info lifecycle [email protected]~preinstall: [email protected]
72742 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/restore-cursor-71fd809c
72743 info lifecycle [email protected]~preinstall: [email protected]
72744 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/cli-cursor-4116f1c1
72745 info lifecycle [email protected]~preinstall: [email protected]
72746 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/simple-concat-81dbc207
72747 info lifecycle [email protected]~preinstall: [email protected]
72748 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/simple-swizzle-ebea1038
72749 info lifecycle [email protected]~preinstall: [email protected]
72750 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/color-string-d2c0851c
72751 info lifecycle [email protected]~preinstall: [email protected]
72752 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/color-2b1d0f23
72753 info lifecycle [email protected]~preinstall: [email protected]
72754 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/is-fullwidth-code-point-d2fd10bb
72755 info lifecycle [email protected]~preinstall: [email protected]
72756 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/slice-ansi-c1b1fbfb
72757 info lifecycle [email protected]~preinstall: [email protected]
72758 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/is-accessor-descriptor-7f8e85ab
72759 info lifecycle [email protected]~preinstall: [email protected]
72760 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/is-data-descriptor-78e84eac
72761 info lifecycle [email protected]~preinstall: [email protected]
72762 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/is-descriptor-35fb7bd3
72763 info lifecycle [email protected]~preinstall: [email protected]
72764 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/define-property-60cd9cb1
72765 info lifecycle [email protected]~preinstall: [email protected]
72766 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/kind-of-cf327132
72767 info lifecycle [email protected]~preinstall: [email protected]
72768 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/snapdragon-util-a45aa15a
72769 info lifecycle [email protected]~preinstall: [email protected]
72770 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/snapdragon-node-0ca9d678
72771 info lifecycle [email protected]~preinstall: [email protected]
72772 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/define-property-a0bf073a
72773 info lifecycle [email protected]~preinstall: [email protected]
72774 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/extend-shallow-0288ca38
72775 info lifecycle [email protected]~preinstall: [email protected]
72776 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/ms-87b7f049
72777 info lifecycle [email protected]~preinstall: [email protected]
72778 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/debug-b3444384
72779 info lifecycle [email protected]~preinstall: [email protected]
72780 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/source-map-18944363
72781 info lifecycle [email protected]~preinstall: [email protected]
72782 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/source-map-81af972d
72783 info lifecycle [email protected]~preinstall: [email protected]
72784 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/source-map-support-c0a55d10
72785 info lifecycle [email protected]~preinstall: [email protected]
72786 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/source-map-url-11a9e1d0
72787 info lifecycle [email protected]~preinstall: [email protected]
72788 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/sparkles-459913b9
72789 info lifecycle [email protected]~preinstall: [email protected]
72790 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/glogg-7e03875d
72791 info lifecycle [email protected]~preinstall: [email protected]
72792 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/gulplog-02911f3e
72793 info lifecycle [email protected]~preinstall: [email protected]
72794 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/has-gulplog-e5469dd3
72795 info lifecycle [email protected]~preinstall: [email protected]
72796 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/spdx-exceptions-60c002d9
72797 info lifecycle [email protected]~preinstall: [email protected]
72798 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/spdx-license-ids-fa4caa3a
72799 info lifecycle [email protected]~preinstall: [email protected]
72800 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/spdx-expression-parse-5a098bda
72801 info lifecycle [email protected]~preinstall: [email protected]
72802 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/spdx-correct-4cf38c6b
72803 info lifecycle [email protected]~preinstall: [email protected]
72804 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/split-string-d3a52a42
72805 info lifecycle [email protected]~preinstall: [email protected]
72806 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/set-value-8478cbcb
72807 info lifecycle [email protected]~preinstall: [email protected]
72808 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/sprintf-js-dec99449
72809 info lifecycle [email protected]~preinstall: [email protected]
72810 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/argparse-22e05ea9
72811 info lifecycle [email protected]~preinstall: [email protected]
72812 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/js-yaml-cf8b598e
72813 info lifecycle [email protected]~preinstall: [email protected]
72814 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/json-schema-ref-parser-e2f7ff93
72815 info lifecycle [email protected]~preinstall: [email protected]
72816 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/stack-trace-76bf2cda
72817 info lifecycle [email protected]~preinstall: [email protected]
72818 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/define-property-ddbe3e4c
72819 info lifecycle [email protected]~preinstall: [email protected]
72820 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/static-extend-ac534c5e
72821 info lifecycle [email protected]~preinstall: [email protected]
72822 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/class-utils-aa95f9f1
72823 info lifecycle [email protected]~preinstall: [email protected]
72824 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/statuses-5671ebf6
72825 info lifecycle [email protected]~preinstall: [email protected]
72826 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/stream-consume-72aad369
72827 info lifecycle [email protected]~preinstall: [email protected]
72828 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/stream-counter-bd2301c0
72829 info lifecycle [email protected]~preinstall: [email protected]
72830 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/string_decoder-e6e403eb
72831 info lifecycle [email protected]~preinstall: [email protected]
72832 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/string.prototype.trimleft-caaf193f
72833 info lifecycle [email protected]~preinstall: [email protected]
72834 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/string.prototype.trimright-bfe2c784
72835 info lifecycle [email protected]~preinstall: [email protected]
72836 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/es-abstract-f9098794
72837 info lifecycle [email protected]~preinstall: [email protected]
72838 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/array-includes-a5bd289b
72839 info lifecycle [email protected]~preinstall: [email protected]
72840 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/object.entries-33828d31
72841 info lifecycle [email protected]~preinstall: [email protected]
72842 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/object.values-d7047259
72843 info lifecycle [email protected]~preinstall: [email protected]
72844 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/strip-ansi-95d293d6
72845 info lifecycle [email protected]~preinstall: [email protected]
72846 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/chalk-0ccff3db
72847 info lifecycle [email protected]~preinstall: [email protected]
72848 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/chalk-0ba03fa6
72849 info lifecycle [email protected]~preinstall: [email protected]
72850 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/string-width-dcf1794d
72851 info lifecycle [email protected]~preinstall: [email protected]
72852 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/strip-bom-70e02a44
72853 info lifecycle [email protected]~preinstall: [email protected]
72854 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/load-json-file-7653f870
72855 info lifecycle [email protected]~preinstall: [email protected]
72856 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/strip-eof-63ec099f
72857 info lifecycle [email protected]~preinstall: [email protected]
72858 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/strip-json-comments-98a34280
72859 info lifecycle [email protected]~preinstall: [email protected]
72860 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/rc-beebfd5d
72861 info lifecycle [email protected]~preinstall: [email protected]
72862 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/registry-auth-token-bb187313
72863 info lifecycle [email protected]~preinstall: [email protected]
72864 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/registry-url-c2464b44
72865 info lifecycle [email protected]~preinstall: [email protected]
72866 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/supports-color-b59c1ff6
72867 info lifecycle [email protected]~preinstall: [email protected]
72868 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/chalk-4640f49b
72869 info lifecycle [email protected]~preinstall: [email protected]
72870 silly preinstall @babel/[email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/@babel/highlight-e556fd5d
72871 info lifecycle @babel/[email protected]~preinstall: @babel/[email protected]
72872 silly preinstall @babel/[email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/@babel/code-frame-6627de20
72873 info lifecycle @babel/[email protected]~preinstall: @babel/[email protected]
72874 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/commander-7cd2c832
72875 info lifecycle [email protected]~preinstall: [email protected]
72876 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/swagger-methods-26a2a64c
72877 info lifecycle [email protected]~preinstall: [email protected]
72878 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/swagger-ui-dist-eb9a4286
72879 info lifecycle [email protected]~preinstall: [email protected]
72880 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/ansi-regex-9fb60a7b
72881 info lifecycle [email protected]~preinstall: [email protected]
72882 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/is-fullwidth-code-point-f6763da5
72883 info lifecycle [email protected]~preinstall: [email protected]
72884 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/strip-ansi-dbb6adbd
72885 info lifecycle [email protected]~preinstall: [email protected]
72886 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/string-width-06a06c71
72887 info lifecycle [email protected]~preinstall: [email protected]
72888 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/terraformer-320623bc
72889 info lifecycle [email protected]~preinstall: [email protected]
72890 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/terraformer-wkt-parser-0d4d6ca3
72891 info lifecycle [email protected]~preinstall: [email protected]
72892 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/source-map-9006cd5e
72893 info lifecycle [email protected]~preinstall: [email protected]
72894 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/terser-a06afe09
72895 info lifecycle [email protected]~preinstall: [email protected]
72896 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/text-hex-080300bf
72897 info lifecycle [email protected]~preinstall: [email protected]
72898 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/colorspace-91237316
72899 info lifecycle [email protected]~preinstall: [email protected]
72900 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/diagnostics-6a31fe50
72901 info lifecycle [email protected]~preinstall: [email protected]
72902 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/text-table-53486c4d
72903 info lifecycle [email protected]~preinstall: [email protected]
72904 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/through-3112aa82
72905 info lifecycle [email protected]~preinstall: [email protected]
72906 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/split-9fab7cb3
72907 info lifecycle [email protected]~preinstall: [email protected]
72908 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/pgpass-37a9f1b0
72909 info lifecycle [email protected]~preinstall: [email protected]
72910 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/tildify-962ad654
72911 info lifecycle [email protected]~preinstall: [email protected]
72912 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/time-stamp-ec8b122b
72913 info lifecycle [email protected]~preinstall: [email protected]
72914 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/fancy-log-4bd38ef7
72915 info lifecycle [email protected]~preinstall: [email protected]
72916 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/timed-out-8af912d3
72917 info lifecycle [email protected]~preinstall: [email protected]
72918 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/tmp-28e2bc26
72919 info lifecycle [email protected]~preinstall: [email protected]
72920 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/external-editor-0b7e232b
72921 info lifecycle [email protected]~preinstall: [email protected]
72922 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/kind-of-23699ca1
72923 info lifecycle [email protected]~preinstall: [email protected]
72924 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/to-object-path-15addaa4
72925 info lifecycle [email protected]~preinstall: [email protected]
72926 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/to-regex-ae05ad70
72927 info lifecycle [email protected]~preinstall: [email protected]
72928 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/to-regex-range-8dff43f1
72929 info lifecycle [email protected]~preinstall: [email protected]
72930 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/fill-range-f36d87a0
72931 info lifecycle [email protected]~preinstall: [email protected]
72932 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/toidentifier-6b941de7
72933 info lifecycle [email protected]~preinstall: [email protected]
72934 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/http-errors-41fd5fab
72935 info lifecycle [email protected]~preinstall: [email protected]
72936 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/send-21139017
72937 info lifecycle [email protected]~preinstall: [email protected]
72938 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/serve-static-fb7bd692
72939 info lifecycle [email protected]~preinstall: [email protected]
72940 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/topo-2d709d83
72941 info lifecycle [email protected]~preinstall: [email protected]
72942 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/toposort-class-8c06c822
72943 info lifecycle [email protected]~preinstall: [email protected]
72944 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/nopt-be4bc78e
72945 info lifecycle [email protected]~preinstall: [email protected]
72946 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/touch-36baf977
72947 info lifecycle [email protected]~preinstall: [email protected]
72948 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/triple-beam-8d282f6b
72949 info lifecycle [email protected]~preinstall: [email protected]
72950 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/logform-5343ea0e
72951 info lifecycle [email protected]~preinstall: [email protected]
72952 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/tslib-277ac2e8
72953 info lifecycle [email protected]~preinstall: [email protected]
72954 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/rxjs-77adb596
72955 info lifecycle [email protected]~preinstall: [email protected]
72956 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/inquirer-c55d2cdc
72957 info lifecycle [email protected]~preinstall: [email protected]
72958 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/type-c7b28c6f
72959 info lifecycle [email protected]~preinstall: [email protected]
72960 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/d-7bd23c14
72961 info lifecycle [email protected]~preinstall: [email protected]
72962 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/es6-symbol-a622274e
72963 info lifecycle [email protected]~preinstall: [email protected]
72964 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/es6-iterator-b2f18590
72965 info lifecycle [email protected]~preinstall: [email protected]
72966 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/es5-ext-edaf4038
72967 info lifecycle [email protected]~preinstall: [email protected]
72968 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/lru-queue-b3d5e007
72969 info lifecycle [email protected]~preinstall: [email protected]
72970 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/timers-ext-a2aa0952
72971 info lifecycle [email protected]~preinstall: [email protected]
72972 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/es6-weak-map-3e91ba6d
72973 info lifecycle [email protected]~preinstall: [email protected]
72974 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/event-emitter-c2591c2d
72975 info lifecycle [email protected]~preinstall: [email protected]
72976 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/memoizee-f44b97cc
72977 info lifecycle [email protected]~preinstall: [email protected]
72978 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/cli-color-97151ce5
72979 info lifecycle [email protected]~preinstall: [email protected]
72980 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/type-check-d7c9efd8
72981 info lifecycle [email protected]~preinstall: [email protected]
72982 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/levn-680d0828
72983 info lifecycle [email protected]~preinstall: [email protected]
72984 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/type-is-ce00e627
72985 info lifecycle [email protected]~preinstall: [email protected]
72986 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/umzug-e2b283a9
72987 info lifecycle [email protected]~preinstall: [email protected]
72988 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/unc-path-regex-1e2a6820
72989 info lifecycle [email protected]~preinstall: [email protected]
72990 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/is-unc-path-98134e50
72991 info lifecycle [email protected]~preinstall: [email protected]
72992 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/is-relative-9d66f72b
72993 info lifecycle [email protected]~preinstall: [email protected]
72994 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/is-absolute-f1def0f6
72995 info lifecycle [email protected]~preinstall: [email protected]
72996 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/parse-filepath-d8a5fbca
72997 info lifecycle [email protected]~preinstall: [email protected]
72998 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/fined-df38356d
72999 info lifecycle [email protected]~preinstall: [email protected]
73000 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/ms-79f9eb12
73001 info lifecycle [email protected]~preinstall: [email protected]
73002 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/debug-c8d6d108
73003 info lifecycle [email protected]~preinstall: [email protected]
73004 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/undefsafe-dd70dff6
73005 info lifecycle [email protected]~preinstall: [email protected]
73006 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/underscore-6a90d2e9
73007 info lifecycle [email protected]~preinstall: [email protected]
73008 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/union-value-e49442a7
73009 info lifecycle [email protected]~preinstall: [email protected]
73010 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/unique-stream-4acac160
73011 info lifecycle [email protected]~preinstall: [email protected]
73012 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/unique-string-dda8b835
73013 info lifecycle [email protected]~preinstall: [email protected]
73014 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/universalify-b4e2012a
73015 info lifecycle [email protected]~preinstall: [email protected]
73016 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/fs-extra-43873814
73017 info lifecycle [email protected]~preinstall: [email protected]
73018 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/unpipe-4b17e5e2
73019 info lifecycle [email protected]~preinstall: [email protected]
73020 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/finalhandler-cf93cef6
73021 info lifecycle [email protected]~preinstall: [email protected]
73022 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/raw-body-a90af847
73023 info lifecycle [email protected]~preinstall: [email protected]
73024 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/body-parser-2586f0f7
73025 info lifecycle [email protected]~preinstall: [email protected]
73026 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/isobject-51cb171d
73027 info lifecycle [email protected]~preinstall: [email protected]
73028 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/has-values-6e393d31
73029 info lifecycle [email protected]~preinstall: [email protected]
73030 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/has-value-260788b6
73031 info lifecycle [email protected]~preinstall: [email protected]
73032 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/unset-value-7c261296
73033 info lifecycle [email protected]~preinstall: [email protected]
73034 silly preinstall [email protected] /home/taskeen/Computer/Git/client-projects/NodeJs-backend-structure/node_modules/.staging/cache-base-b9e18ba4
73035 info lifecycle [email protected]~preinstall: [email protected]