package.json 898 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "string-length",
  3. "version": "1.0.1",
  4. "description": "Get the real length of a string - by correctly counting astral symbols and ignoring ansi escape codes",
  5. "license": "MIT",
  6. "repository": "sindresorhus/string-length",
  7. "author": {
  8. "name": "Sindre Sorhus",
  9. "email": "sindresorhus@gmail.com",
  10. "url": "sindresorhus.com"
  11. },
  12. "engines": {
  13. "node": ">=0.10.0"
  14. },
  15. "scripts": {
  16. "test": "mocha"
  17. },
  18. "files": [
  19. "index.js"
  20. ],
  21. "keywords": [
  22. "unicode",
  23. "string",
  24. "str",
  25. "length",
  26. "astral",
  27. "symbol",
  28. "surrogates",
  29. "codepoints",
  30. "ansi",
  31. "escape",
  32. "codes"
  33. ],
  34. "dependencies": {
  35. "strip-ansi": "^3.0.0"
  36. },
  37. "devDependencies": {
  38. "mocha": "*"
  39. },
  40. "__npminstall_done": true,
  41. "_from": "string-length@1.0.1",
  42. "_resolved": "https://registry.npmmirror.com/string-length/-/string-length-1.0.1.tgz"
  43. }