package.json 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. {
  2. "name": "micromark-core-commonmark",
  3. "version": "2.0.3",
  4. "description": "The CommonMark markdown constructs",
  5. "license": "MIT",
  6. "keywords": [
  7. "micromark",
  8. "core",
  9. "commonmark"
  10. ],
  11. "repository": "https://github.com/micromark/micromark/tree/main/packages/micromark-core-commonmark",
  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. "lib/",
  32. "index.d.ts.map",
  33. "index.d.ts",
  34. "index.js"
  35. ],
  36. "exports": {
  37. "development": "./dev/index.js",
  38. "default": "./index.js"
  39. },
  40. "dependencies": {
  41. "decode-named-character-reference": "^1.0.0",
  42. "devlop": "^1.0.0",
  43. "micromark-factory-destination": "^2.0.0",
  44. "micromark-factory-label": "^2.0.0",
  45. "micromark-factory-space": "^2.0.0",
  46. "micromark-factory-title": "^2.0.0",
  47. "micromark-factory-whitespace": "^2.0.0",
  48. "micromark-util-character": "^2.0.0",
  49. "micromark-util-chunked": "^2.0.0",
  50. "micromark-util-classify-character": "^2.0.0",
  51. "micromark-util-html-tag-name": "^2.0.0",
  52. "micromark-util-normalize-identifier": "^2.0.0",
  53. "micromark-util-resolve-all": "^2.0.0",
  54. "micromark-util-subtokenize": "^2.0.0",
  55. "micromark-util-symbol": "^2.0.0",
  56. "micromark-util-types": "^2.0.0"
  57. },
  58. "scripts": {
  59. "build": "micromark-build"
  60. },
  61. "xo": {
  62. "envs": [
  63. "shared-node-browser"
  64. ],
  65. "prettier": true,
  66. "rules": {
  67. "logical-assignment-operators": "off",
  68. "max-depth": "off",
  69. "unicorn/no-this-assignment": "off",
  70. "unicorn/prefer-at": "off",
  71. "unicorn/prefer-code-point": "off"
  72. }
  73. }
  74. }