-
Notifications
You must be signed in to change notification settings - Fork 1
/
deno.jsonc
50 lines (49 loc) · 1.6 KB
/
deno.jsonc
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
{
"exclude": [
"target/",
"vendor/"
],
"fmt": {
"lineWidth": 99,
"singleQuote": true,
// Format only JavaScript files.
"include": [
"**/*.js"
],
"exclude": [
"libs/jsparser/tests/",
"libs/jsruntime/tests/",
]
},
"imports": {
"@cliffy/command": "jsr:@cliffy/[email protected]",
"@deno/emit": "jsr:@deno/[email protected]",
"@std/assert": "jsr:@std/[email protected]",
"@std/csv": "jsr:@std/[email protected]",
"@std/encoding": "jsr:@std/[email protected]",
"@std/fs": "jsr:@std/[email protected]",
"@std/io": "jsr:@std/[email protected]",
"@std/json": "jsr:@std/[email protected]",
"@std/log": "jsr:@std/[email protected]",
"@std/path": "jsr:@std/[email protected]",
"@std/streams": "jsr:@std/[email protected]",
"@std/toml": "jsr:@std/[email protected]",
"@std/yaml": "jsr:@std/[email protected]",
"@zip-js/zip-js": "jsr:@zip-js/[email protected]",
"acorn": "npm:[email protected]",
"change-case": "npm:[email protected]",
"deep-diff": "npm:[email protected]",
"docopt": "https://deno.land/x/[email protected]/mod.ts",
"handlebars": "npm:[email protected]",
"nunjucks": "npm:[email protected]",
"ora": "npm:[email protected]",
// TODO(issue#275): servest was deprecated...
"servest": "https://deno.land/x/[email protected]/mod.ts",
"test262-stream": "npm:[email protected]"
},
// See https://github.com/hasundue/molt/tree/main/cli
"tasks": {
"update": "deno run --allow-env --allow-read --allow-write='~/.local,.' --allow-run='git,deno' --allow-net='deno.land,jsr.io,registry.npmjs.org' jsr:@molt/cli --write",
"update:commit": "deno task -q update --commit"
}
}