Socket
Socket
Sign inDemoInstall

@babel/preset-env

Package Overview
Dependencies
119
Maintainers
5
Versions
169
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 7.4.2 to 7.4.3

3

data/plugin-features.js

@@ -102,2 +102,5 @@ const es = {

"transform-named-capturing-groups-regex": "RegExp named capture groups",
"transform-member-expression-literals": "Object/array literal extensions / Reserved words as property names",
"transform-property-literals": "Object/array literal extensions / Reserved words as property names",
"transform-reserved-words": "Miscellaneous / Unreserved words",
};

@@ -104,0 +107,0 @@

@@ -304,3 +304,45 @@ {

"electron": "3.1"
},
"transform-member-expression-literals": {
"chrome": "7",
"opera": "12",
"edge": "12",
"firefox": "2",
"safari": "5.1",
"node": "0.10",
"ie": "9",
"android": "4",
"ios": "6",
"phantom": "2",
"samsung": "2.1",
"electron": "5"
},
"transform-property-literals": {
"chrome": "7",
"opera": "12",
"edge": "12",
"firefox": "2",
"safari": "5.1",
"node": "0.10",
"ie": "9",
"android": "4",
"ios": "6",
"phantom": "2",
"samsung": "2.1",
"electron": "5"
},
"transform-reserved-words": {
"chrome": "13",
"opera": "10.50",
"edge": "12",
"firefox": "2",
"safari": "3.1",
"node": "0.10",
"ie": "9",
"android": "4.4",
"ios": "6",
"phantom": "2",
"samsung": "2.1",
"electron": "0.2"
}
}

@@ -26,2 +26,3 @@ "use strict";

"transform-literals": require("@babel/plugin-transform-literals"),
"transform-member-expression-literals": require("@babel/plugin-transform-member-expression-literals"),
"transform-modules-amd": require("@babel/plugin-transform-modules-amd"),

@@ -34,2 +35,4 @@ "transform-modules-commonjs": require("@babel/plugin-transform-modules-commonjs"),

"transform-parameters": require("@babel/plugin-transform-parameters"),
"transform-property-literals": require("@babel/plugin-transform-property-literals"),
"transform-reserved-words": require("@babel/plugin-transform-reserved-words"),
"transform-shorthand-properties": require("@babel/plugin-transform-shorthand-properties"),

@@ -36,0 +39,0 @@ "transform-spread": require("@babel/plugin-transform-spread"),

@@ -51,2 +51,6 @@ "use strict";

function isCoreJSSource(source) {
if (typeof source === "string") {
source = source.replace(/\\/g, "/").replace(/(\/(index)?)?(\.js)?$/i, "").toLowerCase();
}
return (0, _utils.has)(_entries().default, source) && _entries().default[source];

@@ -53,0 +57,0 @@ }

39

package.json
{
"name": "@babel/preset-env",
"version": "7.4.2",
"version": "7.4.3",
"description": "A Babel preset for each environment.",

@@ -21,3 +21,3 @@ "author": "Henry Zhu <hi@henryzoo.com>",

"@babel/plugin-proposal-json-strings": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.4.0",
"@babel/plugin-proposal-object-rest-spread": "^7.4.3",
"@babel/plugin-proposal-optional-catch-binding": "^7.2.0",

@@ -33,13 +33,14 @@ "@babel/plugin-proposal-unicode-property-regex": "^7.4.0",

"@babel/plugin-transform-block-scoping": "^7.4.0",
"@babel/plugin-transform-classes": "^7.4.0",
"@babel/plugin-transform-classes": "^7.4.3",
"@babel/plugin-transform-computed-properties": "^7.2.0",
"@babel/plugin-transform-destructuring": "^7.4.0",
"@babel/plugin-transform-dotall-regex": "^7.2.0",
"@babel/plugin-transform-destructuring": "^7.4.3",
"@babel/plugin-transform-dotall-regex": "^7.4.3",
"@babel/plugin-transform-duplicate-keys": "^7.2.0",
"@babel/plugin-transform-exponentiation-operator": "^7.2.0",
"@babel/plugin-transform-for-of": "^7.4.0",
"@babel/plugin-transform-function-name": "^7.2.0",
"@babel/plugin-transform-for-of": "^7.4.3",
"@babel/plugin-transform-function-name": "^7.4.3",
"@babel/plugin-transform-literals": "^7.2.0",
"@babel/plugin-transform-member-expression-literals": "^7.2.0",
"@babel/plugin-transform-modules-amd": "^7.2.0",
"@babel/plugin-transform-modules-commonjs": "^7.4.0",
"@babel/plugin-transform-modules-commonjs": "^7.4.3",
"@babel/plugin-transform-modules-systemjs": "^7.4.0",

@@ -50,4 +51,6 @@ "@babel/plugin-transform-modules-umd": "^7.2.0",

"@babel/plugin-transform-object-super": "^7.2.0",
"@babel/plugin-transform-parameters": "^7.4.0",
"@babel/plugin-transform-regenerator": "^7.4.0",
"@babel/plugin-transform-parameters": "^7.4.3",
"@babel/plugin-transform-property-literals": "^7.2.0",
"@babel/plugin-transform-regenerator": "^7.4.3",
"@babel/plugin-transform-reserved-words": "^7.2.0",
"@babel/plugin-transform-shorthand-properties": "^7.2.0",

@@ -58,9 +61,9 @@ "@babel/plugin-transform-spread": "^7.2.0",

"@babel/plugin-transform-typeof-symbol": "^7.2.0",
"@babel/plugin-transform-unicode-regex": "^7.2.0",
"@babel/plugin-transform-unicode-regex": "^7.4.3",
"@babel/types": "^7.4.0",
"browserslist": "^4.4.2",
"browserslist": "^4.5.2",
"core-js-compat": "^3.0.0",
"invariant": "^2.2.2",
"js-levenshtein": "^1.1.3",
"semver": "^5.3.0"
"semver": "^5.5.0"
},

@@ -71,12 +74,12 @@ "peerDependencies": {

"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.0",
"@babel/helper-fixtures": "^7.2.0",
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/helper-fixtures": "^7.4.3",
"@babel/helper-plugin-test-runner": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"caniuse-db": "1.0.30000938",
"caniuse-db": "1.0.30000951",
"compat-table": "kangax/compat-table#6d012ba020fa7415e8a2d29e87924bab79b128a3",
"electron-to-chromium": "1.3.113"
},
"gitHead": "7dea0f23de51af336a2fab0286a73af30cddf3be"
"gitHead": "508fde4009f31883f318b9e6546459ac1b086a91"
}
SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc