-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
83 lines (83 loc) · 2.23 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
{
"name": "terminal-canvas",
"version": "3.1.2",
"description": "Manipulate the cursor in your terminal via high-performant, low-level, canvas-like API",
"main": "dist/canvas/Canvas.js",
"types": "dist/canvas/Canvas.d.ts",
"license": "MIT",
"homepage": "https://github.com/ghaiklor/terminal-canvas#readme",
"keywords": [
"terminal",
"shell",
"cursor",
"canvas",
"renderer",
"render"
],
"files": [
"dist"
],
"directories": {
"doc": "docs",
"example": "examples",
"lib": "dist",
"test": "test"
},
"bugs": {
"url": "https://github.com/ghaiklor/terminal-canvas/issues",
"email": "ghaiklor@gmail.com"
},
"author": {
"name": "Eugene Obrezkov",
"email": "ghaiklor@gmail.com",
"url": "https://ghaiklor.com"
},
"repository": {
"type": "git",
"url": "https://github.com/ghaiklor/terminal-canvas.git"
},
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"all": "npm run clean && npm run build && npm run test && npm run lint",
"build": "tsc",
"clean": "rimraf coverage dist tsconfig.tsbuildinfo",
"commit": "git cz",
"docs": "typedoc src",
"lint": "eslint --fix --ext .js,.ts .",
"postversion": "git push && git push --tags",
"prepare": "npm run build",
"prepublishOnly": "npm run all",
"preversion": "npm run all",
"test": "jest",
"version": "npm run docs && git add ."
},
"devDependencies": {
"@types/fluent-ffmpeg": "2.1.14",
"@types/jest": "26.0.5",
"@types/node": "14.0.24",
"@types/stream-throttle": "0.1.0",
"@typescript-eslint/eslint-plugin": "3.7.0",
"@typescript-eslint/parser": "3.7.0",
"chop-stream": "0.0.2",
"eslint": "7.5.0",
"eslint-config-standard": "14.1.1",
"eslint-config-standard-with-typescript": "18.0.2",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jest": "23.18.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.1",
"fluent-ffmpeg": "2.1.2",
"git-cz": "4.7.0",
"jest": "29.7.0",
"rimraf": "3.0.2",
"speaker": "0.5.2",
"stream-throttle": "0.1.3",
"ts-jest": "26.1.3",
"typedoc": "0.23.21",
"typescript": "3.9.7",
"ytdl-core": "3.1.2"
}
}