radio-mlbee / package.json
freemt
first commit
d63b043
{
"dependencies": {
"npm-run-all": "^4.1.5"
},
"scripts": {
"start": "pyright && pytest && yarn style",
"test": "nodemon -w tests -w radio_mlbee -x pytest tests",
"pyright": "nodemon -w radio_mlbee -w .venv -e .py -x pyright radio_mlbee tests",
"pytest": "nodemon -w tests -w radio_mlbee -e .py -x pytest tests radio_mlbee",
"style": "nodemon -w radio_mlbee -w tests -x \"black tests radio_mlbee && python -m flake8\"",
"docstyle": "nodemon -w radio_mlbee -w tests -x pydocstyle --convention=google tests radio_mlbee",
"pylint": "nodemon -w radio_mlbee -e .py -x pylint radio_mlbee",
"test:radio_mlbee": "nodemon -w tests -e .py -x pytest -k radio_mlbee tests",
"publish": "poetry build && poetry publish",
"black": "black tests radio_mlbee",
"flake8": "flake8 tests radio_mlbee",
"pflake8": "pflake8 tests radio_mlbee",
"pep257": "pep257 tests radio_mlbee",
"final": "run-s docstyle black flake8 pytest"
}
}