-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 805 Bytes
/
package.json
File metadata and controls
21 lines (21 loc) · 805 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"cluster_deployments": [],
"dependencies": {},
"devDependencies": {},
"name": "dvc-fs",
"private": false,
"scripts": {
"build": "poetry build",
"build:package": "yarn run build",
"clean": "rm -rfd dist",
"configure": "poetry config --local virtualenvs.in-project true && poetry config --local virtualenvs.path $(pwd)/.venv",
"dependencies:install": "poetry install",
"dependencies:update": "poetry update",
"deploy": "poetry run publish",
"deploy:package": "yarn run deploy",
"lint": "poetry run black . && poetry run isort . && poetry run flakehell lint",
"test": "poetry run pytest -n 4",
"version:bump": "poetry run bump2version --no-tag --no-commit patch"
},
"version": "0.8.0"
}