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