-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdeno.json
More file actions
29 lines (29 loc) · 816 Bytes
/
deno.json
File metadata and controls
29 lines (29 loc) · 816 Bytes
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": "@jacobo/wiremap",
"version": "1.0.0-alpha.5",
"license": "MIT",
"description": "Compositional dependency injection framework.",
"keywords": [],
"author": "Jacobo Tabernero Rey -- github.com/jacoborus",
"exports": "./src/wiremap.ts",
"tasks": {
"test": "deno test test/",
"lint": "deno lint src demos test",
"check": "deno check src test",
"fmt": "deno fmt --check src demos test",
"all": "deno task test && deno task check && deno task lint && deno task demos",
"demos": "deno run demos/app/app.ts && deno run demos/framework/example/example.ts",
"npm": "deno run -A scripts/build_npm.ts"
},
"publish": {
"include": [
"LICENSE",
"README.md",
"src/",
"docs/"
]
},
"imports": {
"@std/assert": "jsr:@std/assert@1"
}
}