chore: setup Yarn constraints (#13363)

This commit is contained in:
Kristoffer K 2021-05-31 18:46:03 +02:00 committed by GitHub
parent 0b29b5c2c0
commit 140ec5aa5c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
161 changed files with 926 additions and 316 deletions

View File

@ -23,11 +23,14 @@ jobs:
key: yarn-${{ hashFiles('yarn.lock') }}
restore-keys: |
yarn-
- name: Check Yarn dedupe
- name: 'Check for unmet constraints (fix w/ "yarn constraints --fix")'
run: |
yarn constraints
- name: 'Check for duplicate dependencies (fix w/ "yarn dedupe")'
if: steps.yarn-cache.outputs.cache-hit != 'true'
run: |
yarn dedupe --check
- name: Check or update Yarn cache
- name: 'Check or update Yarn cache (fix w/ "yarn install")'
env:
YARN_ENABLE_SCRIPTS: false # disable post-install scripts
YARN_NODE_LINKER: pnp # use pnp linker for better linking performance: it's meant to update yarn cache only

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -13,6 +13,8 @@ plugins:
spec: "https://raw.githubusercontent.com/nicolo-ribaudo/yarn-plugin-babel-release-tool/main/bundles/%40yarnpkg/plugin-babel-release-tool.js"
- path: .yarn/plugins/@yarnpkg/plugin-conditions.cjs
spec: "https://raw.githubusercontent.com/nicolo-ribaudo/yarn-plugin-conditions/main/bundles/%40yarnpkg/plugin-conditions.js"
- path: .yarn/plugins/@yarnpkg/plugin-constraints.cjs
spec: "@yarnpkg/plugin-constraints"
releaseTool:
ignoreChanges:

View File

@ -11,7 +11,7 @@
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"main": "./lib/index.js",
"keywords": [
"@babel/codemod",
"@babel/plugin"
@ -25,5 +25,9 @@
"devDependencies": {
"@babel/core": "workspace:*",
"@babel/helper-plugin-test-runner": "workspace:*"
}
},
"engines": {
"node": ">=6.9.0"
},
"author": "The Babel Team (https://babel.dev/team)"
}

View File

@ -5,13 +5,13 @@
"repository": {
"type": "git",
"url": "https://github.com/babel/babel.git",
"directory": "codemods/babel-plugin-codemod-remove-unused-catch-binding"
"directory": "codemods/babel-plugin-codemod-optional-catch-binding"
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"main": "./lib/index.js",
"keywords": [
"@babel/codemod",
"@babel/plugin"
@ -25,5 +25,9 @@
"devDependencies": {
"@babel/core": "workspace:*",
"@babel/helper-plugin-test-runner": "workspace:*"
}
},
"engines": {
"node": ">=6.9.0"
},
"author": "The Babel Team (https://babel.dev/team)"
}

69
constraints.pro Normal file
View File

@ -0,0 +1,69 @@
% 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'),
% Only consider dependency ranges that start with 'workspace:'
atom_concat('workspace:', _, DependencyRange).
% Enforces the license in all public workspaces while removing it from private workspaces
gen_enforced_field(WorkspaceCwd, 'license', 'MIT') :-
\+ workspace_field(WorkspaceCwd, 'private', true).
gen_enforced_field(WorkspaceCwd, 'license', null) :-
workspace_field(WorkspaceCwd, 'private', true).
% Enforces the repository field for all public workspaces while removing it from private workspaces
gen_enforced_field(WorkspaceCwd, 'repository.type', 'git') :-
\+ workspace_field(WorkspaceCwd, 'private', true).
gen_enforced_field(WorkspaceCwd, 'repository.url', 'https://github.com/babel/babel.git') :-
\+ workspace_field(WorkspaceCwd, 'private', true).
gen_enforced_field(WorkspaceCwd, 'repository.directory', WorkspaceCwd) :-
\+ workspace_field(WorkspaceCwd, 'private', true).
gen_enforced_field(WorkspaceCwd, 'repository', null) :-
workspace_field(WorkspaceCwd, 'private', true).
% Enforces 'publishConfig.access' is set to public for public workspaces while removing it from private workspaces
gen_enforced_field(WorkspaceCwd, 'publishConfig.access', 'public') :-
\+ workspace_field(WorkspaceCwd, 'private', true).
gen_enforced_field(WorkspaceCwd, 'publishConfig.access', null) :-
workspace_field(WorkspaceCwd, 'private', true).
% Enforces the engines.node field for all workspaces except '@babel/eslint*'
gen_enforced_field(WorkspaceCwd, 'engines.node', '>=6.9.0') :-
\+ workspace_field(WorkspaceCwd, 'private', true),
% Get the workspace name
workspace_ident(WorkspaceCwd, WorkspaceIdent),
% Exempt from the rule as it supports '>=4'. TODO: remove with the next major
WorkspaceIdent \= '@babel/plugin-proposal-unicode-property-regex',
% Exempt from the rule as it supports '>=6.0.0'. TODO: remove with the next major
WorkspaceIdent \= '@babel/parser',
% Skip '@babel/eslint*' workspaces. TODO: remove with the next major
\+ atom_concat('@babel/eslint', _, WorkspaceIdent).
% Enforces the engines.node field for '@babel/eslint*' workspaces
% TODO: remove with the next major
gen_enforced_field(WorkspaceCwd, 'engines.node', '^10.13.0 || ^12.13.0 || >=14.0.0') :-
\+ workspace_field(WorkspaceCwd, 'private', true),
% Get the workspace name
workspace_ident(WorkspaceCwd, WorkspaceIdent),
% Only target '@babel/eslint*' workspaces
atom_concat('@babel/eslint', _, WorkspaceIdent).
% Removes the 'engines.node' field from private workspaces
gen_enforced_field(WorkspaceCwd, 'engines.node', null) :-
workspace_field(WorkspaceCwd, 'private', true).
% Enforces the author field to be consistent
gen_enforced_field(WorkspaceCwd, 'author', 'The Babel Team (https://babel.dev/team)') :-
\+ workspace_field(WorkspaceCwd, 'private', true).
gen_enforced_field(WorkspaceCwd, 'author', null) :-
workspace_field(WorkspaceCwd, 'private', true).
% Enforces the main and types field to start with ./
gen_enforced_field(WorkspaceCwd, FieldName, ExpectedValue) :-
% Fields the rule applies to
member(FieldName, ['main', 'types']),
% Get current value
workspace_field(WorkspaceCwd, FieldName, CurrentValue),
% Must not start with ./ already
\+ atom_concat('./', _, CurrentValue),
% Store './' + CurrentValue in ExpectedValue
atom_concat('./', CurrentValue, ExpectedValue).

