mirror of
https://github.com/jfmengels/elm-review.git
synced 2024-11-22 13:15:59 +03:00
26 lines
1004 B
JSON
26 lines
1004 B
JSON
{
|
|
"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"
|
|
}
|
|
}
|