-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.jsonc
33 lines (33 loc) · 910 Bytes
/
deno.jsonc
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
{
"lock": false,
"name": "@grammyjs/telegraph",
"version": "0.0.1",
"exports": "./src/mod.ts",
"fmt": {
"indentWidth": 4,
"proseWrap": "preserve",
"singleQuote": true,
"exclude": [
"./node_modules/",
"./out/",
"./package-lock.json"
]
},
"lint": {
"exclude": [
"./node_modules/",
"./out/",
"./package-lock.json"
],
"include": ["src"],
"rules": {
"tags": ["recommended"]
}
},
"tasks": {
"backport": "rm -rf out && deno run --no-prompt --allow-read=. --allow-write=. https://deno.land/x/[email protected]/src/cli.ts",
"check": "deno lint && deno fmt --check && deno check src/mod.ts",
"fix": "deno lint --fix && deno fmt",
"test": "deno test --parallel --allow-net ./test/"
}
}