{
  "_args": [
    [
      {
        "raw": "to-buffer@^1.1.0",
        "scope": null,
        "escapedName": "to-buffer",
        "name": "to-buffer",
        "rawSpec": "^1.1.0",
        "spec": ">=1.1.0 <2.0.0",
        "type": "range"
      },
      "/home/zkochan/src/pnpm/packages/pnpm/node_modules/tar-stream"
    ]
  ],
  "_from": "to-buffer@>=1.1.0 <2.0.0",
  "_id": "to-buffer@1.1.1",
  "_inCache": true,
  "_location": "/to-buffer",
  "_nodeVersion": "9.11.1",
  "_npmOperationalInternal": {
    "host": "s3://npm-registry-packages",
    "tmp": "tmp/to-buffer_1.1.1_1524754584618_0.8258302631612433"
  },
  "_npmUser": {
    "name": "mafintosh",
    "email": "mathiasbuus@gmail.com"
  },
  "_npmVersion": "5.6.0",
  "_phantomChildren": {},
  "_requested": {
    "raw": "to-buffer@^1.1.0",
    "scope": null,
    "escapedName": "to-buffer",
    "name": "to-buffer",
    "rawSpec": "^1.1.0",
    "spec": ">=1.1.0 <2.0.0",
    "type": "range"
  },
  "_requiredBy": [
    "/tar-stream"
  ],
  "_resolved": "https://registry.npmjs.org/to-buffer/-/to-buffer-1.1.1.tgz",
  "_shasum": "493bd48f62d7c43fcded313a03dcadb2e1213a80",
  "_shrinkwrap": null,
  "_spec": "to-buffer@^1.1.0",
  "_where": "/home/zkochan/src/pnpm/packages/pnpm/node_modules/tar-stream",
  "author": {
    "name": "Mathias Buus",
    "url": "@mafintosh"
  },
  "bugs": {
    "url": "https://github.com/mafintosh/to-buffer/issues"
  },
  "dependencies": {},
  "description": "Pass in a string, get a buffer back. Pass in a buffer, get the same buffer back",
  "devDependencies": {
    "standard": "^6.0.5",
    "tape": "^4.4.0"
  },
  "directories": {},
  "dist": {
    "integrity": "sha512-lx9B5iv7msuFYE3dytT+KE5tap+rNYw+K4jVkb9R/asAb+pbBSM17jtunHplhBe6RRJdZx3Pn2Jph24O32mOVg==",
    "shasum": "493bd48f62d7c43fcded313a03dcadb2e1213a80",
    "tarball": "https://registry.npmjs.org/to-buffer/-/to-buffer-1.1.1.tgz",
    "fileCount": 6,
    "unpackedSize": 3254,
    "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa4eiZCRA9TVsSAnZWagAA8LgQAJ5GG58jcIfPKs/HYLqA\n2YKCnomJUKJyazkUHaKhm+0yHLfQosxFnWM0W+GrIYtotUunuoczOX1Ba1dc\nqC5QVRUg2/Zvwu/TC9d6QVc+To8bQaGexp6rG9F6MX0GcUD2Huv6JdFyT9Wu\nC88fRK8QCNQNP0BUOI5KkYZ/bsq3U8iXi1zDW9WmNORPrjM4pJhK+phzENM4\nuHXzCfVbF17mnIMIcqdA6+cORHHRCirs6oUruxgTgUmbXUG0mGgsIjfCzDdx\nPhrXNvqXzclxRxaoDYoGefa0gT0m08exrfOu7h9RAjHOYyGoXNzHyF9vkeZm\nc/2GnUgjVM3r7kugexMMqJ0dq6eJ/BmmgNJT42vDXXsvTRa1Q9qWzyJBMXvs\nZ/ssrllUspBAOAPFfDuKJ1n0nNl/MZg7HXFgwDDdmn2/ySm+XEDSM8xV0OJJ\nFkOhOu8jn5nZT22aaum21fvI63TStuiOC/tO01rT2xSuPf2i4pHgzxJoLPnq\nRaEig4ylwnT5nHLGwYr6kSYo7l0yneSIEpcxIUuLXj3GlcJMwHz77zXJsppu\nxtpHZjgEwQ+8jK0HJ8tDCE++W/v7p+klws17GBLZQl4YDQVqIJvFy+6YkuML\n/QVKEWXR59xUA/thIXtcyLC4ZIsZqjefE0EtRtNTpYNocMl76+o1Re5vwTbb\ntxDk\r\n=QAFc\r\n-----END PGP SIGNATURE-----\r\n"
  },
  "gitHead": "17a1aa27bfce0218979472cfe4776b50438e8857",
  "homepage": "https://github.com/mafintosh/to-buffer",
  "license": "MIT",
  "main": "index.js",
  "maintainers": [
    {
      "name": "mafintosh",
      "email": "mathiasbuus@gmail.com"
    }
  ],
  "name": "to-buffer",
  "optionalDependencies": {},
  "readme": "# to-buffer\n\nPass in a string, get a buffer back. Pass in a buffer, get the same buffer back.\n\n```\nnpm install to-buffer\n```\n\n[![build status](https://travis-ci.org/mafintosh/to-buffer.svg?branch=master)](https://travis-ci.org/mafintosh/to-buffer)\n\n## Usage\n\n``` js\nvar toBuffer = require('to-buffer')\nconsole.log(toBuffer('hi')) // <Buffer 68 69>\nconsole.log(toBuffer(Buffer('hi'))) // <Buffer 68 69>\nconsole.log(toBuffer('6869', 'hex')) // <Buffer 68 69>\nconsole.log(toBuffer(43)) // throws\n```\n\n## License\n\nMIT\n",
  "readmeFilename": "README.md",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/mafintosh/to-buffer.git"
  },
  "scripts": {
    "test": "standard && tape test.js"
  },
  "version": "1.1.1"
}
