-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 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
49
50
51
52
53
54
55
{
"name": "transform-tty",
"version": "1.0.10",
"description": "Drop-in replacement for stdout/stderr that converts output to strings for testing",
"repository": "https://github.com/moofoo/transform-tty",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "mocha ./tests"
},
"files": [
"index.js",
"index.d.ts",
"parsers"
],
"author": {
"name": "Nathan Cook",
"email": "[email protected]"
},
"keywords": [
"ansi",
"terminal",
"console",
"cli",
"tty",
"shell",
"xterm",
"command-line",
"vt100",
"control",
"code",
"codes",
"cursor",
"testing"
],
"license": "MIT",
"dependencies": {
"ansi-escapes": "^4.3.1",
"node-ansiparser": "^2.2.0",
"node-ansiterminal": "^0.2.1-beta",
"strip-ansi": "^6.0.0",
"terminal.js": "github:moofoo/terminal.js",
"wcwidth": "^1.0.1"
},
"devDependencies": {
"cli-cursor": "^3.1.0",
"mocha": "^8.3.0"
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"tabWidth": 4,
"semi": true
}
}