-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathdeno.json
37 lines (37 loc) · 932 Bytes
/
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
{
"name": "@nats-io/nkeys",
"version": "2.0.2",
"types": "lib/mod.d.ts",
"exports": {
".": "./src/mod.ts"
},
"test": {
"include": ["./test"]
},
"publish": {
"include": [
"./src/**/*",
"LICENSE",
"README.md",
"MANTAINERS.md",
"CODE-OF-CONDUCT.md"
]
},
"tasks": {
"clean": "rm -rf ./build ./lib ./coverage",
"test-cover": "deno task clean && deno task test && deno task cover && deno task view-cover",
"test": "deno test -A --parallel --reload --coverage=coverage test/",
"cover": "deno coverage ./coverage --lcov > ./coverage/out.lcov",
"view-cover": "genhtml -o ./coverage/html ./coverage/out.lcov && open ./coverage/html/index.html"
},
"lint": {
"exclude": ["lib/", "build/", "docs/"]
},
"fmt": {
"exclude": ["lib/", "build/", "docs/"]
},
"imports": {
"tweetnacl": "npm:[email protected]"
},
"nodeModulesDir": "auto"
}