-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
27 lines (27 loc) · 1.19 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"dependencies": {
"elm": "0.19.1-5",
"elm-doc-preview": "^5.0.5",
"elm-format": "^0.8.7",
"elm-review": "^2.10.2",
"elm-test": "0.19.1-revision12",
"elm-verify-examples": "^5.2.0",
"npm-run-all": "^4.1.5"
},
"scripts": {
"test": "npm-run-all --print-name --sequential test:make test:format test:examples test:run test:review ",
"test:make": "elm make --docs=docs.json",
"test:format": "elm-format src/ tests/*.elm tests/String review benchmarks upgrade --validate",
"test:examples": "elm-verify-examples",
"test:run": "elm-test",
"test:review": "elm-review",
"fix": "npm-run-all --print-name --sequential fix:format fix:review",
"fix:format": "elm-format src/ tests/*.elm tests/String review benchmarks upgrade --yes",
"fix:review": "elm-review --fix",
"start": "npm-run-all -p -l start:docs start:bench",
"start:docs": "elm-doc-preview",
"start:bench": "cd benchmarks; elm make --optimize --output elm-stuff/bench.html src/Benchmarks.elm && open elm-stuff/bench.html",
"elm-bump": "npm-run-all --print-name --sequential test bump-version 'test:review -- --fix-all-without-prompt'",
"bump-version": "(yes | elm bump)"
}
}