UNPKG
jju
Version:
latest (1.4.0)
1.4.0
1.3.0
1.2.1
1.2.0
1.1.0
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
0.7.0
0.6.1
0.6.0
0.5.3
0.5.2
0.5.1
0.5.0
0.4.2
0.4.1
0.4.0
a set of utilities to work with JSON / JSON5 documents
rlidwka.github.io/jju/
rlidwka/jju
jju
/
Makefile
21 lines
(13 loc)
•
290 B
Plain Text
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
PATH := node_modules/.bin:
$(PATH)
all: package.json install
install: package.json
yarn
test:
mocha test/*.js
lint:
eslint -c ./.eslint.yaml ./lib
clean:
rm package.json yarn.lock
package.json: package.yaml
js-yaml package.yaml > package.json
.PHONY
: clean all install lint test