Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
code / usr / share / code / resources / app / node_modules / pty.js / package.json
Size: Mime:
{
  "_args": [
    [
      "pty.js@https://github.com/Tyriar/pty.js/tarball/fffbf86eb9e8051b5b2be4ba9c7b07faa018ce8d",
      "/vso/work/2/s"
    ]
  ],
  "_from": "https://github.com/Tyriar/pty.js/tarball/fffbf86eb9e8051b5b2be4ba9c7b07faa018ce8d",
  "_id": "pty.js@0.3.0",
  "_inCache": true,
  "_location": "/pty.js",
  "_phantomChildren": {},
  "_requested": {
    "name": "pty.js",
    "raw": "pty.js@https://github.com/Tyriar/pty.js/tarball/fffbf86eb9e8051b5b2be4ba9c7b07faa018ce8d",
    "rawSpec": "https://github.com/Tyriar/pty.js/tarball/fffbf86eb9e8051b5b2be4ba9c7b07faa018ce8d",
    "scope": null,
    "spec": "https://github.com/Tyriar/pty.js/tarball/fffbf86eb9e8051b5b2be4ba9c7b07faa018ce8d",
    "type": "remote"
  },
  "_requiredBy": [
    "/"
  ],
  "_resolved": "https://github.com/Tyriar/pty.js/tarball/fffbf86eb9e8051b5b2be4ba9c7b07faa018ce8d",
  "_shasum": "13b36885fde939ede3b0bbf92ac2ddc2e31ee6ae",
  "_shrinkwrap": null,
  "_spec": "pty.js@https://github.com/Tyriar/pty.js/tarball/fffbf86eb9e8051b5b2be4ba9c7b07faa018ce8d",
  "_where": "/vso/work/2/s",
  "author": {
    "name": "Christopher Jeffrey"
  },
  "bugs": {
    "url": "https://github.com/chjj/pty.js/issues"
  },
  "dependencies": {
    "extend": "~1.2.1",
    "nan": "2.2.1"
  },
  "description": "Pseudo terminals for node.",
  "devDependencies": {
    "mocha": "~1.17.1"
  },
  "homepage": "https://github.com/chjj/pty.js",
  "keywords": [
    "pty",
    "tty",
    "terminal"
  ],
  "license": "MIT",
  "main": "./index.js",
  "name": "pty.js",
  "optionalDependencies": {},
  "readme": "# pty.js\n\n`forkpty(3)` bindings for node.js. This allows you to fork processes with pseudo\nterminal file descriptors. It returns a terminal object which allows reads\nand writes.\n\nThis is useful for:\n\n- Writing a terminal emulator.\n- Getting certain programs to *think* you're a terminal. This is useful if\n  you need a program to send you control sequences.\n\n## Example Usage\n\n``` js\nvar pty = require('pty.js');\n\nvar term = pty.spawn('bash', [], {\n  name: 'xterm-color',\n  cols: 80,\n  rows: 30,\n  cwd: process.env.HOME,\n  env: process.env\n});\n\nterm.on('data', function(data) {\n  console.log(data);\n});\n\nterm.write('ls\\r');\nterm.resize(100, 40);\nterm.write('ls /\\r');\n\nconsole.log(term.process);\n```\n\n## Todo\n\n- Add tcsetattr(3), tcgetattr(3).\n- Add a way of determining the current foreground job for platforms other\n  than Linux and OSX/Darwin.\n\n## Contribution and License Agreement\n\nIf you contribute code to this project, you are implicitly allowing your code\nto be distributed under the MIT license. You are also implicitly verifying that\nall code is your original work. `</legalese>`\n\n## License\n\nCopyright (c) 2012-2015, Christopher Jeffrey (MIT License).\n",
  "readmeFilename": "README.md",
  "repository": {
    "type": "git",
    "url": "git://github.com/chjj/pty.js.git"
  },
  "scripts": {
    "install": "node scripts/install.js",
    "postinstall": "node scripts/post-install.js",
    "test": "NODE_ENV=test mocha -R spec"
  },
  "tags": [
    "pty",
    "tty",
    "terminal"
  ],
  "version": "0.3.0"
}