View File

@ -2,13 +2,6 @@
"name": "@babel/eslint-config-internal",
"version": "7.12.13",
"description": "The Babel Team's ESLint configuration. Since it's internal, it might not respect semver.",
"author": "The Babel Team (https://babel.dev/team)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/babel/babel.git",
"directory": "eslint/babel-eslint-config-internal"
},
"private": true,
"main": "./index.js",
"type": "commonjs",

View File

@ -2,12 +2,7 @@
"name": "@babel/eslint-plugin-development-internal",
"version": "7.14.0",
"description": "The Babel Team's ESLint custom rules plugin. Since it's internal, it might not respect semver.",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/babel/babel.git",
"directory": "eslint/babel-eslint-plugin-development-internal"
},
"main": "./lib/index.js",
"keywords": [
"babel",
"eslint",
@ -15,8 +10,6 @@
"eslint-plugin",
"babel-eslint"
],
"author": "Kai Cataldo <kai@kaicataldo.com>",
"license": "MIT",
"private": true,
"bugs": {
"url": "https://github.com/babel/babel/issues"

View File

@ -7,11 +7,7 @@
"eslintplugin",
"eslint-plugin"
],
"author": {
"name": "Nicolò Ribaudo",
"email": "nicolo.ribaudo@gmail.com",
"url": "https://github.com/nicolo-ribaudo"
},
"author": "The Babel Team (https://babel.dev/team)",
"main": "./lib/index.js",
"type": "commonjs",
"exports": {

View File

@ -23,7 +23,7 @@
"eslint-plugin",
"babel-eslint"
],
"author": "Jason Quense @monasticpanic",
"author": "The Babel Team (https://babel.dev/team)",
"license": "MIT",
"engines": {
"node": "^10.13.0 || ^12.13.0 || >=14.0.0"

View File

@ -2,7 +2,6 @@
"name": "@babel/eslint-shared-fixtures",
"version": "7.12.13",
"description": "Shared fixtures for testing @babel/eslint-* packages",
"license": "MIT",
"private": true,
"dependencies": {
"@babel/core": "workspace:^7.12.13",

View File

@ -2,7 +2,6 @@
"name": "@babel/eslint-tests",
"version": "7.14.4",
"description": "Tests for babel/eslint-* packages",
"license": "MIT",
"private": true,
"dependencies": {
"@babel/core": "workspace:^7.14.3",

View File

@ -2,7 +2,6 @@
"name": "babel",
"version": "7.14.4",
"private": true,
"license": "MIT",
"type": "commonjs",
"scripts": {
"bootstrap": "make bootstrap",
@ -90,7 +89,6 @@
"babel-plugin-polyfill-corejs2/@babel/compat-data": "workspace:*"
},
"engines": {
"node": ">= 6.9.0",
"yarn": ">=1.4.0"
},
"lint-staged": {

View File

@ -2,7 +2,7 @@
"name": "@babel/cli",
"version": "7.14.3",
"description": "Babel command line.",
"author": "Sebastian McKenzie <sebmck@gmail.com>",
"author": "The Babel Team (https://babel.dev/team)",
"homepage": "https://babel.dev/docs/en/next/babel-cli",
"bugs": "https://github.com/babel/babel/issues?utf8=%E2%9C%93&q=is%3Aissue+label%3A%22pkg%3A%20cli%22+is%3Aopen",
"license": "MIT",
@ -47,5 +47,8 @@
"bin": {
"babel": "./bin/babel.js",
"babel-external-helpers": "./bin/babel-external-helpers.js"
},
"engines": {
"node": ">=6.9.0"
}
}

View File

@ -2,7 +2,7 @@
"name": "@babel/code-frame",
"version": "7.12.13",
"description": "Generate errors that contain a code frame that point to source locations.",
"author": "Sebastian McKenzie <sebmck@gmail.com>",
"author": "The Babel Team (https://babel.dev/team)",
"homepage": "https://babel.dev/docs/en/next/babel-code-frame",
"bugs": "https://github.com/babel/babel/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen",
"license": "MIT",
@ -14,7 +14,7 @@
"url": "https://github.com/babel/babel.git",
"directory": "packages/babel-code-frame"
},
"main": "lib/index.js",
"main": "./lib/index.js",
"dependencies": {
"@babel/highlight": "workspace:^7.12.13"
},
@ -22,5 +22,8 @@
"@types/chalk": "^2.0.0",
"chalk": "^2.0.0",
"strip-ansi": "^4.0.0"
},
"engines": {
"node": ">=6.9.0"
}
}

View File

@ -32,5 +32,8 @@
"@mdn/browser-compat-data": "^3.3.4",
"core-js-compat": "^3.9.0",
"electron-to-chromium": "^1.3.738"
},
"engines": {
"node": ">=6.9.0"
}
}

View File

@ -2,8 +2,8 @@
"name": "@babel/core",
"version": "7.14.3",
"description": "Babel compiler core.",
"main": "lib/index.js",
"author": "Sebastian McKenzie <sebmck@gmail.com>",
"main": "./lib/index.js",
"author": "The Babel Team (https://babel.dev/team)",
"license": "MIT",
"publishConfig": {
"access": "public"

View File

@ -2,7 +2,7 @@
"name": "@babel/generator",
"version": "7.14.3",
"description": "Turns an AST into code.",
"author": "Sebastian McKenzie <sebmck@gmail.com>",
"author": "The Babel Team (https://babel.dev/team)",
"license": "MIT",
"publishConfig": {
"access": "public"
@ -14,7 +14,7 @@
},
"homepage": "https://babel.dev/docs/en/next/babel-generator",
"bugs": "https://github.com/babel/babel/issues?utf8=%E2%9C%93&q=is%3Aissue+label%3A%22pkg%3A%20generator%22+is%3Aopen",
"main": "lib/index.js",
"main": "./lib/index.js",
"files": [
"lib"
],
@ -28,5 +28,8 @@
"@babel/parser": "workspace:*",
"@types/jsesc": "^2.5.0",
"@types/source-map": "^0.5.0"
},
"engines": {
"node": ">=6.9.0"
}
}

