package.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "name": "micromark-util-classify-character",
  3. "version": "2.0.1",
  4. "description": "micromark utility to classify whether a character is whitespace or punctuation",
  5. "license": "MIT",
  6. "keywords": [
  7. "micromark",
  8. "util",
  9. "utility",
  10. "attention",
  11. "classify",
  12. "character"
  13. ],
  14. "repository": "https://github.com/micromark/micromark/tree/main/packages/micromark-util-classify-character",
  15. "bugs": "https://github.com/micromark/micromark/issues",
  16. "funding": [
  17. {
  18. "type": "GitHub Sponsors",
  19. "url": "https://github.com/sponsors/unifiedjs"
  20. },
  21. {
  22. "type": "OpenCollective",
  23. "url": "https://opencollective.com/unified"
  24. }
  25. ],
  26. "author": "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",
  27. "contributors": [
  28. "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)"
  29. ],
  30. "sideEffects": false,
  31. "type": "module",
  32. "files": [
  33. "dev/",
  34. "index.d.ts.map",
  35. "index.d.ts",
  36. "index.js"
  37. ],
  38. "exports": {
  39. "development": "./dev/index.js",
  40. "default": "./index.js"
  41. },
  42. "dependencies": {
  43. "micromark-util-character": "^2.0.0",
  44. "micromark-util-symbol": "^2.0.0",
  45. "micromark-util-types": "^2.0.0"
  46. },
  47. "scripts": {
  48. "build": "micromark-build"
  49. },
  50. "xo": {
  51. "envs": [
  52. "shared-node-browser"
  53. ],
  54. "prettier": true,
  55. "rules": {
  56. "unicorn/prefer-code-point": "off"
  57. }
  58. }
  59. }