UNPKG

passport-exact

Version:

Exact authentication strategy for Passport.

24 lines (16 loc) 571 B
SOURCES = lib/**/*.js # ============================================================================== # Node Tests # ============================================================================== VOWS = ./node_modules/.bin/vows TESTS ?= test/*-test.js test: @NODE_ENV=test NODE_PATH=lib $(VOWS) $(TESTS) # ============================================================================== # Static Analysis # ============================================================================== JSHINT = jshint hint: lint lint: $(JSHINT) $(SOURCES) .PHONY: test hint lint