This repository was archived by the owner on Aug 29, 2025. It is now read-only.
forked from grigorii-horos/cli-html
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.95 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.95 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
{
"name": "cli-html",
"version": "1.9.4",
"description": "There will be cli module who render HTML to Terminal",
"main": "index.js",
"type": "module",
"scripts": {
"fix": "eslint --fix index.js lib/*.js lib/*/*.js test/*.js",
"test": "true"
},
"bin": {
"html": "bin/html.js"
},
"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"
},
"engines": {
"node": ">=14.0.0",
"npm": ">=7.0.0"
},
"homepage": "https://github.com/horosgrisa/cli-html",
"dependencies": {
"ansi-align": "^3.0.1",
"ansi-colors": "^4.1.1",
"ansi-escapes": "^5.0.0",
"boxen": "github:horosgrisa/fieldset",
"cli-highlight": "^2.1.11",
"cli-table3": "^0.6.0",
"compose-function": "^3.0.3",
"concat-stream": "^2.0.0",
"eslint-config-airbnb-base": "^14.2.1",
"fieldset": "github:horosgrisa/fieldset",
"he": "^1.2.0",
"languages-aliases": "^3.0.0",
"longest-line": "0.0.3",
"normalize-html-whitespace": "^1.0.0",
"number-to-alphabet": "^1.0.0",
"parse5": "^6.0.1",
"romanize": "^1.1.1",
"supports-hyperlinks": "^2.2.0",
"wrap-ansi": "^8.0.1"
},
"devDependencies": {
"ava": "^3.8.0",
"confusing-browser-globals": "^1.0.9",
"eslint": "8",
"eslint-config-es": "^3.30.15",
"eslint-config-standard-jsdoc": "^9.3.0",
"eslint-plugin-async-await": "0.0.0",
"eslint-plugin-ava": "^13.0.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jquery": "^1.5.1",
"eslint-plugin-jsdoc": "37",
"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-simple-import-sort": "^7.0.0",
"eslint-plugin-you-dont-need-lodash-underscore": "^6.12.0"
}
}