-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdeno.json
26 lines (26 loc) · 966 Bytes
/
deno.json
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.4.0",
"exports": "./src/server.ts",
"publish": {
"include": ["LICENSE", "README.md", "deno.json", "src/"],
"exclude": ["**/*.test.ts", "src/libs/test_utils.ts"]
},
"lock": { "frozen": true },
"tasks": {
"serve": "deno serve --env-file='.env' -EN='api.github.com'",
"start": "deno task serve src/server.ts",
"dev": "deno task serve --watch src/server.ts",
"test": "deno test --doc -EN='api.github.com' --parallel --shuffle",
"test:ci": "deno task test --coverage --junit-path='junit.xml' && deno coverage --lcov > coverage.lcov"
},
"imports": {
"@hono/hono": "jsr:@hono/[email protected]",
"@octokit/request-error": "npm:@octokit/[email protected]",
"@octokit/rest": "npm:@octokit/[email protected]",
"@std/assert": "jsr:@std/[email protected]",
"@std/http": "jsr:@std/[email protected]",
"@std/path": "jsr:@std/[email protected]",
"@std/testing": "jsr:@std/[email protected]"
}
}