SHELL := /bin/bash

# Mocha v1.9.0
test:
	mocha -R spec test.js

# JSHint v1.1.0
hint:
	@jshint index.js test.js lib/*.js

.PHONY: test hint min