This commit is contained in:
Nicolò Ribaudo 2019-02-25 19:29:12 +01:00
parent 4540f2653b
commit 1f6454cc90
No known key found for this signature in database
GPG Key ID: A4A1F3B82CA4542E
23 changed files with 74 additions and 74 deletions

View File

@ -1,5 +1,5 @@
{ {
"version": "7.3.3", "version": "7.3.4",
"changelog": { "changelog": {
"repo": "babel/babel", "repo": "babel/babel",
"cacheDir": ".changelog", "cacheDir": ".changelog",

View File

@ -1,6 +1,6 @@
{ {
"name": "@babel/core", "name": "@babel/core",
"version": "7.3.3", "version": "7.3.4",
"description": "Babel compiler core.", "description": "Babel compiler core.",
"main": "lib/index.js", "main": "lib/index.js",
"author": "Sebastian McKenzie <sebmck@gmail.com>", "author": "Sebastian McKenzie <sebmck@gmail.com>",
@ -34,12 +34,12 @@
}, },
"dependencies": { "dependencies": {
"@babel/code-frame": "^7.0.0", "@babel/code-frame": "^7.0.0",
"@babel/generator": "^7.3.3", "@babel/generator": "^7.3.4",
"@babel/helpers": "^7.2.0", "@babel/helpers": "^7.2.0",
"@babel/parser": "^7.3.3", "@babel/parser": "^7.3.4",
"@babel/template": "^7.2.2", "@babel/template": "^7.2.2",
"@babel/traverse": "^7.2.2", "@babel/traverse": "^7.3.4",
"@babel/types": "^7.3.3", "@babel/types": "^7.3.4",
"convert-source-map": "^1.1.0", "convert-source-map": "^1.1.0",
"debug": "^4.1.0", "debug": "^4.1.0",
"json5": "^2.1.0", "json5": "^2.1.0",

View File

@ -1,6 +1,6 @@
{ {
"name": "@babel/generator", "name": "@babel/generator",
"version": "7.3.3", "version": "7.3.4",
"description": "Turns an AST into code.", "description": "Turns an AST into code.",
"author": "Sebastian McKenzie <sebmck@gmail.com>", "author": "Sebastian McKenzie <sebmck@gmail.com>",
"homepage": "https://babeljs.io/", "homepage": "https://babeljs.io/",
@ -14,7 +14,7 @@
"lib" "lib"
], ],
"dependencies": { "dependencies": {
"@babel/types": "^7.3.3", "@babel/types": "^7.3.4",
"jsesc": "^2.5.1", "jsesc": "^2.5.1",
"lodash": "^4.17.11", "lodash": "^4.17.11",
"source-map": "^0.5.0", "source-map": "^0.5.0",
@ -22,6 +22,6 @@
}, },
"devDependencies": { "devDependencies": {
"@babel/helper-fixtures": "^7.2.0", "@babel/helper-fixtures": "^7.2.0",
"@babel/parser": "^7.3.3" "@babel/parser": "^7.3.4"
} }
} }

View File

@ -1,6 +1,6 @@
{ {
"name": "@babel/helper-create-class-features-plugin", "name": "@babel/helper-create-class-features-plugin",
"version": "7.3.2", "version": "7.3.4",
"author": "The Babel Team (https://babeljs.io/team)", "author": "The Babel Team (https://babeljs.io/team)",
"license": "MIT", "license": "MIT",
"description": "Compile class public and private fields, private methods and decorators to ES6", "description": "Compile class public and private fields, private methods and decorators to ES6",
@ -18,14 +18,14 @@
"@babel/helper-member-expression-to-functions": "^7.0.0", "@babel/helper-member-expression-to-functions": "^7.0.0",
"@babel/helper-optimise-call-expression": "^7.0.0", "@babel/helper-optimise-call-expression": "^7.0.0",
"@babel/helper-plugin-utils": "^7.0.0", "@babel/helper-plugin-utils": "^7.0.0",
"@babel/helper-replace-supers": "^7.2.3", "@babel/helper-replace-supers": "^7.3.4",
"@babel/helper-split-export-declaration": "^7.0.0" "@babel/helper-split-export-declaration": "^7.0.0"
}, },
"peerDependencies": { "peerDependencies": {
"@babel/core": "^7.0.0" "@babel/core": "^7.0.0"
}, },
"devDependencies": { "devDependencies": {
"@babel/core": "^7.2.2", "@babel/core": "^7.3.4",
"@babel/helper-plugin-test-runner": "^7.0.0" "@babel/helper-plugin-test-runner": "^7.0.0"
} }
} }

View File

@ -1,6 +1,6 @@
{ {
"name": "@babel/helper-replace-supers", "name": "@babel/helper-replace-supers",
"version": "7.2.3", "version": "7.3.4",
"description": "Helper function to replace supers", "description": "Helper function to replace supers",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-replace-supers", "repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-replace-supers",
"license": "MIT", "license": "MIT",
@ -11,7 +11,7 @@
"dependencies": { "dependencies": {
"@babel/helper-member-expression-to-functions": "^7.0.0", "@babel/helper-member-expression-to-functions": "^7.0.0",
"@babel/helper-optimise-call-expression": "^7.0.0", "@babel/helper-optimise-call-expression": "^7.0.0",
"@babel/traverse": "^7.2.3", "@babel/traverse": "^7.3.4",
"@babel/types": "^7.0.0" "@babel/types": "^7.3.4"
} }
} }

View File

@ -1,6 +1,6 @@
{ {
"name": "@babel/parser", "name": "@babel/parser",
"version": "7.3.3", "version": "7.3.4",
"description": "A JavaScript parser", "description": "A JavaScript parser",
"author": "Sebastian McKenzie <sebmck@gmail.com>", "author": "Sebastian McKenzie <sebmck@gmail.com>",
"homepage": "https://babeljs.io/", "homepage": "https://babeljs.io/",

View File

@ -1,6 +1,6 @@
{ {
"name": "@babel/plugin-proposal-class-properties", "name": "@babel/plugin-proposal-class-properties",
"version": "7.3.3", "version": "7.3.4",
"description": "This plugin transforms static class properties as well as properties declared with the property initializer syntax", "description": "This plugin transforms static class properties as well as properties declared with the property initializer syntax",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-class-properties", "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-class-properties",
"license": "MIT", "license": "MIT",
@ -12,14 +12,14 @@
"babel-plugin" "babel-plugin"
], ],
"dependencies": { "dependencies": {
"@babel/helper-create-class-features-plugin": "^7.3.0", "@babel/helper-create-class-features-plugin": "^7.3.4",
"@babel/helper-plugin-utils": "^7.0.0" "@babel/helper-plugin-utils": "^7.0.0"
}, },
"peerDependencies": { "peerDependencies": {
"@babel/core": "^7.0.0-0" "@babel/core": "^7.0.0-0"
}, },
"devDependencies": { "devDependencies": {
"@babel/core": "^7.3.3", "@babel/core": "^7.3.4",
"@babel/helper-plugin-test-runner": "^7.0.0" "@babel/helper-plugin-test-runner": "^7.0.0"
} }
} }

View File

@ -1,6 +1,6 @@
{ {
"name": "@babel/plugin-proposal-object-rest-spread", "name": "@babel/plugin-proposal-object-rest-spread",
"version": "7.3.2", "version": "7.3.4",
"description": "Compile object rest and spread to ES5", "description": "Compile object rest and spread to ES5",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-object-rest-spread", "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-object-rest-spread",
"license": "MIT", "license": "MIT",
@ -19,7 +19,7 @@
"@babel/core": "^7.0.0-0" "@babel/core": "^7.0.0-0"
}, },
"devDependencies": { "devDependencies": {
"@babel/core": "^7.2.0", "@babel/core": "^7.3.4",
"@babel/helper-plugin-test-runner": "^7.0.0" "@babel/helper-plugin-test-runner": "^7.0.0"
} }
} }

