How to use the minification.propertyLiterals transformer.
Turn valid identifier property key literals into identifiers.
In
var foo = { "bar": function () {} };
Out
var foo = { bar: function () {} };