{
  "_args": [
    [
      {
        "raw": "registry-auth-token@^3.0.1",
        "scope": null,
        "escapedName": "registry-auth-token",
        "name": "registry-auth-token",
        "rawSpec": "^3.0.1",
        "spec": ">=3.0.1 <4.0.0",
        "type": "range"
      },
      "/home/zkochan/src/pnpm/packages/pnpm/node_modules/package-json"
    ]
  ],
  "_from": "registry-auth-token@>=3.0.1 <4.0.0",
  "_id": "registry-auth-token@3.3.2",
  "_inCache": true,
  "_location": "/registry-auth-token",
  "_nodeVersion": "8.9.1",
  "_npmOperationalInternal": {
    "host": "s3://npm-registry-packages",
    "tmp": "tmp/registry-auth-token-3.3.2.tgz_1516955851244_0.6372003757860512"
  },
  "_npmUser": {
    "name": "rexxars",
    "email": "rexxars@gmail.com"
  },
  "_npmVersion": "5.6.0",
  "_phantomChildren": {},
  "_requested": {
    "raw": "registry-auth-token@^3.0.1",
    "scope": null,
    "escapedName": "registry-auth-token",
    "name": "registry-auth-token",
    "rawSpec": "^3.0.1",
    "spec": ">=3.0.1 <4.0.0",
    "type": "range"
  },
  "_requiredBy": [
    "/package-json"
  ],
  "_resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-3.3.2.tgz",
  "_shasum": "851fd49038eecb586911115af845260eec983f20",
  "_shrinkwrap": null,
  "_spec": "registry-auth-token@^3.0.1",
  "_where": "/home/zkochan/src/pnpm/packages/pnpm/node_modules/package-json",
  "author": {
    "name": "Espen Hovlandsdal",
    "email": "espen@hovlandsdal.com"
  },
  "bugs": {
    "url": "https://github.com/rexxars/registry-auth-token/issues"
  },
  "dependencies": {
    "rc": "^1.1.6",
    "safe-buffer": "^5.0.1"
  },
  "description": "Get the auth token set for an npm registry (if any)",
  "devDependencies": {
    "istanbul": "^0.4.2",
    "mocha": "^3.3.0",
    "require-uncached": "^1.0.2",
    "standard": "^10.0.2"
  },
  "directories": {},
  "dist": {
    "integrity": "sha512-JL39c60XlzCVgNrO+qq68FoNb56w/m7JYvGR2jT5iR1xBrUA3Mfx5Twk5rqTThPmQKMWydGmq8oFtDlxfrmxnQ==",
    "shasum": "851fd49038eecb586911115af845260eec983f20",
    "tarball": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-3.3.2.tgz"
  },
  "gitHead": "a547c2f398fa4e60a7fb9e1ed1a77600ddd2259d",
  "homepage": "https://github.com/rexxars/registry-auth-token#readme",
  "keywords": [
    "npm",
    "conf",
    "config",
    "npmconf",
    "registry",
    "auth",
    "token",
    "authtoken"
  ],
  "license": "MIT",
  "main": "index.js",
  "maintainers": [
    {
      "name": "leipert",
      "email": "git@leipert.io"
    },
    {
      "name": "rexxars",
      "email": "rexxars@gmail.com"
    },
    {
      "name": "zkochan",
      "email": "zoltan.kochan@gmail.com"
    }
  ],
  "name": "registry-auth-token",
  "optionalDependencies": {},
  "readme": "# registry-auth-token\n\n[![npm version](http://img.shields.io/npm/v/registry-auth-token.svg?style=flat-square)](http://browsenpm.org/package/registry-auth-token)[![Build Status](http://img.shields.io/travis/rexxars/registry-auth-token/master.svg?style=flat-square)](https://travis-ci.org/rexxars/registry-auth-token)\n\nGet the auth token set for an npm registry from `.npmrc`. Also allows fetching the configured registry URL for a given npm scope.\n\n## Installing\n\n```\nnpm install --save registry-auth-token\n```\n\n## Usage\n\nReturns an object containing `token` and `type`, or `undefined` if no token can be found. `type` can be either `Bearer` or `Basic`.\n\n```js\nvar getAuthToken = require('registry-auth-token')\nvar getRegistryUrl = require('registry-auth-token/registry-url')\n\n// Get auth token and type for default `registry` set in `.npmrc`\nconsole.log(getAuthToken()) // {token: 'someToken', type: 'Bearer'}\n\n// Get auth token for a specific registry URL\nconsole.log(getAuthToken('//registry.foo.bar'))\n\n// Find the registry auth token for a given URL (with deep path):\n// If registry is at `//some.host/registry`\n// URL passed is `//some.host/registry/deep/path`\n// Will find token the closest matching path; `//some.host/registry`\nconsole.log(getAuthToken('//some.host/registry/deep/path', {recursive: true}))\n\n// Find the configured registry url for scope `@foobar`.\n// Falls back to the global registry if not defined.\nconsole.log(getRegistryUrl('@foobar'))\n\n// Use the npm config that is passed in\nconsole.log(getRegistryUrl('http://registry.foobar.eu/', {\n  npmrc: {\n    'registry': 'http://registry.foobar.eu/',\n    '//registry.foobar.eu/:_authToken': 'qar'\n  }\n}))\n```\n\n## Return value\n\n```js\n// If auth info can be found:\n{token: 'someToken', type: 'Bearer'}\n\n// Or:\n{token: 'someOtherToken', type: 'Basic'}\n\n// Or, if nothing is found:\nundefined\n```\n\n## Security\n\nPlease be careful when using this. Leaking your auth token is dangerous.\n\n## License\n\nMIT-licensed. See LICENSE.\n",
  "readmeFilename": "README.md",
  "repository": {
    "type": "git",
    "url": "git+ssh://git@github.com/rexxars/registry-auth-token.git"
  },
  "scripts": {
    "coverage": "istanbul cover _mocha",
    "posttest": "standard",
    "test": "mocha"
  },
  "standard": {
    "ignore": [
      "coverage/**"
    ]
  },
  "version": "3.3.2"
}