View File

@ -1,6 +1,6 @@
{ {
"name": "@babel/plugin-proposal-private-methods", "name": "@babel/plugin-proposal-private-methods",
"version": "7.3.2", "version": "7.3.4",
"description": "This plugin transforms private class methods", "description": "This plugin transforms private class methods",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-private-methods", "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-proposal-private-methods",
"license": "MIT", "license": "MIT",
@ -12,14 +12,14 @@
"babel-plugin" "babel-plugin"
], ],
"dependencies": { "dependencies": {
"@babel/helper-create-class-features-plugin": "^7.3.2", "@babel/helper-create-class-features-plugin": "^7.3.4",
"@babel/helper-plugin-utils": "^7.0.0" "@babel/helper-plugin-utils": "^7.0.0"
}, },
"peerDependencies": { "peerDependencies": {
"@babel/core": "^7.0.0-0" "@babel/core": "^7.0.0-0"
}, },
"devDependencies": { "devDependencies": {
"@babel/core": "^7.2.0", "@babel/core": "^7.3.4",
"@babel/helper-plugin-test-runner": "^7.0.0" "@babel/helper-plugin-test-runner": "^7.0.0"
} }
} }

View File

@ -1,6 +1,6 @@
{ {
"name": "@babel/plugin-transform-async-to-generator", "name": "@babel/plugin-transform-async-to-generator",
"version": "7.2.0", "version": "7.3.4",
"description": "Turn async functions into ES2015 generators", "description": "Turn async functions into ES2015 generators",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-async-to-generator", "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-async-to-generator",
"license": "MIT", "license": "MIT",
@ -20,7 +20,7 @@
"@babel/core": "^7.0.0-0" "@babel/core": "^7.0.0-0"
}, },
"devDependencies": { "devDependencies": {
"@babel/core": "^7.2.0", "@babel/core": "^7.3.4",
"@babel/helper-plugin-test-runner": "^7.0.0" "@babel/helper-plugin-test-runner": "^7.0.0"
} }
} }

