-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
54 lines (54 loc) · 1.32 KB
/
deno.json
File metadata and controls
54 lines (54 loc) · 1.32 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": "@absolute-zero/cno",
"version": "1.0.0",
"exports": "./mod.ts",
"tasks": {
"build": "deno run --allow-read --allow-write build.ts",
"dev": "deno run --allow-read --allow-write --watch build.ts",
"verify": "deno run --allow-run verify.ts",
"test": "deno test --allow-read",
"fmt": "deno fmt",
"lint": "deno lint",
"check": "deno check mod.ts"
},
"imports": {
"@std/": "https://deno.land/std@0.224.0/",
"@std/assert": "jsr:@std/assert@^0.224.0",
"@std/path": "jsr:@std/path@^0.224.0",
"@std/fs": "jsr:@std/fs@^0.224.0"
},
"exclude": [
"node_modules",
"dist",
"proofs",
"examples",
"tests/integration"
],
"compilerOptions": {
"allowJs": true,
"lib": ["deno.window", "dom", "dom.iterable"],
"strict": true
},
"fmt": {
"useTabs": false,
"lineWidth": 100,
"indentWidth": 2,
"semiColons": true,
"singleQuote": false,
"proseWrap": "preserve",
"include": ["src/", "mod.ts"],
"exclude": ["proofs/", "examples/"]
},
"lint": {
"rules": {
"tags": ["recommended"],
"include": ["ban-untagged-todo"],
"exclude": ["no-unused-vars"]
},
"include": ["src/", "mod.ts"],
"exclude": ["proofs/", "examples/"]
},
"test": {
"include": ["src/**/*_test.ts", "tests/unit/**/*_test.ts"]
}
}