-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
39 lines (39 loc) · 1.72 KB
/
deno.json
File metadata and controls
39 lines (39 loc) · 1.72 KB
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
{
"name": "@murat/yelix",
"exports": "./mod.ts",
"version": "0.1.45",
"license": "MIT",
"nodeModulesDir": "auto",
"tasks": {
"dev": "deno run --allow-net --allow-read --allow-env --watch-hmr ./testing/main.ts",
"dev:profile": "deno run --inspect-brk --allow-net --allow-read --allow-env --watch-hmr ./testing/main.ts",
"dev:watch": "deno run --watch-hmr --watch-hmr-exclude=\"./testing/endpoints.ts\" --allow-net --allow-read --allow-write --allow-env ./testing/main.ts --yelix-static-endpoint-generation ./testing --yelix-static-endpoint-generation-output ./testing/endpoints.ts",
"bump:patch": "deno run --allow-read --allow-write bump_version.ts patch",
"bump:minor": "deno run --allow-read --allow-write bump_version.ts minor",
"bump:major": "deno run --allow-read --allow-write bump_version.ts major",
"deploy": "deploy",
"test": "deno test --allow-net --allow-read --allow-env --ignore=./testing/",
"test:testing": "deno test --allow-net --allow-read --allow-env ./testing",
"test:validation": "deno test --allow-net --allow-read --allow-env ./test/validation",
"test:watch": "deno test --watch --allow-net --allow-read --allow-env --ignore=./testing/",
"test:coverage": "deno test --coverage=coverage --allow-net --allow-read --allow-env --ignore=./testing/",
"test:coverage-html": "deno task test:coverage && deno coverage --html"
},
"imports": {
"@std/fs": "jsr:@std/fs@^1.0.13",
"@std/assert": "jsr:@std/assert@1",
"hono": "npm:hono@^4.7.0",
"@/": "./"
},
"publish": {
"include": [
"src/validation/validation.ts",
"src/validation/*.ts",
"src/**/*.ts",
"mod.ts",
"version.ts",
"readme.md"
],
"exclude": []
}
}