-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdeno.json
More file actions
26 lines (26 loc) · 953 Bytes
/
deno.json
File metadata and controls
26 lines (26 loc) · 953 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
{
"name": "@5ouma/reproxy",
"version": "1.5.1",
"exports": "./src/server.ts",
"publish": {
"include": ["LICENSE", "README.md", "deno.json", "src/"],
"exclude": ["**/*.test.ts", "src/libs/test_utils.ts"]
},
"permissions": { "default": { "env": true, "net": ["api.github.com"] } },
"lock": { "frozen": true },
"tasks": {
"start": "deno serve -P --env-file='.env' src/server.ts",
"dev": "deno serve -P --env-file='.env' --watch src/server.ts",
"test": "deno test -P --parallel --doc --shuffle",
"test:cov": "deno task test --coverage --junit-path='junit.xml'"
},
"imports": {
"@hono/hono": "jsr:@hono/hono@4.12.14",
"@octokit/request-error": "npm:@octokit/request-error@7.1.0",
"@octokit/rest": "npm:@octokit/rest@22.0.1",
"@std/assert": "jsr:@std/assert@1.0.19",
"@std/http": "jsr:@std/http@1.1.0",
"@std/path": "jsr:@std/path@1.1.4",
"@std/testing": "jsr:@std/testing@1.0.18"
}
}