package.json 699 B

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "colors",
  3. "description": "get colors in your node.js console",
  4. "version": "1.1.2",
  5. "author": "Marak Squires",
  6. "homepage": "https://github.com/Marak/colors.js",
  7. "bugs": "https://github.com/Marak/colors.js/issues",
  8. "keywords": [ "ansi", "terminal", "colors" ],
  9. "repository": {
  10. "type": "git",
  11. "url": "http://github.com/Marak/colors.js.git"
  12. },
  13. "license": "MIT",
  14. "scripts": {
  15. "test": "node tests/basic-test.js && node tests/safe-test.js"
  16. },
  17. "engines": {
  18. "node": ">=0.1.90"
  19. },
  20. "main": "lib",
  21. "files": [
  22. "examples",
  23. "lib",
  24. "LICENSE",
  25. "safe.js",
  26. "themes"
  27. ]
  28. }