{
  "name": "markdown-links-check",
  "version": "1.0.2",
  "description": "This lib extract the links in a markdown file, has two options: an array result with all links in the file with the title and the URL or test all the URLs and return the status code for each one.",
  "main": "./cli.js",
  "type": "module",
  "bin": {
    "markdown-links-check": "./cli.js"
  },
  "preferGlobal": true,
  "scripts": {
    "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
    "cli": "node cli.js ./files/text.md"
  },
  "keywords": [
    "markdown",
    "URL",
    "URLs",
    "url",
    "urls",
    "link",
    "links",
    "status code"
  ],
  "homepage": "https://github.com/NicolasMaso/markdown-links-check",
  "author": "Nicolas Maso",
  "bugs": {
    "url": "https://github.com/NicolasMaso/markdown-links-check/issues",
    "email": "nicolas.masopb@gmail.com"
  },
  "license": "ISC",
  "dependencies": {
    "@babel/preset-env": "^7.18.2",
    "babel-jest": "^28.1.0",
    "chalk": "^5.0.1",
    "node-fetch": "^3.2.4"
  },
  "devDependencies": {
    "jest": "^28.1.0"
  },
  "jest": {
    "moduleNameMapper": {
      "#(.*)": "<rootDir>/node_modules/$1"
    },
    "transform": {}
  }
}
