{
  "_args": [
    [
      {
        "raw": "pnpm-list@^2.0.0",
        "scope": null,
        "escapedName": "pnpm-list",
        "name": "pnpm-list",
        "rawSpec": "^2.0.0",
        "spec": ">=2.0.0 <3.0.0",
        "type": "range"
      },
      "/home/zkochan/src/pnpm/pnpm"
    ]
  ],
  "_from": "pnpm-list@>=2.0.0 <3.0.0",
  "_id": "pnpm-list@2.0.1",
  "_inCache": true,
  "_location": "/pnpm-list",
  "_nodeVersion": "8.9.4",
  "_npmOperationalInternal": {
    "host": "s3://npm-registry-packages",
    "tmp": "tmp/pnpm-list-2.0.1.tgz_1515707724358_0.4926212385762483"
  },
  "_npmUser": {
    "name": "zkochan",
    "email": "z@kochan.io"
  },
  "_npmVersion": "5.6.0",
  "_phantomChildren": {
    "graceful-fs": "4.1.11",
    "mkdirp-promise": "5.0.1",
    "ramda": "0.25.0",
    "signal-exit": "3.0.2",
    "util.promisify": "1.0.0"
  },
  "_requested": {
    "raw": "pnpm-list@^2.0.0",
    "scope": null,
    "escapedName": "pnpm-list",
    "name": "pnpm-list",
    "rawSpec": "^2.0.0",
    "spec": ">=2.0.0 <3.0.0",
    "type": "range"
  },
  "_requiredBy": [
    "/"
  ],
  "_resolved": "https://registry.npmjs.org/pnpm-list/-/pnpm-list-2.0.1.tgz",
  "_shasum": "39c4ad7c06c2b127f81c9378b29c3671850ba0e1",
  "_shrinkwrap": null,
  "_spec": "pnpm-list@^2.0.0",
  "_where": "/home/zkochan/src/pnpm/pnpm",
  "author": {
    "name": "Zoltan Kochan",
    "email": "z@kochan.io",
    "url": "https://www.kochan.io/"
  },
  "bugs": {
    "url": "https://github.com/pnpm/pnpm-list/issues"
  },
  "dependencies": {
    "@types/archy": "^0.0.31",
    "@types/node": "^9.3.0",
    "@types/ramda": "^0.25.0",
    "archy": "^1.0.0",
    "chalk": "^2.3.0",
    "dependencies-hierarchy": "^2.0.0",
    "npm-package-arg": "^6.0.0",
    "p-limit": "^1.1.0",
    "ramda": "^0.25.0",
    "read-package-json": "^2.0.12",
    "thenify": "^3.3.0"
  },
  "description": "List installed packages in a symlinked `node_modules`",
  "devDependencies": {
    "@pnpm/logger": "^1.0.0",
    "@types/common-tags": "^1.2.5",
    "@types/tape": "^4.2.30",
    "common-tags": "^1.4.0",
    "mos": "^2.0.0-alpha.3",
    "mos-plugin-readme": "^1.0.4",
    "package-preview": "^1.0.0",
    "tape": "^4.7.0",
    "ts-node": "^4.0.0",
    "tslint": "^5.8.0",
    "typescript": "^2.5.3"
  },
  "directories": {},
  "dist": {
    "integrity": "sha512-i25BBw812skLMy6WtQ5Fj5dVXGuYDmeJQz/F+kwvObu5CC3SSEpe1X+v5g5qCFn1AEtl82rWrvAx28IdBLKaMw==",
    "shasum": "39c4ad7c06c2b127f81c9378b29c3671850ba0e1",
    "tarball": "https://registry.npmjs.org/pnpm-list/-/pnpm-list-2.0.1.tgz"
  },
  "engines": {
    "node": ">=4"
  },
  "files": [
    "lib"
  ],
  "gitHead": "9a5230af58ccb2ca5093f5dc27515de6d1c7f365",
  "greenkeeper": {
    "ignore": [
      "dependencies-hierarchy"
    ]
  },
  "homepage": "https://github.com/pnpm/pnpm-list#readme",
  "keywords": [
    "pnpm",
    "list",
    "ls"
  ],
  "license": "MIT",
  "main": "lib/index.js",
  "maintainers": [
    {
      "name": "zkochan",
      "email": "zoltan.kochan@gmail.com"
    }
  ],
  "mos": {
    "plugins": [
      "readme"
    ],
    "installation": {
      "useShortAlias": true
    }
  },
  "name": "pnpm-list",
  "optionalDependencies": {},
  "readme": "# pnpm-list\n\n> List installed packages in a symlinked \\`node_modules\\`\n\n<!--@shields('npm', 'travis')-->\n[![npm version](https://img.shields.io/npm/v/pnpm-list.svg)](https://www.npmjs.com/package/pnpm-list) [![Build Status](https://img.shields.io/travis/pnpm/pnpm-list/master.svg)](https://travis-ci.org/pnpm/pnpm-list)\n<!--/@-->\n\n## Install\n\nInstall it via npm.\n\n    npm install pnpm-list\n\n## Usage\n\n<!--@example('./example/index.js')-->\n```js\n'use strict'\nconst pnpmList = require('pnpm-list').default\n\npnpmList(__dirname, {depth: 2})\n  .then(output => {\n    console.log(output)\n    //> pnpm-list@0.0.1 /home/zkochan/src/pnpm/pnpm-list/example\n    //  └─┬ write-pkg@3.1.0\n    //    ├─┬ sort-keys@2.0.0\n    //    │ └── is-plain-obj@1.1.0\n    //    └─┬ write-json-file@2.2.0\n    //      ├── detect-indent@5.0.0\n    //      ├── graceful-fs@4.1.11\n    //      ├── make-dir@1.0.0\n    //      ├── pify@2.3.0\n    //      ├── sort-keys@1.1.2\n    //      └── write-file-atomic@2.1.0\n  })\n```\n<!--/@-->\n\n## API\n\n### default: `list(path, [opts]): Promise<string>`\n\nReturns a string output similar to the `npm ls` but for [pnpm](github.com/pnpm/pnpm).\n\n### Arguments\n\n* `path` - *String* - path to the project\n* `[opts.depth]` - *number* - `0` by default. Max display depth of the dependency tree.\n* `[opts.only]` - *dev | prod* - `null` by default. Display only the dependency tree for packages in `devDependencies` or `dependencies`.\n* `[opts.long]` - *Boolean* - `false` by default. If true, show extended information.\n* `[opts.parseable]` - *Boolean* - `false` by default. Show parseable output instead of tree view.\n\n### `forPackages(packages, path, [opts]): Promise<string>`\n\nReturns a string output similar to the `npm ls [<@scope>/]<pkg> ...` but for [pnpm](github.com/pnpm/pnpm).\n\n### Arguments\n\n* `packages` - *String[]* - an array of `name@version-range` identifiers, which will limit the results to only the paths to the packages named.\n* `path` - *String* - path to the project\n* `[opts.depth]` - *number* - `0` by default. Max display depth of the dependency tree.\n* `[opts.only]` - *dev | prod* - `null` by default. Display only the dependency tree for packages in `devDependencies` or `dependencies`.\n* `[opts.long]` - *Boolean* - `false` by default. If true, show extended information.\n* `[opts.parseable]` - *Boolean* - `false` by default. Show parseable output instead of tree view.\n\n## License\n\n[MIT](./LICENSE) © [Zoltan Kochan](https://www.kochan.io/)\n",
  "readmeFilename": "README.md",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/pnpm/pnpm-list.git"
  },
  "scripts": {
    "fix": "tslint -c tslint.json --project . --fix",
    "lint": "tslint -c tslint.json --project .",
    "md": "tsc && mos",
    "prepublishOnly": "tsc",
    "test": "npm run lint && preview && ts-node test --type-check",
    "tsc": "tsc"
  },
  "typings": "lib/index.d.ts",
  "version": "2.0.1"
}
