Home
Docs
GitHub
Pricing
Blog
Log In

Run Sandworm Audit for your App

Get started
Generated on Apr 25, 2024 via pnpm

browserslist 4.21.5

Share target browsers between different front-end tools, like Autoprefixer, Stylelint and babel-env-preset
Package summary
Share
2
issues
1
high severity
license
1
1
low severity
license
1
3
licenses
4
MIT
2
ISC
1
CC-BY-4.0
Package created
15 Dec 2014
Version published
30 Jan 2023
Maintainers
1
Total deps
7
Direct deps
4
License
MIT

Issues

2

1 high severity issue

high
Recommendation: Read and validate the license terms
via: caniuse-lite@1.0.30001612
Collapse
Expand

1 low severity issue

low
Recommendation: Read and validate the license terms
via: caniuse-lite@1.0.30001612
Collapse
Expand

Licenses

MIT License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
sublicense
private-use
Cannot
hold-liable
Must
include-copyright
include-license
4 Packages, Including:
browserslist@4.21.5
escalade@3.1.2
node-releases@2.0.14
update-browserslist-db@1.0.13

ISC License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
Cannot
hold-liable
Must
include-copyright
include-license
2 Packages, Including:
electron-to-chromium@1.4.748
picocolors@1.0.0

Creative Commons Attribution 4.0 International

Uncategorized
Not OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
Cannot
Must
1 Packages, Including:
caniuse-lite@1.0.30001612
Disclaimer

This deed highlights only some of the key features and terms of the actual license. It is not a license and has no legal value. You should carefully review all of the terms and conditions of the actual license before using the licensed material.

Sandworm is not a law firm and does not provide legal services. Distributing, displaying, or linking to this deed or the license that it summarizes does not create a lawyer-client or any other relationship.

Direct Dependencies

4
All Dependencies CSV
β“˜ This is a list of browserslist 's direct dependencies. Data on all dependencies, including transitive ones, is available via CSV download.
NameVersionSizeLicenseTypeVulnerabilities
caniuse-lite1.0.300016121.95 MBCC-BY-4.0
prod
1
1
electron-to-chromium1.4.748279.19 kBISC
prod
node-releases2.0.144.52 kBMIT
prod
update-browserslist-db1.0.134.74 kBMIT
prod

Visualizations

Frequently Asked Questions

What does browserslist do?

Browserslist is an advanced tool used to share targeted browsers and Node.js versions across various front-end tools such as Autoprefixer, Babel, postcss-preset-env, eslint-plugin-compat, stylelint-no-unsupported-browser-features, postcss-normalize, and obsolete-webpack-plugin. It's an essential instrument to ensure cross-browser compatibility by allowing developers to specify a list of browser versions their project needs to support.

How do you use browserslist?

To use Browserslist, you need to add a specification to your project's package.json file or a .browserslistrc configuration file. Using this utility, developers can set their version lists using queries like 'last 2 versions' freeing them from manually updating versions.

Here is how you can include it in your package.json:

  "browserslist": [
    "defaults and fully supports es6-module",
    "maintained node versions"
  ]

Alternatively, use a .browserslistrc config file:

# Browsers that we support

defaults and fully supports es6-module
maintained node versions

For a visual representation of how your configuration works, you can check your settings on the Browserslist playground.

Where are the browserslist docs?

Browserslist has extensive documentation which can be accessed from their GitHub repository. You can find the complete documentation, full of valuable information and examples that help you understand and master this tool, here.