-
Notifications
You must be signed in to change notification settings - Fork 2
/
deno.json
43 lines (43 loc) · 1.5 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
{
"tasks": {
"npm:test-utils": "deno run -A scripts/build_npm.ts test/utils",
"npm:core": "deno run -A scripts/build_npm.ts packages/core",
"npm:kotlin": "deno run -A scripts/build_npm.ts packages/kotlin",
"npm:typescript": "deno run -A scripts/build_npm.ts packages/typescript",
"npm": "deno task npm:test-utils && deno task npm:core && concurrently \"deno task npm:typescript\" \"deno task npm:kotlin\"",
"test": "deno test -A",
"test:core": "deno test -A packages/core",
"test:kotlin": "deno test -A packages/kotlin",
"test:typescript": "deno test -A packages/typescript",
"pg": "deno run -A playground.ts"
},
"imports": {
"@deno/dnt": "jsr:@deno/dnt@^0.41.3",
"@std/assert": "jsr:@std/assert@^1.0.6",
"@std/expect": "jsr:@std/expect@^1.0.5",
"@std/testing": "jsr:@std/testing@^1.0.4",
"@std/text": "jsr:@std/text@^1.0.7",
"@types/node": "npm:@types/node@^22.7.5",
"concurrently": "npm:concurrently@^9.0.1",
"fs-extra": "npm:fs-extra@^11.2.0",
"http-status-codes": "npm:http-status-codes@^2.3.0",
"yaml": "npm:yaml@^2.5.1"
},
"fmt": {
"lineWidth": 120,
"singleQuote": true,
"exclude": ["npm/**/*", "out/**/*", "coverage/**/*", ".verify/**/*"]
},
"lint": {
"exclude": ["npm/**/*", "out/**/*", "coverage/**/*", ".verify/**/*", "playground.ts", "**/assets/**/*"]
},
"test": {
"include": ["/packages/*"]
},
"workspace": [
"packages/core",
"packages/kotlin",
"packages/typescript",
"test/utils"
]
}