-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 880 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 880 Bytes
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
{
"name": "git-workers",
"description": "Interactive Git worktree manager",
"repository": {
"type": "git",
"url": "https://github.com/wasabeef/git-workers.git"
},
"scripts": {
"prepare": "lefthook install",
"lefthook": "lefthook",
"format": "cargo fmt --all && prettier --write .",
"lint": "cargo clippy --all-targets --all-features -- -D warnings",
"test": "CI=true cargo test --lib --bins --all-features -- --test-threads=1",
"test:report": "cargo llvm-cov --html --lib --ignore-filename-regex '(tests/|src/main\\.rs|src/bin/)' --open",
"test:report:open": "open tarpaulin-report.html",
"check": "bun run format && bun run lint && bun run test",
"build": "cargo build --release",
"dev": "cargo run",
"watch": "cargo watch -x run"
},
"devDependencies": {
"lefthook": "^1.12.2",
"prettier": "^3.6.2"
}
}