84 lines
3.4 KiB
JSON
84 lines
3.4 KiB
JSON
{
|
|
"name": "babel-preset-env",
|
|
"version": "2.0.0-alpha.1",
|
|
"description": "A Babel preset for each environment.",
|
|
"author": "Henry Zhu <hi@henryzoo.com>",
|
|
"homepage": "https://babeljs.io/",
|
|
"license": "MIT",
|
|
"repository": "https://github.com/babel/babel-preset-env",
|
|
"main": "lib/index.js",
|
|
"scripts": {
|
|
"build": "rimraf lib && babel src -d lib",
|
|
"build-data": "node ./scripts/build-data.js",
|
|
"dev": "babel -w src -d lib",
|
|
"lint": "eslint .",
|
|
"fix": "eslint . --fix",
|
|
"ci": "npm run test",
|
|
"changelog": "git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'",
|
|
"test": "npm run build && mocha ./test --compilers js:babel-register -t 5000"
|
|
},
|
|
"dependencies": {
|
|
"babel-plugin-check-es2015-constants": "7.0.0-alpha.1",
|
|
"babel-plugin-syntax-trailing-function-commas": "7.0.0-alpha.1",
|
|
"babel-plugin-transform-async-to-generator": "7.0.0-alpha.1",
|
|
"babel-plugin-transform-es2015-arrow-functions": "7.0.0-alpha.1",
|
|
"babel-plugin-transform-es2015-block-scoped-functions": "7.0.0-alpha.1",
|
|
"babel-plugin-transform-es2015-block-scoping": "7.0.0-alpha.1",
|
|
"babel-plugin-transform-es2015-classes": "7.0.0-alpha.1",
|
|
"babel-plugin-transform-es2015-computed-properties": "7.0.0-alpha.1",
|
|
"babel-plugin-transform-es2015-destructuring": "7.0.0-alpha.1",
|
|
"babel-plugin-transform-es2015-duplicate-keys": "7.0.0-alpha.1",
|
|
"babel-plugin-transform-es2015-for-of": "7.0.0-alpha.1",
|
|
"babel-plugin-transform-es2015-function-name": "7.0.0-alpha.1",
|
|
"babel-plugin-transform-es2015-literals": "7.0.0-alpha.1",
|
|
"babel-plugin-transform-es2015-modules-amd": "7.0.0-alpha.1",
|
|
"babel-plugin-transform-es2015-modules-commonjs": "7.0.0-alpha.1",
|
|
"babel-plugin-transform-es2015-modules-systemjs": "7.0.0-alpha.1",
|
|
"babel-plugin-transform-es2015-modules-umd": "7.0.0-alpha.1",
|
|
"babel-plugin-transform-es2015-object-super": "7.0.0-alpha.1",
|
|
"babel-plugin-transform-es2015-parameters": "7.0.0-alpha.1",
|
|
"babel-plugin-transform-es2015-shorthand-properties": "7.0.0-alpha.1",
|
|
"babel-plugin-transform-es2015-spread": "7.0.0-alpha.1",
|
|
"babel-plugin-transform-es2015-sticky-regex": "7.0.0-alpha.1",
|
|
"babel-plugin-transform-es2015-template-literals": "7.0.0-alpha.1",
|
|
"babel-plugin-transform-es2015-typeof-symbol": "7.0.0-alpha.1",
|
|
"babel-plugin-transform-es2015-unicode-regex": "7.0.0-alpha.1",
|
|
"babel-plugin-transform-exponentiation-operator": "7.0.0-alpha.1",
|
|
"babel-plugin-transform-regenerator": "7.0.0-alpha.1",
|
|
"browserslist": "^1.4.0",
|
|
"electron-to-chromium": "^1.1.0",
|
|
"invariant": "^2.2.2"
|
|
},
|
|
"devDependencies": {
|
|
"babel-cli": "7.0.0-alpha.1",
|
|
"babel-eslint": "^7.1.1",
|
|
"babel-helper-fixtures": "7.0.0-alpha.1",
|
|
"babel-helper-plugin-test-runner": "7.0.0-alpha.1",
|
|
"babel-plugin-transform-flow-strip-types": "7.0.0-alpha.1",
|
|
"babel-preset-es2015": "7.0.0-alpha.1",
|
|
"babel-register": "7.0.0-alpha.1",
|
|
"chai": "^3.0.0",
|
|
"compat-table": "kangax/compat-table#291c758ac618fff6bf5bb2113a5aa046189f93e2",
|
|
"eslint": "^3.13.1",
|
|
"eslint-config-babel": "^5.0.0",
|
|
"eslint-plugin-flowtype": "^2.29.1",
|
|
"fs-extra": "^2.0.0",
|
|
"lodash": "^4.15.0",
|
|
"mocha": "^3.0.2",
|
|
"rimraf": "^2.5.4"
|
|
},
|
|
"babel": {
|
|
"presets": [
|
|
[
|
|
"es2015",
|
|
{
|
|
"loose": true
|
|
}
|
|
]
|
|
],
|
|
"plugins": [
|
|
"transform-flow-strip-types"
|
|
]
|
|
}
|
|
}
|