-
Notifications
You must be signed in to change notification settings - Fork 1
/
deno.json
34 lines (33 loc) · 927 Bytes
/
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
{
"tasks": {
"pls": "deno run -A cli/pls.ts",
"test": "deno test --allow-read --allow-net --allow-run",
"build:npm": "deno run -A tasks/build-npm.ts",
"changelog-entry": "deno run -A tasks/changelog-entry.ts",
"rel:init": "deno run -A tasks/rel/cmd/init.ts",
"rel:current": "deno run -A tasks/rel/cmd/current.ts",
"rel:next": "deno run -A tasks/rel/cmd/next.ts",
"rel:impact": "deno run -A tasks/rel/cmd/impact.ts",
"rel:signoff": "deno run -A tasks/rel/cmd/signoff.ts",
"rel:shipit": "deno run -A tasks/rel/cmd/shipit.ts",
"rel:push": "deno run -A tasks/rel/cmd/push.ts"
},
"lint": {
"rules": {
"exclude": ["prefer-const", "require-yield"]
},
"files": {
"exclude": ["build", "www"]
}
},
"fmt": {
"files": {
"exclude": ["README.md", "build/", "www"]
}
},
"test": {
"files": {
"exclude": ["build", "www"]
}
}
}