Make babel-node a standalone package (#6023)

* Make babel-node a standalone package

* New package `babel-node` previously `babel-cli/bin/babel-node`

* updates
This commit is contained in:
Brian Ng
2017-07-29 21:26:28 -05:00
committed by Henry Zhu
parent e32042f353
commit 6d965c0926
30 changed files with 627 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
{
"name": "babel-node",
"version": "7.0.0-alpha.17",
"description": "Babel command line",
"author": "Sebastian McKenzie <sebmck@gmail.com>",
"homepage": "https://babeljs.io/",
"license": "MIT",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-node",
"keywords": [
"6to5",
"babel",
"es6",
"transpile",
"transpiler",
"babel-cli",
"compiler"
],
"dependencies": {
"babel-core": "7.0.0-alpha.17",
"babel-register": "7.0.0-alpha.17",
"babel-polyfill": "7.0.0-alpha.17",
"commander": "^2.8.1",
"fs-readdir-recursive": "^1.0.0",
"lodash": "^4.2.0",
"output-file-sync": "^2.0.0",
"v8flags": "^3.0.0"
},
"devDependencies": {
"babel-helper-fixtures": "7.0.0-alpha.17"
},
"bin": {
"babel-node": "./bin/babel-node.js"
}
}