-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathdeno.json
More file actions
32 lines (32 loc) · 680 Bytes
/
deno.json
File metadata and controls
32 lines (32 loc) · 680 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
{
"name": "@upyo/sendgrid",
"version": "0.5.0",
"license": "MIT",
"exports": "./src/index.ts",
"exclude": [
"dist/"
],
"tasks": {
"build": "pnpm build",
"test": "deno test --allow-env --allow-net --env-file=.env",
"test:node": {
"dependencies": [
"build"
],
"command": "pnpm exec dotenvx run --ignore=MISSING_ENV_FILE -- node --experimental-transform-types --test"
},
"test:bun": {
"dependencies": [
"build"
],
"command": "bun test --timeout=30000 --env-file=.env"
},
"test-all": {
"dependencies": [
"test",
"test:node",
"test:bun"
]
}
}
}