-
Notifications
You must be signed in to change notification settings - Fork 3
/
deno.json
33 lines (33 loc) · 1.01 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
{
"name": "@denostack/superserial",
"version": "0.3.5",
"tasks": {
"bench": "deno run --allow-run=deno --allow-write=.benchmark scripts/benchmark.ts",
"test": "deno task test:unit && deno task test:lint && deno task test:format && deno task test:types",
"test:format": "deno fmt --check",
"test:lint": "deno lint",
"test:unit": "deno test -A",
"test:types": "deno check mod.ts",
"build:npm": "deno run --allow-sys --allow-env --allow-read --allow-write --allow-net --allow-run scripts/build_npm.ts"
},
"imports": {
"@deno/dnt": "jsr:@deno/dnt@^0.41.1",
"@std/assert": "jsr:@std/assert@^0.222.1",
"@std/fmt": "jsr:@std/fmt@^0.222.1",
"@std/testing": "jsr:@std/testing@^0.222.1",
"ansi-to-svg": "npm:[email protected]"
},
"exports": {
".": "./mod.ts",
"./deserialize": "./deserialize.ts",
"./serialize": "./serialize.ts",
"./serializer": "./serializer.ts"
},
"lint": {
"exclude": [".npm"]
},
"fmt": {
"exclude": [".npm"]
},
"lock": false
}