export NODE_ENV := development export NODE_PATH := /usr/local/lib/node_modules .PHONY: check install test test-integration lint fmt fmt-check secret-scan check: install lint fmt-check secret-scan test test-integration install: npm install test: node --test test/unit/*.test.js test-integration: node --test test/integration/*.test.js lint: eslint . fmt: prettier --write . fmt-check: prettier --check . secret-scan: bash tools/secret-scan.sh .