forked from tuna/mirror-web
-
Notifications
You must be signed in to change notification settings - Fork 1
/
npm-debug.log
11094 lines (11094 loc) · 830 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
10005 silly decomposeActions build [email protected]
10006 silly decomposeActions install [email protected]
10007 silly decomposeActions postinstall [email protected]
10008 silly decomposeActions finalize [email protected]
10009 silly decomposeActions preinstall [email protected]
10010 silly decomposeActions build [email protected]
10011 silly decomposeActions install [email protected]
10012 silly decomposeActions postinstall [email protected]
10013 silly decomposeActions finalize [email protected]
10014 silly decomposeActions preinstall [email protected]
10015 silly decomposeActions build [email protected]
10016 silly decomposeActions install [email protected]
10017 silly decomposeActions postinstall [email protected]
10018 silly decomposeActions finalize [email protected]
10019 silly decomposeActions preinstall [email protected]
10020 silly decomposeActions build [email protected]
10021 silly decomposeActions install [email protected]
10022 silly decomposeActions postinstall [email protected]
10023 silly decomposeActions finalize [email protected]
10024 silly decomposeActions preinstall [email protected]
10025 silly decomposeActions build [email protected]
10026 silly decomposeActions install [email protected]
10027 silly decomposeActions postinstall [email protected]
10028 silly decomposeActions finalize [email protected]
10029 silly decomposeActions update-linked [email protected]
10030 silly decomposeActions update-linked [email protected]
10031 silly decomposeActions update-linked [email protected]
10032 silly decomposeActions update-linked [email protected]
10033 silly decomposeActions preinstall [email protected]
10034 silly decomposeActions build [email protected]
10035 silly decomposeActions install [email protected]
10036 silly decomposeActions postinstall [email protected]
10037 silly decomposeActions finalize [email protected]
10038 silly decomposeActions preinstall [email protected]
10039 silly decomposeActions build [email protected]
10040 silly decomposeActions install [email protected]
10041 silly decomposeActions postinstall [email protected]
10042 silly decomposeActions finalize [email protected]
10043 silly decomposeActions preinstall [email protected]
10044 silly decomposeActions build [email protected]
10045 silly decomposeActions install [email protected]
10046 silly decomposeActions postinstall [email protected]
10047 silly decomposeActions finalize [email protected]
10048 silly decomposeActions preinstall [email protected]
10049 silly decomposeActions build [email protected]
10050 silly decomposeActions install [email protected]
10051 silly decomposeActions postinstall [email protected]
10052 silly decomposeActions finalize [email protected]
10053 silly decomposeActions preinstall [email protected]
10054 silly decomposeActions build [email protected]
10055 silly decomposeActions install [email protected]
10056 silly decomposeActions postinstall [email protected]
10057 silly decomposeActions finalize [email protected]
10058 silly decomposeActions preinstall [email protected]
10059 silly decomposeActions build [email protected]
10060 silly decomposeActions install [email protected]
10061 silly decomposeActions postinstall [email protected]
10062 silly decomposeActions finalize [email protected]
10063 silly decomposeActions preinstall [email protected]
10064 silly decomposeActions build [email protected]
10065 silly decomposeActions install [email protected]
10066 silly decomposeActions postinstall [email protected]
10067 silly decomposeActions finalize [email protected]
10068 silly decomposeActions preinstall [email protected]
10069 silly decomposeActions build [email protected]
10070 silly decomposeActions install [email protected]
10071 silly decomposeActions postinstall [email protected]
10072 silly decomposeActions finalize [email protected]
10073 silly decomposeActions preinstall [email protected]
10074 silly decomposeActions build [email protected]
10075 silly decomposeActions install [email protected]
10076 silly decomposeActions postinstall [email protected]
10077 silly decomposeActions finalize [email protected]
10078 silly decomposeActions preinstall [email protected]
10079 silly decomposeActions build [email protected]
10080 silly decomposeActions install [email protected]
10081 silly decomposeActions postinstall [email protected]
10082 silly decomposeActions finalize [email protected]
10083 silly decomposeActions preinstall [email protected]
10084 silly decomposeActions build [email protected]
10085 silly decomposeActions install [email protected]
10086 silly decomposeActions postinstall [email protected]
10087 silly decomposeActions finalize [email protected]
10088 silly decomposeActions preinstall [email protected]
10089 silly decomposeActions build [email protected]
10090 silly decomposeActions install [email protected]
10091 silly decomposeActions postinstall [email protected]
10092 silly decomposeActions finalize [email protected]
10093 silly decomposeActions preinstall [email protected]
10094 silly decomposeActions build [email protected]
10095 silly decomposeActions install [email protected]
10096 silly decomposeActions postinstall [email protected]
10097 silly decomposeActions finalize [email protected]
10098 silly decomposeActions preinstall [email protected]
10099 silly decomposeActions build [email protected]
10100 silly decomposeActions install [email protected]
10101 silly decomposeActions postinstall [email protected]
10102 silly decomposeActions finalize [email protected]
10103 silly decomposeActions preinstall [email protected]
10104 silly decomposeActions build [email protected]
10105 silly decomposeActions install [email protected]
10106 silly decomposeActions postinstall [email protected]
10107 silly decomposeActions finalize [email protected]
10108 silly decomposeActions preinstall [email protected]
10109 silly decomposeActions build [email protected]
10110 silly decomposeActions install [email protected]
10111 silly decomposeActions postinstall [email protected]
10112 silly decomposeActions finalize [email protected]
10113 silly decomposeActions update-linked [email protected]
10114 silly decomposeActions update-linked [email protected]
10115 silly decomposeActions update-linked [email protected]
10116 silly decomposeActions preinstall [email protected]
10117 silly decomposeActions build [email protected]
10118 silly decomposeActions install [email protected]
10119 silly decomposeActions postinstall [email protected]
10120 silly decomposeActions finalize [email protected]
10121 silly decomposeActions preinstall [email protected]
10122 silly decomposeActions build [email protected]
10123 silly decomposeActions install [email protected]
10124 silly decomposeActions postinstall [email protected]
10125 silly decomposeActions finalize [email protected]
10126 silly decomposeActions preinstall [email protected]
10127 silly decomposeActions build [email protected]
10128 silly decomposeActions install [email protected]
10129 silly decomposeActions postinstall [email protected]
10130 silly decomposeActions finalize [email protected]
10131 silly decomposeActions preinstall [email protected]
10132 silly decomposeActions build [email protected]
10133 silly decomposeActions install [email protected]
10134 silly decomposeActions postinstall [email protected]
10135 silly decomposeActions finalize [email protected]
10136 silly decomposeActions update-linked [email protected]
10137 silly decomposeActions update-linked [email protected]
10138 silly decomposeActions preinstall [email protected]
10139 silly decomposeActions build [email protected]
10140 silly decomposeActions install [email protected]
10141 silly decomposeActions postinstall [email protected]
10142 silly decomposeActions finalize [email protected]
10143 silly decomposeActions preinstall [email protected]
10144 silly decomposeActions build [email protected]
10145 silly decomposeActions install [email protected]
10146 silly decomposeActions postinstall [email protected]
10147 silly decomposeActions finalize [email protected]
10148 silly decomposeActions update-linked [email protected]
10149 silly decomposeActions remove [email protected]
10150 silly decomposeActions update-linked [email protected]
10151 silly decomposeActions update-linked [email protected]
10152 silly decomposeActions preinstall [email protected]
10153 silly decomposeActions build [email protected]
10154 silly decomposeActions install [email protected]
10155 silly decomposeActions postinstall [email protected]
10156 silly decomposeActions finalize [email protected]
10157 silly decomposeActions preinstall [email protected]
10158 silly decomposeActions build [email protected]
10159 silly decomposeActions install [email protected]
10160 silly decomposeActions postinstall [email protected]
10161 silly decomposeActions finalize [email protected]
10162 silly decomposeActions preinstall [email protected]
10163 silly decomposeActions build [email protected]
10164 silly decomposeActions install [email protected]
10165 silly decomposeActions postinstall [email protected]
10166 silly decomposeActions finalize [email protected]
10167 silly decomposeActions preinstall [email protected]
10168 silly decomposeActions build [email protected]
10169 silly decomposeActions install [email protected]
10170 silly decomposeActions postinstall [email protected]
10171 silly decomposeActions finalize [email protected]
10172 silly decomposeActions preinstall [email protected]
10173 silly decomposeActions build [email protected]
10174 silly decomposeActions install [email protected]
10175 silly decomposeActions postinstall [email protected]
10176 silly decomposeActions finalize [email protected]
10177 silly decomposeActions update-linked [email protected]
10178 silly decomposeActions update-linked [email protected]
10179 silly decomposeActions update-linked [email protected]
10180 silly decomposeActions update-linked [email protected]
10181 silly decomposeActions update-linked [email protected]
10182 silly decomposeActions update-linked [email protected]
10183 silly decomposeActions update-linked [email protected]
10184 silly decomposeActions update-linked [email protected]
10185 silly decomposeActions update-linked [email protected]
10186 silly decomposeActions update-linked [email protected]
10187 silly decomposeActions preinstall [email protected]
10188 silly decomposeActions build [email protected]
10189 silly decomposeActions install [email protected]
10190 silly decomposeActions postinstall [email protected]
10191 silly decomposeActions finalize [email protected]
10192 silly decomposeActions update-linked [email protected]
10193 silly decomposeActions remove [email protected]
10194 silly decomposeActions preinstall [email protected]
10195 silly decomposeActions build [email protected]
10196 silly decomposeActions install [email protected]
10197 silly decomposeActions postinstall [email protected]
10198 silly decomposeActions finalize [email protected]
10199 silly decomposeActions update-linked [email protected]
10200 silly decomposeActions update-linked [email protected]
10201 silly decomposeActions remove [email protected]
10202 silly decomposeActions update-linked [email protected]
10203 silly decomposeActions update-linked [email protected]
10204 silly decomposeActions preinstall [email protected]
10205 silly decomposeActions build [email protected]
10206 silly decomposeActions install [email protected]
10207 silly decomposeActions postinstall [email protected]
10208 silly decomposeActions finalize [email protected]
10209 silly decomposeActions preinstall [email protected]
10210 silly decomposeActions build [email protected]
10211 silly decomposeActions install [email protected]
10212 silly decomposeActions postinstall [email protected]
10213 silly decomposeActions finalize [email protected]
10214 silly decomposeActions preinstall [email protected]
10215 silly decomposeActions build [email protected]
10216 silly decomposeActions install [email protected]
10217 silly decomposeActions postinstall [email protected]
10218 silly decomposeActions finalize [email protected]
10219 silly decomposeActions update-linked [email protected]
10220 silly decomposeActions update-linked [email protected]
10221 silly decomposeActions update-linked [email protected]
10222 silly decomposeActions remove [email protected]
10223 silly decomposeActions update-linked [email protected]
10224 silly decomposeActions update-linked [email protected]
10225 silly decomposeActions update-linked [email protected]
10226 silly decomposeActions preinstall [email protected]
10227 silly decomposeActions build [email protected]
10228 silly decomposeActions install [email protected]
10229 silly decomposeActions postinstall [email protected]
10230 silly decomposeActions finalize [email protected]
10231 silly decomposeActions update-linked [email protected]
10232 silly decomposeActions preinstall [email protected]
10233 silly decomposeActions build [email protected]
10234 silly decomposeActions install [email protected]
10235 silly decomposeActions postinstall [email protected]
10236 silly decomposeActions finalize [email protected]
10237 silly decomposeActions update-linked [email protected]
10238 silly decomposeActions remove [email protected]
10239 silly decomposeActions fetch [email protected]
10240 silly decomposeActions extract [email protected]
10241 silly decomposeActions test [email protected]
10242 silly decomposeActions preinstall [email protected]
10243 silly decomposeActions build [email protected]
10244 silly decomposeActions install [email protected]
10245 silly decomposeActions postinstall [email protected]
10246 silly decomposeActions finalize [email protected]
10247 silly runTopLevelLifecycles Starting
10248 silly executeActions Starting
10249 silly install executeActions
10250 silly doSerial global-install 0
10251 silly doParallel fetch 1
10252 verbose correctMkdir /root/.npm/_locks correctMkdir not in flight; initializing
10253 verbose lock using /root/.npm/_locks/staging-a072192f34a17023.lock for /usr/lib/node_modules/.staging
10254 silly doParallel extract 1
10255 silly extract [email protected]
10256 verbose unbuild lib/node_modules/.staging/npm-18aca6f9
10257 silly gentlyRm /usr/lib/node_modules/.staging/npm-18aca6f9 is being purged from base /usr
10258 verbose gentlyRm don't care about contents; nuking /usr/lib/node_modules/.staging/npm-18aca6f9
10259 verbose tar unpack /root/.npm/npm/6.11.3/package.tgz
10260 verbose tar unpacking to /usr/lib/node_modules/.staging/npm-18aca6f9
10261 silly gentlyRm /usr/lib/node_modules/.staging/npm-18aca6f9 is being purged
10262 verbose gentlyRm don't care about contents; nuking /usr/lib/node_modules/.staging/npm-18aca6f9
10263 silly gunzTarPerm modes [ '775', '664' ]
10264 silly gunzTarPerm extractEntry node_modules/define-properties/.editorconfig
10265 silly gunzTarPerm modified mode [ 'node_modules/define-properties/.editorconfig', 420, 436 ]
10266 silly gunzTarPerm extractEntry node_modules/err-code/.editorconfig
10267 silly gunzTarPerm modified mode [ 'node_modules/err-code/.editorconfig', 420, 436 ]
10268 silly gunzTarPerm extractEntry node_modules/es-abstract/.editorconfig
10269 silly gunzTarPerm modified mode [ 'node_modules/es-abstract/.editorconfig', 420, 436 ]
10270 silly gunzTarPerm extractEntry node_modules/es-to-primitive/.editorconfig
10271 silly gunzTarPerm modified mode [ 'node_modules/es-to-primitive/.editorconfig', 420, 436 ]
10272 silly gunzTarPerm extractEntry node_modules/extend/.editorconfig
10273 silly gunzTarPerm modified mode [ 'node_modules/extend/.editorconfig', 420, 436 ]
10274 silly gunzTarPerm extractEntry node_modules/function-bind/.editorconfig
10275 silly gunzTarPerm modified mode [ 'node_modules/function-bind/.editorconfig', 420, 436 ]
10276 silly gunzTarPerm extractEntry node_modules/is-callable/.editorconfig
10277 silly gunzTarPerm modified mode [ 'node_modules/is-callable/.editorconfig', 420, 436 ]
10278 silly gunzTarPerm extractEntry node_modules/is-symbol/.editorconfig
10279 silly gunzTarPerm modified mode [ 'node_modules/is-symbol/.editorconfig', 420, 436 ]
10280 silly gunzTarPerm extractEntry node_modules/normalize-package-data/node_modules/resolve/.editorconfig
10281 silly gunzTarPerm modified mode [ 'node_modules/normalize-package-data/node_modules/resolve/.editorconfig',
10281 silly gunzTarPerm 420,
10281 silly gunzTarPerm 436 ]
10282 silly gunzTarPerm extractEntry node_modules/object-keys/.editorconfig
10283 silly gunzTarPerm modified mode [ 'node_modules/object-keys/.editorconfig', 420, 436 ]
10284 silly gunzTarPerm extractEntry node_modules/object.getownpropertydescriptors/.editorconfig
10285 silly gunzTarPerm modified mode [ 'node_modules/object.getownpropertydescriptors/.editorconfig',
10285 silly gunzTarPerm 420,
10285 silly gunzTarPerm 436 ]
10286 silly gunzTarPerm extractEntry node_modules/promise-retry/.editorconfig
10287 silly gunzTarPerm modified mode [ 'node_modules/promise-retry/.editorconfig', 420, 436 ]
10288 silly gunzTarPerm extractEntry node_modules/qs/.editorconfig
10289 silly gunzTarPerm modified mode [ 'node_modules/qs/.editorconfig', 420, 436 ]
10290 silly gunzTarPerm extractEntry node_modules/worker-farm/.editorconfig
10291 silly gunzTarPerm modified mode [ 'node_modules/worker-farm/.editorconfig', 420, 436 ]
10292 silly gunzTarPerm extractEntry node_modules/normalize-package-data/node_modules/resolve/.eslintignore
10293 silly gunzTarPerm modified mode [ 'node_modules/normalize-package-data/node_modules/resolve/.eslintignore',
10293 silly gunzTarPerm 420,
10293 silly gunzTarPerm 436 ]
10294 silly gunzTarPerm extractEntry node_modules/psl/.eslintignore
10295 silly gunzTarPerm modified mode [ 'node_modules/psl/.eslintignore', 420, 436 ]
10296 silly gunzTarPerm extractEntry node_modules/qs/.eslintignore
10297 silly gunzTarPerm modified mode [ 'node_modules/qs/.eslintignore', 420, 436 ]
10298 silly gunzTarPerm extractEntry node_modules/fs-vacuum/.eslintrc
10299 silly gunzTarPerm modified mode [ 'node_modules/fs-vacuum/.eslintrc', 420, 436 ]
10300 silly gunzTarPerm extractEntry node_modules/normalize-package-data/node_modules/resolve/test/resolver/symlinked/_/symlink_target/.gitkeep
10301 silly gunzTarPerm modified mode [ 'node_modules/normalize-package-data/node_modules/resolve/test/resolver/symlinked/_/symlink_target/.gitkeep',
10301 silly gunzTarPerm 420,
10301 silly gunzTarPerm 436 ]
10302 silly gunzTarPerm extractEntry node_modules/extsprintf/.gitmodules
10303 silly gunzTarPerm modified mode [ 'node_modules/extsprintf/.gitmodules', 420, 436 ]
10304 silly gunzTarPerm extractEntry node_modules/ip/.jscsrc
10305 silly gunzTarPerm modified mode [ 'node_modules/ip/.jscsrc', 420, 436 ]
10306 silly gunzTarPerm extractEntry .mailmap
10307 silly gunzTarPerm modified mode [ '.mailmap', 420, 436 ]
10308 silly gunzTarPerm extractEntry .npmignore
10309 silly gunzTarPerm modified mode [ '.npmignore', 420, 436 ]
10310 silly gunzTarPerm extractEntry node_modules/balanced-match/.npmignore
10311 silly gunzTarPerm modified mode [ 'node_modules/balanced-match/.npmignore', 420, 436 ]
10312 silly gunzTarPerm extractEntry node_modules/clone/.npmignore
10313 silly gunzTarPerm modified mode [ 'node_modules/clone/.npmignore', 420, 436 ]
10314 silly gunzTarPerm extractEntry node_modules/color-name/.npmignore
10315 silly gunzTarPerm modified mode [ 'node_modules/color-name/.npmignore', 420, 436 ]
10316 silly gunzTarPerm extractEntry node_modules/copy-concurrently/node_modules/iferr/.npmignore
10317 silly gunzTarPerm modified mode [ 'node_modules/copy-concurrently/node_modules/iferr/.npmignore',
10317 silly gunzTarPerm 420,
10317 silly gunzTarPerm 436 ]
10318 silly gunzTarPerm extractEntry node_modules/cyclist/.npmignore
10319 silly gunzTarPerm modified mode [ 'node_modules/cyclist/.npmignore', 420, 436 ]
10320 silly gunzTarPerm extractEntry node_modules/debug/.npmignore
10321 silly gunzTarPerm modified mode [ 'node_modules/debug/.npmignore', 420, 436 ]
10322 silly gunzTarPerm extractEntry node_modules/defaults/.npmignore
10323 silly gunzTarPerm modified mode [ 'node_modules/defaults/.npmignore', 420, 436 ]
10324 silly gunzTarPerm extractEntry node_modules/delayed-stream/.npmignore
10325 silly gunzTarPerm modified mode [ 'node_modules/delayed-stream/.npmignore', 420, 436 ]
10326 silly gunzTarPerm extractEntry node_modules/delegates/.npmignore
10327 silly gunzTarPerm modified mode [ 'node_modules/delegates/.npmignore', 420, 436 ]
10328 silly gunzTarPerm extractEntry node_modules/encoding/.npmignore
10329 silly gunzTarPerm modified mode [ 'node_modules/encoding/.npmignore', 420, 436 ]
10330 silly gunzTarPerm extractEntry node_modules/err-code/.npmignore
10331 silly gunzTarPerm modified mode [ 'node_modules/err-code/.npmignore', 420, 436 ]
10332 silly gunzTarPerm extractEntry node_modules/extsprintf/.npmignore
10333 silly gunzTarPerm modified mode [ 'node_modules/extsprintf/.npmignore', 420, 436 ]
10334 silly gunzTarPerm extractEntry node_modules/fast-json-stable-stringify/.npmignore
10335 silly gunzTarPerm modified mode [ 'node_modules/fast-json-stable-stringify/.npmignore',
10335 silly gunzTarPerm 420,
10335 silly gunzTarPerm 436 ]
10336 silly gunzTarPerm extractEntry node_modules/fs-vacuum/.npmignore
10337 silly gunzTarPerm modified mode [ 'node_modules/fs-vacuum/.npmignore', 420, 436 ]
10338 silly gunzTarPerm extractEntry node_modules/fs-write-stream-atomic/.npmignore
10339 silly gunzTarPerm modified mode [ 'node_modules/fs-write-stream-atomic/.npmignore', 420, 436 ]
10340 silly gunzTarPerm extractEntry node_modules/fs-write-stream-atomic/node_modules/iferr/.npmignore
10341 silly gunzTarPerm modified mode [ 'node_modules/fs-write-stream-atomic/node_modules/iferr/.npmignore',
10341 silly gunzTarPerm 420,
10341 silly gunzTarPerm 436 ]
10342 silly gunzTarPerm extractEntry node_modules/function-bind/.npmignore
10343 silly gunzTarPerm modified mode [ 'node_modules/function-bind/.npmignore', 420, 436 ]
10344 silly gunzTarPerm extractEntry node_modules/gentle-fs/node_modules/iferr/.npmignore
10345 silly gunzTarPerm modified mode [ 'node_modules/gentle-fs/node_modules/iferr/.npmignore',
10345 silly gunzTarPerm 420,
10345 silly gunzTarPerm 436 ]
10346 silly gunzTarPerm extractEntry node_modules/getpass/.npmignore
10347 silly gunzTarPerm modified mode [ 'node_modules/getpass/.npmignore', 420, 436 ]
10348 silly gunzTarPerm extractEntry node_modules/has-symbols/.npmignore
10349 silly gunzTarPerm modified mode [ 'node_modules/has-symbols/.npmignore', 420, 436 ]
10350 silly gunzTarPerm extractEntry node_modules/http-signature/.npmignore
10351 silly gunzTarPerm modified mode [ 'node_modules/http-signature/.npmignore', 420, 436 ]
10352 silly gunzTarPerm extractEntry node_modules/ip/.npmignore
10353 silly gunzTarPerm modified mode [ 'node_modules/ip/.npmignore', 420, 436 ]
10354 silly gunzTarPerm extractEntry node_modules/is-date-object/.npmignore
10355 silly gunzTarPerm modified mode [ 'node_modules/is-date-object/.npmignore', 420, 436 ]
10356 silly gunzTarPerm extractEntry node_modules/is-regex/.npmignore
10357 silly gunzTarPerm modified mode [ 'node_modules/is-regex/.npmignore', 420, 436 ]
10358 silly gunzTarPerm extractEntry node_modules/isarray/.npmignore
10359 silly gunzTarPerm modified mode [ 'node_modules/isarray/.npmignore', 420, 436 ]
10360 silly gunzTarPerm extractEntry node_modules/isexe/.npmignore
10361 silly gunzTarPerm modified mode [ 'node_modules/isexe/.npmignore', 420, 436 ]
10362 silly gunzTarPerm extractEntry node_modules/isstream/.npmignore
10363 silly gunzTarPerm modified mode [ 'node_modules/isstream/.npmignore', 420, 436 ]
10364 silly gunzTarPerm extractEntry node_modules/jsbn/.npmignore
10365 silly gunzTarPerm modified mode [ 'node_modules/jsbn/.npmignore', 420, 436 ]
10366 silly gunzTarPerm extractEntry node_modules/json-schema-traverse/.npmignore
10367 silly gunzTarPerm modified mode [ 'node_modules/json-schema-traverse/.npmignore', 420, 436 ]
10368 silly gunzTarPerm extractEntry node_modules/json-stringify-safe/.npmignore
10369 silly gunzTarPerm modified mode [ 'node_modules/json-stringify-safe/.npmignore', 420, 436 ]
10370 silly gunzTarPerm extractEntry node_modules/jsonparse/.npmignore
10371 silly gunzTarPerm modified mode [ 'node_modules/jsonparse/.npmignore', 420, 436 ]
10372 silly gunzTarPerm extractEntry node_modules/lazy-property/.npmignore
10373 silly gunzTarPerm modified mode [ 'node_modules/lazy-property/.npmignore', 420, 436 ]
10374 silly gunzTarPerm extractEntry node_modules/meant/.npmignore
10375 silly gunzTarPerm modified mode [ 'node_modules/meant/.npmignore', 420, 436 ]
10376 silly gunzTarPerm extractEntry node_modules/node-gyp/node_modules/nopt/.npmignore
10377 silly gunzTarPerm modified mode [ 'node_modules/node-gyp/node_modules/nopt/.npmignore',
10377 silly gunzTarPerm 420,
10377 silly gunzTarPerm 436 ]
10378 silly gunzTarPerm extractEntry node_modules/nopt/.npmignore
10379 silly gunzTarPerm modified mode [ 'node_modules/nopt/.npmignore', 420, 436 ]
10380 silly gunzTarPerm extractEntry node_modules/object.getownpropertydescriptors/.npmignore
10381 silly gunzTarPerm modified mode [ 'node_modules/object.getownpropertydescriptors/.npmignore',
10381 silly gunzTarPerm 420,
10381 silly gunzTarPerm 436 ]
10382 silly gunzTarPerm extractEntry node_modules/parallel-transform/.npmignore
10383 silly gunzTarPerm modified mode [ 'node_modules/parallel-transform/.npmignore', 420, 436 ]
10384 silly gunzTarPerm extractEntry node_modules/performance-now/.npmignore
10385 silly gunzTarPerm modified mode [ 'node_modules/performance-now/.npmignore', 420, 436 ]
10386 silly gunzTarPerm extractEntry node_modules/promise-retry/.npmignore
10387 silly gunzTarPerm modified mode [ 'node_modules/promise-retry/.npmignore', 420, 436 ]
10388 silly gunzTarPerm extractEntry node_modules/promise-retry/node_modules/retry/.npmignore
10389 silly gunzTarPerm modified mode [ 'node_modules/promise-retry/node_modules/retry/.npmignore',
10389 silly gunzTarPerm 420,
10389 silly gunzTarPerm 436 ]
10390 silly gunzTarPerm extractEntry node_modules/promzard/.npmignore
10391 silly gunzTarPerm modified mode [ 'node_modules/promzard/.npmignore', 420, 436 ]
10392 silly gunzTarPerm extractEntry node_modules/prr/.npmignore
10393 silly gunzTarPerm modified mode [ 'node_modules/prr/.npmignore', 420, 436 ]
10394 silly gunzTarPerm extractEntry node_modules/read-installed/.npmignore
10395 silly gunzTarPerm modified mode [ 'node_modules/read-installed/.npmignore', 420, 436 ]
10396 silly gunzTarPerm extractEntry node_modules/require-directory/.npmignore
10397 silly gunzTarPerm modified mode [ 'node_modules/require-directory/.npmignore', 420, 436 ]
10398 silly gunzTarPerm extractEntry node_modules/require-main-filename/.npmignore
10399 silly gunzTarPerm modified mode [ 'node_modules/require-main-filename/.npmignore', 420, 436 ]
10400 silly gunzTarPerm extractEntry node_modules/retry/.npmignore
10401 silly gunzTarPerm modified mode [ 'node_modules/retry/.npmignore', 420, 436 ]
10402 silly gunzTarPerm extractEntry node_modules/sorted-union-stream/.npmignore
10403 silly gunzTarPerm modified mode [ 'node_modules/sorted-union-stream/.npmignore', 420, 436 ]
10404 silly gunzTarPerm extractEntry node_modules/sorted-union-stream/node_modules/readable-stream/.npmignore
10405 silly gunzTarPerm modified mode [ 'node_modules/sorted-union-stream/node_modules/readable-stream/.npmignore',
10405 silly gunzTarPerm 420,
10405 silly gunzTarPerm 436 ]
10406 silly gunzTarPerm extractEntry node_modules/sorted-union-stream/node_modules/string_decoder/.npmignore
10407 silly gunzTarPerm modified mode [ 'node_modules/sorted-union-stream/node_modules/string_decoder/.npmignore',
10407 silly gunzTarPerm 420,
10407 silly gunzTarPerm 436 ]
10408 silly gunzTarPerm extractEntry node_modules/sshpk/.npmignore
10409 silly gunzTarPerm modified mode [ 'node_modules/sshpk/.npmignore', 420, 436 ]
10410 silly gunzTarPerm extractEntry node_modules/stream-each/.npmignore
10411 silly gunzTarPerm modified mode [ 'node_modules/stream-each/.npmignore', 420, 436 ]
10412 silly gunzTarPerm extractEntry node_modules/stream-iterate/.npmignore
10413 silly gunzTarPerm modified mode [ 'node_modules/stream-iterate/.npmignore', 420, 436 ]
10414 silly gunzTarPerm extractEntry node_modules/stream-shift/.npmignore
10415 silly gunzTarPerm modified mode [ 'node_modules/stream-shift/.npmignore', 420, 436 ]
10416 silly gunzTarPerm extractEntry node_modules/through2/.npmignore
10417 silly gunzTarPerm modified mode [ 'node_modules/through2/.npmignore', 420, 436 ]
10418 silly gunzTarPerm extractEntry node_modules/tweetnacl/.npmignore
10419 silly gunzTarPerm modified mode [ 'node_modules/tweetnacl/.npmignore', 420, 436 ]
10420 silly gunzTarPerm extractEntry node_modules/umask/.npmignore
10421 silly gunzTarPerm modified mode [ 'node_modules/umask/.npmignore', 420, 436 ]
10422 silly gunzTarPerm extractEntry node_modules/unique-slug/.npmignore
10423 silly gunzTarPerm modified mode [ 'node_modules/unique-slug/.npmignore', 420, 436 ]
10424 silly gunzTarPerm extractEntry node_modules/util-promisify/.npmignore
10425 silly gunzTarPerm modified mode [ 'node_modules/util-promisify/.npmignore', 420, 436 ]
10426 silly gunzTarPerm extractEntry node_modules/validate-npm-package-name/.npmignore
10427 silly gunzTarPerm modified mode [ 'node_modules/validate-npm-package-name/.npmignore', 420, 436 ]
10428 silly gunzTarPerm extractEntry node_modules/verror/.npmignore
10429 silly gunzTarPerm modified mode [ 'node_modules/verror/.npmignore', 420, 436 ]
10430 silly gunzTarPerm extractEntry node_modules/wcwidth/.npmignore
10431 silly gunzTarPerm modified mode [ 'node_modules/wcwidth/.npmignore', 420, 436 ]
10432 silly gunzTarPerm extractEntry node_modules/xtend/.npmignore
10433 silly gunzTarPerm modified mode [ 'node_modules/xtend/.npmignore', 420, 436 ]
10434 silly gunzTarPerm extractEntry node_modules/is-symbol/.nvmrc
10435 silly gunzTarPerm modified mode [ 'node_modules/is-symbol/.nvmrc', 420, 436 ]
10436 silly gunzTarPerm extractEntry node_modules/es-abstract/.nycrc
10437 silly gunzTarPerm modified mode [ 'node_modules/es-abstract/.nycrc', 420, 436 ]
10438 silly gunzTarPerm extractEntry node_modules/performance-now/.tm_properties
10439 silly gunzTarPerm modified mode [ 'node_modules/performance-now/.tm_properties', 420, 436 ]
10440 silly gunzTarPerm extractEntry node_modules/json-schema/draft-03/examples/address
10441 silly gunzTarPerm modified mode [ 'node_modules/json-schema/draft-03/examples/address',
10441 silly gunzTarPerm 420,
10441 silly gunzTarPerm 436 ]
10442 silly gunzTarPerm extractEntry AUTHORS
10443 silly gunzTarPerm modified mode [ 'AUTHORS', 420, 436 ]
10444 silly gunzTarPerm extractEntry node_modules/assert-plus/AUTHORS
10445 silly gunzTarPerm modified mode [ 'node_modules/assert-plus/AUTHORS', 420, 436 ]
10446 silly gunzTarPerm extractEntry node_modules/node-gyp/gyp/AUTHORS
10447 silly gunzTarPerm modified mode [ 'node_modules/node-gyp/gyp/AUTHORS', 420, 436 ]
10448 silly gunzTarPerm extractEntry node_modules/normalize-package-data/AUTHORS
10449 silly gunzTarPerm modified mode [ 'node_modules/normalize-package-data/AUTHORS', 420, 436 ]
10450 silly gunzTarPerm extractEntry node_modules/spdx-expression-parse/AUTHORS
10451 silly gunzTarPerm modified mode [ 'node_modules/spdx-expression-parse/AUTHORS', 420, 436 ]
10452 silly gunzTarPerm extractEntry node_modules/uuid/AUTHORS
10453 silly gunzTarPerm modified mode [ 'node_modules/uuid/AUTHORS', 420, 436 ]
10454 silly gunzTarPerm extractEntry node_modules/json-schema/draft-03/examples/calendar
10455 silly gunzTarPerm modified mode [ 'node_modules/json-schema/draft-03/examples/calendar',
10455 silly gunzTarPerm 420,
10455 silly gunzTarPerm 436 ]
10456 silly gunzTarPerm extractEntry node_modules/json-schema/draft-03/examples/card
10457 silly gunzTarPerm modified mode [ 'node_modules/json-schema/draft-03/examples/card', 420, 436 ]
10458 silly gunzTarPerm extractEntry node_modules/umask/ChangeLog
10459 silly gunzTarPerm modified mode [ 'node_modules/umask/ChangeLog', 420, 436 ]
10460 silly gunzTarPerm extractEntry configure
10461 silly gunzTarPerm modified mode [ 'configure', 493, 509 ]
10462 silly gunzTarPerm extractEntry scripts/dep-update
10463 silly gunzTarPerm modified mode [ 'scripts/dep-update', 493, 509 ]
10464 silly gunzTarPerm extractEntry node_modules/node-gyp/gyp/DEPS
10465 silly gunzTarPerm modified mode [ 'node_modules/node-gyp/gyp/DEPS', 420, 436 ]
10466 silly gunzTarPerm extractEntry scripts/dev-dep-update
10467 silly gunzTarPerm modified mode [ 'scripts/dev-dep-update', 493, 509 ]
10468 silly gunzTarPerm extractEntry scripts/gen-changelog
10469 silly gunzTarPerm modified mode [ 'scripts/gen-changelog', 493, 509 ]
10470 silly gunzTarPerm extractEntry node_modules/json-schema/draft-03/examples/geo
10471 silly gunzTarPerm modified mode [ 'node_modules/json-schema/draft-03/examples/geo', 420, 436 ]
10472 silly gunzTarPerm extractEntry node_modules/node-gyp/gyp/gyp
10473 silly gunzTarPerm modified mode [ 'node_modules/node-gyp/gyp/gyp', 493, 509 ]
10474 silly gunzTarPerm extractEntry node_modules/json-schema/draft-00/hyper-schema
10475 silly gunzTarPerm modified mode [ 'node_modules/json-schema/draft-00/hyper-schema', 420, 436 ]
10476 silly gunzTarPerm extractEntry node_modules/json-schema/draft-01/hyper-schema
10477 silly gunzTarPerm modified mode [ 'node_modules/json-schema/draft-01/hyper-schema', 420, 436 ]
10478 silly gunzTarPerm extractEntry node_modules/json-schema/draft-02/hyper-schema
10479 silly gunzTarPerm modified mode [ 'node_modules/json-schema/draft-02/hyper-schema', 420, 436 ]
10480 silly gunzTarPerm extractEntry node_modules/json-schema/draft-03/hyper-schema
10481 silly gunzTarPerm modified mode [ 'node_modules/json-schema/draft-03/hyper-schema', 420, 436 ]
10482 silly gunzTarPerm extractEntry node_modules/json-schema/draft-04/hyper-schema
10483 silly gunzTarPerm modified mode [ 'node_modules/json-schema/draft-04/hyper-schema', 420, 436 ]
10484 silly gunzTarPerm extractEntry node_modules/ajv/scripts/info
10485 silly gunzTarPerm modified mode [ 'node_modules/ajv/scripts/info', 493, 509 ]
10486 silly gunzTarPerm extractEntry node_modules/json-schema/draft-03/examples/interfaces
10487 silly gunzTarPerm modified mode [ 'node_modules/json-schema/draft-03/examples/interfaces',
10487 silly gunzTarPerm 420,
10487 silly gunzTarPerm 436 ]
10488 silly gunzTarPerm extractEntry node_modules/json-schema/draft-00/json-ref
10489 silly gunzTarPerm modified mode [ 'node_modules/json-schema/draft-00/json-ref', 420, 436 ]
10490 silly gunzTarPerm extractEntry node_modules/json-schema/draft-01/json-ref
10491 silly gunzTarPerm modified mode [ 'node_modules/json-schema/draft-01/json-ref', 420, 436 ]
10492 silly gunzTarPerm extractEntry node_modules/json-schema/draft-02/json-ref
10493 silly gunzTarPerm modified mode [ 'node_modules/json-schema/draft-02/json-ref', 420, 436 ]
10494 silly gunzTarPerm extractEntry node_modules/json-schema/draft-03/json-ref
10495 silly gunzTarPerm modified mode [ 'node_modules/json-schema/draft-03/json-ref', 420, 436 ]
10496 silly gunzTarPerm extractEntry node_modules/config-chain/LICENCE
10497 silly gunzTarPerm modified mode [ 'node_modules/config-chain/LICENCE', 420, 436 ]
10498 silly gunzTarPerm extractEntry node_modules/xtend/LICENCE
10499 silly gunzTarPerm modified mode [ 'node_modules/xtend/LICENCE', 420, 436 ]
10500 silly gunzTarPerm extractEntry LICENSE
10501 silly gunzTarPerm modified mode [ 'LICENSE', 420, 436 ]
10502 silly gunzTarPerm extractEntry node_modules/abbrev/LICENSE
10503 silly gunzTarPerm modified mode [ 'node_modules/abbrev/LICENSE', 420, 436 ]
10504 silly gunzTarPerm extractEntry node_modules/ajv/LICENSE
10505 silly gunzTarPerm modified mode [ 'node_modules/ajv/LICENSE', 420, 436 ]
10506 silly gunzTarPerm extractEntry node_modules/ansi-align/LICENSE
10507 silly gunzTarPerm modified mode [ 'node_modules/ansi-align/LICENSE', 420, 436 ]
10508 silly gunzTarPerm extractEntry node_modules/ansi-regex/license
10509 silly gunzTarPerm modified mode [ 'node_modules/ansi-regex/license', 420, 436 ]
10510 silly gunzTarPerm extractEntry node_modules/ansi-styles/license
10511 silly gunzTarPerm modified mode [ 'node_modules/ansi-styles/license', 420, 436 ]
10512 silly gunzTarPerm extractEntry node_modules/ansicolors/LICENSE
10513 silly gunzTarPerm modified mode [ 'node_modules/ansicolors/LICENSE', 420, 436 ]
10514 silly gunzTarPerm extractEntry node_modules/ansistyles/LICENSE
10515 silly gunzTarPerm modified mode [ 'node_modules/ansistyles/LICENSE', 420, 436 ]
10516 silly gunzTarPerm extractEntry node_modules/aproba/LICENSE
10517 silly gunzTarPerm modified mode [ 'node_modules/aproba/LICENSE', 420, 436 ]
10518 silly gunzTarPerm extractEntry node_modules/archy/LICENSE
10519 silly gunzTarPerm modified mode [ 'node_modules/archy/LICENSE', 420, 436 ]
10520 silly gunzTarPerm extractEntry node_modules/are-we-there-yet/LICENSE
10521 silly gunzTarPerm modified mode [ 'node_modules/are-we-there-yet/LICENSE', 420, 436 ]
10522 silly gunzTarPerm extractEntry node_modules/are-we-there-yet/node_modules/readable-stream/LICENSE
10523 silly gunzTarPerm modified mode [ 'node_modules/are-we-there-yet/node_modules/readable-stream/LICENSE',
10523 silly gunzTarPerm 420,
10523 silly gunzTarPerm 436 ]
10524 silly gunzTarPerm extractEntry node_modules/are-we-there-yet/node_modules/string_decoder/LICENSE
10525 silly gunzTarPerm modified mode [ 'node_modules/are-we-there-yet/node_modules/string_decoder/LICENSE',
10525 silly gunzTarPerm 420,
10525 silly gunzTarPerm 436 ]
10526 silly gunzTarPerm extractEntry node_modules/asn1/LICENSE
10527 silly gunzTarPerm modified mode [ 'node_modules/asn1/LICENSE', 420, 436 ]
10528 silly gunzTarPerm extractEntry node_modules/asynckit/LICENSE
10529 silly gunzTarPerm modified mode [ 'node_modules/asynckit/LICENSE', 420, 436 ]
10530 silly gunzTarPerm extractEntry node_modules/aws-sign2/LICENSE
10531 silly gunzTarPerm modified mode [ 'node_modules/aws-sign2/LICENSE', 420, 436 ]
10532 silly gunzTarPerm extractEntry node_modules/aws4/LICENSE
10533 silly gunzTarPerm modified mode [ 'node_modules/aws4/LICENSE', 420, 436 ]
10534 silly gunzTarPerm extractEntry node_modules/bcrypt-pbkdf/LICENSE
10535 silly gunzTarPerm modified mode [ 'node_modules/bcrypt-pbkdf/LICENSE', 420, 436 ]
10536 silly gunzTarPerm extractEntry node_modules/bin-links/LICENSE
10537 silly gunzTarPerm modified mode [ 'node_modules/bin-links/LICENSE', 420, 436 ]
10538 silly gunzTarPerm extractEntry node_modules/bluebird/LICENSE
10539 silly gunzTarPerm modified mode [ 'node_modules/bluebird/LICENSE', 420, 436 ]
10540 silly gunzTarPerm extractEntry node_modules/boxen/license
10541 silly gunzTarPerm modified mode [ 'node_modules/boxen/license', 420, 436 ]
10542 silly gunzTarPerm extractEntry node_modules/brace-expansion/LICENSE
10543 silly gunzTarPerm modified mode [ 'node_modules/brace-expansion/LICENSE', 420, 436 ]
10544 silly gunzTarPerm extractEntry node_modules/builtins/License
10545 silly gunzTarPerm modified mode [ 'node_modules/builtins/License', 420, 436 ]
10546 silly gunzTarPerm extractEntry node_modules/byline/LICENSE
10547 silly gunzTarPerm modified mode [ 'node_modules/byline/LICENSE', 420, 436 ]
10548 silly gunzTarPerm extractEntry node_modules/byte-size/LICENSE
10549 silly gunzTarPerm modified mode [ 'node_modules/byte-size/LICENSE', 420, 436 ]
10550 silly gunzTarPerm extractEntry node_modules/call-limit/LICENSE
10551 silly gunzTarPerm modified mode [ 'node_modules/call-limit/LICENSE', 420, 436 ]
10552 silly gunzTarPerm extractEntry node_modules/camelcase/license
10553 silly gunzTarPerm modified mode [ 'node_modules/camelcase/license', 420, 436 ]
10554 silly gunzTarPerm extractEntry node_modules/caseless/LICENSE
10555 silly gunzTarPerm modified mode [ 'node_modules/caseless/LICENSE', 420, 436 ]
10556 silly gunzTarPerm extractEntry node_modules/chalk/license
10557 silly gunzTarPerm modified mode [ 'node_modules/chalk/license', 420, 436 ]
10558 silly gunzTarPerm extractEntry node_modules/chownr/LICENSE
10559 silly gunzTarPerm modified mode [ 'node_modules/chownr/LICENSE', 420, 436 ]
10560 silly gunzTarPerm extractEntry node_modules/ci-info/LICENSE
10561 silly gunzTarPerm modified mode [ 'node_modules/ci-info/LICENSE', 420, 436 ]
10562 silly gunzTarPerm extractEntry node_modules/cidr-regex/LICENSE
10563 silly gunzTarPerm modified mode [ 'node_modules/cidr-regex/LICENSE', 420, 436 ]
10564 silly gunzTarPerm extractEntry node_modules/cli-boxes/license
10565 silly gunzTarPerm modified mode [ 'node_modules/cli-boxes/license', 420, 436 ]
10566 silly gunzTarPerm extractEntry node_modules/cli-columns/LICENSE
10567 silly gunzTarPerm modified mode [ 'node_modules/cli-columns/LICENSE', 420, 436 ]
10568 silly gunzTarPerm extractEntry node_modules/cli-table3/LICENSE
10569 silly gunzTarPerm modified mode [ 'node_modules/cli-table3/LICENSE', 420, 436 ]
10570 silly gunzTarPerm extractEntry node_modules/cliui/node_modules/ansi-regex/license
10571 silly gunzTarPerm modified mode [ 'node_modules/cliui/node_modules/ansi-regex/license',
10571 silly gunzTarPerm 420,
10571 silly gunzTarPerm 436 ]
10572 silly gunzTarPerm extractEntry node_modules/cliui/node_modules/strip-ansi/license
10573 silly gunzTarPerm modified mode [ 'node_modules/cliui/node_modules/strip-ansi/license',
10573 silly gunzTarPerm 420,
10573 silly gunzTarPerm 436 ]
10574 silly gunzTarPerm extractEntry node_modules/clone/LICENSE
10575 silly gunzTarPerm modified mode [ 'node_modules/clone/LICENSE', 420, 436 ]
10576 silly gunzTarPerm extractEntry node_modules/cmd-shim/LICENSE
10577 silly gunzTarPerm modified mode [ 'node_modules/cmd-shim/LICENSE', 420, 436 ]
10578 silly gunzTarPerm extractEntry node_modules/co/LICENSE
10579 silly gunzTarPerm modified mode [ 'node_modules/co/LICENSE', 420, 436 ]
10580 silly gunzTarPerm extractEntry node_modules/code-point-at/license
10581 silly gunzTarPerm modified mode [ 'node_modules/code-point-at/license', 420, 436 ]
10582 silly gunzTarPerm extractEntry node_modules/color-convert/LICENSE
10583 silly gunzTarPerm modified mode [ 'node_modules/color-convert/LICENSE', 420, 436 ]
10584 silly gunzTarPerm extractEntry node_modules/color-name/LICENSE
10585 silly gunzTarPerm modified mode [ 'node_modules/color-name/LICENSE', 420, 436 ]
10586 silly gunzTarPerm extractEntry node_modules/colors/LICENSE
10587 silly gunzTarPerm modified mode [ 'node_modules/colors/LICENSE', 420, 436 ]
10588 silly gunzTarPerm extractEntry node_modules/columnify/LICENSE
10589 silly gunzTarPerm modified mode [ 'node_modules/columnify/LICENSE', 420, 436 ]
10590 silly gunzTarPerm extractEntry node_modules/combined-stream/License
10591 silly gunzTarPerm modified mode [ 'node_modules/combined-stream/License', 420, 436 ]
10592 silly gunzTarPerm extractEntry node_modules/concat-map/LICENSE
10593 silly gunzTarPerm modified mode [ 'node_modules/concat-map/LICENSE', 420, 436 ]
10594 silly gunzTarPerm extractEntry node_modules/concat-stream/LICENSE
10595 silly gunzTarPerm modified mode [ 'node_modules/concat-stream/LICENSE', 420, 436 ]
10596 silly gunzTarPerm extractEntry node_modules/concat-stream/node_modules/readable-stream/LICENSE
10597 silly gunzTarPerm modified mode [ 'node_modules/concat-stream/node_modules/readable-stream/LICENSE',
10597 silly gunzTarPerm 420,
10597 silly gunzTarPerm 436 ]
10598 silly gunzTarPerm extractEntry node_modules/concat-stream/node_modules/string_decoder/LICENSE
10599 silly gunzTarPerm modified mode [ 'node_modules/concat-stream/node_modules/string_decoder/LICENSE',
10599 silly gunzTarPerm 420,
10599 silly gunzTarPerm 436 ]
10600 silly gunzTarPerm extractEntry node_modules/configstore/license
10601 silly gunzTarPerm modified mode [ 'node_modules/configstore/license', 420, 436 ]
10602 silly gunzTarPerm extractEntry node_modules/console-control-strings/LICENSE
10603 silly gunzTarPerm modified mode [ 'node_modules/console-control-strings/LICENSE', 420, 436 ]
10604 silly gunzTarPerm extractEntry node_modules/copy-concurrently/LICENSE
10605 silly gunzTarPerm modified mode [ 'node_modules/copy-concurrently/LICENSE', 420, 436 ]
10606 silly gunzTarPerm extractEntry node_modules/copy-concurrently/node_modules/aproba/LICENSE
10607 silly gunzTarPerm modified mode [ 'node_modules/copy-concurrently/node_modules/aproba/LICENSE',
10607 silly gunzTarPerm 420,
10607 silly gunzTarPerm 436 ]
10608 silly gunzTarPerm extractEntry node_modules/copy-concurrently/node_modules/iferr/LICENSE
10609 silly gunzTarPerm modified mode [ 'node_modules/copy-concurrently/node_modules/iferr/LICENSE',
10609 silly gunzTarPerm 420,
10609 silly gunzTarPerm 436 ]
10610 silly gunzTarPerm extractEntry node_modules/core-util-is/LICENSE
10611 silly gunzTarPerm modified mode [ 'node_modules/core-util-is/LICENSE', 420, 436 ]
10612 silly gunzTarPerm extractEntry node_modules/create-error-class/license
10613 silly gunzTarPerm modified mode [ 'node_modules/create-error-class/license', 420, 436 ]
10614 silly gunzTarPerm extractEntry node_modules/cross-spawn/LICENSE
10615 silly gunzTarPerm modified mode [ 'node_modules/cross-spawn/LICENSE', 420, 436 ]
10616 silly gunzTarPerm extractEntry node_modules/cross-spawn/node_modules/lru-cache/LICENSE
10617 silly gunzTarPerm modified mode [ 'node_modules/cross-spawn/node_modules/lru-cache/LICENSE',
10617 silly gunzTarPerm 420,
10617 silly gunzTarPerm 436 ]
10618 silly gunzTarPerm extractEntry node_modules/cross-spawn/node_modules/yallist/LICENSE
10619 silly gunzTarPerm modified mode [ 'node_modules/cross-spawn/node_modules/yallist/LICENSE',
10619 silly gunzTarPerm 420,
10619 silly gunzTarPerm 436 ]
10620 silly gunzTarPerm extractEntry node_modules/crypto-random-string/license
10621 silly gunzTarPerm modified mode [ 'node_modules/crypto-random-string/license', 420, 436 ]
10622 silly gunzTarPerm extractEntry node_modules/debug/LICENSE
10623 silly gunzTarPerm modified mode [ 'node_modules/debug/LICENSE', 420, 436 ]
10624 silly gunzTarPerm extractEntry node_modules/debuglog/LICENSE
10625 silly gunzTarPerm modified mode [ 'node_modules/debuglog/LICENSE', 420, 436 ]
10626 silly gunzTarPerm extractEntry node_modules/decamelize/license
10627 silly gunzTarPerm modified mode [ 'node_modules/decamelize/license', 420, 436 ]
10628 silly gunzTarPerm extractEntry node_modules/decode-uri-component/license
10629 silly gunzTarPerm modified mode [ 'node_modules/decode-uri-component/license', 420, 436 ]
10630 silly gunzTarPerm extractEntry node_modules/deep-extend/LICENSE
10631 silly gunzTarPerm modified mode [ 'node_modules/deep-extend/LICENSE', 420, 436 ]
10632 silly gunzTarPerm extractEntry node_modules/defaults/LICENSE
10633 silly gunzTarPerm modified mode [ 'node_modules/defaults/LICENSE', 420, 436 ]
10634 silly gunzTarPerm extractEntry node_modules/define-properties/LICENSE
10635 silly gunzTarPerm modified mode [ 'node_modules/define-properties/LICENSE', 420, 436 ]
10636 silly gunzTarPerm extractEntry node_modules/delayed-stream/License
10637 silly gunzTarPerm modified mode [ 'node_modules/delayed-stream/License', 420, 436 ]
10638 silly gunzTarPerm extractEntry node_modules/delegates/License
10639 silly gunzTarPerm modified mode [ 'node_modules/delegates/License', 420, 436 ]
10640 silly gunzTarPerm extractEntry node_modules/detect-indent/license
10641 silly gunzTarPerm modified mode [ 'node_modules/detect-indent/license', 420, 436 ]
10642 silly gunzTarPerm extractEntry node_modules/detect-newline/license
10643 silly gunzTarPerm modified mode [ 'node_modules/detect-newline/license', 420, 436 ]
10644 silly gunzTarPerm extractEntry node_modules/dezalgo/LICENSE
10645 silly gunzTarPerm modified mode [ 'node_modules/dezalgo/LICENSE', 420, 436 ]
10646 silly gunzTarPerm extractEntry node_modules/dot-prop/license
10647 silly gunzTarPerm modified mode [ 'node_modules/dot-prop/license', 420, 436 ]
10648 silly gunzTarPerm extractEntry node_modules/dotenv/LICENSE
10649 silly gunzTarPerm modified mode [ 'node_modules/dotenv/LICENSE', 420, 436 ]
10650 silly gunzTarPerm extractEntry node_modules/duplexify/LICENSE
10651 silly gunzTarPerm modified mode [ 'node_modules/duplexify/LICENSE', 420, 436 ]
10652 silly gunzTarPerm extractEntry node_modules/duplexify/node_modules/readable-stream/LICENSE
10653 silly gunzTarPerm modified mode [ 'node_modules/duplexify/node_modules/readable-stream/LICENSE',
10653 silly gunzTarPerm 420,
10653 silly gunzTarPerm 436 ]
10654 silly gunzTarPerm extractEntry node_modules/duplexify/node_modules/string_decoder/LICENSE
10655 silly gunzTarPerm modified mode [ 'node_modules/duplexify/node_modules/string_decoder/LICENSE',
10655 silly gunzTarPerm 420,
10655 silly gunzTarPerm 436 ]
10656 silly gunzTarPerm extractEntry node_modules/ecc-jsbn/LICENSE
10657 silly gunzTarPerm modified mode [ 'node_modules/ecc-jsbn/LICENSE', 493, 509 ]
10658 silly gunzTarPerm extractEntry node_modules/editor/LICENSE
10659 silly gunzTarPerm modified mode [ 'node_modules/editor/LICENSE', 420, 436 ]
10660 silly gunzTarPerm extractEntry node_modules/encoding/LICENSE
10661 silly gunzTarPerm modified mode [ 'node_modules/encoding/LICENSE', 420, 436 ]
10662 silly gunzTarPerm extractEntry node_modules/end-of-stream/LICENSE
10663 silly gunzTarPerm modified mode [ 'node_modules/end-of-stream/LICENSE', 420, 436 ]
10664 silly gunzTarPerm extractEntry node_modules/env-paths/license
10665 silly gunzTarPerm modified mode [ 'node_modules/env-paths/license', 420, 436 ]
10666 silly gunzTarPerm extractEntry node_modules/es-abstract/LICENSE
10667 silly gunzTarPerm modified mode [ 'node_modules/es-abstract/LICENSE', 420, 436 ]
10668 silly gunzTarPerm extractEntry node_modules/es-to-primitive/LICENSE
10669 silly gunzTarPerm modified mode [ 'node_modules/es-to-primitive/LICENSE', 420, 436 ]
10670 silly gunzTarPerm extractEntry node_modules/es6-promise/LICENSE
10671 silly gunzTarPerm modified mode [ 'node_modules/es6-promise/LICENSE', 420, 436 ]
10672 silly gunzTarPerm extractEntry node_modules/escape-string-regexp/license
10673 silly gunzTarPerm modified mode [ 'node_modules/escape-string-regexp/license', 420, 436 ]
10674 silly gunzTarPerm extractEntry node_modules/execa/license
10675 silly gunzTarPerm modified mode [ 'node_modules/execa/license', 420, 436 ]
10676 silly gunzTarPerm extractEntry node_modules/execa/node_modules/get-stream/license
10677 silly gunzTarPerm modified mode [ 'node_modules/execa/node_modules/get-stream/license',
10677 silly gunzTarPerm 420,
10677 silly gunzTarPerm 436 ]
10678 silly gunzTarPerm extractEntry node_modules/extend/LICENSE
10679 silly gunzTarPerm modified mode [ 'node_modules/extend/LICENSE', 420, 436 ]
10680 silly gunzTarPerm extractEntry node_modules/extsprintf/LICENSE
10681 silly gunzTarPerm modified mode [ 'node_modules/extsprintf/LICENSE', 420, 436 ]
10682 silly gunzTarPerm extractEntry node_modules/fast-deep-equal/LICENSE
10683 silly gunzTarPerm modified mode [ 'node_modules/fast-deep-equal/LICENSE', 420, 436 ]
10684 silly gunzTarPerm extractEntry node_modules/fast-json-stable-stringify/LICENSE
10685 silly gunzTarPerm modified mode [ 'node_modules/fast-json-stable-stringify/LICENSE', 420, 436 ]
10686 silly gunzTarPerm extractEntry node_modules/find-npm-prefix/LICENSE
10687 silly gunzTarPerm modified mode [ 'node_modules/find-npm-prefix/LICENSE', 420, 436 ]
10688 silly gunzTarPerm extractEntry node_modules/find-up/license
10689 silly gunzTarPerm modified mode [ 'node_modules/find-up/license', 420, 436 ]
10690 silly gunzTarPerm extractEntry node_modules/flush-write-stream/LICENSE
10691 silly gunzTarPerm modified mode [ 'node_modules/flush-write-stream/LICENSE', 420, 436 ]
10692 silly gunzTarPerm extractEntry node_modules/flush-write-stream/node_modules/readable-stream/LICENSE
10693 silly gunzTarPerm modified mode [ 'node_modules/flush-write-stream/node_modules/readable-stream/LICENSE',
10693 silly gunzTarPerm 420,
10693 silly gunzTarPerm 436 ]
10694 silly gunzTarPerm extractEntry node_modules/flush-write-stream/node_modules/string_decoder/LICENSE
10695 silly gunzTarPerm modified mode [ 'node_modules/flush-write-stream/node_modules/string_decoder/LICENSE',
10695 silly gunzTarPerm 420,
10695 silly gunzTarPerm 436 ]
10696 silly gunzTarPerm extractEntry node_modules/forever-agent/LICENSE
10697 silly gunzTarPerm modified mode [ 'node_modules/forever-agent/LICENSE', 420, 436 ]
10698 silly gunzTarPerm extractEntry node_modules/form-data/License
10699 silly gunzTarPerm modified mode [ 'node_modules/form-data/License', 420, 436 ]
10700 silly gunzTarPerm extractEntry node_modules/from2/node_modules/readable-stream/LICENSE
10701 silly gunzTarPerm modified mode [ 'node_modules/from2/node_modules/readable-stream/LICENSE',
10701 silly gunzTarPerm 420,
10701 silly gunzTarPerm 436 ]
10702 silly gunzTarPerm extractEntry node_modules/from2/node_modules/string_decoder/LICENSE
10703 silly gunzTarPerm modified mode [ 'node_modules/from2/node_modules/string_decoder/LICENSE',
10703 silly gunzTarPerm 420,
10703 silly gunzTarPerm 436 ]
10704 silly gunzTarPerm extractEntry node_modules/fs-minipass/LICENSE
10705 silly gunzTarPerm modified mode [ 'node_modules/fs-minipass/LICENSE', 420, 436 ]
10706 silly gunzTarPerm extractEntry node_modules/fs-vacuum/LICENSE
10707 silly gunzTarPerm modified mode [ 'node_modules/fs-vacuum/LICENSE', 420, 436 ]
10708 silly gunzTarPerm extractEntry node_modules/fs-write-stream-atomic/LICENSE
10709 silly gunzTarPerm modified mode [ 'node_modules/fs-write-stream-atomic/LICENSE', 420, 436 ]
10710 silly gunzTarPerm extractEntry node_modules/fs-write-stream-atomic/node_modules/iferr/LICENSE
10711 silly gunzTarPerm modified mode [ 'node_modules/fs-write-stream-atomic/node_modules/iferr/LICENSE',
10711 silly gunzTarPerm 420,
10711 silly gunzTarPerm 436 ]
10712 silly gunzTarPerm extractEntry node_modules/fs-write-stream-atomic/node_modules/readable-stream/LICENSE
10713 silly gunzTarPerm modified mode [ 'node_modules/fs-write-stream-atomic/node_modules/readable-stream/LICENSE',
10713 silly gunzTarPerm 420,
10713 silly gunzTarPerm 436 ]
10714 silly gunzTarPerm extractEntry node_modules/fs-write-stream-atomic/node_modules/string_decoder/LICENSE
10715 silly gunzTarPerm modified mode [ 'node_modules/fs-write-stream-atomic/node_modules/string_decoder/LICENSE',
10715 silly gunzTarPerm 420,
10715 silly gunzTarPerm 436 ]
10716 silly gunzTarPerm extractEntry node_modules/fs.realpath/LICENSE
10717 silly gunzTarPerm modified mode [ 'node_modules/fs.realpath/LICENSE', 420, 436 ]
10718 silly gunzTarPerm extractEntry node_modules/function-bind/LICENSE
10719 silly gunzTarPerm modified mode [ 'node_modules/function-bind/LICENSE', 420, 436 ]
10720 silly gunzTarPerm extractEntry node_modules/gauge/LICENSE
10721 silly gunzTarPerm modified mode [ 'node_modules/gauge/LICENSE', 420, 436 ]
10722 silly gunzTarPerm extractEntry node_modules/gauge/node_modules/aproba/LICENSE
10723 silly gunzTarPerm modified mode [ 'node_modules/gauge/node_modules/aproba/LICENSE', 420, 436 ]
10724 silly gunzTarPerm extractEntry node_modules/gauge/node_modules/string-width/license
10725 silly gunzTarPerm modified mode [ 'node_modules/gauge/node_modules/string-width/license',
10725 silly gunzTarPerm 420,
10725 silly gunzTarPerm 436 ]
10726 silly gunzTarPerm extractEntry node_modules/genfun/LICENSE
10727 silly gunzTarPerm modified mode [ 'node_modules/genfun/LICENSE', 420, 436 ]
10728 silly gunzTarPerm extractEntry node_modules/gentle-fs/LICENSE
10729 silly gunzTarPerm modified mode [ 'node_modules/gentle-fs/LICENSE', 420, 436 ]
10730 silly gunzTarPerm extractEntry node_modules/gentle-fs/node_modules/aproba/LICENSE
10731 silly gunzTarPerm modified mode [ 'node_modules/gentle-fs/node_modules/aproba/LICENSE',
10731 silly gunzTarPerm 420,
10731 silly gunzTarPerm 436 ]
10732 silly gunzTarPerm extractEntry node_modules/gentle-fs/node_modules/iferr/LICENSE
10733 silly gunzTarPerm modified mode [ 'node_modules/gentle-fs/node_modules/iferr/LICENSE', 420, 436 ]
10734 silly gunzTarPerm extractEntry node_modules/get-stream/license
10735 silly gunzTarPerm modified mode [ 'node_modules/get-stream/license', 420, 436 ]
10736 silly gunzTarPerm extractEntry node_modules/getpass/LICENSE
10737 silly gunzTarPerm modified mode [ 'node_modules/getpass/LICENSE', 420, 436 ]
10738 silly gunzTarPerm extractEntry node_modules/glob/LICENSE
10739 silly gunzTarPerm modified mode [ 'node_modules/glob/LICENSE', 420, 436 ]
10740 silly gunzTarPerm extractEntry node_modules/global-dirs/license
10741 silly gunzTarPerm modified mode [ 'node_modules/global-dirs/license', 420, 436 ]
10742 silly gunzTarPerm extractEntry node_modules/got/license
10743 silly gunzTarPerm modified mode [ 'node_modules/got/license', 420, 436 ]
10744 silly gunzTarPerm extractEntry node_modules/got/node_modules/get-stream/license
10745 silly gunzTarPerm modified mode [ 'node_modules/got/node_modules/get-stream/license', 420, 436 ]
10746 silly gunzTarPerm extractEntry node_modules/graceful-fs/LICENSE
10747 silly gunzTarPerm modified mode [ 'node_modules/graceful-fs/LICENSE', 420, 436 ]
10748 silly gunzTarPerm extractEntry node_modules/har-schema/LICENSE
10749 silly gunzTarPerm modified mode [ 'node_modules/har-schema/LICENSE', 420, 436 ]
10750 silly gunzTarPerm extractEntry node_modules/har-validator/LICENSE
10751 silly gunzTarPerm modified mode [ 'node_modules/har-validator/LICENSE', 420, 436 ]
10752 silly gunzTarPerm extractEntry node_modules/has-flag/license
10753 silly gunzTarPerm modified mode [ 'node_modules/has-flag/license', 420, 436 ]
10754 silly gunzTarPerm extractEntry node_modules/has-symbols/LICENSE
10755 silly gunzTarPerm modified mode [ 'node_modules/has-symbols/LICENSE', 420, 436 ]
10756 silly gunzTarPerm extractEntry node_modules/has-unicode/LICENSE
10757 silly gunzTarPerm modified mode [ 'node_modules/has-unicode/LICENSE', 420, 436 ]
10758 silly gunzTarPerm extractEntry node_modules/hosted-git-info/LICENSE
10759 silly gunzTarPerm modified mode [ 'node_modules/hosted-git-info/LICENSE', 420, 436 ]
10760 silly gunzTarPerm extractEntry node_modules/http-signature/LICENSE
10761 silly gunzTarPerm modified mode [ 'node_modules/http-signature/LICENSE', 420, 436 ]
10762 silly gunzTarPerm extractEntry node_modules/humanize-ms/LICENSE
10763 silly gunzTarPerm modified mode [ 'node_modules/humanize-ms/LICENSE', 420, 436 ]
10764 silly gunzTarPerm extractEntry node_modules/iconv-lite/LICENSE
10765 silly gunzTarPerm modified mode [ 'node_modules/iconv-lite/LICENSE', 420, 436 ]
10766 silly gunzTarPerm extractEntry node_modules/iferr/LICENSE
10767 silly gunzTarPerm modified mode [ 'node_modules/iferr/LICENSE', 420, 436 ]
10768 silly gunzTarPerm extractEntry node_modules/ignore-walk/LICENSE
10769 silly gunzTarPerm modified mode [ 'node_modules/ignore-walk/LICENSE', 420, 436 ]
10770 silly gunzTarPerm extractEntry node_modules/import-lazy/license
10771 silly gunzTarPerm modified mode [ 'node_modules/import-lazy/license', 420, 436 ]
10772 silly gunzTarPerm extractEntry node_modules/infer-owner/LICENSE
10773 silly gunzTarPerm modified mode [ 'node_modules/infer-owner/LICENSE', 420, 436 ]
10774 silly gunzTarPerm extractEntry node_modules/inflight/LICENSE
10775 silly gunzTarPerm modified mode [ 'node_modules/inflight/LICENSE', 420, 436 ]
10776 silly gunzTarPerm extractEntry node_modules/inherits/LICENSE
10777 silly gunzTarPerm modified mode [ 'node_modules/inherits/LICENSE', 420, 436 ]
10778 silly gunzTarPerm extractEntry node_modules/ini/LICENSE
10779 silly gunzTarPerm modified mode [ 'node_modules/ini/LICENSE', 420, 436 ]
10780 silly gunzTarPerm extractEntry node_modules/init-package-json/LICENSE
10781 silly gunzTarPerm modified mode [ 'node_modules/init-package-json/LICENSE', 420, 436 ]
10782 silly gunzTarPerm extractEntry node_modules/ip-regex/license
10783 silly gunzTarPerm modified mode [ 'node_modules/ip-regex/license', 420, 436 ]
10784 silly gunzTarPerm extractEntry node_modules/is-callable/LICENSE
10785 silly gunzTarPerm modified mode [ 'node_modules/is-callable/LICENSE', 420, 436 ]
10786 silly gunzTarPerm extractEntry node_modules/is-ci/LICENSE
10787 silly gunzTarPerm modified mode [ 'node_modules/is-ci/LICENSE', 420, 436 ]
10788 silly gunzTarPerm extractEntry node_modules/is-ci/node_modules/ci-info/LICENSE
10789 silly gunzTarPerm modified mode [ 'node_modules/is-ci/node_modules/ci-info/LICENSE', 420, 436 ]
10790 silly gunzTarPerm extractEntry node_modules/is-cidr/LICENSE
10791 silly gunzTarPerm modified mode [ 'node_modules/is-cidr/LICENSE', 420, 436 ]
10792 silly gunzTarPerm extractEntry node_modules/is-date-object/LICENSE
10793 silly gunzTarPerm modified mode [ 'node_modules/is-date-object/LICENSE', 420, 436 ]
10794 silly gunzTarPerm extractEntry node_modules/is-fullwidth-code-point/license
10795 silly gunzTarPerm modified mode [ 'node_modules/is-fullwidth-code-point/license', 420, 436 ]
10796 silly gunzTarPerm extractEntry node_modules/is-installed-globally/license
10797 silly gunzTarPerm modified mode [ 'node_modules/is-installed-globally/license', 420, 436 ]
10798 silly gunzTarPerm extractEntry node_modules/is-obj/license
10799 silly gunzTarPerm modified mode [ 'node_modules/is-obj/license', 420, 436 ]
10800 silly gunzTarPerm extractEntry node_modules/is-path-inside/license
10801 silly gunzTarPerm modified mode [ 'node_modules/is-path-inside/license', 420, 436 ]
10802 silly gunzTarPerm extractEntry node_modules/is-redirect/license
10803 silly gunzTarPerm modified mode [ 'node_modules/is-redirect/license', 420, 436 ]
10804 silly gunzTarPerm extractEntry node_modules/is-regex/LICENSE
10805 silly gunzTarPerm modified mode [ 'node_modules/is-regex/LICENSE', 420, 436 ]
10806 silly gunzTarPerm extractEntry node_modules/is-retry-allowed/license
10807 silly gunzTarPerm modified mode [ 'node_modules/is-retry-allowed/license', 420, 436 ]
10808 silly gunzTarPerm extractEntry node_modules/is-stream/license
10809 silly gunzTarPerm modified mode [ 'node_modules/is-stream/license', 420, 436 ]
10810 silly gunzTarPerm extractEntry node_modules/is-symbol/LICENSE
10811 silly gunzTarPerm modified mode [ 'node_modules/is-symbol/LICENSE', 420, 436 ]
10812 silly gunzTarPerm extractEntry node_modules/isexe/LICENSE
10813 silly gunzTarPerm modified mode [ 'node_modules/isexe/LICENSE', 420, 436 ]
10814 silly gunzTarPerm extractEntry node_modules/jsbn/LICENSE
10815 silly gunzTarPerm modified mode [ 'node_modules/jsbn/LICENSE', 420, 436 ]
10816 silly gunzTarPerm extractEntry node_modules/json-schema-traverse/LICENSE
10817 silly gunzTarPerm modified mode [ 'node_modules/json-schema-traverse/LICENSE', 420, 436 ]
10818 silly gunzTarPerm extractEntry node_modules/json-stringify-safe/LICENSE
10819 silly gunzTarPerm modified mode [ 'node_modules/json-stringify-safe/LICENSE', 420, 436 ]
10820 silly gunzTarPerm extractEntry node_modules/jsonparse/LICENSE
10821 silly gunzTarPerm modified mode [ 'node_modules/jsonparse/LICENSE', 420, 436 ]
10822 silly gunzTarPerm extractEntry node_modules/jsprim/LICENSE
10823 silly gunzTarPerm modified mode [ 'node_modules/jsprim/LICENSE', 420, 436 ]
10824 silly gunzTarPerm extractEntry node_modules/latest-version/license
10825 silly gunzTarPerm modified mode [ 'node_modules/latest-version/license', 420, 436 ]
10826 silly gunzTarPerm extractEntry node_modules/lazy-property/LICENSE
10827 silly gunzTarPerm modified mode [ 'node_modules/lazy-property/LICENSE', 420, 436 ]
10828 silly gunzTarPerm extractEntry node_modules/lcid/license
10829 silly gunzTarPerm modified mode [ 'node_modules/lcid/license', 420, 436 ]
10830 silly gunzTarPerm extractEntry node_modules/libnpmaccess/LICENSE
10831 silly gunzTarPerm modified mode [ 'node_modules/libnpmaccess/LICENSE', 420, 436 ]
10832 silly gunzTarPerm extractEntry node_modules/libnpmconfig/LICENSE
10833 silly gunzTarPerm modified mode [ 'node_modules/libnpmconfig/LICENSE', 420, 436 ]
10834 silly gunzTarPerm extractEntry node_modules/libnpmconfig/node_modules/find-up/license
10835 silly gunzTarPerm modified mode [ 'node_modules/libnpmconfig/node_modules/find-up/license',
10835 silly gunzTarPerm 420,
10835 silly gunzTarPerm 436 ]
10836 silly gunzTarPerm extractEntry node_modules/libnpmconfig/node_modules/locate-path/license
10837 silly gunzTarPerm modified mode [ 'node_modules/libnpmconfig/node_modules/locate-path/license',
10837 silly gunzTarPerm 420,
10837 silly gunzTarPerm 436 ]
10838 silly gunzTarPerm extractEntry node_modules/libnpmconfig/node_modules/p-limit/license
10839 silly gunzTarPerm modified mode [ 'node_modules/libnpmconfig/node_modules/p-limit/license',
10839 silly gunzTarPerm 420,
10839 silly gunzTarPerm 436 ]
10840 silly gunzTarPerm extractEntry node_modules/libnpmconfig/node_modules/p-locate/license
10841 silly gunzTarPerm modified mode [ 'node_modules/libnpmconfig/node_modules/p-locate/license',
10841 silly gunzTarPerm 420,
10841 silly gunzTarPerm 436 ]
10842 silly gunzTarPerm extractEntry node_modules/libnpmconfig/node_modules/p-try/license
10843 silly gunzTarPerm modified mode [ 'node_modules/libnpmconfig/node_modules/p-try/license',
10843 silly gunzTarPerm 420,
10843 silly gunzTarPerm 436 ]
10844 silly gunzTarPerm extractEntry node_modules/libnpmorg/LICENSE
10845 silly gunzTarPerm modified mode [ 'node_modules/libnpmorg/LICENSE', 420, 436 ]
10846 silly gunzTarPerm extractEntry node_modules/libnpmpublish/LICENSE
10847 silly gunzTarPerm modified mode [ 'node_modules/libnpmpublish/LICENSE', 420, 436 ]
10848 silly gunzTarPerm extractEntry node_modules/libnpmsearch/LICENSE
10849 silly gunzTarPerm modified mode [ 'node_modules/libnpmsearch/LICENSE', 420, 436 ]
10850 silly gunzTarPerm extractEntry node_modules/libnpmteam/LICENSE
10851 silly gunzTarPerm modified mode [ 'node_modules/libnpmteam/LICENSE', 420, 436 ]
10852 silly gunzTarPerm extractEntry node_modules/locate-path/license
10853 silly gunzTarPerm modified mode [ 'node_modules/locate-path/license', 420, 436 ]
10854 silly gunzTarPerm extractEntry node_modules/lock-verify/LICENSE
10855 silly gunzTarPerm modified mode [ 'node_modules/lock-verify/LICENSE', 420, 436 ]
10856 silly gunzTarPerm extractEntry node_modules/lockfile/LICENSE
10857 silly gunzTarPerm modified mode [ 'node_modules/lockfile/LICENSE', 420, 436 ]
10858 silly gunzTarPerm extractEntry node_modules/lodash._baseuniq/LICENSE
10859 silly gunzTarPerm modified mode [ 'node_modules/lodash._baseuniq/LICENSE', 420, 436 ]
10860 silly gunzTarPerm extractEntry node_modules/lodash._createcache/LICENSE
10861 silly gunzTarPerm modified mode [ 'node_modules/lodash._createcache/LICENSE', 420, 436 ]
10862 silly gunzTarPerm extractEntry node_modules/lodash._createset/LICENSE
10863 silly gunzTarPerm modified mode [ 'node_modules/lodash._createset/LICENSE', 420, 436 ]
10864 silly gunzTarPerm extractEntry node_modules/lodash._getnative/LICENSE
10865 silly gunzTarPerm modified mode [ 'node_modules/lodash._getnative/LICENSE', 420, 436 ]
10866 silly gunzTarPerm extractEntry node_modules/lodash._root/LICENSE
10867 silly gunzTarPerm modified mode [ 'node_modules/lodash._root/LICENSE', 420, 436 ]
10868 silly gunzTarPerm extractEntry node_modules/lodash.clonedeep/LICENSE
10869 silly gunzTarPerm modified mode [ 'node_modules/lodash.clonedeep/LICENSE', 420, 436 ]
10870 silly gunzTarPerm extractEntry node_modules/lodash.union/LICENSE
10871 silly gunzTarPerm modified mode [ 'node_modules/lodash.union/LICENSE', 420, 436 ]
10872 silly gunzTarPerm extractEntry node_modules/lodash.uniq/LICENSE
10873 silly gunzTarPerm modified mode [ 'node_modules/lodash.uniq/LICENSE', 420, 436 ]
10874 silly gunzTarPerm extractEntry node_modules/lodash.without/LICENSE
10875 silly gunzTarPerm modified mode [ 'node_modules/lodash.without/LICENSE', 420, 436 ]
10876 silly gunzTarPerm extractEntry node_modules/lowercase-keys/license
10877 silly gunzTarPerm modified mode [ 'node_modules/lowercase-keys/license', 420, 436 ]
10878 silly gunzTarPerm extractEntry node_modules/lru-cache/LICENSE
10879 silly gunzTarPerm modified mode [ 'node_modules/lru-cache/LICENSE', 420, 436 ]
10880 silly gunzTarPerm extractEntry node_modules/make-dir/license
10881 silly gunzTarPerm modified mode [ 'node_modules/make-dir/license', 420, 436 ]
10882 silly gunzTarPerm extractEntry node_modules/make-fetch-happen/LICENSE
10883 silly gunzTarPerm modified mode [ 'node_modules/make-fetch-happen/LICENSE', 420, 436 ]
10884 silly gunzTarPerm extractEntry node_modules/meant/LICENSE
10885 silly gunzTarPerm modified mode [ 'node_modules/meant/LICENSE', 420, 436 ]
10886 silly gunzTarPerm extractEntry node_modules/mem/license
10887 silly gunzTarPerm modified mode [ 'node_modules/mem/license', 420, 436 ]
10888 silly gunzTarPerm extractEntry node_modules/mime-db/LICENSE
10889 silly gunzTarPerm modified mode [ 'node_modules/mime-db/LICENSE', 420, 436 ]
10890 silly gunzTarPerm extractEntry node_modules/mime-types/LICENSE
10891 silly gunzTarPerm modified mode [ 'node_modules/mime-types/LICENSE', 420, 436 ]
10892 silly gunzTarPerm extractEntry node_modules/mimic-fn/license
10893 silly gunzTarPerm modified mode [ 'node_modules/mimic-fn/license', 420, 436 ]
10894 silly gunzTarPerm extractEntry node_modules/minimatch/LICENSE
10895 silly gunzTarPerm modified mode [ 'node_modules/minimatch/LICENSE', 420, 436 ]
10896 silly gunzTarPerm extractEntry node_modules/minimist/LICENSE
10897 silly gunzTarPerm modified mode [ 'node_modules/minimist/LICENSE', 420, 436 ]
10898 silly gunzTarPerm extractEntry node_modules/minipass/node_modules/yallist/LICENSE
10899 silly gunzTarPerm modified mode [ 'node_modules/minipass/node_modules/yallist/LICENSE',
10899 silly gunzTarPerm 420,
10899 silly gunzTarPerm 436 ]
10900 silly gunzTarPerm extractEntry node_modules/minizlib/LICENSE
10901 silly gunzTarPerm modified mode [ 'node_modules/minizlib/LICENSE', 420, 436 ]
10902 silly gunzTarPerm extractEntry node_modules/mississippi/license
10903 silly gunzTarPerm modified mode [ 'node_modules/mississippi/license', 420, 436 ]
10904 silly gunzTarPerm extractEntry node_modules/mkdirp/LICENSE
10905 silly gunzTarPerm modified mode [ 'node_modules/mkdirp/LICENSE', 420, 436 ]
10906 silly gunzTarPerm extractEntry node_modules/move-concurrently/LICENSE
10907 silly gunzTarPerm modified mode [ 'node_modules/move-concurrently/LICENSE', 420, 436 ]
10908 silly gunzTarPerm extractEntry node_modules/move-concurrently/node_modules/aproba/LICENSE
10909 silly gunzTarPerm modified mode [ 'node_modules/move-concurrently/node_modules/aproba/LICENSE',
10909 silly gunzTarPerm 420,
10909 silly gunzTarPerm 436 ]
10910 silly gunzTarPerm extractEntry node_modules/mute-stream/LICENSE
10911 silly gunzTarPerm modified mode [ 'node_modules/mute-stream/LICENSE', 420, 436 ]
10912 silly gunzTarPerm extractEntry node_modules/node-gyp/gyp/LICENSE
10913 silly gunzTarPerm modified mode [ 'node_modules/node-gyp/gyp/LICENSE', 420, 436 ]
10914 silly gunzTarPerm extractEntry node_modules/node-gyp/LICENSE