1SHELL := /bin/bash
2
3test:
4	@./test/run.js
5
6release:
7	git push
8	git push --tags
9	npm publish .
10
11.PHONY: test
12