-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
75 lines (75 loc) · 1.93 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
{
"name": "cli-html",
"version": "4.2.0",
"description": "Render HTML to Terminal",
"main": "index.js",
"type": "module",
"scripts": {
"fix": "eslint --fix index.js lib/*.js lib/*/*.js",
"test": "true"
},
"bin": {
"html": "bin/html.js"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"author": "Grigorii Horos",
"license": "GPL3",
"keywords": [
"html",
"render",
"terminal",
"cli",
"html-to-cli",
"html-to-terminal"
],
"repository": {
"type": "git",
"url": "https://github.com/horosgrisa/cli-html.git"
},
"homepage": "https://github.com/horosgrisa/cli-html",
"dependencies": {
"ansi-align": "^3.0.1",
"ansi-escapes": "^7.0.0",
"boxen": "^7.1.1",
"chalk": "^5.3.0",
"chalk-string": "^3.0.0",
"change-case": "^5.4.4",
"cli-highlight": "^2.1.11",
"cli-table3": "^0.6.4",
"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.3",
"languages-aliases": "^3.0.0",
"longest-line": "0.0.3",
"normalize-html-whitespace": "^1.0.0",
"number-to-alphabet": "^1.0.0",
"parse5": "^7.1.1",
"romanize": "^1.1.1",
"supports-hyperlinks": "^3.0.0",
"term-size": "^4.0.0",
"wrap-ansi": "^9.0.0",
"yaml": "^2.4.2"
},
"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-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-perfectionist": "^2.10.0",
"eslint-plugin-prefer-object-spread": "^1.2.1",
"eslint-plugin-simple-import-sort": "^12.1.0",
"eslint-plugin-unicorn": "^53.0.0",
"globals": "^15.2.0"
}
}