https://github.com/studiometa/browserslist-config
A shareable Browserlist config.
https://github.com/studiometa/browserslist-config
Last synced: about 1 year ago
JSON representation
A shareable Browserlist config.
- Host: GitHub
- URL: https://github.com/studiometa/browserslist-config
- Owner: studiometa
- License: mit
- Created: 2020-05-30T10:21:48.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2024-05-07T13:22:41.000Z (about 2 years ago)
- Last Synced: 2025-03-31T04:35:37.684Z (about 1 year ago)
- Language: JavaScript
- Size: 319 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Browserslists config
[](https://www.npmjs.com/package/@studiometa/browserslist-config)
> A shareable Browserlist configuration.
## Installation
Install the package via NPM:
```bash
npm install --save-dev @studiometa/browserslist-config
```
## Usage
Extend the configuration in your project's `package.json` file:
```json
{
"browserslist": [
"extends @studiometa/browserslist-config"
]
}
```
See the [documentation on shareable configuration](https://github.com/browserslist/browserslist#shareable-configs) for more information.
The exported configuration matches the following:
```
> 0.2%
last 4 versions
not dead
node >= 10
```
If you need to add support for Internet Explorer 10, you can add it to your project's `package.json` file:
```json
{
"browserslist": [
"extends @studiometa/browserslist-config",
"IE 10"
]
}
```