forked from crosstype/node-html-markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.2 KB
/
package.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
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
{
"name": "node-html-markdown",
"description": "Fast HTML to markdown cross-compiler, compatible with both node and the browser",
"version": "1.3.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": ">=10.0.0"
},
"dependencies": {
"node-html-parser": "^6.1.1"
},
"devDependencies": {
"@types/jest": "~28.1.1",
"@types/node": "^18.11.5",
"jest": "^29.2.2",
"standard-version": "^9.5.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"ts-patch": "^2.0.2",
"typescript": "^4.8.4",
"rimraf": "^3.0.2"
},
"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
}
]
}
}