View File

@ -12,8 +12,12 @@
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"main": "./lib/index.js",
"dependencies": {
"@babel/types": "workspace:^7.12.13"
}
},
"engines": {
"node": ">=6.9.0"
},
"author": "The Babel Team (https://babel.dev/team)"
}

View File

@ -12,9 +12,13 @@
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"main": "./lib/index.js",
"dependencies": {
"@babel/helper-explode-assignable-expression": "workspace:^7.12.13",
"@babel/types": "workspace:^7.12.13"
}
},
"engines": {
"node": ">=6.9.0"
},
"author": "The Babel Team (https://babel.dev/team)"
}

View File

@ -12,9 +12,13 @@
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"main": "./lib/index.js",
"dependencies": {
"@babel/helper-annotate-as-pure": "workspace:^7.12.13",
"@babel/types": "workspace:^7.12.13"
}
},
"engines": {
"node": ">=6.9.0"
},
"author": "The Babel Team (https://babel.dev/team)"
}

View File

@ -9,7 +9,7 @@
"url": "https://github.com/babel/babel.git",
"directory": "packages/babel-helper-compilation-targets"
},
"main": "lib/index.js",
"main": "./lib/index.js",
"exports": {
".": "./lib/index.js"
},
@ -33,5 +33,8 @@
"@babel/core": "workspace:*",
"@babel/helper-plugin-test-runner": "workspace:*",
"@types/semver": "^5.5.0"
},
"engines": {
"node": ">=6.9.0"
}
}

View File

@ -9,7 +9,7 @@
"url": "https://github.com/babel/babel.git",
"directory": "packages/babel-helper-create-class-features-plugin"
},
"main": "lib/index.js",
"main": "./lib/index.js",
"publishConfig": {
"access": "public"
},
@ -32,5 +32,8 @@
"@babel/core": "workspace:*",
"@babel/helper-plugin-test-runner": "workspace:*",
"@babel/preset-env": "workspace:*"
},
"engines": {
"node": ">=6.9.0"
}
}

View File

@ -9,7 +9,7 @@
"url": "https://github.com/babel/babel.git",
"directory": "packages/babel-helper-create-regexp-features-plugin"
},
"main": "lib/index.js",
"main": "./lib/index.js",
"publishConfig": {
"access": "public"
},
@ -27,5 +27,8 @@
"devDependencies": {
"@babel/core": "workspace:*",
"@babel/helper-plugin-test-runner": "workspace:*"
},
"engines": {
"node": ">=6.9.0"
}
}

View File

@ -12,9 +12,13 @@
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"main": "./lib/index.js",
"dependencies": {
"@babel/helper-function-name": "workspace:^7.12.13",
"@babel/types": "workspace:^7.13.12"
}
},
"engines": {
"node": ">=6.9.0"
},
"author": "The Babel Team (https://babel.dev/team)"
}

View File

@ -12,11 +12,15 @@
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"main": "./lib/index.js",
"dependencies": {
"@babel/types": "workspace:^7.13.0"
},
"devDependencies": {
"@babel/traverse": "workspace:*"
}
},
"engines": {
"node": ">=6.9.0"
},
"author": "The Babel Team (https://babel.dev/team)"
}

View File

@ -2,7 +2,7 @@
"name": "@babel/helper-fixtures",
"version": "7.13.13",
"description": "Helper function to support fixtures",
"author": "Sebastian McKenzie <sebmck@gmail.com>",
"author": "The Babel Team (https://babel.dev/team)",
"license": "MIT",
"publishConfig": {
"access": "public"
@ -13,11 +13,14 @@
"directory": "packages/babel-helper-fixtures"
},
"homepage": "https://babel.dev/docs/en/next/babel-helper-fixtures",
"main": "lib/index.js",
"main": "./lib/index.js",
"dependencies": {
"semver": "condition:BABEL_8_BREAKING ? ^7.3.4 : ^6.3.0"
},
"devDependencies": {
"@types/semver": "^7.3.4"
},
"engines": {
"node": ">=6.9.0"
}
}

View File

@ -12,10 +12,14 @@
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"main": "./lib/index.js",
"dependencies": {
"@babel/helper-get-function-arity": "workspace:^7.12.13",
"@babel/template": "workspace:^7.12.13",
"@babel/types": "workspace:^7.14.2"
}
},
"engines": {
"node": ">=6.9.0"
},
"author": "The Babel Team (https://babel.dev/team)"
}

View File

@ -12,8 +12,12 @@
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"main": "./lib/index.js",
"dependencies": {
"@babel/types": "workspace:^7.12.13"
}
},
"engines": {
"node": ">=6.9.0"
},
"author": "The Babel Team (https://babel.dev/team)"
}

View File

@ -12,10 +12,14 @@
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"main": "./lib/index.js",
"TODO": "The @babel/traverse dependency is only needed for the NodePath TS type. After converting @babel/core to TS we can import NodePath from there.",
"dependencies": {
"@babel/traverse": "workspace:^7.13.15",
"@babel/types": "workspace:^7.13.16"
}
},
"engines": {
"node": ">=6.9.0"
},
"author": "The Babel Team (https://babel.dev/team)"
}

View File

@ -12,12 +12,15 @@
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"author": "Justin Ridgewell <justin@ridgewell.name>",
"main": "./lib/index.js",
"author": "The Babel Team (https://babel.dev/team)",
"dependencies": {
"@babel/types": "workspace:^7.13.12"
},
"devDependencies": {
"@babel/traverse": "workspace:^7.12.17"
"@babel/traverse": "workspace:*"
},
"engines": {
"node": ">=6.9.0"
}
}

View File

