-
-
Notifications
You must be signed in to change notification settings - Fork 154
/
Copy pathdeno.json
48 lines (48 loc) · 1.03 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "@simplewebauthn/browser",
"version": "13.1.0",
"exports": "./src/index.ts",
"tasks": {
"build": {
"command": "deno run -A build_npm.ts",
"dependencies": [
"test"
]
},
"test": "deno test -A src/",
"test:watch": "deno test -A --watch src/",
"docs:serve": {
"command": "deno run -A jsr:@std/http/file-server --host 127.0.0.1 docs/",
"dependencies": [
"docs:html"
]
},
"docs:html": "deno doc --html src/index.ts",
"docs:lint": "deno doc --lint src/index.ts",
"publish": {
"command": "deno task publish:jsr && deno task publish:npm",
"dependencies": [
"build"
]
},
"publish:jsr": "deno publish",
"publish:npm": "(cd npm; npm publish)"
},
"fmt": {
"singleQuote": true,
"lineWidth": 100
},
"imports": {},
"publish": {
"include": [
"README.md",
"LICENSE.md",
"./src/**/*.ts"
],
"exclude": [
"./src/**/*.test.ts",
"./src/**/__jest__",
"./npm"
]
}
}