-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
54 lines (54 loc) · 1.33 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
{
"$schema": "https://deno.land/x/deno/cli/schemas/config-file.v1.json",
"name": "@imcotton/pkg-fence",
"version": "0.6.6",
"description": "A command line tool that glance over package dependencies.",
"license": "AGPL-3.0-only",
"imports": {
"module-replacements/": "https://esm.sh/gh/es-tooling/[email protected]/",
"nolyfill/": "https://esm.sh/gh/SukkaW/[email protected]/",
"@std/testing": "jsr:@std/testing@^1.0.0",
"@std/assert": "jsr:@std/assert@^1.0.0"
},
"exports": {
"./presets": "./src/presets/index.ts",
"./scanner": "./src/scanner/index.ts",
"./collect": "./src/collect.ts",
"./main": "./src/cli/main.ts",
".": "./src/cli/bin.ts"
},
"tasks": {
"sync-relief": "./tools/sync/relief.ts",
"sync-nolyfill": "./tools/sync/nolyfill.ts"
},
"compilerOptions": {
"types": [
"npm:@types/node"
],
"strict": true,
"noImplicitAny": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noUncheckedIndexedAccess": true
},
"fmt": {
"lineWidth": 80,
"indentWidth": 4,
"useTabs": false,
"semiColons": true,
"singleQuote": true,
"include": [
"./src"
]
},
"lock": false,
"publish": {
"include": [
"./src",
"./LICENSE.txt",
"./CHANGELOG.md",
"./README.md",
"./deno.json"
]
}
}