-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
38 lines (38 loc) · 1.05 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
{
"name": "@nmyvision/html-parser",
"version": "2.0.0",
"description": "A zero dependency library for parsing HTML and HTML like languages like JSX, Vue",
"author": "Matt Gambill",
"homepage": "https://github.com/NMyVision/html-parser/blob/master/README.md",
"exports": {
"./HtmlNode": "./src/HtmlNode.ts",
"./HtmlNodeAttributes": "./src/HtmlNodeAttributes.ts",
"./HtmlNodeOptions": "./src/HtmlNodeOptions.ts",
"./HtmlNodeType": "./src/HtmlNodeType.ts",
"./HtmlParser": "./src/HtmlParser.ts",
"./ParserOptions": "./src/ParserOptions.ts",
"./Queue": "./src/Queue.ts",
"./StringQueue": "./src/StringQueue.ts",
".": "./src/HtmlParser.ts"
},
"license": "MIT",
"tasks": {
"dev": "deno run --watch src/main.ts"
},
"imports": {
"@std/assert": "jsr:@std/assert@^1",
"@std/expect": "jsr:@std/expect@^1.0.10",
"@std/testing": "jsr:@std/testing@^1.0.8"
},
"publish": {
"include": [
"README.md",
"src/**/*.ts",
"docs"
],
"exclude": [
"__tests__",
".vscode"
]
}
}