-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathdeno.json
29 lines (29 loc) · 943 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
{
"name": "@kt3k/license-checker",
"version": "3.3.1",
"exports": {
".": "./lib.ts",
"./main": "./main.ts"
},
"tasks": {
"test": "deno test --allow-read --allow-write --allow-run --allow-net=0.0.0.0:8000 test.ts",
"cov": "deno test --coverage=coverage --unstable --allow-read --allow-write --allow-run --allow-net=0.0.0.0:8000 test.ts && deno coverage --unstable --lcov coverage > coverage/lcov.info",
"codecov": "curl -s https://codecov.io/bash | bash",
"lint:license": "deno run --unstable --allow-read main.ts",
"dnt": "rm -rf npm && deno run --unstable --allow-read --allow-write --allow-env --allow-run=npm,cmd --allow-net=deno.land dnt.ts",
"udd": "deno run -A https://deno.land/x/udd@0.5.0/main.ts deps.ts serve.ts test.ts dnt.ts"
},
"fmt": {
"exclude": [
"npm",
"coverage"
]
},
"lint": {
"exclude": [
"npm",
"coverage",
"testdata"
]
}
}