forked from chjj/blessed
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 910 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
{
"name": "@farjs/blessed",
"description": "A high-level terminal interface library for node.js.",
"author": "Christopher Jeffrey",
"contributors": [
{
"name": "Viktor Podzigun",
"url": "https://github.com/viktor-podzigun"
}
],
"version": "0.2.2",
"license": "MIT",
"main": "./lib/blessed.js",
"preferGlobal": false,
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/farjs/blessed.git"
},
"homepage": "https://github.com/farjs/blessed",
"bugs": {
"url": "http://github.com/farjs/blessed/issues"
},
"keywords": [
"curses",
"tui",
"tput",
"terminfo",
"termcap"
],
"tags": [
"curses",
"tui",
"tput",
"terminfo",
"termcap"
],
"engines": {
"node": ">= 0.8.0"
},
"browserify": {
"transform": [
"./browser/transform.js"
]
}
}