@ -2,7 +2,7 @@
"name": "@babel/helper-module-imports",
"version": "7.13.12",
"description": "Babel helper functions for inserting module loads",
"author": "Logan Smyth <loganfsmyth@gmail.com>",
"author": "The Babel Team (https://babel.dev/team)",
"homepage": "https://babel.dev/docs/en/next/babel-helper-module-imports",
"license": "MIT",
"publishConfig": {
@ -13,12 +13,15 @@
"url": "https://github.com/babel/babel.git",
"directory": "packages/babel-helper-module-imports"
},
"main": "lib/index.js",
"main": "./lib/index.js",
"dependencies": {
"@babel/types": "workspace:^7.13.12"
},
"devDependencies": {
"@babel/core": "workspace:*",
"@babel/traverse": "workspace:*"
},
"engines": {
"node": ">=6.9.0"
}
}

View File

@ -2,7 +2,7 @@
"name": "@babel/helper-module-transforms",
"version": "7.14.2",
"description": "Babel helper functions for implementing ES6 module transformations",
"author": "Logan Smyth <loganfsmyth@gmail.com>",
"author": "The Babel Team (https://babel.dev/team)",
"homepage": "https://babel.dev/docs/en/next/babel-helper-module-transforms",
"license": "MIT",
"publishConfig": {
@ -13,7 +13,7 @@
"url": "https://github.com/babel/babel.git",
"directory": "packages/babel-helper-module-transforms"
},
"main": "lib/index.js",
"main": "./lib/index.js",
"dependencies": {
"@babel/helper-module-imports": "workspace:^7.13.12",
"@babel/helper-replace-supers": "workspace:^7.13.12",
@ -23,5 +23,8 @@
"@babel/template": "workspace:^7.12.13",
"@babel/traverse": "workspace:^7.14.2",
"@babel/types": "workspace:^7.14.2"
},
"engines": {
"node": ">=6.9.0"
}
}

View File

@ -12,12 +12,16 @@
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"main": "./lib/index.js",
"dependencies": {
"@babel/types": "workspace:^7.12.13"
},
"devDependencies": {
"@babel/generator": "workspace:*",
"@babel/parser": "workspace:*"
}
},
"engines": {
"node": ">=6.9.0"
},
"author": "The Babel Team (https://babel.dev/team)"
}

View File

@ -12,8 +12,12 @@
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"main": "./lib/index.js",
"dependencies": {
"@babel/helper-transform-fixture-test-runner": "workspace:^7.13.10"
}
},
"engines": {
"node": ">=6.9.0"
},
"author": "The Babel Team (https://babel.dev/team)"
}

View File

@ -2,7 +2,7 @@
"name": "@babel/helper-plugin-utils",
"version": "7.13.0",
"description": "General utilities for plugins to use",
"author": "Logan Smyth <loganfsmyth@gmail.com>",
"author": "The Babel Team (https://babel.dev/team)",
"homepage": "https://babel.dev/docs/en/next/babel-helper-plugin-utils",
"license": "MIT",
"publishConfig": {
@ -13,5 +13,8 @@
"url": "https://github.com/babel/babel.git",
"directory": "packages/babel-helper-plugin-utils"
},
"main": "lib/index.js"
"main": "./lib/index.js",
"engines": {
"node": ">=6.9.0"
}
}

View File

@ -12,7 +12,7 @@
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"main": "./lib/index.js",
"dependencies": {
"@babel/helper-annotate-as-pure": "workspace:^7.12.13",
"@babel/helper-wrap-function": "workspace:^7.13.0",
@ -20,5 +20,9 @@
},
"devDependencies": {
"@babel/traverse": "workspace:*"
}
},
"engines": {
"node": ">=6.9.0"
},
"author": "The Babel Team (https://babel.dev/team)"
}

View File

@ -12,11 +12,15 @@
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"main": "./lib/index.js",
"dependencies": {
"@babel/helper-member-expression-to-functions": "workspace:^7.13.12",
"@babel/helper-optimise-call-expression": "workspace:^7.12.13",
"@babel/traverse": "workspace:^7.14.2",
"@babel/types": "workspace:^7.14.4"
}
},
"engines": {
"node": ">=6.9.0"
},
"author": "The Babel Team (https://babel.dev/team)"
}

View File

@ -2,7 +2,7 @@
"name": "@babel/helper-simple-access",
"version": "7.13.12",
"description": "Babel helper for ensuring that access to a given value is performed through simple accesses",
"author": "Logan Smyth <loganfsmyth@gmail.com>",
"author": "The Babel Team (https://babel.dev/team)",
"homepage": "https://babel.dev/docs/en/next/babel-helper-simple-access",
"license": "MIT",
"publishConfig": {
@ -13,11 +13,14 @@
"url": "https://github.com/babel/babel.git",
"directory": "packages/babel-helper-simple-access"
},
"main": "lib/index.js",
"main": "./lib/index.js",
"dependencies": {
"@babel/types": "workspace:^7.13.12"
},
"devDependencies": {
"@babel/traverse": "workspace:^7.12.17"
"@babel/traverse": "workspace:*"
},
"engines": {
"node": ">=6.9.0"
}
}

View File

@ -21,5 +21,9 @@
},
"devDependencies": {
"@babel/traverse": "workspace:*"
}
},
"engines": {
"node": ">=6.9.0"
},
"author": "The Babel Team (https://babel.dev/team)"
}

View File

@ -12,8 +12,12 @@
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"main": "./lib/index.js",
"dependencies": {
"@babel/types": "workspace:^7.12.13"
}
},
"engines": {
"node": ">=6.9.0"
},
"author": "The Babel Team (https://babel.dev/team)"
}

View File

@ -2,7 +2,7 @@
"name": "@babel/helper-transform-fixture-test-runner",
"version": "7.13.15",
"description": "Transform test runner for @babel/helper-fixtures module",
"author": "Sebastian McKenzie <sebmck@gmail.com>",
"author": "The Babel Team (https://babel.dev/team)",
"homepage": "https://babel.dev/docs/en/next/babel-helper-transform-fixture-test-runner",
"license": "MIT",
"publishConfig": {
@ -13,7 +13,7 @@
"url": "https://github.com/babel/babel.git",
"directory": "packages/babel-helper-transform-fixture-test-runner"
},
"main": "lib/index.js",
"main": "./lib/index.js",
"dependencies": {
"@babel/code-frame": "workspace:^7.12.13",
"@babel/core": "workspace:^7.13.15",
@ -25,5 +25,8 @@
},
"devDependencies": {
"@types/jest": "^25.2.2"
},
"engines": {
"node": ">=6.9.0"
}
}

