package.json 816 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "color-support",
  3. "version": "1.1.3",
  4. "description": "A module which will endeavor to guess your terminal's level of color support.",
  5. "main": "index.js",
  6. "browser": "browser.js",
  7. "bin": "bin.js",
  8. "devDependencies": {
  9. "tap": "^10.3.3"
  10. },
  11. "scripts": {
  12. "test": "tap test/*.js --100 -J",
  13. "preversion": "npm test",
  14. "postversion": "npm publish",
  15. "postpublish": "git push origin --all; git push origin --tags"
  16. },
  17. "repository": {
  18. "type": "git",
  19. "url": "git+https://github.com/isaacs/color-support.git"
  20. },
  21. "keywords": [
  22. "terminal",
  23. "color",
  24. "support",
  25. "xterm",
  26. "truecolor",
  27. "256"
  28. ],
  29. "author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)",
  30. "license": "ISC",
  31. "files": [
  32. "browser.js",
  33. "index.js",
  34. "bin.js"
  35. ]
  36. }