{
  "name": "vfile",
  "version": "1.1.0",
  "description": "Virtual file format for text processing",
  "license": "MIT",
  "keywords": [
    "virtual",
    "file",
    "text",
    "processing",
    "message",
    "warning",
    "error",
    "mdast",
    "retext"
  ],
  "dependencies": {},
  "repository": "wooorm/vfile",
  "author": "Titus Wormer <tituswormer@gmail.com>",
  "files": [
    "index.js"
  ],
  "devDependencies": {
    "browserify": "^11.0.0",
    "eslint": "^1.0.0",
    "esmangle": "^1.0.0",
    "istanbul": "^0.3.0",
    "jscs": "^2.0.0",
    "jscs-jsdoc": "^1.0.0",
    "mdast": "^1.0.0",
    "mdast-comment-config": "^1.0.0",
    "mdast-github": "^1.0.0",
    "mdast-lint": "^1.0.0",
    "mdast-man": "^1.0.0",
    "mdast-toc": "^1.0.0",
    "mdast-validate-links": "^1.0.0",
    "mocha": "^2.0.0"
  },
  "scripts": {
    "test-api": "mocha --check-leaks test.js",
    "test-coverage": "istanbul cover _mocha -- test.js",
    "test-travis": "npm run test-coverage",
    "test": "npm run test-api",
    "lint-api": "eslint .",
    "lint-style": "jscs --reporter inline .",
    "lint": "npm run lint-api && npm run lint-style",
    "make": "npm run lint && npm run test-coverage",
    "build-md": "mdast . --quiet",
    "build-bundle": "browserify index.js -s VFile > vfile.js",
    "postbuild-bundle": "esmangle vfile.js > vfile.min.js",
    "build": "npm run build-md && npm run build-bundle"
  }
}