View File

@ -1,6 +1,6 @@
{ {
"name": "@babel/plugin-transform-block-scoping", "name": "@babel/plugin-transform-block-scoping",
"version": "7.2.0", "version": "7.3.4",
"description": "Compile ES2015 block scoping (const and let) to ES5", "description": "Compile ES2015 block scoping (const and let) to ES5",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-block-scoping", "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-block-scoping",
"license": "MIT", "license": "MIT",
@ -19,7 +19,7 @@
"@babel/core": "^7.0.0-0" "@babel/core": "^7.0.0-0"
}, },
"devDependencies": { "devDependencies": {
"@babel/core": "^7.2.0", "@babel/core": "^7.3.4",
"@babel/helper-plugin-test-runner": "^7.0.0" "@babel/helper-plugin-test-runner": "^7.0.0"
} }
} }

View File

@ -1,6 +1,6 @@
{ {
"name": "@babel/plugin-transform-classes", "name": "@babel/plugin-transform-classes",
"version": "7.3.3", "version": "7.3.4",
"description": "Compile ES2015 classes to ES5", "description": "Compile ES2015 classes to ES5",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-classes", "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-classes",
"license": "MIT", "license": "MIT",
@ -14,7 +14,7 @@
"@babel/helper-function-name": "^7.1.0", "@babel/helper-function-name": "^7.1.0",
"@babel/helper-optimise-call-expression": "^7.0.0", "@babel/helper-optimise-call-expression": "^7.0.0",
"@babel/helper-plugin-utils": "^7.0.0", "@babel/helper-plugin-utils": "^7.0.0",
"@babel/helper-replace-supers": "^7.1.0", "@babel/helper-replace-supers": "^7.3.4",
"@babel/helper-split-export-declaration": "^7.0.0", "@babel/helper-split-export-declaration": "^7.0.0",
"globals": "^11.1.0" "globals": "^11.1.0"
}, },
@ -25,7 +25,7 @@
"@babel/core": "^7.0.0-0" "@babel/core": "^7.0.0-0"
}, },
"devDependencies": { "devDependencies": {
"@babel/core": "^7.3.3", "@babel/core": "^7.3.4",
"@babel/helper-plugin-test-runner": "^7.0.0" "@babel/helper-plugin-test-runner": "^7.0.0"
} }
} }

View File

