-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathdeno.json
59 lines (59 loc) · 1.45 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "@bids/validator",
"version": "2.0.2",
"exports": {
".": "./src/bids-validator.ts",
"./main": "./src/main.ts",
"./output": "./src/utils/output.ts",
"./files": "./src/files/deno.ts",
"./options": "./src/setup/options.ts",
"./issues": "./src/issues/datasetIssues.ts"
},
"exclude": [
"docs/",
"tools/",
"web/",
".*",
"CITATION.cff",
"Dockerfile",
"build.ts",
"local-run"
],
"publish": {
"exclude": [
"**/tests/",
"**/*.test.ts",
"deno.lock"
]
},
"imports": {
"@ajv": "npm:[email protected]",
"@bids/schema": "jsr:@bids/[email protected]",
"@cliffy/command": "jsr:@effigies/[email protected]",
"@cliffy/table": "jsr:@effigies/[email protected]",
"@hed/validator": "npm:[email protected]",
"@ignore": "npm:[email protected]",
"@libs/xml": "jsr:@libs/[email protected]",
"@mango/nifti": "npm:@bids/[email protected]",
"@std/assert": "jsr:@std/[email protected]",
"@std/fmt": "jsr:@std/[email protected]",
"@std/fs": "jsr:@std/[email protected]",
"@std/io": "jsr:@std/[email protected]",
"@std/log": "jsr:@std/[email protected]",
"@std/path": "jsr:@std/[email protected]",
"@std/streams": "jsr:@std/[email protected]",
"@std/yaml": "jsr:@std/yaml@^1.0.4"
},
"tasks": {
"test": "deno test -A src/tests/"
},
"fmt": {
"lineWidth": 99,
"semiColons": false,
"singleQuote": true,
"proseWrap": "preserve",
"include": [
"src/"
]
}
}