forked from chjj/blessed
-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
49 lines (49 loc) · 984 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
43
44
45
46
47
48
49
{
"name": "neo-blessed",
"description": "A fork of the original blessed with bug fixes and maintenance.",
"author": "Christopher Jeffrey",
"contributors": [
{
"name": "Iuri Matias",
"email": "iuri.matias@gmail.com"
}
],
"scripts": {
"lint": "eslint lib/"
},
"version": "0.2.0",
"license": "MIT",
"main": "./lib/blessed.js",
"bin": "./bin/tput.js",
"preferGlobal": false,
"repository": "git://github.com/embark-framework/neo-blessed.git",
"homepage": "https://github.com/embark-framework/neo-blessed",
"bugs": {
"url": "http://github.com/embark-framework/neo-blessed/issues"
},
"keywords": [
"curses",
"tui",
"tput",
"terminfo",
"termcap"
],
"tags": [
"curses",
"tui",
"tput",
"terminfo",
"termcap"
],
"engines": {
"node": ">= 8.0.0"
},
"browserify": {
"transform": [
"./browser/transform.js"
]
},
"devDependencies": {
"eslint": "^5.10.0"
}
}