test: node_modules build
	@npm test

build: node_modules
	@npm run build

node_modules:
	@npm install

release: build
	npm publish

clean:
	rm -rf lib

.PHONY: clean build test
