-
-
Notifications
You must be signed in to change notification settings - Fork 98
Expand file tree
/
Copy pathdeno.json
More file actions
45 lines (45 loc) · 935 Bytes
/
deno.json
File metadata and controls
45 lines (45 loc) · 935 Bytes
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
{
"name": "@fedify/init",
"version": "2.3.0",
"license": "MIT",
"exports": "./src/mod.ts",
"imports": {
"@inquirer/prompts": "npm:@inquirer/prompts@^7.8.4",
"inquirer-toggle": "npm:inquirer-toggle@^1.0.1"
},
"exclude": [
"dist/",
"node_modules/"
],
"publish": {
"exclude": [
"**/*.test.ts"
]
},
"tasks": {
"check": "deno fmt --check && deno lint && deno check src/**/*.ts",
"run": "deno run --allow-all src/mod.ts",
"test-init": "FEDIFY_TEST_MODE=true deno run --allow-all src/test/mod.ts test-init",
"update-init-deps": "deno run --allow-read --allow-write --allow-net scripts/update_init_deps.ts"
},
"fmt": {
"exclude": [
"src/templates/**"
]
},
"lint": {
"exclude": [
"src/templates/**"
],
"rules": {
"exclude": [
"no-slow-types"
]
}
},
"test": {
"exclude": [
"src/test/**"
]
}
}