package.json 515 B

12345678910111213141516171819202122
  1. {
  2. "name" : "ANSIdom",
  3. "version" : "0.0.1",
  4. "author": "Marak Squires <marak.squires@gmail.com>",
  5. "description" : "a quick and dirty DOM implementation in ANSI escape codes",
  6. "main": "./lib/ANSIdom",
  7. "repository" : {
  8. "type" : "git",
  9. "url" : "https://github.com/marak/ANSIdom.git"
  10. },
  11. "dependencies" : {
  12. "jsdom": "0.2.x",
  13. "colors" : "*",
  14. "charm" : "*",
  15. "wordwrap": "*"
  16. },
  17. "license" : "MIT",
  18. "engine" : {
  19. "node" : ">=0.4"
  20. }
  21. }