UNPKG
sbscrape
Version:
latest (0.0.5)
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
0.0.0
Scrape socialblade
github.com/jb55/sbscrape
jb55/sbscrape
sbscrape
/
Makefile
16 lines
(10 loc)
•
257 B
Plain Text
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
all: scripts
test: scripts
@./node_modules/.bin/mocha \ --require should \ --reporter spec \ --bail
scripts: lib/index.js lib/parsers.js
lib/%.js: src/%.coffee
./node_modules/coffee-script/bin/coffee -o lib -c
$^
.PHONY
: test scripts