@ -1,6 +1,6 @@
{ {
"name": "@babel/plugin-transform-flow-strip-types", "name": "@babel/plugin-transform-flow-strip-types",
"version": "7.2.3", "version": "7.3.4",
"description": "Strip flow type annotations from your output code.", "description": "Strip flow type annotations from your output code.",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-flow-strip-types", "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-flow-strip-types",
"license": "MIT", "license": "MIT",
@ -19,7 +19,7 @@
"@babel/core": "^7.0.0-0" "@babel/core": "^7.0.0-0"
}, },
"devDependencies": { "devDependencies": {
"@babel/core": "^7.2.0", "@babel/core": "^7.3.4",
"@babel/helper-plugin-test-runner": "^7.0.0" "@babel/helper-plugin-test-runner": "^7.0.0"
} }
} }

View File

@ -1,6 +1,6 @@
{ {
"name": "@babel/plugin-transform-modules-systemjs", "name": "@babel/plugin-transform-modules-systemjs",
"version": "7.2.0", "version": "7.3.4",
"description": "This plugin transforms ES2015 modules to SystemJS", "description": "This plugin transforms ES2015 modules to SystemJS",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-modules-systemjs", "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-modules-systemjs",
"license": "MIT", "license": "MIT",
@ -19,7 +19,7 @@
"@babel/core": "^7.0.0-0" "@babel/core": "^7.0.0-0"
}, },
"devDependencies": { "devDependencies": {
"@babel/core": "^7.2.0", "@babel/core": "^7.3.4",
"@babel/helper-plugin-test-runner": "^7.0.0", "@babel/helper-plugin-test-runner": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0" "@babel/plugin-syntax-dynamic-import": "^7.2.0"
} }

View File

@ -2,7 +2,7 @@
"name": "@babel/plugin-transform-regenerator", "name": "@babel/plugin-transform-regenerator",
"author": "Ben Newman <bn@cs.stanford.edu>", "author": "Ben Newman <bn@cs.stanford.edu>",
"description": "Explode async and generator functions into a state machine.", "description": "Explode async and generator functions into a state machine.",
"version": "7.0.0", "version": "7.3.4",
"homepage": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-regenerator", "homepage": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-regenerator",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-regenerator", "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-regenerator",
"main": "lib/index.js", "main": "lib/index.js",
@ -17,7 +17,7 @@
"@babel/core": "^7.0.0-0" "@babel/core": "^7.0.0-0"
}, },
"devDependencies": { "devDependencies": {
"@babel/core": "^7.0.0", "@babel/core": "^7.3.4",
"@babel/helper-plugin-test-runner": "^7.0.0" "@babel/helper-plugin-test-runner": "^7.0.0"
} }
} }

View File

@ -1,6 +1,6 @@
{ {
"name": "@babel/plugin-transform-runtime", "name": "@babel/plugin-transform-runtime",
"version": "7.2.0", "version": "7.3.4",
"description": "Externalise references to helpers and builtins, automatically polyfilling your code without polluting globals", "description": "Externalise references to helpers and builtins, automatically polyfilling your code without polluting globals",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-runtime", "repository": "https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-runtime",
"license": "MIT", "license": "MIT",
@ -21,12 +21,12 @@
"@babel/core": "^7.0.0-0" "@babel/core": "^7.0.0-0"
}, },
"devDependencies": { "devDependencies": {
"@babel/core": "^7.2.0", "@babel/core": "^7.3.4",
"@babel/helper-plugin-test-runner": "^7.0.0", "@babel/helper-plugin-test-runner": "^7.0.0",
"@babel/helpers": "^7.2.0", "@babel/helpers": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0", "@babel/plugin-transform-runtime": "^7.3.4",
"@babel/preset-env": "^7.2.0", "@babel/preset-env": "^7.3.4",
"@babel/runtime": "^7.2.0", "@babel/runtime": "^7.3.4",
"@babel/template": "^7.0.0", "@babel/template": "^7.0.0",
"@babel/types": "7.0.0-beta.53" "@babel/types": "7.0.0-beta.53"
} }

View File

