-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
32 lines (32 loc) · 895 Bytes
/
Copy pathdeno.json
File metadata and controls
32 lines (32 loc) · 895 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
{
"name": "@zackiles/response-rewriter",
"version": "0.0.3",
"description": "Strip or replace any and all instances of a string in a Response object (Fetch-based): URLs, headers, bodies, with multiple encoding and transport support.",
"exports": "./mod.ts",
"tasks": {
"dev": "deno run --watch main.ts",
"test": "deno test --allow-net",
"check": "deno check **/*.ts",
"lint": "deno lint"
},
"imports": {
"@std/assert": "jsr:@std/assert@1",
"clarinet": "npm:clarinet@0.12.6"
},
"publish": {
"include": ["LICENSE", "README.md", "mod.ts", "main.ts"],
"exclude": ["**/.*", "**/tests/", "**/*_test.ts", "deno.lock"]
},
"fmt": {
"include": ["*.ts"],
"lineWidth": 80,
"semiColons": false,
"singleQuote": true
},
"runtimes": {
"deno": ">=1.37",
"node": ">=18.0",
"bun": ">=1.0",
"workerd": ">=1.20231030.0"
}
}