package.json 704 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "name": "truncate-utf8-bytes",
  3. "version": "1.0.2",
  4. "description": "Truncate string to given length in bytes",
  5. "main": "index.js",
  6. "browser": "browser.js",
  7. "scripts": {
  8. "test": "tape test.js"
  9. },
  10. "repository": {
  11. "type": "git",
  12. "url": "git+https://github.com/parshap/truncate-utf8-bytes.git"
  13. },
  14. "keywords": [
  15. "truncate",
  16. "utf8"
  17. ],
  18. "author": "Carl Xiong <xiongc05@gmail.com>",
  19. "license": "WTFPL",
  20. "bugs": {
  21. "url": "https://github.com/parshap/truncate-utf8-bytes/issues"
  22. },
  23. "homepage": "https://github.com/parshap/truncate-utf8-bytes#readme",
  24. "devDependencies": {
  25. "tape": "^4.2.2"
  26. },
  27. "dependencies": {
  28. "utf8-byte-length": "^1.0.1"
  29. }
  30. }