Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

package.json 1.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "emoji-regex",
  3. "version": "9.2.2",
  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. "types": "index.d.ts",
  8. "keywords": [
  9. "unicode",
  10. "regex",
  11. "regexp",
  12. "regular expressions",
  13. "code points",
  14. "symbols",
  15. "characters",
  16. "emoji"
  17. ],
  18. "license": "MIT",
  19. "author": {
  20. "name": "Mathias Bynens",
  21. "url": "https://mathiasbynens.be/"
  22. },
  23. "repository": {
  24. "type": "git",
  25. "url": "https://github.com/mathiasbynens/emoji-regex.git"
  26. },
  27. "bugs": "https://github.com/mathiasbynens/emoji-regex/issues",
  28. "files": [
  29. "LICENSE-MIT.txt",
  30. "index.js",
  31. "index.d.ts",
  32. "RGI_Emoji.js",
  33. "RGI_Emoji.d.ts",
  34. "text.js",
  35. "text.d.ts",
  36. "es2015"
  37. ],
  38. "scripts": {
  39. "build": "rm -rf -- es2015; babel src -d .; NODE_ENV=es2015 babel src es2015_types -D -d ./es2015; node script/inject-sequences.js",
  40. "test": "mocha",
  41. "test:watch": "npm run test -- --watch"
  42. },
  43. "devDependencies": {
  44. "@babel/cli": "^7.4.4",
  45. "@babel/core": "^7.4.4",
  46. "@babel/plugin-proposal-unicode-property-regex": "^7.4.4",
  47. "@babel/preset-env": "^7.4.4",
  48. "@unicode/unicode-13.0.0": "^1.0.3",
  49. "mocha": "^6.1.4",
  50. "regexgen": "^1.3.0"
  51. }
  52. }