package.json 846 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "grapheme-splitter",
  3. "version": "1.0.4",
  4. "description": "A JavaScript library that breaks strings into their individual user-perceived characters. It supports emojis!",
  5. "homepage": "https://github.com/orling/grapheme-splitter",
  6. "author": "Orlin Georgiev",
  7. "contributors": [
  8. {
  9. "name": "Lucas Tadeu Teixeira",
  10. "email": "lucas@fastmail.nl",
  11. "url": "https://lucas.is"
  12. }
  13. ],
  14. "main": "index.js",
  15. "license": "MIT",
  16. "keywords": [
  17. "utf-8",
  18. "strings",
  19. "emoji",
  20. "split"
  21. ],
  22. "scripts": {
  23. "test": "tape tests/grapheme_splitter_tests.js"
  24. },
  25. "repository": {
  26. "type": "git",
  27. "url": "https://github.com/orling/grapheme-splitter.git"
  28. },
  29. "bugs": "https://github.com/orling/grapheme-splitter/issues",
  30. "dependencies": {},
  31. "devDependencies": {
  32. "tape": "^4.6.3"
  33. }
  34. }