UNPKG
hashsum
Version:
latest (0.0.1)
0.0.1
Compute the hashsum of various things
github.com/brettstimmerman/hashsum
brettstimmerman/hashsum
hashsum
/
Makefile
17 lines
(11 loc)
•
215 B
Plain Text
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
BIN=./node_modules/.bin JSHINT=
$(BIN)
/jshint MOCHA=
$(BIN)
/mocha
all: lint test
lint:
@
$(JSHINT)
--show-non-errors **/*.js
test:
@
$(MOCHA)
--reporter spec
watch:
@
$(MOCHA)
--reporter min --watch
.PHONY
: test