-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.json
73 lines (73 loc) · 2.36 KB
/
deno.json
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@kinsondigital/kd-clients",
"version": "1.0.0-preview.14",
"exports": {
".": "./mod.ts",
"./packaging": "./PackageClients/mod.ts",
"./social": "./OtherClients/mod.ts",
"./github": "./GitHubClients/mod.ts",
"./core": "./core/mod.ts",
"./github/errors": "./GitHubClients/Errors/mod.ts",
"./github/models": "./core/Models/mod.ts"
},
"tasks": {
"check": "deno check ./**/*.ts",
"test": "deno test -A ./tests/*Tests.ts",
"test-watch": "deno test --watch -A ./tests/*Tests.ts",
"lint": "deno lint ./**/*.ts",
"format": "deno fmt ./**/*.ts",
"format-check": "deno fmt ./**/*.ts --check",
"reload-cache": "deno cache ./**/*.ts --reload",
"check-all": "deno task check && deno task lint && deno task format-check"
},
"lint": {
"include": [
"**/*.ts",
".github/**/*.ts"
],
"exclude": [
".github/cicd/playground.ts"
]
},
"fmt": {
"include": [
"core/",
"GitHubClients/",
"OtherClients/",
"PackageClients/",
"tests/"
],
"exclude": [
"**/*.md",
"**/*.json",
"**/*.js",
"**/*.yml",
"**/*.yaml",
".github/cicd/playground.ts"
],
"useTabs": true,
"lineWidth": 130,
"indentWidth": 4,
"semiColons": true,
"singleQuote": false
},
"imports": {
"@std/fs": "jsr:@std/[email protected]",
"@std/path": "jsr:@std/[email protected]",
"@std/encoding": "jsr:@std/[email protected]",
"@std/assert": "jsr:@std/[email protected]",
"@std/testing": "jsr:@std/[email protected]",
"@oauth1": "jsr:@nexterias/[email protected]",
"@kd/clients": "jsr:@kinsondigital/[email protected]",
"@core/": "./core/",
"@gh-clients/": "./GitHubClients/",
"@pkg-clients/": "./PackageClients/",
"@other-clients/": "./OtherClients/",
"@gh-errors/": "./GitHubClients/Errors/",
"@pkg-errors/": "./PackageClients/Errors/",
"@other-errors/": "./OtherClients/Errors/",
"@gh-rest-models/": "./core/Models/",
"@gh-ql-models/": "./core/Models/GraphQlModels/",
"@cicd/core/": "./.github/cicd/core/"
}
}