-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
18 lines (18 loc) · 826 Bytes
/
deno.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"$schema": "https://deno.land/x/deno/cli/schemas/config-file.v1.json",
"fmt": { "exclude": ["LICENSE", ".github/**/*.md"] },
"test": { "include": ["src/", "test/"] },
"tasks": {
"gen": "deno run --allow-read --allow-write ./src/main.ts",
"test": "deno test --allow-read --allow-write",
"update": "deno run --allow-env --allow-read --allow-write --allow-run=git,deno --allow-net=deno.land https://deno.land/x/molt/cli.ts deno.json"
},
"imports": {
"assert": "https://deno.land/[email protected]/assert/mod.ts",
"path": "https://deno.land/[email protected]/path/mod.ts",
"toml": "https://deno.land/[email protected]/toml/mod.ts",
"parse_args": "https://deno.land/[email protected]/cli/parse_args.ts",
"case": "https://deno.land/x/[email protected]/mod.ts",
"xml": "https://deno.land/x/[email protected]/mod.ts"
}
}