-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
64 lines (64 loc) · 1.7 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
{
"name": "markdown-to-html-cli",
"version": "1.0.5",
"description": "Command line tool generates markdown as html.",
"homepage": "https://jaywcjlove.github.io/markdown-to-html-cli/",
"exports": "./lib/index.js",
"bin": {
"markdown-to-html": "lib/cli.js",
"markdown-to-html-cli": "lib/cli.js"
},
"type": "module",
"scripts": {
"start": "node lib/cli.js",
"watch": "tsbb watch --disable-babel --file-names src/cli.ts",
"build": "tsbb build --disable-babel --file-names src/cli.ts && npm run fix",
"fix": "tsc-esm-fix --target='lib' --ext='.js'",
"test": "npm run build && tsbb test",
"coverage": "npm run build && tsbb test --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/jaywcjlove/markdown-to-html-cli.git"
},
"keywords": [
"markdown-to-html-cli",
"markdown-to-html",
"markdown",
"html",
"cli"
],
"license": "MIT",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"jest": {
"transformIgnorePatterns": [
"<rootDir>/node_modules/?!(.*)"
]
},
"dependencies": {
"@types/minimist": "1.2.2",
"@types/fs-extra": "9.0.13",
"@mapbox/rehype-prism": "0.8.0",
"tsc-esm-fix": "2.7.2",
"fs-extra": "10.0.0",
"unified": "10.1.0",
"rehype-attr": "2.0.3",
"rehype-autolink-headings": "6.1.0",
"rehype-document": "6.0.0",
"rehype-slug": "5.0.0",
"rehype-stringify": "9.0.2",
"rehype-format": "4.0.0",
"rehype-rewrite": "2.1.2",
"rehype-wrap": "1.0.10",
"rehype-raw": "6.1.0",
"remark-gfm": "2.0.0",
"remark-parse": "10.0.0",
"remark-rehype": "9.1.0",
"minimist": "1.2.5"
},
"devDependencies": {
"tsbb": "3.3.7"
}
}