View File

@ -18,5 +18,9 @@
"@unicode/unicode-13.0.0": "^1.0.6",
"benchmark": "^2.1.4",
"charcodes": "^0.2.0"
}
},
"engines": {
"node": ">=6.9.0"
},
"author": "The Babel Team (https://babel.dev/team)"
}

View File

@ -12,5 +12,9 @@
"access": "public"
},
"main": "./lib/index.js",
"exports": "./lib/index.js"
"exports": "./lib/index.js",
"engines": {
"node": ">=6.9.0"
},
"author": "The Babel Team (https://babel.dev/team)"
}

View File

@ -12,11 +12,15 @@
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"main": "./lib/index.js",
"dependencies": {
"@babel/helper-function-name": "workspace:^7.12.13",
"@babel/template": "workspace:^7.12.13",
"@babel/traverse": "workspace:^7.13.0",
"@babel/types": "workspace:^7.13.0"
}
},
"engines": {
"node": ">=6.9.0"
},
"author": "The Babel Team (https://babel.dev/team)"
}

View File

@ -2,7 +2,7 @@
"name": "@babel/helpers",
"version": "7.14.0",
"description": "Collection of helper functions used by Babel transforms.",
"author": "Sebastian McKenzie <sebmck@gmail.com>",
"author": "The Babel Team (https://babel.dev/team)",
"homepage": "https://babel.dev/docs/en/next/babel-helpers",
"license": "MIT",
"publishConfig": {
@ -13,7 +13,7 @@
"url": "https://github.com/babel/babel.git",
"directory": "packages/babel-helpers"
},
"main": "lib/index.js",
"main": "./lib/index.js",
"dependencies": {
"@babel/template": "workspace:^7.12.13",
"@babel/traverse": "workspace:^7.14.0",
@ -21,5 +21,8 @@
},
"devDependencies": {
"@babel/helper-plugin-test-runner": "workspace:*"
},
"engines": {
"node": ">=6.9.0"
}
}

View File

@ -2,7 +2,7 @@
"name": "@babel/highlight",
"version": "7.14.0",
"description": "Syntax highlight JavaScript strings for output in terminals.",
"author": "suchipi <me@suchipi.com>",
"author": "The Babel Team (https://babel.dev/team)",
"homepage": "https://babel.dev/docs/en/next/babel-highlight",
"license": "MIT",
"publishConfig": {
@ -13,7 +13,7 @@
"url": "https://github.com/babel/babel.git",
"directory": "packages/babel-highlight"
},
"main": "lib/index.js",
"main": "./lib/index.js",
"dependencies": {
"@babel/helper-validator-identifier": "workspace:^7.14.0",
"chalk": "^2.0.0",
@ -22,5 +22,8 @@
"devDependencies": {
"@types/chalk": "^2.0.0",
"strip-ansi": "^4.0.0"
},
"engines": {
"node": ">=6.9.0"
}
}

View File

@ -2,7 +2,7 @@
"name": "@babel/node",
"version": "7.14.2",
"description": "Babel command line",
"author": "Sebastian McKenzie <sebmck@gmail.com>",
"author": "The Babel Team (https://babel.dev/team)",
"homepage": "https://babel.dev/docs/en/next/babel-node",
"license": "MIT",
"publishConfig": {
@ -43,5 +43,8 @@
},
"bin": {
"babel-node": "./bin/babel-node.js"
},
"engines": {
"node": ">=6.9.0"
}
}

View File

@ -2,7 +2,7 @@
"name": "@babel/parser",
"version": "7.14.4",
"description": "A JavaScript parser",
"author": "Sebastian McKenzie <sebmck@gmail.com>",
"author": "The Babel Team (https://babel.dev/team)",
"homepage": "https://babel.dev/docs/en/next/babel-parser",
"bugs": "https://github.com/babel/babel/issues?utf8=%E2%9C%93&q=is%3Aissue+label%3A%22pkg%3A+parser+%28babylon%29%22+is%3Aopen",
"license": "MIT",
@ -22,8 +22,8 @@
"url": "https://github.com/babel/babel.git",
"directory": "packages/babel-parser"
},
"main": "lib/index.js",
"types": "typings/babel-parser.d.ts",
"main": "./lib/index.js",
"types": "./typings/babel-parser.d.ts",
"files": [
"bin",
"lib",

View File

@ -12,7 +12,7 @@
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"main": "./lib/index.js",
"exports": {
".": [
"./lib/index.js"
@ -34,5 +34,9 @@
"@babel/core": "workspace:*",
"@babel/helper-plugin-test-runner": "workspace:*",
"@babel/traverse": "workspace:*"
}
},
"engines": {
"node": ">=6.9.0"
},
"author": "The Babel Team (https://babel.dev/team)"
}

View File

@ -12,7 +12,7 @@
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"main": "./lib/index.js",
"keywords": [
"babel-plugin"
],
@ -25,5 +25,9 @@
"devDependencies": {
"@babel/core": "workspace:*",
"@babel/helper-plugin-test-runner": "workspace:*"
}
},
"engines": {
"node": ">=6.9.0"
},
"author": "The Babel Team (https://babel.dev/team)"
}

View File

@ -32,5 +32,9 @@
"@babel/traverse": "workspace:*",
"@babel/types": "workspace:*"
},
"homepage": "https://babel.dev/docs/en/next/babel-plugin-proposal-async-do-expressions"
"homepage": "https://babel.dev/docs/en/next/babel-plugin-proposal-async-do-expressions",
"engines": {
"node": ">=6.9.0"
},
"author": "The Babel Team (https://babel.dev/team)"
}

View File

@ -12,7 +12,7 @@
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"main": "./lib/index.js",
"keywords": [
"babel-plugin"
],
@ -29,5 +29,9 @@
"@babel/helper-plugin-test-runner": "workspace:*",
"babel-plugin-polyfill-corejs3": "^0.2.0",
"core-js-pure": "^3.8.1"
}
},
"engines": {
"node": ">=6.9.0"
},
"author": "The Babel Team (https://babel.dev/team)"
}

