package.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "emoji-regex",
  3. "version": "10.4.0",
  4. "description": "A regular expression to match all Emoji-only symbols as per the Unicode Standard.",
  5. "homepage": "https://mths.be/emoji-regex",
  6. "main": "index.js",
  7. "module": "index.mjs",
  8. "types": "index.d.ts",
  9. "keywords": [
  10. "unicode",
  11. "regex",
  12. "regexp",
  13. "regular expressions",
  14. "code points",
  15. "symbols",
  16. "characters",
  17. "emoji"
  18. ],
  19. "license": "MIT",
  20. "author": {
  21. "name": "Mathias Bynens",
  22. "url": "https://mathiasbynens.be/"
  23. },
  24. "repository": {
  25. "type": "git",
  26. "url": "https://github.com/mathiasbynens/emoji-regex.git"
  27. },
  28. "bugs": "https://github.com/mathiasbynens/emoji-regex/issues",
  29. "files": [
  30. "LICENSE-MIT.txt",
  31. "index.js",
  32. "index.d.ts",
  33. "index.mjs"
  34. ],
  35. "scripts": {
  36. "build": "node script/build.js",
  37. "test": "mocha",
  38. "test:watch": "npm run test -- --watch"
  39. },
  40. "devDependencies": {
  41. "@unicode/unicode-16.0.0": "^1.0.0",
  42. "emoji-test-regex-pattern": "^2.2.0",
  43. "mocha": "^10.7.3"
  44. }
  45. }