-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
74 lines (74 loc) · 2.12 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
{
"name": "cli-markdown",
"version": "3.4.0",
"type": "module",
"description": "Render Markdown to Terminal",
"bugs": {
"url": "https://github.com/horosgrisa/cli-markdown/issues"
},
"homepage": "https://github.com/horosgrisa/cli-markdown",
"main": "index.js",
"bin": {
"markdown": "bin/markdown.js",
"md": "bin/markdown.js"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 0",
"fix": "eslint --quiet --fix *.js bin/*.js .eslintrc.cjs --ignore-pattern '!.eslintrc.js'"
},
"dependencies": {
"@mdit/plugin-alert": "^0.10.1",
"@types/marked": "^6.0.0",
"cli-html": "^4.2.0",
"concat-stream": "^2.0.0",
"markdown-it": "^14.1.0",
"markdown-it-abbr": "^2.0.0",
"markdown-it-container": "^4.0.0",
"markdown-it-deflist": "^3.0.0",
"markdown-it-footnote": "^4.0.0",
"markdown-it-ins": "^4.0.0",
"markdown-it-mark": "^4.0.0",
"markdown-it-sub": "^2.0.0",
"markdown-it-sup": "^2.0.0",
"markdown-it-task-lists": "^2.1.1"
},
"devDependencies": {
"confusing-browser-globals": "^1.0.11",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-standard-jsdoc": "^9.3.0",
"eslint-plugin-async-await": "0.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.2.4",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-no-loops": "^0.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prefer-object-spread": "^1.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-security": "^3.0.0",
"eslint-plugin-simple-import-sort": "^12.1.0",
"eslint-plugin-unicorn": "^53.0.0",
"eslint-plugin-you-dont-need-lodash-underscore": "^6.14.0"
},
"author": "Grigorii Horos <[email protected]>",
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "git+https://github.com/horosgrisa/cli-markdown.git"
},
"keywords": [
"html",
"render",
"terminal",
"cli",
"marked",
"markdown",
"markdown-to-cli",
"markdown-to-terminal",
"html-to-terminal"
]
}