-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 906 Bytes
/
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
{
"name": "asciicast-to-svg",
"description": "Render frames of Asciicasts as SVGs.",
"version": "0.2.2",
"main": "index.js",
"bin": "./cli.js",
"files": [
"index.js",
"colors.js",
"cli.js"
],
"keywords": [
"svg",
"asciinema",
"asciicast"
],
"author": "Jannis R <mail@jannisr.de>",
"homepage": "https://github.com/derhuerst/asciicast-to-svg",
"repository": "derhuerst/asciicast-to-svg",
"bugs": "https://github.com/derhuerst/asciicast-to-svg/issues",
"license": "ISC",
"engines": {
"node": ">=6"
},
"dependencies": {
"headless-terminal": "^0.4.0",
"minimist": "^1.2.0",
"screen-buffer": "^0.4.0",
"vdom-to-html": "^2.3.1",
"virtual-dom": "^2.1.1"
},
"devDependencies": {
"benchmark": "^2.1.4",
"tape": "^4.6.3",
"tap-min": "^1.2.1"
},
"scripts": {
"benchmark": "node benchmark.js",
"test": "node test.js | tap-min",
"prepublishOnly": "npm test"
}
}