package.json 837 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "is-fullwidth-code-point",
  3. "version": "1.0.0",
  4. "description": "Check if the character represented by a given Unicode code point is fullwidth",
  5. "license": "MIT",
  6. "repository": "sindresorhus/is-fullwidth-code-point",
  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": "node test.js"
  17. },
  18. "files": [
  19. "index.js"
  20. ],
  21. "keywords": [
  22. "fullwidth",
  23. "full-width",
  24. "full",
  25. "width",
  26. "unicode",
  27. "character",
  28. "char",
  29. "string",
  30. "str",
  31. "codepoint",
  32. "code",
  33. "point",
  34. "is",
  35. "detect",
  36. "check"
  37. ],
  38. "dependencies": {
  39. "number-is-nan": "^1.0.0"
  40. },
  41. "devDependencies": {
  42. "ava": "0.0.4",
  43. "code-point-at": "^1.0.0"
  44. }
  45. }