{
  "name": "@accordproject/markdown-docx",
  "version": "0.16.26",
  "description": "Transform DOCX to CiceroMark DOM",
  "engines": {
    "node": ">=18",
    "npm": ">=9"
  },
  "publishConfig": {
    "access": "public"
  },
  "files": [
    "bin",
    "lib",
    "umd"
  ],
  "main": "index.js",
  "browser": "umd/markdown-docx.js",
  "scripts": {
    "webpack": "webpack --config webpack.config.js --mode production",
    "build": "babel src -d lib --copy-files",
    "build:dist": "NODE_ENV=production babel src -d lib --copy-files",
    "build:watch": "babel src -d lib --copy-files --watch",
    "prepublishOnly": "npm run build:dist && npm run webpack",
    "prepare": "npm run build",
    "pretest": "npm run lint && npm run build",
    "lint": "eslint .",
    "postlint": "npm run licchk",
    "licchk": "license-check-and-add",
    "test": "jest --timeOut=10000",
    "test:updateSnapshot": "jest --updateSnapshot --silent",
    "test:cov": "npm run lint && jest --timeOut=10000 --coverage",
    "jsdoc": "jsdoc -c jsdoc.json package.json",
    "typescript": "jsdoc -t node_modules/tsd-jsdoc/dist -r ./src/"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/accordproject/markdown-transform.git",
    "directory": "packages/markdown-docx"
  },
  "keywords": [
    "accord-project",
    "markdown",
    "markdown-it",
    "commonmark"
  ],
  "author": "accordproject.org",
  "license": "Apache-2.0",
  "bugs": {
    "url": "https://github.com/accordproject/markdown-transform/issues"
  },
  "homepage": "https://github.com/accordproject/markdown-transform#readme",
  "devDependencies": {
    "@babel/cli": "7.25.9",
    "@babel/core": "7.26.0",
    "@babel/preset-env": "7.26.0",
    "babel-loader": "9.2.1",
    "babel-plugin-istanbul": "7.0.0",
    "browserify-zlib": "^0.2.0",
    "crypto-browserify": "3.12.1",
    "eslint": "8.57.1",
    "https-browserify": "^1.0.0",
    "jest": "^29.7.0",
    "jsdoc": "^4.0.4",
    "license-check-and-add": "2.3.6",
    "raw-loader": "^4.0.2",
    "stream-browserify": "3.0.0",
    "stream-http": "^3.2.0",
    "tsd-jsdoc": "^2.5.0",
    "webpack": "5.96.1",
    "webpack-cli": "5.1.4"
  },
  "dependencies": {
    "@accordproject/markdown-cicero": "*",
    "mammoth": "^1.8.0"
  },
  "license-check-and-add-config": {
    "folder": "./src",
    "license": "header.txt",
    "exact_paths_method": "EXCLUDE",
    "exact_paths": [
      "externalModels/.npmignore",
      "externalModels/.gitignore",
      "coverage",
      "index.d.ts",
      "./system",
      "./lib",
      "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": [
      "src/**/*.js"
    ],
    "exclude": [
      "scripts/**/*.js"
    ],
    "all": true,
    "check-coverage": true,
    "statements": 88,
    "branches": 76,
    "functions": 84,
    "lines": 88
  }
}