@ -1,6 +1,6 @@
{ {
"name": "@babel/preset-env-standalone", "name": "@babel/preset-env-standalone",
"version": "7.3.3", "version": "7.3.4",
"description": "Standalone build of babel-prest-env for use in non-Node.js environments.", "description": "Standalone build of babel-prest-env for use in non-Node.js environments.",
"main": "babel-preset-env.js", "main": "babel-preset-env.js",
"files": [ "files": [
@ -12,8 +12,8 @@
"@babel/plugin-proposal-json-strings": "^7.0.0", "@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-transform-named-capturing-groups-regex": "^7.3.0", "@babel/plugin-transform-named-capturing-groups-regex": "^7.3.0",
"@babel/plugin-transform-new-target": "^7.0.0", "@babel/plugin-transform-new-target": "^7.0.0",
"@babel/preset-env": "^7.3.1", "@babel/preset-env": "^7.3.4",
"@babel/standalone": "^7.3.3" "@babel/standalone": "^7.3.4"
}, },
"keywords": [ "keywords": [
"babel", "babel",

View File

@ -1,6 +1,6 @@
{ {
"name": "@babel/preset-env", "name": "@babel/preset-env",
"version": "7.3.1", "version": "7.3.4",
"description": "A Babel preset for each environment.", "description": "A Babel preset for each environment.",
"author": "Henry Zhu <hi@henryzoo.com>", "author": "Henry Zhu <hi@henryzoo.com>",
"homepage": "https://babeljs.io/", "homepage": "https://babeljs.io/",
@ -18,7 +18,7 @@
"@babel/helper-plugin-utils": "^7.0.0", "@babel/helper-plugin-utils": "^7.0.0",
"@babel/plugin-proposal-async-generator-functions": "^7.2.0", "@babel/plugin-proposal-async-generator-functions": "^7.2.0",
"@babel/plugin-proposal-json-strings": "^7.2.0", "@babel/plugin-proposal-json-strings": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.3.1", "@babel/plugin-proposal-object-rest-spread": "^7.3.4",
"@babel/plugin-proposal-optional-catch-binding": "^7.2.0", "@babel/plugin-proposal-optional-catch-binding": "^7.2.0",
"@babel/plugin-proposal-unicode-property-regex": "^7.2.0", "@babel/plugin-proposal-unicode-property-regex": "^7.2.0",
"@babel/plugin-syntax-async-generators": "^7.2.0", "@babel/plugin-syntax-async-generators": "^7.2.0",
@ -26,10 +26,10 @@
"@babel/plugin-syntax-object-rest-spread": "^7.2.0", "@babel/plugin-syntax-object-rest-spread": "^7.2.0",
"@babel/plugin-syntax-optional-catch-binding": "^7.2.0", "@babel/plugin-syntax-optional-catch-binding": "^7.2.0",
"@babel/plugin-transform-arrow-functions": "^7.2.0", "@babel/plugin-transform-arrow-functions": "^7.2.0",
"@babel/plugin-transform-async-to-generator": "^7.2.0", "@babel/plugin-transform-async-to-generator": "^7.3.4",
"@babel/plugin-transform-block-scoped-functions": "^7.2.0", "@babel/plugin-transform-block-scoped-functions": "^7.2.0",
"@babel/plugin-transform-block-scoping": "^7.2.0", "@babel/plugin-transform-block-scoping": "^7.3.4",
"@babel/plugin-transform-classes": "^7.2.0", "@babel/plugin-transform-classes": "^7.3.4",
"@babel/plugin-transform-computed-properties": "^7.2.0", "@babel/plugin-transform-computed-properties": "^7.2.0",
"@babel/plugin-transform-destructuring": "^7.2.0", "@babel/plugin-transform-destructuring": "^7.2.0",
"@babel/plugin-transform-dotall-regex": "^7.2.0", "@babel/plugin-transform-dotall-regex": "^7.2.0",
@ -40,13 +40,13 @@
"@babel/plugin-transform-literals": "^7.2.0", "@babel/plugin-transform-literals": "^7.2.0",
"@babel/plugin-transform-modules-amd": "^7.2.0", "@babel/plugin-transform-modules-amd": "^7.2.0",
"@babel/plugin-transform-modules-commonjs": "^7.2.0", "@babel/plugin-transform-modules-commonjs": "^7.2.0",
"@babel/plugin-transform-modules-systemjs": "^7.2.0", "@babel/plugin-transform-modules-systemjs": "^7.3.4",
"@babel/plugin-transform-modules-umd": "^7.2.0", "@babel/plugin-transform-modules-umd": "^7.2.0",
"@babel/plugin-transform-named-capturing-groups-regex": "^7.3.0", "@babel/plugin-transform-named-capturing-groups-regex": "^7.3.0",
"@babel/plugin-transform-new-target": "^7.0.0", "@babel/plugin-transform-new-target": "^7.0.0",
"@babel/plugin-transform-object-super": "^7.2.0", "@babel/plugin-transform-object-super": "^7.2.0",
"@babel/plugin-transform-parameters": "^7.2.0", "@babel/plugin-transform-parameters": "^7.2.0",
"@babel/plugin-transform-regenerator": "^7.0.0", "@babel/plugin-transform-regenerator": "^7.3.4",
"@babel/plugin-transform-shorthand-properties": "^7.2.0", "@babel/plugin-transform-shorthand-properties": "^7.2.0",
"@babel/plugin-transform-spread": "^7.2.0", "@babel/plugin-transform-spread": "^7.2.0",
"@babel/plugin-transform-sticky-regex": "^7.2.0", "@babel/plugin-transform-sticky-regex": "^7.2.0",
@ -63,7 +63,7 @@
}, },
"devDependencies": { "devDependencies": {
"@babel/cli": "^7.2.3", "@babel/cli": "^7.2.3",
"@babel/core": "^7.2.0", "@babel/core": "^7.3.4",
"@babel/helper-fixtures": "^7.2.0", "@babel/helper-fixtures": "^7.2.0",
"@babel/helper-plugin-test-runner": "^7.0.0", "@babel/helper-plugin-test-runner": "^7.0.0",
"caniuse-db": "1.0.30000851", "caniuse-db": "1.0.30000851",

View File

@ -1,6 +1,6 @@
{ {
"name": "@babel/runtime-corejs2", "name": "@babel/runtime-corejs2",
"version": "7.3.1", "version": "7.3.4",
"description": "babel's modular runtime helpers with core-js@2 polyfilling", "description": "babel's modular runtime helpers with core-js@2 polyfilling",
"license": "MIT", "license": "MIT",
"publishConfig": { "publishConfig": {

View File

@ -1,6 +1,6 @@
{ {
"name": "@babel/runtime", "name": "@babel/runtime",
"version": "7.3.1", "version": "7.3.4",
"description": "babel's modular runtime helpers", "description": "babel's modular runtime helpers",
"license": "MIT", "license": "MIT",
"publishConfig": { "publishConfig": {

View File

@ -1,6 +1,6 @@
{ {
"name": "@babel/standalone", "name": "@babel/standalone",
"version": "7.3.3", "version": "7.3.4",
"description": "Standalone build of Babel for use in non-Node.js environments.", "description": "Standalone build of Babel for use in non-Node.js environments.",
"main": "babel.js", "main": "babel.js",
"files": [ "files": [
@ -9,11 +9,11 @@
"src" "src"
], ],
"devDependencies": { "devDependencies": {
"@babel/core": "^7.3.3", "@babel/core": "^7.3.4",
"@babel/helper-plugin-utils": "^7.0.0", "@babel/helper-plugin-utils": "^7.0.0",
"@babel/plugin-external-helpers": "^7.2.0", "@babel/plugin-external-helpers": "^7.2.0",
"@babel/plugin-proposal-async-generator-functions": "^7.2.0", "@babel/plugin-proposal-async-generator-functions": "^7.2.0",
"@babel/plugin-proposal-class-properties": "^7.3.3", "@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/plugin-proposal-decorators": "^7.3.0", "@babel/plugin-proposal-decorators": "^7.3.0",
"@babel/plugin-proposal-do-expressions": "^7.2.0", "@babel/plugin-proposal-do-expressions": "^7.2.0",
"@babel/plugin-proposal-export-default-from": "^7.2.0", "@babel/plugin-proposal-export-default-from": "^7.2.0",
@ -24,11 +24,11 @@
"@babel/plugin-proposal-logical-assignment-operators": "^7.2.0", "@babel/plugin-proposal-logical-assignment-operators": "^7.2.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.2.0", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.2.0",
"@babel/plugin-proposal-numeric-separator": "^7.2.0", "@babel/plugin-proposal-numeric-separator": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.3.2", "@babel/plugin-proposal-object-rest-spread": "^7.3.4",
"@babel/plugin-proposal-optional-catch-binding": "^7.2.0", "@babel/plugin-proposal-optional-catch-binding": "^7.2.0",
"@babel/plugin-proposal-optional-chaining": "^7.2.0", "@babel/plugin-proposal-optional-chaining": "^7.2.0",
"@babel/plugin-proposal-pipeline-operator": "^7.3.2", "@babel/plugin-proposal-pipeline-operator": "^7.3.2",
"@babel/plugin-proposal-private-methods": "^7.3.2", "@babel/plugin-proposal-private-methods": "^7.3.4",
"@babel/plugin-proposal-throw-expressions": "^7.2.0", "@babel/plugin-proposal-throw-expressions": "^7.2.0",
"@babel/plugin-proposal-unicode-property-regex": "^7.2.0", "@babel/plugin-proposal-unicode-property-regex": "^7.2.0",
"@babel/plugin-syntax-async-generators": "^7.2.0", "@babel/plugin-syntax-async-generators": "^7.2.0",
@ -48,17 +48,17 @@
"@babel/plugin-syntax-pipeline-operator": "^7.3.0", "@babel/plugin-syntax-pipeline-operator": "^7.3.0",
"@babel/plugin-syntax-typescript": "^7.3.3", "@babel/plugin-syntax-typescript": "^7.3.3",
"@babel/plugin-transform-arrow-functions": "^7.2.0", "@babel/plugin-transform-arrow-functions": "^7.2.0",
"@babel/plugin-transform-async-to-generator": "^7.2.0", "@babel/plugin-transform-async-to-generator": "^7.3.4",
"@babel/plugin-transform-block-scoped-functions": "^7.2.0", "@babel/plugin-transform-block-scoped-functions": "^7.2.0",
"@babel/plugin-transform-block-scoping": "^7.2.0", "@babel/plugin-transform-block-scoping": "^7.3.4",
"@babel/plugin-transform-classes": "^7.3.3", "@babel/plugin-transform-classes": "^7.3.4",
"@babel/plugin-transform-computed-properties": "^7.2.0", "@babel/plugin-transform-computed-properties": "^7.2.0",
"@babel/plugin-transform-destructuring": "^7.3.2", "@babel/plugin-transform-destructuring": "^7.3.2",
"@babel/plugin-transform-dotall-regex": "^7.2.0", "@babel/plugin-transform-dotall-regex": "^7.2.0",
"@babel/plugin-transform-duplicate-keys": "^7.2.0", "@babel/plugin-transform-duplicate-keys": "^7.2.0",
"@babel/plugin-transform-exponentiation-operator": "^7.2.0", "@babel/plugin-transform-exponentiation-operator": "^7.2.0",
"@babel/plugin-transform-flow-comments": "^7.2.0", "@babel/plugin-transform-flow-comments": "^7.2.0",
"@babel/plugin-transform-flow-strip-types": "^7.2.3", "@babel/plugin-transform-flow-strip-types": "^7.3.4",
"@babel/plugin-transform-for-of": "^7.2.0", "@babel/plugin-transform-for-of": "^7.2.0",
"@babel/plugin-transform-function-name": "^7.2.0", "@babel/plugin-transform-function-name": "^7.2.0",
"@babel/plugin-transform-instanceof": "^7.2.0", "@babel/plugin-transform-instanceof": "^7.2.0",
@ -67,7 +67,7 @@
"@babel/plugin-transform-member-expression-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-amd": "^7.2.0",
"@babel/plugin-transform-modules-commonjs": "^7.2.0", "@babel/plugin-transform-modules-commonjs": "^7.2.0",
"@babel/plugin-transform-modules-systemjs": "^7.2.0", "@babel/plugin-transform-modules-systemjs": "^7.3.4",
"@babel/plugin-transform-modules-umd": "^7.2.0", "@babel/plugin-transform-modules-umd": "^7.2.0",
"@babel/plugin-transform-new-target": "^7.0.0", "@babel/plugin-transform-new-target": "^7.0.0",
"@babel/plugin-transform-object-assign": "^7.2.0", "@babel/plugin-transform-object-assign": "^7.2.0",
@ -84,8 +84,8 @@
"@babel/plugin-transform-react-jsx-compat": "^7.2.0", "@babel/plugin-transform-react-jsx-compat": "^7.2.0",
"@babel/plugin-transform-react-jsx-self": "^7.2.0", "@babel/plugin-transform-react-jsx-self": "^7.2.0",
"@babel/plugin-transform-react-jsx-source": "^7.2.0", "@babel/plugin-transform-react-jsx-source": "^7.2.0",
"@babel/plugin-transform-regenerator": "^7.0.0", "@babel/plugin-transform-regenerator": "^7.3.4",
"@babel/plugin-transform-runtime": "^7.2.0", "@babel/plugin-transform-runtime": "^7.3.4",
"@babel/plugin-transform-shorthand-properties": "^7.2.0", "@babel/plugin-transform-shorthand-properties": "^7.2.0",
"@babel/plugin-transform-spread": "^7.2.2", "@babel/plugin-transform-spread": "^7.2.2",
"@babel/plugin-transform-sticky-regex": "^7.2.0", "@babel/plugin-transform-sticky-regex": "^7.2.0",

View File

@ -1,6 +1,6 @@
{ {
"name": "@babel/traverse", "name": "@babel/traverse",
"version": "7.2.3", "version": "7.3.4",
"description": "The Babel Traverse module maintains the overall tree state, and is responsible for replacing, removing, and adding nodes", "description": "The Babel Traverse module maintains the overall tree state, and is responsible for replacing, removing, and adding nodes",
"author": "Sebastian McKenzie <sebmck@gmail.com>", "author": "Sebastian McKenzie <sebmck@gmail.com>",
"homepage": "https://babeljs.io/", "homepage": "https://babeljs.io/",
@ -12,11 +12,11 @@
"main": "lib/index.js", "main": "lib/index.js",
"dependencies": { "dependencies": {
"@babel/code-frame": "^7.0.0", "@babel/code-frame": "^7.0.0",
"@babel/generator": "^7.2.2", "@babel/generator": "^7.3.4",
"@babel/helper-function-name": "^7.1.0", "@babel/helper-function-name": "^7.1.0",
"@babel/helper-split-export-declaration": "^7.0.0", "@babel/helper-split-export-declaration": "^7.0.0",
"@babel/parser": "^7.2.3", "@babel/parser": "^7.3.4",
"@babel/types": "^7.2.2", "@babel/types": "^7.3.4",
"debug": "^4.1.0", "debug": "^4.1.0",
"globals": "^11.1.0", "globals": "^11.1.0",
"lodash": "^4.17.11" "lodash": "^4.17.11"

View File

@ -1,6 +1,6 @@
{ {
"name": "@babel/types", "name": "@babel/types",
"version": "7.3.3", "version": "7.3.4",
"description": "Babel Types is a Lodash-esque utility library for AST nodes", "description": "Babel Types is a Lodash-esque utility library for AST nodes",
"author": "Sebastian McKenzie <sebmck@gmail.com>", "author": "Sebastian McKenzie <sebmck@gmail.com>",
"homepage": "https://babeljs.io/", "homepage": "https://babeljs.io/",
@ -14,7 +14,7 @@
"to-fast-properties": "^2.0.0" "to-fast-properties": "^2.0.0"
}, },
"devDependencies": { "devDependencies": {
"@babel/generator": "^7.3.3", "@babel/generator": "^7.3.4",
"@babel/parser": "^7.3.3" "@babel/parser": "^7.3.4"
} }
} }