elm-review/package.json

26 lines
1004 B
JSON
Raw Normal View History

{
"name": "",
"version": "1.0.0",
"scripts": {
2021-10-03 12:13:14 +03:00
"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",
2021-10-03 12:15:13 +03:00
"elm-bump": "npm-run-all --print-name --silent --sequential test bump-version 'test:review -- --fix-all-without-prompt'",
"bump-version": "(yes | elm bump)",
2021-01-28 18:16:42 +03:00
"backport-rules": "cp -r ../elm-review-{common,debug,documentation,the-elm-architecture,unused,simplification,imports,noredundantconcat}/{src,tests}/* tests",
"generate-dep": "node create-dependency",
2021-01-28 18:16:42 +03:00
"postinstall": "elm-tooling install"
},
"dependencies": {
2022-11-23 19:37:16 +03:00
"elm-review": "^2.8.2",
2022-10-12 17:10:50 +03:00
"elm-test": "^0.19.1-revision10",
2022-11-23 19:37:16 +03:00
"elm-tooling": "^1.10.0"
2021-10-03 12:13:14 +03:00
},
"devDependencies": {
"npm-run-all": "^4.1.5"
}
}