package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "micromark-util-subtokenize",
  3. "version": "2.1.0",
  4. "description": "micromark utility to tokenize subtokens",
  5. "license": "MIT",
  6. "keywords": [
  7. "micromark",
  8. "util",
  9. "utility",
  10. "tokenize"
  11. ],
  12. "repository": "https://github.com/micromark/micromark/tree/main/packages/micromark-util-subtokenize",
  13. "bugs": "https://github.com/micromark/micromark/issues",
  14. "funding": [
  15. {
  16. "type": "GitHub Sponsors",
  17. "url": "https://github.com/sponsors/unifiedjs"
  18. },
  19. {
  20. "type": "OpenCollective",
  21. "url": "https://opencollective.com/unified"
  22. }
  23. ],
  24. "author": "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",
  25. "contributors": [
  26. "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)"
  27. ],
  28. "sideEffects": false,
  29. "type": "module",
  30. "files": [
  31. "dev/",
  32. "lib/",
  33. "index.d.ts.map",
  34. "index.d.ts",
  35. "index.js"
  36. ],
  37. "exports": {
  38. "development": "./dev/index.js",
  39. "default": "./index.js"
  40. },
  41. "dependencies": {
  42. "devlop": "^1.0.0",
  43. "micromark-util-chunked": "^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. "max-depth": "off",
  57. "unicorn/prefer-code-point": "off"
  58. }
  59. }
  60. }