-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.17 KB
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
{
"name": "parse_html_to_node",
"version": "0.0.6",
"description": "This is an HTML string parsed into an object, which does not depend on a browser environment and can be used in any JavaScript runtime.",
"main": "dist/parse_html.umd.js",
"module": "dist/parse_html.es.js",
"types": "dist/parse_html.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "tsc --watch",
"build": "vite build",
"test": "vitest",
"test:ui": "vitest --ui",
"coverage": "vitest run --coverage"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Easy-Martin/parse_html.git"
},
"homepage": "https://github.com/Easy-Martin/parse_html",
"bugs": {
"url": "https://github.com/Easy-Martin/parse_html/issues"
},
"keywords": [
"parse_html",
"html",
"parser"
],
"author": "Huang Jingjing",
"license": "MIT",
"devDependencies": {
"@types/node": "^25.2.0",
"@vitest/coverage-v8": "4.0.18",
"@vitest/ui": "^4.0.18",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vite-plugin-dts": "^4.5.4",
"vitest": "^4.0.18"
}
}