File size: 1,138 Bytes
b78ad07
 
e010df7
b78ad07
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
    "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"
    }
}