version = $(shell cat package.json | grep version | awk -F'"' '{print $$4}') test: @./node_modules/.bin/istanbul cover \ ./node_modules/.bin/_mocha \ -- \ --harmony \ --reporter spec \ --timeout 2000 \ --inline-diffs \ ./tests/index-spec.js .PHONY: test