{
  "_args": [
    [
      {
        "raw": "load-json-file@^4.0.0",
        "scope": null,
        "escapedName": "load-json-file",
        "name": "load-json-file",
        "rawSpec": "^4.0.0",
        "spec": ">=4.0.0 <5.0.0",
        "type": "range"
      },
      "/home/zkochan/src/pnpm/pnpm"
    ]
  ],
  "_from": "load-json-file@>=4.0.0 <5.0.0",
  "_id": "load-json-file@4.0.0",
  "_inCache": true,
  "_location": "/load-json-file",
  "_nodeVersion": "4.8.4",
  "_npmOperationalInternal": {
    "host": "s3://npm-registry-packages",
    "tmp": "tmp/load-json-file-4.0.0.tgz_1509782229082_0.7325113639235497"
  },
  "_npmUser": {
    "name": "sindresorhus",
    "email": "sindresorhus@gmail.com"
  },
  "_npmVersion": "2.15.11",
  "_phantomChildren": {},
  "_requested": {
    "raw": "load-json-file@^4.0.0",
    "scope": null,
    "escapedName": "load-json-file",
    "name": "load-json-file",
    "rawSpec": "^4.0.0",
    "spec": ">=4.0.0 <5.0.0",
    "type": "range"
  },
  "_requiredBy": [
    "/",
    "/@pnpm/default-resolver/@pnpm/npm-resolver",
    "/@pnpm/outdated/@pnpm/npm-resolver",
    "/@pnpm/server/@pnpm/package-requester",
    "/@pnpm/server/@pnpm/package-requester/@pnpm/check-package",
    "/find-packages/read-pkg",
    "/package-store",
    "/package-store/@pnpm/package-requester",
    "/package-store/@pnpm/package-requester/@pnpm/check-package",
    "/supi",
    "/supi/@pnpm/check-package",
    "/supi/@pnpm/package-requester"
  ],
  "_resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz",
  "_shasum": "2f5f45ab91e33216234fd53adab668eb4ec0993b",
  "_shrinkwrap": null,
  "_spec": "load-json-file@^4.0.0",
  "_where": "/home/zkochan/src/pnpm/pnpm",
  "author": {
    "name": "Sindre Sorhus",
    "email": "sindresorhus@gmail.com",
    "url": "sindresorhus.com"
  },
  "bugs": {
    "url": "https://github.com/sindresorhus/load-json-file/issues"
  },
  "dependencies": {
    "graceful-fs": "^4.1.2",
    "parse-json": "^4.0.0",
    "pify": "^3.0.0",
    "strip-bom": "^3.0.0"
  },
  "description": "Read and parse a JSON file",
  "devDependencies": {
    "ava": "*",
    "xo": "*"
  },
  "directories": {},
  "dist": {
    "shasum": "2f5f45ab91e33216234fd53adab668eb4ec0993b",
    "tarball": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz"
  },
  "engines": {
    "node": ">=4"
  },
  "files": [
    "index.js"
  ],
  "gitHead": "633ec57b4d10a4bcc0e5fb63296ff9e6e68924da",
  "homepage": "https://github.com/sindresorhus/load-json-file#readme",
  "keywords": [
    "read",
    "json",
    "parse",
    "file",
    "fs",
    "graceful",
    "load"
  ],
  "license": "MIT",
  "maintainers": [
    {
      "name": "sindresorhus",
      "email": "sindresorhus@gmail.com"
    }
  ],
  "name": "load-json-file",
  "optionalDependencies": {},
  "readme": "# load-json-file [![Build Status](https://travis-ci.org/sindresorhus/load-json-file.svg?branch=master)](https://travis-ci.org/sindresorhus/load-json-file)\n\n> Read and parse a JSON file\n\n[Strips UTF-8 BOM](https://github.com/sindresorhus/strip-bom), uses [`graceful-fs`](https://github.com/isaacs/node-graceful-fs), and throws more [helpful JSON errors](https://github.com/sindresorhus/parse-json).\n\n\n## Install\n\n```\n$ npm install --save load-json-file\n```\n\n\n## Usage\n\n```js\nconst loadJsonFile = require('load-json-file');\n\nloadJsonFile('foo.json').then(json => {\n\tconsole.log(json);\n\t//=> {foo: true}\n});\n```\n\n\n## API\n\n### loadJsonFile(filepath)\n\nReturns a promise for the parsed JSON.\n\n### loadJsonFile.sync(filepath)\n\nReturns the parsed JSON.\n\n\n## Related\n\n- [write-json-file](https://github.com/sindresorhus/write-json-file) - Stringify and write JSON to a file atomically\n\n\n## License\n\nMIT © [Sindre Sorhus](https://sindresorhus.com)\n",
  "readmeFilename": "readme.md",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/sindresorhus/load-json-file.git"
  },
  "scripts": {
    "test": "xo && ava"
  },
  "version": "4.0.0",
  "xo": {
    "esnext": true
  }
}
