-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdeno.json
More file actions
47 lines (47 loc) · 2.07 KB
/
Copy pathdeno.json
File metadata and controls
47 lines (47 loc) · 2.07 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
{
"workspace": [
"./core",
"./rpc-streamer",
"./webauth",
"./plugins/*",
"./test-tooling"
],
"nodeModulesDir": "auto",
"imports": {
"jsr:@colibri/core": "./core",
"jsr:@colibri/test-tooling": "./test-tooling",
"jsr:@colibri/webauth": "./webauth",
"colibri-internal/": "./_internal/",
"colibri-tools/": "./_tools/",
"stellar-sdk": "npm:@stellar/stellar-sdk@^16.0.1",
"buffer": "npm:buffer@^6.0.3",
"crypto": "node:crypto",
"convee": "jsr:@fifo/convee@1.0.0",
"@std/toml": "jsr:@std/toml@^1.0.11",
"@std/assert": "jsr:@std/assert@^1.0.0",
"@std/testing": "jsr:@std/testing@^1.0.0",
"@std/expect": "jsr:@std/expect@^1.0.0"
},
"tasks": {
"check": "deno check core/mod.ts rpc-streamer/mod.ts webauth/mod.ts plugins/fee-bump/mod.ts plugins/channel-accounts/mod.ts test-tooling/mod.ts",
"check:jsr": "deno doc --lint core/mod.ts && deno doc --lint webauth/mod.ts && deno doc --lint plugins/fee-bump/mod.ts && deno doc --lint plugins/channel-accounts/mod.ts && deno doc --lint test-tooling/mod.ts",
"build:webauth-fixtures": "deno run -A _tools/build-webauth-fixtures.ts",
"check:webauth-fixtures": "deno run -A _tools/build-webauth-fixtures.ts --check",
"build:delegated-auth-fixtures": "deno run -A _tools/build-delegated-auth-fixtures.ts",
"check:delegated-auth-fixtures": "deno run -A _tools/build-delegated-auth-fixtures.ts --check",
"test": "deno test -A --parallel --clean --ignore='_*/' --coverage=coverage",
"test:unit": "deno test -A --parallel --clean --ignore='_*/' --ignore='**/*.integration.test.ts' --ignore='**/*.testnet.integration.test.ts' --coverage=coverage",
"test:integration": "deno test -A --parallel --clean --ignore='_*/' --ignore='**/*.unit.test.ts' --coverage=coverage",
"test:file": "deno test -A --parallel --clean --ignore='_*/'"
},
"lint": {
"plugins": [],
"rules": {
"exclude": ["no-slow-types", "explicit-function-return-type"]
}
},
"compilerOptions": {
"skipLibCheck": true
},
"exclude": ["node_modules", "_*", "dist", "coverage"]
}