neo-blessed/package.json

50 lines
984 B
JSON
Raw Normal View History

2013-01-27 10:30:52 +00:00
{
2018-06-13 14:59:08 +00:00
"name": "neo-blessed",
2018-12-22 02:29:50 +00:00
"description": "A fork of the original blessed with bug fixes and maintenance.",
2013-01-27 10:30:52 +00:00
"author": "Christopher Jeffrey",
2018-06-13 14:59:08 +00:00
"contributors": [
{
"name": "Iuri Matias",
"email": "iuri.matias@gmail.com"
}
],
2018-12-22 02:29:50 +00:00
"scripts": {
"lint": "eslint lib/"
},
2018-06-13 15:10:35 +00:00
"version": "0.2.0",
2015-08-02 08:56:26 +00:00
"license": "MIT",
2013-07-24 19:40:05 +00:00
"main": "./lib/blessed.js",
2013-02-24 18:14:12 +00:00
"bin": "./bin/tput.js",
"preferGlobal": false,
2018-06-13 14:59:08 +00:00
"repository": "git://github.com/embark-framework/neo-blessed.git",
"homepage": "https://github.com/embark-framework/neo-blessed",
2018-12-22 02:29:50 +00: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-31 06:53:37 +00:00
"engines": {
2018-06-13 14:59:08 +00:00
"node": ">= 8.0.0"
2015-07-31 06:53:37 +00:00
},
"browserify": {
2018-12-22 02:29:50 +00:00
"transform": [
"./browser/transform.js"
]
},
"devDependencies": {
"eslint": "^5.10.0"
}
2013-01-27 10:30:52 +00:00
}