-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
69 lines (69 loc) · 1.98 KB
/
Copy pathdeno.json
File metadata and controls
69 lines (69 loc) · 1.98 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
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@caper/engine",
"version": "0.4.10",
"license": "MIT",
"nodeModulesDir": "auto",
"exports": {
".": "./mod.js"
},
"publish": {
"exclude": [
"**/*.test.js",
".history/",
"CONTEXT.md",
"tsconfig*.json",
"scripts/"
]
},
"tasks": {
"check": "deno check mod.js src/",
"types": "deno run -A npm:typescript/bin/tsc -p tsconfig.json",
"dts": "deno task types && deno run -A npm:dts-bundle-generator@9 -o mod.d.ts --project tsconfig.bundle.json --no-check types/mod.d.ts && deno run --allow-read=mod.d.ts --allow-write=mod.d.ts scripts/fix-phaser-dts.ts",
"dts:check": "deno task dts && git diff --exit-code mod.d.ts",
"test": "deno test --permit-no-files --allow-read src/",
"lint": "deno lint",
"fmt": "deno fmt mod.js src/ docs/ README.md deno.json",
"fmt:check": "deno fmt --check mod.js src/ docs/ README.md deno.json",
"ci": "deno task lint && deno task fmt:check && deno task check && deno task dts:check && deno task test"
},
"imports": {
"@std/assert": "jsr:@std/assert@^1.0.19",
"@std/fs": "jsr:@std/fs@1.0.23",
"phaser": "npm:phaser@^3.86.0"
},
"exclude": [
"node_modules/",
"dist/",
"types/"
],
"fmt": {
"indentWidth": 4,
"lineWidth": 120,
"semiColons": true,
"singleQuote": false
},
"lint": {
"exclude": [
"mod.d.ts"
],
"rules": {
"exclude": [
"no-window-prefix",
"no-slow-types"
]
}
},
"compilerOptions": {
"lib": [
"deno.window",
"dom",
"dom.iterable",
"esnext"
],
"checkJs": true,
"strict": true,
"strictNullChecks": false,
"strictPropertyInitialization": false,
"noImplicitOverride": false
}
}