{
  "name": "advanced-marked",
  "description": "A markdown parser built for speed, support custom markdown grammar, based on marked.js",
  "author": "Chen yuan",
  "version": "0.1.2",
  "main": "./dist/index.js",
  "bin": "./bin/marked",
  "man": "./man/marked.1",
  "files": [
    "bin/",
    "lib/",
    "dist/",
    "man/"
  ],
  "npmName": "advanced-marked",
  "npmFileMap": [
    {
      "basePath": "/dist/",
      "files": [
        "*.js"
      ]
    }
  ],
  "repository": "git://github.com/92hackers/marked.git",
  "homepage": "http://github.com/92hackers/marked/",
  "bugs": {
    "url": "http://github.com/92hackers/marked/issues"
  },
  "license": "MIT",
  "keywords": [
    "markdown",
    "markup",
    "html"
  ],
  "tags": [
    "markdown",
    "markup",
    "html"
  ],
  "devDependencies": {
    "@babel/cli": "^7.4.4",
    "@babel/core": "^7.4.5",
    "@babel/plugin-proposal-class-properties": "^7.4.4",
    "@babel/plugin-syntax-dynamic-import": "^7.2.0",
    "@babel/plugin-transform-modules-commonjs": "^7.4.4",
    "@babel/preset-env": "^7.4.5",
    "@babel/preset-stage-2": "^7.0.0",
    "@markedjs/html-differ": "^2.0.1",
    "babel-eslint": "^10.0.2",
    "babel-plugin-add-module-exports": "^1.0.2",
    "cheerio": "^1.0.0-rc.3",
    "commonmark": "0.x",
    "eslint": "^5.16.0",
    "eslint-config-airbnb-base": "^13.2.0",
    "eslint-config-standard": "^12.0.0",
    "eslint-plugin-import": "^2.17.2",
    "eslint-plugin-node": "^8.0.1",
    "eslint-plugin-promise": "^4.1.1",
    "eslint-plugin-standard": "^4.0.0",
    "eslint-plugin-vuln-regex-detector": "^1.0.4",
    "front-matter": "^3.0.2",
    "jasmine": "^3.4.0",
    "markdown": "0.x",
    "markdown-it": "8.x",
    "node-fetch": "^2.3.0",
    "uglify-js": "^3.5.8"
  },
  "scripts": {
    "compile": "babel lib --out-dir dist",
    "test": "jasmine --config=jasmine.json",
    "test:unit": "npm test -- test/unit/**/*-spec.js",
    "test:specs": "npm test -- test/specs/**/*-spec.js",
    "test:lint": "eslint bin/marked .",
    "test:redos": "eslint --plugin vuln-regex-detector --rule '\"vuln-regex-detector/no-vuln-regex\": 2' lib/marked.js",
    "test:node4": "npx node@4 ./node_modules/jasmine/bin/jasmine.js --config=jasmine.json",
    "test:update": "node test/update-specs.js",
    "bench": "node test/bench.js",
    "lint": "eslint --fix bin/marked .",
    "build": "uglifyjs lib/marked.js -cm  --comments /Copyright/ -o marked.min.js",
    "preversion": "npm run build && (git diff --quiet || git commit -am 'minify')",
    "prepublishOnly": "yarn compile"
  },
  "engines": {
    "node": ">=0.10.0"
  }
}
