-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
54 lines (54 loc) · 1.38 KB
/
deno.json
File metadata and controls
54 lines (54 loc) · 1.38 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
47
48
49
50
51
52
53
54
{
"name": "@env/env-event-stream",
"version": "0.3.1",
"description": "A high-performance, feature-rich event stream library for Deno/Node.js applications, the backbone for event-driven architectures",
"author": "Elastic Networth Visualizer",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Elastic-Networth-Visualizer/env-event-stream.git"
},
"compilerOptions": {
"strict": true,
"strictNullChecks": true,
"noImplicitAny": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true
},
"lint": {
"include": ["src/", "tests/"],
"rules": {
"tags": ["recommended"]
},
"report": "pretty"
},
"fmt": {
"include": ["src/", "tests/", "*.json"],
"indentWidth": 2,
"lineWidth": 100,
"semiColons": true,
"singleQuote": false
},
"tasks": {
"test": "deno test --allow-read --allow-write",
"check": "deno check mod.ts",
"build:npm": "deno run --allow-read --allow-write --allow-env --allow-net --allow-run npm_build.ts"
},
"exports": "./mod.ts",
"publish": {
"exclude": [
"npm_build.ts",
".github",
".vscode",
"node_modules",
"npm",
".git"
]
},
"imports": {
"@db/postgres": "jsr:@db/postgres@^0.19.5",
"@std/assert": "jsr:@std/assert@^1.0.13",
"@std/testing": "jsr:@std/testing@^1.0.11"
}
}