forked from bids-standard/bids-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
77 lines (77 loc) · 2.24 KB
/
Copy pathdeno.json
File metadata and controls
77 lines (77 loc) · 2.24 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@bids/validator",
"version": "3.0.0-dev",
"exports": {
".": "./src/api/app.ts",
"./validate": "./src/api/validate/mod.ts",
"./files": "./src/api/files/mod.ts",
"./filetree": "./src/api/filetree/mod.ts",
"./files/deno": "./src/api/files/deno/mod.ts",
"./files/browser": "./src/api/files/browser/mod.ts",
"./files/git": "./src/api/files/git/mod.ts",
"./issues": "./src/api/issues/mod.ts",
"./output": "./src/api/output/mod.ts",
"./cli": "./src/api/cli/mod.ts",
"./main": "./src/api/main/mod.ts",
"./options": "./src/api/options/mod.ts"
},
"exclude": [
"docs/",
"tools/",
"web/",
".*",
"CITATION.cff",
"Dockerfile",
"build.ts",
"local-run"
],
"publish": {
"exclude": [
"**/tests/",
"**/*.test.ts",
"deno.lock"
]
},
"imports": {
"@ajv": "npm:ajv@8.18.0",
"@bids/schema": "jsr:@bids/schema@~1.2.2",
"@bradenmacdonald/s3-lite-client": "jsr:@bradenmacdonald/s3-lite-client@^0.9.6",
"@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@~4.1.4",
"@ignore": "npm:ignore@^7.0.5",
"@libs/xml": "jsr:@libs/xml@^7.0.4",
"@mango/nifti": "npm:@bids/nifti-reader-js@^0.6.9",
"@std/assert": "jsr:@std/assert@^1.0.19",
"@std/async": "jsr:@std/async@^1.2.0",
"@std/fmt": "jsr:@std/fmt@^1.0.9",
"@std/fs": "jsr:@std/fs@^1.0.23",
"@std/io": "jsr:@std/io@^0.225.3",
"@std/log": "jsr:@std/log@^0.224.14",
"@std/path": "jsr:@std/path@^1.1.4",
"@std/streams": "jsr:@std/streams@^1.0.17",
"@std/testing": "jsr:@std/testing@^1.0.17",
"@std/yaml": "jsr:@std/yaml@^1.0.12",
"ansi-escapes": "npm:ansi-escapes@^7.3.0",
"isomorphic-git": "npm:isomorphic-git@^1.37.4",
"hash-wasm": "npm:hash-wasm@^4.12.0",
"marked": "npm:marked@^17.0.5",
"supports-hyperlinks": "npm:supports-hyperlinks@^4.4.0"
},
"nodeModulesDir": "auto",
"tasks": {
"test": "deno test -A src/"
},
"fmt": {
"lineWidth": 99,
"semiColons": false,
"singleQuote": true,
"proseWrap": "preserve",
"include": [
"src/"
],
"exclude": [
"src/tests/bom-utf8.json"
]
}
}