View File

@ -12,7 +12,7 @@
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"main": "./lib/index.js",
"keywords": [
"babel-plugin"
],
@ -26,5 +26,9 @@
"devDependencies": {
"@babel/core": "workspace:*",
"@babel/helper-plugin-test-runner": "workspace:*"
}
},
"engines": {
"node": ">=6.9.0"
},
"author": "The Babel Team (https://babel.dev/team)"
}

View File

@ -30,5 +30,9 @@
"@babel/core": "workspace:*",
"@babel/helper-plugin-test-runner": "workspace:*"
},
"homepage": "https://babel.dev/docs/en/next/babel-plugin-proposal-class-static-block"
"homepage": "https://babel.dev/docs/en/next/babel-plugin-proposal-class-static-block",
"engines": {
"node": ">=6.9.0"
},
"author": "The Babel Team (https://babel.dev/team)"
}

View File

@ -1,7 +1,7 @@
{
"name": "@babel/plugin-proposal-decorators",
"version": "7.14.2",
"author": "Logan Smyth <loganfsmyth@gmail.com>",
"author": "The Babel Team (https://babel.dev/team)",
"license": "MIT",
"publishConfig": {
"access": "public"
@ -13,7 +13,7 @@
"directory": "packages/babel-plugin-proposal-decorators"
},
"homepage": "https://babel.dev/docs/en/next/babel-plugin-proposal-decorators",
"main": "lib/index.js",
"main": "./lib/index.js",
"keywords": [
"babel",
"babel-plugin",
@ -32,5 +32,8 @@
"@babel/helper-plugin-test-runner": "workspace:*",
"babel-plugin-polyfill-es-shims": "^0.2.0",
"object.getownpropertydescriptors": "^2.1.1"
},
"engines": {
"node": ">=6.9.0"
}
}

View File

@ -12,7 +12,7 @@
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"main": "./lib/index.js",
"keywords": [
"babel-plugin"
],
@ -26,5 +26,9 @@
"devDependencies": {
"@babel/core": "workspace:*",
"@babel/helper-plugin-test-runner": "workspace:*"
}
},
"engines": {
"node": ">=6.9.0"
},
"author": "The Babel Team (https://babel.dev/team)"
}

View File

@ -11,7 +11,7 @@
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"main": "./lib/index.js",
"keywords": [
"babel-plugin"
],
@ -25,5 +25,9 @@
"devDependencies": {
"@babel/core": "workspace:*",
"@babel/helper-plugin-test-runner": "workspace:*"
}
},
"engines": {
"node": ">=6.9.0"
},
"author": "The Babel Team (https://babel.dev/team)"
}

View File

@ -12,7 +12,7 @@
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"main": "./lib/index.js",
"keywords": [
"babel-plugin"
],
@ -26,5 +26,9 @@
"devDependencies": {
"@babel/core": "workspace:*",
"@babel/helper-plugin-test-runner": "workspace:*"
}
},
"engines": {
"node": ">=6.9.0"
},
"author": "The Babel Team (https://babel.dev/team)"
}

View File

@ -11,7 +11,7 @@
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"main": "./lib/index.js",
"keywords": [
"babel-plugin"
],
@ -26,5 +26,9 @@
"@babel/core": "workspace:*",
"@babel/helper-plugin-test-runner": "workspace:*"
},
"homepage": "https://babel.dev/docs/en/next/babel-plugin-proposal-export-namespace-from"
"homepage": "https://babel.dev/docs/en/next/babel-plugin-proposal-export-namespace-from",
"engines": {
"node": ">=6.9.0"
},
"author": "The Babel Team (https://babel.dev/team)"
}

View File

@ -12,7 +12,7 @@
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"main": "./lib/index.js",
"keywords": [
"babel-plugin"
],
@ -26,5 +26,9 @@
"devDependencies": {
"@babel/core": "workspace:*",
"@babel/helper-plugin-test-runner": "workspace:*"
}
},
"engines": {
"node": ">=6.9.0"
},
"author": "The Babel Team (https://babel.dev/team)"
}

View File

@ -12,7 +12,7 @@
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"main": "./lib/index.js",
"keywords": [
"babel-plugin"
],
@ -27,5 +27,9 @@
"devDependencies": {
"@babel/core": "workspace:*",
"@babel/helper-plugin-test-runner": "workspace:*"
}
},
"engines": {
"node": ">=6.9.0"
},
"author": "The Babel Team (https://babel.dev/team)"
}

View File

@ -12,7 +12,7 @@
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"main": "./lib/index.js",
"keywords": [
"babel-plugin"
],
@ -26,5 +26,9 @@
"devDependencies": {
"@babel/core": "workspace:*",
"@babel/helper-plugin-test-runner": "workspace:*"
}
},
"engines": {
"node": ">=6.9.0"
},
"author": "The Babel Team (https://babel.dev/team)"
}

View File

@ -11,7 +11,7 @@
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"main": "./lib/index.js",
"keywords": [
"babel-plugin"
],
@ -28,5 +28,9 @@
"@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"
"homepage": "https://babel.dev/docs/en/next/babel-plugin-proposal-logical-assignment-operators",
"engines": {
"node": ">=6.9.0"
},
"author": "The Babel Team (https://babel.dev/team)"
}

View File

@ -12,7 +12,7 @@
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"main": "./lib/index.js",
"keywords": [
"babel-plugin"
],
@ -26,5 +26,9 @@
"devDependencies": {
"@babel/core": "workspace:*",
"@babel/helper-plugin-test-runner": "workspace:*"
}
},
"engines": {
"node": ">=6.9.0"
},
"author": "The Babel Team (https://babel.dev/team)"
}

View File

@ -12,7 +12,7 @@
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"main": "./lib/index.js",
"keywords": [
"babel-plugin"
],
@ -26,5 +26,9 @@
"devDependencies": {
"@babel/core": "workspace:*",
"@babel/helper-plugin-test-runner": "workspace:*"
}
},
"engines": {
"node": ">=6.9.0"
},
"author": "The Babel Team (https://babel.dev/team)"
}

