-
Notifications
You must be signed in to change notification settings - Fork 26
/
deno.json
50 lines (50 loc) · 920 Bytes
/
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
{
"name": "@effection/effection",
"exports": "./mod.ts",
"license": "ISC",
"publish": {
"include": ["lib", "mod.ts", "README.md"]
},
"lock": false,
"tasks": {
"test": "deno test --allow-run=deno",
"test:node": "deno task build:npm 0.0.0 && node test/main/node.mjs hello world",
"build:jsr": "deno run -A tasks/build-jsr.ts",
"build:npm": "deno run -A tasks/build-npm.ts"
},
"lint": {
"rules": {
"exclude": ["prefer-const", "require-yield"]
},
"exclude": [
"build",
"website",
"www",
"packages"
]
},
"fmt": {
"exclude": [
"build",
"website",
"www",
"packages",
"CODE_OF_CONDUCT.md",
"README.md"
]
},
"test": {
"exclude": [
"build",
"packages"
]
},
"compilerOptions": {
"lib": [
"deno.ns",
"esnext",
"dom",
"dom.iterable"
]
}
}