-
Notifications
You must be signed in to change notification settings - Fork 0
/
npm-debug.log
2438 lines (2438 loc) · 167 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 [ '/usr/bin/node', '/usr/bin/npm', 'install', '-g', 'npm@latest' ]
2 info using [email protected]
3 info using [email protected]
4 silly loadCurrentTree Starting
5 silly install loadCurrentTree
6 silly install readGlobalPackageData
7 silly fetchPackageMetaData npm@latest
8 silly fetchNamedPackageData npm
9 silly mapToRegistry name npm
10 silly mapToRegistry using default registry
11 silly mapToRegistry registry https://registry.npmjs.org/
12 silly mapToRegistry uri https://registry.npmjs.org/npm
13 verbose request uri https://registry.npmjs.org/npm
14 verbose request no auth needed
15 info attempt registry request try #1 at 10:09:46 AM
16 verbose request id 1dede75a6c1ee8f9
17 verbose etag W/"397a843e5789b3fec28488c777c31cc7"
18 verbose lastModified Thu, 09 Dec 2021 21:16:50 GMT
19 http request GET https://registry.npmjs.org/npm
20 http 304 https://registry.npmjs.org/npm
21 verbose headers { date: 'Fri, 31 Dec 2021 16:09:46 GMT',
21 verbose headers connection: 'keep-alive',
21 verbose headers 'cf-ray': '6c64c630583f0bc4-DFW',
21 verbose headers age: '121',
21 verbose headers 'cache-control': 'public, max-age=300',
21 verbose headers etag: '"397a843e5789b3fec28488c777c31cc7"',
21 verbose headers 'last-modified': 'Thu, 09 Dec 2021 21:16:50 GMT',
21 verbose headers vary: 'Accept-Encoding',
21 verbose headers 'cf-cache-status': 'HIT',
21 verbose headers 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
21 verbose headers 'x-amz-replication-status': 'COMPLETED',
21 verbose headers server: 'cloudflare' }
22 silly get cb [ 304,
22 silly get { date: 'Fri, 31 Dec 2021 16:09:46 GMT',
22 silly get connection: 'keep-alive',
22 silly get 'cf-ray': '6c64c630583f0bc4-DFW',
22 silly get age: '121',
22 silly get 'cache-control': 'public, max-age=300',
22 silly get etag: '"397a843e5789b3fec28488c777c31cc7"',
22 silly get 'last-modified': 'Thu, 09 Dec 2021 21:16:50 GMT',
22 silly get vary: 'Accept-Encoding',
22 silly get 'cf-cache-status': 'HIT',
22 silly get 'expect-ct': 'max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"',
22 silly get 'x-amz-replication-status': 'COMPLETED',
22 silly get server: 'cloudflare' } ]
23 verbose etag https://registry.npmjs.org/npm from cache
24 verbose get saving npm to /home/lab/.npm/registry.npmjs.org/npm/.cache.json
25 silly install normalizeTree
26 silly loadCurrentTree Finishing
27 silly loadIdealTree Starting
28 silly install loadIdealTree
29 silly cloneCurrentTree Starting
30 silly install cloneCurrentTreeToIdealTree
31 silly cloneCurrentTree Finishing
32 silly loadShrinkwrap Starting
33 silly install loadShrinkwrap
34 silly loadShrinkwrap Finishing
35 silly loadAllDepsIntoIdealTree Starting
36 silly install loadAllDepsIntoIdealTree
37 silly resolveWithNewModule [email protected] checking installable status
38 silly cache add args [ 'npm@latest', null ]
39 verbose cache add spec npm@latest
40 silly cache add parsed spec Result {
40 silly cache add raw: 'npm@latest',
40 silly cache add scope: null,
40 silly cache add name: 'npm',
40 silly cache add rawSpec: 'latest',
40 silly cache add spec: 'latest',
40 silly cache add type: 'tag' }
41 silly addNamed npm@latest
42 verbose addNamed "latest" is being treated as a dist-tag for npm
43 info addNameTag [ 'npm', 'latest' ]
44 silly mapToRegistry name npm
45 silly mapToRegistry using default registry
46 silly mapToRegistry registry https://registry.npmjs.org/
47 silly mapToRegistry uri https://registry.npmjs.org/npm
48 verbose addNameTag registry:https://registry.npmjs.org/npm not in flight; fetching
49 verbose get https://registry.npmjs.org/npm not expired, no request
50 silly addNameTag next cb for npm with tag latest
51 silly addNamed [email protected]
52 verbose addNamed "8.3.0" is a plain semver version for npm
53 silly cache afterAdd [email protected]
54 verbose afterAdd /home/lab/.npm/npm/8.3.0/package/package.json not in flight; writing
55 verbose afterAdd /home/lab/.npm/npm/8.3.0/package/package.json written
56 verbose addBundled extract /home/lab/.npm/npm/8.3.0/package.tgz
57 verbose tar unpack /home/lab/.npm/npm/8.3.0/package.tgz
58 verbose tar unpacking to /tmp/npm-1676-2f76e663/unpack-6824fb11
59 silly gentlyRm /tmp/npm-1676-2f76e663/unpack-6824fb11 is being purged
60 verbose gentlyRm don't care about contents; nuking /tmp/npm-1676-2f76e663/unpack-6824fb11
61 silly gunzTarPerm modes [ '755', '644' ]
62 silly gunzTarPerm extractEntry node_modules/node-gyp/gyp/.flake8
63 silly gunzTarPerm extractEntry node_modules/node-gyp/gyp/AUTHORS
64 silly gunzTarPerm extractEntry node_modules/normalize-package-data/AUTHORS
65 silly gunzTarPerm extractEntry node_modules/spdx-expression-parse/AUTHORS
66 silly gunzTarPerm extractEntry node_modules/node-gyp/gyp/gyp
67 silly gunzTarPerm extractEntry LICENSE
68 silly gunzTarPerm extractEntry node_modules/@isaacs/string-locale-compare/LICENSE
69 silly gunzTarPerm extractEntry node_modules/@npmcli/ci-detect/LICENSE
70 silly gunzTarPerm extractEntry node_modules/@npmcli/config/LICENSE
71 silly gunzTarPerm extractEntry node_modules/@npmcli/disparity-colors/LICENSE
72 silly gunzTarPerm extractEntry node_modules/@npmcli/git/LICENSE
73 silly gunzTarPerm extractEntry node_modules/@npmcli/installed-package-contents/LICENSE
74 silly gunzTarPerm extractEntry node_modules/@npmcli/metavuln-calculator/LICENSE
75 silly gunzTarPerm extractEntry node_modules/@npmcli/name-from-folder/LICENSE
76 silly gunzTarPerm extractEntry node_modules/@npmcli/package-json/LICENSE
77 silly gunzTarPerm extractEntry node_modules/@npmcli/promise-spawn/LICENSE
78 silly gunzTarPerm extractEntry node_modules/@npmcli/run-script/LICENSE
79 silly gunzTarPerm extractEntry node_modules/abbrev/LICENSE
80 silly gunzTarPerm extractEntry node_modules/agentkeepalive/LICENSE
81 silly gunzTarPerm extractEntry node_modules/aggregate-error/license
82 silly gunzTarPerm extractEntry node_modules/ansi-regex/license
83 silly gunzTarPerm extractEntry node_modules/ansi-styles/license
84 silly gunzTarPerm extractEntry node_modules/ansicolors/LICENSE
85 silly gunzTarPerm extractEntry node_modules/ansistyles/LICENSE
86 silly gunzTarPerm extractEntry node_modules/aproba/LICENSE
87 silly gunzTarPerm extractEntry node_modules/archy/LICENSE
88 silly gunzTarPerm extractEntry node_modules/bin-links/LICENSE
89 silly gunzTarPerm extractEntry node_modules/binary-extensions/license
90 silly gunzTarPerm extractEntry node_modules/brace-expansion/LICENSE
91 silly gunzTarPerm extractEntry node_modules/builtins/License
92 silly gunzTarPerm extractEntry node_modules/chalk/license
93 silly gunzTarPerm extractEntry node_modules/chownr/LICENSE
94 silly gunzTarPerm extractEntry node_modules/cidr-regex/LICENSE
95 silly gunzTarPerm extractEntry node_modules/clean-stack/license
96 silly gunzTarPerm extractEntry node_modules/cli-columns/LICENSE
97 silly gunzTarPerm extractEntry node_modules/cli-columns/node_modules/ansi-regex/license
98 silly gunzTarPerm extractEntry node_modules/cli-columns/node_modules/is-fullwidth-code-point/license
99 silly gunzTarPerm extractEntry node_modules/cli-columns/node_modules/string-width/license
100 silly gunzTarPerm extractEntry node_modules/cli-columns/node_modules/strip-ansi/license
101 silly gunzTarPerm extractEntry node_modules/cli-table3/LICENSE
102 silly gunzTarPerm extractEntry node_modules/cli-table3/node_modules/ansi-regex/license
103 silly gunzTarPerm extractEntry node_modules/cli-table3/node_modules/is-fullwidth-code-point/license
104 silly gunzTarPerm extractEntry node_modules/cli-table3/node_modules/string-width/license
105 silly gunzTarPerm extractEntry node_modules/cli-table3/node_modules/strip-ansi/license
106 silly gunzTarPerm extractEntry node_modules/clone/LICENSE
107 silly gunzTarPerm extractEntry node_modules/cmd-shim/LICENSE
108 silly gunzTarPerm extractEntry node_modules/color-convert/LICENSE
109 silly gunzTarPerm extractEntry node_modules/color-name/LICENSE
110 silly gunzTarPerm extractEntry node_modules/color-support/LICENSE
111 silly gunzTarPerm extractEntry node_modules/colors/LICENSE
112 silly gunzTarPerm extractEntry node_modules/columnify/LICENSE
113 silly gunzTarPerm extractEntry node_modules/common-ancestor-path/LICENSE
114 silly gunzTarPerm extractEntry node_modules/concat-map/LICENSE
115 silly gunzTarPerm extractEntry node_modules/console-control-strings/LICENSE
116 silly gunzTarPerm extractEntry node_modules/debug/LICENSE
117 silly gunzTarPerm extractEntry node_modules/debuglog/LICENSE
118 silly gunzTarPerm extractEntry node_modules/defaults/LICENSE
119 silly gunzTarPerm extractEntry node_modules/delegates/License
120 silly gunzTarPerm extractEntry node_modules/depd/LICENSE
121 silly gunzTarPerm extractEntry node_modules/dezalgo/LICENSE
122 silly gunzTarPerm extractEntry node_modules/diff/LICENSE
123 silly gunzTarPerm extractEntry node_modules/encoding/LICENSE
124 silly gunzTarPerm extractEntry node_modules/env-paths/license
125 silly gunzTarPerm extractEntry node_modules/fs-minipass/LICENSE
126 silly gunzTarPerm extractEntry node_modules/fs.realpath/LICENSE
127 silly gunzTarPerm extractEntry node_modules/function-bind/LICENSE
128 silly gunzTarPerm extractEntry node_modules/gauge/node_modules/ansi-regex/license
129 silly gunzTarPerm extractEntry node_modules/gauge/node_modules/is-fullwidth-code-point/license
130 silly gunzTarPerm extractEntry node_modules/gauge/node_modules/string-width/license
131 silly gunzTarPerm extractEntry node_modules/gauge/node_modules/strip-ansi/license
132 silly gunzTarPerm extractEntry node_modules/glob/LICENSE
133 silly gunzTarPerm extractEntry node_modules/graceful-fs/LICENSE
134 silly gunzTarPerm extractEntry node_modules/has-flag/license
135 silly gunzTarPerm extractEntry node_modules/has-unicode/LICENSE
136 silly gunzTarPerm extractEntry node_modules/hosted-git-info/LICENSE
137 silly gunzTarPerm extractEntry node_modules/http-cache-semantics/LICENSE
138 silly gunzTarPerm extractEntry node_modules/humanize-ms/LICENSE
139 silly gunzTarPerm extractEntry node_modules/iconv-lite/LICENSE
140 silly gunzTarPerm extractEntry node_modules/ignore-walk/LICENSE
141 silly gunzTarPerm extractEntry node_modules/indent-string/license
142 silly gunzTarPerm extractEntry node_modules/infer-owner/LICENSE
143 silly gunzTarPerm extractEntry node_modules/inflight/LICENSE
144 silly gunzTarPerm extractEntry node_modules/inherits/LICENSE
145 silly gunzTarPerm extractEntry node_modules/ini/LICENSE
146 silly gunzTarPerm extractEntry node_modules/ip-regex/license
147 silly gunzTarPerm extractEntry node_modules/is-cidr/LICENSE
148 silly gunzTarPerm extractEntry node_modules/is-core-module/LICENSE
149 silly gunzTarPerm extractEntry node_modules/is-fullwidth-code-point/license
150 silly gunzTarPerm extractEntry node_modules/is-lambda/LICENSE
151 silly gunzTarPerm extractEntry node_modules/isexe/LICENSE
152 silly gunzTarPerm extractEntry node_modules/json-stringify-nice/LICENSE
153 silly gunzTarPerm extractEntry node_modules/jsonparse/LICENSE
154 silly gunzTarPerm extractEntry node_modules/just-diff-apply/LICENSE
155 silly gunzTarPerm extractEntry node_modules/just-diff/LICENSE
156 silly gunzTarPerm extractEntry node_modules/libnpmaccess/LICENSE
157 silly gunzTarPerm extractEntry node_modules/libnpmdiff/LICENSE
158 silly gunzTarPerm extractEntry node_modules/libnpmexec/LICENSE
159 silly gunzTarPerm extractEntry node_modules/libnpmfund/LICENSE
160 silly gunzTarPerm extractEntry node_modules/libnpmorg/LICENSE
161 silly gunzTarPerm extractEntry node_modules/libnpmpack/LICENSE
162 silly gunzTarPerm extractEntry node_modules/libnpmpublish/LICENSE
163 silly gunzTarPerm extractEntry node_modules/libnpmsearch/LICENSE
164 silly gunzTarPerm extractEntry node_modules/libnpmteam/LICENSE
165 silly gunzTarPerm extractEntry node_modules/libnpmversion/LICENSE
166 silly gunzTarPerm extractEntry node_modules/lru-cache/LICENSE
167 silly gunzTarPerm extractEntry node_modules/make-fetch-happen/LICENSE
168 silly gunzTarPerm extractEntry node_modules/minimatch/LICENSE
169 silly gunzTarPerm extractEntry node_modules/minipass-collect/LICENSE
170 silly gunzTarPerm extractEntry node_modules/minipass-fetch/LICENSE
171 silly gunzTarPerm extractEntry node_modules/minipass-flush/LICENSE
172 silly gunzTarPerm extractEntry node_modules/minipass-json-stream/LICENSE
173 silly gunzTarPerm extractEntry node_modules/minipass-pipeline/LICENSE
174 silly gunzTarPerm extractEntry node_modules/minipass-sized/LICENSE
175 silly gunzTarPerm extractEntry node_modules/minipass/LICENSE
176 silly gunzTarPerm extractEntry node_modules/minizlib/LICENSE
177 silly gunzTarPerm extractEntry node_modules/mkdirp-infer-owner/LICENSE
178 silly gunzTarPerm extractEntry node_modules/mkdirp/LICENSE
179 silly gunzTarPerm extractEntry node_modules/mute-stream/LICENSE
180 silly gunzTarPerm extractEntry node_modules/negotiator/LICENSE
181 silly gunzTarPerm extractEntry node_modules/node-gyp/gyp/LICENSE
182 silly gunzTarPerm extractEntry node_modules/node-gyp/LICENSE
183 silly gunzTarPerm extractEntry node_modules/nopt/LICENSE
184 silly gunzTarPerm extractEntry node_modules/normalize-package-data/LICENSE
185 silly gunzTarPerm extractEntry node_modules/npm-audit-report/LICENSE
186 silly gunzTarPerm extractEntry node_modules/npm-bundled/LICENSE
187 silly gunzTarPerm extractEntry node_modules/npm-install-checks/LICENSE
188 silly gunzTarPerm extractEntry node_modules/npm-normalize-package-bin/LICENSE
189 silly gunzTarPerm extractEntry node_modules/npm-package-arg/LICENSE
190 silly gunzTarPerm extractEntry node_modules/npm-packlist/LICENSE
191 silly gunzTarPerm extractEntry node_modules/npm-profile/LICENSE
192 silly gunzTarPerm extractEntry node_modules/npm-user-validate/LICENSE
193 silly gunzTarPerm extractEntry node_modules/object-assign/license
194 silly gunzTarPerm extractEntry node_modules/once/LICENSE
195 silly gunzTarPerm extractEntry node_modules/p-map/license
196 silly gunzTarPerm extractEntry node_modules/pacote/LICENSE
197 silly gunzTarPerm extractEntry node_modules/path-is-absolute/license
198 silly gunzTarPerm extractEntry node_modules/proc-log/LICENSE
199 silly gunzTarPerm extractEntry node_modules/promise-all-reject-late/LICENSE
200 silly gunzTarPerm extractEntry node_modules/promise-call-limit/LICENSE
201 silly gunzTarPerm extractEntry node_modules/promise-inflight/LICENSE
202 silly gunzTarPerm extractEntry node_modules/promise-retry/LICENSE
203 silly gunzTarPerm extractEntry node_modules/promzard/LICENSE
204 silly gunzTarPerm extractEntry node_modules/qrcode-terminal/LICENSE
205 silly gunzTarPerm extractEntry node_modules/read-cmd-shim/LICENSE
206 silly gunzTarPerm extractEntry node_modules/read-package-json-fast/LICENSE
207 silly gunzTarPerm extractEntry node_modules/read-package-json/LICENSE
208 silly gunzTarPerm extractEntry node_modules/read/LICENSE
209 silly gunzTarPerm extractEntry node_modules/readable-stream/LICENSE
210 silly gunzTarPerm extractEntry node_modules/readdir-scoped-modules/LICENSE
211 silly gunzTarPerm extractEntry node_modules/retry/License
212 silly gunzTarPerm extractEntry node_modules/rimraf/LICENSE
213 silly gunzTarPerm extractEntry node_modules/safe-buffer/LICENSE
214 silly gunzTarPerm extractEntry node_modules/safer-buffer/LICENSE
215 silly gunzTarPerm extractEntry node_modules/semver/LICENSE
216 silly gunzTarPerm extractEntry node_modules/smart-buffer/LICENSE
217 silly gunzTarPerm extractEntry node_modules/socks/LICENSE
218 silly gunzTarPerm extractEntry node_modules/spdx-correct/LICENSE
219 silly gunzTarPerm extractEntry node_modules/spdx-expression-parse/LICENSE
220 silly gunzTarPerm extractEntry node_modules/string_decoder/LICENSE
221 silly gunzTarPerm extractEntry node_modules/string-width/license
222 silly gunzTarPerm extractEntry node_modules/string-width/node_modules/ansi-regex/license
223 silly gunzTarPerm extractEntry node_modules/string-width/node_modules/strip-ansi/license
224 silly gunzTarPerm extractEntry node_modules/stringify-package/LICENSE
225 silly gunzTarPerm extractEntry node_modules/strip-ansi/license
226 silly gunzTarPerm extractEntry node_modules/supports-color/license
227 silly gunzTarPerm extractEntry node_modules/tar/LICENSE
228 silly gunzTarPerm extractEntry node_modules/text-table/LICENSE
229 silly gunzTarPerm extractEntry node_modules/treeverse/LICENSE
230 silly gunzTarPerm extractEntry node_modules/typedarray-to-buffer/LICENSE
231 silly gunzTarPerm extractEntry node_modules/unique-filename/LICENSE
232 silly gunzTarPerm extractEntry node_modules/unique-slug/LICENSE
233 silly gunzTarPerm extractEntry node_modules/util-deprecate/LICENSE
234 silly gunzTarPerm extractEntry node_modules/validate-npm-package-license/LICENSE
235 silly gunzTarPerm extractEntry node_modules/validate-npm-package-name/LICENSE
236 silly gunzTarPerm extractEntry node_modules/walk-up-path/LICENSE
237 silly gunzTarPerm extractEntry node_modules/wcwidth/LICENSE
238 silly gunzTarPerm extractEntry node_modules/which/LICENSE
239 silly gunzTarPerm extractEntry node_modules/wide-align/LICENSE
240 silly gunzTarPerm extractEntry node_modules/wrappy/LICENSE
241 silly gunzTarPerm extractEntry node_modules/write-file-atomic/LICENSE
242 silly gunzTarPerm extractEntry node_modules/yallist/LICENSE
243 silly gunzTarPerm extractEntry node_modules/has/LICENSE-MIT
244 silly gunzTarPerm extractEntry node_modules/columnify/Makefile
245 silly gunzTarPerm extractEntry node_modules/delegates/Makefile
246 silly gunzTarPerm extractEntry node_modules/retry/Makefile
247 silly gunzTarPerm extractEntry bin/node-gyp-bin/node-gyp
248 silly gunzTarPerm extractEntry node_modules/@npmcli/run-script/lib/node-gyp-bin/node-gyp
249 silly gunzTarPerm extractEntry node_modules/which/bin/node-which
250 silly gunzTarPerm extractEntry bin/npm
251 silly gunzTarPerm extractEntry bin/npx
252 silly gunzTarPerm extractEntry node_modules/node-gyp/gyp/tools/emacs/README
253 silly gunzTarPerm extractEntry node_modules/node-gyp/gyp/tools/README
254 silly gunzTarPerm extractEntry node_modules/node-gyp/gyp/tools/Xcode/README
255 silly gunzTarPerm extractEntry man/man1/npm-access.1
256 silly gunzTarPerm extractEntry man/man1/npm-adduser.1
257 silly gunzTarPerm extractEntry man/man1/npm-audit.1
258 silly gunzTarPerm extractEntry man/man1/npm-bin.1
259 silly gunzTarPerm extractEntry man/man1/npm-bugs.1
260 silly gunzTarPerm extractEntry man/man1/npm-cache.1
261 silly gunzTarPerm extractEntry man/man1/npm-ci.1
262 silly gunzTarPerm extractEntry man/man1/npm-completion.1
263 silly gunzTarPerm extractEntry man/man1/npm-config.1
264 silly gunzTarPerm extractEntry man/man1/npm-dedupe.1
265 silly gunzTarPerm extractEntry man/man1/npm-deprecate.1
266 silly gunzTarPerm extractEntry man/man1/npm-diff.1
267 silly gunzTarPerm extractEntry man/man1/npm-dist-tag.1
268 silly gunzTarPerm extractEntry man/man1/npm-docs.1
269 silly gunzTarPerm extractEntry man/man1/npm-doctor.1
270 silly gunzTarPerm extractEntry man/man1/npm-edit.1
271 silly gunzTarPerm extractEntry man/man1/npm-exec.1
272 silly gunzTarPerm extractEntry man/man1/npm-explain.1
273 silly gunzTarPerm extractEntry man/man1/npm-explore.1
274 silly gunzTarPerm extractEntry man/man1/npm-find-dupes.1
275 silly gunzTarPerm extractEntry man/man1/npm-fund.1
276 silly gunzTarPerm extractEntry man/man1/npm-help-search.1
277 silly gunzTarPerm extractEntry man/man1/npm-help.1
278 silly gunzTarPerm extractEntry man/man1/npm-hook.1
279 silly gunzTarPerm extractEntry man/man1/npm-init.1
280 silly gunzTarPerm extractEntry man/man1/npm-install-ci-test.1
281 silly gunzTarPerm extractEntry man/man1/npm-install-test.1
282 silly gunzTarPerm extractEntry man/man1/npm-install.1
283 silly gunzTarPerm extractEntry man/man1/npm-link.1
284 silly gunzTarPerm extractEntry man/man1/npm-logout.1
285 silly gunzTarPerm extractEntry man/man1/npm-ls.1
286 silly gunzTarPerm extractEntry man/man1/npm-org.1
287 silly gunzTarPerm extractEntry man/man1/npm-outdated.1
288 silly gunzTarPerm extractEntry man/man1/npm-owner.1
289 silly gunzTarPerm extractEntry man/man1/npm-pack.1
290 silly gunzTarPerm extractEntry man/man1/npm-ping.1
291 silly gunzTarPerm extractEntry man/man1/npm-pkg.1
292 silly gunzTarPerm extractEntry man/man1/npm-prefix.1
293 silly gunzTarPerm extractEntry man/man1/npm-profile.1
294 silly gunzTarPerm extractEntry man/man1/npm-prune.1
295 silly gunzTarPerm extractEntry man/man1/npm-publish.1
296 silly gunzTarPerm extractEntry man/man1/npm-rebuild.1
297 silly gunzTarPerm extractEntry man/man1/npm-repo.1
298 silly gunzTarPerm extractEntry man/man1/npm-restart.1
299 silly gunzTarPerm extractEntry man/man1/npm-root.1
300 silly gunzTarPerm extractEntry man/man1/npm-run-script.1
301 silly gunzTarPerm extractEntry man/man1/npm-search.1
302 silly gunzTarPerm extractEntry man/man1/npm-set-script.1
303 silly gunzTarPerm extractEntry man/man1/npm-shrinkwrap.1
304 silly gunzTarPerm extractEntry man/man1/npm-star.1
305 silly gunzTarPerm extractEntry man/man1/npm-stars.1
306 silly gunzTarPerm extractEntry man/man1/npm-start.1
307 silly gunzTarPerm extractEntry man/man1/npm-stop.1
308 silly gunzTarPerm extractEntry man/man1/npm-team.1
309 silly gunzTarPerm extractEntry man/man1/npm-test.1
310 silly gunzTarPerm extractEntry man/man1/npm-token.1
311 silly gunzTarPerm extractEntry man/man1/npm-uninstall.1
312 silly gunzTarPerm extractEntry man/man1/npm-unpublish.1
313 silly gunzTarPerm extractEntry man/man1/npm-unstar.1
314 silly gunzTarPerm extractEntry man/man1/npm-update.1
315 silly gunzTarPerm extractEntry man/man1/npm-version.1
316 silly gunzTarPerm extractEntry man/man1/npm-view.1
317 silly gunzTarPerm extractEntry man/man1/npm-whoami.1
318 silly gunzTarPerm extractEntry man/man1/npm.1
319 silly gunzTarPerm extractEntry man/man1/npx.1
320 silly gunzTarPerm extractEntry man/man5/folders.5
321 silly gunzTarPerm extractEntry man/man5/install.5
322 silly gunzTarPerm extractEntry man/man5/npm-shrinkwrap-json.5
323 silly gunzTarPerm extractEntry man/man5/npmrc.5
324 silly gunzTarPerm extractEntry man/man5/package-json.5
325 silly gunzTarPerm extractEntry man/man5/package-lock-json.5
326 silly gunzTarPerm extractEntry man/man7/config.7
327 silly gunzTarPerm extractEntry man/man7/developers.7
328 silly gunzTarPerm extractEntry man/man7/logging.7
329 silly gunzTarPerm extractEntry man/man7/orgs.7
330 silly gunzTarPerm extractEntry man/man7/registry.7
331 silly gunzTarPerm extractEntry man/man7/removal.7
332 silly gunzTarPerm extractEntry man/man7/scope.7
333 silly gunzTarPerm extractEntry man/man7/scripts.7
334 silly gunzTarPerm extractEntry man/man7/workspaces.7
335 silly gunzTarPerm extractEntry node_modules/node-gyp/gyp/gyp.bat
336 silly gunzTarPerm extractEntry node_modules/semver/range.bnf
337 silly gunzTarPerm extractEntry node_modules/node-gyp/gyp/data/win/large-pdb-shim.cc
338 silly gunzTarPerm extractEntry node_modules/node-gyp/src/win_delay_load_hook.cc
339 silly gunzTarPerm extractEntry bin/node-gyp-bin/node-gyp.cmd
340 silly gunzTarPerm extractEntry node_modules/@npmcli/run-script/lib/node-gyp-bin/node-gyp.cmd
341 silly gunzTarPerm extractEntry bin/npm.cmd
342 silly gunzTarPerm extractEntry bin/npx.cmd
343 silly gunzTarPerm extractEntry node_modules/node-gyp/test/fixtures/ca-bundle.crt
344 silly gunzTarPerm extractEntry node_modules/node-gyp/test/fixtures/ca.crt
345 silly gunzTarPerm extractEntry node_modules/node-gyp/test/fixtures/server.crt
346 silly gunzTarPerm extractEntry node_modules/node-gyp/lib/Find-VisualStudio.cs
347 silly gunzTarPerm extractEntry node_modules/unique-filename/coverage/base.css
348 silly gunzTarPerm extractEntry node_modules/unique-filename/coverage/prettify.css
349 silly gunzTarPerm extractEntry node_modules/node-gyp/gyp/tools/emacs/gyp-tests.el
350 silly gunzTarPerm extractEntry node_modules/node-gyp/gyp/tools/emacs/gyp.el
351 silly gunzTarPerm extractEntry node_modules/node-gyp/gyp/tools/emacs/testdata/media.gyp.fontified
352 silly gunzTarPerm extractEntry node_modules/retry/equation.gif
353 silly gunzTarPerm extractEntry node_modules/node-gyp/gyp/tools/emacs/testdata/media.gyp
354 silly gunzTarPerm extractEntry node_modules/node-gyp/addon.gypi
355 silly gunzTarPerm extractEntry node_modules/node-gyp/test/fixtures/nodedir/include/node/config.gypi
356 silly gunzTarPerm extractEntry docs/output/using-npm/config.html
357 silly gunzTarPerm extractEntry docs/output/using-npm/developers.html
358 silly gunzTarPerm extractEntry docs/output/configuring-npm/folders.html
359 silly gunzTarPerm extractEntry node_modules/unique-filename/coverage/__root__/index.html
360 silly gunzTarPerm extractEntry node_modules/unique-filename/coverage/index.html
361 silly gunzTarPerm extractEntry node_modules/unique-filename/coverage/__root__/index.js.html
362 silly gunzTarPerm extractEntry docs/output/configuring-npm/install.html
363 silly gunzTarPerm extractEntry docs/output/using-npm/logging.html
364 silly gunzTarPerm extractEntry docs/output/commands/npm-access.html
365 silly gunzTarPerm extractEntry docs/output/commands/npm-adduser.html
366 silly gunzTarPerm extractEntry docs/output/commands/npm-audit.html
367 silly gunzTarPerm extractEntry docs/output/commands/npm-bin.html
368 silly gunzTarPerm extractEntry docs/output/commands/npm-bugs.html
369 silly gunzTarPerm extractEntry docs/output/commands/npm-cache.html
370 silly gunzTarPerm extractEntry docs/output/commands/npm-ci.html
371 silly gunzTarPerm extractEntry docs/output/commands/npm-completion.html
372 silly gunzTarPerm extractEntry docs/output/commands/npm-config.html
373 silly gunzTarPerm extractEntry docs/output/commands/npm-dedupe.html
374 silly gunzTarPerm extractEntry docs/output/commands/npm-deprecate.html
375 silly gunzTarPerm extractEntry docs/output/commands/npm-diff.html
376 silly gunzTarPerm extractEntry docs/output/commands/npm-dist-tag.html
377 silly gunzTarPerm extractEntry docs/output/commands/npm-docs.html
378 silly gunzTarPerm extractEntry docs/output/commands/npm-doctor.html
379 silly gunzTarPerm extractEntry docs/output/commands/npm-edit.html
380 silly gunzTarPerm extractEntry docs/output/commands/npm-exec.html
381 silly gunzTarPerm extractEntry docs/output/commands/npm-explain.html
382 silly gunzTarPerm extractEntry docs/output/commands/npm-explore.html
383 silly gunzTarPerm extractEntry docs/output/commands/npm-find-dupes.html
384 silly gunzTarPerm extractEntry docs/output/commands/npm-fund.html
385 silly gunzTarPerm extractEntry docs/output/commands/npm-help-search.html
386 silly gunzTarPerm extractEntry docs/output/commands/npm-help.html
387 silly gunzTarPerm extractEntry docs/output/commands/npm-hook.html
388 silly gunzTarPerm extractEntry docs/output/commands/npm-init.html
389 silly gunzTarPerm extractEntry docs/output/commands/npm-install-ci-test.html
390 silly gunzTarPerm extractEntry docs/output/commands/npm-install-test.html
391 silly gunzTarPerm extractEntry docs/output/commands/npm-install.html
392 silly gunzTarPerm extractEntry docs/output/commands/npm-link.html
393 silly gunzTarPerm extractEntry docs/output/commands/npm-logout.html
394 silly gunzTarPerm extractEntry docs/output/commands/npm-ls.html
395 silly gunzTarPerm extractEntry docs/output/commands/npm-org.html
396 silly gunzTarPerm extractEntry docs/output/commands/npm-outdated.html
397 silly gunzTarPerm extractEntry docs/output/commands/npm-owner.html
398 silly gunzTarPerm extractEntry docs/output/commands/npm-pack.html
399 silly gunzTarPerm extractEntry docs/output/commands/npm-ping.html
400 silly gunzTarPerm extractEntry docs/output/commands/npm-pkg.html
401 silly gunzTarPerm extractEntry docs/output/commands/npm-prefix.html
402 silly gunzTarPerm extractEntry docs/output/commands/npm-profile.html
403 silly gunzTarPerm extractEntry docs/output/commands/npm-prune.html
404 silly gunzTarPerm extractEntry docs/output/commands/npm-publish.html
405 silly gunzTarPerm extractEntry docs/output/commands/npm-rebuild.html
406 silly gunzTarPerm extractEntry docs/output/commands/npm-repo.html
407 silly gunzTarPerm extractEntry docs/output/commands/npm-restart.html
408 silly gunzTarPerm extractEntry docs/output/commands/npm-root.html
409 silly gunzTarPerm extractEntry docs/output/commands/npm-run-script.html
410 silly gunzTarPerm extractEntry docs/output/commands/npm-search.html
411 silly gunzTarPerm extractEntry docs/output/commands/npm-set-script.html
412 silly gunzTarPerm extractEntry docs/output/configuring-npm/npm-shrinkwrap-json.html
413 silly gunzTarPerm extractEntry docs/output/commands/npm-shrinkwrap.html
414 silly gunzTarPerm extractEntry docs/output/commands/npm-star.html
415 silly gunzTarPerm extractEntry docs/output/commands/npm-stars.html
416 silly gunzTarPerm extractEntry docs/output/commands/npm-start.html
417 silly gunzTarPerm extractEntry docs/output/commands/npm-stop.html
418 silly gunzTarPerm extractEntry docs/output/commands/npm-team.html
419 silly gunzTarPerm extractEntry docs/output/commands/npm-test.html
420 silly gunzTarPerm extractEntry docs/output/commands/npm-token.html
421 silly gunzTarPerm extractEntry docs/output/commands/npm-uninstall.html
422 silly gunzTarPerm extractEntry docs/output/commands/npm-unpublish.html
423 silly gunzTarPerm extractEntry docs/output/commands/npm-unstar.html
424 silly gunzTarPerm extractEntry docs/output/commands/npm-update.html
425 silly gunzTarPerm extractEntry docs/output/commands/npm-version.html
426 silly gunzTarPerm extractEntry docs/output/commands/npm-view.html
427 silly gunzTarPerm extractEntry docs/output/commands/npm-whoami.html
428 silly gunzTarPerm extractEntry docs/output/commands/npm.html
429 silly gunzTarPerm extractEntry docs/output/configuring-npm/npmrc.html
430 silly gunzTarPerm extractEntry docs/output/commands/npx.html
431 silly gunzTarPerm extractEntry docs/output/using-npm/orgs.html
432 silly gunzTarPerm extractEntry docs/output/configuring-npm/package-json.html
433 silly gunzTarPerm extractEntry docs/output/configuring-npm/package-lock-json.html
434 silly gunzTarPerm extractEntry docs/output/using-npm/registry.html
435 silly gunzTarPerm extractEntry docs/output/using-npm/removal.html
436 silly gunzTarPerm extractEntry docs/output/using-npm/scope.html
437 silly gunzTarPerm extractEntry docs/output/using-npm/scripts.html
438 silly gunzTarPerm extractEntry docs/output/using-npm/workspaces.html
439 silly gunzTarPerm extractEntry node_modules/clone/clone.iml
440 silly gunzTarPerm extractEntry node_modules/promzard/test/exports.input
441 silly gunzTarPerm extractEntry node_modules/promzard/test/fn.input
442 silly gunzTarPerm extractEntry node_modules/promzard/test/simple.input
443 silly gunzTarPerm extractEntry node_modules/promzard/test/validate.input
444 silly gunzTarPerm extractEntry node_modules/readable-stream/lib/_stream_duplex.js
445 silly gunzTarPerm extractEntry node_modules/readable-stream/lib/_stream_passthrough.js
446 silly gunzTarPerm extractEntry node_modules/readable-stream/lib/_stream_readable.js
447 silly gunzTarPerm extractEntry node_modules/readable-stream/lib/_stream_transform.js
448 silly gunzTarPerm extractEntry node_modules/readable-stream/lib/_stream_writable.js
449 silly gunzTarPerm extractEntry node_modules/abbrev/abbrev.js
450 silly gunzTarPerm extractEntry node_modules/minipass-fetch/lib/abort-error.js
451 silly gunzTarPerm extractEntry lib/commands/access.js
452 silly gunzTarPerm extractEntry node_modules/@npmcli/arborist/bin/actual.js
453 silly gunzTarPerm extractEntry node_modules/pacote/lib/util/add-git-sha.js
454 silly gunzTarPerm extractEntry node_modules/@npmcli/arborist/lib/add-rm-pkg-deps.js
455 silly gunzTarPerm extractEntry lib/commands/adduser.js
456 silly gunzTarPerm extractEntry node_modules/@npmcli/metavuln-calculator/lib/advisory.js
457 silly gunzTarPerm extractEntry node_modules/agentkeepalive/lib/agent.js
458 silly gunzTarPerm extractEntry node_modules/http-proxy-agent/dist/agent.js
459 silly gunzTarPerm extractEntry node_modules/https-proxy-agent/dist/agent.js
460 silly gunzTarPerm extractEntry node_modules/make-fetch-happen/lib/agent.js
461 silly gunzTarPerm extractEntry node_modules/socks-proxy-agent/dist/agent.js
462 silly gunzTarPerm extractEntry node_modules/text-table/example/align.js
463 silly gunzTarPerm extractEntry node_modules/text-table/test/align.js
464 silly gunzTarPerm extractEntry node_modules/wide-align/align.js
465 silly gunzTarPerm extractEntry node_modules/colors/lib/maps/america.js
466 silly gunzTarPerm extractEntry node_modules/text-table/test/ansi-colors.js
467 silly gunzTarPerm extractEntry lib/utils/ansi-trim.js
468 silly gunzTarPerm extractEntry node_modules/ansicolors/ansicolors.js
469 silly gunzTarPerm extractEntry node_modules/ansicolors/test/ansicolors.js
470 silly gunzTarPerm extractEntry node_modules/ansistyles/ansistyles.js
471 silly gunzTarPerm extractEntry node_modules/ansistyles/test/ansistyles.js
472 silly gunzTarPerm extractEntry node_modules/ip/test/api-test.js
473 silly gunzTarPerm extractEntry node_modules/diff/lib/patch/apply.js
474 silly gunzTarPerm extractEntry lib/arborist-cmd.js
475 silly gunzTarPerm extractEntry node_modules/diff/lib/diff/array.js
476 silly gunzTarPerm extractEntry node_modules/diff/lib/util/array.js
477 silly gunzTarPerm extractEntry node_modules/npm-normalize-package-bin/test/array.js
478 silly gunzTarPerm extractEntry node_modules/asap/asap.js
479 silly gunzTarPerm extractEntry node_modules/readable-stream/lib/internal/streams/async_iterator.js
480 silly gunzTarPerm extractEntry lib/utils/audit-error.js
481 silly gunzTarPerm extractEntry node_modules/@npmcli/arborist/lib/audit-report.js
482 silly gunzTarPerm extractEntry lib/commands/audit.js
483 silly gunzTarPerm extractEntry node_modules/@npmcli/arborist/bin/audit.js
484 silly gunzTarPerm extractEntry node_modules/@npmcli/arborist/lib/arborist/audit.js
485 silly gunzTarPerm extractEntry node_modules/npm-registry-fetch/auth.js
486 silly gunzTarPerm extractEntry lib/base-command.js
487 silly gunzTarPerm extractEntry node_modules/gauge/lib/base-theme.js
488 silly gunzTarPerm extractEntry node_modules/diff/lib/diff/base.js
489 silly gunzTarPerm extractEntry node_modules/dezalgo/test/basic.js
490 silly gunzTarPerm extractEntry node_modules/isexe/test/basic.js
491 silly gunzTarPerm extractEntry node_modules/minipass-sized/test/basic.js
492 silly gunzTarPerm extractEntry node_modules/promzard/test/basic.js
493 silly gunzTarPerm extractEntry node_modules/qrcode-terminal/example/basic.js
494 silly gunzTarPerm extractEntry node_modules/typedarray-to-buffer/test/basic.js
495 silly gunzTarPerm extractEntry node_modules/archy/examples/beep.js
496 silly gunzTarPerm extractEntry node_modules/archy/test/beep.js
497 silly gunzTarPerm extractEntry node_modules/jsonparse/bench.js
498 silly gunzTarPerm extractEntry node_modules/jsonparse/test/big-token.js
499 silly gunzTarPerm extractEntry node_modules/bin-links/lib/bin-target.js
500 silly gunzTarPerm extractEntry lib/commands/bin.js
501 silly gunzTarPerm extractEntry node_modules/color-support/bin.js
502 silly gunzTarPerm extractEntry node_modules/pacote/lib/bin.js
503 silly gunzTarPerm extractEntry node_modules/rimraf/bin.js
504 silly gunzTarPerm extractEntry lib/commands/birthday.js
505 silly gunzTarPerm extractEntry node_modules/minipass-fetch/lib/blob.js
506 silly gunzTarPerm extractEntry node_modules/minipass-fetch/lib/body.js
507 silly gunzTarPerm extractEntry node_modules/iconv-lite/lib/bom-handling.js
508 silly gunzTarPerm extractEntry node_modules/jsonparse/test/boundary.js
509 silly gunzTarPerm extractEntry node_modules/treeverse/lib/breadth.js
510 silly gunzTarPerm extractEntry node_modules/asap/browser-asap.js
511 silly gunzTarPerm extractEntry node_modules/asap/browser-raw.js
512 silly gunzTarPerm extractEntry node_modules/agentkeepalive/browser.js
513 silly gunzTarPerm extractEntry node_modules/color-support/browser.js
514 silly gunzTarPerm extractEntry node_modules/debug/src/browser.js
515 silly gunzTarPerm extractEntry node_modules/supports-color/browser.js
516 silly gunzTarPerm extractEntry node_modules/util-deprecate/browser.js
517 silly gunzTarPerm extractEntry node_modules/readable-stream/lib/internal/streams/buffer_list.js
518 silly gunzTarPerm extractEntry node_modules/promzard/example/buffer.js
519 silly gunzTarPerm extractEntry node_modules/promzard/test/buffer.js
520 silly gunzTarPerm extractEntry lib/commands/bugs.js
521 silly gunzTarPerm extractEntry node_modules/@npmcli/arborist/lib/arborist/build-ideal-tree.js
522 silly gunzTarPerm extractEntry node_modules/node-gyp/lib/build.js
523 silly gunzTarPerm extractEntry node_modules/pacote/lib/util/cache-dir.js
524 silly gunzTarPerm extractEntry node_modules/libnpmexec/lib/cache-install-dir.js
525 silly gunzTarPerm extractEntry lib/commands/cache.js
526 silly gunzTarPerm extractEntry node_modules/@npmcli/arborist/lib/calc-dep-flags.js
527 silly gunzTarPerm extractEntry node_modules/qrcode-terminal/example/callback.js
528 silly gunzTarPerm extractEntry node_modules/depd/lib/compat/callsite-tostring.js
529 silly gunzTarPerm extractEntry node_modules/@npmcli/arborist/lib/can-place-dep.js
530 silly gunzTarPerm extractEntry node_modules/@npmcli/arborist/lib/case-insensitive-map.js
531 silly gunzTarPerm extractEntry node_modules/cli-table3/src/cell.js
532 silly gunzTarPerm extractEntry node_modules/text-table/example/center.js
533 silly gunzTarPerm extractEntry node_modules/text-table/test/center.js
534 silly gunzTarPerm extractEntry node_modules/diff/lib/diff/character.js
535 silly gunzTarPerm extractEntry node_modules/negotiator/lib/charset.js
536 silly gunzTarPerm extractEntry node_modules/bin-links/lib/check-bin.js
537 silly gunzTarPerm extractEntry node_modules/bin-links/lib/check-bins.js
538 silly gunzTarPerm extractEntry node_modules/npm-registry-fetch/check-response.js
539 silly gunzTarPerm extractEntry node_modules/chownr/chownr.js
540 silly gunzTarPerm extractEntry lib/commands/ci.js
541 silly gunzTarPerm extractEntry node_modules/node-gyp/lib/clean.js
542 silly gunzTarPerm extractEntry node_modules/semver/functions/clean.js
543 silly gunzTarPerm extractEntry lib/cli.js
544 silly gunzTarPerm extractEntry node_modules/@npmcli/git/lib/clone.js
545 silly gunzTarPerm extractEntry node_modules/clone/clone.js
546 silly gunzTarPerm extractEntry node_modules/graceful-fs/clone.js
547 silly gunzTarPerm extractEntry lib/utils/cmd-list.js
548 silly gunzTarPerm extractEntry node_modules/mkdirp/bin/cmd.js
549 silly gunzTarPerm extractEntry node_modules/semver/functions/cmp.js
550 silly gunzTarPerm extractEntry node_modules/semver/functions/coerce.js
551 silly gunzTarPerm extractEntry node_modules/cli-columns/color.js
552 silly gunzTarPerm extractEntry node_modules/colors/lib/colors.js
553 silly gunzTarPerm extractEntry node_modules/npm-audit-report/lib/colors.js
554 silly gunzTarPerm extractEntry node_modules/columnify/columnify.js
555 silly gunzTarPerm extractEntry node_modules/wcwidth/combining.js
556 silly gunzTarPerm extractEntry node_modules/libnpmversion/lib/commit.js
557 silly gunzTarPerm extractEntry node_modules/debug/src/common.js
558 silly gunzTarPerm extractEntry node_modules/glob/common.js
559 silly gunzTarPerm extractEntry node_modules/node-gyp/test/common.js
560 silly gunzTarPerm extractEntry node_modules/retry/test/common.js
561 silly gunzTarPerm extractEntry node_modules/semver/classes/comparator.js
562 silly gunzTarPerm extractEntry node_modules/semver/functions/compare-build.js
563 silly gunzTarPerm extractEntry node_modules/semver/functions/compare-loose.js
564 silly gunzTarPerm extractEntry node_modules/semver/functions/compare.js
565 silly gunzTarPerm extractEntry lib/commands/completion.js
566 silly gunzTarPerm extractEntry lib/commands/config.js
567 silly gunzTarPerm extractEntry node_modules/node-gyp/lib/configure.js
568 silly gunzTarPerm extractEntry node_modules/@npmcli/arborist/lib/consistent-resolve.js
569 silly gunzTarPerm extractEntry node_modules/agentkeepalive/lib/constants.js
570 silly gunzTarPerm extractEntry node_modules/minizlib/constants.js
571 silly gunzTarPerm extractEntry node_modules/semver/internal/constants.js
572 silly gunzTarPerm extractEntry node_modules/socks/build/common/constants.js
573 silly gunzTarPerm extractEntry node_modules/color-convert/conversions.js
574 silly gunzTarPerm extractEntry node_modules/@npmcli/fs/lib/copy-file.js
575 silly gunzTarPerm extractEntry node_modules/node-gyp/lib/create-config-gypi.js
576 silly gunzTarPerm extractEntry node_modules/diff/lib/patch/create.js
577 silly gunzTarPerm extractEntry node_modules/tar/lib/create.js
578 silly gunzTarPerm extractEntry node_modules/diff/lib/diff/css.js
579 silly gunzTarPerm extractEntry node_modules/tiny-relative-date/translations/da.js
580 silly gunzTarPerm extractEntry node_modules/safer-buffer/dangerous.js
581 silly gunzTarPerm extractEntry node_modules/iconv-lite/encodings/dbcs-codec.js
582 silly gunzTarPerm extractEntry node_modules/iconv-lite/encodings/dbcs-data.js
583 silly gunzTarPerm extractEntry node_modules/tiny-relative-date/translations/de.js
584 silly gunzTarPerm extractEntry node_modules/@npmcli/arborist/lib/debug.js
585 silly gunzTarPerm extractEntry node_modules/semver/internal/debug.js
586 silly gunzTarPerm extractEntry node_modules/debuglog/debuglog.js
587 silly gunzTarPerm extractEntry lib/commands/dedupe.js
588 silly gunzTarPerm extractEntry node_modules/@npmcli/arborist/lib/arborist/deduper.js
589 silly gunzTarPerm extractEntry node_modules/@npmcli/arborist/lib/deepest-nesting-target.js
590 silly gunzTarPerm extractEntry node_modules/init-package-json/lib/default-input.js
591 silly gunzTarPerm extractEntry node_modules/npm-registry-fetch/default-opts.js
592 silly gunzTarPerm extractEntry lib/utils/config/definition.js
593 silly gunzTarPerm extractEntry lib/utils/config/definitions.js
594 silly gunzTarPerm extractEntry node_modules/gauge/lib/demo.js
595 silly gunzTarPerm extractEntry node_modules/@npmcli/arborist/lib/dep-valid.js
596 silly gunzTarPerm extractEntry lib/commands/deprecate.js
597 silly gunzTarPerm extractEntry node_modules/treeverse/lib/depth-descent.js
598 silly gunzTarPerm extractEntry node_modules/treeverse/lib/depth.js
599 silly gunzTarPerm extractEntry lib/utils/deref-command.js
600 silly gunzTarPerm extractEntry lib/utils/config/describe-all.js
601 silly gunzTarPerm extractEntry node_modules/readable-stream/lib/internal/streams/destroy.js
602 silly gunzTarPerm extractEntry node_modules/npm-audit-report/lib/reporters/detail.js
603 silly gunzTarPerm extractEntry node_modules/dezalgo/dezalgo.js
604 silly gunzTarPerm extractEntry lib/utils/did-you-mean.js
605 silly gunzTarPerm extractEntry lib/commands/diff.js
606 silly gunzTarPerm extractEntry node_modules/@npmcli/arborist/lib/diff.js
607 silly gunzTarPerm extractEntry node_modules/diff/dist/diff.js
608 silly gunzTarPerm extractEntry node_modules/semver/functions/diff.js
609 silly gunzTarPerm extractEntry node_modules/pacote/lib/dir.js
610 silly gunzTarPerm extractEntry lib/utils/display.js
611 silly gunzTarPerm extractEntry node_modules/cacache/lib/util/disposer.js
612 silly gunzTarPerm extractEntry lib/commands/dist-tag.js
613 silly gunzTarPerm extractEntry node_modules/diff/lib/util/distance-iterator.js
614 silly gunzTarPerm extractEntry node_modules/diff/lib/convert/dmp.js
615 silly gunzTarPerm extractEntry node_modules/retry/example/dns.js
616 silly gunzTarPerm extractEntry lib/commands/docs.js
617 silly gunzTarPerm extractEntry lib/commands/doctor.js
618 silly gunzTarPerm extractEntry node_modules/text-table/example/dotalign.js
619 silly gunzTarPerm extractEntry node_modules/text-table/test/dotalign.js
620 silly gunzTarPerm extractEntry node_modules/text-table/example/doubledot.js
621 silly gunzTarPerm extractEntry node_modules/text-table/test/doubledot.js
622 silly gunzTarPerm extractEntry node_modules/@npmcli/arborist/lib/edge.js
623 silly gunzTarPerm extractEntry lib/commands/edit.js
624 silly gunzTarPerm extractEntry node_modules/tiny-relative-date/translations/en-short.js
625 silly gunzTarPerm extractEntry node_modules/tiny-relative-date/translations/en.js
626 silly gunzTarPerm extractEntry node_modules/encoding/lib/encoding.js
627 silly gunzTarPerm extractEntry node_modules/negotiator/lib/encoding.js
628 silly gunzTarPerm extractEntry node_modules/readable-stream/lib/internal/streams/end-of-stream.js
629 silly gunzTarPerm extractEntry node_modules/libnpmversion/lib/enforce-clean.js
630 silly gunzTarPerm extractEntry node_modules/cacache/lib/entry-index.js
631 silly gunzTarPerm extractEntry node_modules/make-fetch-happen/lib/cache/entry.js
632 silly gunzTarPerm extractEntry node_modules/@npmcli/config/lib/env-replace.js
633 silly gunzTarPerm extractEntry node_modules/semver/functions/eq.js
634 silly gunzTarPerm extractEntry lib/utils/error-message.js
635 silly gunzTarPerm extractEntry node_modules/gauge/lib/error.js
636 silly gunzTarPerm extractEntry node_modules/readable-stream/errors-browser.js
637 silly gunzTarPerm extractEntry node_modules/@npmcli/git/lib/errors.js
638 silly gunzTarPerm extractEntry node_modules/make-fetch-happen/lib/cache/errors.js
639 silly gunzTarPerm extractEntry node_modules/npm-registry-fetch/errors.js
640 silly gunzTarPerm extractEntry node_modules/readable-stream/errors.js
641 silly gunzTarPerm extractEntry node_modules/tiny-relative-date/translations/es.js
642 silly gunzTarPerm extractEntry node_modules/depd/lib/compat/event-listener-count.js
643 silly gunzTarPerm extractEntry lib/commands/exec.js
644 silly gunzTarPerm extractEntry node_modules/npm-audit-report/lib/exit-code.js
645 silly gunzTarPerm extractEntry lib/utils/exit-handler.js
646 silly gunzTarPerm extractEntry node_modules/readable-stream/experimentalWarning.js
647 silly gunzTarPerm extractEntry lib/utils/explain-dep.js
648 silly gunzTarPerm extractEntry lib/utils/explain-eresolve.js
649 silly gunzTarPerm extractEntry lib/commands/explain.js
650 silly gunzTarPerm extractEntry lib/commands/explore.js
651 silly gunzTarPerm extractEntry node_modules/promzard/test/exports.js
652 silly gunzTarPerm extractEntry node_modules/colors/lib/extendStringPrototype.js
653 silly gunzTarPerm extractEntry node_modules/normalize-package-data/lib/extract_description.js
654 silly gunzTarPerm extractEntry node_modules/tar/lib/extract.js
655 silly gunzTarPerm extractEntry node_modules/tiny-relative-date/lib/factory.js
656 silly gunzTarPerm extractEntry node_modules/tiny-relative-date/src/factory.js
657 silly gunzTarPerm extractEntry node_modules/minipass-fetch/lib/fetch-error.js
658 silly gunzTarPerm extractEntry node_modules/make-fetch-happen/lib/fetch.js
659 silly gunzTarPerm extractEntry node_modules/pacote/lib/fetcher.js
660 silly gunzTarPerm extractEntry lib/utils/file-exists.js
661 silly gunzTarPerm extractEntry node_modules/libnpmexec/lib/file-exists.js
662 silly gunzTarPerm extractEntry node_modules/pacote/lib/file.js
663 silly gunzTarPerm extractEntry lib/commands/find-dupes.js
664 silly gunzTarPerm extractEntry node_modules/mkdirp/lib/find-made.js
665 silly gunzTarPerm extractEntry node_modules/node-gyp/lib/find-node-directory.js
666 silly gunzTarPerm extractEntry node_modules/node-gyp/lib/find-python.js
667 silly gunzTarPerm extractEntry node_modules/node-gyp/lib/find-visualstudio.js
668 silly gunzTarPerm extractEntry node_modules/@npmcli/git/lib/find.js
669 silly gunzTarPerm extractEntry node_modules/bin-links/lib/fix-bin.js
670 silly gunzTarPerm extractEntry node_modules/cacache/lib/util/fix-owner.js
671 silly gunzTarPerm extractEntry node_modules/normalize-package-data/lib/fixer.js
672 silly gunzTarPerm extractEntry lib/utils/config/flatten.js
673 silly gunzTarPerm extractEntry node_modules/promzard/test/fn.js
674 silly gunzTarPerm extractEntry lib/utils/format-bytes.js
675 silly gunzTarPerm extractEntry node_modules/libnpmdiff/lib/format-diff.js
676 silly gunzTarPerm extractEntry lib/search/format-package-stream.js
677 silly gunzTarPerm extractEntry node_modules/readable-stream/lib/internal/streams/from-browser.js
678 silly gunzTarPerm extractEntry node_modules/@npmcli/arborist/lib/from-path.js
679 silly gunzTarPerm extractEntry node_modules/readable-stream/lib/internal/streams/from.js
680 silly gunzTarPerm extractEntry node_modules/@npmcli/fs/lib/fs.js
681 silly gunzTarPerm extractEntry lib/commands/fund.js
682 silly gunzTarPerm extractEntry node_modules/@npmcli/arborist/bin/funding.js
683 silly gunzTarPerm extractEntry node_modules/@npmcli/arborist/lib/gather-dep-set.js
684 silly gunzTarPerm extractEntry node_modules/colors/themes/generic-logging.js
685 silly gunzTarPerm extractEntry node_modules/libnpmexec/lib/get-bin-from-manifest.js
686 silly gunzTarPerm extractEntry node_modules/@npmcli/metavuln-calculator/lib/get-dep-spec.js
687 silly gunzTarPerm extractEntry lib/utils/get-identity.js
688 silly gunzTarPerm extractEntry node_modules/bin-links/lib/get-node-modules.js
689 silly gunzTarPerm extractEntry node_modules/@npmcli/fs/lib/common/get-options.js
690 silly gunzTarPerm extractEntry node_modules/bin-links/lib/get-paths.js
691 silly gunzTarPerm extractEntry node_modules/bin-links/lib/get-prefix.js
692 silly gunzTarPerm extractEntry lib/exec/get-workspace-location-msg.js
693 silly gunzTarPerm extractEntry node_modules/@npmcli/arborist/lib/get-workspace-nodes.js
694 silly gunzTarPerm extractEntry lib/workspaces/get-workspaces.js
695 silly gunzTarPerm extractEntry node_modules/tar/lib/get-write-flag.js
696 silly gunzTarPerm extractEntry lib/commands/get.js
697 silly gunzTarPerm extractEntry node_modules/cacache/get.js
698 silly gunzTarPerm extractEntry node_modules/hosted-git-info/git-host-info.js
699 silly gunzTarPerm extractEntry node_modules/hosted-git-info/git-host.js
700 silly gunzTarPerm extractEntry node_modules/pacote/lib/git.js
701 silly gunzTarPerm extractEntry node_modules/glob/glob.js
702 silly gunzTarPerm extractEntry node_modules/graceful-fs/graceful-fs.js
703 silly gunzTarPerm extractEntry node_modules/semver/functions/gt.js
704 silly gunzTarPerm extractEntry node_modules/semver/functions/gte.js
705 silly gunzTarPerm extractEntry node_modules/semver/ranges/gtr.js
706 silly gunzTarPerm extractEntry node_modules/gauge/lib/has-color.js
707 silly gunzTarPerm extractEntry node_modules/colors/lib/system/has-flag.js
708 silly gunzTarPerm extractEntry node_modules/cacache/lib/util/hash-to-segments.js
709 silly gunzTarPerm extractEntry node_modules/@npmcli/metavuln-calculator/lib/hash.js
710 silly gunzTarPerm extractEntry node_modules/tar/lib/header.js
711 silly gunzTarPerm extractEntry node_modules/minipass-fetch/lib/headers.js
712 silly gunzTarPerm extractEntry lib/commands/help-search.js
713 silly gunzTarPerm extractEntry lib/commands/help.js
714 silly gunzTarPerm extractEntry node_modules/socks/build/common/helpers.js
715 silly gunzTarPerm extractEntry node_modules/tar/lib/high-level-opt.js
716 silly gunzTarPerm extractEntry lib/commands/hook.js
717 silly gunzTarPerm extractEntry lib/utils/hosted-git-info-from-manifest.js
718 silly gunzTarPerm extractEntry node_modules/agentkeepalive/lib/https_agent.js
719 silly gunzTarPerm extractEntry node_modules/@npmcli/arborist/bin/ideal.js
720 silly gunzTarPerm extractEntry node_modules/semver/internal/identifiers.js
721 silly gunzTarPerm extractEntry node_modules/function-bind/implementation.js
722 silly gunzTarPerm extractEntry node_modules/imurmurhash/imurmurhash.js
723 silly gunzTarPerm extractEntry node_modules/imurmurhash/imurmurhash.min.js
724 silly gunzTarPerm extractEntry node_modules/semver/functions/inc.js
725 silly gunzTarPerm extractEntry node_modules/diff/lib/index.es6.js
726 silly gunzTarPerm extractEntry index.js
727 silly gunzTarPerm extractEntry lib/utils/config/index.js
728 silly gunzTarPerm extractEntry node_modules/@gar/promisify/index.js
729 silly gunzTarPerm extractEntry node_modules/@isaacs/string-locale-compare/index.js
730 silly gunzTarPerm extractEntry node_modules/@npmcli/arborist/bin/index.js
731 silly gunzTarPerm extractEntry node_modules/@npmcli/arborist/lib/arborist/index.js
732 silly gunzTarPerm extractEntry node_modules/@npmcli/arborist/lib/index.js
733 silly gunzTarPerm extractEntry node_modules/@npmcli/ci-detect/index.js
734 silly gunzTarPerm extractEntry node_modules/@npmcli/config/lib/index.js
735 silly gunzTarPerm extractEntry node_modules/@npmcli/disparity-colors/index.js
736 silly gunzTarPerm extractEntry node_modules/@npmcli/fs/lib/common/file-url-to-path/index.js
737 silly gunzTarPerm extractEntry node_modules/@npmcli/fs/lib/index.js
738 silly gunzTarPerm extractEntry node_modules/@npmcli/fs/lib/mkdir/index.js
739 silly gunzTarPerm extractEntry node_modules/@npmcli/fs/lib/rm/index.js
740 silly gunzTarPerm extractEntry node_modules/@npmcli/git/lib/index.js
741 silly gunzTarPerm extractEntry node_modules/@npmcli/installed-package-contents/index.js
742 silly gunzTarPerm extractEntry node_modules/@npmcli/map-workspaces/lib/index.js
743 silly gunzTarPerm extractEntry node_modules/@npmcli/metavuln-calculator/lib/index.js
744 silly gunzTarPerm extractEntry node_modules/@npmcli/move-file/index.js
745 silly gunzTarPerm extractEntry node_modules/@npmcli/name-from-folder/index.js
746 silly gunzTarPerm extractEntry node_modules/@npmcli/node-gyp/lib/index.js
747 silly gunzTarPerm extractEntry node_modules/@npmcli/package-json/lib/index.js
748 silly gunzTarPerm extractEntry node_modules/@npmcli/promise-spawn/index.js
749 silly gunzTarPerm extractEntry node_modules/@tootallnate/once/dist/index.js
750 silly gunzTarPerm extractEntry node_modules/agent-base/dist/src/index.js
751 silly gunzTarPerm extractEntry node_modules/agentkeepalive/index.js
752 silly gunzTarPerm extractEntry node_modules/aggregate-error/index.js
753 silly gunzTarPerm extractEntry node_modules/ansi-regex/index.js
754 silly gunzTarPerm extractEntry node_modules/ansi-styles/index.js
755 silly gunzTarPerm extractEntry node_modules/aproba/index.js
756 silly gunzTarPerm extractEntry node_modules/archy/index.js
757 silly gunzTarPerm extractEntry node_modules/are-we-there-yet/lib/index.js
758 silly gunzTarPerm extractEntry node_modules/balanced-match/index.js
759 silly gunzTarPerm extractEntry node_modules/bin-links/index.js
760 silly gunzTarPerm extractEntry node_modules/binary-extensions/index.js
761 silly gunzTarPerm extractEntry node_modules/brace-expansion/index.js
762 silly gunzTarPerm extractEntry node_modules/cacache/index.js
763 silly gunzTarPerm extractEntry node_modules/chalk/source/index.js
764 silly gunzTarPerm extractEntry node_modules/cidr-regex/index.js
765 silly gunzTarPerm extractEntry node_modules/clean-stack/index.js
766 silly gunzTarPerm extractEntry node_modules/cli-columns/index.js
767 silly gunzTarPerm extractEntry node_modules/cli-columns/node_modules/ansi-regex/index.js
768 silly gunzTarPerm extractEntry node_modules/cli-columns/node_modules/is-fullwidth-code-point/index.js
769 silly gunzTarPerm extractEntry node_modules/cli-columns/node_modules/string-width/index.js
770 silly gunzTarPerm extractEntry node_modules/cli-columns/node_modules/strip-ansi/index.js
771 silly gunzTarPerm extractEntry node_modules/cli-table3/index.js
772 silly gunzTarPerm extractEntry node_modules/cli-table3/node_modules/ansi-regex/index.js
773 silly gunzTarPerm extractEntry node_modules/cli-table3/node_modules/is-fullwidth-code-point/index.js
774 silly gunzTarPerm extractEntry node_modules/cli-table3/node_modules/string-width/index.js
775 silly gunzTarPerm extractEntry node_modules/cli-table3/node_modules/strip-ansi/index.js
776 silly gunzTarPerm extractEntry node_modules/cmd-shim/index.js
777 silly gunzTarPerm extractEntry node_modules/color-convert/index.js
778 silly gunzTarPerm extractEntry node_modules/color-name/index.js
779 silly gunzTarPerm extractEntry node_modules/color-support/index.js
780 silly gunzTarPerm extractEntry node_modules/colors/lib/index.js
781 silly gunzTarPerm extractEntry node_modules/columnify/index.js
782 silly gunzTarPerm extractEntry node_modules/common-ancestor-path/index.js
783 silly gunzTarPerm extractEntry node_modules/concat-map/index.js
784 silly gunzTarPerm extractEntry node_modules/console-control-strings/index.js
785 silly gunzTarPerm extractEntry node_modules/debug/node_modules/ms/index.js
786 silly gunzTarPerm extractEntry node_modules/debug/src/index.js
787 silly gunzTarPerm extractEntry node_modules/defaults/index.js
788 silly gunzTarPerm extractEntry node_modules/delegates/index.js
789 silly gunzTarPerm extractEntry node_modules/delegates/test/index.js
790 silly gunzTarPerm extractEntry node_modules/depd/index.js
791 silly gunzTarPerm extractEntry node_modules/depd/lib/browser/index.js
792 silly gunzTarPerm extractEntry node_modules/depd/lib/compat/index.js
793 silly gunzTarPerm extractEntry node_modules/diff/lib/index.js
794 silly gunzTarPerm extractEntry node_modules/emoji-regex/es2015/index.js
795 silly gunzTarPerm extractEntry node_modules/emoji-regex/index.js
796 silly gunzTarPerm extractEntry node_modules/env-paths/index.js
797 silly gunzTarPerm extractEntry node_modules/err-code/index.js
798 silly gunzTarPerm extractEntry node_modules/fastest-levenshtein/index.js
799 silly gunzTarPerm extractEntry node_modules/fs-minipass/index.js
800 silly gunzTarPerm extractEntry node_modules/fs.realpath/index.js
801 silly gunzTarPerm extractEntry node_modules/function-bind/index.js
802 silly gunzTarPerm extractEntry node_modules/function-bind/test/index.js
803 silly gunzTarPerm extractEntry node_modules/gauge/lib/index.js
804 silly gunzTarPerm extractEntry node_modules/gauge/node_modules/ansi-regex/index.js
805 silly gunzTarPerm extractEntry node_modules/gauge/node_modules/is-fullwidth-code-point/index.js
806 silly gunzTarPerm extractEntry node_modules/gauge/node_modules/string-width/index.js
807 silly gunzTarPerm extractEntry node_modules/gauge/node_modules/strip-ansi/index.js
808 silly gunzTarPerm extractEntry node_modules/has-flag/index.js
809 silly gunzTarPerm extractEntry node_modules/has-unicode/index.js
810 silly gunzTarPerm extractEntry node_modules/has/src/index.js
811 silly gunzTarPerm extractEntry node_modules/has/test/index.js
812 silly gunzTarPerm extractEntry node_modules/hosted-git-info/index.js
813 silly gunzTarPerm extractEntry node_modules/http-cache-semantics/index.js
814 silly gunzTarPerm extractEntry node_modules/http-proxy-agent/dist/index.js
815 silly gunzTarPerm extractEntry node_modules/https-proxy-agent/dist/index.js
816 silly gunzTarPerm extractEntry node_modules/humanize-ms/index.js
817 silly gunzTarPerm extractEntry node_modules/iconv-lite/encodings/index.js
818 silly gunzTarPerm extractEntry node_modules/iconv-lite/lib/index.js
819 silly gunzTarPerm extractEntry node_modules/ignore-walk/index.js
820 silly gunzTarPerm extractEntry node_modules/indent-string/index.js
821 silly gunzTarPerm extractEntry node_modules/infer-owner/index.js
822 silly gunzTarPerm extractEntry node_modules/ip-regex/index.js
823 silly gunzTarPerm extractEntry node_modules/is-cidr/index.js
824 silly gunzTarPerm extractEntry node_modules/is-core-module/index.js
825 silly gunzTarPerm extractEntry node_modules/is-core-module/test/index.js
826 silly gunzTarPerm extractEntry node_modules/is-fullwidth-code-point/index.js
827 silly gunzTarPerm extractEntry node_modules/is-lambda/index.js
828 silly gunzTarPerm extractEntry node_modules/is-typedarray/index.js
829 silly gunzTarPerm extractEntry node_modules/isexe/index.js
830 silly gunzTarPerm extractEntry node_modules/json-parse-even-better-errors/index.js
831 silly gunzTarPerm extractEntry node_modules/json-stringify-nice/index.js
832 silly gunzTarPerm extractEntry node_modules/just-diff-apply/index.js
833 silly gunzTarPerm extractEntry node_modules/just-diff/index.js
834 silly gunzTarPerm extractEntry node_modules/libnpmaccess/index.js
835 silly gunzTarPerm extractEntry node_modules/libnpmaccess/test/index.js
836 silly gunzTarPerm extractEntry node_modules/libnpmdiff/index.js
837 silly gunzTarPerm extractEntry node_modules/libnpmexec/lib/index.js
838 silly gunzTarPerm extractEntry node_modules/libnpmfund/index.js
839 silly gunzTarPerm extractEntry node_modules/libnpmhook/index.js
840 silly gunzTarPerm extractEntry node_modules/libnpmorg/index.js
841 silly gunzTarPerm extractEntry node_modules/libnpmpack/index.js
842 silly gunzTarPerm extractEntry node_modules/libnpmpublish/index.js
843 silly gunzTarPerm extractEntry node_modules/libnpmsearch/index.js
844 silly gunzTarPerm extractEntry node_modules/libnpmteam/index.js
845 silly gunzTarPerm extractEntry node_modules/libnpmversion/lib/index.js
846 silly gunzTarPerm extractEntry node_modules/lru-cache/index.js
847 silly gunzTarPerm extractEntry node_modules/make-fetch-happen/lib/cache/index.js
848 silly gunzTarPerm extractEntry node_modules/make-fetch-happen/lib/index.js
849 silly gunzTarPerm extractEntry node_modules/minipass-collect/index.js
850 silly gunzTarPerm extractEntry node_modules/minipass-fetch/index.js
851 silly gunzTarPerm extractEntry node_modules/minipass-fetch/lib/index.js
852 silly gunzTarPerm extractEntry node_modules/minipass-flush/index.js
853 silly gunzTarPerm extractEntry node_modules/minipass-json-stream/index.js
854 silly gunzTarPerm extractEntry node_modules/minipass-pipeline/index.js
855 silly gunzTarPerm extractEntry node_modules/minipass-sized/index.js
856 silly gunzTarPerm extractEntry node_modules/minipass/index.js
857 silly gunzTarPerm extractEntry node_modules/minizlib/index.js
858 silly gunzTarPerm extractEntry node_modules/mkdirp-infer-owner/index.js
859 silly gunzTarPerm extractEntry node_modules/mkdirp/index.js
860 silly gunzTarPerm extractEntry node_modules/ms/index.js
861 silly gunzTarPerm extractEntry node_modules/negotiator/index.js
862 silly gunzTarPerm extractEntry node_modules/npm-audit-report/lib/index.js
863 silly gunzTarPerm extractEntry node_modules/npm-bundled/index.js
864 silly gunzTarPerm extractEntry node_modules/npm-install-checks/index.js
865 silly gunzTarPerm extractEntry node_modules/npm-normalize-package-bin/index.js
866 silly gunzTarPerm extractEntry node_modules/npm-packlist/bin/index.js
867 silly gunzTarPerm extractEntry node_modules/npm-packlist/index.js
868 silly gunzTarPerm extractEntry node_modules/npm-pick-manifest/index.js
869 silly gunzTarPerm extractEntry node_modules/npm-profile/index.js
870 silly gunzTarPerm extractEntry node_modules/npm-registry-fetch/index.js
871 silly gunzTarPerm extractEntry node_modules/object-assign/index.js
872 silly gunzTarPerm extractEntry node_modules/p-map/index.js
873 silly gunzTarPerm extractEntry node_modules/pacote/lib/index.js
874 silly gunzTarPerm extractEntry node_modules/parse-conflict-json/lib/index.js
875 silly gunzTarPerm extractEntry node_modules/path-is-absolute/index.js
876 silly gunzTarPerm extractEntry node_modules/proc-log/index.js
877 silly gunzTarPerm extractEntry node_modules/promise-all-reject-late/index.js
878 silly gunzTarPerm extractEntry node_modules/promise-all-reject-late/test/index.js
879 silly gunzTarPerm extractEntry node_modules/promise-call-limit/index.js
880 silly gunzTarPerm extractEntry node_modules/promise-retry/index.js
881 silly gunzTarPerm extractEntry node_modules/promzard/example/index.js
882 silly gunzTarPerm extractEntry node_modules/qrcode-terminal/vendor/QRCode/index.js
883 silly gunzTarPerm extractEntry node_modules/read-cmd-shim/index.js
884 silly gunzTarPerm extractEntry node_modules/read-package-json-fast/index.js
885 silly gunzTarPerm extractEntry node_modules/retry/index.js
886 silly gunzTarPerm extractEntry node_modules/safe-buffer/index.js
887 silly gunzTarPerm extractEntry node_modules/semver/classes/index.js
888 silly gunzTarPerm extractEntry node_modules/semver/index.js
889 silly gunzTarPerm extractEntry node_modules/set-blocking/index.js
890 silly gunzTarPerm extractEntry node_modules/signal-exit/index.js
891 silly gunzTarPerm extractEntry node_modules/socks-proxy-agent/dist/index.js
892 silly gunzTarPerm extractEntry node_modules/socks/build/index.js
893 silly gunzTarPerm extractEntry node_modules/spdx-correct/index.js
894 silly gunzTarPerm extractEntry node_modules/spdx-expression-parse/index.js
895 silly gunzTarPerm extractEntry node_modules/ssri/index.js
896 silly gunzTarPerm extractEntry node_modules/string-width/index.js
897 silly gunzTarPerm extractEntry node_modules/string-width/node_modules/ansi-regex/index.js
898 silly gunzTarPerm extractEntry node_modules/string-width/node_modules/strip-ansi/index.js
899 silly gunzTarPerm extractEntry node_modules/stringify-package/index.js
900 silly gunzTarPerm extractEntry node_modules/strip-ansi/index.js
901 silly gunzTarPerm extractEntry node_modules/supports-color/index.js
902 silly gunzTarPerm extractEntry node_modules/tar/index.js
903 silly gunzTarPerm extractEntry node_modules/text-table/index.js
904 silly gunzTarPerm extractEntry node_modules/tiny-relative-date/lib/index.js
905 silly gunzTarPerm extractEntry node_modules/tiny-relative-date/src/index.js
906 silly gunzTarPerm extractEntry node_modules/treeverse/index.js
907 silly gunzTarPerm extractEntry node_modules/typedarray-to-buffer/index.js
908 silly gunzTarPerm extractEntry node_modules/unique-filename/index.js
909 silly gunzTarPerm extractEntry node_modules/unique-filename/test/index.js
910 silly gunzTarPerm extractEntry node_modules/unique-slug/index.js
911 silly gunzTarPerm extractEntry node_modules/unique-slug/test/index.js
912 silly gunzTarPerm extractEntry node_modules/validate-npm-package-license/index.js
913 silly gunzTarPerm extractEntry node_modules/validate-npm-package-name/index.js
914 silly gunzTarPerm extractEntry node_modules/validate-npm-package-name/test/index.js
915 silly gunzTarPerm extractEntry node_modules/walk-up-path/index.js
916 silly gunzTarPerm extractEntry node_modules/wcwidth/index.js
917 silly gunzTarPerm extractEntry node_modules/wcwidth/test/index.js
918 silly gunzTarPerm extractEntry node_modules/write-file-atomic/index.js
919 silly gunzTarPerm extractEntry node_modules/err-code/index.umd.js
920 silly gunzTarPerm extractEntry node_modules/inflight/inflight.js
921 silly gunzTarPerm extractEntry node_modules/promise-inflight/inflight.js
922 silly gunzTarPerm extractEntry node_modules/inherits/inherits_browser.js
923 silly gunzTarPerm extractEntry node_modules/inherits/inherits.js
924 silly gunzTarPerm extractEntry node_modules/ini/ini.js
925 silly gunzTarPerm extractEntry node_modules/promzard/example/npm-init/init-input.js
926 silly gunzTarPerm extractEntry node_modules/init-package-json/lib/init-package-json.js
927 silly gunzTarPerm extractEntry lib/commands/init.js
928 silly gunzTarPerm extractEntry node_modules/promzard/example/npm-init/init.js
929 silly gunzTarPerm extractEntry lib/commands/install-ci-test.js
930 silly gunzTarPerm extractEntry lib/commands/install-test.js
931 silly gunzTarPerm extractEntry lib/commands/install.js
932 silly gunzTarPerm extractEntry node_modules/node-gyp/lib/install.js
933 silly gunzTarPerm extractEntry node_modules/npm-audit-report/lib/reporters/install.js
934 silly gunzTarPerm extractEntry lib/utils/completion/installed-deep.js
935 silly gunzTarPerm extractEntry lib/utils/completion/installed-shallow.js
936 silly gunzTarPerm extractEntry node_modules/iconv-lite/encodings/internal.js
937 silly gunzTarPerm extractEntry node_modules/semver/ranges/intersects.js
938 silly gunzTarPerm extractEntry node_modules/@npmcli/arborist/lib/inventory.js
939 silly gunzTarPerm extractEntry node_modules/ip/lib/ip.js
940 silly gunzTarPerm extractEntry node_modules/@npmcli/git/lib/is-clean.js
941 silly gunzTarPerm extractEntry node_modules/pacote/lib/util/is-package-bin.js
942 silly gunzTarPerm extractEntry node_modules/@npmcli/run-script/lib/is-server-package.js
943 silly gunzTarPerm extractEntry lib/utils/is-windows-bash.js
944 silly gunzTarPerm extractEntry lib/utils/is-windows-shell.js
945 silly gunzTarPerm extractEntry lib/utils/is-windows.js
946 silly gunzTarPerm extractEntry node_modules/@npmcli/run-script/lib/is-windows.js
947 silly gunzTarPerm extractEntry node_modules/bin-links/lib/is-windows.js
948 silly gunzTarPerm extractEntry node_modules/libnpmexec/lib/is-windows.js
949 silly gunzTarPerm extractEntry node_modules/@npmcli/git/lib/is.js
950 silly gunzTarPerm extractEntry node_modules/yallist/iterator.js
951 silly gunzTarPerm extractEntry node_modules/diff/lib/diff/json.js
952 silly gunzTarPerm extractEntry node_modules/npm-audit-report/lib/reporters/json.js
953 silly gunzTarPerm extractEntry node_modules/jsonparse/jsonparse.js
954 silly gunzTarPerm extractEntry node_modules/make-fetch-happen/lib/cache/key.js
955 silly gunzTarPerm extractEntry node_modules/negotiator/lib/language.js
956 silly gunzTarPerm extractEntry node_modules/tar/lib/large-numbers.js
957 silly gunzTarPerm extractEntry node_modules/cli-table3/src/layout-manager.js
958 silly gunzTarPerm extractEntry node_modules/graceful-fs/legacy-streams.js
959 silly gunzTarPerm extractEntry lib/auth/legacy.js
960 silly gunzTarPerm extractEntry node_modules/@npmcli/arborist/bin/license.js
961 silly gunzTarPerm extractEntry lib/lifecycle-cmd.js
962 silly gunzTarPerm extractEntry node_modules/diff/lib/diff/line.js
963 silly gunzTarPerm extractEntry node_modules/@npmcli/git/lib/lines-to-revs.js
964 silly gunzTarPerm extractEntry node_modules/bin-links/lib/link-bin.js
965 silly gunzTarPerm extractEntry node_modules/bin-links/lib/link-bins.js
966 silly gunzTarPerm extractEntry node_modules/bin-links/lib/link-gently.js
967 silly gunzTarPerm extractEntry node_modules/bin-links/lib/link-mans.js
968 silly gunzTarPerm extractEntry lib/commands/link.js
969 silly gunzTarPerm extractEntry node_modules/@npmcli/arborist/lib/link.js
970 silly gunzTarPerm extractEntry node_modules/node-gyp/lib/list.js