{ "tasks": { "build": "cargo build", "test": "RUST_BACKTRACE=full cargo nextest run --features=test_utils && deno task test-wasm", "test-all": "deno task test & deno task quick-fuzz", "test-prop": "RUSTFLAGS='--cfg=proptest' cargo nextest run --features=test_utils", "test-wasm": "cd crates/loro-wasm && deno task install && deno task build && deno task test", "check": "cargo clippy --all-features", "quick-fuzz": "cd crates/loro-core && deno task quick-fuzz", "fix": "cargo clippy --fix --features=test_utils", "vet": "cargo vet" } }