A simple ES6 Library starter kit.
- Rollup and Babel transform code
- Eslint with Airbnb to lint code
- Jest for writing tests
- Run lint and tests before each commit with husky
{
"start": "npm run test -- --watch",
"test": "jest",
"lint": "eslint .",
"clean": "rimraf lib",
"build": "npm run clean && npm run lint && npm run test && rollup -c"
}