{
  "name": "markdown-link-extractor",
  "version": "4.0.3",
  "description": "extracts links from markdown texts",
  "main": "index.js",
  "scripts": {
    "pretest": "jshint index.js",
    "test": "mocha -R spec"
  },
  "repository": {
    "type": "git",
    "url": "git://github.com/tcort/markdown-link-extractor"
  },
  "keywords": [
    "markdown",
    "link",
    "extract",
    "extractor",
    "href"
  ],
  "author": "Thomas Cort <linuxgeek@gmail.com>",
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/tcort/markdown-link-extractor/issues"
  },
  "homepage": "https://github.com/tcort/markdown-link-extractor",
  "dependencies": {
    "html-link-extractor": "^1.0.5",
    "marked": "^17.0.0"
  },
  "devDependencies": {
    "expect.js": "^0.3.1",
    "jshint": "^2.13.6",
    "mocha": "^11.7.5"
  },
  "jshintConfig": {
    "bitwise": true,
    "curly": true,
    "eqeqeq": true,
    "forin": true,
    "freeze": true,
    "globalstrict": true,
    "immed": true,
    "indent": 4,
    "moz": true,
    "newcap": true,
    "noarg": true,
    "node": true,
    "noempty": true,
    "nonew": true,
    "trailing": true,
    "undef": true,
    "smarttabs": true,
    "strict": true,
    "validthis": true,
    "globals": {
      "describe": false,
      "it": false,
      "before": false,
      "beforeEach": false,
      "after": false,
      "afterEach": false
    },
    "esversion": 6
  }
}
