For adding LICENSE, you can use webpack's own Banner Plugin.
For removing console.log, use webpack's UglifyjsWebpackPlugin and pass drop_console: false as follows
new webpack.optimize.UglifyJsPlugin({
compress: {
drop_console: true,
// other Uglifyjs options
},
// other UglifyjsWebpackPlugin options
})