* Fix babel-standalone * Fix infinite loop in Makefile (oops) * Override Node.js module resolution to handle babel-core
78 lines
1.8 KiB
JSON
78 lines
1.8 KiB
JSON
{
|
|
"name": "babel",
|
|
"private": true,
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"build": "make build",
|
|
"fix": "make fix",
|
|
"lint": "make lint",
|
|
"precommit": "lint-staged",
|
|
"test": "make test"
|
|
},
|
|
"devDependencies": {
|
|
"async": "^1.5.0",
|
|
"babel-cli": "7.0.0-alpha.18",
|
|
"babel-core": "7.0.0-alpha.18",
|
|
"babel-eslint": "8.0.0-alpha.15",
|
|
"babel-plugin-istanbul": "^4.1.4",
|
|
"babel-preset-env": "2.0.0-alpha.18",
|
|
"babel-preset-flow": "7.0.0-alpha.18",
|
|
"babel-preset-stage-0": "7.0.0-alpha.18",
|
|
"babel-register": "7.0.0-alpha.18",
|
|
"babylon": "7.0.0-beta.18",
|
|
"browserify": "^13.1.1",
|
|
"bundle-collapser": "^1.2.1",
|
|
"chai": "^4.1.0",
|
|
"chalk": "^2.0.0",
|
|
"derequire": "^2.0.2",
|
|
"eslint": "^3.14.1",
|
|
"eslint-config-babel": "^7.0.2",
|
|
"eslint-plugin-flowtype": "^2.20.0",
|
|
"eslint-plugin-prettier": "^2.1.2",
|
|
"flow-bin": "^0.52.0",
|
|
"gulp": "^3.9.0",
|
|
"gulp-babel": "^7.0.0",
|
|
"gulp-newer": "^1.0.0",
|
|
"gulp-plumber": "^1.0.1",
|
|
"gulp-util": "^3.0.7",
|
|
"gulp-watch": "^4.3.5",
|
|
"husky": "^0.13.2",
|
|
"lerna": "2.0.0",
|
|
"lerna-changelog": "^0.5.0",
|
|
"lint-staged": "^3.6.1",
|
|
"lodash": "^4.2.0",
|
|
"mocha": "^3.0.0",
|
|
"nyc": "^11.0.3",
|
|
"output-file-sync": "^2.0.0",
|
|
"prettier": "^1.5.0",
|
|
"rimraf": "^2.4.3",
|
|
"semver": "^5.0.0",
|
|
"through2": "^2.0.0",
|
|
"uglify-js": "^2.4.16"
|
|
},
|
|
"engines": {
|
|
"node": ">= 4.x <= 8.x",
|
|
"npm": ">= 2.x <= 5.x",
|
|
"yarn": ">=0.27.5 || >=1.0.0-20170811"
|
|
},
|
|
"nyc": {
|
|
"all": true,
|
|
"exclude": [
|
|
"scripts/*.js",
|
|
"packages/*/test/**",
|
|
"packages/babel-standalone/**"
|
|
],
|
|
"sourceMap": false,
|
|
"instrument": false
|
|
},
|
|
"lint-staged": {
|
|
"*.js": [
|
|
"eslint --format=codeframe --fix",
|
|
"git add"
|
|
]
|
|
},
|
|
"workspaces": [
|
|
"packages/*"
|
|
]
|
|
}
|