-
Notifications
You must be signed in to change notification settings - Fork 2
/
deno.json
63 lines (63 loc) · 1.41 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "@lambdaurora/libmd",
"version": "2.2.0",
"exports": "./mod.ts",
"tasks": {
"build": "deno run --allow-read --allow-write --allow-net --allow-env=HOME,ESBUILD_BINARY_PATH,ESBUILD_WORKER_THREADS,XDG_CACHE_HOME,NPM_CONFIG_REGISTRY,DENO_REGISTRY_URL --allow-run build_logic/build.ts",
"deploy": "deno run --allow-read --allow-write --allow-net --allow-env=HOME,ESBUILD_BINARY_PATH,ESBUILD_WORKER_THREADS,XDG_CACHE_HOME,NPM_CONFIG_REGISTRY,DENO_REGISTRY_URL --allow-run build_logic/deploy.ts",
"serve:examples": "deno run --allow-read --allow-write --allow-net --allow-env=HOME,ESBUILD_BINARY_PATH,ESBUILD_WORKER_THREADS,XDG_CACHE_HOME,NPM_CONFIG_REGISTRY,DENO_REGISTRY_URL --allow-run build_logic/serve.ts",
"check": "deno lint && deno check mod.ts",
"test": "deno test --allow-read=test/"
},
"importMap": "./import_map.json",
"compilerOptions": {
"lib": [
"deno.ns",
"dom"
]
},
"lint": {
"include": [
"./mod.ts",
"./lib/*.ts",
"./test/"
],
"exclude": [
"./dist/"
]
},
"fmt": {
"useTabs": true,
"lineWidth": 180,
"include": [
"./mod.ts",
"./lib/*.ts",
"./test/"
],
"exclude": [
"./dist/"
]
},
"test": {
"include": [
"./test/"
]
},
"publish": {
"include": [
"README.md",
"CHANGELOG.md",
"LICENSE",
"deno.json",
"deno.lock",
"mod.ts",
"lib/**",
"dist/",
"dist/lib/"
],
"exclude": [
"./test/"
]
},
"lock": true
}