-
-
Notifications
You must be signed in to change notification settings - Fork 98
Expand file tree
/
Copy pathdeno.json
More file actions
44 lines (44 loc) · 826 Bytes
/
deno.json
File metadata and controls
44 lines (44 loc) · 826 Bytes
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
{
"name": "@fedify/testing",
"version": "2.3.0",
"license": "MIT",
"exports": {
".": "./src/mod.ts"
},
"exclude": [
"dist",
"node_modules",
"npm",
"pnpm-lock.yaml"
],
"publish": {
"exclude": [
"**/*.test.ts",
"tsdown.config.ts"
]
},
"tasks": {
"build": "pnpm build",
"check": "deno fmt --check && deno lint && deno check",
"test": "deno test --allow-read --allow-net --allow-env",
"test:node": {
"dependencies": [
"build"
],
"command": "node --experimental-transform-types --test"
},
"test:bun": {
"dependencies": [
"build"
],
"command": "bun test --timeout 15000"
},
"test-all": {
"dependencies": [
"test",
"test:node",
"test:bun"
]
}
}
}