-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
25 lines (25 loc) · 1004 Bytes
/
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
{
"name": "",
"version": "1.0.0",
"scripts": {
"test": "npm-run-all --print-name --silent --sequential test:make test:format test:run test:review test:phantom",
"test:make": "elm make --docs=docs.json",
"test:format": "elm-format src/ --validate",
"test:run": "elm-test",
"test:review": "LOCAL_ELM_REVIEW_SRC=src elm-review",
"test:phantom": "node phantom-type-tests/run.js",
"elm-bump": "npm-run-all --print-name --silent --sequential test bump-version 'test:review -- --fix-all-without-prompt'",
"bump-version": "(yes | elm bump)",
"backport-rules": "cp -r ../elm-review-{common,debug,documentation,the-elm-architecture,unused,simplification,imports,noredundantconcat}/{src,tests}/* tests",
"generate-dep": "node create-dependency",
"postinstall": "elm-tooling install"
},
"dependencies": {
"elm-review": "^2.8.2",
"elm-test": "^0.19.1-revision10",
"elm-tooling": "^1.10.0"
},
"devDependencies": {
"npm-run-all": "^4.1.5"
}
}