-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
35 lines (35 loc) · 768 Bytes
/
deno.json
File metadata and controls
35 lines (35 loc) · 768 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
{
"name": "@raptor/lambda",
"version": "0.1.3",
"exports": "./mod.ts",
"compilerOptions": {
"lib": [
"deno.ns",
"deno.window"
]
},
"publish": {
"exclude": [
".github",
"examples",
"docs",
"**/*.test.ts"
]
},
"tasks": {
"test": "APP_URL=http://localhost:8000 deno test --coverage=coverage-report --allow-all --parallel",
"test-coverage": "APP_URL=http://localhost:8000 deno coverage coverage-report"
},
"fmt": {
"exclude": [
"README.md"
]
},
"lock": true,
"imports": {
"@raptor/kernel": "jsr:@raptor/kernel@^0.25.0",
"@raptor/types": "jsr:@raptor/types@^0.2.0",
"@std/assert": "jsr:@std/assert@^1.0.19",
"@std/testing": "jsr:@std/testing@^1.0.17"
}
}