Compile ES5 property mutator shorthand syntax to Object.defineProperty
$ npm install babel-plugin-transform-es5-property-mutators
.babelrc
{
"plugins": ["transform-es5-property-mutators"]
}
$ babel --plugins transform-es5-property-mutators script.js
require("babel-core").transform("code", {
plugins: ["transform-es5-property-mutators"]
});