-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
18 lines (18 loc) · 678 Bytes
/
deno.json
File metadata and controls
18 lines (18 loc) · 678 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"tasks": {
"test": "deno test --allow-all tests/",
"test:unit": "deno test --allow-all tests/unit/",
"test:property": "deno test --allow-all tests/property/",
"test:e2e": "deno test --allow-all tests/e2e/",
"test:security": "deno test --allow-all tests/aspect/",
"test:bench": "deno bench --allow-all tests/bench/",
"test:all": "deno test --allow-all tests/ && deno bench --allow-all tests/bench/",
"lint": "deno lint tests/",
"fmt": "deno fmt tests/"
},
"imports": {
"std/": "https://deno.land/std@0.210.0/",
"testing/": "https://deno.land/std@0.210.0/testing/"
},
"exclude": ["_build", "deps", ".git", "node_modules"]
}