-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathpackage.json
109 lines (109 loc) · 2.21 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
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
{
"name": "ansi-to-html",
"version": "0.7.2",
"description": "Convert ansi escaped text streams to html.",
"main": "lib/ansi_to_html.js",
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"lint": "eslint .",
"test": "nyc mocha --reporter tap",
"test:watch": "mocha --reporter tap --watch ./test ./"
},
"nyc": {
"reporter": [
"text",
"html"
]
},
"repository": {
"type": "git",
"url": "https://github.com/rburns/ansi-to-html.git"
},
"homepage": "https://github.com/rburns/ansi-to-html",
"bugs": {
"url": "https://github.com/rburns/ansi-to-html/issues"
},
"keywords": [
"ansi",
"html"
],
"author": {
"name": "Rob Burns",
"email": "rburns@paiges.net",
"url": "http://rburns.paiges.net/"
},
"contributors": [
{
"name": "Dane Stuckel",
"email": "dane.stuckel@gmail.com"
},
{
"name": "Michael",
"email": "michael@riesd.com"
},
{
"name": "Thorsten Kohnhorst",
"email": "monsterkodi@gmx.net"
},
{
"name": "Yoram Grahame",
"email": "yoz@yoz.com"
},
{
"name": "Patrick Steele-Idem",
"email": "pnidem@gmail.com"
},
{
"name": "Paul Grime",
"email": "gitgrimbo@gmail.com"
},
{
"name": "NeeEoo",
"url": "https://github.com/NeeEoo"
},
{
"name": "Brett Zamir",
"url": "https://github.com/brettz9"
},
{
"name": "Piotr Monwid-Olechnowicz",
"url": "https://github.com/hasparus"
},
{
"name": "Lior Chervinsky",
"url": "https://github.com/lior-chervinsky"
},
{
"name": "limichange",
"url": "https://github.com/limichange"
},
{
"name": "Maple Miao",
"url": "https://github.com/mapleeit"
},
{
"name": "remolueoend",
"url": "https://github.com/remolueoend"
},
{
"name": "Vincent Boulaye",
"url": "https://github.com/vboulaye"
}
],
"license": "MIT",
"devDependencies": {
"chai": "^4.3.0",
"eslint": "^7.0.0",
"mocha": "^9.0.0",
"ansi-regex": ">=5.0.1",
"nyc": "^15.1.0"
},
"dependencies": {
"entities": "^4.0.0"
},
"bin": {
"ansi-to-html": "./bin/ansi-to-html"
}
}