package.json 654 B

123456789101112131415161718192021
  1. {
  2. "name": "blessed",
  3. "description": "A high-level terminal interface library for node.js.",
  4. "author": "Christopher Jeffrey",
  5. "version": "0.1.81",
  6. "license": "MIT",
  7. "main": "./lib/blessed.js",
  8. "bin": "./bin/tput.js",
  9. "preferGlobal": false,
  10. "repository": "git://github.com/chjj/blessed.git",
  11. "homepage": "https://github.com/chjj/blessed",
  12. "bugs": { "url": "http://github.com/chjj/blessed/issues" },
  13. "keywords": ["curses", "tui", "tput", "terminfo", "termcap"],
  14. "tags": ["curses", "tui", "tput", "terminfo", "termcap"],
  15. "engines": {
  16. "node": ">= 0.8.0"
  17. },
  18. "browserify": {
  19. "transform": ["./browser/transform.js"]
  20. }
  21. }