package.json 928 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "ansi-align",
  3. "version": "2.0.0",
  4. "description": "align-text with ANSI support for CLIs",
  5. "main": "index.js",
  6. "scripts": {
  7. "pretest": "standard",
  8. "test": "nyc ava",
  9. "coverage": "nyc report --reporter=text-lcov | coveralls",
  10. "release": "standard-version"
  11. },
  12. "files": [
  13. "index.js"
  14. ],
  15. "repository": {
  16. "type": "git",
  17. "url": "git+https://github.com/nexdrew/ansi-align.git"
  18. },
  19. "keywords": [
  20. "ansi",
  21. "align",
  22. "cli",
  23. "center",
  24. "pad"
  25. ],
  26. "author": "nexdrew",
  27. "license": "ISC",
  28. "bugs": {
  29. "url": "https://github.com/nexdrew/ansi-align/issues"
  30. },
  31. "homepage": "https://github.com/nexdrew/ansi-align#readme",
  32. "dependencies": {
  33. "string-width": "^2.0.0"
  34. },
  35. "devDependencies": {
  36. "ava": "^0.19.1",
  37. "chalk": "^1.1.3",
  38. "coveralls": "^2.13.1",
  39. "nyc": "^10.3.0",
  40. "standard": "^10.0.2",
  41. "standard-version": "^4.0.0"
  42. }
  43. }