View File

@ -12,7 +12,7 @@
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"main": "./lib/index.js",
"keywords": [
"babel-plugin"
],
@ -29,5 +29,9 @@
"devDependencies": {
"@babel/core": "workspace:*",
"@babel/helper-plugin-test-runner": "workspace:*"
}
},
"engines": {
"node": ">=6.9.0"
},
"author": "The Babel Team (https://babel.dev/team)"
}

View File

@ -12,7 +12,7 @@
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"main": "./lib/index.js",
"keywords": [
"babel-plugin"
],
@ -26,5 +26,9 @@
"devDependencies": {
"@babel/core": "workspace:*",
"@babel/helper-plugin-test-runner": "workspace:*"
}
},
"engines": {
"node": ">=6.9.0"
},
"author": "The Babel Team (https://babel.dev/team)"
}

View File

@ -12,7 +12,7 @@
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"main": "./lib/index.js",
"keywords": [
"babel-plugin"
],
@ -28,5 +28,9 @@
"@babel/core": "workspace:*",
"@babel/helper-plugin-test-runner": "workspace:*",
"@babel/plugin-transform-block-scoping": "workspace:*"
}
},
"engines": {
"node": ">=6.9.0"
},
"author": "The Babel Team (https://babel.dev/team)"
}

View File

@ -12,7 +12,7 @@
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"main": "./lib/index.js",
"keywords": [
"babel-plugin"
],
@ -26,5 +26,9 @@
"devDependencies": {
"@babel/core": "workspace:*",
"@babel/helper-plugin-test-runner": "workspace:*"
}
},
"engines": {
"node": ">=6.9.0"
},
"author": "The Babel Team (https://babel.dev/team)"
}

View File

@ -12,7 +12,7 @@
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"main": "./lib/index.js",
"keywords": [
"babel-plugin"
],
@ -26,5 +26,9 @@
"devDependencies": {
"@babel/core": "workspace:*",
"@babel/helper-plugin-test-runner": "workspace:*"
}
},
"engines": {
"node": ">=6.9.0"
},
"author": "The Babel Team (https://babel.dev/team)"
}

View File

@ -12,7 +12,7 @@
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"main": "./lib/index.js",
"keywords": [
"babel-plugin"
],
@ -26,5 +26,9 @@
"devDependencies": {
"@babel/core": "workspace:*",
"@babel/helper-plugin-test-runner": "workspace:*"
}
},
"engines": {
"node": ">=6.9.0"
},
"author": "The Babel Team (https://babel.dev/team)"
}

View File

@ -12,7 +12,7 @@
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"main": "./lib/index.js",
"keywords": [
"babel-plugin"
],
@ -28,5 +28,9 @@
"devDependencies": {
"@babel/core": "workspace:*",
"@babel/helper-plugin-test-runner": "workspace:*"
}
},
"engines": {
"node": ">=6.9.0"
},
"author": "The Babel Team (https://babel.dev/team)"
}

View File

@ -28,5 +28,9 @@
"devDependencies": {
"@babel/core": "workspace:*",
"@babel/helper-plugin-test-runner": "workspace:*"
}
},
"engines": {
"node": ">=6.9.0"
},
"author": "The Babel Team (https://babel.dev/team)"
}

View File

@ -12,7 +12,7 @@
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"main": "./lib/index.js",
"keywords": [
"babel-plugin"
],
@ -26,5 +26,9 @@
"devDependencies": {
"@babel/core": "workspace:*",
"@babel/helper-plugin-test-runner": "workspace:*"
}
},
"engines": {
"node": ">=6.9.0"
},
"author": "The Babel Team (https://babel.dev/team)"
}

View File

@ -7,7 +7,7 @@
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"main": "./lib/index.js",
"engines": {
"node": ">=4"
},
@ -35,5 +35,6 @@
"devDependencies": {
"@babel/core": "workspace:*",
"@babel/helper-plugin-test-runner": "workspace:*"
}
},
"author": "The Babel Team (https://babel.dev/team)"
}

View File

@ -27,5 +27,9 @@
"devDependencies": {
"@babel/core": "workspace:*"
},
"homepage": "https://babel.dev/docs/en/next/babel-plugin-syntax-async-do-expressions"
"homepage": "https://babel.dev/docs/en/next/babel-plugin-syntax-async-do-expressions",
"engines": {
"node": ">=6.9.0"
},
"author": "The Babel Team (https://babel.dev/team)"
}

View File

@ -24,5 +24,9 @@
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"engines": {
"node": ">=6.9.0"
},
"author": "The Babel Team (https://babel.dev/team)"
}

View File

@ -11,7 +11,7 @@
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"main": "./lib/index.js",
"exports": {
".": "./lib/index.js"
},
@ -23,5 +23,9 @@
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"engines": {
"node": ">=6.9.0"
},
"author": "The Babel Team (https://babel.dev/team)"
}

View File

@ -12,7 +12,7 @@
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"main": "./lib/index.js",
"keywords": [
"babel-plugin"
],
@ -24,5 +24,9 @@
},
"devDependencies": {
"@babel/core": "workspace:*"
}
},
"engines": {
"node": ">=6.9.0"
},
"author": "The Babel Team (https://babel.dev/team)"
}

View File

@ -11,7 +11,7 @@
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"main": "./lib/index.js",
"keywords": [
"babel-plugin"
],
@ -24,5 +24,9 @@
"devDependencies": {
"@babel/core": "workspace:*"
},
"homepage": "https://babel.dev/docs/en/next/babel-plugin-syntax-do-expressions"
"homepage": "https://babel.dev/docs/en/next/babel-plugin-syntax-do-expressions",
"engines": {
"node": ">=6.9.0"
},
"author": "The Babel Team (https://babel.dev/team)"
}

View File

@ -11,7 +11,7 @@
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"main": "./lib/index.js",
"keywords": [
"babel-plugin"
],
@ -24,5 +24,9 @@
"devDependencies": {
"@babel/core": "workspace:*"
},
"homepage": "https://babel.dev/docs/en/next/babel-plugin-syntax-export-default-from"
"homepage": "https://babel.dev/docs/en/next/babel-plugin-syntax-export-default-from",
"engines": {
"node": ">=6.9.0"
},
"author": "The Babel Team (https://babel.dev/team)"
}

