File: Makefile

package info (click to toggle)
node-get 1.1.5%2Bds1-2
  • links: PTS, VCS
  • area: main
  • in suites: buster, jessie, jessie-kfreebsd, stretch
  • size: 140 kB
  • ctags: 19
  • sloc: makefile: 32
file content (14 lines) | stat: -rw-r--r-- 182 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#
# Run all tests
#

test:
	@mocha -R spec

lint:
	./node_modules/.bin/jshint lib/node-get/*.js

doc:
	./node_modules/.bin/docco lib/node-get/*.js bin/node-get-file.js

.PHONY: test