package.json 3.0 KB
{
  "_args": [
    [
      {
        "raw": "getpass@^0.1.1",
        "scope": null,
        "escapedName": "getpass",
        "name": "getpass",
        "rawSpec": "^0.1.1",
        "spec": ">=0.1.1 <0.2.0",
        "type": "range"
      },
      "/Users/fzy/project/koa2_Sequelize_project/node_modules/sshpk"
    ]
  ],
  "_from": "getpass@>=0.1.1 <0.2.0",
  "_id": "getpass@0.1.7",
  "_inCache": true,
  "_location": "/getpass",
  "_nodeVersion": "0.12.18",
  "_npmOperationalInternal": {
    "host": "packages-18-east.internal.npmjs.com",
    "tmp": "tmp/getpass-0.1.7.tgz_1493163657029_0.5366648870985955"
  },
  "_npmUser": {
    "name": "arekinath",
    "email": "alex@cooperi.net"
  },
  "_npmVersion": "2.15.11",
  "_phantomChildren": {},
  "_requested": {
    "raw": "getpass@^0.1.1",
    "scope": null,
    "escapedName": "getpass",
    "name": "getpass",
    "rawSpec": "^0.1.1",
    "spec": ">=0.1.1 <0.2.0",
    "type": "range"
  },
  "_requiredBy": [
    "/sshpk"
  ],
  "_resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz",
  "_shasum": "5eff8e3e684d569ae4cb2b1282604e8ba62149fa",
  "_shrinkwrap": null,
  "_spec": "getpass@^0.1.1",
  "_where": "/Users/fzy/project/koa2_Sequelize_project/node_modules/sshpk",
  "author": {
    "name": "Alex Wilson",
    "email": "alex.wilson@joyent.com"
  },
  "bugs": {
    "url": "https://github.com/arekinath/node-getpass/issues"
  },
  "dependencies": {
    "assert-plus": "^1.0.0"
  },
  "description": "getpass for node.js",
  "devDependencies": {},
  "directories": {},
  "dist": {
    "shasum": "5eff8e3e684d569ae4cb2b1282604e8ba62149fa",
    "tarball": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz"
  },
  "gitHead": "e219fae3a4458a1aa4b84002539265a6a1475267",
  "homepage": "https://github.com/arekinath/node-getpass#readme",
  "license": "MIT",
  "main": "lib/index.js",
  "maintainers": [
    {
      "name": "arekinath",
      "email": "alex@cooperi.net"
    }
  ],
  "name": "getpass",
  "optionalDependencies": {},
  "readme": "## getpass\n\nGet a password from the terminal. Sounds simple? Sounds like the `readline`\nmodule should be able to do it? NOPE.\n\n## Install and use it\n\n```bash\nnpm install --save getpass\n```\n\n```javascript\nconst mod_getpass = require('getpass');\n```\n\n## API\n\n### `mod_getpass.getPass([options, ]callback)`\n\nGets a password from the terminal. If available, this uses `/dev/tty` to avoid\ninterfering with any data being piped in or out of stdio.\n\nThis function prints a prompt (by default `Password:`) and then accepts input\nwithout echoing.\n\nParameters:\n\n * `options`, an Object, with properties:\n   * `prompt`, an optional String\n * `callback`, a `Func(error, password)`, with arguments:\n   * `error`, either `null` (no error) or an `Error` instance\n   * `password`, a String\n",
  "readmeFilename": "README.md",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/arekinath/node-getpass.git"
  },
  "scripts": {
    "test": "tape test/*.test.js"
  },
  "version": "0.1.7"
}