View File

@ -12,7 +12,7 @@
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"main": "./lib/index.js",
"keywords": [
"babel-plugin"
],
@ -24,5 +24,9 @@
},
"devDependencies": {
"@babel/core": "workspace:*"
}
},
"engines": {
"node": ">=6.9.0"
},
"author": "The Babel Team (https://babel.dev/team)"
}

View File

@ -12,7 +12,7 @@
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"main": "./lib/index.js",
"keywords": [
"babel-plugin"
],
@ -24,5 +24,9 @@
},
"devDependencies": {
"@babel/core": "workspace:*"
}
},
"engines": {
"node": ">=6.9.0"
},
"author": "The Babel Team (https://babel.dev/team)"
}

View File

@ -12,7 +12,7 @@
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"main": "./lib/index.js",
"keywords": [
"babel-plugin"
],
@ -24,5 +24,9 @@
},
"devDependencies": {
"@babel/core": "workspace:*"
}
},
"engines": {
"node": ">=6.9.0"
},
"author": "The Babel Team (https://babel.dev/team)"
}

View File

@ -11,7 +11,7 @@
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"main": "./lib/index.js",
"keywords": [
"babel-plugin"
],
@ -23,5 +23,9 @@
},
"devDependencies": {
"@babel/core": "workspace:*"
}
},
"engines": {
"node": ">=6.9.0"
},
"author": "The Babel Team (https://babel.dev/team)"
}

View File

@ -12,7 +12,7 @@
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"main": "./lib/index.js",
"keywords": [
"babel-plugin"
],
@ -24,5 +24,9 @@
},
"devDependencies": {
"@babel/core": "workspace:*"
}
},
"engines": {
"node": ">=6.9.0"
},
"author": "The Babel Team (https://babel.dev/team)"
}

View File

@ -11,7 +11,7 @@
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"main": "./lib/index.js",
"exports": {
".": "./lib/index.js"
},
@ -23,5 +23,9 @@
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"engines": {
"node": ">=6.9.0"
},
"author": "The Babel Team (https://babel.dev/team)"
}

View File

@ -12,7 +12,7 @@
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"main": "./lib/index.js",
"keywords": [
"babel-plugin"
],
@ -24,5 +24,9 @@
},
"devDependencies": {
"@babel/core": "workspace:*"
}
},
"engines": {
"node": ">=6.9.0"
},
"author": "The Babel Team (https://babel.dev/team)"
}

View File

@ -12,7 +12,7 @@
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"main": "./lib/index.js",
"keywords": [
"babel-plugin"
],
@ -24,5 +24,9 @@
},
"devDependencies": {
"@babel/core": "workspace:*"
}
},
"engines": {
"node": ">=6.9.0"
},
"author": "The Babel Team (https://babel.dev/team)"
}

View File

@ -24,5 +24,9 @@
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"engines": {
"node": ">=6.9.0"
},
"author": "The Babel Team (https://babel.dev/team)"
}

View File

@ -11,7 +11,7 @@
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"main": "./lib/index.js",
"keywords": [
"babel-plugin"
],
@ -23,5 +23,9 @@
},
"devDependencies": {
"@babel/core": "workspace:*"
}
},
"engines": {
"node": ">=6.9.0"
},
"author": "The Babel Team (https://babel.dev/team)"
}

View File

@ -12,7 +12,7 @@
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"main": "./lib/index.js",
"keywords": [
"babel-plugin"
],
@ -24,5 +24,9 @@
},
"devDependencies": {
"@babel/core": "workspace:*"
}
},
"engines": {
"node": ">=6.9.0"
},
"author": "The Babel Team (https://babel.dev/team)"
}

View File

@ -12,7 +12,7 @@
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"main": "./lib/index.js",
"keywords": [
"babel-plugin"
],
@ -24,5 +24,9 @@
},
"devDependencies": {
"@babel/core": "workspace:*"
}
},
"engines": {
"node": ">=6.9.0"
},
"author": "The Babel Team (https://babel.dev/team)"
}

View File

@ -12,7 +12,7 @@
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"main": "./lib/index.js",
"keywords": [
"babel-plugin",
"typescript"
@ -25,5 +25,9 @@
},
"devDependencies": {
"@babel/core": "workspace:*"
}
},
"engines": {
"node": ">=6.9.0"
},
"author": "The Babel Team (https://babel.dev/team)"
}

View File

@ -12,7 +12,7 @@
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"main": "./lib/index.js",
"keywords": [
"babel-plugin"
],
@ -26,5 +26,9 @@
"@babel/core": "workspace:*",
"@babel/helper-plugin-test-runner": "workspace:*",
"@babel/traverse": "workspace:*"
}
},
"engines": {
"node": ">=6.9.0"
},
"author": "The Babel Team (https://babel.dev/team)"
}

View File

@ -12,7 +12,7 @@
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"main": "./lib/index.js",
"keywords": [
"babel-plugin"
],
@ -27,5 +27,9 @@
"devDependencies": {
"@babel/core": "workspace:*",
"@babel/helper-plugin-test-runner": "workspace:*"
}
},
"engines": {
"node": ">=6.9.0"
},
"author": "The Babel Team (https://babel.dev/team)"
}

View File

@ -12,7 +12,7 @@
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"main": "./lib/index.js",
"keywords": [
"babel-plugin"
],
@ -25,5 +25,9 @@
"devDependencies": {
"@babel/core": "workspace:*",
"@babel/helper-plugin-test-runner": "workspace:*"
}
},
"engines": {
"node": ">=6.9.0"
},
"author": "The Babel Team (https://babel.dev/team)"
}

View File

@ -12,7 +12,7 @@
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"main": "./lib/index.js",
"dependencies": {
"@babel/helper-plugin-utils": "workspace:^7.13.0"
},
@ -25,5 +25,9 @@
"devDependencies": {
"@babel/core": "workspace:*",
"@babel/helper-plugin-test-runner": "workspace:*"
}
},
"engines": {
"node": ">=6.9.0"
},
"author": "The Babel Team (https://babel.dev/team)"
}

Some files were not shown because too many files have changed in this diff Show More