-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.html
8130 lines (8130 loc) · 509 KB
/
README.html
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
<h1>Download It Yourself</h1>
<p>EIGHTFINITE presents a small Vanilla+ modpack for Minecraft 1.7.10.</p>
<p>This README is a work in progress. Not all information might be accurate yet. Please report any inaccurate information.</p>
<p>This pack contains Fastcraft, by Player, enabled by default. Fastcraft enhances Minecraft with increased performance. Bug reports being made directly to Mod Authors should state Fastcraft is enabled.</p>
<h2>Node dependencies</h2>
<table>
<tr>
<th>Icon</th>
<th>Name</th>
<th>Author</th>
<th>License</th>
<th>Source Code</th>
<th>Distribution</th>
<th>Description</th>
<th>Version</th>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/@postman/form-data"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/@postman/form-data">@postman/form-data</a></td>
<td>postmanlabs</td>
<td><a href="docs/legal/MIT.txt">MIT</a></td>
<td><a href="https://github.com/postmanlabs/form-data">Open Source</a></td>
<td align="center">✔️</td>
<td>A library to create readable "multipart/form-data" streams. Can be used to submit forms and file uploads to other web applications.<br>Required by postman-request.</td>
<td align="center"><code>@postman/[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/@postman/tough-cookie"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/@postman/tough-cookie">@postman/tough-cookie</a></td>
<td>Jeremy Stashewsky</td>
<td><a href="docs/legal/BSD-3-Clause.txt">BSD-3-Clause</a></td>
<td><a href="https://github.com/postmanlabs/tough-cookie">Open Source</a></td>
<td align="center">✔️</td>
<td>RFC6265 Cookies and Cookie Jar for Node.<br>Required by postman-request, request-promise.</td>
<td align="center"><code>@postman/[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/@postman/tunnel-agent"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/@postman/tunnel-agent">@postman/tunnel-agent</a></td>
<td>Postman Labs</td>
<td><a href="docs/legal/Apache-2.0.txt">Apache-2.0</a></td>
<td><a href="https://github.com/postmanlabs/tunnel-agent">Open Source</a></td>
<td align="center">✔️</td>
<td>HTTP proxy tunneling agent.<br>Required by postman-request.</td>
<td align="center"><code>@postman/[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/ajv"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/ajv">ajv</a></td>
<td>Evgeny Poberezkin</td>
<td><a href="docs/legal/MIT.txt">MIT</a></td>
<td><a href="https://github.com/ajv-validator/ajv">Open Source</a></td>
<td align="center">✔️</td>
<td>Another JSON Schema Validator.<br>Required by table.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/ansi-regex"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/ansi-regex">ansi-regex</a></td>
<td>Sindre Sorhus</td>
<td><a href="docs/legal/MIT.txt">MIT</a></td>
<td><a href="https://github.com/chalk/ansi-regex">Open Source</a></td>
<td align="center">✔️</td>
<td>Regular expression for matching ANSI escape codes.<br>Required by strip-ansi.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/ansi-styles"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/ansi-styles">ansi-styles</a></td>
<td>Sindre Sorhus</td>
<td><a href="docs/legal/MIT.txt">MIT</a></td>
<td><a href="https://github.com/chalk/ansi-styles">Open Source</a></td>
<td align="center">✔️</td>
<td>ANSI escape codes for styling strings in the terminal.<br>Required by slice-ansi.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/asn1"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/asn1">asn1</a></td>
<td>Joyent</td>
<td><a href="docs/legal/MIT.txt">MIT</a></td>
<td><a href="https://github.com/joyent/node-asn1">Open Source</a></td>
<td align="center">✔️</td>
<td>Contains parsers and serializers for ASN.1 (currently BER only).<br>Required by sshpk.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/assert-plus"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/assert-plus">assert-plus</a></td>
<td>Mark Cavage</td>
<td><a href="docs/legal/MIT.txt">MIT</a></td>
<td><a href="https://github.com/mcavage/node-assert-plus">Open Source</a></td>
<td align="center">✔️</td>
<td>Extra assertions on top of Node's assert module.<br>Required by dashdash, getpass, http-signature, jsprim, sshpk, verror.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/astral-regex"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/astral-regex">astral-regex</a></td>
<td>Kevin Mårtensson</td>
<td><a href="docs/legal/MIT.txt">MIT</a></td>
<td><a href="https://github.com/kevva/astral-regex">Open Source</a></td>
<td align="center">✔️</td>
<td>Regular expression for matching astral symbols.<br>Required by slice-ansi.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/asynckit"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/asynckit">asynckit</a></td>
<td>Alex Indigo</td>
<td><a href="docs/legal/MIT.txt">MIT</a></td>
<td><a href="https://github.com/alexindigo/asynckit">Open Source</a></td>
<td align="center">✔️</td>
<td>Minimal async jobs utility library, with streams support.<br>Required by @postman/form-data.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/aws-sign2"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/aws-sign2">aws-sign2</a></td>
<td>Mikeal Rogers</td>
<td><a href="docs/legal/Apache-2.0.txt">Apache-2.0</a></td>
<td><a href="https://github.com/request/aws-sign">Open Source</a></td>
<td align="center">✔️</td>
<td>AWS signing. Originally pulled from LearnBoost/knox, maintained as vendor in request, now a standalone module.<br>Required by postman-request.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/aws4"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/aws4">aws4</a></td>
<td>Michael Hart</td>
<td><a href="docs/legal/MIT.txt">MIT</a></td>
<td><a href="https://github.com/mhart/aws4">Open Source</a></td>
<td align="center">✔️</td>
<td>Signs and prepares requests using AWS Signature Version 4.<br>Required by postman-request.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/base64-js"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/base64-js">base64-js</a></td>
<td>T. Jameson Little</td>
<td><a href="docs/legal/MIT.txt">MIT</a></td>
<td><a href="https://github.com/beatgammit/base64-js">Open Source</a></td>
<td align="center">✔️</td>
<td>Base64 encoding/decoding in pure JS.<br>Required by brotli.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/bcrypt-pbkdf"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/bcrypt-pbkdf">bcrypt-pbkdf</a></td>
<td>joyent</td>
<td><a href="docs/legal/BSD-3-Clause.txt">BSD-3-Clause</a></td>
<td><a href="https://github.com/TritonDataCenter/node-bcrypt-pbkdf">Open Source</a></td>
<td align="center">✔️</td>
<td>Port of the OpenBSD bcrypt_pbkdf function to pure JS.<br>Required by sshpk.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/EIGHTFINITE/better-npm-audit"><img src="https://avatars.githubusercontent.com/u/9919" width="31"></a></td>
<td><a href="https://github.com/EIGHTFINITE/better-npm-audit">better-npm-audit</a></td>
<td>Jee Mok</td>
<td><a href="docs/legal/MIT.txt">MIT</a></td>
<td><a href="https://github.com/EIGHTFINITE/better-npm-audit">Open Source</a></td>
<td align="center">✔️</td>
<td>Reshape into a better npm audit for the community and encourage more people to include security audit into their process.</td>
<td align="center"><code>EIGHTFINITE/better-npm-audit#742aa2a459d5b16d7da083d5eed906a42e7778b6</code><br>(based on <code>[email protected]</code>)</td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/bluebird"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/bluebird">bluebird</a></td>
<td>Petka Antonov</td>
<td><a href="docs/legal/MIT.txt">MIT</a></td>
<td><a href="https://github.com/petkaantonov/bluebird">Open Source</a></td>
<td align="center">✔️</td>
<td>Full featured Promises/A+ implementation with exceptionally good performance.<br>Required by request-promise.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/boolbase"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/boolbase">boolbase</a></td>
<td>Felix Boehm</td>
<td><a href="docs/legal/ISC.txt">ISC</a></td>
<td><a href="https://github.com/fb55/boolbase">Open Source</a></td>
<td align="center">✔️</td>
<td>Two functions: One that returns true, one that returns false.<br>Required by cheerio-select, css-select, nth-check.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/brotli"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/brotli">brotli</a></td>
<td>Devon Govett</td>
<td><a href="docs/legal/MIT.txt">MIT</a></td>
<td><a href="https://github.com/foliojs/brotli.js">Open Source</a></td>
<td align="center">✔️</td>
<td>A port of the Brotli compression algorithm as used in WOFF2.<br>Required by postman-request.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/caseless"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/caseless">caseless</a></td>
<td>Mikeal Rogers</td>
<td><a href="docs/legal/Apache-2.0.txt">Apache-2.0</a></td>
<td><a href="https://github.com/request/caseless">Open Source</a></td>
<td align="center">✔️</td>
<td>Caseless object set/get/has, very useful when working with HTTP headers.<br>Required by postman-request.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/EIGHTFINITE/cheerio"><img src="https://avatars.githubusercontent.com/u/9919" width="31"></a></td>
<td><a href="https://github.com/EIGHTFINITE/cheerio">cheerio</a></td>
<td>Matt Mueller</td>
<td><a href="docs/legal/MIT.txt">MIT</a></td>
<td><a href="https://github.com/EIGHTFINITE/cheerio">Open Source</a></td>
<td align="center">✔️</td>
<td>The fast, flexible & elegant library for parsing and manipulating HTML and XML.<br>Required by cloudscraper.</td>
<td align="center"><code>EIGHTFINITE/cheerio#e554c3ae3901abe539299b779e2aab8552a43760</code><br>(based on <code>[email protected]</code>)</td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/cheerio-select"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/cheerio-select">cheerio-select</a></td>
<td>Felix Boehm</td>
<td><a href="docs/legal/BSD-2-Clause.txt">BSD-2-Clause</a></td>
<td><a href="https://github.com/cheeriojs/cheerio-select">Open Source</a></td>
<td align="center">✔️</td>
<td>CSS selector engine supporting jQuery selectors.<br>Required by cheerio.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/EIGHTFINITE/cloudscraper"><img src="https://avatars.githubusercontent.com/u/9919" width="31"></a></td>
<td><a href="https://github.com/EIGHTFINITE/cloudscraper">cloudscraper</a></td>
<td>Oleksii Sribnyi</td>
<td><a href="docs/legal/MIT.txt">MIT</a></td>
<td><a href="https://github.com/EIGHTFINITE/cloudscraper">Open Source</a></td>
<td align="center">✔️</td>
<td>Bypasses cloudflare's anti-ddos page.</td>
<td align="center"><code>EIGHTFINITE/cloudscraper#9e2fe85cf60b5d0974b6c443582269ccc6ed8205</code><br>(based on <code>[email protected]</code>)</td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/color-convert"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/color-convert">color-convert</a></td>
<td>Heather Arthur</td>
<td><a href="docs/legal/MIT.txt">MIT</a></td>
<td><a href="https://github.com/Qix-/color-convert">Open Source</a></td>
<td align="center">✔️</td>
<td>Plain color conversion functions.<br>Required by ansi-styles.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/color-name"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/color-name">color-name</a></td>
<td>DY</td>
<td><a href="docs/legal/MIT.txt">MIT</a></td>
<td><a href="https://github.com/colorjs/color-name">Open Source</a></td>
<td align="center">✔️</td>
<td>A list of color names and its values.<br>Required by color-convert.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/combined-stream"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/combined-stream">combined-stream</a></td>
<td>Felix Geisendörfer</td>
<td><a href="docs/legal/MIT.txt">MIT</a></td>
<td><a href="https://github.com/felixge/node-combined-stream">Open Source</a></td>
<td align="center">✔️</td>
<td>A stream that emits multiple other streams one after another.<br>Required by @postman/form-data, postman-request.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/commander"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/commander">commander</a></td>
<td>TJ Holowaychuk</td>
<td><a href="docs/legal/MIT.txt">MIT</a></td>
<td><a href="https://github.com/tj/commander.js">Open Source</a></td>
<td align="center">✔️</td>
<td>The complete solution for Node command-line programs.<br>Required by better-npm-audit.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/core-util-is"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/core-util-is">core-util-is</a></td>
<td>Isaac Z. Schlueter</td>
<td><a href="docs/legal/MIT.txt">MIT</a></td>
<td><a href="https://github.com/isaacs/core-util-is">Open Source</a></td>
<td align="center">✔️</td>
<td>The `util.is*` functions introduced in Node v0.12.<br>Required by verror.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/css-select"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/css-select">css-select</a></td>
<td>Felix Boehm</td>
<td><a href="docs/legal/BSD-2-Clause.txt">BSD-2-Clause</a></td>
<td><a href="https://github.com/fb55/css-select">Open Source</a></td>
<td align="center">✔️</td>
<td>A CSS selector compiler/engine.<br>Required by cheerio-select.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/css-what"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/css-what">css-what</a></td>
<td>Felix Böhm</td>
<td><a href="docs/legal/BSD-2-Clause.txt">BSD-2-Clause</a></td>
<td><a href="https://github.com/fb55/css-what">Open Source</a></td>
<td align="center">✔️</td>
<td>A CSS selector parser.<br>Required by cheerio-select, css-select.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/dashdash"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/dashdash">dashdash</a></td>
<td>Trent Mick</td>
<td><a href="docs/legal/MIT.txt">MIT</a></td>
<td><a href="https://github.com/trentm/node-dashdash">Open Source</a></td>
<td align="center">✔️</td>
<td>A light, featureful and explicit option parsing library.<br>Required by sshpk.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/dayjs"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/dayjs">dayjs</a></td>
<td>iamkun</td>
<td><a href="docs/legal/MIT.txt">MIT</a></td>
<td><a href="https://github.com/iamkun/dayjs">Open Source</a></td>
<td align="center">✔️</td>
<td>2KB immutable date time library alternative to Moment.js with the same modern API.<br>Required by better-npm-audit.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/debug"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/debug">debug</a></td>
<td>Josh Junon</td>
<td><a href="docs/legal/MIT.txt">MIT</a></td>
<td><a href="https://github.com/debug-js/debug">Open Source</a></td>
<td align="center">✔️</td>
<td>Lightweight debugging utility for Node and the browser.<br>Required by electron-chrome-extensions.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/delayed-stream"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/delayed-stream">delayed-stream</a></td>
<td>Felix Geisendörfer</td>
<td><a href="docs/legal/MIT.txt">MIT</a></td>
<td><a href="https://github.com/felixge/node-delayed-stream">Open Source</a></td>
<td align="center">✔️</td>
<td>Buffers events from a stream until you are ready to handle them.<br>Required by combined-stream.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/dom-serializer"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/dom-serializer">dom-serializer</a></td>
<td>Felix Boehm</td>
<td><a href="docs/legal/MIT.txt">MIT</a></td>
<td><a href="https://github.com/cheeriojs/dom-serializer">Open Source</a></td>
<td align="center">✔️</td>
<td>Render domhandler DOM nodes to a string.<br>Required by cheerio, domutils.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/domelementtype"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/domelementtype">domelementtype</a></td>
<td>Felix Boehm</td>
<td><a href="docs/legal/BSD-2-Clause.txt">BSD-2-Clause</a></td>
<td><a href="https://github.com/fb55/domelementtype">Open Source</a></td>
<td align="center">✔️</td>
<td>All the types of nodes in htmlparser2's dom.<br>Required by cheerio-select, dom-serializer, domhandler, domutils, htmlparser2.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/domhandler"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/domhandler">domhandler</a></td>
<td>Felix Boehm</td>
<td><a href="docs/legal/BSD-2-Clause.txt">BSD-2-Clause</a></td>
<td><a href="https://github.com/fb55/domhandler">Open Source</a></td>
<td align="center">✔️</td>
<td>Handler for htmlparser2 that turns pages into a dom.<br>Required by cheerio, cheerio-select, css-select, dom-serializer, domutils, htmlparser2, parse5-htmlparser2-tree-adapter.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/domutils"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/domutils">domutils</a></td>
<td>Felix Boehm</td>
<td><a href="docs/legal/BSD-2-Clause.txt">BSD-2-Clause</a></td>
<td><a href="https://github.com/fb55/domutils">Open Source</a></td>
<td align="center">✔️</td>
<td>Utilities for working with htmlparser2's dom.<br>Required by cheerio, cheerio-select, css-select, htmlparser2.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/ecc-jsbn"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/ecc-jsbn">ecc-jsbn</a></td>
<td>Jeremie Miller</td>
<td><a href="docs/legal/MIT.txt">MIT</a></td>
<td><a href="https://github.com/aduh95/ecc-jsbn">Open Source</a></td>
<td align="center">✔️</td>
<td>ECC JS code based on JSBN.<br>Required by sshpk.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/EIGHTFINITE/electron"><img src="https://avatars.githubusercontent.com/u/9919" width="31"></a></td>
<td><a href="https://github.com/EIGHTFINITE/electron">electron</a></td>
<td>Electron Community</td>
<td><a href="docs/legal/MIT.txt">MIT</a></td>
<td><a href="https://github.com/EIGHTFINITE/electron">Open Source</a></td>
<td align="center">✔️</td>
<td>Build cross platform desktop apps with JavaScript, HTML, and CSS.</td>
<td align="center"><code>EIGHTFINITE/electron#9ab4e476494195c2fadd75cb0a0857ee7ece52d2</code><br>(based on <code>[email protected]</code>)</td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/electron-chrome-extensions"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/electron-chrome-extensions">electron-chrome-extensions</a></td>
<td>Samuel Maddock</td>
<td><a href="docs/legal/GPL-3.0.txt">GPL-3.0</a></td>
<td><a href="https://github.com/samuelmaddock/electron-browser-shell/tree/master/packages/electron-chrome-extensions">Open Source</a></td>
<td align="center">✔️</td>
<td>Chrome extension support for Electron.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/emoji-regex"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/emoji-regex">emoji-regex</a></td>
<td>Mathias Bynens</td>
<td><a href="docs/legal/MIT.txt">MIT</a></td>
<td><a href="https://github.com/mathiasbynens/emoji-regex">Open Source</a></td>
<td align="center">✔️</td>
<td>A regular expression to match all Emoji-only symbols as per the Unicode Standard.<br>Required by string-width.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/encoding-sniffer"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/encoding-sniffer">encoding-sniffer</a></td>
<td>Felix Boehm</td>
<td><a href="docs/legal/MIT.txt">MIT</a></td>
<td><a href="https://github.com/fb55/encoding-sniffer">Open Source</a></td>
<td align="center">✔️</td>
<td>Implementation of the HTML encoding sniffer algo, with stream support.<br>Required by cheerio.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/entities"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/entities">entities</a></td>
<td>Felix Boehm</td>
<td><a href="docs/legal/BSD-2-Clause.txt">BSD-2-Clause</a></td>
<td><a href="https://github.com/fb55/entities">Open Source</a></td>
<td align="center">✔️</td>
<td>Encode & decode XML and HTML entities with ease & speed.<br>Required by dom-serializer, htmlparser2, parse5.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/extend"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/extend">extend</a></td>
<td>Stefan Thomas</td>
<td><a href="docs/legal/MIT.txt">MIT</a></td>
<td><a href="https://github.com/justmoon/node-extend">Open Source</a></td>
<td align="center">✔️</td>
<td>Port of jQuery.extend for Node and the browser.<br>Required by postman-request.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/extsprintf"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/extsprintf">extsprintf</a></td>
<td>davepacheco</td>
<td><a href="docs/legal/MIT.txt">MIT</a></td>
<td><a href="https://github.com/TritonDataCenter/node-extsprintf">Open Source</a></td>
<td align="center">✔️</td>
<td>Extended POSIX-style sprintf.<br>Required by jsprim, verror.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/fast-deep-equal"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/fast-deep-equal">fast-deep-equal</a></td>
<td>Evgeny Poberezkin</td>
<td><a href="docs/legal/MIT.txt">MIT</a></td>
<td><a href="https://github.com/epoberezkin/fast-deep-equal">Open Source</a></td>
<td align="center">✔️</td>
<td>Fast deep equal.<br>Required by ajv, har-validator/ajv.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/fast-json-stable-stringify"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/fast-json-stable-stringify">fast-json-stable-stringify</a></td>
<td>James Halliday</td>
<td><a href="docs/legal/MIT.txt">MIT</a></td>
<td><a href="https://github.com/epoberezkin/fast-json-stable-stringify">Open Source</a></td>
<td align="center">✔️</td>
<td>Deterministic `JSON.stringify()` - a faster version of substack's json-stable-strigify without jsonify.<br>Required by har-validator/ajv.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/fast-uri"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/fast-uri">fast-uri</a></td>
<td>Vincent Le Goff</td>
<td><a href="docs/legal/BSD-3-Clause.txt">BSD-3-Clause</a></td>
<td><a href="https://github.com/fastify/fast-uri">Open Source</a></td>
<td align="center">✔️</td>
<td>Dependency free RFC 3986 URI toolbox.<br>Required by ajv.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/forever-agent"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/forever-agent">forever-agent</a></td>
<td>Mikeal Rogers</td>
<td><a href="docs/legal/Apache-2.0.txt">Apache-2.0</a></td>
<td><a href="https://github.com/mikeal/forever-agent">Open Source</a></td>
<td align="center">✔️</td>
<td>HTTP Agent that keeps socket connections alive between keep-alive requests. Formerly part of mikeal/request, now a standalone module.<br>Required by postman-request.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/getpass"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/getpass">getpass</a></td>
<td>Alex Wilson</td>
<td><a href="docs/legal/MIT.txt">MIT</a></td>
<td><a href="https://github.com/arekinath/node-getpass">Open Source</a></td>
<td align="center">✔️</td>
<td>Getpass for Node.<br>Required by sshpk.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/har-schema"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/har-schema">har-schema</a></td>
<td>Ahmad Nassri</td>
<td><a href="docs/legal/ISC.txt">ISC</a></td>
<td><a href="https://github.com/ahmadnassri/har-schema">Open Source</a></td>
<td align="center">✔️</td>
<td>JSON Schema for HTTP Archive (HAR).<br>Required by har-validator.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/har-validator"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/har-validator">har-validator</a></td>
<td>Ahmad Nassri</td>
<td><a href="docs/legal/MIT.txt">MIT</a></td>
<td><a href="https://github.com/ahmadnassri/node-har-validator">Open Source</a></td>
<td align="center">✔️</td>
<td>Extremely fast HTTP Archive (HAR) validator using JSON Schema.<br>Required by postman-request.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/ajv"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/ajv">har-validator/ajv</a></td>
<td>Evgeny Poberezkin</td>
<td><a href="docs/legal/MIT.txt">MIT</a></td>
<td><a href="https://github.com/ajv-validator/ajv">Open Source</a></td>
<td align="center">✔️</td>
<td>Another JSON Schema Validator.<br>Required by har-validator.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/json-schema-traverse"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/json-schema-traverse">har-validator/json-schema-traverse</a></td>
<td>Evgeny Poberezkin</td>
<td><a href="docs/legal/MIT.txt">MIT</a></td>
<td><a href="https://github.com/epoberezkin/json-schema-traverse">Open Source</a></td>
<td align="center">✔️</td>
<td>Traverse JSON Schema passing each schema object to callback.<br>Required by har-validator/ajv.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/htmlparser2"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/htmlparser2">htmlparser2</a></td>
<td>Felix Boehm</td>
<td><a href="docs/legal/MIT.txt">MIT</a></td>
<td><a href="https://github.com/fb55/htmlparser2">Open Source</a></td>
<td align="center">✔️</td>
<td>Fast & forgiving HTML/XML parser.<br>Required by cheerio.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/http-signature"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/http-signature">http-signature</a></td>
<td>Joyent, Inc</td>
<td><a href="docs/legal/MIT.txt">MIT</a></td>
<td><a href="https://github.com/joyent/node-http-signature">Open Source</a></td>
<td align="center">✔️</td>
<td>Reference implementation of Joyent's HTTP Signature scheme.<br>Required by postman-request.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/iconv-lite"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/iconv-lite">iconv-lite</a></td>
<td>Alexander Shtuchkin</td>
<td><a href="docs/legal/MIT.txt">MIT</a></td>
<td><a href="https://github.com/ashtuchkin/iconv-lite">Open Source</a></td>
<td align="center">✔️</td>
<td>Convert character encodings in pure JavaScript.<br>Required by encoding-sniffer, whatwg-encoding.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/is-fullwidth-code-point"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/is-fullwidth-code-point">is-fullwidth-code-point</a></td>
<td>Sindre Sorhus</td>
<td><a href="docs/legal/MIT.txt">MIT</a></td>
<td><a href="https://github.com/sindresorhus/is-fullwidth-code-point">Open Source</a></td>
<td align="center">✔️</td>
<td>Check if the character represented by a given Unicode code point is fullwidth.<br>Required by slice-ansi, string-width.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/is-typedarray"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/is-typedarray">is-typedarray</a></td>
<td>Hugh Kennedy</td>
<td><a href="docs/legal/MIT.txt">MIT</a></td>
<td><a href="https://github.com/hughsk/is-typedarray">Open Source</a></td>
<td align="center">✔️</td>
<td>Detect whether or not an object is a Typed Array.<br>Required by postman-request.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/isstream"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/isstream">isstream</a></td>
<td>Rod Vagg</td>
<td><a href="docs/legal/MIT.txt">MIT</a></td>
<td><a href="https://github.com/rvagg/isstream">Open Source</a></td>
<td align="center">✔️</td>
<td>Determine if an object is a Stream.<br>Required by postman-request.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/jquery"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/jquery">jquery</a></td>
<td>OpenJS Foundation and other contributors</td>
<td><a href="docs/legal/MIT.txt">MIT</a></td>
<td><a href="https://github.com/jquery/jquery">Open Source</a></td>
<td align="center">✔️</td>
<td>JavaScript library for DOM operations.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://github.com/EIGHTFINITE/jquery-1"><img src="https://avatars.githubusercontent.com/u/9919" width="31"></a></td>
<td><a href="https://github.com/EIGHTFINITE/jquery-1">jquery-1</a></td>
<td>jQuery Foundation and other contributors</td>
<td><a href="docs/legal/MIT.txt">MIT</a></td>
<td><a href="https://github.com/EIGHTFINITE/jquery-1">Open Source</a></td>
<td align="center">✔️</td>
<td>JavaScript library for DOM operations.</td>
<td align="center"><code>EIGHTFINITE/jquery-1#f8b71c4a6f8841502a982177fab36e007ab4c7a5</code><br>(based on <code>[email protected]</code>)</td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/jsbn"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/jsbn">jsbn</a></td>
<td>Tom Wu</td>
<td><a href="docs/legal/MIT.txt">MIT</a></td>
<td><a href="https://github.com/andyperlitch/jsbn">Open Source</a></td>
<td align="center">✔️</td>
<td>The jsbn library is a fast, portable implementation of large-number math in pure JavaScript, enabling public-key crypto and other applications on desktop and mobile browsers.<br>Required by ecc-jsbn, sshpk.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/json-schema"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/json-schema">json-schema</a></td>
<td>Kris Zyp</td>
<td><a href="docs/legal/AFL-2.1.txt">AFL-2.1</a> or <a href="docs/legal/BSD-3-Clause.txt">BSD-3-Clause</a></td>
<td><a href="https://github.com/kriszyp/json-schema">Open Source</a></td>
<td align="center">✔️</td>
<td>JSON Schema validation and specifications.<br>Required by jsprim.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/json-schema-traverse"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/json-schema-traverse">json-schema-traverse</a></td>
<td>Evgeny Poberezkin</td>
<td><a href="docs/legal/MIT.txt">MIT</a></td>
<td><a href="https://github.com/epoberezkin/json-schema-traverse">Open Source</a></td>
<td align="center">✔️</td>
<td>Traverse JSON Schema passing each schema object to callback.<br>Required by ajv.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/json-stringify-safe"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/json-stringify-safe">json-stringify-safe</a></td>
<td>Isaac Z. Schlueter</td>
<td><a href="docs/legal/ISC.txt">ISC</a></td>
<td><a href="https://github.com/isaacs/json-stringify-safe">Open Source</a></td>
<td align="center">✔️</td>
<td>Like JSON.stringify, but doesn't blow up on circular refs.<br>Required by postman-request.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/jsprim"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/jsprim">jsprim</a></td>
<td>joyent</td>
<td><a href="docs/legal/MIT.txt">MIT</a></td>
<td><a href="https://github.com/TritonDataCenter/node-jsprim">Open Source</a></td>
<td align="center">✔️</td>
<td>Utilities for primitive JavaScript types.<br>Required by http-signature.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/lodash.get"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/lodash.get">lodash.get</a></td>
<td>John-David Dalton</td>
<td><a href="docs/legal/MIT.txt">MIT</a></td>
<td><a href="https://github.com/lodash/lodash">Open Source</a></td>
<td align="center">✔️</td>
<td>The lodash method `_.get` exported as a module.<br>Required by better-npm-audit.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/lodash.isarraylike"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/lodash.isarraylike">lodash.isarraylike</a></td>
<td>John-David Dalton</td>
<td><a href="docs/legal/MIT.txt">MIT</a></td>
<td><a href="https://github.com/lodash/lodash">Open Source</a></td>
<td align="center">✔️</td>
<td>The lodash method `_.isArrayLike` exported as a module.<br>Required by cheerio.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/lodash.isfunction"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/lodash.isfunction">lodash.isfunction</a></td>
<td>John-David Dalton</td>
<td><a href="docs/legal/MIT.txt">MIT</a></td>
<td><a href="https://github.com/lodash/lodash">Open Source</a></td>
<td align="center">✔️</td>
<td>The Lodash method `_.isFunction` exported as a module.<br>Required by request-promise-core.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/lodash.isobjectlike"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/lodash.isobjectlike">lodash.isobjectlike</a></td>
<td>John-David Dalton</td>
<td><a href="docs/legal/MIT.txt">MIT</a></td>
<td><a href="https://github.com/lodash/lodash">Open Source</a></td>
<td align="center">✔️</td>
<td>The lodash method `_.isObjectLike` exported as a module.<br>Required by request-promise-core.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/lodash.isstring"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/lodash.isstring">lodash.isstring</a></td>
<td>John-David Dalton</td>
<td><a href="docs/legal/MIT.txt">MIT</a></td>
<td><a href="https://github.com/lodash/lodash">Open Source</a></td>
<td align="center">✔️</td>
<td>The lodash method `_.isString` exported as a module.<br>Required by request-promise-core.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/lodash.isundefined"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/lodash.isundefined">lodash.isundefined</a></td>
<td>John-David Dalton</td>
<td><a href="docs/legal/MIT.txt">MIT</a></td>
<td><a href="https://github.com/lodash/lodash">Open Source</a></td>
<td align="center">✔️</td>
<td>The modern build of lodash's `_.isUndefined` as a module.<br>Required by request-promise-core.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/lodash.truncate"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/lodash.truncate">lodash.truncate</a></td>
<td>John-David Dalton</td>
<td><a href="docs/legal/MIT.txt">MIT</a></td>
<td><a href="https://github.com/lodash/lodash">Open Source</a></td>
<td align="center">✔️</td>
<td>The lodash method `_.truncate` exported as a module.<br>Required by table.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/mime-db"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/mime-db">mime-db</a></td>
<td>jshttp</td>
<td><a href="docs/legal/MIT.txt">MIT</a></td>
<td><a href="https://github.com/jshttp/mime-db">Open Source</a></td>
<td align="center">✔️</td>
<td>Media Type Database.<br>Required by mime-types.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/mime-types"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/mime-types">mime-types</a></td>
<td>jshttp</td>
<td><a href="docs/legal/MIT.txt">MIT</a></td>
<td><a href="https://github.com/jshttp/mime-types">Open Source</a></td>
<td align="center">✔️</td>
<td>The ultimate JavaScript content-type utility.<br>Required by @postman/form-data, postman-request.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/ms"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/ms">ms</a></td>
<td>vercel</td>
<td><a href="docs/legal/MIT.txt">MIT</a></td>
<td><a href="https://github.com/vercel/ms">Open Source</a></td>
<td align="center">✔️</td>
<td>Tiny millisecond conversion utility.<br>Required by debug.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/npm"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/npm">npm</a></td>
<td>GitHub Inc.</td>
<td><a href="docs/legal/npm license.txt">npm license</a></td>
<td><a href="https://github.com/npm/cli">Open Source</a></td>
<td align="center">✔️</td>
<td>A package manager for JavaScript.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/@isaacs/cliui"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/@isaacs/cliui">npm/@isaacs/cliui</a></td>
<td>Ben Coe</td>
<td><a href="docs/legal/ISC.txt">ISC</a></td>
<td><a href="https://github.com/yargs/cliui">Open Source</a></td>
<td align="center">✔️</td>
<td>Easily create complex multi-column command-line-interfaces.<br>Required by npm/jackspeak.</td>
<td align="center"><code>@isaacs/[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/ansi-regex"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/ansi-regex">npm/@isaacs/cliui/ansi-regex</a></td>
<td>Sindre Sorhus</td>
<td><a href="docs/legal/MIT.txt">MIT</a></td>
<td><a href="https://github.com/chalk/ansi-regex">Open Source</a></td>
<td align="center">✔️</td>
<td>Regular expression for matching ANSI escape codes.<br>Required by npm/@isaacs/cliui/strip-ansi.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/emoji-regex"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/emoji-regex">npm/@isaacs/cliui/emoji-regex</a></td>
<td>Mathias Bynens</td>
<td><a href="docs/legal/MIT.txt">MIT</a></td>
<td><a href="https://github.com/mathiasbynens/emoji-regex">Open Source</a></td>
<td align="center">✔️</td>
<td>A regular expression to match all Emoji-only symbols as per the Unicode Standard.<br>Required by npm/@isaacs/cliui/string-width.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/string-width"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/string-width">npm/@isaacs/cliui/string-width</a></td>
<td>Sindre Sorhus</td>
<td><a href="docs/legal/MIT.txt">MIT</a></td>
<td><a href="https://github.com/sindresorhus/string-width">Open Source</a></td>
<td align="center">✔️</td>
<td>Get the visual width of a string - the number of columns required to display it.<br>Required by npm/@isaacs/cliui.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/strip-ansi"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/strip-ansi">npm/@isaacs/cliui/strip-ansi</a></td>
<td>Sindre Sorhus</td>
<td><a href="docs/legal/MIT.txt">MIT</a></td>
<td><a href="https://github.com/chalk/strip-ansi">Open Source</a></td>
<td align="center">✔️</td>
<td>Strip ANSI escape codes from a string.<br>Required by npm/@isaacs/cliui, npm/@isaacs/cliui/string-width.</td>
<td align="center"><code>[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/@isaacs/fs-minipass"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/@isaacs/fs-minipass">npm/@isaacs/fs-minipass</a></td>
<td>Isaac Z. Schlueter</td>
<td><a href="docs/legal/ISC.txt">ISC</a></td>
<td><a href="https://github.com/npm/fs-minipass">Open Source</a></td>
<td align="center">✔️</td>
<td>Fs read and write streams based on minipass.<br>Required by npm/cacache/tar.</td>
<td align="center"><code>@isaacs/[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/@isaacs/string-locale-compare"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/@isaacs/string-locale-compare">npm/@isaacs/string-locale-compare</a></td>
<td>Isaac Z. Schlueter</td>
<td><a href="docs/legal/ISC.txt">ISC</a></td>
<td><a href="https://github.com/isaacs/string-locale-compare">Open Source</a></td>
<td align="center">✔️</td>
<td>Compare strings with Intl.Collator if available, falling back to String.localeCompare otherwise.<br>Required by npm, npm/@npmcli/arborist.</td>
<td align="center"><code>@isaacs/[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/@npmcli/agent"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/@npmcli/agent">npm/@npmcli/agent</a></td>
<td>GitHub Inc.</td>
<td><a href="docs/legal/ISC.txt">ISC</a></td>
<td><a href="https://github.com/npm/agent">Open Source</a></td>
<td align="center">✔️</td>
<td>The http/https agent used by the npm cli.<br>Required by npm/make-fetch-happen.</td>
<td align="center"><code>@npmcli/[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/@npmcli/arborist"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/@npmcli/arborist">npm/@npmcli/arborist</a></td>
<td>GitHub Inc.</td>
<td><a href="docs/legal/ISC.txt">ISC</a></td>
<td><a href="https://github.com/npm/cli">Open Source</a></td>
<td align="center">✔️</td>
<td>Manage Node_modules trees.<br>Required by npm, npm/libnpmdiff, npm/libnpmexec, npm/libnpmfund, npm/libnpmpack.</td>
<td align="center"><code>@npmcli/[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/@npmcli/config"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/@npmcli/config">npm/@npmcli/config</a></td>
<td>GitHub Inc.</td>
<td><a href="docs/legal/ISC.txt">ISC</a></td>
<td><a href="https://github.com/npm/cli">Open Source</a></td>
<td align="center">✔️</td>
<td>Configuration management for the npm cli.<br>Required by npm.</td>
<td align="center"><code>@npmcli/[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/@npmcli/fs"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/@npmcli/fs">npm/@npmcli/fs</a></td>
<td>GitHub Inc.</td>
<td><a href="docs/legal/ISC.txt">ISC</a></td>
<td><a href="https://github.com/npm/fs">Open Source</a></td>
<td align="center">✔️</td>
<td>Filesystem utilities for the npm cli.<br>Required by npm, npm/@npmcli/arborist, npm/cacache.</td>
<td align="center"><code>@npmcli/[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/@npmcli/git"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/@npmcli/git">npm/@npmcli/git</a></td>
<td>GitHub Inc.</td>
<td><a href="docs/legal/ISC.txt">ISC</a></td>
<td><a href="https://github.com/npm/git">Open Source</a></td>
<td align="center">✔️</td>
<td>A util for spawning git from npm CLI contexts.<br>Required by npm/@npmcli/package-json, npm/libnpmversion, npm/pacote.</td>
<td align="center"><code>@npmcli/[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/@npmcli/installed-package-contents"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/@npmcli/installed-package-contents">npm/@npmcli/installed-package-contents</a></td>
<td>GitHub Inc.</td>
<td><a href="docs/legal/ISC.txt">ISC</a></td>
<td><a href="https://github.com/npm/installed-package-contents">Open Source</a></td>
<td align="center">✔️</td>
<td>Get the list of files installed in a package in Node_modules, including bundled dependencies.<br>Required by npm/@npmcli/arborist, npm/libnpmdiff, npm/pacote.</td>
<td align="center"><code>@npmcli/[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/@npmcli/map-workspaces"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/@npmcli/map-workspaces">npm/@npmcli/map-workspaces</a></td>
<td>GitHub Inc.</td>
<td><a href="docs/legal/ISC.txt">ISC</a></td>
<td><a href="https://github.com/npm/map-workspaces">Open Source</a></td>
<td align="center">✔️</td>
<td>Retrieves a name:pathname Map for a given workspaces config.<br>Required by npm, npm/@npmcli/arborist, npm/@npmcli/config.</td>
<td align="center"><code>@npmcli/[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/@npmcli/metavuln-calculator"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/@npmcli/metavuln-calculator">npm/@npmcli/metavuln-calculator</a></td>
<td>GitHub Inc.</td>
<td><a href="docs/legal/ISC.txt">ISC</a></td>
<td><a href="https://github.com/npm/metavuln-calculator">Open Source</a></td>
<td align="center">✔️</td>
<td>Calculate meta-vulnerabilities from package security advisories.<br>Required by npm/@npmcli/arborist.</td>
<td align="center"><code>@npmcli/[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/@npmcli/name-from-folder"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/@npmcli/name-from-folder">npm/@npmcli/name-from-folder</a></td>
<td>GitHub Inc.</td>
<td><a href="docs/legal/ISC.txt">ISC</a></td>
<td><a href="https://github.com/npm/name-from-folder">Open Source</a></td>
<td align="center">✔️</td>
<td>Get the package name from a folder path.<br>Required by npm/@npmcli/arborist, npm/@npmcli/map-workspaces.</td>
<td align="center"><code>@npmcli/[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/@npmcli/node-gyp"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/@npmcli/node-gyp">npm/@npmcli/node-gyp</a></td>
<td>GitHub Inc.</td>
<td><a href="docs/legal/ISC.txt">ISC</a></td>
<td><a href="https://github.com/npm/node-gyp">Open Source</a></td>
<td align="center">✔️</td>
<td>Tools for dealing with Node-gyp packages.<br>Required by npm/@npmcli/arborist, npm/@npmcli/run-script.</td>
<td align="center"><code>@npmcli/[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/@npmcli/package-json"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/@npmcli/package-json">npm/@npmcli/package-json</a></td>
<td>GitHub Inc.</td>
<td><a href="docs/legal/ISC.txt">ISC</a></td>
<td><a href="https://github.com/npm/package-json">Open Source</a></td>
<td align="center">✔️</td>
<td>Programmatic API to update package.json.<br>Required by npm, npm/@npmcli/arborist, npm/@npmcli/config, npm/@npmcli/map-workspaces, npm/@npmcli/run-script, npm/init-package-json, npm/pacote.</td>
<td align="center"><code>@npmcli/[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/@npmcli/promise-spawn"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/@npmcli/promise-spawn">npm/@npmcli/promise-spawn</a></td>
<td>GitHub Inc.</td>
<td><a href="docs/legal/ISC.txt">ISC</a></td>
<td><a href="https://github.com/npm/promise-spawn">Open Source</a></td>
<td align="center">✔️</td>
<td>Spawn processes the way the npm cli likes to do.<br>Required by npm, npm/@npmcli/git, npm/@npmcli/run-script, npm/pacote.</td>
<td align="center"><code>@npmcli/[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/@npmcli/query"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/@npmcli/query">npm/@npmcli/query</a></td>
<td>GitHub Inc.</td>
<td><a href="docs/legal/ISC.txt">ISC</a></td>
<td><a href="https://github.com/npm/query">Open Source</a></td>
<td align="center">✔️</td>
<td>npm query parser and tools.<br>Required by npm/@npmcli/arborist.</td>
<td align="center"><code>@npmcli/[email protected]</code></td>
</tr>
<tr>
<td align="center"><a href="https://www.npmjs.com/package/@npmcli/redact"><img src="https://raw.githubusercontent.com/npm/logos/master/npm%20logo/classic/npm-2009.svg" width="31"></a></td>
<td><a href="https://www.npmjs.com/package/@npmcli/redact">npm/@npmcli/redact</a></td>
<td>GitHub Inc.</td>