-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 1.1 KB
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
29
30
31
{
"name": "command_ghostwriter",
"version": "0.4.4",
"description": "This application is designed for infrastratcture engineers who want to automatically generate commands in template to configure servers, routers, and switches",
"license": "MIT",
"author": {
"name": "Nagano, Tsubasa",
"email": "tsubasa.nagano@icloud.com"
},
"scripts": {
"lint": "uv run ruff check . --fix && uv run mypy .",
"test": "uv run pytest -vv -n auto --cov=. --cov-report=html --cov-report=xml --cov-report=term --dist loadfile --durations=10 -k 'not e2e' --benchmark-disable",
"ccn": "uv run lizard -l python --CCN '10'",
"scan": "pre-commit run --all-files",
"commit": "pre-commit run"
},
"devDependencies": {
"@commitlint/cli": "^21.2.0",
"@commitlint/config-conventional": "^21.2.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.8",
"prettier": "^3.9.4",
"prettier-plugin-sort-json": "^4.2.0"
},
"hooks": {
"pre-commit": "lint-staged"
},
"overrides": {
"tmp": "^0.2.6"
}
}