package.json 807 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "figures",
  3. "version": "3.2.0",
  4. "description": "Unicode symbols with Windows CMD fallbacks",
  5. "license": "MIT",
  6. "repository": "sindresorhus/figures",
  7. "funding": "https://github.com/sponsors/sindresorhus",
  8. "author": {
  9. "name": "Sindre Sorhus",
  10. "email": "sindresorhus@gmail.com",
  11. "url": "https://sindresorhus.com"
  12. },
  13. "engines": {
  14. "node": ">=8"
  15. },
  16. "scripts": {
  17. "test": "xo && ava && tsd",
  18. "make": "./makefile.js"
  19. },
  20. "files": [
  21. "index.js",
  22. "index.d.ts"
  23. ],
  24. "keywords": [
  25. "unicode",
  26. "cli",
  27. "cmd",
  28. "command-line",
  29. "characters",
  30. "symbol",
  31. "symbols",
  32. "figure",
  33. "figures",
  34. "fallback"
  35. ],
  36. "dependencies": {
  37. "escape-string-regexp": "^1.0.5"
  38. },
  39. "devDependencies": {
  40. "ava": "^1.4.1",
  41. "markdown-table": "^1.1.2",
  42. "tsd": "^0.7.2",
  43. "xo": "^0.24.0"
  44. }
  45. }