neo-blessed/package.json

50 lines
984 B
JSON
Raw Normal View History

2013-01-27 04:30:52 -06:00
{
2018-06-13 10:59:08 -04:00
"name": "neo-blessed",
2018-12-21 21:29:50 -05:00
"description": "A fork of the original blessed with bug fixes and maintenance.",
2013-01-27 04:30:52 -06:00
"author": "Christopher Jeffrey",
2018-06-13 10:59:08 -04:00
"contributors": [
{
"name": "Iuri Matias",
"email": "iuri.matias@gmail.com"
}
],
2018-12-21 21:29:50 -05:00
"scripts": {
"lint": "eslint lib/"
},
2018-06-13 11:10:35 -04:00
"version": "0.2.0",
2015-08-02 01:56:26 -07:00
"license": "MIT",
2013-07-24 14:40:05 -05:00
"main": "./lib/blessed.js",
2013-02-24 12:14:12 -06:00
"bin": "./bin/tput.js",
"preferGlobal": false,
2018-06-13 10:59:08 -04:00
"repository": "git://github.com/embark-framework/neo-blessed.git",
"homepage": "https://github.com/embark-framework/neo-blessed",
2018-12-21 21:29:50 -05:00
"bugs": {
"url": "http://github.com/embark-framework/neo-blessed/issues"
},
"keywords": [
"curses",
"tui",
"tput",
"terminfo",
"termcap"
],
"tags": [
"curses",
"tui",
"tput",
"terminfo",
"termcap"
],
2015-07-30 23:53:37 -07:00
"engines": {
2018-06-13 10:59:08 -04:00
"node": ">= 8.0.0"
2015-07-30 23:53:37 -07:00
},
"browserify": {
2018-12-21 21:29:50 -05:00
"transform": [
"./browser/transform.js"
]
},
"devDependencies": {
"eslint": "^5.10.0"
}
2013-01-27 04:30:52 -06:00
}