{
  "_args": [
    [
      {
        "raw": "json-parse-better-errors@^1.0.1",
        "scope": null,
        "escapedName": "json-parse-better-errors",
        "name": "json-parse-better-errors",
        "rawSpec": "^1.0.1",
        "spec": ">=1.0.1 <2.0.0",
        "type": "range"
      },
      "/home/zoltan/src/pnpm/pnpm/packages/pnpm/node_modules/read-package-json"
    ]
  ],
  "_from": "json-parse-better-errors@>=1.0.1 <2.0.0",
  "_id": "json-parse-better-errors@1.0.2",
  "_inCache": true,
  "_location": "/json-parse-better-errors",
  "_nodeVersion": "9.8.0",
  "_npmOperationalInternal": {
    "host": "s3://npm-registry-packages",
    "tmp": "tmp/json-parse-better-errors_1.0.2_1522422483234_0.4644493341437723"
  },
  "_npmUser": {
    "name": "zkat",
    "email": "npm@zkat.tech"
  },
  "_npmVersion": "6.0.0-next.0",
  "_phantomChildren": {},
  "_requested": {
    "raw": "json-parse-better-errors@^1.0.1",
    "scope": null,
    "escapedName": "json-parse-better-errors",
    "name": "json-parse-better-errors",
    "rawSpec": "^1.0.1",
    "spec": ">=1.0.1 <2.0.0",
    "type": "range"
  },
  "_requiredBy": [
    "/parse-json",
    "/read-package-json"
  ],
  "_resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz",
  "_shasum": "bb867cfb3450e69107c131d1c514bab3dc8bcaa9",
  "_shrinkwrap": null,
  "_spec": "json-parse-better-errors@^1.0.1",
  "_where": "/home/zoltan/src/pnpm/pnpm/packages/pnpm/node_modules/read-package-json",
  "author": {
    "name": "Kat Marchán",
    "email": "kzm@zkat.tech"
  },
  "bugs": {
    "url": "https://github.com/zkat/json-parse-better-errors/issues"
  },
  "config": {
    "nyc": {
      "exclude": [
        "node_modules/**",
        "test/**"
      ]
    }
  },
  "dependencies": {},
  "description": "JSON.parse with context information on error",
  "devDependencies": {
    "nyc": "^10.3.2",
    "standard": "^9.0.2",
    "standard-version": "^4.1.0",
    "tap": "^10.3.3",
    "weallbehave": "^1.2.0",
    "weallcontribute": "^1.0.8"
  },
  "directories": {},
  "dist": {
    "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==",
    "shasum": "bb867cfb3450e69107c131d1c514bab3dc8bcaa9",
    "tarball": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz",
    "fileCount": 5,
    "unpackedSize": 6702
  },
  "files": [
    "*.js"
  ],
  "gitHead": "0f36e75d0add7e247d84a34361c8c01abd6e22c8",
  "homepage": "https://github.com/zkat/json-parse-better-errors#readme",
  "keywords": [
    "JSON",
    "parser"
  ],
  "license": "MIT",
  "main": "index.js",
  "maintainers": [
    {
      "name": "zkat",
      "email": "kat@sykosomatic.org"
    }
  ],
  "name": "json-parse-better-errors",
  "optionalDependencies": {},
  "readme": "# json-parse-better-errors [![npm version](https://img.shields.io/npm/v/json-parse-better-errors.svg)](https://npm.im/json-parse-better-errors) [![license](https://img.shields.io/npm/l/json-parse-better-errors.svg)](https://npm.im/json-parse-better-errors) [![Travis](https://img.shields.io/travis/zkat/json-parse-better-errors.svg)](https://travis-ci.org/zkat/json-parse-better-errors) [![AppVeyor](https://ci.appveyor.com/api/projects/status/github/zkat/json-parse-better-errors?svg=true)](https://ci.appveyor.com/project/zkat/json-parse-better-errors) [![Coverage Status](https://coveralls.io/repos/github/zkat/json-parse-better-errors/badge.svg?branch=latest)](https://coveralls.io/github/zkat/json-parse-better-errors?branch=latest)\n\n[`json-parse-better-errors`](https://github.com/zkat/json-parse-better-errors) is a Node.js library for\ngetting nicer errors out of `JSON.parse()`, including context and position of the parse errors.\n\n## Install\n\n`$ npm install --save json-parse-better-errors`\n\n## Table of Contents\n\n* [Example](#example)\n* [Features](#features)\n* [Contributing](#contributing)\n* [API](#api)\n  * [`parse`](#parse)\n\n### Example\n\n```javascript\nconst parseJson = require('json-parse-better-errors')\n\nparseJson('\"foo\"')\nparseJson('garbage') // more useful error message\n```\n\n### Features\n\n* Like JSON.parse, but the errors are better.\n\n### Contributing\n\nThe npm team enthusiastically welcomes contributions and project participation! There's a bunch of things you can do if you want to contribute! The [Contributor Guide](CONTRIBUTING.md) has all the information you need for everything from reporting bugs to contributing entire new features. Please don't hesitate to jump in if you'd like to, or even ask us questions if something isn't clear.\n\nAll participants and maintainers in this project are expected to follow [Code of Conduct](CODE_OF_CONDUCT.md), and just generally be excellent to each other.\n\nPlease refer to the [Changelog](CHANGELOG.md) for project history details, too.\n\nHappy hacking!\n\n### API\n\n#### <a name=\"parse\"></a> `> parse(txt, ?reviver, ?context=20)`\n\nWorks just like `JSON.parse`, but will include a bit more information when an\nerror happens.\n",
  "readmeFilename": "README.md",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/zkat/json-parse-better-errors.git"
  },
  "scripts": {
    "postrelease": "npm publish && git push --follow-tags",
    "prerelease": "npm t",
    "pretest": "standard",
    "release": "standard-version -s",
    "test": "tap -J --coverage test/*.js",
    "update-coc": "weallbehave -o . && git add CODE_OF_CONDUCT.md && git commit -m 'docs(coc): updated CODE_OF_CONDUCT.md'",
    "update-contrib": "weallcontribute -o . && git add CONTRIBUTING.md && git commit -m 'docs(contributing): updated CONTRIBUTING.md'"
  },
  "version": "1.0.2"
}
