package.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "node-emoji",
  3. "version": "1.11.0",
  4. "description": "simple emoji support for node.js projects",
  5. "author": "Daniel Bugl <daniel.bugl@touchlay.com>",
  6. "repository": {
  7. "type": "git",
  8. "url": "https://github.com/omnidan/node-emoji.git"
  9. },
  10. "keywords": [
  11. "emoji",
  12. "simple",
  13. "emoticons",
  14. "emoticon",
  15. "emojis",
  16. "smiley",
  17. "smileys",
  18. "smilies",
  19. "ideogram",
  20. "ideograms"
  21. ],
  22. "bugs": {
  23. "url": "https://github.com/omnidan/node-emoji/issues"
  24. },
  25. "dependencies": {
  26. "lodash": "^4.17.21"
  27. },
  28. "devDependencies": {
  29. "istanbul": "^0.4.5",
  30. "mocha": "^9.0.3",
  31. "should": "^13.2.3"
  32. },
  33. "scripts": {
  34. "coverage": "./node_modules/.bin/istanbul cover _mocha test",
  35. "emojiparse": "node lib/emojiparse.js",
  36. "test": "./node_modules/.bin/mocha --require should --bail --reporter spec test/*",
  37. "watch": "./node_modules/.bin/mocha --require should --bail --reporter spec test/* --watch",
  38. "prepublish": "npm run test"
  39. },
  40. "main": "index.js",
  41. "license": "MIT"
  42. }