package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "name": "slice-ansi",
  3. "version": "0.0.4",
  4. "description": "Slice a string with ANSI escape codes",
  5. "license": "MIT",
  6. "repository": "chalk/slice-ansi",
  7. "author": {
  8. "name": "David Caccavella",
  9. "email": "threedeecee@gmail.com"
  10. },
  11. "maintainers": [
  12. "David Caccavella <threedeecee@gmail.com> (github.com/dthree)",
  13. "Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)",
  14. "Joshua Appelman <jappelman@xebia.com> (jbnicolai.com)",
  15. "JD Ballard <i.am.qix@gmail.com> (github.com/qix-)"
  16. ],
  17. "engines": {
  18. "node": ">=0.10.0"
  19. },
  20. "scripts": {
  21. "test": "node test.js && xo"
  22. },
  23. "files": [
  24. "index.js"
  25. ],
  26. "keywords": [
  27. "slice",
  28. "string",
  29. "ansi",
  30. "styles",
  31. "color",
  32. "colour",
  33. "colors",
  34. "terminal",
  35. "console",
  36. "cli",
  37. "tty",
  38. "escape",
  39. "formatting",
  40. "rgb",
  41. "256",
  42. "shell",
  43. "xterm",
  44. "log",
  45. "logging",
  46. "command-line",
  47. "text"
  48. ],
  49. "dependencies": {},
  50. "devDependencies": {
  51. "ava": "^0.2.0",
  52. "chalk": "^1.1.1",
  53. "strip-ansi": "^3.0.0",
  54. "xo": "*"
  55. }
  56. }