UNPKG
otr-cypher
Version:
latest (0.0.5)
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
Off-the-Record Messaging Protocol
otr-cypher
/
Makefile
19 lines
(12 loc)
•
255 B
Plain Text
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# make test TEST=otr
TEST=*
# make build TASK=otr
TASK=default
all: lint test
lint:
./node_modules/.bin/grunt jshint
test:
./node_modules/.bin/mocha -G -R spec test/spec/unit/
$(TEST)
.js
build:
./node_modules/.bin/grunt
$(TASK)
.PHONY
: test build