* Support computed class property names (#4499) ** Depends on babel/babylon#121 ** * `babel-types`: Add `computed` field to `ClassProperty` * `babel-plugin-transform-class-properties`: handle computed property names correctly * `babel-generator`: add tests for class properties (computed/literal, static/instance) * doc: Update babel-types with ClassProperty.computed * chore(package): update babylon to v6.11.0 * babel-types: move ClassProperty.computed to be last builder arg
27 lines
665 B
JSON
27 lines
665 B
JSON
{
|
|
"name": "babel-generator",
|
|
"version": "6.14.0",
|
|
"description": "Turns an AST into code.",
|
|
"author": "Sebastian McKenzie <sebmck@gmail.com>",
|
|
"homepage": "https://babeljs.io/",
|
|
"license": "MIT",
|
|
"repository": "https://github.com/babel/babel/tree/master/packages/babel-generator",
|
|
"main": "lib/index.js",
|
|
"files": [
|
|
"lib"
|
|
],
|
|
"dependencies": {
|
|
"babel-messages": "^6.8.0",
|
|
"babel-runtime": "^6.9.0",
|
|
"babel-types": "^6.14.0",
|
|
"detect-indent": "^3.0.1",
|
|
"jsesc": "^1.3.0",
|
|
"lodash": "^4.2.0",
|
|
"source-map": "^0.5.0"
|
|
},
|
|
"devDependencies": {
|
|
"babel-helper-fixtures": "^6.9.0",
|
|
"babylon": "^6.11.0"
|
|
}
|
|
}
|