-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
28 lines (28 loc) · 1.19 KB
/
package.json
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
28
{
"name": "google-itranslate",
"version": "0.1.1",
"description": "description",
"main": "index.js",
"repository": "git@github.com:ffreemt/google-itranslate.git",
"author": "ffreemt",
"license": "MIT",
"dependencies": {
"npm-run-all": "^4.1.5"
},
"scripts": {
"start": "pyright && pytest && yarn style",
"test": "nodemon -w tests -w itranslate -x pytest tests",
"pyright": "nodemon -w itranslate -w .venv -e .py -x pyright itranslate tests",
"pytest": "nodemon -w tests -w itranslate -e .py -x pytest tests",
"style": "nodemon -w itranslate -w tests -x \"black tests itranslate && python -m flake8\"",
"docstyle": "nodemon -w itranslate -w tests -x pydocstyle --convention=google tests itranslate",
"pylint": "nodemon -w itranslate -e .py -x pylint itranslate",
"test:itranslate": "nodemon -w tests -e .py -x pytest -k itranslate tests",
"publish": "poetry build && poetry publish",
"black": "black tests itranslate",
"flake8": "flake8 tests itranslate",
"pytest": "pytest",
"pep257": "pep257 tests itranslate",
"final": "run-s pep257 black flake8 pytest"
}
}