-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.jsonc
More file actions
22 lines (22 loc) · 705 Bytes
/
deno.jsonc
File metadata and controls
22 lines (22 loc) · 705 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"$schema": "https://deno.land/x/deno/cli/schemas/config-file.v1.json",
"name": "@okikio/codepoint-iterator",
"version": "1.1.1",
"lock": false,
"exports": {
".": "./mod.ts",
"./byte_methods": "./byte_methods.ts",
"./constants": "./constants.ts",
"./iterable": "./iterable.ts",
"./mod": "./mod.ts"
},
"tasks": {
"build": "deno run --allow-env=DENO_DIR,XDG_DATA_HOME,XDG_CACHE_HOME,HOME,DENO_AUTH_TOKENS --allow-read --allow-write --allow-net=deno.land --allow-run=pnpm scripts/build.ts",
"bench": "deno bench tests/",
"test": "deno test tests/"
},
"imports": {
"@deno/dnt": "jsr:@deno/dnt@^0.42.1",
"@std/assert": "jsr:@std/assert@^1.0.13"
}
}