Use workspace:^ to specify @babel/ dependencies (#13772)
* Enforce `workspace:^` to specify `@babel/` dependencies * `yarn constraints --fix` * Update lockfile
This commit is contained in:
parent
62b2c5ebb9
commit
c7ddb1ae93
@ -9,14 +9,14 @@
|
||||
"@babel-baseline/parser": "npm:@babel/parser@7.14.8",
|
||||
"@babel-baseline/traverse": "npm:@babel/traverse@7.15.4",
|
||||
"@babel-baseline/types": "npm:@babel/types@7.15.6",
|
||||
"@babel/core": "workspace:*",
|
||||
"@babel/generator": "workspace:*",
|
||||
"@babel/helper-validator-identifier": "workspace:*",
|
||||
"@babel/parser": "workspace:*",
|
||||
"@babel/preset-env": "workspace:*",
|
||||
"@babel/preset-flow": "workspace:*",
|
||||
"@babel/traverse": "workspace:*",
|
||||
"@babel/types": "workspace:*",
|
||||
"@babel/core": "workspace:^",
|
||||
"@babel/generator": "workspace:^",
|
||||
"@babel/helper-validator-identifier": "workspace:^",
|
||||
"@babel/parser": "workspace:^",
|
||||
"@babel/preset-env": "workspace:^",
|
||||
"@babel/preset-flow": "workspace:^",
|
||||
"@babel/traverse": "workspace:^",
|
||||
"@babel/types": "workspace:^",
|
||||
"benchmark": "^2.1.4"
|
||||
},
|
||||
"version": "7.15.0"
|
||||
|
||||
@ -23,8 +23,8 @@
|
||||
"@babel/core": "^7.0.0-0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "workspace:*",
|
||||
"@babel/helper-plugin-test-runner": "workspace:*"
|
||||
"@babel/core": "workspace:^",
|
||||
"@babel/helper-plugin-test-runner": "workspace:^"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
@ -23,8 +23,8 @@
|
||||
"@babel/core": "^7.0.0-0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "workspace:*",
|
||||
"@babel/helper-plugin-test-runner": "workspace:*"
|
||||
"@babel/core": "workspace:^",
|
||||
"@babel/helper-plugin-test-runner": "workspace:^"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
@ -1,8 +1,10 @@
|
||||
% Enforces that all workspaces depend on other workspaces using `workspace:*` in devDependencies
|
||||
gen_enforced_dependency(WorkspaceCwd, DependencyIdent, 'workspace:*', 'devDependencies') :-
|
||||
workspace_has_dependency(WorkspaceCwd, DependencyIdent, DependencyRange, 'devDependencies'),
|
||||
% Enforces that all workspaces depend on other workspaces using `workspace:^`
|
||||
gen_enforced_dependency(WorkspaceCwd, DependencyIdent, 'workspace:^', DependencyType) :-
|
||||
workspace_has_dependency(WorkspaceCwd, DependencyIdent, DependencyRange, DependencyType),
|
||||
% Only consider dependency ranges that start with 'workspace:'
|
||||
atom_concat('workspace:', _, DependencyRange).
|
||||
atom_concat('workspace:', _, DependencyRange),
|
||||
% Only consider 'dependencies' and 'devDependencies'
|
||||
(DependencyType = 'dependencies'; DependencyType = 'devDependencies').
|
||||
|
||||
% Enforces the license in all public workspaces while removing it from private workspaces
|
||||
gen_enforced_field(WorkspaceCwd, 'license', 'MIT') :-
|
||||
|
||||
@ -36,7 +36,7 @@
|
||||
"semver": "condition:BABEL_8_BREAKING ? ^7.3.4 : ^6.3.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "workspace:*",
|
||||
"@babel/core": "workspace:^",
|
||||
"dedent": "^0.7.0",
|
||||
"eslint": "^7.27.0"
|
||||
}
|
||||
|
||||
@ -4,17 +4,17 @@
|
||||
"description": "Shared fixtures for testing @babel/eslint-* packages",
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
"@babel/core": "workspace:^7.14.5",
|
||||
"@babel/eslint-parser": "workspace:^7.14.5",
|
||||
"@babel/plugin-proposal-class-properties": "workspace:^7.14.5",
|
||||
"@babel/plugin-proposal-decorators": "workspace:^7.14.5",
|
||||
"@babel/plugin-proposal-do-expressions": "workspace:^7.14.5",
|
||||
"@babel/plugin-proposal-pipeline-operator": "workspace:^7.14.5",
|
||||
"@babel/plugin-proposal-private-methods": "workspace:^7.14.5",
|
||||
"@babel/plugin-syntax-export-default-from": "workspace:^7.14.5",
|
||||
"@babel/preset-env": "workspace:^7.14.5",
|
||||
"@babel/preset-flow": "workspace:^7.14.5",
|
||||
"@babel/preset-react": "workspace:^7.14.5",
|
||||
"@babel/core": "workspace:^",
|
||||
"@babel/eslint-parser": "workspace:^",
|
||||
"@babel/plugin-proposal-class-properties": "workspace:^",
|
||||
"@babel/plugin-proposal-decorators": "workspace:^",
|
||||
"@babel/plugin-proposal-do-expressions": "workspace:^",
|
||||
"@babel/plugin-proposal-pipeline-operator": "workspace:^",
|
||||
"@babel/plugin-proposal-private-methods": "workspace:^",
|
||||
"@babel/plugin-syntax-export-default-from": "workspace:^",
|
||||
"@babel/preset-env": "workspace:^",
|
||||
"@babel/preset-flow": "workspace:^",
|
||||
"@babel/preset-react": "workspace:^",
|
||||
"eslint": "^7.27.0"
|
||||
}
|
||||
}
|
||||
|
||||
@ -4,9 +4,9 @@
|
||||
"description": "Tests for babel/eslint-* packages",
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
"@babel/core": "workspace:^7.14.5",
|
||||
"@babel/eslint-parser": "workspace:^7.14.5",
|
||||
"@babel/preset-react": "workspace:^7.14.5",
|
||||
"@babel/core": "workspace:^",
|
||||
"@babel/eslint-parser": "workspace:^",
|
||||
"@babel/preset-react": "workspace:^",
|
||||
"dedent": "^0.7.0",
|
||||
"eslint": "^7.27.0",
|
||||
"eslint-plugin-import": "^2.23.4",
|
||||
|
||||
@ -20,10 +20,10 @@
|
||||
"devDependencies": {
|
||||
"@babel/cli": "^7.14.8",
|
||||
"@babel/core": "^7.15.0",
|
||||
"@babel/eslint-config-internal": "workspace:*",
|
||||
"@babel/eslint-parser": "workspace:*",
|
||||
"@babel/eslint-plugin-development": "workspace:*",
|
||||
"@babel/eslint-plugin-development-internal": "workspace:*",
|
||||
"@babel/eslint-config-internal": "workspace:^",
|
||||
"@babel/eslint-parser": "workspace:^",
|
||||
"@babel/eslint-plugin-development": "workspace:^",
|
||||
"@babel/eslint-plugin-development-internal": "workspace:^",
|
||||
"@babel/plugin-proposal-dynamic-import": "^7.14.5",
|
||||
"@babel/plugin-proposal-export-namespace-from": "^7.14.5",
|
||||
"@babel/plugin-proposal-object-rest-spread": "^7.14.5",
|
||||
|
||||
@ -40,8 +40,8 @@
|
||||
"@babel/core": "^7.0.0-0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "workspace:*",
|
||||
"@babel/helper-fixtures": "workspace:*",
|
||||
"@babel/core": "workspace:^",
|
||||
"@babel/helper-fixtures": "workspace:^",
|
||||
"rimraf": "^3.0.0"
|
||||
},
|
||||
"bin": {
|
||||
|
||||
@ -16,7 +16,7 @@
|
||||
},
|
||||
"main": "./lib/index.js",
|
||||
"dependencies": {
|
||||
"@babel/highlight": "workspace:^7.14.5"
|
||||
"@babel/highlight": "workspace:^"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/chalk": "^2.0.0",
|
||||
|
||||
@ -48,15 +48,15 @@
|
||||
"./src/transformation/util/clone-deep.ts": "./src/transformation/util/clone-deep-browser.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"@babel/code-frame": "workspace:^7.15.8",
|
||||
"@babel/generator": "workspace:^7.15.8",
|
||||
"@babel/helper-compilation-targets": "workspace:^7.15.4",
|
||||
"@babel/code-frame": "workspace:^",
|
||||
"@babel/generator": "workspace:^",
|
||||
"@babel/helper-compilation-targets": "workspace:^",
|
||||
"@babel/helper-module-transforms": "condition:BABEL_8_BREAKING ? : workspace:^7.15.8",
|
||||
"@babel/helpers": "workspace:^7.15.4",
|
||||
"@babel/parser": "workspace:^7.15.8",
|
||||
"@babel/template": "workspace:^7.15.4",
|
||||
"@babel/traverse": "workspace:^7.15.4",
|
||||
"@babel/types": "workspace:^7.15.6",
|
||||
"@babel/helpers": "workspace:^",
|
||||
"@babel/parser": "workspace:^",
|
||||
"@babel/template": "workspace:^",
|
||||
"@babel/traverse": "workspace:^",
|
||||
"@babel/types": "workspace:^",
|
||||
"convert-source-map": "^1.7.0",
|
||||
"debug": "^4.1.0",
|
||||
"gensync": "^1.0.0-beta.2",
|
||||
@ -65,8 +65,8 @@
|
||||
"source-map": "^0.5.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/helper-transform-fixture-test-runner": "workspace:*",
|
||||
"@babel/plugin-transform-modules-commonjs": "workspace:*",
|
||||
"@babel/helper-transform-fixture-test-runner": "workspace:^",
|
||||
"@babel/plugin-transform-modules-commonjs": "workspace:^",
|
||||
"@types/convert-source-map": "^1.5.1",
|
||||
"@types/debug": "^4.1.0",
|
||||
"@types/resolve": "^1.3.2",
|
||||
|
||||
@ -19,13 +19,13 @@
|
||||
"lib"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/types": "workspace:^7.15.6",
|
||||
"@babel/types": "workspace:^",
|
||||
"jsesc": "condition: BABEL_8_BREAKING ? ^3.0.2 : ^2.5.1",
|
||||
"source-map": "^0.5.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/helper-fixtures": "workspace:*",
|
||||
"@babel/parser": "workspace:*",
|
||||
"@babel/helper-fixtures": "workspace:^",
|
||||
"@babel/parser": "workspace:^",
|
||||
"@types/jsesc": "^2.5.0",
|
||||
"@types/source-map": "^0.5.0",
|
||||
"charcodes": "^0.2.0"
|
||||
|
||||
@ -14,7 +14,7 @@
|
||||
},
|
||||
"main": "./lib/index.js",
|
||||
"dependencies": {
|
||||
"@babel/types": "workspace:^7.15.4"
|
||||
"@babel/types": "workspace:^"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
@ -14,8 +14,8 @@
|
||||
},
|
||||
"main": "./lib/index.js",
|
||||
"dependencies": {
|
||||
"@babel/helper-explode-assignable-expression": "workspace:^7.15.4",
|
||||
"@babel/types": "workspace:^7.15.4"
|
||||
"@babel/helper-explode-assignable-expression": "workspace:^",
|
||||
"@babel/types": "workspace:^"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
@ -14,8 +14,8 @@
|
||||
},
|
||||
"main": "./lib/index.js",
|
||||
"dependencies": {
|
||||
"@babel/helper-annotate-as-pure": "workspace:^7.15.4",
|
||||
"@babel/types": "workspace:^7.15.4"
|
||||
"@babel/helper-annotate-as-pure": "workspace:^",
|
||||
"@babel/types": "workspace:^"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
@ -21,8 +21,8 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/compat-data": "workspace:^7.15.0",
|
||||
"@babel/helper-validator-option": "workspace:^7.14.5",
|
||||
"@babel/compat-data": "workspace:^",
|
||||
"@babel/helper-validator-option": "workspace:^",
|
||||
"browserslist": "^4.16.6",
|
||||
"semver": "condition:BABEL_8_BREAKING ? ^7.3.4 : ^6.3.0"
|
||||
},
|
||||
@ -30,8 +30,8 @@
|
||||
"@babel/core": "^7.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "workspace:*",
|
||||
"@babel/helper-plugin-test-runner": "workspace:*",
|
||||
"@babel/core": "workspace:^",
|
||||
"@babel/helper-plugin-test-runner": "workspace:^",
|
||||
"@types/semver": "^5.5.0"
|
||||
},
|
||||
"engines": {
|
||||
|
||||
@ -18,21 +18,21 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-annotate-as-pure": "workspace:^7.15.4",
|
||||
"@babel/helper-function-name": "workspace:^7.15.4",
|
||||
"@babel/helper-member-expression-to-functions": "workspace:^7.15.4",
|
||||
"@babel/helper-optimise-call-expression": "workspace:^7.15.4",
|
||||
"@babel/helper-replace-supers": "workspace:^7.15.4",
|
||||
"@babel/helper-split-export-declaration": "workspace:^7.15.4"
|
||||
"@babel/helper-annotate-as-pure": "workspace:^",
|
||||
"@babel/helper-function-name": "workspace:^",
|
||||
"@babel/helper-member-expression-to-functions": "workspace:^",
|
||||
"@babel/helper-optimise-call-expression": "workspace:^",
|
||||
"@babel/helper-replace-supers": "workspace:^",
|
||||
"@babel/helper-split-export-declaration": "workspace:^"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "workspace:*",
|
||||
"@babel/helper-plugin-test-runner": "workspace:*",
|
||||
"@babel/core": "workspace:^",
|
||||
"@babel/helper-plugin-test-runner": "workspace:^",
|
||||
"@babel/plugin-syntax-class-static-block": "^7.14.5",
|
||||
"@babel/preset-env": "workspace:*"
|
||||
"@babel/preset-env": "workspace:^"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
@ -18,15 +18,15 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-annotate-as-pure": "workspace:^7.14.5",
|
||||
"@babel/helper-annotate-as-pure": "workspace:^",
|
||||
"regexpu-core": "^4.7.1"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "workspace:*",
|
||||
"@babel/helper-plugin-test-runner": "workspace:*"
|
||||
"@babel/core": "workspace:^",
|
||||
"@babel/helper-plugin-test-runner": "workspace:^"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
@ -14,8 +14,8 @@
|
||||
},
|
||||
"main": "./lib/index.js",
|
||||
"dependencies": {
|
||||
"@babel/helper-function-name": "workspace:^7.15.4",
|
||||
"@babel/types": "workspace:^7.15.4"
|
||||
"@babel/helper-function-name": "workspace:^",
|
||||
"@babel/types": "workspace:^"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
@ -14,10 +14,10 @@
|
||||
},
|
||||
"main": "./lib/index.js",
|
||||
"dependencies": {
|
||||
"@babel/types": "workspace:^7.15.4"
|
||||
"@babel/types": "workspace:^"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/traverse": "workspace:*"
|
||||
"@babel/traverse": "workspace:^"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
@ -14,9 +14,9 @@
|
||||
},
|
||||
"main": "./lib/index.js",
|
||||
"dependencies": {
|
||||
"@babel/helper-get-function-arity": "workspace:^7.15.4",
|
||||
"@babel/template": "workspace:^7.15.4",
|
||||
"@babel/types": "workspace:^7.15.4"
|
||||
"@babel/helper-get-function-arity": "workspace:^",
|
||||
"@babel/template": "workspace:^",
|
||||
"@babel/types": "workspace:^"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
@ -14,7 +14,7 @@
|
||||
},
|
||||
"main": "./lib/index.js",
|
||||
"dependencies": {
|
||||
"@babel/types": "workspace:^7.15.4"
|
||||
"@babel/types": "workspace:^"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
@ -14,11 +14,11 @@
|
||||
},
|
||||
"main": "./lib/index.js",
|
||||
"dependencies": {
|
||||
"@babel/types": "workspace:^7.15.4"
|
||||
"@babel/types": "workspace:^"
|
||||
},
|
||||
"TODO": "The @babel/traverse dependency is only needed for the NodePath TS type. We can consider exporting it from @babel/core.",
|
||||
"devDependencies": {
|
||||
"@babel/traverse": "workspace:*"
|
||||
"@babel/traverse": "workspace:^"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
@ -15,10 +15,10 @@
|
||||
"main": "./lib/index.js",
|
||||
"author": "The Babel Team (https://babel.dev/team)",
|
||||
"dependencies": {
|
||||
"@babel/types": "workspace:^7.15.4"
|
||||
"@babel/types": "workspace:^"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/traverse": "workspace:*"
|
||||
"@babel/traverse": "workspace:^"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
@ -15,11 +15,11 @@
|
||||
},
|
||||
"main": "./lib/index.js",
|
||||
"dependencies": {
|
||||
"@babel/types": "workspace:^7.15.4"
|
||||
"@babel/types": "workspace:^"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "workspace:*",
|
||||
"@babel/traverse": "workspace:*"
|
||||
"@babel/core": "workspace:^",
|
||||
"@babel/traverse": "workspace:^"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
@ -15,14 +15,14 @@
|
||||
},
|
||||
"main": "./lib/index.js",
|
||||
"dependencies": {
|
||||
"@babel/helper-module-imports": "workspace:^7.15.4",
|
||||
"@babel/helper-replace-supers": "workspace:^7.15.4",
|
||||
"@babel/helper-simple-access": "workspace:^7.15.4",
|
||||
"@babel/helper-split-export-declaration": "workspace:^7.15.4",
|
||||
"@babel/helper-validator-identifier": "workspace:^7.15.7",
|
||||
"@babel/template": "workspace:^7.15.4",
|
||||
"@babel/traverse": "workspace:^7.15.4",
|
||||
"@babel/types": "workspace:^7.15.6"
|
||||
"@babel/helper-module-imports": "workspace:^",
|
||||
"@babel/helper-replace-supers": "workspace:^",
|
||||
"@babel/helper-simple-access": "workspace:^",
|
||||
"@babel/helper-split-export-declaration": "workspace:^",
|
||||
"@babel/helper-validator-identifier": "workspace:^",
|
||||
"@babel/template": "workspace:^",
|
||||
"@babel/traverse": "workspace:^",
|
||||
"@babel/types": "workspace:^"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
@ -14,11 +14,11 @@
|
||||
},
|
||||
"main": "./lib/index.js",
|
||||
"dependencies": {
|
||||
"@babel/types": "workspace:^7.15.4"
|
||||
"@babel/types": "workspace:^"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/generator": "workspace:*",
|
||||
"@babel/parser": "workspace:*"
|
||||
"@babel/generator": "workspace:^",
|
||||
"@babel/parser": "workspace:^"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
@ -14,7 +14,7 @@
|
||||
},
|
||||
"main": "./lib/index.js",
|
||||
"dependencies": {
|
||||
"@babel/helper-transform-fixture-test-runner": "workspace:^7.14.5"
|
||||
"@babel/helper-transform-fixture-test-runner": "workspace:^"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
@ -14,12 +14,12 @@
|
||||
},
|
||||
"main": "./lib/index.js",
|
||||
"dependencies": {
|
||||
"@babel/helper-annotate-as-pure": "workspace:^7.15.4",
|
||||
"@babel/helper-wrap-function": "workspace:^7.15.4",
|
||||
"@babel/types": "workspace:^7.15.4"
|
||||
"@babel/helper-annotate-as-pure": "workspace:^",
|
||||
"@babel/helper-wrap-function": "workspace:^",
|
||||
"@babel/types": "workspace:^"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/traverse": "workspace:*"
|
||||
"@babel/traverse": "workspace:^"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
@ -14,10 +14,10 @@
|
||||
},
|
||||
"main": "./lib/index.js",
|
||||
"dependencies": {
|
||||
"@babel/helper-member-expression-to-functions": "workspace:^7.15.4",
|
||||
"@babel/helper-optimise-call-expression": "workspace:^7.15.4",
|
||||
"@babel/traverse": "workspace:^7.15.4",
|
||||
"@babel/types": "workspace:^7.15.4"
|
||||
"@babel/helper-member-expression-to-functions": "workspace:^",
|
||||
"@babel/helper-optimise-call-expression": "workspace:^",
|
||||
"@babel/traverse": "workspace:^",
|
||||
"@babel/types": "workspace:^"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
@ -15,10 +15,10 @@
|
||||
},
|
||||
"main": "./lib/index.js",
|
||||
"dependencies": {
|
||||
"@babel/types": "workspace:^7.15.4"
|
||||
"@babel/types": "workspace:^"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/traverse": "workspace:*"
|
||||
"@babel/traverse": "workspace:^"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
@ -17,10 +17,10 @@
|
||||
"./package.json": "./package.json"
|
||||
},
|
||||
"dependencies": {
|
||||
"@babel/types": "workspace:^7.15.4"
|
||||
"@babel/types": "workspace:^"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/traverse": "workspace:*"
|
||||
"@babel/traverse": "workspace:^"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
@ -14,7 +14,7 @@
|
||||
},
|
||||
"main": "./lib/index.js",
|
||||
"dependencies": {
|
||||
"@babel/types": "workspace:^7.15.4"
|
||||
"@babel/types": "workspace:^"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
@ -15,9 +15,9 @@
|
||||
},
|
||||
"main": "./lib/index.js",
|
||||
"dependencies": {
|
||||
"@babel/code-frame": "workspace:^7.14.5",
|
||||
"@babel/core": "workspace:^7.15.5",
|
||||
"@babel/helper-fixtures": "workspace:^7.14.5",
|
||||
"@babel/code-frame": "workspace:^",
|
||||
"@babel/core": "workspace:^",
|
||||
"@babel/helper-fixtures": "workspace:^",
|
||||
"babel-check-duplicated-nodes": "^1.0.0",
|
||||
"quick-lru": "5.1.0",
|
||||
"regenerator-runtime": "^0.13.7",
|
||||
|
||||
@ -14,10 +14,10 @@
|
||||
},
|
||||
"main": "./lib/index.js",
|
||||
"dependencies": {
|
||||
"@babel/helper-function-name": "workspace:^7.15.4",
|
||||
"@babel/template": "workspace:^7.15.4",
|
||||
"@babel/traverse": "workspace:^7.15.4",
|
||||
"@babel/types": "workspace:^7.15.4"
|
||||
"@babel/helper-function-name": "workspace:^",
|
||||
"@babel/template": "workspace:^",
|
||||
"@babel/traverse": "workspace:^",
|
||||
"@babel/types": "workspace:^"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
@ -15,12 +15,12 @@
|
||||
},
|
||||
"main": "./lib/index.js",
|
||||
"dependencies": {
|
||||
"@babel/template": "workspace:^7.15.4",
|
||||
"@babel/traverse": "workspace:^7.15.4",
|
||||
"@babel/types": "workspace:^7.15.4"
|
||||
"@babel/template": "workspace:^",
|
||||
"@babel/traverse": "workspace:^",
|
||||
"@babel/types": "workspace:^"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/helper-plugin-test-runner": "workspace:*"
|
||||
"@babel/helper-plugin-test-runner": "workspace:^"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
@ -15,7 +15,7 @@
|
||||
},
|
||||
"main": "./lib/index.js",
|
||||
"dependencies": {
|
||||
"@babel/helper-validator-identifier": "workspace:^7.14.5",
|
||||
"@babel/helper-validator-identifier": "workspace:^",
|
||||
"chalk": "^2.0.0",
|
||||
"js-tokens": "condition:BABEL_8_BREAKING ? ^7.0.0 : ^4.0.0"
|
||||
},
|
||||
|
||||
@ -23,7 +23,7 @@
|
||||
"compiler"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/register": "workspace:^7.15.3",
|
||||
"@babel/register": "workspace:^",
|
||||
"commander": "^4.0.1",
|
||||
"core-js": "^3.16.0",
|
||||
"node-environment-flags": "^1.0.5",
|
||||
@ -34,9 +34,9 @@
|
||||
"@babel/core": "^7.0.0-0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "workspace:*",
|
||||
"@babel/helper-fixtures": "workspace:*",
|
||||
"@babel/runtime": "workspace:*",
|
||||
"@babel/core": "workspace:^",
|
||||
"@babel/helper-fixtures": "workspace:^",
|
||||
"@babel/runtime": "workspace:^",
|
||||
"fs-readdir-recursive": "^1.0.0",
|
||||
"make-dir": "condition:BABEL_8_BREAKING ? : ^2.1.0",
|
||||
"rimraf": "^3.0.0"
|
||||
|
||||
@ -33,9 +33,9 @@
|
||||
"node": ">=6.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/code-frame": "workspace:*",
|
||||
"@babel/helper-fixtures": "workspace:*",
|
||||
"@babel/helper-validator-identifier": "workspace:*",
|
||||
"@babel/code-frame": "workspace:^",
|
||||
"@babel/helper-fixtures": "workspace:^",
|
||||
"@babel/helper-validator-identifier": "workspace:^",
|
||||
"charcodes": "^0.2.0"
|
||||
},
|
||||
"bin": "./bin/babel-parser.js"
|
||||
|
||||
@ -23,15 +23,15 @@
|
||||
"bugfix"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "workspace:^7.14.5"
|
||||
"@babel/helper-plugin-utils": "workspace:^"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "workspace:*",
|
||||
"@babel/helper-plugin-test-runner": "workspace:*",
|
||||
"@babel/traverse": "workspace:*"
|
||||
"@babel/core": "workspace:^",
|
||||
"@babel/helper-plugin-test-runner": "workspace:^",
|
||||
"@babel/traverse": "workspace:^"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
@ -23,17 +23,17 @@
|
||||
"bugfix"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "workspace:^7.14.5",
|
||||
"@babel/helper-skip-transparent-expression-wrappers": "workspace:^7.15.4",
|
||||
"@babel/plugin-proposal-optional-chaining": "workspace:^7.14.5"
|
||||
"@babel/helper-plugin-utils": "workspace:^",
|
||||
"@babel/helper-skip-transparent-expression-wrappers": "workspace:^",
|
||||
"@babel/plugin-proposal-optional-chaining": "workspace:^"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.13.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "workspace:*",
|
||||
"@babel/helper-plugin-test-runner": "workspace:*",
|
||||
"@babel/traverse": "workspace:*"
|
||||
"@babel/core": "workspace:^",
|
||||
"@babel/helper-plugin-test-runner": "workspace:^",
|
||||
"@babel/traverse": "workspace:^"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
@ -17,14 +17,14 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "workspace:^7.14.5"
|
||||
"@babel/helper-plugin-utils": "workspace:^"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "workspace:*",
|
||||
"@babel/helper-plugin-test-runner": "workspace:*"
|
||||
"@babel/core": "workspace:^",
|
||||
"@babel/helper-plugin-test-runner": "workspace:^"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
@ -19,18 +19,18 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-hoist-variables": "workspace:^7.14.5",
|
||||
"@babel/helper-plugin-utils": "workspace:^7.14.5",
|
||||
"@babel/plugin-syntax-async-do-expressions": "workspace:^7.14.5"
|
||||
"@babel/helper-hoist-variables": "workspace:^",
|
||||
"@babel/helper-plugin-utils": "workspace:^",
|
||||
"@babel/plugin-syntax-async-do-expressions": "workspace:^"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.13.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "workspace:*",
|
||||
"@babel/helper-plugin-test-runner": "workspace:*",
|
||||
"@babel/traverse": "workspace:*",
|
||||
"@babel/types": "workspace:*"
|
||||
"@babel/core": "workspace:^",
|
||||
"@babel/helper-plugin-test-runner": "workspace:^",
|
||||
"@babel/traverse": "workspace:^",
|
||||
"@babel/types": "workspace:^"
|
||||
},
|
||||
"homepage": "https://babel.dev/docs/en/next/babel-plugin-proposal-async-do-expressions",
|
||||
"engines": {
|
||||
|
||||
@ -17,16 +17,16 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "workspace:^7.14.5",
|
||||
"@babel/helper-remap-async-to-generator": "workspace:^7.15.4",
|
||||
"@babel/helper-plugin-utils": "workspace:^",
|
||||
"@babel/helper-remap-async-to-generator": "workspace:^",
|
||||
"@babel/plugin-syntax-async-generators": "^7.8.4"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "workspace:*",
|
||||
"@babel/helper-plugin-test-runner": "workspace:*",
|
||||
"@babel/core": "workspace:^",
|
||||
"@babel/helper-plugin-test-runner": "workspace:^",
|
||||
"babel-plugin-polyfill-corejs3": "^0.2.5",
|
||||
"core-js-pure": "^3.16.0"
|
||||
},
|
||||
|
||||
@ -17,15 +17,15 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-create-class-features-plugin": "workspace:^7.14.5",
|
||||
"@babel/helper-plugin-utils": "workspace:^7.14.5"
|
||||
"@babel/helper-create-class-features-plugin": "workspace:^",
|
||||
"@babel/helper-plugin-utils": "workspace:^"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "workspace:*",
|
||||
"@babel/helper-plugin-test-runner": "workspace:*"
|
||||
"@babel/core": "workspace:^",
|
||||
"@babel/helper-plugin-test-runner": "workspace:^"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
@ -19,16 +19,16 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-create-class-features-plugin": "workspace:^7.15.4",
|
||||
"@babel/helper-plugin-utils": "workspace:^7.14.5",
|
||||
"@babel/helper-create-class-features-plugin": "workspace:^",
|
||||
"@babel/helper-plugin-utils": "workspace:^",
|
||||
"@babel/plugin-syntax-class-static-block": "^7.14.5"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.12.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "workspace:*",
|
||||
"@babel/helper-plugin-test-runner": "workspace:*"
|
||||
"@babel/core": "workspace:^",
|
||||
"@babel/helper-plugin-test-runner": "workspace:^"
|
||||
},
|
||||
"homepage": "https://babel.dev/docs/en/next/babel-plugin-proposal-class-static-block",
|
||||
"engines": {
|
||||
|
||||
@ -20,16 +20,16 @@
|
||||
"decorators"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-create-class-features-plugin": "workspace:^7.15.4",
|
||||
"@babel/helper-plugin-utils": "workspace:^7.14.5",
|
||||
"@babel/plugin-syntax-decorators": "workspace:^7.14.5"
|
||||
"@babel/helper-create-class-features-plugin": "workspace:^",
|
||||
"@babel/helper-plugin-utils": "workspace:^",
|
||||
"@babel/plugin-syntax-decorators": "workspace:^"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "workspace:*",
|
||||
"@babel/helper-plugin-test-runner": "workspace:*",
|
||||
"@babel/core": "workspace:^",
|
||||
"@babel/helper-plugin-test-runner": "workspace:^",
|
||||
"babel-plugin-polyfill-es-shims": "^0.4.0",
|
||||
"object.getownpropertydescriptors": "^2.1.1"
|
||||
},
|
||||
|
||||
@ -17,15 +17,15 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "workspace:^7.14.5",
|
||||
"@babel/plugin-syntax-do-expressions": "workspace:^7.14.5"
|
||||
"@babel/helper-plugin-utils": "workspace:^",
|
||||
"@babel/plugin-syntax-do-expressions": "workspace:^"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "workspace:*",
|
||||
"@babel/helper-plugin-test-runner": "workspace:*"
|
||||
"@babel/core": "workspace:^",
|
||||
"@babel/helper-plugin-test-runner": "workspace:^"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
@ -16,15 +16,15 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "workspace:^7.14.5",
|
||||
"@babel/helper-plugin-utils": "workspace:^",
|
||||
"@babel/plugin-syntax-dynamic-import": "^7.8.3"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "workspace:*",
|
||||
"@babel/helper-plugin-test-runner": "workspace:*"
|
||||
"@babel/core": "workspace:^",
|
||||
"@babel/helper-plugin-test-runner": "workspace:^"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
@ -17,15 +17,15 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "workspace:^7.14.5",
|
||||
"@babel/plugin-syntax-export-default-from": "workspace:^7.14.5"
|
||||
"@babel/helper-plugin-utils": "workspace:^",
|
||||
"@babel/plugin-syntax-export-default-from": "workspace:^"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "workspace:*",
|
||||
"@babel/helper-plugin-test-runner": "workspace:*"
|
||||
"@babel/core": "workspace:^",
|
||||
"@babel/helper-plugin-test-runner": "workspace:^"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
@ -16,15 +16,15 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "workspace:^7.14.5",
|
||||
"@babel/helper-plugin-utils": "workspace:^",
|
||||
"@babel/plugin-syntax-export-namespace-from": "^7.8.3"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "workspace:*",
|
||||
"@babel/helper-plugin-test-runner": "workspace:*"
|
||||
"@babel/core": "workspace:^",
|
||||
"@babel/helper-plugin-test-runner": "workspace:^"
|
||||
},
|
||||
"homepage": "https://babel.dev/docs/en/next/babel-plugin-proposal-export-namespace-from",
|
||||
"engines": {
|
||||
|
||||
@ -17,15 +17,15 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "workspace:^7.14.5",
|
||||
"@babel/plugin-syntax-function-bind": "workspace:^7.14.5"
|
||||
"@babel/helper-plugin-utils": "workspace:^",
|
||||
"@babel/plugin-syntax-function-bind": "workspace:^"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "workspace:*",
|
||||
"@babel/helper-plugin-test-runner": "workspace:*"
|
||||
"@babel/core": "workspace:^",
|
||||
"@babel/helper-plugin-test-runner": "workspace:^"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
@ -17,16 +17,16 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "workspace:^7.14.5",
|
||||
"@babel/helper-wrap-function": "workspace:^7.14.5",
|
||||
"@babel/plugin-syntax-function-sent": "workspace:^7.14.5"
|
||||
"@babel/helper-plugin-utils": "workspace:^",
|
||||
"@babel/helper-wrap-function": "workspace:^",
|
||||
"@babel/plugin-syntax-function-sent": "workspace:^"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "workspace:*",
|
||||
"@babel/helper-plugin-test-runner": "workspace:*"
|
||||
"@babel/core": "workspace:^",
|
||||
"@babel/helper-plugin-test-runner": "workspace:^"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
@ -17,15 +17,15 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "workspace:^7.14.5",
|
||||
"@babel/helper-plugin-utils": "workspace:^",
|
||||
"@babel/plugin-syntax-json-strings": "^7.8.3"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "workspace:*",
|
||||
"@babel/helper-plugin-test-runner": "workspace:*"
|
||||
"@babel/core": "workspace:^",
|
||||
"@babel/helper-plugin-test-runner": "workspace:^"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
@ -16,16 +16,16 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "workspace:^7.14.5",
|
||||
"@babel/helper-plugin-utils": "workspace:^",
|
||||
"@babel/plugin-syntax-logical-assignment-operators": "^7.10.4"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "workspace:*",
|
||||
"@babel/helper-plugin-test-runner": "workspace:*",
|
||||
"@babel/plugin-proposal-nullish-coalescing-operator": "workspace:*",
|
||||
"@babel/core": "workspace:^",
|
||||
"@babel/helper-plugin-test-runner": "workspace:^",
|
||||
"@babel/plugin-proposal-nullish-coalescing-operator": "workspace:^",
|
||||
"@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3"
|
||||
},
|
||||
"homepage": "https://babel.dev/docs/en/next/babel-plugin-proposal-logical-assignment-operators",
|
||||
|
||||
@ -17,15 +17,15 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "workspace:^7.14.5",
|
||||
"@babel/helper-plugin-utils": "workspace:^",
|
||||
"@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "workspace:*",
|
||||
"@babel/helper-plugin-test-runner": "workspace:*"
|
||||
"@babel/core": "workspace:^",
|
||||
"@babel/helper-plugin-test-runner": "workspace:^"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
@ -17,15 +17,15 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "workspace:^7.14.5",
|
||||
"@babel/helper-plugin-utils": "workspace:^",
|
||||
"@babel/plugin-syntax-numeric-separator": "^7.10.4"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "workspace:*",
|
||||
"@babel/helper-plugin-test-runner": "workspace:*"
|
||||
"@babel/core": "workspace:^",
|
||||
"@babel/helper-plugin-test-runner": "workspace:^"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
@ -17,19 +17,19 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/compat-data": "workspace:^7.15.0",
|
||||
"@babel/helper-compilation-targets": "workspace:^7.15.4",
|
||||
"@babel/helper-plugin-utils": "workspace:^7.14.5",
|
||||
"@babel/compat-data": "workspace:^",
|
||||
"@babel/helper-compilation-targets": "workspace:^",
|
||||
"@babel/helper-plugin-utils": "workspace:^",
|
||||
"@babel/plugin-syntax-object-rest-spread": "^7.8.3",
|
||||
"@babel/plugin-transform-parameters": "workspace:^7.15.4"
|
||||
"@babel/plugin-transform-parameters": "workspace:^"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "workspace:*",
|
||||
"@babel/helper-plugin-test-runner": "workspace:*",
|
||||
"@babel/parser": "workspace:*"
|
||||
"@babel/core": "workspace:^",
|
||||
"@babel/helper-plugin-test-runner": "workspace:^",
|
||||
"@babel/parser": "workspace:^"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
@ -17,15 +17,15 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "workspace:^7.14.5",
|
||||
"@babel/helper-plugin-utils": "workspace:^",
|
||||
"@babel/plugin-syntax-optional-catch-binding": "^7.8.3"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "workspace:*",
|
||||
"@babel/helper-plugin-test-runner": "workspace:*"
|
||||
"@babel/core": "workspace:^",
|
||||
"@babel/helper-plugin-test-runner": "workspace:^"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
@ -17,17 +17,17 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "workspace:^7.14.5",
|
||||
"@babel/helper-skip-transparent-expression-wrappers": "workspace:^7.14.5",
|
||||
"@babel/helper-plugin-utils": "workspace:^",
|
||||
"@babel/helper-skip-transparent-expression-wrappers": "workspace:^",
|
||||
"@babel/plugin-syntax-optional-chaining": "^7.8.3"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "workspace:*",
|
||||
"@babel/helper-plugin-test-runner": "workspace:*",
|
||||
"@babel/plugin-transform-block-scoping": "workspace:*"
|
||||
"@babel/core": "workspace:^",
|
||||
"@babel/helper-plugin-test-runner": "workspace:^",
|
||||
"@babel/plugin-transform-block-scoping": "workspace:^"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
@ -17,15 +17,15 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "workspace:^7.14.5",
|
||||
"@babel/plugin-syntax-partial-application": "workspace:^7.14.5"
|
||||
"@babel/helper-plugin-utils": "workspace:^",
|
||||
"@babel/plugin-syntax-partial-application": "workspace:^"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "workspace:*",
|
||||
"@babel/helper-plugin-test-runner": "workspace:*"
|
||||
"@babel/core": "workspace:^",
|
||||
"@babel/helper-plugin-test-runner": "workspace:^"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
@ -17,15 +17,15 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "workspace:^7.14.5",
|
||||
"@babel/plugin-syntax-pipeline-operator": "workspace:^7.15.0"
|
||||
"@babel/helper-plugin-utils": "workspace:^",
|
||||
"@babel/plugin-syntax-pipeline-operator": "workspace:^"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "workspace:*",
|
||||
"@babel/helper-plugin-test-runner": "workspace:*"
|
||||
"@babel/core": "workspace:^",
|
||||
"@babel/helper-plugin-test-runner": "workspace:^"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
@ -17,15 +17,15 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-create-class-features-plugin": "workspace:^7.14.5",
|
||||
"@babel/helper-plugin-utils": "workspace:^7.14.5"
|
||||
"@babel/helper-create-class-features-plugin": "workspace:^",
|
||||
"@babel/helper-plugin-utils": "workspace:^"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "workspace:*",
|
||||
"@babel/helper-plugin-test-runner": "workspace:*"
|
||||
"@babel/core": "workspace:^",
|
||||
"@babel/helper-plugin-test-runner": "workspace:^"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
@ -17,17 +17,17 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-annotate-as-pure": "workspace:^7.15.4",
|
||||
"@babel/helper-create-class-features-plugin": "workspace:^7.15.4",
|
||||
"@babel/helper-plugin-utils": "workspace:^7.14.5",
|
||||
"@babel/helper-annotate-as-pure": "workspace:^",
|
||||
"@babel/helper-create-class-features-plugin": "workspace:^",
|
||||
"@babel/helper-plugin-utils": "workspace:^",
|
||||
"@babel/plugin-syntax-private-property-in-object": "^7.14.5"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "workspace:*",
|
||||
"@babel/helper-plugin-test-runner": "workspace:*"
|
||||
"@babel/core": "workspace:^",
|
||||
"@babel/helper-plugin-test-runner": "workspace:^"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
@ -17,17 +17,17 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-module-imports": "workspace:^7.14.5",
|
||||
"@babel/helper-plugin-utils": "workspace:^7.14.5",
|
||||
"@babel/helper-validator-option": "workspace:^7.14.5",
|
||||
"@babel/plugin-syntax-record-and-tuple": "workspace:^7.14.5"
|
||||
"@babel/helper-module-imports": "workspace:^",
|
||||
"@babel/helper-plugin-utils": "workspace:^",
|
||||
"@babel/helper-validator-option": "workspace:^",
|
||||
"@babel/plugin-syntax-record-and-tuple": "workspace:^"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.12.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "workspace:*",
|
||||
"@babel/helper-plugin-test-runner": "workspace:*"
|
||||
"@babel/core": "workspace:^",
|
||||
"@babel/helper-plugin-test-runner": "workspace:^"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
@ -17,15 +17,15 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "workspace:^7.14.5",
|
||||
"@babel/plugin-syntax-throw-expressions": "workspace:^7.14.5"
|
||||
"@babel/helper-plugin-utils": "workspace:^",
|
||||
"@babel/plugin-syntax-throw-expressions": "workspace:^"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "workspace:*",
|
||||
"@babel/helper-plugin-test-runner": "workspace:*"
|
||||
"@babel/core": "workspace:^",
|
||||
"@babel/helper-plugin-test-runner": "workspace:^"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
@ -26,15 +26,15 @@
|
||||
},
|
||||
"bugs": "https://github.com/babel/babel/issues",
|
||||
"dependencies": {
|
||||
"@babel/helper-create-regexp-features-plugin": "workspace:^7.14.5",
|
||||
"@babel/helper-plugin-utils": "workspace:^7.14.5"
|
||||
"@babel/helper-create-regexp-features-plugin": "workspace:^",
|
||||
"@babel/helper-plugin-utils": "workspace:^"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "workspace:*",
|
||||
"@babel/helper-plugin-test-runner": "workspace:*"
|
||||
"@babel/core": "workspace:^",
|
||||
"@babel/helper-plugin-test-runner": "workspace:^"
|
||||
},
|
||||
"author": "The Babel Team (https://babel.dev/team)"
|
||||
}
|
||||
|
||||
@ -19,13 +19,13 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "workspace:^7.14.5"
|
||||
"@babel/helper-plugin-utils": "workspace:^"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "workspace:*"
|
||||
"@babel/core": "workspace:^"
|
||||
},
|
||||
"homepage": "https://babel.dev/docs/en/next/babel-plugin-syntax-async-do-expressions",
|
||||
"engines": {
|
||||
|
||||
@ -19,7 +19,7 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "workspace:^7.14.5"
|
||||
"@babel/helper-plugin-utils": "workspace:^"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
|
||||
@ -17,13 +17,13 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "workspace:^7.14.5"
|
||||
"@babel/helper-plugin-utils": "workspace:^"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "workspace:*"
|
||||
"@babel/core": "workspace:^"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
@ -16,13 +16,13 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "workspace:^7.14.5"
|
||||
"@babel/helper-plugin-utils": "workspace:^"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "workspace:*"
|
||||
"@babel/core": "workspace:^"
|
||||
},
|
||||
"homepage": "https://babel.dev/docs/en/next/babel-plugin-syntax-do-expressions",
|
||||
"engines": {
|
||||
|
||||
@ -16,13 +16,13 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "workspace:^7.14.5"
|
||||
"@babel/helper-plugin-utils": "workspace:^"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "workspace:*"
|
||||
"@babel/core": "workspace:^"
|
||||
},
|
||||
"homepage": "https://babel.dev/docs/en/next/babel-plugin-syntax-export-default-from",
|
||||
"engines": {
|
||||
|
||||
@ -17,13 +17,13 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "workspace:^7.14.5"
|
||||
"@babel/helper-plugin-utils": "workspace:^"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "workspace:*"
|
||||
"@babel/core": "workspace:^"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
@ -17,13 +17,13 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "workspace:^7.14.5"
|
||||
"@babel/helper-plugin-utils": "workspace:^"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "workspace:*"
|
||||
"@babel/core": "workspace:^"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
@ -17,13 +17,13 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "workspace:^7.14.5"
|
||||
"@babel/helper-plugin-utils": "workspace:^"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "workspace:*"
|
||||
"@babel/core": "workspace:^"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
@ -16,13 +16,13 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "workspace:^7.14.5"
|
||||
"@babel/helper-plugin-utils": "workspace:^"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "workspace:*"
|
||||
"@babel/core": "workspace:^"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
@ -17,13 +17,13 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "workspace:^7.14.5"
|
||||
"@babel/helper-plugin-utils": "workspace:^"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "workspace:*"
|
||||
"@babel/core": "workspace:^"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
@ -19,7 +19,7 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "workspace:^7.14.5"
|
||||
"@babel/helper-plugin-utils": "workspace:^"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
|
||||
@ -17,13 +17,13 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "workspace:^7.14.5"
|
||||
"@babel/helper-plugin-utils": "workspace:^"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "workspace:*"
|
||||
"@babel/core": "workspace:^"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
@ -17,13 +17,13 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "workspace:^7.14.5"
|
||||
"@babel/helper-plugin-utils": "workspace:^"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "workspace:*"
|
||||
"@babel/core": "workspace:^"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
@ -16,13 +16,13 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "workspace:^7.14.5"
|
||||
"@babel/helper-plugin-utils": "workspace:^"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "workspace:*"
|
||||
"@babel/core": "workspace:^"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
@ -17,13 +17,13 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "workspace:^7.14.5"
|
||||
"@babel/helper-plugin-utils": "workspace:^"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "workspace:*"
|
||||
"@babel/core": "workspace:^"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
@ -18,13 +18,13 @@
|
||||
"typescript"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "workspace:^7.14.5"
|
||||
"@babel/helper-plugin-utils": "workspace:^"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "workspace:*"
|
||||
"@babel/core": "workspace:^"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
@ -17,15 +17,15 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "workspace:^7.14.5"
|
||||
"@babel/helper-plugin-utils": "workspace:^"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "workspace:*",
|
||||
"@babel/helper-plugin-test-runner": "workspace:*",
|
||||
"@babel/traverse": "workspace:*"
|
||||
"@babel/core": "workspace:^",
|
||||
"@babel/helper-plugin-test-runner": "workspace:^",
|
||||
"@babel/traverse": "workspace:^"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
@ -17,16 +17,16 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-module-imports": "workspace:^7.14.5",
|
||||
"@babel/helper-plugin-utils": "workspace:^7.14.5",
|
||||
"@babel/helper-remap-async-to-generator": "workspace:^7.14.5"
|
||||
"@babel/helper-module-imports": "workspace:^",
|
||||
"@babel/helper-plugin-utils": "workspace:^",
|
||||
"@babel/helper-remap-async-to-generator": "workspace:^"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "workspace:*",
|
||||
"@babel/helper-plugin-test-runner": "workspace:*"
|
||||
"@babel/core": "workspace:^",
|
||||
"@babel/helper-plugin-test-runner": "workspace:^"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
@ -17,14 +17,14 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "workspace:^7.14.5"
|
||||
"@babel/helper-plugin-utils": "workspace:^"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "workspace:*",
|
||||
"@babel/helper-plugin-test-runner": "workspace:*"
|
||||
"@babel/core": "workspace:^",
|
||||
"@babel/helper-plugin-test-runner": "workspace:^"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
@ -14,7 +14,7 @@
|
||||
},
|
||||
"main": "./lib/index.js",
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "workspace:^7.14.5"
|
||||
"@babel/helper-plugin-utils": "workspace:^"
|
||||
},
|
||||
"keywords": [
|
||||
"babel-plugin"
|
||||
@ -23,9 +23,9 @@
|
||||
"@babel/core": "^7.0.0-0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "workspace:*",
|
||||
"@babel/helper-plugin-test-runner": "workspace:*",
|
||||
"@babel/traverse": "workspace:*"
|
||||
"@babel/core": "workspace:^",
|
||||
"@babel/helper-plugin-test-runner": "workspace:^",
|
||||
"@babel/traverse": "workspace:^"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
@ -14,12 +14,12 @@
|
||||
},
|
||||
"main": "./lib/index.js",
|
||||
"dependencies": {
|
||||
"@babel/helper-annotate-as-pure": "workspace:^7.15.4",
|
||||
"@babel/helper-function-name": "workspace:^7.15.4",
|
||||
"@babel/helper-optimise-call-expression": "workspace:^7.15.4",
|
||||
"@babel/helper-plugin-utils": "workspace:^7.14.5",
|
||||
"@babel/helper-replace-supers": "workspace:^7.15.4",
|
||||
"@babel/helper-split-export-declaration": "workspace:^7.15.4",
|
||||
"@babel/helper-annotate-as-pure": "workspace:^",
|
||||
"@babel/helper-function-name": "workspace:^",
|
||||
"@babel/helper-optimise-call-expression": "workspace:^",
|
||||
"@babel/helper-plugin-utils": "workspace:^",
|
||||
"@babel/helper-replace-supers": "workspace:^",
|
||||
"@babel/helper-split-export-declaration": "workspace:^",
|
||||
"globals": "condition:BABEL_8_BREAKING ? ^13.5.0 : ^11.1.0"
|
||||
},
|
||||
"keywords": [
|
||||
@ -29,9 +29,9 @@
|
||||
"@babel/core": "^7.0.0-0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "workspace:*",
|
||||
"@babel/helper-plugin-test-runner": "workspace:*",
|
||||
"@babel/traverse": "workspace:*"
|
||||
"@babel/core": "workspace:^",
|
||||
"@babel/helper-plugin-test-runner": "workspace:^",
|
||||
"@babel/traverse": "workspace:^"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
@ -17,14 +17,14 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "workspace:^7.14.5"
|
||||
"@babel/helper-plugin-utils": "workspace:^"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "workspace:*",
|
||||
"@babel/helper-plugin-test-runner": "workspace:*"
|
||||
"@babel/core": "workspace:^",
|
||||
"@babel/helper-plugin-test-runner": "workspace:^"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
@ -17,14 +17,14 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "workspace:^7.14.5"
|
||||
"@babel/helper-plugin-utils": "workspace:^"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "workspace:*",
|
||||
"@babel/helper-plugin-test-runner": "workspace:*"
|
||||
"@babel/core": "workspace:^",
|
||||
"@babel/helper-plugin-test-runner": "workspace:^"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
@ -22,15 +22,15 @@
|
||||
},
|
||||
"bugs": "https://github.com/babel/babel/issues",
|
||||
"dependencies": {
|
||||
"@babel/helper-create-regexp-features-plugin": "workspace:^7.14.5",
|
||||
"@babel/helper-plugin-utils": "workspace:^7.14.5"
|
||||
"@babel/helper-create-regexp-features-plugin": "workspace:^",
|
||||
"@babel/helper-plugin-utils": "workspace:^"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "workspace:*",
|
||||
"@babel/helper-plugin-test-runner": "workspace:*"
|
||||
"@babel/core": "workspace:^",
|
||||
"@babel/helper-plugin-test-runner": "workspace:^"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
@ -17,14 +17,14 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "workspace:^7.14.5"
|
||||
"@babel/helper-plugin-utils": "workspace:^"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "workspace:*",
|
||||
"@babel/helper-plugin-test-runner": "workspace:*"
|
||||
"@babel/core": "workspace:^",
|
||||
"@babel/helper-plugin-test-runner": "workspace:^"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
@ -17,15 +17,15 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-builder-binary-assignment-operator-visitor": "workspace:^7.14.5",
|
||||
"@babel/helper-plugin-utils": "workspace:^7.14.5"
|
||||
"@babel/helper-builder-binary-assignment-operator-visitor": "workspace:^",
|
||||
"@babel/helper-plugin-utils": "workspace:^"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "workspace:*",
|
||||
"@babel/helper-plugin-test-runner": "workspace:*"
|
||||
"@babel/core": "workspace:^",
|
||||
"@babel/helper-plugin-test-runner": "workspace:^"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
@ -17,16 +17,16 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/generator": "workspace:^7.14.5",
|
||||
"@babel/helper-plugin-utils": "workspace:^7.14.5",
|
||||
"@babel/plugin-syntax-flow": "workspace:^7.14.5"
|
||||
"@babel/generator": "workspace:^",
|
||||
"@babel/helper-plugin-utils": "workspace:^",
|
||||
"@babel/plugin-syntax-flow": "workspace:^"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "workspace:*",
|
||||
"@babel/helper-plugin-test-runner": "workspace:*"
|
||||
"@babel/core": "workspace:^",
|
||||
"@babel/helper-plugin-test-runner": "workspace:^"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
@ -17,15 +17,15 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "workspace:^7.14.5",
|
||||
"@babel/plugin-syntax-flow": "workspace:^7.14.5"
|
||||
"@babel/helper-plugin-utils": "workspace:^",
|
||||
"@babel/plugin-syntax-flow": "workspace:^"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "workspace:*",
|
||||
"@babel/helper-plugin-test-runner": "workspace:*"
|
||||
"@babel/core": "workspace:^",
|
||||
"@babel/helper-plugin-test-runner": "workspace:^"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
@ -17,14 +17,14 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "workspace:^7.14.5"
|
||||
"@babel/helper-plugin-utils": "workspace:^"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "workspace:*",
|
||||
"@babel/helper-plugin-test-runner": "workspace:*"
|
||||
"@babel/core": "workspace:^",
|
||||
"@babel/helper-plugin-test-runner": "workspace:^"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
@ -17,15 +17,15 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-function-name": "workspace:^7.14.5",
|
||||
"@babel/helper-plugin-utils": "workspace:^7.14.5"
|
||||
"@babel/helper-function-name": "workspace:^",
|
||||
"@babel/helper-plugin-utils": "workspace:^"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "workspace:*",
|
||||
"@babel/helper-plugin-test-runner": "workspace:*"
|
||||
"@babel/core": "workspace:^",
|
||||
"@babel/helper-plugin-test-runner": "workspace:^"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
@ -17,14 +17,14 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "workspace:^7.14.5"
|
||||
"@babel/helper-plugin-utils": "workspace:^"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "workspace:*",
|
||||
"@babel/helper-plugin-test-runner": "workspace:*"
|
||||
"@babel/core": "workspace:^",
|
||||
"@babel/helper-plugin-test-runner": "workspace:^"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
@ -17,14 +17,14 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "workspace:^7.14.5"
|
||||
"@babel/helper-plugin-utils": "workspace:^"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "workspace:*",
|
||||
"@babel/helper-plugin-test-runner": "workspace:*"
|
||||
"@babel/core": "workspace:^",
|
||||
"@babel/helper-plugin-test-runner": "workspace:^"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
@ -17,14 +17,14 @@
|
||||
"babel-plugin"
|
||||
],
|
||||
"dependencies": {
|
||||
"@babel/helper-plugin-utils": "workspace:^7.14.5"
|
||||
"@babel/helper-plugin-utils": "workspace:^"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@babel/core": "^7.0.0-0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "workspace:*",
|
||||
"@babel/helper-plugin-test-runner": "workspace:*"
|
||||
"@babel/core": "workspace:^",
|
||||
"@babel/helper-plugin-test-runner": "workspace:^"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.9.0"
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user