Ensure that reserved words are quoted in object property keys
$ npm install babel-plugin-transform-es3-property-literals
.babelrc
{
"plugins": ["transform-es3-property-literals"]
}
$ babel --plugins transform-es3-property-literals script.js
require("babel-core").transform("code", {
plugins: ["transform-es3-property-literals"]
});