UNPKG
chinese-lunar
Version:
latest (0.1.4)
0.1.4
0.1.2
0.1.1
0.1.0
农历与公历相互转换的类库,支持农历的之间的加减运算,并提供生肖、干支等,支持1900-2100年
github.com/conis/chinese-lunar
conis/chinese-lunar
chinese-lunar
/
MakeFile
19 lines
(12 loc)
•
295 B
Plain Text
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
REPORTER = dot
test:
@./node_modules/mocha/bin/mocha --reporter
$(REPORTER)
setup:
@npm install
subl:
@subl lib/ test/ package.json index.js
test-cov: lib-cov
@CHEERIO_COV=1
$(MAKE)
test REPORTER=html-cov > coverage.html
lib-cov:
@jscoverage lib lib-cov
.PHONY
: test build setup subl