{
  "_args": [
    [
      {
        "raw": "process-exists@^3.0.0",
        "scope": null,
        "escapedName": "process-exists",
        "name": "process-exists",
        "rawSpec": "^3.0.0",
        "spec": ">=3.0.0 <4.0.0",
        "type": "range"
      },
      "/home/zkochan/src/pnpm/pnpm"
    ]
  ],
  "_from": "process-exists@>=3.0.0 <4.0.0",
  "_id": "process-exists@3.0.0",
  "_inCache": true,
  "_location": "/process-exists",
  "_nodeVersion": "8.2.1",
  "_npmOperationalInternal": {
    "host": "s3://npm-registry-packages",
    "tmp": "tmp/process-exists-3.0.0.tgz_1503879134935_0.4591879863291979"
  },
  "_npmUser": {
    "name": "sindresorhus",
    "email": "sindresorhus@gmail.com"
  },
  "_npmVersion": "5.3.0",
  "_phantomChildren": {},
  "_requested": {
    "raw": "process-exists@^3.0.0",
    "scope": null,
    "escapedName": "process-exists",
    "name": "process-exists",
    "rawSpec": "^3.0.0",
    "spec": ">=3.0.0 <4.0.0",
    "type": "range"
  },
  "_requiredBy": [
    "/"
  ],
  "_resolved": "https://registry.npmjs.org/process-exists/-/process-exists-3.0.0.tgz",
  "_shasum": "75cf6b47a12721c9b4c06880e091da95717ded81",
  "_shrinkwrap": null,
  "_spec": "process-exists@^3.0.0",
  "_where": "/home/zkochan/src/pnpm/pnpm",
  "author": {
    "name": "Sindre Sorhus",
    "email": "sindresorhus@gmail.com",
    "url": "sindresorhus.com"
  },
  "bugs": {
    "url": "https://github.com/sindresorhus/process-exists/issues"
  },
  "dependencies": {
    "ps-list": "^4.0.0"
  },
  "description": "Check if a process is running",
  "devDependencies": {
    "ava": "*",
    "noop-process": "^3.0.0",
    "xo": "*"
  },
  "directories": {},
  "dist": {
    "integrity": "sha512-MK0GMLNYLqmUAR+9g4chQgQLqtE5U4Pvg8xwkvxe/EyAjmOniT0sJCs0UeS4B+6mQJpNMibzxmht99fo87fO6Q==",
    "shasum": "75cf6b47a12721c9b4c06880e091da95717ded81",
    "tarball": "https://registry.npmjs.org/process-exists/-/process-exists-3.0.0.tgz"
  },
  "engines": {
    "node": ">=4"
  },
  "files": [
    "index.js"
  ],
  "gitHead": "b3ba904ded6c6cfd6cf464c11eb5aeb0441722af",
  "homepage": "https://github.com/sindresorhus/process-exists#readme",
  "keywords": [
    "process",
    "processes",
    "proc",
    "ps",
    "pid",
    "test",
    "testing",
    "exists",
    "running",
    "check"
  ],
  "license": "MIT",
  "maintainers": [
    {
      "name": "sindresorhus",
      "email": "sindresorhus@gmail.com"
    }
  ],
  "name": "process-exists",
  "optionalDependencies": {},
  "readme": "# process-exists [![Build Status](https://travis-ci.org/sindresorhus/process-exists.svg?branch=master)](https://travis-ci.org/sindresorhus/process-exists)\n\n> Check if a process is running\n\n\n## Install\n\n```\n$ npm install process-exists\n```\n\n\n## Usage\n\n```js\nconst processExists = require('process-exists');\n\nprocessExists(process.pid).then(exists => {\n\tconsole.log(exists);\n\t//=> true\n});\n```\n\n\n## API\n\n### processExists(input)\n\nReturns a `Promise<boolean>`.\n\n#### input\n\nType: `number` `string`\n\nProcess ID or name to check.\n\n\n## License\n\nMIT © [Sindre Sorhus](https://sindresorhus.com)\n",
  "readmeFilename": "readme.md",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/sindresorhus/process-exists.git"
  },
  "scripts": {
    "test": "xo && ava"
  },
  "version": "3.0.0"
}
