Spaces:
Runtime error
Runtime error
| { | |
| "name": "convbot", | |
| "version": "0.1.1", | |
| "description": "description", | |
| "main": "index.js", | |
| "repository": "[email protected]: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" | |
| } | |
| } |