Rename and restructure tabs and content in righthand panel
Showing
... | ... | @@ -30,10 +30,8 @@ |
"babel-plugin-transform-es2015-unicode-regex": "^6.11.0", | ||
"babel-plugin-transform-regenerator": "^6.16.1", | ||
"babel-polyfill": "^6.22.0", | ||
"babel-plugin-yo-yoify": "^0.3.3", | ||
"babel-preset-es2015": "^6.24.0", | ||
"babelify": "^7.3.0", | ||
"brace": "^0.8.0", | ||
"browserify": "^13.0.0", | ||
... | ... | @@ -116,24 +114,36 @@ |
}, | ||
"browserify": { | ||
"transform": [ | ||
["babelify", { | ||
"sourceMapsAbsolute": false, | ||
"sourceMaps": true, | ||
"plugins": [ | ||
["fast-async", { | ||
"runtimePattern": null, | ||
"compiler": { | ||
"es7": true, | ||
"noRuntime": true, | ||
"promises": true, | ||
"wrapAwait": true | ||
} | ||
}], | ||
["yo-yoify"] | ||
], | ||
"presets": ["es2015"] | ||
}], | ||
["uglifyify"] | ||
[ | ||
"babelify", | ||
{ | ||
"sourceMapsAbsolute": false, | ||
"sourceMaps": true, | ||
"plugins": [ | ||
[ | ||
"fast-async", | ||
{ | ||
"runtimePattern": null, | ||
"compiler": { | ||
"es7": true, | ||
"noRuntime": true, | ||
"promises": true, | ||
"wrapAwait": true | ||
} | ||
} | ||
], | ||
[ | ||
"yo-yoify" | ||
] | ||
], | ||
"presets": [ | ||
"es2015" | ||
] | ||
} | ||
], | ||
[ | ||
"uglifyify" | ||
] | ||
] | ||
}, | ||
"scripts": { | ||
... | ... | @@ -160,5 +170,8 @@ |
"test": "standard; npm run csslint; node test/index.js", | ||
"test-browser": "npm-run-all -lpr selenium downloadsolc make-mock-compiler serve browsertest", | ||
"watch": "watchify src/index.js -dv --delay 0 -p browserify-reload -o '| npm run sourcemap'" | ||
}, | ||
"dependencies": { | ||
"csjs-inject": "^1.0.1" | ||
} | ||
} |
Please
register
or
sign in
to comment