{
  "name": "@accordproject/markdown-common",
  "version": "1.0.1",
  "description": "A framework for transforming markdown",
  "engines": {
    "node": ">=22",
    "npm": ">=9"
  },
  "publishConfig": {
    "access": "public"
  },
  "files": [
    "lib"
  ],
  "main": "lib/index.js",
  "types": "lib/index.d.ts",
  "scripts": {
    "pretest": "npm run lint && npm run build",
    "lint": "eslint . --ext .ts",
    "postlint": "npm run licchk",
    "licchk": "license-check-and-add",
    "test": "jest --silent",
    "test:noisy": "jest",
    "test:updateSnapshot": "jest --updateSnapshot --silent",
    "test:cov": "npm run lint && npm run build && jest --coverage --silent",
    "build": "tsc -p tsconfig.json",
    "clean": "rimraf lib"
  },
  "typings": "lib/index.d.ts",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/accordproject/markdown-transform.git",
    "directory": "packages/markdown-common"
  },
  "keywords": [
    "accord-project",
    "markdown",
    "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": {
    "@accordproject/concerto-core": "^4.1.3",
    "@types/jest": "^29.5.12",
    "@types/markdown-it": "^14.1.2",
    "@types/node": "^20.11.30",
    "@typescript-eslint/eslint-plugin": "^7.4.0",
    "@typescript-eslint/parser": "^7.4.0",
    "eslint": "8.57.1",
    "jest": "^29.7.0",
    "jest-diff": "^29.7.0",
    "license-check-and-add": "2.3.6",
    "rimraf": "^5.0.5",
    "ts-jest": "^29.1.2",
    "typescript": "^5.9.3"
  },
  "peerDependencies": {
    "@accordproject/concerto-core": "^4.1.3"
  },
  "dependencies": {
    "@xmldom/xmldom": "^0.9.10",
    "markdown-it": "^14.1.0"
  },
  "license-check-and-add-config": {
    "folder": "./src",
    "license": "header.txt",
    "exact_paths_method": "EXCLUDE",
    "exact_paths": [
      "externalModels/.npmignore",
      "externalModels/.gitignore",
      "coverage",
      "__snapshots__",
      "./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": {
      "ts|tsx|js|njk|pegjs|cto|acl|qry": {
        "prepend": "/*",
        "append": " */",
        "eachLine": {
          "prepend": " * "
        }
      },
      "npmrc|editorconfig|txt": {
        "eachLine": {
          "prepend": "# "
        }
      },
      "md": {
        "file": "header.md"
      }
    }
  }
}
