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