-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
31 lines (31 loc) · 811 Bytes
/
deno.json
File metadata and controls
31 lines (31 loc) · 811 Bytes
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
{
"name": "@kitsonk/md2pdf",
"version": "0.1.4",
"tasks": {
"check": "deno fmt --check && deno lint && deno check --doc *.ts",
"test": "deno test --allow-read --allow-write --allow-net --allow-env --allow-run --parallel",
"test:ci": "deno test --allow-read --allow-write --allow-net --allow-env --allow-run --junit-path=junit.xml --coverage=./cov --parallel"
},
"exports": {
".": "./mod.ts",
"./serve": "./serve.ts"
},
"imports": {
"@astral/astral": "jsr:@astral/astral@^0.5.2",
"@deno/gfm": "jsr:@deno/gfm@^0.11.0",
"prismjs": "npm:prismjs@^1.30.0"
},
"publish": {
"exclude": [
"*.test.ts",
".github",
"_fixtures"
]
},
"fmt": {
"exclude": ["_fixtures"],
"lineWidth": 120
},
"lock": false,
"nodeModulesDir": "auto"
}