-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdeno.json
42 lines (42 loc) · 1 KB
/
deno.json
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
33
34
35
36
37
38
39
40
41
42
{
"name": "@higher-order-testing/nocuous",
"version": "1.1.0",
"exports": {
".": "./mod.ts",
"./cli": "./cli.ts"
},
"publish": {
"exclude": [
".github",
".rustfmt.toml",
".vscode",
"Cargo.lock",
"Cargo.toml",
"rust-toolchain.toml",
"test.ts",
"src/fixtures"
]
},
"imports": {
"@cliffy/ansi": "jsr:@cliffy/[email protected]",
"@cliffy/command": "jsr:@cliffy/[email protected]",
"@cliffy/table": "jsr:@cliffy/[email protected]",
"@denosaurs/wait": "jsr:@denosaurs/wait@^0.2.2",
"@std/assert": "jsr:@std/assert@^1",
"@std/path": "jsr:@std/path@^1"
},
"fmt": {
"exclude": ["target", "lib"]
},
"lint": {
"exclude": ["target", "lib"]
},
"lock": false,
"tasks": {
"build": "deno run -A jsr:@deno/[email protected]",
"cli": "deno run --allow-read --allow-net cli.ts",
"test": "deno task test:rust && deno task test:deno",
"test:deno": "deno test --allow-read=..",
"test:rust": "cargo test"
}
}