-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathdeno.json
More file actions
54 lines (54 loc) · 2.24 KB
/
deno.json
File metadata and controls
54 lines (54 loc) · 2.24 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "@deno/gfm",
"version": "0.12.0",
"exports": "./mod.ts",
"nodeModulesDir": "auto",
"imports": {
"emoji": "jsr:@denosaurs/emoji@^0.3.1",
"marked": "npm:marked@^17.0.1",
"github-slugger": "npm:github-slugger@^2.0",
"marked-alert": "npm:marked-alert@^2.1.2",
"marked-footnote": "npm:marked-footnote@^1.4.0",
"marked-gfm-heading-id": "npm:marked-gfm-heading-id@^4.1.3",
"prismjs": "npm:prismjs@^1.30.0",
"prismjs-yaml": "npm:prismjs@^1.30.0/components/prism-yaml.js",
"prismjs-jsx": "npm:prismjs@^1.30.0/components/prism-jsx.js",
"prismjs-typescript": "npm:prismjs@^1.30.0/components/prism-typescript.js",
"prismjs-tsx": "npm:prismjs@^1.30.0/components/prism-tsx.js",
"prismjs-bash": "npm:prismjs@^1.30.0/components/prism-bash.js",
"prismjs-powershell": "npm:prismjs@^1.30.0/components/prism-powershell.js",
"prismjs-json": "npm:prismjs@^1.30.0/components/prism-json.js",
"prismjs-diff": "npm:prismjs@^1.30.0/components/prism-diff.js",
"@astral/astral": "jsr:@astral/astral@0.5.5",
"deno-dom": "jsr:@b-fuze/deno-dom@^0.1.56",
"sanitize-html": "npm:sanitize-html@^2.17.0",
"he": "npm:he@^1.2",
"katex": "npm:katex@^0.16",
"css": "npm:css@^3.0.0",
"@std/assert": "jsr:@std/assert@^1.0.18"
},
"compilerOptions": {
"lib": ["dom", "dom.iterable", "dom.asynciterable", "deno.ns"]
},
"tasks": {
"build": "deno run --allow-read --allow-write --allow-net --allow-run --allow-env ./style/patch.ts && deno fmt",
"check:types": "deno check **/*.ts",
"coverage": "rm -rf cov_profile && deno test --allow-sys --allow-read --allow-env --allow-write --allow-run --allow-net --coverage=cov_profile",
"dev": "deno run -A --unstable --watch --no-check ./example/main.ts",
"ok": "deno fmt --check && deno lint && deno task check:types && deno task test",
"report": "deno coverage cov_profile --html",
"server": "deno run -A --watch=test/,mod.ts ./test/runTestServer.ts",
"test": "deno test --allow-sys --allow-read --allow-env --allow-write --allow-run --allow-net"
},
"exclude": [
"./style/node_modules/",
"./style/dist/",
"./style/.parcel-cache/"
],
"fmt": {
"exclude": [
"./test/fixtures/",
"./example/content.md"
]
}
}