Makefile 274 B

123456789101112
  1. test:
  2. @./node_modules/.bin/lab
  3. test-cov:
  4. @./node_modules/.bin/lab -r threshold -t 100
  5. test-cov-html:
  6. @./node_modules/.bin/lab -r html -o coverage.html
  7. complexity:
  8. @./node_modules/.bin/cr -o complexity.md -f markdown lib
  9. .PHONY: test test-cov test-cov-html complexity