package.json 1009 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "dingbat-to-unicode",
  3. "version": "1.0.1",
  4. "description": "Mapping from Dingbat fonts, such as Symbol, Webdings and Wingdings, to Unicode code points",
  5. "main": "./dist/index.js",
  6. "types": "./dist/index.d.ts",
  7. "files": [
  8. "dist"
  9. ],
  10. "scripts": {
  11. "prepare": "tsc",
  12. "test": "mocha --ui exports --require ts-node/register 'test/**/*.ts'"
  13. },
  14. "repository": {
  15. "type": "git",
  16. "url": "git+https://github.com/mwilliamson/dingbat-to-unicode.git"
  17. },
  18. "keywords": [
  19. "dingbat",
  20. "dingbats",
  21. "symbol",
  22. "webdings",
  23. "wingdings",
  24. "unicode"
  25. ],
  26. "author": "Michael Williamson <mike@zwobble.org>",
  27. "license": "BSD-2-Clause",
  28. "bugs": {
  29. "url": "https://github.com/mwilliamson/dingbat-to-unicode/issues"
  30. },
  31. "homepage": "https://github.com/mwilliamson/dingbat-to-unicode#readme",
  32. "devDependencies": {
  33. "@types/mocha": "^8.2.0",
  34. "@types/node": "^14.14.21",
  35. "mocha": "^8.2.1",
  36. "ts-node": "^9.1.1",
  37. "typescript": "^4.1.3"
  38. }
  39. }