kibana/packages/kbn-babel-code-parser/package.json
Mikhail Shustov 87092f64cb
bump up babel version (#61037) (#61303)
* bump up babel version (#61037)

* bump babel version

* build kbm-pm

* refresh transitive @babel/* versions to kick yarn into shape

* update kbn/pm dist

Co-authored-by: spalger <spalger@users.noreply.github.com>

* stop using deprecated source-map option

Co-authored-by: spalger <spalger@users.noreply.github.com>
2020-03-25 20:19:16 +01:00

27 lines
666 B
JSON
Executable file

{
"name": "@kbn/babel-code-parser",
"description": "babel code parser for Kibana",
"private": true,
"version": "1.0.0",
"main": "./target/index.js",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/elastic/kibana/tree/master/packages/kbn-babel-code-parser"
},
"scripts": {
"build": "babel src --out-dir target",
"kbn:bootstrap": "yarn build --quiet",
"kbn:watch": "yarn build --watch"
},
"devDependencies": {
"@babel/cli": "^7.8.4"
},
"dependencies": {
"@kbn/babel-preset": "1.0.0",
"@babel/parser": "^7.9.3",
"@babel/traverse": "^7.9.0",
"lodash": "^4.17.15"
}
}