convbot / package.json
freemt
Bump to 0.1.1
e010df7
raw history blame
No virus
1.14 kB
{
"name": "convbot",
"version": "0.1.1",
"description": "description",
"main": "index.js",
"repository": "git@github.com:ffreemt/convbot.git",
"author": "ffreemt",
"license": "MIT",
"dependencies": {
"npm-run-all": "^4.1.5"
},
"scripts": {
"start": "pyright && pytest && yarn style",
"test": "nodemon -w tests -w convbot -x pytest tests",
"pyright": "nodemon -w convbot -w .venv -e .py -x pyright convbot tests",
"pytest": "nodemon -w tests -w convbot -e .py -x pytest tests convbot",
"style": "nodemon -w convbot -w tests -x \"black tests convbot && python -m flake8\"",
"docstyle": "nodemon -w convbot -w tests -x pydocstyle --convention=google tests convbot",
"pylint": "nodemon -w convbot -e .py -x pylint convbot",
"test:convbot": "nodemon -w tests -e .py -x pytest -k convbot tests",
"publish": "poetry build && poetry publish",
"black": "black tests convbot",
"flake8": "flake8 tests convbot",
"pep257": "pep257 tests convbot",
"final": "run-s pep257 black flake8 pytest"
}
}