{
  "name": "@gerhobbelt/markdown-it-prism",
  "version": "2.1.8-5",
  "description": "Highlights code blocks in markdown-it using Prism.",
  "keywords": [
    "markdown-it",
    "markdown-it-plugin",
    "highlight",
    "prism",
    "prismjs"
  ],
  "homepage": "https://github.com/jGleitz/markdown-it-prism",
  "repository": {
    "type": "git",
    "url": "https://github.com/catnose99/markdown-it-prism.git"
  },
  "license": "MIT",
  "author": {
    "name": "Joshua Gleitze",
    "url": "https://joshuagleitze.de"
  },
  "type": "module",
  "source": "./src/index.ts",
  "main": "./dist/markdownItPrism.cjs",
  "module": "./dist/markdownItPrism.mjs",
  "exports": "./dist/markdownItPrism.modern.js",
  "unpkg": "./dist/markdownItPrism.umd.js",
  "umd:main": "./dist/markdownItPrism.umd.js",
  "types": "./dist/markdownItPrism.d.ts",
  "engines": {
    "node": ">=12.21"
  },
  "scripts": {
    "build": "make",
    "test": "make test",
    "todo": "make todo",
    "clean": "make clean",
    "superclean": "make superclean",
    "doc": "make doc",
    "lint": "make lint",
    "lintfix": "make lintfix",
    "cov": "make report-coverage",
    "pub": "npm publish --access public"
  },
  "publishConfig": {
    "access": "public"
  },
  "peerDependencies": {
    "@gerhobbelt/prismjs": ">=1.24.1-1"
  },
  "devDependencies": {
    "@gerhobbelt/markdown-it": "12.1.0-64",
    "@gerhobbelt/markdown-it-testgen": "0.1.6-23",
    "@gerhobbelt/prepend-header": "1.1.0-8",
    "@gerhobbelt/prismjs": "1.23.0-4",
    "@semantic-release/git": "9.0.0",
    "@types/markdown-it": "12.0.2",
    "@types/mocha": "8.2.2",
    "@types/prismjs": "1.16.5",
    "@typescript-eslint/eslint-plugin": "4.28.2",
    "@typescript-eslint/parser": "4.28.2",
    "cross-env": "7.0.3",
    "eslint": "7.30.0",
    "microbundle": "0.13.3",
    "mocha": "9.0.2",
    "nyc": "15.1.0",
    "semantic-release": "17.4.4"
  },
  "release": {
    "plugins": [
      "@semantic-release/commit-analyzer",
      "@semantic-release/release-notes-generator",
      "@semantic-release/npm",
      "@semantic-release/github",
      [
        "@semantic-release/changelog",
        {
          "changelogTitle": "# [Changelog](http://keepachangelog.com/)\n\nThis project adheres to [Semantic Versioning](http://semver.org/)."
        }
      ],
      [
        "@semantic-release/git",
        {
          "assets": [
            "CHANGELOG.md",
            "package.json"
          ]
        }
      ]
    ]
  },
  "reporter": [
    "lcov",
    "text",
    "html",
    "text-summary"
  ]
}
