* chore: use yarn 2 * chore: remove redundant yarn locks * chore: remove publishEslintPkg * chore: remove redundant make bootstrap * Update .yarnrc.yml Co-authored-by: Kristoffer K. <merceyz@users.noreply.github.com> * chore: use workspace protocol for eslint packages in the root Co-Authored-By: merceyz <merceyz@users.noreply.github.com> * chore: pin caniuse-lite versions Testcases in packages/babel-preset-env/test/fixtures/debug/browserslists-defaults-not-ie depends on specific caniuse-lite versions. We pinned the version here so we don't have to deal with fixture different in e2e-tests where all deps will be updated and tested. * chore: resolve yarn install warnings * chore: update yarn cache path on circle/travis * chore: add yarn deduplicate plugin * chore: deduplicate lock files * chore: move devDependencies to leaf packages * chore: remove @yarnpkg/plugin-constraints * chore: remove unused dedupe options * test: fix unwanted self reference * chore: remove output-file-sync dependency * chore: update browserify to 16.5.2 Co-authored-by: Kristoffer K. <merceyz@users.noreply.github.com>
67 lines
1.7 KiB
JSON
67 lines
1.7 KiB
JSON
{
|
|
"name": "@babel/core",
|
|
"version": "7.11.4",
|
|
"description": "Babel compiler core.",
|
|
"main": "lib/index.js",
|
|
"author": "Sebastian McKenzie <sebmck@gmail.com>",
|
|
"homepage": "https://babeljs.io/",
|
|
"license": "MIT",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/babel/babel.git",
|
|
"directory": "packages/babel-core"
|
|
},
|
|
"keywords": [
|
|
"6to5",
|
|
"babel",
|
|
"classes",
|
|
"const",
|
|
"es6",
|
|
"harmony",
|
|
"let",
|
|
"modules",
|
|
"transpile",
|
|
"transpiler",
|
|
"var",
|
|
"babel-core",
|
|
"compiler"
|
|
],
|
|
"engines": {
|
|
"node": ">=6.9.0"
|
|
},
|
|
"funding": {
|
|
"type": "opencollective",
|
|
"url": "https://opencollective.com/babel"
|
|
},
|
|
"browser": {
|
|
"./lib/config/files/index.js": "./lib/config/files/index-browser.js",
|
|
"./lib/transform-file.js": "./lib/transform-file-browser.js",
|
|
"./src/config/files/index.js": "./src/config/files/index-browser.js",
|
|
"./src/transform-file.js": "./src/transform-file-browser.js"
|
|
},
|
|
"dependencies": {
|
|
"@babel/code-frame": "workspace:^7.10.4",
|
|
"@babel/generator": "workspace:^7.11.4",
|
|
"@babel/helper-module-transforms": "workspace:^7.11.0",
|
|
"@babel/helpers": "workspace:^7.10.4",
|
|
"@babel/parser": "workspace:^7.11.4",
|
|
"@babel/template": "workspace:^7.10.4",
|
|
"@babel/traverse": "workspace:^7.11.0",
|
|
"@babel/types": "workspace:^7.11.0",
|
|
"convert-source-map": "^1.7.0",
|
|
"debug": "^4.1.0",
|
|
"gensync": "^1.0.0-beta.1",
|
|
"json5": "^2.1.2",
|
|
"lodash": "^4.17.19",
|
|
"resolve": "^1.3.2",
|
|
"semver": "^5.4.1",
|
|
"source-map": "^0.5.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/helper-transform-fixture-test-runner": "workspace:^7.11.4"
|
|
}
|
|
}
|