{
  "name": "@accordproject/markdown-it-cicero",
  "version": "0.18.0",
  "description": "Plugin to introduce cicero blocks and inlines for the markdown-it markdown parser",
  "engines": {
    "node": ">=18",
    "npm": ">=9"
  },
  "publishConfig": {
    "access": "public"
  },
  "files": [
    "bin",
    "lib",
    "umd"
  ],
  "main": "index.js",
  "scripts": {
    "pretest": "npm run lint",
    "lint": "eslint .",
    "postlint": "npm run licchk",
    "licchk": "license-check-and-add",
    "test": "mocha",
    "test:cov": "npm run lint && nyc mocha",
    "jsdoc": "jsdoc -c jsdoc.json package.json"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/accordproject/markdown-transform.git",
    "directory": "packages/markdown-it-cicero"
  },
  "keywords": [
    "accord-project",
    "markdown",
    "markdown-it",
    "markdown-it-plugin",
    "commonmark"
  ],
  "author": "accordproject.org",
  "license": "Apache-2.0",
  "bugs": {
    "url": "https://github.com/accordproject/markdown-transform/issues"
  },
  "homepage": "https://github.com/accordproject/markdown-transform",
  "devDependencies": {
    "chai": "4.3.6",
    "chai-as-promised": "7.1.1",
    "chai-string": "^1.5.0",
    "chai-things": "0.2.0",
    "eslint": "8.57.1",
    "jsdoc": "^4.0.4",
    "license-check-and-add": "2.3.6",
    "mocha": "10.8.2",
    "nyc": "17.1.0"
  },
  "dependencies": {
    "markdown-it": "^14.1.0"
  },
  "license-check-and-add-config": {
    "folder": "./lib",
    "license": "header.txt",
    "exact_paths_method": "EXCLUDE",
    "exact_paths": [
      "externalModels/.npmignore",
      "externalModels/.gitignore",
      "coverage",
      "index.d.ts",
      "./system",
      "LICENSE",
      "node_modules",
      ".nyc-output",
      "out",
      ".tern-project"
    ],
    "file_type_method": "EXCLUDE",
    "file_types": [
      ".yml",
      ".yaml",
      ".zip",
      ".tgz",
      ".snap"
    ],
    "insert_license": false,
    "license_formats": {
      "js|njk|pegjs|cto|acl|qry": {
        "prepend": "/*",
        "append": " */",
        "eachLine": {
          "prepend": " * "
        }
      },
      "npmrc|editorconfig|txt": {
        "eachLine": {
          "prepend": "# "
        }
      },
      "md": {
        "file": "header.md"
      }
    }
  },
  "nyc": {
    "produce-source-map": "true",
    "sourceMap": "inline",
    "reporter": [
      "lcov",
      "text",
      "text-summary",
      "html",
      "json"
    ],
    "include": [
      "lib/**/*.js"
    ],
    "exclude": [
      "scripts/**/*.js"
    ],
    "all": true,
    "check-coverage": true,
    "statements": 87,
    "branches": 76,
    "functions": 84,
    "lines": 87
  }
}
