-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.jsonc
More file actions
58 lines (58 loc) · 1.5 KB
/
deno.jsonc
File metadata and controls
58 lines (58 loc) · 1.5 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
55
56
57
58
{
"name": "@codemonument/event-bus-core",
"version": "1.2.0",
"description": "Event Bus Core is a library for creating event buses in Node.js and Deno. Based on RXJS, with nicely typed event classes.",
"author": "Codemonument",
"license": "MIT",
"exports": {
".": "./mod.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/codemonument/event-bus-core.git"
},
"lock": false,
"compilerOptions": {
"strict": true
},
"tasks": {
"start": "deno run example/main.ts",
"cache": "deno cache mod.ts",
// todo: add --doc flag to test
"test": "deno test -A",
"testu": "deno test -A -- --update",
"testw": "deno test -A --watch",
"dry": "deno publish --dry-run"
// note: no need for final publish step, as it's done by github actions
},
"test": {
"exclude": ["npm", ".npm"]
},
"publish": {
"include": [
"./deps",
"./lib",
"version.ts",
"CHANGELOG.md",
"LICENSE",
"README.md",
"deno.jsonc",
"mod.ts"
]
},
"imports": {
"@/": "./",
"@mod": "./mod.ts",
"@std/assert": "jsr:@std/assert@^1.0.13",
"@std/testing": "jsr:@std/testing@^1.0.15",
"@version": "./version.ts",
"@deps/": "./deps/",
"@testutils/": "./tests/_testutils/",
"@testdata/": "./tests/_testdata/",
"rxjs": "npm:rxjs@7.8.1",
"tsd": "npm:tsd@0.30.4",
"zod": "npm:zod@^4.0.10",
"p-defer": "npm:p-defer@4.0.0",
"async-iterator-from-rx": "npm:async-iterator-from-rx@^1.0.0"
}
}