{
  "_args": [
    [
      {
        "raw": "atob@^2.1.1",
        "scope": null,
        "escapedName": "atob",
        "name": "atob",
        "rawSpec": "^2.1.1",
        "spec": ">=2.1.1 <3.0.0",
        "type": "range"
      },
      "/home/zkochan/src/pnpm/packages/pnpm/node_modules/source-map-resolve"
    ]
  ],
  "_from": "atob@>=2.1.1 <3.0.0",
  "_id": "atob@2.1.2",
  "_inCache": true,
  "_location": "/atob",
  "_nodeVersion": "10.6.0",
  "_npmOperationalInternal": {
    "host": "s3://npm-registry-packages",
    "tmp": "tmp/atob_2.1.2_1534587539650_0.5963110548313084"
  },
  "_npmUser": {
    "name": "coolaj86",
    "email": "coolaj86@gmail.com"
  },
  "_npmVersion": "6.1.0",
  "_phantomChildren": {},
  "_requested": {
    "raw": "atob@^2.1.1",
    "scope": null,
    "escapedName": "atob",
    "name": "atob",
    "rawSpec": "^2.1.1",
    "spec": ">=2.1.1 <3.0.0",
    "type": "range"
  },
  "_requiredBy": [
    "/source-map-resolve"
  ],
  "_resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz",
  "_shasum": "6d9517eb9e030d2436666651e86bd9f6f13533c9",
  "_shrinkwrap": null,
  "_spec": "atob@^2.1.1",
  "_where": "/home/zkochan/src/pnpm/packages/pnpm/node_modules/source-map-resolve",
  "author": {
    "name": "AJ ONeal",
    "email": "coolaj86@gmail.com",
    "url": "https://coolaj86.com"
  },
  "bin": {
    "atob": "bin/atob.js"
  },
  "browser": "browser-atob.js",
  "dependencies": {},
  "description": "atob for Node.JS and Linux / Mac / Windows CLI (it's a one-liner)",
  "devDependencies": {},
  "directories": {},
  "dist": {
    "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==",
    "shasum": "6d9517eb9e030d2436666651e86bd9f6f13533c9",
    "tarball": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz",
    "fileCount": 9,
    "unpackedSize": 36200,
    "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbd/KUCRA9TVsSAnZWagAAWT8P/3+yl8XFjF0rp1EFhKXr\nwiBksq0aT2A9GHF0nWtytC3MAmn6r9qmY1lmHRoDgwUxQDdrxkYhvljvEFlV\nkzzCnbMOQnTtJubX2lTHG1OLQeUz4DoE7jLEEtnA9UCj5gAZo9eAI+9F4v97\nfRWKlFIJS+miXsLODPww7PAgJKMYBaOkEs6hLW8CIrssIlrdjHAT26ZTYZhY\nFCOvmpT2Mg4BbCE61k8arLNPCqGq7Joh4oJ7BOdosXWnd0snfK4JsXzPFMu8\nLEasrWWAcTJP23k9tDkCn4wtGzt2ZSqRwHXpT7/jEL3GnycctMtefqJdZ6qb\nmRV7/KUVMhGAUnhm5sb0v50NrYx5vO7CGYQqv6IYyNRVbuq3zKjESneyjHzk\nN4Up8SW5UQ8eN+WBRoNfQiOheAk9bdEc02RguuNURng/Pjd9S5xILvg42nfa\np154xFSlNfJASYmH0uDWAzqW+7XZDLxGZOxEuxC52B/aRB3+oZIH/dZOwEw4\nwcQfIzK6421MzIrmBxgU8rL7WCjov4d1spI91jS6bhV6OGsij564gKqbufJq\nHbQUnQeV4PAfU1tLOkUlLxdatt6JL/ekaz0MIE9m35pRf+FRUIbMacJkdHd8\nCftoLutPQ4NR6Ce36ylhZOgoW9tcKUsaTnrwq8M12Y1TAqzHSYKPaVnqMSXN\ngBBD\r\n=TkXF\r\n-----END PGP SIGNATURE-----\r\n"
  },
  "engines": {
    "node": ">= 4.5.0"
  },
  "gitHead": "755cfea7899074a17e83a248c7cfc3960d956d82",
  "homepage": "https://git.coolaj86.com/coolaj86/atob.js.git",
  "keywords": [
    "atob",
    "browser"
  ],
  "license": "(MIT OR Apache-2.0)",
  "main": "node-atob.js",
  "maintainers": [
    {
      "name": "coolaj86",
      "email": "coolaj86@gmail.com"
    }
  ],
  "name": "atob",
  "optionalDependencies": {},
  "readme": "atob\n===\n\n| **atob**\n| [btoa](https://git.coolaj86.com/coolaj86/btoa.js)\n| [unibabel.js](https://git.coolaj86.com/coolaj86/unibabel.js)\n| Sponsored by [ppl](https://ppl.family)\n\nUses `Buffer` to emulate the exact functionality of the browser's atob.\n\nNote: Unicode may be handled incorrectly (like the browser).\n\nIt turns base64-encoded <strong>a</strong>scii data back **to** <strong>b</strong>inary.\n\n```javascript\n(function () {\n  \"use strict\";\n\n  var atob = require('atob');\n  var b64 = \"SGVsbG8sIFdvcmxkIQ==\";\n  var bin = atob(b64);\n\n  console.log(bin); // \"Hello, World!\"\n}());\n```\n\n### Need Unicode and Binary Support in the Browser?\n\nCheck out [unibabel.js](https://git.coolaj86.com/coolaj86/unibabel.js)\n\nChangelog\n=======\n\n  * v2.1.0 address a few issues and PRs, update URLs\n  * v2.0.0 provide browser version for ios web workers\n  * v1.2.0 provide (empty) browser version\n  * v1.1.3 add MIT license\n  * v1.1.2 node only\n\nLICENSE\n=======\n\nCode copyright 2012-2018 AJ ONeal\n\nDual-licensed MIT and Apache-2.0\n\nDocs copyright 2012-2018 AJ ONeal\n\nDocs released under [Creative Commons](https://git.coolaj86.com/coolaj86/atob.js/blob/master/LICENSE.DOCS).\n",
  "readmeFilename": "README.md",
  "repository": {
    "type": "git",
    "url": "git://git.coolaj86.com/coolaj86/atob.js.git"
  },
  "version": "2.1.2"
}
