-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
46 lines (46 loc) · 1.63 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
{
"name": "blessed-xterm",
"homepage": "http://github.com/rse/blessed-xterm",
"description": "XTerm Widget for Blessed Curses Environment",
"version": "1.5.1",
"license": "MIT",
"author": {
"name": "Dr. Ralf S. Engelschall",
"email": "[email protected]",
"url": "http://engelschall.com"
},
"keywords": [
"blessed", "terminal", "widget", "xterm", "pty"
],
"repository": {
"type": "git",
"url": "git://github.com/rse/blessed-xterm.git"
},
"bugs": {
"url": "http://github.com/rse/blessed-xterm/issues"
},
"devDependencies": {
"eslint": "8.57.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-promise": "6.2.0",
"eslint-plugin-import": "2.30.0",
"eslint-plugin-node": "11.1.0"
},
"dependencies" : {
"clone": "2.1.2",
"blessed": "0.1.81",
"jsdom": "25.0.0",
"xterm": "2.8.1",
"node-pty": "1.0.0"
},
"engines": {
"node": ">=12.0.0"
},
"upd": [ "!xterm" ],
"scripts": {
"prepublishOnly": "npm run lint",
"lint": "eslint --config eslint.yaml blessed-xterm.js sample.js",
"test": "node sample.js"
},
"main": "./blessed-xterm.js"
}