Socket
Socket
Sign inDemoInstall

browserslist

Package Overview
Dependencies
Maintainers
1
Versions
191
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

browserslist - npm Package Compare versions

Comparing version 4.16.5 to 4.16.6

6

package.json
{
"name": "browserslist",
"version": "4.16.5",
"version": "4.16.6",
"description": "Share target browsers between different front-end tools, like Autoprefixer, Stylelint and babel-env-preset",

@@ -18,5 +18,5 @@ "keywords": [

"dependencies": {
"caniuse-lite": "^1.0.30001214",
"caniuse-lite": "^1.0.30001219",
"colorette": "^1.2.2",
"electron-to-chromium": "^1.3.719",
"electron-to-chromium": "^1.3.723",
"escalade": "^3.1.1",

@@ -23,0 +23,0 @@ "node-releases": "^1.1.71"

@@ -27,2 +27,3 @@ var childProcess = require('child_process')

var lockfileNpm = path.join(packageDir, 'package-lock.json')
var lockfileShrinkwrap = path.join(packageDir, 'npm-shrinkwrap.json')
var lockfileYarn = path.join(packageDir, 'yarn.lock')

@@ -37,2 +38,4 @@ var lockfilePnpm = path.join(packageDir, 'pnpm-lock.yaml')

return { mode: 'yarn', file: lockfileYarn }
} else if (fs.existsSync(lockfileShrinkwrap)) {
return { mode: 'npm', file: lockfileShrinkwrap }
}

@@ -39,0 +42,0 @@ throw new BrowserslistError(

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