1
0
mirror of https://github.com/bigchaindb/js-bigchaindb-driver.git synced 2024-06-25 02:36:40 +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'],
'plugins': [
'transform-export-extensions',
'transform-object-assign',
'transform-object-rest-spread'
"presets": ["es2015-no-commonjs"],
"plugins": [
"transform-export-extensions",
"transform-object-assign",
"transform-object-rest-spread"
],
'sourceMaps': true,
"sourceMaps": true,
'env': {
'bundle': {
'plugins': [
['transform-runtime', {
'polyfill': true,
'regenerator': false
"env": {
"bundle": {
"plugins": [
["transform-runtime", {
"polyfill": true,
"regenerator": false
}]
]
},
'cjs': {
'plugins': [
'add-module-exports',
'transform-es2015-modules-commonjs'
"cjs": {
"plugins": [
"add-module-exports",
"transform-es2015-modules-commonjs"
]
}
}