-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnpm-debug.log
1335 lines (1335 loc) · 78.3 KB
/
npm-debug.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
0 info it worked if it ends with ok
1 verbose cli [ 'C:\\Program Files\\nodejs\\node.exe',
1 verbose cli 'C:\\Program Files\\nodejs\\node_modules\\npm\\bin\\npm-cli.js',
1 verbose cli 'install',
1 verbose cli 'pg-native' ]
2 info using [email protected]
3 info using [email protected]
4 silly loadCurrentTree Starting
5 silly install loadCurrentTree
6 silly install readLocalPackageData
7 silly fetchPackageMetaData pg-native
8 silly fetchNamedPackageData pg-native
9 silly mapToRegistry name pg-native
10 silly mapToRegistry using default registry
11 silly mapToRegistry registry https://registry.npmjs.org/
12 silly mapToRegistry uri https://registry.npmjs.org/pg-native
13 verbose request uri https://registry.npmjs.org/pg-native
14 verbose request no auth needed
15 info attempt registry request try #1 at 21:35:46
16 verbose request id 16a973674683b24d
17 http request GET https://registry.npmjs.org/pg-native
18 http 200 https://registry.npmjs.org/pg-native
19 verbose headers { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
19 verbose headers etag: '"3VIP3RBVC5O70N6TWDKB0QUPF"',
19 verbose headers 'content-type': 'application/json',
19 verbose headers 'content-encoding': 'gzip',
19 verbose headers 'cache-control': 'max-age=300',
19 verbose headers 'content-length': '7830',
19 verbose headers 'accept-ranges': 'bytes',
19 verbose headers date: 'Mon, 16 May 2016 01:35:43 GMT',
19 verbose headers via: '1.1 varnish',
19 verbose headers age: '0',
19 verbose headers connection: 'keep-alive',
19 verbose headers 'x-served-by': 'cache-iad2138-IAD',
19 verbose headers 'x-cache': 'MISS',
19 verbose headers 'x-cache-hits': '0',
19 verbose headers 'x-timer': 'S1463362543.704456,VS0,VE39',
19 verbose headers vary: 'Accept-Encoding' }
20 silly get cb [ 200,
20 silly get { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
20 silly get etag: '"3VIP3RBVC5O70N6TWDKB0QUPF"',
20 silly get 'content-type': 'application/json',
20 silly get 'content-encoding': 'gzip',
20 silly get 'cache-control': 'max-age=300',
20 silly get 'content-length': '7830',
20 silly get 'accept-ranges': 'bytes',
20 silly get date: 'Mon, 16 May 2016 01:35:43 GMT',
20 silly get via: '1.1 varnish',
20 silly get age: '0',
20 silly get connection: 'keep-alive',
20 silly get 'x-served-by': 'cache-iad2138-IAD',
20 silly get 'x-cache': 'MISS',
20 silly get 'x-cache-hits': '0',
20 silly get 'x-timer': 'S1463362543.704456,VS0,VE39',
20 silly get vary: 'Accept-Encoding' } ]
21 verbose get saving pg-native to C:\Users\Jose\AppData\Roaming\npm-cache\registry.npmjs.org\pg-native\.cache.json
22 verbose correctMkdir C:\Users\Jose\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
23 silly install normalizeTree
24 silly loadCurrentTree Finishing
25 silly loadIdealTree Starting
26 silly install loadIdealTree
27 silly cloneCurrentTree Starting
28 silly install cloneCurrentTreeToIdealTree
29 silly cloneCurrentTree Finishing
30 silly loadShrinkwrap Starting
31 silly install loadShrinkwrap
32 silly loadShrinkwrap Finishing
33 silly loadAllDepsIntoIdealTree Starting
34 silly install loadAllDepsIntoIdealTree
35 silly resolveWithNewModule [email protected] checking installable status
36 silly cache add args [ 'pg-native', null ]
37 verbose cache add spec pg-native
38 silly cache add parsed spec Result {
38 silly cache add raw: 'pg-native',
38 silly cache add scope: null,
38 silly cache add name: 'pg-native',
38 silly cache add rawSpec: '',
38 silly cache add spec: 'latest',
38 silly cache add type: 'tag' }
39 silly addNamed pg-native@latest
40 verbose addNamed "latest" is being treated as a dist-tag for pg-native
41 info addNameTag [ 'pg-native', 'latest' ]
42 silly mapToRegistry name pg-native
43 silly mapToRegistry using default registry
44 silly mapToRegistry registry https://registry.npmjs.org/
45 silly mapToRegistry uri https://registry.npmjs.org/pg-native
46 verbose addNameTag registry:https://registry.npmjs.org/pg-native not in flight; fetching
47 verbose get https://registry.npmjs.org/pg-native not expired, no request
48 silly addNameTag next cb for pg-native with tag latest
49 silly addNamed [email protected]
50 verbose addNamed "1.10.0" is a plain semver version for pg-native
51 silly mapToRegistry name pg-native
52 silly mapToRegistry using default registry
53 silly mapToRegistry registry https://registry.npmjs.org/
54 silly mapToRegistry uri https://registry.npmjs.org/pg-native
55 verbose addRemoteTarball https://registry.npmjs.org/pg-native/-/pg-native-1.10.0.tgz not in flight; adding
56 verbose addRemoteTarball [ 'https://registry.npmjs.org/pg-native/-/pg-native-1.10.0.tgz',
56 verbose addRemoteTarball 'abe299214afa2be51db5f5104e14770c738230fd' ]
57 info retry fetch attempt 1 at 21:35:46
58 info attempt registry request try #1 at 21:35:46
59 http fetch GET https://registry.npmjs.org/pg-native/-/pg-native-1.10.0.tgz
60 http fetch 200 https://registry.npmjs.org/pg-native/-/pg-native-1.10.0.tgz
61 silly fetchAndShaCheck shasum abe299214afa2be51db5f5104e14770c738230fd
62 verbose addTmpTarball C:\Users\Jose\AppData\Local\Temp\npm-6156-c1b11130\registry.npmjs.org\pg-native\-\pg-native-1.10.0.tgz not in flight; adding
63 verbose addTmpTarball already have metadata; skipping unpack for [email protected]
64 verbose correctMkdir C:\Users\Jose\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
65 silly cache afterAdd [email protected]
66 verbose afterAdd C:\Users\Jose\AppData\Roaming\npm-cache\pg-native\1.10.0\package\package.json not in flight; writing
67 verbose correctMkdir C:\Users\Jose\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
68 verbose afterAdd C:\Users\Jose\AppData\Roaming\npm-cache\pg-native\1.10.0\package\package.json written
69 silly fetchNamedPackageData libpq
70 silly mapToRegistry name libpq
71 silly mapToRegistry using default registry
72 silly mapToRegistry registry https://registry.npmjs.org/
73 silly mapToRegistry uri https://registry.npmjs.org/libpq
74 silly fetchNamedPackageData pg-types
75 silly mapToRegistry name pg-types
76 silly mapToRegistry using default registry
77 silly mapToRegistry registry https://registry.npmjs.org/
78 silly mapToRegistry uri https://registry.npmjs.org/pg-types
79 silly fetchNamedPackageData readable-stream
80 silly mapToRegistry name readable-stream
81 silly mapToRegistry using default registry
82 silly mapToRegistry registry https://registry.npmjs.org/
83 silly mapToRegistry uri https://registry.npmjs.org/readable-stream
84 verbose request uri https://registry.npmjs.org/libpq
85 verbose request no auth needed
86 info attempt registry request try #1 at 21:35:47
87 http request GET https://registry.npmjs.org/libpq
88 verbose request uri https://registry.npmjs.org/readable-stream
89 verbose request no auth needed
90 info attempt registry request try #1 at 21:35:47
91 verbose etag "467IKBDVDFPQK406TFF1E89TY"
92 http request GET https://registry.npmjs.org/readable-stream
93 verbose request uri https://registry.npmjs.org/pg-types
94 verbose request no auth needed
95 info attempt registry request try #1 at 21:35:47
96 verbose etag "3S1GJ0XK5L0WUMKE99SRPVCWB"
97 http request GET https://registry.npmjs.org/pg-types
98 http 304 https://registry.npmjs.org/readable-stream
99 verbose headers { date: 'Mon, 16 May 2016 01:35:44 GMT',
99 verbose headers via: '1.1 varnish',
99 verbose headers 'cache-control': 'max-age=300',
99 verbose headers etag: '"467IKBDVDFPQK406TFF1E89TY"',
99 verbose headers age: '148',
99 verbose headers connection: 'keep-alive',
99 verbose headers 'x-served-by': 'cache-iad2130-IAD',
99 verbose headers 'x-cache': 'HIT',
99 verbose headers 'x-cache-hits': '7',
99 verbose headers 'x-timer': 'S1463362544.706375,VS0,VE0',
99 verbose headers vary: 'Accept-Encoding' }
100 silly get cb [ 304,
100 silly get { date: 'Mon, 16 May 2016 01:35:44 GMT',
100 silly get via: '1.1 varnish',
100 silly get 'cache-control': 'max-age=300',
100 silly get etag: '"467IKBDVDFPQK406TFF1E89TY"',
100 silly get age: '148',
100 silly get connection: 'keep-alive',
100 silly get 'x-served-by': 'cache-iad2130-IAD',
100 silly get 'x-cache': 'HIT',
100 silly get 'x-cache-hits': '7',
100 silly get 'x-timer': 'S1463362544.706375,VS0,VE0',
100 silly get vary: 'Accept-Encoding' } ]
101 verbose etag https://registry.npmjs.org/readable-stream from cache
102 verbose get saving readable-stream to C:\Users\Jose\AppData\Roaming\npm-cache\registry.npmjs.org\readable-stream\.cache.json
103 verbose correctMkdir C:\Users\Jose\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
104 http 304 https://registry.npmjs.org/pg-types
105 verbose headers { date: 'Mon, 16 May 2016 01:35:44 GMT',
105 verbose headers via: '1.1 varnish',
105 verbose headers 'cache-control': 'max-age=300',
105 verbose headers etag: '"3S1GJ0XK5L0WUMKE99SRPVCWB"',
105 verbose headers age: '190',
105 verbose headers connection: 'keep-alive',
105 verbose headers 'x-served-by': 'cache-iad2143-IAD',
105 verbose headers 'x-cache': 'HIT',
105 verbose headers 'x-cache-hits': '1',
105 verbose headers 'x-timer': 'S1463362544.712304,VS0,VE0',
105 verbose headers vary: 'Accept-Encoding' }
106 silly get cb [ 304,
106 silly get { date: 'Mon, 16 May 2016 01:35:44 GMT',
106 silly get via: '1.1 varnish',
106 silly get 'cache-control': 'max-age=300',
106 silly get etag: '"3S1GJ0XK5L0WUMKE99SRPVCWB"',
106 silly get age: '190',
106 silly get connection: 'keep-alive',
106 silly get 'x-served-by': 'cache-iad2143-IAD',
106 silly get 'x-cache': 'HIT',
106 silly get 'x-cache-hits': '1',
106 silly get 'x-timer': 'S1463362544.712304,VS0,VE0',
106 silly get vary: 'Accept-Encoding' } ]
107 verbose etag https://registry.npmjs.org/pg-types from cache
108 verbose get saving pg-types to C:\Users\Jose\AppData\Roaming\npm-cache\registry.npmjs.org\pg-types\.cache.json
109 verbose correctMkdir C:\Users\Jose\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
110 silly resolveWithNewModule [email protected] checking installable status
111 silly cache add args [ '[email protected]', null ]
112 verbose cache add spec [email protected]
113 silly cache add parsed spec Result {
113 silly cache add raw: '[email protected]',
113 silly cache add scope: null,
113 silly cache add name: 'pg-types',
113 silly cache add rawSpec: '1.6.0',
113 silly cache add spec: '1.6.0',
113 silly cache add type: 'version' }
114 silly addNamed [email protected]
115 verbose addNamed "1.6.0" is a plain semver version for pg-types
116 silly mapToRegistry name pg-types
117 silly mapToRegistry using default registry
118 silly mapToRegistry registry https://registry.npmjs.org/
119 silly mapToRegistry uri https://registry.npmjs.org/pg-types
120 verbose addNameVersion registry:https://registry.npmjs.org/pg-types not in flight; fetching
121 silly resolveWithNewModule [email protected] checking installable status
122 silly cache add args [ '[email protected]', null ]
123 verbose cache add spec [email protected]
124 silly cache add parsed spec Result {
124 silly cache add raw: '[email protected]',
124 silly cache add scope: null,
124 silly cache add name: 'readable-stream',
124 silly cache add rawSpec: '1.0.31',
124 silly cache add spec: '1.0.31',
124 silly cache add type: 'version' }
125 silly addNamed [email protected]
126 verbose addNamed "1.0.31" is a plain semver version for readable-stream
127 silly mapToRegistry name readable-stream
128 silly mapToRegistry using default registry
129 silly mapToRegistry registry https://registry.npmjs.org/
130 silly mapToRegistry uri https://registry.npmjs.org/readable-stream
131 verbose addNameVersion registry:https://registry.npmjs.org/readable-stream not in flight; fetching
132 verbose get https://registry.npmjs.org/pg-types not expired, no request
133 verbose get https://registry.npmjs.org/readable-stream not expired, no request
134 silly mapToRegistry name pg-types
135 silly mapToRegistry using default registry
136 silly mapToRegistry registry https://registry.npmjs.org/
137 silly mapToRegistry uri https://registry.npmjs.org/pg-types
138 verbose addRemoteTarball https://registry.npmjs.org/pg-types/-/pg-types-1.6.0.tgz not in flight; adding
139 verbose addRemoteTarball [ 'https://registry.npmjs.org/pg-types/-/pg-types-1.6.0.tgz',
139 verbose addRemoteTarball '3872a0f199143025497f4ee2a65fdaf00d7ea8b3' ]
140 info retry fetch attempt 1 at 21:35:47
141 info attempt registry request try #1 at 21:35:47
142 http fetch GET https://registry.npmjs.org/pg-types/-/pg-types-1.6.0.tgz
143 silly mapToRegistry name readable-stream
144 silly mapToRegistry using default registry
145 silly mapToRegistry registry https://registry.npmjs.org/
146 silly mapToRegistry uri https://registry.npmjs.org/readable-stream
147 verbose addRemoteTarball https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.31.tgz not in flight; adding
148 verbose addRemoteTarball [ 'https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.31.tgz',
148 verbose addRemoteTarball '8f2502e0bc9e3b0da1b94520aabb4e2603ecafae' ]
149 info retry fetch attempt 1 at 21:35:47
150 info attempt registry request try #1 at 21:35:47
151 http fetch GET https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.31.tgz
152 http fetch 200 https://registry.npmjs.org/pg-types/-/pg-types-1.6.0.tgz
153 silly fetchAndShaCheck shasum 3872a0f199143025497f4ee2a65fdaf00d7ea8b3
154 verbose addTmpTarball C:\Users\Jose\AppData\Local\Temp\npm-6156-c1b11130\registry.npmjs.org\pg-types\-\pg-types-1.6.0.tgz not in flight; adding
155 verbose addTmpTarball already have metadata; skipping unpack for [email protected]
156 verbose correctMkdir C:\Users\Jose\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
157 http fetch 200 https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.31.tgz
158 silly cache afterAdd [email protected]
159 verbose afterAdd C:\Users\Jose\AppData\Roaming\npm-cache\pg-types\1.6.0\package\package.json not in flight; writing
160 verbose correctMkdir C:\Users\Jose\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
161 verbose afterAdd C:\Users\Jose\AppData\Roaming\npm-cache\pg-types\1.6.0\package\package.json written
162 http 200 https://registry.npmjs.org/libpq
163 verbose headers { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
163 verbose headers etag: '"1NGRB2M0HJ8OOWK3GNKZGTNA8"',
163 verbose headers 'content-type': 'application/json',
163 verbose headers 'content-encoding': 'gzip',
163 verbose headers 'cache-control': 'max-age=300',
163 verbose headers 'content-length': '11354',
163 verbose headers 'accept-ranges': 'bytes',
163 verbose headers date: 'Mon, 16 May 2016 01:35:45 GMT',
163 verbose headers via: '1.1 varnish',
163 verbose headers age: '0',
163 verbose headers connection: 'keep-alive',
163 verbose headers 'x-served-by': 'cache-iad2129-IAD',
163 verbose headers 'x-cache': 'MISS',
163 verbose headers 'x-cache-hits': '0',
163 verbose headers 'x-timer': 'S1463362544.647145,VS0,VE495',
163 verbose headers vary: 'Accept-Encoding' }
164 silly get cb [ 200,
164 silly get { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
164 silly get etag: '"1NGRB2M0HJ8OOWK3GNKZGTNA8"',
164 silly get 'content-type': 'application/json',
164 silly get 'content-encoding': 'gzip',
164 silly get 'cache-control': 'max-age=300',
164 silly get 'content-length': '11354',
164 silly get 'accept-ranges': 'bytes',
164 silly get date: 'Mon, 16 May 2016 01:35:45 GMT',
164 silly get via: '1.1 varnish',
164 silly get age: '0',
164 silly get connection: 'keep-alive',
164 silly get 'x-served-by': 'cache-iad2129-IAD',
164 silly get 'x-cache': 'MISS',
164 silly get 'x-cache-hits': '0',
164 silly get 'x-timer': 'S1463362544.647145,VS0,VE495',
164 silly get vary: 'Accept-Encoding' } ]
165 verbose get saving libpq to C:\Users\Jose\AppData\Roaming\npm-cache\registry.npmjs.org\libpq\.cache.json
166 verbose correctMkdir C:\Users\Jose\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
167 silly fetchAndShaCheck shasum 8f2502e0bc9e3b0da1b94520aabb4e2603ecafae
168 verbose addTmpTarball C:\Users\Jose\AppData\Local\Temp\npm-6156-c1b11130\registry.npmjs.org\readable-stream\-\readable-stream-1.0.31.tgz not in flight; adding
169 verbose addTmpTarball already have metadata; skipping unpack for [email protected]
170 verbose correctMkdir C:\Users\Jose\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
171 silly cache afterAdd [email protected]
172 verbose afterAdd C:\Users\Jose\AppData\Roaming\npm-cache\readable-stream\1.0.31\package\package.json not in flight; writing
173 verbose correctMkdir C:\Users\Jose\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
174 verbose afterAdd C:\Users\Jose\AppData\Roaming\npm-cache\readable-stream\1.0.31\package\package.json written
175 silly resolveWithNewModule [email protected] checking installable status
176 silly cache add args [ 'libpq@^1.7.0', null ]
177 verbose cache add spec libpq@^1.7.0
178 silly cache add parsed spec Result {
178 silly cache add raw: 'libpq@^1.7.0',
178 silly cache add scope: null,
178 silly cache add name: 'libpq',
178 silly cache add rawSpec: '^1.7.0',
178 silly cache add spec: '>=1.7.0 <2.0.0',
178 silly cache add type: 'range' }
179 silly addNamed libpq@>=1.7.0 <2.0.0
180 verbose addNamed ">=1.7.0 <2.0.0" is a valid semver range for libpq
181 silly addNameRange { name: 'libpq', range: '>=1.7.0 <2.0.0', hasData: false }
182 silly mapToRegistry name libpq
183 silly mapToRegistry using default registry
184 silly mapToRegistry registry https://registry.npmjs.org/
185 silly mapToRegistry uri https://registry.npmjs.org/libpq
186 verbose addNameRange registry:https://registry.npmjs.org/libpq not in flight; fetching
187 verbose get https://registry.npmjs.org/libpq not expired, no request
188 silly addNameRange number 2 { name: 'libpq', range: '>=1.7.0 <2.0.0', hasData: true }
189 silly addNameRange versions [ 'libpq',
189 silly addNameRange [ '0.2.0',
189 silly addNameRange '0.2.1',
189 silly addNameRange '0.2.2',
189 silly addNameRange '0.2.3',
189 silly addNameRange '0.2.4',
189 silly addNameRange '0.2.5',
189 silly addNameRange '0.3.0',
189 silly addNameRange '0.4.0',
189 silly addNameRange '0.4.1',
189 silly addNameRange '0.5.0',
189 silly addNameRange '0.5.1',
189 silly addNameRange '0.5.2',
189 silly addNameRange '0.5.3',
189 silly addNameRange '1.0.0',
189 silly addNameRange '1.0.1',
189 silly addNameRange '1.1.0',
189 silly addNameRange '1.2.0',
189 silly addNameRange '1.2.1',
189 silly addNameRange '1.3.0',
189 silly addNameRange '1.3.1',
189 silly addNameRange '1.4.0',
189 silly addNameRange '1.4.1',
189 silly addNameRange '1.4.2',
189 silly addNameRange '1.5.1',
189 silly addNameRange '1.6.0',
189 silly addNameRange '1.6.1',
189 silly addNameRange '1.6.2',
189 silly addNameRange '1.6.3',
189 silly addNameRange '1.6.4',
189 silly addNameRange '1.7.0',
189 silly addNameRange '1.8.0',
189 silly addNameRange '1.8.1',
189 silly addNameRange '1.8.2' ] ]
190 silly addNamed [email protected]
191 verbose addNamed "1.8.2" is a plain semver version for libpq
192 silly mapToRegistry name libpq
193 silly mapToRegistry using default registry
194 silly mapToRegistry registry https://registry.npmjs.org/
195 silly mapToRegistry uri https://registry.npmjs.org/libpq
196 verbose addRemoteTarball https://registry.npmjs.org/libpq/-/libpq-1.8.2.tgz not in flight; adding
197 verbose addRemoteTarball [ 'https://registry.npmjs.org/libpq/-/libpq-1.8.2.tgz',
197 verbose addRemoteTarball '82da825d399bb2a3a6f3b199f1859d7c64223c52' ]
198 info retry fetch attempt 1 at 21:35:48
199 info attempt registry request try #1 at 21:35:48
200 http fetch GET https://registry.npmjs.org/libpq/-/libpq-1.8.2.tgz
201 http fetch 200 https://registry.npmjs.org/libpq/-/libpq-1.8.2.tgz
202 silly fetchAndShaCheck shasum 82da825d399bb2a3a6f3b199f1859d7c64223c52
203 verbose addTmpTarball C:\Users\Jose\AppData\Local\Temp\npm-6156-c1b11130\registry.npmjs.org\libpq\-\libpq-1.8.2.tgz not in flight; adding
204 verbose addTmpTarball already have metadata; skipping unpack for [email protected]
205 verbose correctMkdir C:\Users\Jose\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
206 silly cache afterAdd [email protected]
207 verbose afterAdd C:\Users\Jose\AppData\Roaming\npm-cache\libpq\1.8.2\package\package.json not in flight; writing
208 verbose correctMkdir C:\Users\Jose\AppData\Roaming\npm-cache correctMkdir not in flight; initializing
209 verbose afterAdd C:\Users\Jose\AppData\Roaming\npm-cache\libpq\1.8.2\package\package.json written
210 silly loadAllDepsIntoIdealTree Finishing
211 silly idealTree:prePrune [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune | +-- [email protected]
211 silly idealTree:prePrune | `-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune | +-- [email protected]
211 silly idealTree:prePrune | +-- [email protected]
211 silly idealTree:prePrune | +-- [email protected]
211 silly idealTree:prePrune | `-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune +-- [email protected]
211 silly idealTree:prePrune `-- [email protected]
212 silly loadIdealTree Finishing
213 silly currentTree [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree | +-- [email protected]
213 silly currentTree | +-- [email protected]
213 silly currentTree | +-- [email protected]
213 silly currentTree | `-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree +-- [email protected]
213 silly currentTree `-- [email protected]
214 silly idealTree [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree | +-- [email protected]
214 silly idealTree | `-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree | +-- [email protected]
214 silly idealTree | +-- [email protected]
214 silly idealTree | +-- [email protected]
214 silly idealTree | `-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree +-- [email protected]
214 silly idealTree `-- [email protected]
215 silly generateActionsToTake Starting
216 silly install generateActionsToTake
217 silly generateActionsToTake Finishing
218 silly diffTrees action count 5
219 silly diffTrees add [email protected]
220 silly diffTrees update [email protected]
221 silly diffTrees add [email protected]
222 silly diffTrees add [email protected]
223 silly diffTrees add [email protected]
224 silly decomposeActions action count 40
225 silly decomposeActions fetch [email protected]
226 silly decomposeActions extract [email protected]
227 silly decomposeActions test [email protected]
228 silly decomposeActions preinstall [email protected]
229 silly decomposeActions build [email protected]
230 silly decomposeActions install [email protected]
231 silly decomposeActions postinstall [email protected]
232 silly decomposeActions finalize [email protected]
233 silly decomposeActions fetch [email protected]
234 silly decomposeActions extract [email protected]
235 silly decomposeActions test [email protected]
236 silly decomposeActions preinstall [email protected]
237 silly decomposeActions build [email protected]
238 silly decomposeActions install [email protected]
239 silly decomposeActions postinstall [email protected]
240 silly decomposeActions finalize [email protected]
241 silly decomposeActions fetch [email protected]
242 silly decomposeActions extract [email protected]
243 silly decomposeActions test [email protected]
244 silly decomposeActions preinstall [email protected]
245 silly decomposeActions build [email protected]
246 silly decomposeActions install [email protected]
247 silly decomposeActions postinstall [email protected]
248 silly decomposeActions finalize [email protected]
249 silly decomposeActions fetch [email protected]
250 silly decomposeActions extract [email protected]
251 silly decomposeActions test [email protected]
252 silly decomposeActions preinstall [email protected]
253 silly decomposeActions build [email protected]
254 silly decomposeActions install [email protected]
255 silly decomposeActions postinstall [email protected]
256 silly decomposeActions finalize [email protected]
257 silly decomposeActions fetch [email protected]
258 silly decomposeActions extract [email protected]
259 silly decomposeActions test [email protected]
260 silly decomposeActions preinstall [email protected]
261 silly decomposeActions build [email protected]
262 silly decomposeActions install [email protected]
263 silly decomposeActions postinstall [email protected]
264 silly decomposeActions finalize [email protected]
265 silly executeActions Starting
266 silly install executeActions
267 silly doSerial global-install 0
268 silly doParallel fetch 5
269 verbose correctMkdir C:\Users\Jose\AppData\Roaming\npm-cache\_locks correctMkdir not in flight; initializing
270 verbose lock using C:\Users\Jose\AppData\Roaming\npm-cache\_locks\staging-6d9a9f5f8acc488b.lock for C:\Users\Jose\CarCare\NodeCarCare\node_modules\.staging
271 silly doParallel extract 5
272 silly extract [email protected]
273 silly extract [email protected]
274 silly extract [email protected]
275 silly extract [email protected]
276 silly extract [email protected]
277 verbose unbuild node_modules\.staging\pg-cf5a3601
278 verbose unbuild node_modules\.staging\pg-types-c4800088
279 verbose unbuild node_modules\.staging\pg-native-46dc8c44
280 silly gentlyRm C:\Users\Jose\CarCare\NodeCarCare\node_modules\.staging\pg-cf5a3601 is being purged from base C:\Users\Jose\CarCare\NodeCarCare
281 verbose gentlyRm don't care about contents; nuking C:\Users\Jose\CarCare\NodeCarCare\node_modules\.staging\pg-cf5a3601
282 silly gentlyRm C:\Users\Jose\CarCare\NodeCarCare\node_modules\.staging\pg-types-c4800088 is being purged from base C:\Users\Jose\CarCare\NodeCarCare
283 verbose gentlyRm don't care about contents; nuking C:\Users\Jose\CarCare\NodeCarCare\node_modules\.staging\pg-types-c4800088
284 silly gentlyRm C:\Users\Jose\CarCare\NodeCarCare\node_modules\.staging\pg-native-46dc8c44 is being purged from base C:\Users\Jose\CarCare\NodeCarCare
285 verbose gentlyRm don't care about contents; nuking C:\Users\Jose\CarCare\NodeCarCare\node_modules\.staging\pg-native-46dc8c44
286 verbose tar unpack C:\Users\Jose\AppData\Roaming\npm-cache\pg\4.5.5\package.tgz
287 verbose tar unpacking to C:\Users\Jose\CarCare\NodeCarCare\node_modules\.staging\pg-cf5a3601
288 silly gentlyRm C:\Users\Jose\CarCare\NodeCarCare\node_modules\.staging\pg-cf5a3601 is being purged
289 verbose gentlyRm don't care about contents; nuking C:\Users\Jose\CarCare\NodeCarCare\node_modules\.staging\pg-cf5a3601
290 verbose tar unpack C:\Users\Jose\AppData\Roaming\npm-cache\pg-types\1.6.0\package.tgz
291 verbose tar unpacking to C:\Users\Jose\CarCare\NodeCarCare\node_modules\.staging\pg-types-c4800088
292 silly gentlyRm C:\Users\Jose\CarCare\NodeCarCare\node_modules\.staging\pg-types-c4800088 is being purged
293 verbose gentlyRm don't care about contents; nuking C:\Users\Jose\CarCare\NodeCarCare\node_modules\.staging\pg-types-c4800088
294 verbose tar unpack C:\Users\Jose\AppData\Roaming\npm-cache\pg-native\1.10.0\package.tgz
295 verbose tar unpacking to C:\Users\Jose\CarCare\NodeCarCare\node_modules\.staging\pg-native-46dc8c44
296 silly gentlyRm C:\Users\Jose\CarCare\NodeCarCare\node_modules\.staging\pg-native-46dc8c44 is being purged
297 verbose gentlyRm don't care about contents; nuking C:\Users\Jose\CarCare\NodeCarCare\node_modules\.staging\pg-native-46dc8c44
298 verbose unbuild node_modules\.staging\readable-stream-988c29a2
299 silly gunzTarPerm modes [ '777', '666' ]
300 silly gunzTarPerm modes [ '777', '666' ]
301 silly gunzTarPerm modes [ '777', '666' ]
302 verbose unbuild node_modules\.staging\libpq-d4feeaaa
303 silly gentlyRm C:\Users\Jose\CarCare\NodeCarCare\node_modules\.staging\readable-stream-988c29a2 is being purged from base C:\Users\Jose\CarCare\NodeCarCare
304 verbose gentlyRm don't care about contents; nuking C:\Users\Jose\CarCare\NodeCarCare\node_modules\.staging\readable-stream-988c29a2
305 silly gentlyRm C:\Users\Jose\CarCare\NodeCarCare\node_modules\.staging\libpq-d4feeaaa is being purged from base C:\Users\Jose\CarCare\NodeCarCare
306 verbose gentlyRm don't care about contents; nuking C:\Users\Jose\CarCare\NodeCarCare\node_modules\.staging\libpq-d4feeaaa
307 verbose tar unpack C:\Users\Jose\AppData\Roaming\npm-cache\readable-stream\1.0.31\package.tgz
308 verbose tar unpacking to C:\Users\Jose\CarCare\NodeCarCare\node_modules\.staging\readable-stream-988c29a2
309 silly gentlyRm C:\Users\Jose\CarCare\NodeCarCare\node_modules\.staging\readable-stream-988c29a2 is being purged
310 verbose gentlyRm don't care about contents; nuking C:\Users\Jose\CarCare\NodeCarCare\node_modules\.staging\readable-stream-988c29a2
311 verbose tar unpack C:\Users\Jose\AppData\Roaming\npm-cache\libpq\1.8.2\package.tgz
312 verbose tar unpacking to C:\Users\Jose\CarCare\NodeCarCare\node_modules\.staging\libpq-d4feeaaa
313 silly gentlyRm C:\Users\Jose\CarCare\NodeCarCare\node_modules\.staging\libpq-d4feeaaa is being purged
314 verbose gentlyRm don't care about contents; nuking C:\Users\Jose\CarCare\NodeCarCare\node_modules\.staging\libpq-d4feeaaa
315 silly gunzTarPerm modes [ '777', '666' ]
316 silly gunzTarPerm modes [ '777', '666' ]
317 silly gunzTarPerm extractEntry package.json
318 silly gunzTarPerm modified mode [ 'package.json', 420, 438 ]
319 silly gunzTarPerm extractEntry package.json
320 silly gunzTarPerm modified mode [ 'package.json', 420, 438 ]
321 silly gunzTarPerm extractEntry package.json
322 silly gunzTarPerm modified mode [ 'package.json', 420, 438 ]
323 silly gunzTarPerm extractEntry .npmignore
324 silly gunzTarPerm modified mode [ '.npmignore', 420, 438 ]
325 silly gunzTarPerm extractEntry README.md
326 silly gunzTarPerm modified mode [ 'README.md', 420, 438 ]
327 silly gunzTarPerm extractEntry .npmignore
328 silly gunzTarPerm modified mode [ '.npmignore', 420, 438 ]
329 silly gunzTarPerm extractEntry README.md
330 silly gunzTarPerm modified mode [ 'README.md', 420, 438 ]
331 silly gunzTarPerm extractEntry package.json
332 silly gunzTarPerm modified mode [ 'package.json', 420, 438 ]
333 silly gunzTarPerm extractEntry package.json
334 silly gunzTarPerm modified mode [ 'package.json', 436, 438 ]
335 silly gunzTarPerm extractEntry .npmignore
336 silly gunzTarPerm modified mode [ '.npmignore', 420, 438 ]
337 silly gunzTarPerm extractEntry README.md
338 silly gunzTarPerm modified mode [ 'README.md', 420, 438 ]
339 silly gunzTarPerm extractEntry .npmignore
340 silly gunzTarPerm modified mode [ '.npmignore', 420, 438 ]
341 silly gunzTarPerm extractEntry README.md
342 silly gunzTarPerm modified mode [ 'README.md', 420, 438 ]
343 silly gunzTarPerm extractEntry .npmignore
344 silly gunzTarPerm modified mode [ '.npmignore', 420, 438 ]
345 silly gunzTarPerm extractEntry README.md
346 silly gunzTarPerm modified mode [ 'README.md', 436, 438 ]
347 silly gunzTarPerm extractEntry index.js
348 silly gunzTarPerm modified mode [ 'index.js', 420, 438 ]
349 silly gunzTarPerm extractEntry .travis.yml
350 silly gunzTarPerm modified mode [ '.travis.yml', 420, 438 ]
351 silly gunzTarPerm extractEntry .travis.yml
352 silly gunzTarPerm modified mode [ '.travis.yml', 420, 438 ]
353 silly gunzTarPerm extractEntry Makefile
354 silly gunzTarPerm modified mode [ 'Makefile', 420, 438 ]
355 silly gunzTarPerm extractEntry index.js
356 silly gunzTarPerm modified mode [ 'index.js', 420, 438 ]
357 silly gunzTarPerm extractEntry bench/index.js
358 silly gunzTarPerm modified mode [ 'bench/index.js', 420, 438 ]
359 silly gunzTarPerm extractEntry bench/leaks.js
360 silly gunzTarPerm modified mode [ 'bench/leaks.js', 420, 438 ]
361 silly gunzTarPerm extractEntry .travis.yml
362 silly gunzTarPerm modified mode [ '.travis.yml', 420, 438 ]
363 silly gunzTarPerm extractEntry Makefile
364 silly gunzTarPerm modified mode [ 'Makefile', 420, 438 ]
365 silly gunzTarPerm extractEntry lib/copy-stream.js
366 silly gunzTarPerm modified mode [ 'lib/copy-stream.js', 420, 438 ]
367 silly gunzTarPerm extractEntry test/array-mode.js
368 silly gunzTarPerm modified mode [ 'test/array-mode.js', 420, 438 ]
369 silly gunzTarPerm extractEntry test/custom-types.js
370 silly gunzTarPerm modified mode [ 'test/custom-types.js', 420, 438 ]
371 silly gunzTarPerm extractEntry test/domains.js
372 silly gunzTarPerm modified mode [ 'test/domains.js', 420, 438 ]
373 silly gunzTarPerm extractEntry test/huge-query.js
374 silly gunzTarPerm modified mode [ 'test/huge-query.js', 420, 438 ]
375 silly gunzTarPerm extractEntry test/copy-to.js
376 silly gunzTarPerm modified mode [ 'test/copy-to.js', 420, 438 ]
377 silly gunzTarPerm extractEntry test/async-workflow.js
378 silly gunzTarPerm modified mode [ 'test/async-workflow.js', 420, 438 ]
379 silly gunzTarPerm extractEntry test/many-connections.js
380 silly gunzTarPerm modified mode [ 'test/many-connections.js', 420, 438 ]
381 silly gunzTarPerm extractEntry test/many-errors.js
382 silly gunzTarPerm modified mode [ 'test/many-errors.js', 420, 438 ]
383 silly gunzTarPerm extractEntry test/query-sync.js
384 silly gunzTarPerm modified mode [ 'test/query-sync.js', 420, 438 ]
385 silly gunzTarPerm extractEntry test/multiple-queries.js
386 silly gunzTarPerm modified mode [ 'test/multiple-queries.js', 420, 438 ]
387 silly gunzTarPerm extractEntry test/copy-from.js
388 silly gunzTarPerm modified mode [ 'test/copy-from.js', 420, 438 ]
389 silly gunzTarPerm extractEntry test/notify.js
390 silly gunzTarPerm modified mode [ 'test/notify.js', 420, 438 ]
391 silly gunzTarPerm extractEntry test/connection.js
392 silly gunzTarPerm modified mode [ 'test/connection.js', 420, 438 ]
393 silly gunzTarPerm extractEntry test/prepare.js
394 silly gunzTarPerm modified mode [ 'test/prepare.js', 420, 438 ]
395 silly gunzTarPerm extractEntry test/cancel.js
396 silly gunzTarPerm modified mode [ 'test/cancel.js', 420, 438 ]
397 silly gunzTarPerm extractEntry test/query-async.js
398 silly gunzTarPerm modified mode [ 'test/query-async.js', 420, 438 ]
399 silly gunzTarPerm extractEntry test/index.js
400 silly gunzTarPerm modified mode [ 'test/index.js', 420, 438 ]
401 silly gunzTarPerm extractEntry test/version.js
402 silly gunzTarPerm modified mode [ 'test/version.js', 420, 438 ]
403 silly gunzTarPerm extractEntry test/load.js
404 silly gunzTarPerm modified mode [ 'test/load.js', 420, 438 ]
405 silly gunzTarPerm extractEntry test/mocha.opts
406 silly gunzTarPerm modified mode [ 'test/mocha.opts', 420, 438 ]
407 silly gunzTarPerm extractEntry index.js
408 silly gunzTarPerm modified mode [ 'index.js', 420, 438 ]
409 silly gunzTarPerm extractEntry LICENSE
410 silly gunzTarPerm modified mode [ 'LICENSE', 436, 438 ]
411 silly gunzTarPerm extractEntry transform.js
412 silly gunzTarPerm modified mode [ 'transform.js', 420, 438 ]
413 silly gunzTarPerm extractEntry Makefile
414 silly gunzTarPerm modified mode [ 'Makefile', 420, 438 ]
415 silly gunzTarPerm extractEntry lib/arrayParser.js
416 silly gunzTarPerm modified mode [ 'lib/arrayParser.js', 420, 438 ]
417 silly gunzTarPerm extractEntry NEWS.md
418 silly gunzTarPerm modified mode [ 'NEWS.md', 420, 438 ]
419 silly gunzTarPerm extractEntry lib/client.js
420 silly gunzTarPerm modified mode [ 'lib/client.js', 420, 438 ]
421 silly gunzTarPerm extractEntry lib/connection.js
422 silly gunzTarPerm modified mode [ 'lib/connection.js', 420, 438 ]
423 silly gunzTarPerm extractEntry lib/defaults.js
424 silly gunzTarPerm modified mode [ 'lib/defaults.js', 420, 438 ]
425 silly gunzTarPerm extractEntry lib/index.js
426 silly gunzTarPerm modified mode [ 'lib/index.js', 420, 438 ]
427 silly gunzTarPerm extractEntry lib/connection-parameters.js
428 silly gunzTarPerm modified mode [ 'lib/connection-parameters.js', 420, 438 ]
429 silly gunzTarPerm extractEntry lib/pool.js
430 silly gunzTarPerm modified mode [ 'lib/pool.js', 420, 438 ]
431 silly gunzTarPerm extractEntry lib/query.js
432 silly gunzTarPerm modified mode [ 'lib/query.js', 420, 438 ]
433 silly gunzTarPerm extractEntry lib/result.js
434 silly gunzTarPerm modified mode [ 'lib/result.js', 420, 438 ]
435 silly gunzTarPerm extractEntry lib/type-overrides.js
436 silly gunzTarPerm modified mode [ 'lib/type-overrides.js', 420, 438 ]
437 silly gunzTarPerm extractEntry lib/utils.js
438 silly gunzTarPerm modified mode [ 'lib/utils.js', 420, 438 ]
439 silly gunzTarPerm extractEntry lib/native/index.js
440 silly gunzTarPerm modified mode [ 'lib/native/index.js', 420, 438 ]
441 silly gunzTarPerm extractEntry lib/native/query.js
442 silly gunzTarPerm modified mode [ 'lib/native/query.js', 420, 438 ]
443 silly gunzTarPerm extractEntry lib/native/result.js
444 silly gunzTarPerm modified mode [ 'lib/native/result.js', 420, 438 ]
445 silly gunzTarPerm extractEntry script/create-test-tables.js
446 silly gunzTarPerm modified mode [ 'script/create-test-tables.js', 420, 438 ]
447 silly gunzTarPerm extractEntry script/dump-db-types.js
448 silly gunzTarPerm modified mode [ 'script/dump-db-types.js', 420, 438 ]
449 silly gunzTarPerm extractEntry script/list-db-types.js
450 silly gunzTarPerm modified mode [ 'script/list-db-types.js', 420, 438 ]
451 silly gunzTarPerm extractEntry script/test-connection.js
452 silly gunzTarPerm modified mode [ 'script/test-connection.js', 420, 438 ]
453 silly gunzTarPerm extractEntry .jshintrc
454 silly gunzTarPerm modified mode [ '.jshintrc', 420, 438 ]
455 silly gunzTarPerm extractEntry test/buffer-list.js
456 silly gunzTarPerm modified mode [ 'test/buffer-list.js', 420, 438 ]
457 silly gunzTarPerm extractEntry test/cli.js
458 silly gunzTarPerm modified mode [ 'test/cli.js', 420, 438 ]
459 silly gunzTarPerm extractEntry test/test-buffers.js
460 silly gunzTarPerm modified mode [ 'test/test-buffers.js', 420, 438 ]
461 silly gunzTarPerm extractEntry test/test-helper.js
462 silly gunzTarPerm modified mode [ 'test/test-helper.js', 420, 438 ]
463 silly gunzTarPerm extractEntry test/integration/domain-tests.js
464 silly gunzTarPerm modified mode [ 'test/integration/domain-tests.js', 420, 438 ]
465 silly gunzTarPerm extractEntry test/integration/test-helper.js
466 silly gunzTarPerm modified mode [ 'test/integration/test-helper.js', 420, 438 ]
467 silly gunzTarPerm extractEntry test/integration/client/api-tests.js
468 silly gunzTarPerm modified mode [ 'test/integration/client/api-tests.js', 420, 438 ]
469 silly gunzTarPerm extractEntry test/integration/client/huge-numeric-tests.js
470 silly gunzTarPerm modified mode [ 'test/integration/client/huge-numeric-tests.js', 420, 438 ]
471 silly gunzTarPerm extractEntry test/integration/client/json-type-parsing-tests.js
472 silly gunzTarPerm modified mode [ 'test/integration/client/json-type-parsing-tests.js',
472 silly gunzTarPerm 420,
472 silly gunzTarPerm 438 ]
473 silly gunzTarPerm extractEntry test/integration/client/no-data-tests.js
474 silly gunzTarPerm modified mode [ 'test/integration/client/no-data-tests.js', 420, 438 ]
475 silly gunzTarPerm extractEntry test/integration/client/no-row-result-tests.js
476 silly gunzTarPerm modified mode [ 'test/integration/client/no-row-result-tests.js', 420, 438 ]
477 silly gunzTarPerm extractEntry test/integration/client/type-coercion-tests.js
478 silly gunzTarPerm modified mode [ 'test/integration/client/type-coercion-tests.js', 420, 438 ]
479 silly gunzTarPerm extractEntry test/integration/client/parse-int-8-tests.js
480 silly gunzTarPerm modified mode [ 'test/integration/client/parse-int-8-tests.js', 420, 438 ]
481 silly gunzTarPerm extractEntry test/integration/client/prepared-statement-tests.js
482 silly gunzTarPerm modified mode [ 'test/integration/client/prepared-statement-tests.js',
482 silly gunzTarPerm 420,
482 silly gunzTarPerm 438 ]
483 silly gunzTarPerm extractEntry test/integration/client/query-callback-error-tests.js
484 silly gunzTarPerm modified mode [ 'test/integration/client/query-callback-error-tests.js',
484 silly gunzTarPerm 420,
484 silly gunzTarPerm 438 ]
485 silly gunzTarPerm extractEntry test/integration/client/query-column-names-tests.js
486 silly gunzTarPerm modified mode [ 'test/integration/client/query-column-names-tests.js',
486 silly gunzTarPerm 420,
486 silly gunzTarPerm 438 ]
487 silly gunzTarPerm extractEntry test/integration/client/query-error-handling-prepared-statement-tests.js
488 silly gunzTarPerm modified mode [ 'test/integration/client/query-error-handling-prepared-statement-tests.js',
488 silly gunzTarPerm 420,
488 silly gunzTarPerm 438 ]
489 silly gunzTarPerm extractEntry test/integration/client/heroku-ssl-tests.js
490 silly gunzTarPerm modified mode [ 'test/integration/client/heroku-ssl-tests.js', 420, 438 ]
491 silly gunzTarPerm extractEntry test/integration/client/query-error-handling-tests.js
492 silly gunzTarPerm modified mode [ 'test/integration/client/query-error-handling-tests.js',
492 silly gunzTarPerm 420,
492 silly gunzTarPerm 438 ]
493 silly gunzTarPerm extractEntry test/integration/client/heroku-pgpass-tests.js
494 silly gunzTarPerm modified mode [ 'test/integration/client/heroku-pgpass-tests.js', 420, 438 ]
495 silly gunzTarPerm extractEntry test/integration/client/quick-disconnect-tests.js
496 silly gunzTarPerm modified mode [ 'test/integration/client/quick-disconnect-tests.js', 420, 438 ]
497 silly gunzTarPerm extractEntry test/integration/client/force-native-with-envvar-tests.js
498 silly gunzTarPerm modified mode [ 'test/integration/client/force-native-with-envvar-tests.js',
498 silly gunzTarPerm 420,
498 silly gunzTarPerm 438 ]
499 silly gunzTarPerm extractEntry test/integration/client/result-metadata-tests.js
500 silly gunzTarPerm modified mode [ 'test/integration/client/result-metadata-tests.js', 420, 438 ]
501 silly gunzTarPerm extractEntry test/integration/client/error-handling-tests.js
502 silly gunzTarPerm modified mode [ 'test/integration/client/error-handling-tests.js', 420, 438 ]
503 silly gunzTarPerm extractEntry test/integration/client/results-as-array-tests.js
504 silly gunzTarPerm modified mode [ 'test/integration/client/results-as-array-tests.js', 420, 438 ]
505 silly gunzTarPerm extractEntry test/integration/client/empty-query-tests.js
506 silly gunzTarPerm modified mode [ 'test/integration/client/empty-query-tests.js', 420, 438 ]
507 silly gunzTarPerm extractEntry test/integration/client/row-description-on-results-tests.js
508 silly gunzTarPerm modified mode [ 'test/integration/client/row-description-on-results-tests.js',
508 silly gunzTarPerm 420,
508 silly gunzTarPerm 438 ]
509 silly gunzTarPerm extractEntry test/integration/client/custom-types-tests.js
510 silly gunzTarPerm modified mode [ 'test/integration/client/custom-types-tests.js', 420, 438 ]
511 silly gunzTarPerm extractEntry test/integration/client/simple-query-tests.js
512 silly gunzTarPerm modified mode [ 'test/integration/client/simple-query-tests.js', 420, 438 ]
513 silly gunzTarPerm extractEntry test/integration/client/configuration-tests.js
514 silly gunzTarPerm modified mode [ 'test/integration/client/configuration-tests.js', 420, 438 ]
515 silly gunzTarPerm extractEntry test/integration/client/ssl-tests.js
516 silly gunzTarPerm modified mode [ 'test/integration/client/ssl-tests.js', 420, 438 ]
517 silly gunzTarPerm extractEntry test/integration/client/cancel-query-tests.js
518 silly gunzTarPerm modified mode [ 'test/integration/client/cancel-query-tests.js', 420, 438 ]
519 silly gunzTarPerm extractEntry test/integration/client/test-helper.js
520 silly gunzTarPerm modified mode [ 'test/integration/client/test-helper.js', 420, 438 ]
521 silly gunzTarPerm extractEntry test/integration/client/big-simple-query-tests.js
522 silly gunzTarPerm modified mode [ 'test/integration/client/big-simple-query-tests.js', 420, 438 ]
523 silly gunzTarPerm extractEntry test/integration/client/timezone-tests.js
524 silly gunzTarPerm modified mode [ 'test/integration/client/timezone-tests.js', 420, 438 ]
525 silly gunzTarPerm extractEntry test/integration/client/array-tests.js
526 silly gunzTarPerm modified mode [ 'test/integration/client/array-tests.js', 420, 438 ]
527 silly gunzTarPerm extractEntry test/integration/client/transaction-tests.js
528 silly gunzTarPerm modified mode [ 'test/integration/client/transaction-tests.js', 420, 438 ]
529 silly gunzTarPerm extractEntry test/integration/client/appname-tests.js
530 silly gunzTarPerm modified mode [ 'test/integration/client/appname-tests.js', 420, 438 ]
531 silly gunzTarPerm extractEntry test/integration/client/type-parser-override-tests.js
532 silly gunzTarPerm modified mode [ 'test/integration/client/type-parser-override-tests.js',
532 silly gunzTarPerm 420,
532 silly gunzTarPerm 438 ]
533 silly gunzTarPerm extractEntry test/integration/client/notice-tests.js
534 silly gunzTarPerm modified mode [ 'test/integration/client/notice-tests.js', 420, 438 ]
535 silly gunzTarPerm extractEntry test/integration/client/heroku.pgpass
536 silly gunzTarPerm modified mode [ 'test/integration/client/heroku.pgpass', 384, 438 ]
537 silly gunzTarPerm extractEntry test/integration/connection/bound-command-tests.js
538 silly gunzTarPerm modified mode [ 'test/integration/connection/bound-command-tests.js',