* chore: declare eslint-import-resolver-node dependency # Conflicts: # yarn.lock * chore: add devDependencies * Add browserify devDep to babel-register # Conflicts: # packages/babel-register/package.json # yarn.lock * chore: resolve eslint-scope to 5.0.0
100 lines
3.0 KiB
JSON
100 lines
3.0 KiB
JSON
{
|
|
"name": "babel",
|
|
"private": true,
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"bootstrap": "make bootstrap",
|
|
"build": "make build",
|
|
"fix": "make fix",
|
|
"lint": "make lint",
|
|
"test": "make test"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.7.0",
|
|
"@babel/core": "^7.7.2",
|
|
"@babel/eslint-plugin-development": "^1.0.1",
|
|
"@babel/plugin-proposal-class-properties": "^7.7.0",
|
|
"@babel/plugin-proposal-export-namespace-from": "^7.5.2",
|
|
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.4.4",
|
|
"@babel/plugin-proposal-numeric-separator": "^7.2.0",
|
|
"@babel/plugin-proposal-object-rest-spread": "^7.7.4",
|
|
"@babel/plugin-proposal-optional-chaining": "^7.6.0",
|
|
"@babel/plugin-transform-flow-strip-types": "^7.7.4",
|
|
"@babel/plugin-transform-for-of": "^7.7.4",
|
|
"@babel/plugin-transform-modules-commonjs": "^7.7.0",
|
|
"@babel/plugin-transform-runtime": "^7.6.2",
|
|
"@babel/preset-env": "^7.7.1",
|
|
"@babel/preset-flow": "^7.0.0",
|
|
"@babel/register": "^7.7.0",
|
|
"@babel/runtime": "^7.7.2",
|
|
"@rollup/plugin-alias": "^2.2.0",
|
|
"@rollup/plugin-json": "^4.0.0",
|
|
"babel-eslint": "^11.0.0-beta.1",
|
|
"babel-jest": "^24.9.0",
|
|
"babel-plugin-transform-charcodes": "^0.2.0",
|
|
"browserify": "^16.2.3",
|
|
"bundle-collapser": "^1.2.1",
|
|
"chalk": "^2.4.2",
|
|
"charcodes": "^0.2.0",
|
|
"derequire": "^2.0.2",
|
|
"enhanced-resolve": "^3.0.0",
|
|
"eslint": "^6.0.1",
|
|
"eslint-config-babel": "^9.0.0",
|
|
"eslint-import-resolver-node": "^0.3.2",
|
|
"eslint-plugin-flowtype": "^3.8.2",
|
|
"eslint-plugin-import": "^2.17.2",
|
|
"eslint-plugin-prettier": "^3.1.0",
|
|
"fancy-log": "^1.3.3",
|
|
"flow-bin": "^0.108.0",
|
|
"graceful-fs": "^4.1.15",
|
|
"gulp": "^4.0.2",
|
|
"gulp-babel": "^8.0.0",
|
|
"gulp-filter": "^5.1.0",
|
|
"gulp-newer": "^1.0.0",
|
|
"gulp-plumber": "^1.2.1",
|
|
"gulp-rename": "^1.4.0",
|
|
"gulp-watch": "^5.0.1",
|
|
"husky": "^3.0.0",
|
|
"jest": "^24.9.0",
|
|
"lerna": "^3.19.0",
|
|
"lerna-changelog": "^0.5.0",
|
|
"lint-staged": "^9.2.0",
|
|
"lodash": "^4.17.13",
|
|
"mergeiterator": "^1.2.5",
|
|
"output-file-sync": "^2.0.0",
|
|
"prettier": "^1.19.1",
|
|
"pump": "^3.0.0",
|
|
"rimraf": "^2.6.3",
|
|
"rollup": "^1.27.5",
|
|
"rollup-plugin-babel": "^4.0.0",
|
|
"rollup-plugin-commonjs": "^10.1.0",
|
|
"rollup-plugin-node-builtins": "^2.1.2",
|
|
"rollup-plugin-node-globals": "^1.4.0",
|
|
"rollup-plugin-node-resolve": "^5.0.0",
|
|
"rollup-plugin-replace": "^2.2.0",
|
|
"rollup-plugin-terser": "^5.1.2",
|
|
"test262-stream": "^1.3.0",
|
|
"through2": "^2.0.0",
|
|
"typescript": "^3.6.3"
|
|
},
|
|
"resolutions": {
|
|
"@lerna/**/@lerna/collect-updates": "https://github.com/babel/lerna.git#babel-collect-updates",
|
|
"eslint-scope": "^5.0.0"
|
|
},
|
|
"engines": {
|
|
"node": ">= 6.9.0 < 14.0.0",
|
|
"npm": ">= 3.x <= 6.x",
|
|
"yarn": ">=0.27.5 || >=1.0.0-20170811"
|
|
},
|
|
"lint-staged": {
|
|
"*.js": [
|
|
"eslint --format=codeframe"
|
|
]
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
}
|
|
}
|