-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathdeno.json
More file actions
37 lines (37 loc) · 1.15 KB
/
deno.json
File metadata and controls
37 lines (37 loc) · 1.15 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
{
"name": "@effection/effection",
"exports": "./mod.ts",
"license": "ISC",
"publish": { "include": ["lib", "mod.ts", "README.md"] },
"lock": false,
"tasks": {
"test": "deno test --allow-run --allow-read --allow-env --allow-ffi",
"test:node": "deno run -A tasks/built-test.ts",
"build:npm": "deno run -A tasks/build-npm.ts",
"bench": "deno run -A tasks/bench.ts",
"build:jsr": "deno run -A tasks/build-jsr.ts"
},
"lint": {
"rules": { "exclude": ["prefer-const", "require-yield"] },
"exclude": ["build", "docs", "tasks"],
"plugins": ["lint/prefer-let.ts"]
},
"fmt": { "exclude": ["build"] },
"test": { "exclude": ["build"] },
"compilerOptions": {
"lib": ["deno.ns", "esnext", "dom", "dom.iterable", "deno.unstable"]
},
"imports": {
"@std/testing": "jsr:@std/testing@1",
"ts-expect": "npm:ts-expect@1.3.0",
"@std/expect": "jsr:@std/expect@1",
"ctrlc-windows": "npm:ctrlc-windows@2.2.0",
"tinyexec": "npm:tinyexec@1.0.1",
"https://deno.land/x/path_to_regexp@v6.2.1/index.ts": "npm:path-to-regexp@8.2.0"
},
"nodeModulesDir": "auto",
"workspace": [
"./www"
],
"version": "4.0.1"
}