package.json 820 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "wide-align",
  3. "version": "1.1.3",
  4. "description": "A wide-character aware text alignment function for use on the console or with fixed width fonts.",
  5. "main": "align.js",
  6. "scripts": {
  7. "test": "tap --coverage test/*.js",
  8. "version": "perl -pi -e 's/^( \"version\": $ENV{npm_config_node_version}\").*?\",/$1abc\",/' package-lock.json ; git add package-lock.json"
  9. },
  10. "keywords": [
  11. "wide",
  12. "double",
  13. "unicode",
  14. "cjkv",
  15. "pad",
  16. "align"
  17. ],
  18. "author": "Rebecca Turner <me@re-becca.org> (http://re-becca.org/)",
  19. "license": "ISC",
  20. "repository": {
  21. "type": "git",
  22. "url": "https://github.com/iarna/wide-align"
  23. },
  24. "dependencies": {
  25. "string-width": "^1.0.2 || 2"
  26. },
  27. "devDependencies": {
  28. "tap": "10 || 11 || 12"
  29. },
  30. "files": [
  31. "align.js"
  32. ]
  33. }