-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.08 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": "term-to-html",
"version": "0.0.0-development",
"description": "Stream terminal output with ansi codes into nicely formatted HTML",
"main": "index.js",
"scripts": {
"test": "mocha spec.js",
"e2e": "mocha --timeout 30000 e2e.js",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "/~https://github.com/bahmutov/term-to-html.git"
},
"files": [
"bin",
"index.js"
],
"bin": {
"term-to-html": "bin/term-to-html.js"
},
"keywords": [
"cli",
"terminal",
"ansi",
"html"
],
"author": "Gleb Bahmutov <gleb.bahmutov@gmail.com>",
"license": "MIT",
"bugs": {
"url": "/~https://github.com/bahmutov/term-to-html/issues"
},
"homepage": "/~https://github.com/bahmutov/term-to-html#readme",
"devDependencies": {
"chalk": "4.1.2",
"cli-table3": "0.6.0",
"execa": "5.1.1",
"mocha": "8.4.0",
"prettier": "2.4.1",
"semantic-release": "17.4.7",
"snap-shot-it": "7.9.6"
},
"dependencies": {
"ansi-to-html": "0.7.2",
"arg": "5.0.1",
"escape-html": "1.0.3"
}
}