Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

browserslist-config-anolilab

Package Overview
Dependencies
Maintainers
1
Versions
48
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

browserslist-config-anolilab

Shareable browserlist config for Anolilab.

  • 2.0.0
  • next
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
626
increased by115.86%
Maintainers
1
Weekly downloads
 
Created
Source

Browserslist Config

This configuration reflects Growcss's supported browser policy for their UI library and build tools.

What is Browserslist?

Browserslist is a library to share a browsers list between different front-end tools, like Autoprefixer, Eslint, and Stylelint.

Supported Browsers

{
    "production": [
        "> 1%",
        "last 2 versions",
        "Firefox ESR"
    ],
    "legacyBrowsers": [
        "> 1%",
        "last 2 versions",
        "Firefox ESR"
    ],
    "modernBrowsers": [
        "last 2 Chrome versions",
        "not Chrome < 60",
        "last 2 Safari versions",
        "not Safari < 10.1",
        "last 2 iOS versions",
        "not iOS < 10.3",
        "last 2 Firefox versions",
        "not Firefox < 54",
        "last 2 Edge versions",
        "not Edge < 15"
    ],
    "ssr": [
        "node 12"
    ]
}

Installation

Install the module

$ npm install browserslist-config-anolilab --save-dev

Usage

package.json

{
    "browserslist": ["extends browserslist-config-anolilab"]
}

Alternatively, add this to .browserslistrc file:

extends browserslist-config-anolilab

or when using babel-preset-env

{
    presets: [
        [
            'env',
            {
                targets: {
                    browsers: require('browserslist-config-anolilab'),
                },
            },
        ],
    ];
}

Keywords

FAQs

Package last updated on 19 Apr 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc