-
-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.31 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 2.31 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "node-html-markdown",
"description": "Fast HTML to markdown cross-compiler, compatible with both node and the browser",
"version": "2.0.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"compile": "tsc",
"build": "yarn run clean && yarn run compile",
"clean": "npx -y rimraf coverage dist **/*.tsbuildinfo",
"------------- ": "-------------",
"benchmark": "cd benchmark && yarn run benchmark quick",
"benchmark:large": "cd benchmark && yarn run benchmark",
"test": "jest",
"test:coverage": "jest --collect-coverage",
"------------- ": "-------------",
"prepare": "ts-patch patch tsc --silent && cd benchmark && yarn install"
},
"files": [
"README.md",
"CHANGELOG.md",
"dist"
],
"keywords": [
"html",
"markdown",
"converter",
"md",
"html5",
"node-html-parser",
"fast-html-parser",
"turndown"
],
"author": {
"name": "Ron S.",
"url": "http://twitter.com/ron"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/crosstype/node-html-markdown.git"
},
"bugs": {
"url": "https://github.com/crosstype/node-html-markdown/issues"
},
"homepage": "https://github.com/crosstype/node-html-markdown#readme",
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"node-html-parser": "^6.1.13"
},
"devDependencies": {
"@types/jest": "^29.0.0",
"@types/node": "^18.19.130",
"jest": "^29.7.0",
"rimraf": "^3.0.2",
"standard-version": "^9.5.0",
"ts-jest": "^29.4.5",
"ts-node": "^10.9.2",
"ts-patch": "^3.3.0",
"typescript": "^5.9.3"
},
"resolutions": {
"minimatch": "^3.1.0",
"brace-expansion": "^2.0.0",
"shelljs": "^0.8.5"
},
"standard-version": {
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Fixes"
},
{
"type": "chore",
"hidden": true
},
{
"type": "docs",
"hidden": true
},
{
"type": "style",
"hidden": true
},
{
"type": "refactor",
"hidden": true
},
{
"type": "perf",
"hidden": true
},
{
"type": "test",
"hidden": true
}
]
}
}