-
Notifications
You must be signed in to change notification settings - Fork 235
/
deno.json
34 lines (34 loc) · 1.31 KB
/
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
27
28
29
30
31
32
33
34
{
"name": "@oak/oak",
"version": "13.2.4",
"exports": {
".": "./mod.ts",
"./application": "./application.ts",
"./body": "./body.ts",
"./context": "./context.ts",
"./helpers": "./helpers.ts",
"./etag": "./etag.ts",
"./form_data": "./form_data.ts",
"./http_server_native": "./http_server_native.ts",
"./proxy": "./middleware/proxy.ts",
"./range": "./range.ts",
"./request": "./request.ts",
"./response": "./response.ts",
"./router": "./router.ts",
"./send": "./send.ts",
"./serve": "./middleware/serve.ts",
"./testing": "./testing.ts"
},
"tasks": {
"build": "deno run --allow-read --allow-write --allow-net --allow-env --allow-run _build_npm.ts",
"coverage": "deno coverage --unstable --lcov ./cov",
"example": "deno run --unstable --allow-net examples/echoServer.ts",
"test": "deno test --allow-read --allow-write --allow-net --parallel --ignore=npm,http_server_native_unstable_test.ts",
"test:no-check": "deno test --allow-read --allow-write --allow-net --no-check --parallel --ignore=npm,http_server_native_unstable_test.ts",
"test:unstable": "deno test --coverage=./cov --allow-read --allow-write --allow-net --unstable --cert ./examples/tls/RootCA.crt --parallel --ignore=npm"
},
"fmt": {
"exclude": ["README.md"]
},
"lock": false
}