.PHONY: default install lint build test

default: install

install:
	npm install

lint:
	npm run lint
	npx prettier --write .

build:
	npm run build

test:
	npm run test
