-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.38 KB
/
Copy pathpackage.json
File metadata and controls
119 lines (119 loc) · 3.38 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "cli-html",
"version": "6.1.1",
"description": "Render HTML, Markdown and JSX to Terminal",
"main": "index.js",
"types": "index.d.ts",
"type": "module",
"scripts": {
"fix": "eslint --fix index.js lib/*.js lib/*/*.js bin/*.js test/**/*.js",
"lint": "eslint index.js lib/*.js lib/*/*.js bin/*.js test/**/*.js",
"test": "FORCE_COLOR=1 node --test",
"test:watch": "FORCE_COLOR=1 node --test --watch",
"test:coverage": "c8 --reporter=lcov --reporter=text node --test",
"precommit": "true",
"prepare": "simple-git-hooks"
},
"simple-git-hooks": {
"pre-commit": "npm run precommit"
},
"bin": {
"html": "bin/html.js",
"markdown": "bin/markdown.js",
"md": "bin/markdown.js",
"jsx": "bin/jsx.js"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"author": "Grigorii Horos",
"license": "GPL3",
"keywords": [
"html",
"markdown",
"render",
"terminal",
"cli",
"html-to-cli",
"html-to-terminal",
"markdown-to-cli",
"markdown-to-terminal",
"gfm",
"github-flavored-markdown",
"typescript",
"types"
],
"repository": {
"type": "git",
"url": "https://github.com/grigorii-horos/cli-html.git"
},
"homepage": "https://github.com/grigorii-horos/cli-html",
"dependencies": {
"@babel/core": "^7.29.7",
"@babel/preset-env": "^7.29.7",
"@babel/preset-react": "^7.29.7",
"@mdit/plugin-alert": "^0.22.1",
"ansi-align": "^3.0.1",
"ansi-escapes": "^7.2.0",
"boxen": "^8.0.1",
"chalk": "^5.6.2",
"chalk-string": "^4.0.0",
"change-case": "^5.4.4",
"cli-highlight": "^2.1.11",
"cli-table3": "^0.6.5",
"color-namer": "^1.4.0",
"compose-function": "^3.0.3",
"concat-stream": "^2.0.0",
"env-paths": "^3.0.0",
"he": "^1.2.0",
"inline-style-parser": "^0.2.7",
"languages-aliases": "^3.0.0",
"longest-line": "0.0.3",
"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",
"normalize-html-whitespace": "^1.0.0",
"parse5": "^8.0.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"romanize": "^1.1.1",
"supports-hyperlinks": "^4.3.0",
"terminal-size": "^4.0.0",
"wrap-ansi": "^9.0.2",
"yaml": "^2.8.2"
},
"devDependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@eslint/js": "^9.28.0",
"@mui/material": "^9.1.1",
"@react-email/components": "^1.0.12",
"c8": "^10.1.3",
"confusing-browser-globals": "^1.0.11",
"eslint": "^9.28.0",
"eslint-config-standard-jsdoc": "^9.3.0",
"eslint-plugin-async-await": "0.0.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsdoc": "^61.4.1",
"eslint-plugin-json": "^4.0.1",
"eslint-plugin-n": "^17.23.1",
"eslint-plugin-no-loops": "^0.4.0",
"eslint-plugin-perfectionist": "^4.15.1",
"eslint-plugin-prefer-object-spread": "^1.2.1",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unicorn": "^62.0.0",
"globals": "^16.2.0",
"react-bootstrap": "^2.10.10",
"reactstrap": "^9.2.3",
"simple-git-hooks": "^2.12.1"
}
}