{
  "name": "markdown-diagram",
  "version": "0.1.1",
  "description": "generate diagrams from markdown documents",
  "main": "./src/main",
  "bin": {
    "markdown-diagram": "./bin/markdown-diagram"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/benjamine/markdown-diagram.git"
  },
  "homepage": "http://benjamine.github.io/markdown-diagram",
  "scripts": {
    "bundle": "webpack",
    "lint": "eslint . --ext .js",
    "lint-fix": "eslint . --ext .js --fix",
    "test": "eslint . --ext .js --ext .jsx && mocha",
    "watch": "nodemon --exec \"mocha\"",
    "start": "node dev-server/index",
    "cover": "eslint . --ext .js --ext .jsx && istanbul cover _mocha",
    "cover-report": "open coverage/lcov-report/index.html",
    "cover-publish": "istanbul cover _mocha --report lcovonly && codeclimate < coverage/lcov.info"
  },
  "keywords": [
    "markdown",
    "diagram",
    "svg",
    "draw",
    "graph"
  ],
  "author": "Benjamin Eidelman <beneidel@gmail.com>",
  "license": "MIT",
  "dependencies": {
    "babel-core": "^6.24.1",
    "babel-eslint": "^7.2.3",
    "babel-loader": "^7.0.0",
    "babel-polyfill": "^6.23.0",
    "babel-preset-es2015": "^6.24.1",
    "babel-preset-stage-2": "^6.24.1",
    "babel-register": "^6.24.1",
    "cheerio": "^0.22.0",
    "commander": "^2.8.1",
    "lodash": "^4.17.4",
    "markdown-it": "^8.3.1",
    "markdown-it-anchor": "^4.0.0",
    "markdown-it-highlightjs": "^3.0.0",
    "viz.js": "^1.7.1"
  },
  "devDependencies": {
    "codeclimate-test-reporter": "^0.4.1",
    "copy-webpack-plugin": "^4.0.1",
    "eslint": "^3.19.0",
    "eslint-config-standard": "^10.2.1",
    "eslint-plugin-fp": "^2.3.0",
    "eslint-plugin-import": "^2.2.0",
    "eslint-plugin-node": "^4.2.2",
    "eslint-plugin-promise": "^3.5.0",
    "eslint-plugin-standard": "^3.0.1",
    "expect.js": "~0.3.1",
    "express": "^4.15.2",
    "gulp": "^3.8.8",
    "gulp-concat": "^2.6.0",
    "gulp-newer": "^1.3.0",
    "gulp-wrap": "^0.13.0",
    "istanbul": "^0.4.5",
    "nodemon": "^1.11.0",
    "webpack": "^2.4.1",
    "webpack-dev-middleware": "^1.10.2",
    "webpack-visualizer-plugin": "^0.1.11"
  },
  "testling": {
    "harness": "mocha",
    "files": "test/index.js",
    "scripts": [
      "build/markdown-diagram.js"
    ],
    "browsers": [
      "ie/8..latest",
      "chrome/27..latest",
      "firefox/22..latest",
      "safari/5.1..latest",
      "opera/12..latest",
      "iphone/6..latest",
      "ipad/6..latest",
      "android-browser/4.2..latest"
    ]
  }
}
