Using Rollup.JS, Jest, ESLint to create ES6/ES5 compatible JS modules with UMD. Check package.json for other dependencies.
yarn start
yarn testw
yarn run build
// ES6
import { sayName } from 'Alpha';
sayName('Tyrion');
// ES5
<script src='./bundle.js'></script>
Alpha.sayName('Tyrion');