Makefile 117 B

12345678
  1. node_modules: package.json
  2. @npm install
  3. test: node_modules
  4. @node_modules/.bin/mocha --reporter spec
  5. .PHONY: test