{
  "name": "fastmatter",
  "version": "2.1.1",
  "description": "A fast frontmatter parser. Supports both string and stream inputs.",
  "author": "Lim Yuan Qing",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/yuanqing/fastmatter"
  },
  "dependencies": {
    "js-yaml": "^3.13.0",
    "split": "^1.0.1",
    "stream-combiner": "^0.2.2",
    "through2": "^3.0.1"
  },
  "devDependencies": {
    "benchmark": "^2.1.4",
    "concat-stream": "^2.0.0",
    "front-matter": "^3.0.1",
    "glob": "^7.1.3",
    "husky": "^1.3.1",
    "lint-staged": "^8.1.5",
    "nyc": "^13.3.0",
    "prettier-standard": "^9.1.1",
    "rimraf": "^2.6.3",
    "standard": "^12.0.1",
    "tape": "^4.10.1",
    "yaml-front-matter": "^4.0.0"
  },
  "scripts": {
    "benchmark": "node benchmark/index.js",
    "clean": "rimraf '*.log' .nyc_output coverage",
    "coverage": "yarn clean && nyc --reporter=html --reporter=lcov --reporter=text npm test",
    "fix": "prettier-standard index.js 'benchmark/**/*.js' 'example/**/*.js'",
    "lint": "standard index.js 'benchmark/**/*.js' 'example/**/*.js'",
    "test": "tape 'test/*.js'"
  },
  "lint-staged": {
    "*.js": [
      "standard",
      "git add"
    ]
  },
  "files": [
    "index.js"
  ],
  "keywords": [
    "document",
    "front-matter",
    "frontmatter",
    "markdown",
    "parser",
    "static",
    "stream",
    "text",
    "yaml"
  ]
}
