-
Notifications
You must be signed in to change notification settings - Fork 6
/
deno.json
58 lines (58 loc) · 1.41 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
{
"name": "@bids/validator",
"version": "2.0.1",
"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:ajv@8.17.1",
"@bids/schema": "jsr:@bids/schema@1.0.0",
"@cliffy/command": "jsr:@effigies/cliffy-command@1.0.0-dev.8",
"@cliffy/table": "jsr:@effigies/cliffy-table@1.0.0-dev.5",
"@hed/validator": "npm:hed-validator@3.15.5",
"@ignore": "npm:ignore@6.0.2",
"@libs/xml": "jsr:@libs/xml@6.0.1",
"@mango/nifti": "npm:@bids/nifti-reader-js@0.6.9",
"@std/assert": "jsr:@std/assert@1.0.7",
"@std/fmt": "jsr:@std/fmt@1.0.3",
"@std/fs": "jsr:@std/fs@1.0.5",
"@std/io": "jsr:@std/io@0.225.0",
"@std/log": "jsr:@std/log@0.224.9",
"@std/path": "jsr:@std/path@1.0.8",
"@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/"
]
}
}