-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 965 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 965 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
26
27
28
29
30
31
32
{
"license": "MIT",
"name": "aubeshim",
"private": true,
"version": "1.4.1",
"aube": {
"allowBuilds": {
"lefthook": true
}
},
"scripts": {
"build": "cargo build --release",
"clippy": "cargo clippy --all-targets -- -D warnings",
"fix:md": "prettier --write '**/*.md'",
"fix:md:file": "prettier --write",
"fmt": "cargo fmt --all",
"fmt:check": "cargo fmt --all -- --check",
"format:file": "prettier --write",
"hooks:check": "lefthook run pre-commit --all-files --no-stage-fixed",
"hooks:pre-commit": "lefthook run pre-commit",
"hooks:pre-commit:all": "lefthook run pre-commit --all-files",
"init": "aube run up && aube run init:hooks",
"init:hooks": "lefthook install",
"test": "cargo test",
"up": "aube run up:git && aube install && rustup show active-toolchain",
"up:git": "./scripts/up-git"
},
"devDependencies": {
"lefthook": "^2.1.4",
"prettier": "^3.8.1"
}
}