forked from mdn/markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.24 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
{
"name": "@mdn/markdown-converter",
"description": "MDN Web Docs tool to covert HTML to Markdown",
"export": "./src/cli.js",
"version": "0.0.1",
"repository": "https://github.com/mdn/markdown.git",
"author": "Mozilla",
"license": "MPL-2.0",
"type": "module",
"scripts": {
"lint:js": "eslint --ext .js src",
"h2m": "env-cmd node src/cli.js",
"test": "c8 mocha ./test/test.js"
},
"dependencies": {
"@caporal/core": "2.0.2",
"@mdn/yari": "1.18.5",
"c8": "7.12.0",
"chalk": "5.0.1",
"cheerio": "1.0.0-rc.12",
"cli-progress": "3.11.2",
"fdir": "5.2.0",
"front-matter": "4.0.2",
"hast-util-is-element": "2.1.2",
"hast-util-to-html": "8.0.3",
"hast-util-to-text": "3.1.1",
"js-yaml": "4.1.0",
"mdast-util-phrasing": "3.0.0",
"mocha": "10.0.0",
"node-gettext": "3.0.0",
"prettier": "2.7.1",
"rehype-format": "4.0.1",
"rehype-parse": "8.0.4",
"rehype-stringify": "9.0.3",
"remark-gfm": "3.0.1",
"remark-prettier": "2.0.0",
"unified": "10.1.2"
},
"devDependencies": {
"env-cmd": "10.1.0",
"eslint": "8.23.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0"
},
"engines": {
"node": ">=12.0.0 <17.0.0"
}
}