-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
82 lines (82 loc) · 1.38 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
{
"name": "ansi-to-svg",
"main": "ansi-to-svg",
"version": "1.4.3",
"description": "😹 convert ANSI Escaped CLI strings to SVGs",
"license": "MIT",
"repository": "F1LT3R/ansi-to-svg",
"author": {
"name": "F1LT3R",
"email": "al@pwn.io",
"url": "f1lt3r.io"
},
"scripts": {
"test": "xo && yarn run cover",
"unit": "ava",
"watch": "ava --watch",
"cover": "nyc --reporter=lcov --reporter=html --reporter=text ava *.test.js",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls -v",
"precommit": "yarn test"
},
"files": [
"index.js"
],
"dependencies": {
"ansi-to": "^1.3.0",
"he": "^1.1.1"
},
"devDependencies": {
"ava": "^0.25.0",
"chalk": "^2.3.2",
"coveralls": "^3.0.0",
"git-hooks": "^1.1.10",
"git-pre-commit": "^2.1.3",
"html-colors": "^0.0.4",
"nyc": "^11.6.0",
"open": "^0.0.5",
"xo": "^0.20.3"
},
"keywords": [
"ansi-to-html",
"ansi-to-image",
"ansi-to-svg",
"ansi-to-dataurl",
"ansi",
"escape",
"convert",
"console",
"color",
"chalk",
"terminal",
"html",
"image",
"jpg",
"png",
"svg",
"data url",
"log"
],
"nyc": {
"reporter": [
"lcov",
"text"
]
},
"xo": {
"esnext": true,
"semicolon": false,
"globals": [
"__dirname"
],
"rules": {
"no-console": 1,
"space-before-function-paren": 0
},
"ignores": [
"examples/**/*"
]
},
"ava": {
"failFast": true
}
}