-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathdeno.json
More file actions
46 lines (46 loc) · 1.25 KB
/
deno.json
File metadata and controls
46 lines (46 loc) · 1.25 KB
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
{
"name": "@joakimunge/denoliver",
"version": "3.0.0",
"description": "A small, zero config dev & static file server with live reloading written in TypeScript for Deno intended for prototyping and Single Page Applications.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/joakimunge/denoliver.git"
},
"homepage": "https://github.com/joakimunge/denoliver",
"exports": "./mod.ts",
"publish": {
"exclude": [
".DS_Store",
".git/",
".github/",
".prettierrc",
".vscode/",
"demo/",
"temp.ts",
"Makefile",
"denoliver.json",
"denoliver.json.example",
"media/"
]
},
"tasks": {
"test": "deno test --allow-read --allow-net --allow-write --allow-sys",
"dev": "deno run --allow-read --allow-net --allow-write --allow-sys mod.ts ./demo",
"check": "deno check mod.ts"
},
"imports": {
"@std/assert": "jsr:@std/assert@^1.0.0",
"@std/cli": "jsr:@std/cli@^1.0.0",
"@std/fmt": "jsr:@std/fmt@^1.0.0",
"@std/path": "jsr:@std/path@^1.0.0"
},
"compilerOptions": {
"strict": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": false,
"noUnusedParameters": false
}
}