1
0
mirror of https://github.com/bigchaindb/js-bigchaindb-driver.git synced 2024-06-28 16:47:45 +02:00

proper json syntax

This commit is contained in:
Matthias Kretschmann 2017-06-06 16:23:57 +02:00
parent deb7664068
commit b8007b4883
Signed by: m
GPG Key ID: 606EEEF3C479A91F

View File

@ -1,25 +1,25 @@
{ {
'presets': ['es2015-no-commonjs'], "presets": ["es2015-no-commonjs"],
'plugins': [ "plugins": [
'transform-export-extensions', "transform-export-extensions",
'transform-object-assign', "transform-object-assign",
'transform-object-rest-spread' "transform-object-rest-spread"
], ],
'sourceMaps': true, "sourceMaps": true,
'env': { "env": {
'bundle': { "bundle": {
'plugins': [ "plugins": [
['transform-runtime', { ["transform-runtime", {
'polyfill': true, "polyfill": true,
'regenerator': false "regenerator": false
}] }]
] ]
}, },
'cjs': { "cjs": {
'plugins': [ "plugins": [
'add-module-exports', "add-module-exports",
'transform-es2015-modules-commonjs' "transform-es2015-modules-commonjs"
] ]
} }
} }