{
  "name": "vfile",
  "version": "2.3.0",
  "description": "Virtual file format for text processing",
  "license": "MIT",
  "keywords": [
    "virtual",
    "file",
    "text",
    "processing",
    "message",
    "warning",
    "error",
    "remark",
    "retext"
  ],
  "repository": "vfile/vfile",
  "bugs": "https://github.com/vfile/vfile/issues",
  "author": "Titus Wormer <tituswormer@gmail.com> (http://wooorm.com)",
  "contributors": [
    "Titus Wormer <tituswormer@gmail.com> (http://wooorm.com)",
    "Brendan Abbott <brendan.abbott@temando.com>",
    "Denys Dovhan <email@denysdovhan.com>",
    "Kyle Mathews <mathews.kyle@gmail.com>",
    "Shinnosuke Watanabe <snnskwtnb@gmail.com>",
    "Sindre Sorhus <sindresorhus@gmail.com>"
  ],
  "files": [
    "core.js",
    "index.js"
  ],
  "dependencies": {
    "is-buffer": "^1.1.4",
    "replace-ext": "1.0.0",
    "unist-util-stringify-position": "^1.0.0",
    "vfile-message": "^1.0.0"
  },
  "devDependencies": {
    "browserify": "^14.0.0",
    "esmangle": "^1.0.0",
    "nyc": "^11.0.0",
    "remark-cli": "^4.0.0",
    "remark-preset-wooorm": "^3.0.0",
    "tape": "^4.4.0",
    "xo": "^0.18.0"
  },
  "scripts": {
    "build-md": "remark . -qfo",
    "build-bundle": "browserify index.js -s VFile > vfile.js",
    "build-mangle": "esmangle vfile.js > vfile.min.js",
    "build": "npm run build-md && npm run build-bundle && npm run build-mangle",
    "lint": "xo",
    "test-api": "node test",
    "test-coverage": "nyc --reporter lcov tape test.js",
    "test": "npm run build && npm run lint && npm run test-coverage"
  },
  "nyc": {
    "check-coverage": true,
    "lines": 100,
    "functions": 100,
    "branches": 100
  },
  "xo": {
    "space": true,
    "esnext": false,
    "rules": {
      "unicorn/no-new-buffer": "off"
    },
    "ignores": [
      "vfile.js"
    ]
  },
  "remarkConfig": {
    "plugins": [
      "preset-wooorm"
    ]
  }
}
