{
  "_args": [
    [
      {
        "raw": "neat-csv@^2.1.0",
        "scope": null,
        "escapedName": "neat-csv",
        "name": "neat-csv",
        "rawSpec": "^2.1.0",
        "spec": ">=2.1.0 <3.0.0",
        "type": "range"
      },
      "/home/zkochan/src/pnpm/packages/pnpm/node_modules/tasklist"
    ]
  ],
  "_from": "neat-csv@>=2.1.0 <3.0.0",
  "_id": "neat-csv@2.1.0",
  "_inCache": true,
  "_location": "/neat-csv",
  "_nodeVersion": "4.4.2",
  "_npmOperationalInternal": {
    "host": "packages-12-west.internal.npmjs.com",
    "tmp": "tmp/neat-csv-2.1.0.tgz_1461858827287_0.19804027141071856"
  },
  "_npmUser": {
    "name": "sindresorhus",
    "email": "sindresorhus@gmail.com"
  },
  "_npmVersion": "2.15.0",
  "_phantomChildren": {
    "from2": "2.3.0",
    "object-assign": "4.1.1",
    "pinkie-promise": "2.0.1"
  },
  "_requested": {
    "raw": "neat-csv@^2.1.0",
    "scope": null,
    "escapedName": "neat-csv",
    "name": "neat-csv",
    "rawSpec": "^2.1.0",
    "spec": ">=2.1.0 <3.0.0",
    "type": "range"
  },
  "_requiredBy": [
    "/tasklist"
  ],
  "_resolved": "https://registry.npmjs.org/neat-csv/-/neat-csv-2.1.0.tgz",
  "_shasum": "06f58360c4c3b955bd467ddc85ae4511a3907a4c",
  "_shrinkwrap": null,
  "_spec": "neat-csv@^2.1.0",
  "_where": "/home/zkochan/src/pnpm/packages/pnpm/node_modules/tasklist",
  "author": {
    "name": "Sindre Sorhus",
    "email": "sindresorhus@gmail.com",
    "url": "sindresorhus.com"
  },
  "bugs": {
    "url": "https://github.com/sindresorhus/neat-csv/issues"
  },
  "dependencies": {
    "csv-parser": "^1.6.0",
    "get-stream": "^2.1.0",
    "into-stream": "^2.0.0"
  },
  "description": "Fast CSV parser",
  "devDependencies": {
    "ava": "*",
    "xo": "*"
  },
  "directories": {},
  "dist": {
    "shasum": "06f58360c4c3b955bd467ddc85ae4511a3907a4c",
    "tarball": "https://registry.npmjs.org/neat-csv/-/neat-csv-2.1.0.tgz"
  },
  "engines": {
    "node": ">=4"
  },
  "files": [
    "index.js"
  ],
  "gitHead": "ab2a95d279e9af8e42cf08e23136c26bb5757f1c",
  "homepage": "https://github.com/sindresorhus/neat-csv#readme",
  "keywords": [
    "parse",
    "csv",
    "comma",
    "separated",
    "values",
    "tab",
    "delimiter",
    "separator",
    "text",
    "string",
    "str",
    "buffer",
    "stream",
    "parser"
  ],
  "license": "MIT",
  "maintainers": [
    {
      "name": "sindresorhus",
      "email": "sindresorhus@gmail.com"
    }
  ],
  "name": "neat-csv",
  "optionalDependencies": {},
  "readme": "# neat-csv [![Build Status](https://travis-ci.org/sindresorhus/neat-csv.svg?branch=master)](https://travis-ci.org/sindresorhus/neat-csv)\n\n> Fast CSV parser\n\nConvenience wrapper around the super-fast streaming [`csv-parser`](https://github.com/mafintosh/csv-parser) module. Use that one if you want streamed parsing.\n\n\n## Install\n\n```\n$ npm install --save neat-csv\n```\n\n\n## Usage\n\n```js\nconst neatCsv = require('neat-csv');\nconst csv = 'type,part\\nunicorn,horn\\nrainbow,pink';\n\nneatCsv(csv).then(data => {\n\tconsole.log(data);\n\t//=> [{type: 'unicorn', part: 'horn'}, {type: 'rainbow', part: 'pink'}]\n});\n```\n\n\n## API\n\n### neatCsv(input, [options])\n\nReturns a promise for an array with the parsed CSV.\n\n#### input\n\nType: `buffer`, `string`, `stream`\n\nCSV to parse.\n\n#### options\n\nType: `object`\n\nSee the `csv-parser` [options](https://github.com/mafintosh/csv-parser#usage).\n\n\n## License\n\nMIT © [Sindre Sorhus](https://sindresorhus.com)\n",
  "readmeFilename": "readme.md",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/sindresorhus/neat-csv.git"
  },
  "scripts": {
    "test": "xo && ava"
  },
  "version": "2.1.0",
  "xo": {
    "esnext": true
  }
}
