Commit 3d464906 authored by yann300's avatar yann300

add browserify to remix-lib

parent 019f1018
...@@ -14,6 +14,11 @@ ...@@ -14,6 +14,11 @@
], ],
"main": "./index.js", "main": "./index.js",
"dependencies": { "dependencies": {
"babel-preset-es2015": "^6.24.0",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-eslint": "^7.1.1",
"babelify": "^7.3.0",
"fast-async": "^6.1.2",
"ethereumjs-util": "^4.5.0", "ethereumjs-util": "^4.5.0",
"web3": "^0.15.3", "web3": "^0.15.3",
"solc": "^0.4.13", "solc": "^0.4.13",
...@@ -39,5 +44,40 @@ ...@@ -39,5 +44,40 @@
"build/*", "build/*",
"test/resources/*" "test/resources/*"
] ]
},
"browserify": {
"transform": [
[
"babelify",
{
"plugins": [
[
"fast-async",
{
"runtimePatten": null,
"compiler": {
"promises": true,
"es7": true,
"noRuntime": true,
"wrapAwait": true
}
}
],
"transform-object-assign"
]
}
],
[
"yo-yoify"
],
[
"babelify",
{
"presets": [
"es2015"
]
}
]
]
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment