package.json 1.4 KB

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