-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdeno.json
37 lines (37 loc) · 916 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
27
28
29
30
31
32
33
34
35
36
37
{
"name": "@oak/commons",
"version": "1.0.0",
"exports": {
"./assert": "./assert.ts",
"./cookie_map": "./cookie_map.ts",
"./form_data": "./form_data.ts",
"./forwarded": "./forwarded.ts",
"./http_errors": "./http_errors.ts",
"./keystack": "./keystack.ts",
"./media_types": "./media_types.ts",
"./method": "./method.ts",
"./range": "./range.ts",
"./server_sent_event": "./server_sent_event.ts",
"./status": "./status.ts"
},
"publish": {
"exclude": [
"*.test.ts",
"*.bench.ts",
"_fixtures",
".github",
".vscode",
"deps_test.ts"
]
},
"tasks": {
"bench": "deno bench --allow-read",
"coverage": "deno coverage --output=cov.lcov --lcov ./cov",
"test": "deno test --allow-read",
"test:coverage": "deno test --allow-read --coverage=./cov"
},
"lock": false,
"fmt": {
"exclude": ["README.md"]
}
}