-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
28 lines (28 loc) · 789 Bytes
/
Copy pathdeno.json
File metadata and controls
28 lines (28 loc) · 789 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
{
"name": "@nick/url",
"version": "0.1.2",
"license": "MIT",
"author": {
"name": "Nicholas Berlette",
"email": "nick@berlette.com",
"url": "https://github.com/nberlette/url"
},
"exports": {
".": "./mod.ts",
"./install": "./src/install.ts",
"./shim": "./src/shim.ts",
"./shim.d.ts": "./src/shim.d.ts",
"./url-search-params": "./src/url_search_params.ts",
"./url": "./src/url.ts"
},
"imports": {
"@std/testing": "jsr:@std/testing@1.0.11",
"@std/expect": "jsr:@std/expect@1.0.15",
"@std/assert": "jsr:@std/assert@1.0.12"
},
"publish": {
"include": ["**/*.ts", "**/*.json", "**/*.md", "LICENSE"],
"exclude": ["**/.*", "**/*.test.*", "**/*.bench.*", "!src/shim.*"]
},
"exclude": ["src/shim.ts", "src/shim.d.ts"]
}