lint
jscs ./ && eslint --ignore-path .gitignore ./
lint:fix
jscs --fix ./ && eslint --fix --ignore-path .gitignore ./
test
BABEL_ENV=test ava 'test/**/*.js' --require ./test/helpers/setup.js
test:nyan
npm test -- --tap | tap-nyan
test:watch
npm test -- --watch
cover
nyc --reporter=text --reporter=html --check-coverage --statements 97.56 --branches 95.92 --functions 98.39 --lines 97.56 npm test
cover:watch
onchange 'src/**/*.js' 'test/**/*.js' -- npm run cover
cover:open
open coverage/index.html
pre-commit
echo 'Running pre-commit hooks...' && exit 0