.PHONY: test build

test: ## Run Node tests
	@echo "npm test"

build: ## Build Node package
	@echo "npm run build"
