Guest User

Untitled

a guest
Jan 15th, 2013
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 188.81 KB | None | 0 0
  1.  
  2. 5025 verbose from cache /root/.npm/npm/1.1.59/package/package.json
  3. 5026 verbose chmod /root/.npm/npm/1.1.59/package.tgz 644
  4. 5027 verbose chown /root/.npm/npm/1.1.59/package.tgz [ 0, 0 ]
  5. 5028 silly lockFile 10f36c8b-try-npmjs-org-npm-npm-1-1-59-tgz https://registry.npmjs.org/npm/-/npm-1.1.59.tgz
  6. 5029 silly lockFile 24e2d06d-npm-1-1-59 npm@1.1.59
  7. 5030 silly resolved [ { name: 'dateformat',
  8. 5030 silly resolved description: 'A node.js package for Steven Levithan\'s excellent dateFormat() function.',
  9. 5030 silly resolved maintainers: 'Felix Geisendörfer <felix@debuggable.com>',
  10. 5030 silly resolved homepage: 'https://github.com/felixge/node-dateformat',
  11. 5030 silly resolved author: { name: 'Steven Levithan' },
  12. 5030 silly resolved version: '1.0.2-1.2.3',
  13. 5030 silly resolved main: './lib/dateformat',
  14. 5030 silly resolved dependencies: {},
  15. 5030 silly resolved devDependencies: {},
  16. 5030 silly resolved engines: { node: '*' },
  17. 5030 silly resolved readme: '# node-dateformat\n\nA node.js package for Steven Levithan\'s excellent [dateFormat()][dateformat] function.\n\n## Modifications\n\n* Removed the `Date.prototype.format` method. Sorry folks, but extending native prototypes is for suckers.\n* Added a `module.exports = dateFormat;` statement at the bottom\n\n## Usage\n\nAs taken from Steven\'s post, modified to match the Modifications listed above:\n\n var dateFormat = require(\'dateformat\');\n var now = new Date();\n\n // Basic usage\n dateFormat(now, "dddd, mmmm dS, yyyy, h:MM:ss TT");\n // Saturday, June 9th, 2007, 5:46:21 PM\n\n // You can use one of several named masks\n dateFormat(now, "isoDateTime");\n // 2007-06-09T17:46:21\n\n // ...Or add your own\n dateFormat.masks.hammerTime = \'HH:MM! "Can\\\'t touch this!"\';\n dateFormat(now, "hammerTime");\n // 17:46! Can\'t touch this!\n\n // When using the standalone dateFormat function,\n // you can also provide the date as a string\n dateFormat("Jun 9 2007", "fullDate");\n // Saturday, June 9, 2007\n\n // Note that if you don\'t include the mask argument,\n // dateFormat.masks.default is used\n dateFormat(now);\n // Sat Jun 09 2007 17:46:21\n\n // And if you don\'t include the date argument,\n // the current date and time is used\n dateFormat();\n // Sat Jun 09 2007 17:46:22\n\n // You can also skip the date argument (as long as your mask doesn\'t\n // contain any numbers), in which case the current date/time is used\n dateFormat("longTime");\n // 5:46:22 PM EST\n\n // And finally, you can convert local time to UTC time. Simply pass in\n // true as an additional argument (no argument skipping allowed in this case):\n dateFormat(now, "longTime", true);\n // 10:46:21 PM UTC\n\n // ...Or add the prefix "UTC:" to your mask.\n dateFormat(now, "UTC:h:MM:ss TT Z");\n // 10:46:21 PM UTC\n\n // You can also get the ISO 8601 week of the year:\n dateFormat(now, "W");\n // 42\n## License\n\n(c) 2007-2009 Steven Levithan [stevenlevithan.com][stevenlevithan], MIT license.\n\n[dateformat]: http://blog.stevenlevithan.com/archives/date-time-format\n[stevenlevithan]: http://stevenlevithan.com/\n',
  18. 5030 silly resolved readmeFilename: 'Readme.md',
  19. 5030 silly resolved _id: 'dateformat@1.0.2-1.2.3',
  20. 5030 silly resolved dist: { shasum: '6cd0dfa14e3c911e6f01f54d6a868636c7875e9e' },
  21. 5030 silly resolved _from: 'dateformat@1.0.2-1.2.3',
  22. 5030 silly resolved _resolved: 'https://registry.npmjs.org/dateformat/-/dateformat-1.0.2-1.2.3.tgz' },
  23. 5030 silly resolved { name: 'colors',
  24. 5030 silly resolved description: 'get colors in your node.js console like what',
  25. 5030 silly resolved version: '0.6.0-1',
  26. 5030 silly resolved author: { name: 'Marak Squires' },
  27. 5030 silly resolved repository: { type: 'git', url: 'http://github.com/Marak/colors.js.git' },
  28. 5030 silly resolved engines: { node: '>=0.1.90' },
  29. 5030 silly resolved main: 'colors',
  30. 5030 silly resolved readme: '# colors.js - get color and style in your node.js console ( and browser ) like what\n\n<img src="http://i.imgur.com/goJdO.png" border = "0"/>\n\n\n## Installation\n\n npm install colors\n\n## colors and styles!\n\n- bold\n- italic\n- underline\n- inverse\n- yellow\n- cyan\n- white\n- magenta\n- green\n- red\n- grey\n- blue\n- rainbow\n- zebra\n- random\n\n## Usage\n\n``` js\nvar colors = require(\'./colors\');\n\nconsole.log(\'hello\'.green); // outputs green text\nconsole.log(\'i like cake and pies\'.underline.red) // outputs red underlined text\nconsole.log(\'inverse the color\'.inverse); // inverses the color\nconsole.log(\'OMG Rainbows!\'.rainbow); // rainbow (ignores spaces)\n```\n\n# Creating Custom themes\n\n```js\n\nvar require(\'colors\');\n\ncolors.setTheme({\n silly: \'rainbow\',\n input: \'grey\',\n verbose: \'cyan\',\n prompt: \'grey\',\n info: \'green\',\n data: \'grey\',\n help: \'cyan\',\n warn: \'yellow\',\n debug: \'blue\',\n error: \'red\'\n});\n\n// outputs red text\nconsole.log("this is an error".error);\n\n// outputs yellow text\nconsole.log("this is a warning".warn);\n```\n\n\n### Contributors \n\nMarak (Marak Squires)\nAlexis Sellier (cloudhead)\nmmalecki (Maciej Małecki)\nnicoreed (Nico Reed)\nmorganrallen (Morgan Allen)\nJustinCampbell (Justin Campbell)\nded (Dustin Diaz)\n\n\n#### , Marak Squires , Justin Campbell, Dustin Diaz (@ded)\n',
  31. 5030 silly resolved readmeFilename: 'ReadMe.md',
  32. 5030 silly resolved _id: 'colors@0.6.0-1',
  33. 5030 silly resolved dist: { shasum: '681baa93def86322cd210d7f5870e5b8223a574f' },
  34. 5030 silly resolved _from: 'colors@0.6.0-1',
  35. 5030 silly resolved _resolved: 'https://registry.npmjs.org/colors/-/colors-0.6.0-1.tgz' },
  36. 5030 silly resolved { name: 'complete',
  37. 5030 silly resolved version: '0.3.1',
  38. 5030 silly resolved description: 'tab completion for your nodejs CLI program',
  39. 5030 silly resolved main: './lib/complete.js',
  40. 5030 silly resolved directories: { lib: './lib', example: './example' },
  41. 5030 silly resolved repository: { type: 'git', url: 'http://github.com/hij1nx/complete.git' },
  42. 5030 silly resolved keywords:
  43. 5030 silly resolved [ 'terminal',
  44. 5030 silly resolved 'tabs',
  45. 5030 silly resolved 'unix',
  46. 5030 silly resolved 'posix',
  47. 5030 silly resolved 'console',
  48. 5030 silly resolved 'complete',
  49. 5030 silly resolved 'completion' ],
  50. 5030 silly resolved author:
  51. 5030 silly resolved { name: 'hij1nx',
  52. 5030 silly resolved email: 'hij1nx@me.com',
  53. 5030 silly resolved url: 'http://www.nodejitsu.com' },
  54. 5030 silly resolved maintainers: [ [Object] ],
  55. 5030 silly resolved license: 'MIT',
  56. 5030 silly resolved engine: { node: '>=0.4' },
  57. 5030 silly resolved readme: '# Synopsis\nCustom command line tab completion for node.js applications.\n\n# Example\n\n```javascript\n#!/usr/bin/env node\n\nvar complete = require(\'complete\'); // get the `complete` module.\n\n//\n// list of items to complete on.\n//\ncomplete.list = [\'apple\', \'orange\', \'pear\', \'lemon\', \'mango\'];\n\ncomplete.callback = function(lastSelection, userInput, reducedList) {\n\n if (lastSelection === \'apple\') {\n\tcomplete.add(\'sauce\');\n }\n};\n\ncomplete.init();\n\n//\n// continue with the application...\n//\nconsole.log(\'program started with the following arguments:\', process.argv[2] || \'none provided\');\n```\n\n# Distribution and Installation\n\nYour installment procedure should place your CLI program in a location made accessible by the `PATH` variable. If users install your program with the NPM `-g` option, your program will be in the path.\n\n``` bash\n/usr/local/bin/myprogram -> /usr/local/lib/node_modules/myprogram/bin/myprogram\n```\n\n# API\n\n## list\nCreate a list of commands that you want to autocomplete with.\n\n```javascript\ncomplete.list = [\'apple\', \'orange\', \'pear\', \'lemon\', \'mango\'];\n```\n\n## callback\nOptionally you can define a callback that will get called when the match when the completion happens.\n\n```javascript\ncomplete.callback = function(lastSelection, userInput, reducedList) {\n\n //\n // do something if this is an `orange`. Note that anything that\n // you `process.stdout.write()` will be added to the auto complete\n // list.\n //\n};\n```\n\n## init()\nInitialize the auto completion behavior.\n\n```javascript\ncomplete.init();\n```\n\n\n## Higher Level Example\n\n``` js\nvar complete = require(\'complete\');\n\ncomplete({\n program: \'my-program\',\n // Commands\n commands: {\n \'hello\': function(words, prev, cur) {\n complete.output(cur, [\'abc\', \'def\']);\n },\n \'world\': {\n \'hi\': function(words, prev, cur) {\n complete.echo(\'next\');\n }\n }\n },\n // Position-independent options.\n // These will attempted to be\n // matched if `commands` fails\n // to match.\n options: {\n \'--help\': {},\n \'-h\': {},\n \'--version\': {},\n \'-v\': {}\n }\n});\n```\n\n## The above results in\n\n``` bash\n$ my-program he<TAB>\n$ my-program hello\n$ my-program hello a<TAB>\n$ my-program hello abc\n```\n\n# License\n\n(The MIT License)\n\nCopyright (c) 2010 hij1nx <http://www.twitter.com/hij1nx>\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \'Software\'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \'AS IS\', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n\n',
  58. 5030 silly resolved readmeFilename: 'README.md',
  59. 5030 silly resolved _id: 'complete@0.3.1',
  60. 5030 silly resolved dist: { shasum: 'a93d4105ee2bd6faf50eb5d6323929f05a2fffa1' },
  61. 5030 silly resolved _from: 'complete@0.3.1',
  62. 5030 silly resolved _resolved: 'https://registry.npmjs.org/complete/-/complete-0.3.1.tgz' },
  63. 5030 silly resolved { name: 'flatiron-cli-config',
  64. 5030 silly resolved version: '0.1.3',
  65. 5030 silly resolved description: 'Encapsulated commands for managing configuration in flatiron CLI apps',
  66. 5030 silly resolved author: { name: 'Nodejitsu Inc.', email: 'info@nodejitsu.com' },
  67. 5030 silly resolved maintainers: [ [Object] ],
  68. 5030 silly resolved repository:
  69. 5030 silly resolved { type: 'git',
  70. 5030 silly resolved url: 'http://github.com/flatiron/flatiron-cli-config.git' },
  71. 5030 silly resolved peerDependencies: { flatiron: '~0.1.9' },
  72. 5030 silly resolved devDependencies: { flatiron: '~0.2.0', 'cli-easy': '0.1.x', vows: '0.6.x' },
  73. 5030 silly resolved main: './lib/flatiron-cli-config',
  74. 5030 silly resolved scripts: { test: 'vows --spec --isolate' },
  75. 5030 silly resolved engines: { node: '>= 0.6.0' },
  76. 5030 silly resolved readme: '# flatiron-cli-config\n\nEncapsulated commands for managing configuration in flatiron CLI apps\n\n## Example\nAt its core `flatiron-cli-config` is a broadway-compatible plugin which can be used by any `flatiron` application:\n\n``` js\n var flatiron = require(\'flatiron\'),\n app = flatiron.app;\n\n //\n // Configure the Application to be a CLI app with\n // a JSON configuration file `test-config.json`\n //\n app.name = \'app.js\';\n app.config.file({ file: \'test-config.json\' });\n app.use(flatiron.plugins.cli, {\n usage: \'A simple CLI app using flatiron-cli-config\'\n });\n\n //\n // Expose CLI commands using `flatiron-cli-config`\n //\n app.use(require(\'flatiron-cli-config\'));\n\n if (!module.parent) {\n //\n // Start the application\n //\n app.start();\n }\n```\n\nIf you run the above script:\n\n``` bash\n $ node app.js config set foo bar\n $ node app.js config get foo\n```\n\nThe output will be:\n\n```\n data: foo bar\n```\n\nAnd the contents of `test-config.json` will be:\n\n```\n { "foo": "bar" }\n```\n\n## API Documentation\n\n### Commands exposed\n\n``` bash\n $ node examples/app.js help config\n help: `app.js config *` commands allow you to edit your\n help: local app.js configuration file. Valid commands are:\n help:\n help: app.js config list\n help: app.js config set <key> <value>\n help: app.js config get <key>\n help: app.js config delete <key>\n```\n\n### Options\n\n``` js\n {\n //\n // Name of the store in `app.config` to use for `config list`. [Default: all config]\n //\n store: \'file\'\n\n //\n // Set of properties which cannot be deleted using `config delete <key>`\n //\n restricted: [\'foo\', \'bar\'],\n\n //\n // Set of functions which will execute before named commands: get, set, list, delete\n //\n before: { list: function () { ... } }\n }\n```\n\n## Installation\n\n### Installing npm (node package manager)\n```\n curl http://npmjs.org/install.sh | sh\n```\n\n### Installing flatiron-cli-config\n```\n [sudo] npm install flatiron-cli-config\n```\n\n## Run Tests\nTests are written in vows and give complete coverage of all APIs and storage engines.\n\n``` bash\n $ npm test\n```\n\n#### Author: [Charlie Robbins](http://nodejitsu.com)\n#### License: MIT',
  77. 5030 silly resolved readmeFilename: 'README.md',
  78. 5030 silly resolved _id: 'flatiron-cli-config@0.1.3',
  79. 5030 silly resolved dist: { shasum: '5efb6249c6f4302f2b36aeee48bfe0361f95a9cc' },
  80. 5030 silly resolved _from: 'flatiron-cli-config@0.1.3',
  81. 5030 silly resolved _resolved: 'https://registry.npmjs.org/flatiron-cli-config/-/flatiron-cli-config-0.1.3.tgz' },
  82. 5030 silly resolved { author:
  83. 5030 silly resolved { name: 'Isaac Z. Schlueter',
  84. 5030 silly resolved email: 'i@izs.me',
  85. 5030 silly resolved url: 'http://blog.izs.me/' },
  86. 5030 silly resolved name: 'fstream-npm',
  87. 5030 silly resolved description: 'fstream class for creating npm packages',
  88. 5030 silly resolved version: '0.1.1',
  89. 5030 silly resolved repository: { type: 'git', url: 'git://github.com/isaacs/fstream-npm.git' },
  90. 5030 silly resolved main: './fstream-npm.js',
  91. 5030 silly resolved dependencies: { 'fstream-ignore': '~0.0.5', inherits: '' },
  92. 5030 silly resolved license: 'BSD',
  93. 5030 silly resolved readme: '# fstream-npm\n\nThis is an fstream DirReader class that will read a directory and filter\nthings according to the semantics of what goes in an npm package.\n\nFor example:\n\n```javascript\n// This will print out all the files that would be included\n// by \'npm publish\' or \'npm install\' of this directory.\n\nvar FN = require("fstream-npm")\nFN({ path: "./" })\n .on("child", function (e) {\n console.error(e.path.substr(e.root.path.length + 1))\n })\n```\n\n',
  94. 5030 silly resolved readmeFilename: 'README.md',
  95. 5030 silly resolved _id: 'fstream-npm@0.1.1',
  96. 5030 silly resolved dist: { shasum: '10ecf89b969ae53d0bbe8b7500c8494abd86e3b4' },
  97. 5030 silly resolved _from: 'fstream-npm@0.1.1',
  98. 5030 silly resolved _resolved: 'https://registry.npmjs.org/fstream-npm/-/fstream-npm-0.1.1.tgz' },
  99. 5030 silly resolved { name: 'flatiron-cli-users',
  100. 5030 silly resolved version: '0.1.3',
  101. 5030 silly resolved description: 'Encapsulated commands for managing users in flatiron CLI apps',
  102. 5030 silly resolved author: { name: 'Nodejitsu Inc.', email: 'info@nodejitsu.com' },
  103. 5030 silly resolved maintainers: [ [Object] ],
  104. 5030 silly resolved repository:
  105. 5030 silly resolved { type: 'git',
  106. 5030 silly resolved url: 'http://github.com/flatiron/flatiron-cli-users.git' },
  107. 5030 silly resolved peerDependencies: { flatiron: '~0.1.9' },
  108. 5030 silly resolved devDependencies:
  109. 5030 silly resolved { flatiron: '~0.1.9',
  110. 5030 silly resolved 'nodejitsu-api': '0.2.x',
  111. 5030 silly resolved nock: '0.9.x',
  112. 5030 silly resolved vows: '0.6.x' },
  113. 5030 silly resolved main: './lib/flatiron-cli-users',
  114. 5030 silly resolved scripts: { test: 'vows --spec' },
  115. 5030 silly resolved engines: { node: '>= 0.6.0' },
  116. 5030 silly resolved readme: '# flatiron-cli-users\n\nEncapsulated commands for managing users in [flatiron][0] CLI apps\n\n## Example\nAt its core [flatiron-cli-users][1] is a broadway-compatible plugin which can be used by any [flatiron][0] application:\n\n``` js\n var flatiron = require(\'flatiron\'),\n app = flatiron.app;\n\n //\n // Configure the Application to be a CLI app with\n // a JSON configuration file `test-config.json`\n //\n app.name = \'app.js\';\n app.config.file({ file: \'test-config.json\' });\n app.use(flatiron.plugins.cli, {\n usage: \'A simple CLI app using flatiron-cli-users\'\n });\n\n //\n // Expose CLI commands using `flatiron-cli-users`\n //\n app.use(require(\'flatiron-cli-users\'));\n \n if (!module.parent) {\n //\n // Start the application\n //\n app.start();\n }\n```\n\nIf you run the above script:\n\n``` bash\n $ node app.js users create\n```\n\nThe output will be:\n\n``` bash\n help: To signup, first you will need to provide a username\n prompt: username: foobar\n help: Next, we will require your email address\n prompt: email: email@test.com\n help: Finally, we will need a password for this account\n prompt: password: \n prompt: confirm password: \n info: You account is now being created\n info: Account creation successful!\n```\n\nAnd the contents of `test-config.json` will have the specified user information. \n\n## API Documentation\n\n### Expected API endpoints\n\nThis `flatiron` plugin expects an API endpoint to be present on the application through `app.users`. You may implement this API endpoint however you wish. We would suggest using [resourceful][2] and [director][3], but you are free to use [express][4] or other node.js frameworks.\n\n**app.users.auth(function (err, result))**\n\nResponds with a valid indicating if the current user is authenticated.\n\n**app.users.availabile(username, function (err, result))**\n\nResponds with a valid indicating if the desired username is available.\n\n**app.users.create(user, function (err, result))**\n\nCreates a user with the specified properties.\n\n**app.users.update(username, props, function (err, result))**\n\nUpdates the user with `username` with specified `props`.\n\n**app.users.forgot(username, props, function (err, result))**\n\nAttempts to reset the password for the `username` with the specified `props`\n\n### Commands exposed\n\n``` bash\n $ node examples/app.js help users\n help: `app.js users *` commands allow you to work with new\n help: or existing user accounts.\n help: \n help: app.js users available <username>\n help: app.js users changepassword\n help: app.js users confirm <username> <inviteCode>\n help: app.js users create\n help: app.js users forgot <username> <shake>\n help: app.js users login\n help: app.js users logout\n help: app.js users whoami\n help: \n help: You will be prompted for additional user information\n help: as required.\n```\n\n### Options\n\n``` js\n {\n //\n // Set of functions which will execute after named commands: create, login, logout, etc.\n //\n after: { login: function () { ... } },\n\n //\n // Set of functions which will execute before named commands: create, login, logout, etc.\n //\n before: { login: function () { ... } }\n }\n```\n\n## Installation\n\n### Installing npm (node package manager)\n\n``` bash\n $ curl http://npmjs.org/install.sh | sh\n```\n\n### Installing flatiron-cli-users\n\n``` bash\n $ [sudo] npm install flatiron-cli-users\n```\n\n## Run Tests\nTests are written in vows and give complete coverage of all APIs and storage engines.\n\n``` bash\n $ npm test\n```\n\n#### Author: [Charlie Robbins](http://nodejitsu.com)\n#### License: MIT\n\n[0]: http://flatironjs.org\n[1]: http://github.com/flatiron/flatiron-cli-users\n[2]: http://github.com/flatiron/resourceful\n[3]: http://github.com/flatiron/director\n[4]: http://expressjs.org',
  117. 5030 silly resolved readmeFilename: 'README.md',
  118. 5030 silly resolved _id: 'flatiron-cli-users@0.1.3',
  119. 5030 silly resolved dist: { shasum: '34508edbe5381fe3719d17fc534f100f2f14eee4' },
  120. 5030 silly resolved _from: 'flatiron-cli-users@0.1.3',
  121. 5030 silly resolved _resolved: 'https://registry.npmjs.org/flatiron-cli-users/-/flatiron-cli-users-0.1.3.tgz' },
  122. 5030 silly resolved { author:
  123. 5030 silly resolved { name: 'Isaac Z. Schlueter',
  124. 5030 silly resolved email: 'i@izs.me',
  125. 5030 silly resolved url: 'http://blog.izs.me/' },
  126. 5030 silly resolved name: 'fstream',
  127. 5030 silly resolved description: 'Advanced file system stream things',
  128. 5030 silly resolved version: '0.1.18',
  129. 5030 silly resolved repository: { type: 'git', url: 'git://github.com/isaacs/fstream.git' },
  130. 5030 silly resolved main: 'fstream.js',
  131. 5030 silly resolved engines: { node: '>=0.6' },
  132. 5030 silly resolved dependencies:
  133. 5030 silly resolved { rimraf: '2',
  134. 5030 silly resolved mkdirp: '0.3',
  135. 5030 silly resolved 'graceful-fs': '~1.1.2',
  136. 5030 silly resolved inherits: '~1.0.0' },
  137. 5030 silly resolved devDependencies: { tap: '' },
  138. 5030 silly resolved scripts: { test: 'tap examples/*.js' },
  139. 5030 silly resolved license: 'BSD',
  140. 5030 silly resolved readme: 'Like FS streams, but with stat on them, and supporting directories and\nsymbolic links, as well as normal files. Also, you can use this to set\nthe stats on a file, even if you don\'t change its contents, or to create\na symlink, etc.\n\nSo, for example, you can "write" a directory, and it\'ll call `mkdir`. You\ncan specify a uid and gid, and it\'ll call `chown`. You can specify a\n`mtime` and `atime`, and it\'ll call `utimes`. You can call it a symlink\nand provide a `linkpath` and it\'ll call `symlink`.\n\nNote that it won\'t automatically resolve symbolic links. So, if you\ncall `fstream.Reader(\'/some/symlink\')` then you\'ll get an object\nthat stats and then ends immediately (since it has no data). To follow\nsymbolic links, do this: `fstream.Reader({path:\'/some/symlink\', follow:\ntrue })`.\n\nThere are various checks to make sure that the bytes emitted are the\nsame as the intended size, if the size is set.\n\n## Examples\n\n```javascript\nfstream\n .Writer({ path: "path/to/file"\n , mode: 0755\n , size: 6\n })\n .write("hello\\n")\n .end()\n```\n\nThis will create the directories if they\'re missing, and then write\n`hello\\n` into the file, chmod it to 0755, and assert that 6 bytes have\nbeen written when it\'s done.\n\n```javascript\nfstream\n .Writer({ path: "path/to/file"\n , mode: 0755\n , size: 6\n , flags: "a"\n })\n .write("hello\\n")\n .end()\n```\n\nYou can pass flags in, if you want to append to a file.\n\n```javascript\nfstream\n .Writer({ path: "path/to/symlink"\n , linkpath: "./file"\n , SymbolicLink: true\n , mode: "0755" // octal strings supported\n })\n .end()\n```\n\nIf isSymbolicLink is a function, it\'ll be called, and if it returns\ntrue, then it\'ll treat it as a symlink. If it\'s not a function, then\nany truish value will make a symlink, or you can set `type:\n\'SymbolicLink\'`, which does the same thing.\n\nNote that the linkpath is relative to the symbolic link location, not\nthe parent dir or cwd.\n\n```javascript\nfstream\n .Reader("path/to/dir")\n .pipe(fstream.Writer("path/to/other/dir"))\n```\n\nThis will do like `cp -Rp path/to/dir path/to/other/dir`. If the other\ndir exists and isn\'t a directory, then it\'ll emit an error. It\'ll also\nset the uid, gid, mode, etc. to be identical. In this way, it\'s more\nlike `rsync -a` than simply a copy.\n',
  141. 5030 silly resolved readmeFilename: 'README.md',
  142. 5030 silly resolved _id: 'fstream@0.1.18',
  143. 5030 silly resolved dist: { shasum: 'd2e948c3f44bcd8d009f9f0710a77261ded3a64e' },
  144. 5030 silly resolved _from: 'fstream@0.1.18',
  145. 5030 silly resolved _resolved: 'https://registry.npmjs.org/fstream/-/fstream-0.1.18.tgz' },
  146. 5030 silly resolved { name: 'pkginfo',
  147. 5030 silly resolved version: '0.2.3',
  148. 5030 silly resolved description: 'An easy way to expose properties on a module from a package.json',
  149. 5030 silly resolved author: { name: 'Charlie Robbins', email: 'charlie.robbins@gmail.com' },
  150. 5030 silly resolved repository:
  151. 5030 silly resolved { type: 'git',
  152. 5030 silly resolved url: 'http://github.com/indexzero/node-pkginfo.git' },
  153. 5030 silly resolved keywords: [ 'info', 'tools', 'package.json' ],
  154. 5030 silly resolved devDependencies: { vows: '0.6.x' },
  155. 5030 silly resolved main: './lib/pkginfo',
  156. 5030 silly resolved scripts: { test: 'vows test/*-test.js --spec' },
  157. 5030 silly resolved engines: { node: '>= 0.4.0' },
  158. 5030 silly resolved readme: '# node-pkginfo\n\nAn easy way to expose properties on a module from a package.json\n\n## Installation\n\n### Installing npm (node package manager)\n```\n curl http://npmjs.org/install.sh | sh\n```\n\n### Installing pkginfo\n```\n [sudo] npm install pkginfo\n```\n\n## Motivation\nHow often when writing node.js modules have you written the following line(s) of code? \n\n* Hard code your version string into your code\n\n``` js\n exports.version = \'0.1.0\';\n```\n\n* Programmatically expose the version from the package.json\n\n``` js\n exports.version = JSON.parse(fs.readFileSync(\'/path/to/package.json\', \'utf8\')).version;\n```\n\nIn other words, how often have you wanted to expose basic information from your package.json onto your module programmatically? **WELL NOW YOU CAN!**\n\n## Usage\n\nUsing `pkginfo` is idiot-proof, just require and invoke it. \n\n``` js\n var pkginfo = require(\'pkginfo\')(module);\n \n console.dir(module.exports);\n```\n\nBy invoking the `pkginfo` module all of the properties in your `package.json` file will be automatically exposed on the callee module (i.e. the parent module of `pkginfo`). \n\nHere\'s a sample of the output:\n\n```\n { name: \'simple-app\',\n description: \'A test fixture for pkginfo\',\n version: \'0.1.0\',\n author: \'Charlie Robbins <charlie.robbins@gmail.com>\',\n keywords: [ \'test\', \'fixture\' ],\n main: \'./index.js\',\n scripts: { test: \'vows test/*-test.js --spec\' },\n engines: { node: \'>= 0.4.0\' } }\n```\n\n### Expose specific properties\nIf you don\'t want to expose **all** properties on from your `package.json` on your module then simple pass those properties to the `pkginfo` function:\n\n``` js\n var pkginfo = require(\'pkginfo\')(module, \'version\', \'author\');\n \n console.dir(module.exports);\n```\n\n```\n { version: \'0.1.0\',\n author: \'Charlie Robbins <charlie.robbins@gmail.com>\' }\n```\n\nIf you\'re looking for further usage see the [examples][0] included in this repository. \n\n## Run Tests\nTests are written in [vows][1] and give complete coverage of all APIs.\n\n```\n vows test/*-test.js --spec\n```\n\n[0]: https://github.com/indexzero/node-pkginfo/tree/master/examples\n[1]: http://vowsjs.org\n\n#### Author: [Charlie Robbins](http://nodejitsu.com)',
  159. 5030 silly resolved readmeFilename: 'README.md',
  160. 5030 silly resolved _id: 'pkginfo@0.2.3',
  161. 5030 silly resolved dist: { shasum: '3158ac528e1c894d0a8dc0c45125886534e51150' },
  162. 5030 silly resolved _from: 'pkginfo@0.2.3',
  163. 5030 silly resolved _resolved: 'https://registry.npmjs.org/pkginfo/-/pkginfo-0.2.3.tgz' },
  164. 5030 silly resolved { name: 'spawn-command',
  165. 5030 silly resolved author: { name: 'Maciej Małecki', email: 'me@mmalecki.com' },
  166. 5030 silly resolved description: 'Spawn commands like `child_process.exec` does but return a `ChildProcess`',
  167. 5030 silly resolved version: '0.0.2',
  168. 5030 silly resolved main: './lib/spawn-command',
  169. 5030 silly resolved scripts: { test: 'node test/spawn-command-test.js' },
  170. 5030 silly resolved devDependencies: { 'assert-called': '0.1.x' },
  171. 5030 silly resolved readme: '# spawn-command [![Build Status](https://secure.travis-ci.org/mmalecki/spawn-command.png)](http://travis-ci.org/mmalecki/spawn-command)\nSpawn commands like `child_process.exec` does but return a `ChildProcess`.\n\n## Installation\n\n npm install spawn-command\n\n## Usage\n```js\nvar spawnCommand = require(\'spawn-command\'),\n child = spawnCommand(\'echo "Hello spawn" | base64\');\n\nchild.stdout.on(\'data\', function (data) {\n console.log(\'data\', data);\n});\n\nchild.on(\'exit\', function (exitCode) {\n console.log(\'exit\', exitCode);\n});\n```\n',
  172. 5030 silly resolved readmeFilename: 'README.md',
  173. 5030 silly resolved _id: 'spawn-command@0.0.2',
  174. 5030 silly resolved dist: { shasum: '3c95bca062f7a5d43da580ca7d3fac2c1de93bfd' },
  175. 5030 silly resolved _from: 'spawn-command@0.0.2',
  176. 5030 silly resolved _resolved: 'https://registry.npmjs.org/spawn-command/-/spawn-command-0.0.2.tgz' },
  177. 5030 silly resolved { name: 'flatiron',
  178. 5030 silly resolved description: 'An elegant blend of convention and configuration for building apps in Node.js and the browser',
  179. 5030 silly resolved version: '0.3.0',
  180. 5030 silly resolved author: { name: 'Nodejitsu Inc.', email: 'info@nodejitsu.com' },
  181. 5030 silly resolved maintainers: [ [Object], [Object], [Object] ],
  182. 5030 silly resolved repository: { type: 'git', url: 'http://github.com/flatiron/flatiron.git' },
  183. 5030 silly resolved dependencies:
  184. 5030 silly resolved { broadway: '0.2.5',
  185. 5030 silly resolved optimist: '0.3.4',
  186. 5030 silly resolved prompt: '0.2.8',
  187. 5030 silly resolved director: '1.1.6',
  188. 5030 silly resolved pkginfo: '0.2.3' },
  189. 5030 silly resolved devDependencies:
  190. 5030 silly resolved { st: '0.0.10',
  191. 5030 silly resolved request: '2.x.x',
  192. 5030 silly resolved resourceful: '0.3.x',
  193. 5030 silly resolved union: '0.3.x',
  194. 5030 silly resolved vows: '0.6.x' },
  195. 5030 silly resolved main: './lib/flatiron',
  196. 5030 silly resolved bin: { flatiron: './bin/flatiron' },
  197. 5030 silly resolved scripts: { test: 'vows --spec' },
  198. 5030 silly resolved engines: { node: '>= 0.4.0' },
  199. 5030 silly resolved readme: '# [flatiron](http://flatironjs.org) [![Build Status](https://secure.travis-ci.org/flatiron/flatiron.png)](http://travis-ci.org/flatiron/flatiron)\n\n*Framework components for node.js and the browser*\n\n![](http://flatironjs.org/img/flatiron.png)\n\n# Example HTTP Server:\n\n```js\nvar flatiron = require(\'flatiron\'),\n app = flatiron.app;\n\napp.use(flatiron.plugins.http);\n\napp.router.get(\'/\', function () {\n this.res.writeHead(200, { \'Content-Type\': \'text/plain\' });\n this.res.end(\'Hello world!\\n\');\n});\n\napp.start(8080);\n```\n\n# Example HTTPS Server:\n\n```js\nvar flatiron = require(\'flatiron\'),\n app = flatiron.app;\n\napp.use(flatiron.plugins.http, {\n https: {\n cert: \'path/to/cert.pem\',\n key: \'path/to/key.pem\',\n ca: \'path/to/ca.pem\'\n }\n});\n\napp.router.get(\'/\', function () {\n this.res.writeHead(200, { \'Content-Type\': \'text/plain\' });\n this.res.end(\'Hello world!\\n\');\n});\n\napp.start(8080);\n```\n\n# Example CLI Application:\n\n```js\n// example.js\n\nvar flatiron = require(\'flatiron\'),\n app = flatiron.app;\n\napp.use(flatiron.plugins.cli, {\n dir: __dirname,\n usage: [\n \'This is a basic flatiron cli application example!\',\n \'\',\n \'hello - say hello to somebody.\'\n ]\n});\n\napp.cmd(\'hello\', function () {\n app.prompt.get(\'name\', function (err, result) {\n app.log.info(\'hello \'+result.name+\'!\');\n })\n})\n\napp.start();\n```\n\n## Run It:\n\n```\n% node example.js hello\nprompt: name: world\ninfo: hello world!\n```\n\n## Installation\n\n### Installing NPM (Node Package Manager)\n```\n curl http://npmjs.org/install.sh | sh\n```\n\n### Installing Flatiron\n```\n [sudo] npm install flatiron\n```\n\n### Installing Union (Required for `flatiron.plugins.http`)\n```\n npm install union\n```\n\n# Usage:\n\n## Start With `flatiron.app`:\n\n`flatiron.app` is a [broadway injection container](https://github.com/flatiron/broadway). To be brief, what it does is allow plugins to modify the `app` object directly:\n\n```js\nvar flatiron = require(\'flatiron\'),\n app = require(\'app\');\n\nvar hello = {\n attach: function (options) {\n this.hello = options.message || \'Why hello!\';\n }\n};\n\napp.use(hello, {\n message: "Hi! How are you?"\n});\n\n// Will print, "Hi! How are you?"\nconsole.log(app.hello);\n```\n\nVirtually all additional functionality in flatiron comes from broadway plugins, such as `flatiron.plugins.http` and `flatiron.plugins.cli`.\n\n### `app.config`\n\n`flatiron.app` comes with a [`config`](https://github.com/flatiron/broadway/blob/master/lib/broadway/plugins/config.js) plugin pre-loaded, which adds configuration management courtesy [nconf](https://github.com/flatiron/nconf). `app.config` has the same api as the `nconf` object.\n\nThe `literal` store is configured by default. If you want to use different stores you can easily attach them to the `app.config` instance.\n\n```js\n// add the `env` store to the config\napp.config.use(\'env\');\n\n// add the `file` store the the config\napp.config.use(\'file\', { file: \'path/to/config.json\' });\n\n// or using an alternate syntax\napp.config.env().file({ file: \'path/to/config.json\' });\n\n// and removing stores\napp.config.remove(\'literal\');\n```\n\n### `app.log`\n\n`flatiron.app` will also load a [`log`](https://github.com/flatiron/broadway/blob/master/lib/broadway/plugins/log.js) plugin during the init phase, which attaches a [winston container](https://github.com/flatiron/winston) to `app.log`. This logger is configured by combining the `app.options.log` property with the configuration retrieved from `app.config.get(\'log\')`.\n\n## Create An HTTP Server with `flatiron.plugins.http(options)`:\n\nThis plugin adds http serving functionality to your flatiron app by attaching the following properties and methods:\n\n### Define Routes with `app.router`:\n\nThis is a [director](https://github.com/flatiron/director) router configured to route http requests after the middlewares in `app.http.before` are applied. Example routes include:\n\n```js\n\n// GET /\napp.router.get(\'/\', function () {\n this.res.writeHead(200, { \'Content-Type\': \'text/plain\' });\n this.res.end(\'Hello world!\\n\');\n});\n\n// POST to /\napp.router.post(\'/\', function () {\n this.res.writeHead(200, { \'Content-Type\': \'text/plain\' });\n this.res.write(\'Hey, you posted some cool data!\\n\');\n this.res.end(util.inspect(this.req.body, true, 2, true) + \'\\n\');\n});\n\n// Parameterized routes\napp.router.get(\'/sandwich/:type\', function (type) {\n if (~[\'bacon\', \'burger\'].indexOf(type)) {\n this.res.writeHead(200, { \'Content-Type\': \'text/plain\' });\n this.res.end(\'Serving \' + type + \' sandwich!\\n\');\n }\n else {\n this.res.writeHead(404, { \'Content-Type\': \'text/plain\' });\n this.res.end(\'No such sandwich, sorry!\\n\');\n }\n});\n```\n\n`app.router` can also route against regular expressions and more! To learn more about director\'s advanced functionality, visit director\'s [project page](https://github.com/flatiron/director#readme).\n\n\n### Access The Server with `app.server`:\n\nThis is a [union](https://github.com/flatiron/union) middleware kernel.\n\n### Modify the Server Options with `app.http`:\n\nThis object contains options that are passed to the union server, including `app.http.before`, `app.http.after` and `app.http.headers`.\n\nThese properties may be set by passing them through as options:\n\n```js\napp.use(flatiron.plugins.http, {\n before: [],\n after: []\n});\n```\n\nYou can read more about these options on the [union project page](https://github.com/flatiron/union#readme).\n\n### Start The Server with `app.start(port, <host>, <callback(err)>)`\n\nThis method will both call `app.init` (which will call any asynchronous initialization steps on loaded plugins) and start the http server with the given arguments. For example, the following will start your flatiron http server on port 8080:\n\n```js\napp.start(8080);\n```\n\n## Create a CLI Application with `flatiron.plugins.cli(options)`\n\nThis plugin turns your app into a cli application framework. For example, [jitsu]\n(https://github.com/nodejitsu/jitsu) uses flatiron and the cli plugin.\n\nValid options include:\n\n```js\n{\n "argvOptions": {}, // A configuration hash passed to the cli argv parser.\n "usage": [ "foo", "bar" ], // A message to show for cli usage. Joins arrays with `\\n`.\n "dir": require(\'path\').join(__dirname, \'lib\', \'commands\'), // A directory with commands to lazy-load\n "notFoundUsage": false // Disable help messages when command not found\n}\n```\n\n### Add lazy-loaded CLI commands with `options.dir` and `app.commands`:\n\n Flatiron CLI will automatically lazy-load modules defining commands in the directory specified by `options.dir`. For example:\n\n```js\n// example2.js\nvar path = require(\'path\'),\n flatiron = require(\'./lib/flatiron\'),\n app = flatiron.app;\n\napp.use(flatiron.plugins.cli, {\n dir: path.join(__dirname, \'cmds\')\n});\n\napp.start();\n```\n\n```js\n// cmd/highfive.js\nvar highfive = module.exports = function highfive (person, cb) {\n this.log.info(\'High five to \' + person + \'!\');\n cb(null);\n};\n```\n\nIn the command, you expose a function of arguments and a callback. `this` is set to `app`, and the routing is taken care of automatically.\n\nHere it is in action:\n\n```\n% node example2.js highfive Flatiron \ninfo: High five to Flatiron!\n```\n\nYou can also define these commands by adding them directly to `app.commands` yourself:\n\n```\n// example2b.js\nvar flatiron = require(\'./lib/flatiron\'),\n app = flatiron.app;\n\nvar path = require(\'path\'),\n flatiron = require(\'./lib/flatiron\'),\n app = flatiron.app;\n\napp.use(flatiron.plugins.cli);\n\napp.commands.highfive = function (person, cb) {\n this.log.info(\'High five to \' + person + \'!\');\n cb(null);\n};\n\napp.start();\n```\n\n```\n% node example2b.js highfive Flatiron \ninfo: High five to Flatiron!\n```\n\nCallback will always be the last argument provided to a function assigned to command\n\n```js\napp.commands.highfive = function (person, cb) {\n this.log.info(\'High five to \' + person + \'!\');\n console.log(arguments);\n}\n```\n\n```\n% node example2b.js highfive Flatiron lol haha\ninfo: High five to Flatiron!\n{\n \'0\': \'Flatiron\',\n \'1\': \'lol\',\n \'2\': \'haha\',\n \'3\': [Function]\n}\n```\n\n### Define Ad-Hoc Commands With `app.cmd(path, handler)`:\n\nThis adds the cli routing path `path` to the app\'s CLI router, using the [director](https://github.com/flatiron/director) route handler `handler`, aliasing `app.router.on`. `cmd` routes are defined the same way as http routes, except that it uses ` ` (a space) for a delimiter instead of `/`.\n\nFor example:\n\n```js\n// example.js\nvar flatiron = require(\'./lib/flatiron\'),\n app = flatiron.app;\n\napp.use(flatiron.plugins.cli, {\n usage: [\n \'usage: node test.js hello <person>\',\n \'\',\n \' This will print "hello <person>"\'\n ]\n});\n\napp.cmd(\'hello :person\', function (person) {\n app.log.info(\'hello \' + person + \'!\');\n});\n\napp.start()\n```\n\nWhen you run this program correctly, it will say hello:\n\n```\n% node example.js hello person\ninfo: hello person!\n```\n\nIf not, you get a friendly usage message:\n\n```\n% node test.js hello\nhelp: usage: node test.js hello <person>\nhelp:\nhelp: This will print "hello <person>"\n```\n\n### Check CLI Arguments with `app.argv`:\n\nOnce your app is started, `app.argv` will contain the [optimist](http://github.com/substack/node-optimist)-parsed argv options hash, ready to go!\n\nHere\'s an example:\n\n```js\n// example3.js\nvar flatiron = require(\'./lib/flatiron\'),\n app = flatiron.app;\n\napp.use(flatiron.plugins.cli);\n\napp.start();\n\napp.log.info(JSON.stringify(app.argv));\n```\n\nThis prints:\n\n```\n% node example3.js\ninfo: {"_":[], "$0": "node ./example3.js"}\n```\n\nAwesome!\n\n### Add a Default Help Command with `options.usage`:\n\nWhen attaching the CLI plugin, just specify options.usage to get a friendly default message for when there aren\'t any matching routes:\n\n```js\n// example4.js\nvar flatiron = require(\'./lib/flatiron\'),\n app = flatiron.app;\n\napp.use(flatiron.plugins.cli, {\n usage: [\n \'Welcome to my app!\',\n \'Your command didn\\\'t do anything.\',\n \'This is expected.\'\n ]\n});\n\napp.start();\n```\n\n```\n% node example4.js \nhelp: Welcome to my app!\nhelp: Your command didn\'t do anything.\nhelp: This is expected.\n```\n\n### Start The Application with `app.start(callback)`:\n\nAs seen in these examples, starting your app is as easy as `app.start`! this method takes a callback, which is called when an `app.command` completes. Here\'s a complete example demonstrating this behavior and how it integrates with `options.usage`:\n\n```js\n// example5.js\nvar path = require(\'path\'),\n flatiron = require(\'./lib/flatiron\'),\n app = flatiron.app;\n\napp.use(flatiron.plugins.cli, {\n usage: [\n \'`node example5.js error`: Throws an error.\',\n \'`node example5.js friendly`: Does not throw an error.\'\n ]\n});\n\napp.commands.error = function (cb) {\n cb(new Error(\'I\\\'m an error!\'));\n};\n\napp.commands.friendly = function (cb) {\n cb(null);\n}\n\napp.start(function (err) {\n if (err) {\n app.log.error(err.message || \'You didn\\\'t call any commands!\');\n app.log.warn(\'NOT OK.\');\n return process.exit(1);\n }\n app.log.info(\'OK.\');\n});\n```\n\nHere\'s how our app behaves:\n\n```\n% node example5.js friendly\ninfo: OK.\n\n% node example5.js error\nerror: I\'m an error!\nwarn: NOT OK.\n\n% node example5.js\nhelp: `node example2b.js error`: Throws an error.\nhelp: `node example2b.js friendly`: Does not throw an error.\nerror: You didn\'t call any commands!\nwarn: NOT OK.\n```\n\n# Read More About Flatiron!\n\n## Articles\n\n* [Scaling Isomorphic Javascript Code](http://blog.nodejitsu.com/scaling-isomorphic-javascript-code)\n* [Introducing Flatiron](http://blog.nodejitsu.com/introducing-flatiron)\n* [Writing CLI Apps with Flatiron](http://blog.jit.su/writing-cli-apps-with-flatiron)\n\n## Sub-Projects\n\n* [Broadway](https://github.com/flatiron/broadway)\n* [Union](https://github.com/flatiron/union)\n* [Director](https://github.com/flatiron/director)\n* [Plates](https://github.com/flatiron/plates)\n* [Resourceful](https://github.com/flatiron/resourceful)\n* [And More](https://github.com/flatiron)!\n\n# Tests\n\nTests are written in vows:\n\n``` bash\n $ npm test\n```\n\n#### Author: [Nodejitsu Inc.](http://nodejitsu.com)\n#### License: MIT\n',
  200. 5030 silly resolved readmeFilename: 'README.md',
  201. 5030 silly resolved _id: 'flatiron@0.3.0',
  202. 5030 silly resolved dist: { shasum: '3a3678f53b95cbca6c8c4aa469cc833ded0a3330' },
  203. 5030 silly resolved _from: 'flatiron@0.3.0',
  204. 5030 silly resolved _resolved: 'https://registry.npmjs.org/flatiron/-/flatiron-0.3.0.tgz' },
  205. 5030 silly resolved { name: 'semver',
  206. 5030 silly resolved version: '1.0.14',
  207. 5030 silly resolved description: 'The semantic version parser used by npm.',
  208. 5030 silly resolved main: 'semver.js',
  209. 5030 silly resolved scripts: { test: 'tap test.js' },
  210. 5030 silly resolved devDependencies: { tap: '0.x >=0.0.4' },
  211. 5030 silly resolved license:
  212. 5030 silly resolved { type: 'MIT',
  213. 5030 silly resolved url: 'https://github.com/isaacs/semver/raw/master/LICENSE' },
  214. 5030 silly resolved repository: { type: 'git', url: 'git://github.com/isaacs/node-semver.git' },
  215. 5030 silly resolved bin: { semver: './bin/semver' },
  216. 5030 silly resolved readme: 'semver(1) -- The semantic versioner for npm\n===========================================\n\n## Usage\n\n $ npm install semver\n\n semver.valid(\'1.2.3\') // true\n semver.valid(\'a.b.c\') // false\n semver.clean(\' =v1.2.3 \') // \'1.2.3\'\n semver.satisfies(\'1.2.3\', \'1.x || >=2.5.0 || 5.0.0 - 7.2.3\') // true\n semver.gt(\'1.2.3\', \'9.8.7\') // false\n semver.lt(\'1.2.3\', \'9.8.7\') // true\n\nAs a command-line utility:\n\n $ semver -h\n\n Usage: semver -v <version> [-r <range>]\n Test if version(s) satisfy the supplied range(s),\n and sort them.\n\n Multiple versions or ranges may be supplied.\n\n Program exits successfully if any valid version satisfies\n all supplied ranges, and prints all satisfying versions.\n\n If no versions are valid, or ranges are not satisfied,\n then exits failure.\n\n Versions are printed in ascending order, so supplying\n multiple versions to the utility will just sort them.\n\n## Versions\n\nA version is the following things, in this order:\n\n* a number (Major)\n* a period\n* a number (minor)\n* a period\n* a number (patch)\n* OPTIONAL: a hyphen, followed by a number (build)\n* OPTIONAL: a collection of pretty much any non-whitespace characters\n (tag)\n\nA leading `"="` or `"v"` character is stripped off and ignored.\n\n## Comparisons\n\nThe ordering of versions is done using the following algorithm, given\ntwo versions and asked to find the greater of the two:\n\n* If the majors are numerically different, then take the one\n with a bigger major number. `2.3.4 > 1.3.4`\n* If the minors are numerically different, then take the one\n with the bigger minor number. `2.3.4 > 2.2.4`\n* If the patches are numerically different, then take the one with the\n bigger patch number. `2.3.4 > 2.3.3`\n* If only one of them has a build number, then take the one with the\n build number. `2.3.4-0 > 2.3.4`\n* If they both have build numbers, and the build numbers are numerically\n different, then take the one with the bigger build number.\n `2.3.4-10 > 2.3.4-9`\n* If only one of them has a tag, then take the one without the tag.\n `2.3.4 > 2.3.4-beta`\n* If they both have tags, then take the one with the lexicographically\n larger tag. `2.3.4-beta > 2.3.4-alpha`\n* At this point, they\'re equal.\n\n## Ranges\n\nThe following range styles are supported:\n\n* `>1.2.3` Greater than a specific version.\n* `<1.2.3` Less than\n* `1.2.3 - 2.3.4` := `>=1.2.3 <=2.3.4`\n* `~1.2.3` := `>=1.2.3 <1.3.0`\n* `~1.2` := `>=1.2.0 <2.0.0`\n* `~1` := `>=1.0.0 <2.0.0`\n* `1.2.x` := `>=1.2.0 <1.3.0`\n* `1.x` := `>=1.0.0 <2.0.0`\n\nRanges can be joined with either a space (which implies "and") or a\n`||` (which implies "or").\n\n## Functions\n\n* valid(v): Return the parsed version, or null if it\'s not valid.\n* inc(v, release): Return the version incremented by the release type\n (major, minor, patch, or build), or null if it\'s not valid.\n\n### Comparison\n\n* gt(v1, v2): `v1 > v2`\n* gte(v1, v2): `v1 >= v2`\n* lt(v1, v2): `v1 < v2`\n* lte(v1, v2): `v1 <= v2`\n* eq(v1, v2): `v1 == v2` This is true if they\'re logically equivalent,\n even if they\'re not the exact same string. You already know how to\n compare strings.\n* neq(v1, v2): `v1 != v2` The opposite of eq.\n* cmp(v1, comparator, v2): Pass in a comparison string, and it\'ll call\n the corresponding function above. `"==="` and `"!=="` do simple\n string comparison, but are included for completeness. Throws if an\n invalid comparison string is provided.\n* compare(v1, v2): Return 0 if v1 == v2, or 1 if v1 is greater, or -1 if\n v2 is greater. Sorts in ascending order if passed to Array.sort().\n* rcompare(v1, v2): The reverse of compare. Sorts an array of versions\n in descending order when passed to Array.sort().\n\n\n### Ranges\n\n* validRange(range): Return the valid range or null if it\'s not valid\n* satisfies(version, range): Return true if the version satisfies the\n range.\n* maxSatisfying(versions, range): Return the highest version in the list\n that satisfies the range, or null if none of them do.\n',
  217. 5030 silly resolved readmeFilename: 'README.md',
  218. 5030 silly resolved _id: 'semver@1.0.14',
  219. 5030 silly resolved dist: { shasum: '4c10294ce6e125a36e967a5074bae874d6d35330' },
  220. 5030 silly resolved _from: 'semver@1.0.14',
  221. 5030 silly resolved _resolved: 'https://registry.npmjs.org/semver/-/semver-1.0.14.tgz' },
  222. 5030 silly resolved { author: { name: 'marak', email: 'marak.squires@gmail.com' },
  223. 5030 silly resolved name: 'wizard',
  224. 5030 silly resolved version: '0.0.1',
  225. 5030 silly resolved main: './lib/wizard',
  226. 5030 silly resolved dependencies: { prompt: '*' },
  227. 5030 silly resolved devDependencies: {},
  228. 5030 silly resolved optionalDependencies: {},
  229. 5030 silly resolved engines: { node: '*' },
  230. 5030 silly resolved readme: '# wizard\n\na configuration tool for node.js apps.\n\n# usage\n\nFirst, run cli app configuration install wizard:\n\n node examples/helloworld/cli-installer.js\n \nSecond, start your app\n\n node examples/helloworld/server.js\n',
  231. 5030 silly resolved readmeFilename: 'README.md',
  232. 5030 silly resolved _id: 'wizard@0.0.1',
  233. 5030 silly resolved description: 'a configuration tool for node.js apps.',
  234. 5030 silly resolved dist: { shasum: '35a269d56039145c7f0f88366709fd4c7fc07697' },
  235. 5030 silly resolved _from: 'wizard@0.0.1',
  236. 5030 silly resolved _resolved: 'https://registry.npmjs.org/wizard/-/wizard-0.0.1.tgz' },
  237. 5030 silly resolved { name: 'nodejitsu-api',
  238. 5030 silly resolved version: '0.3.6',
  239. 5030 silly resolved description: 'nodejitsu API client wrapper',
  240. 5030 silly resolved homepage: 'http://github.com/nodejitsu/nodejitsu-api',
  241. 5030 silly resolved repository:
  242. 5030 silly resolved { type: 'git',
  243. 5030 silly resolved url: 'https://github.com/nodejitsu/nodejitsu-api.git' },
  244. 5030 silly resolved main: './lib/client.js',
  245. 5030 silly resolved scripts: { test: 'vows --spec ./test/commands/*-test.js' },
  246. 5030 silly resolved dependencies: { request: '2.9.203' },
  247. 5030 silly resolved devDependencies: { vows: '0.6.x', nock: '0.10.x' },
  248. 5030 silly resolved author: { name: 'Nodejitsu Inc.', email: 'info@nodejitsu.com' },
  249. 5030 silly resolved maintainers: [ [Object], [Object] ],
  250. 5030 silly resolved readme: '# nodejitsu-api/node.js\n\nThe Node.JS Nodejitsu-api library enables accessing Nodejitsu\'s [RESTful API](https://github.com/nodejitsu/handbook/tree/master/API.md).\n\n## Example:\n\n```js\nvar nj = require(\'nodejitsu-api\'),\n fs = require(\'fs\');\n\nvar client = nj.createClient({\n username: \'marak\',\n password: \'foobar\',\n remoteUri: \'https://api.nodejitsu.com\'\n});\n\nclient.apps.list(function(err, result){\n if (err) {\n console.log(err);\n return;\n }\n console.log(JSON.stringify(result, null, 2, true));\n});\n```\n\n## Install:\n\nThis library may be installed using npm:\n\n npm install nodejitsu-api\n\n## Usage:\n\n\n### api.createClient(options)\n\nThis method sets up a client for connecting to Nodejitsu\'s databases. Here\'s a minimal example for connecting to Nodejitsu\'s API as Marak:\n\n``` js\nvar client = nj.createClient({\n username: \'marak\',\n password: \'foobar\',\n remoteUri: \'https://api.nodejitsu.com\'\n});\n```\n\nThe options object contains three required properties:\n\n* `username`: The username for your Nodejitsu account\n* `password`: The password for your Nodejitsu account\n* `remoteUri`: The uri of the api host (typically [https://api.nodejitsu.com](https://api.nodejitsu.com)).\n\n\n### client\n\nMethod calls are generally structured as `resource` and `action`.\n\n``` js\nclient.resource.action("data", function (err, result) {\n if (err) {\n throw err;\n }\n\n // use the result\n\n});\n```\n\nMost actions take a string argument and a callback, though a few actions only take a callback.\n\nThe client\'s methods are reflective of [jitsu\'s](https://github.com/nodejitsu/jitsu) resources. Here\'s a broad overview:\n\n* **client.apps**: Manage your application instances. Methods include:\n * `apps.available`\n * `apps.list`\n * `apps.start`\n * `apps.stop`\n * `apps.destroy`\n* **client.databases**: Manage your databases. Methods include:\n * `databases.create`\n * `databases.destroy`\n * `databases.list`\n* **client.snapshots**: Manage application snapshots. Methods include:\n * `snapshots.activate`\n * `snapshots.create`\n * `snapshots.destroy`\n * `snapshots.list`\n* **client.logs**: Manage logs from your applications. Methods include:\n * `logs.byApp`\n * `logs.byUser`\n* **client.users**: Manage your nodejitsu acccounts. Methods include:\n * `users.available`\n * `users.create`\n * `users.confirm`\n * `users.forgot`\n * `users.update`\n\nand many more...\n\n## Tests\n\nAll tests are written with [vows](http://vowsjs.org) and should be run with [npm](http://npmjs.org):\n\n``` bash\n $ npm test\n```\n\n## License\n\nMIT.\n',
  251. 5030 silly resolved readmeFilename: 'ReadMe.md',
  252. 5030 silly resolved _id: 'nodejitsu-api@0.3.6',
  253. 5030 silly resolved dist: { shasum: '68abe0ae237bd2f7008b1d7785289962c9064849' },
  254. 5030 silly resolved _from: 'nodejitsu-api@0.3.6',
  255. 5030 silly resolved _resolved: 'https://registry.npmjs.org/nodejitsu-api/-/nodejitsu-api-0.3.6.tgz' },
  256. 5030 silly resolved { name: 'ladder',
  257. 5030 silly resolved author: { name: 'yawnt', email: 'yawn.localhost@gmail.com' },
  258. 5030 silly resolved version: '0.0.0',
  259. 5030 silly resolved scripts: { test: 'mocha -R spec test/*-test.js' },
  260. 5030 silly resolved devDependencies: { 'expect.js': '>= 0.0.0' },
  261. 5030 silly resolved _id: 'ladder@0.0.0',
  262. 5030 silly resolved readme: 'ERROR: No README.md file found!',
  263. 5030 silly resolved description: 'ERROR: No README.md file found!',
  264. 5030 silly resolved dist: { shasum: 'a51618381040f088b20ffe19fdf72c311f4889c6' },
  265. 5030 silly resolved _from: 'ladder@0.0.0',
  266. 5030 silly resolved _resolved: 'https://registry.npmjs.org/ladder/-/ladder-0.0.0.tgz' },
  267. 5030 silly resolved { name: 'progress',
  268. 5030 silly resolved version: '0.1.0',
  269. 5030 silly resolved description: 'Flexible ascii progress bar',
  270. 5030 silly resolved keywords: [ 'cli', 'progress' ],
  271. 5030 silly resolved author: { name: 'TJ Holowaychuk', email: 'tj@vision-media.ca' },
  272. 5030 silly resolved dependencies: {},
  273. 5030 silly resolved main: 'index',
  274. 5030 silly resolved engines: { node: '>=0.4.0' },
  275. 5030 silly resolved readme: '# node-progress\n\n Flexible ascii progress bar\n\n## Installation\n\n npm install progress\n\n## Usage\n\n First we create a `ProgressBar`, giving it a format string\n as well as the `total`, telling the progress bar when it will\n be considered complete. After that all we need to do is `tick()` appropriately. \n\n```javascript\nvar ProgressBar = require(\'progress\');\n\nvar bar = new ProgressBar(\':bar\', { total: 10 });\nvar timer = setInterval(function(){\nbar.tick();\n if (bar.complete) {\n console.log(\'\\ncomplete\\n\');\n clearInterval(timer);\n }\n}, 100);\n```\n\n## Options:\n\n - `total` total number of ticks to complete\n - `stream` the output stream defaulting to stdout\n - `complete` completion character defaulting to "="\n - `incomplete` incomplete character defaulting to "-"\n\n## Tokens:\n\n - `:bar` the progress bar itself\n - `:current` current tick number\n - `:total` total ticks\n - `:elapsed` time elapsed in seconds\n - `:percent` completion percentage\n - `:eta` estimated completion time in seconds\n\n## Examples\n\n### Download\n\n In our download example each tick has a variable influence, so we pass the chunk length which adjusts the progress bar appropriately relative to the total length. \n\n```javascript\nvar ProgressBar = require(\'../\')\n , https = require(\'https\');\n\nvar req = https.request({\n host: \'download.github.com\'\n , port: 443\n , path: \'/visionmedia-node-jscoverage-0d4608a.zip\'\n});\n\nreq.on(\'response\', function(res){\n var len = parseInt(res.headers[\'content-length\'], 10);\n\n console.log();\n var bar = new ProgressBar(\' downloading [:bar] :percent :etas\', {\n complete: \'=\'\n , incomplete: \' \'\n , width: 20\n , total: len\n });\n\n res.on(\'data\', function(chunk){\n bar.tick(chunk.length);\n });\n\n res.on(\'end\', function(){\n console.log(\'\\n\');\n });\n});\n\nreq.end();\n```\n\n The code above will generate a progress bar that looks like this:\n\n```\ndownloading [===== ] 29% 3.7s\n```\n\n\n## License \n\n(The MIT License)\n\nCopyright (c) 2011 TJ Holowaychuk `&lt;tj@vision-media.ca&gt;`\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\'Software\'), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \'AS IS\', WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.',
  276. 5030 silly resolved readmeFilename: 'Readme.md',
  277. 5030 silly resolved _id: 'progress@0.1.0',
  278. 5030 silly resolved dist: { shasum: 'cca7da6cd8233fc6550deeb70c8d3151b39ee378' },
  279. 5030 silly resolved _from: 'progress@0.1.0',
  280. 5030 silly resolved _resolved: 'https://registry.npmjs.org/progress/-/progress-0.1.0.tgz' },
  281. 5030 silly resolved { name: 'opener',
  282. 5030 silly resolved description: 'Opens stuff, like webpages and files and executables, cross-platform',
  283. 5030 silly resolved version: '1.3.0',
  284. 5030 silly resolved author:
  285. 5030 silly resolved { name: 'Domenic Denicola',
  286. 5030 silly resolved email: 'domenic@domenicdenicola.com',
  287. 5030 silly resolved url: 'http://domenicdenicola.com' },
  288. 5030 silly resolved license: 'WTFPL',
  289. 5030 silly resolved repository: { type: 'git', url: 'git://github.com/domenic/opener.git' },
  290. 5030 silly resolved bugs: { url: 'http://github.com/domenic/opener/issues' },
  291. 5030 silly resolved main: 'opener.js',
  292. 5030 silly resolved bin: { opener: 'opener.js' },
  293. 5030 silly resolved scripts: { lint: 'jshint opener.js' },
  294. 5030 silly resolved devDependencies: { jshint: '>= 0.9.0' },
  295. 5030 silly resolved readme: '# It Opens Stuff\r\n\r\nThat is, in your desktop environment. This will make *actual windows pop up*, with stuff in them:\r\n\r\n```bash\r\nnpm install opener -g\r\n\r\nopener http://google.com\r\nopener ./my-file.txt\r\nopener firefox\r\nopener npm run lint\r\n```\r\n\r\nAlso if you want to use it programmatically you can do that too:\r\n\r\n```js\r\nvar opener = require("opener");\r\n\r\nopener("http://google.com");\r\nopener("./my-file.txt");\r\nopener("firefox");\r\nopener("npm run lint");\r\n```\r\n\r\n## Use It for Good\r\n\r\nLike opening the user\'s browser with a test harness in your package\'s test script:\r\n\r\n```json\r\n{\r\n "scripts": {\r\n "test": "opener ./test/runner.html"\r\n },\r\n "devDependencies": {\r\n "opener": "*"\r\n }\r\n}\r\n```\r\n\r\n## Why\r\n\r\nBecause Windows has `start`, Macs have `open`, and *nix has `xdg-open`. At least\r\n[according to some guy on StackOverflow](http://stackoverflow.com/q/1480971/3191). And I like things that work on all\r\nthree. Like Node.js. And Opener.\r\n',
  296. 5030 silly resolved readmeFilename: 'README.md',
  297. 5030 silly resolved _id: 'opener@1.3.0',
  298. 5030 silly resolved dist: { shasum: '6aa13d01ab6c70b0f5b56607ea7105b92eb3ec43' },
  299. 5030 silly resolved _from: 'opener@1.3.x',
  300. 5030 silly resolved _resolved: 'https://registry.npmjs.org/opener/-/opener-1.3.0.tgz' },
  301. 5030 silly resolved { author:
  302. 5030 silly resolved { name: 'Isaac Z. Schlueter',
  303. 5030 silly resolved email: 'i@izs.me',
  304. 5030 silly resolved url: 'http://blog.izs.me/' },
  305. 5030 silly resolved name: 'tar',
  306. 5030 silly resolved description: 'tar for node',
  307. 5030 silly resolved version: '0.1.13',
  308. 5030 silly resolved repository: { type: 'git', url: 'git://github.com/isaacs/node-tar.git' },
  309. 5030 silly resolved main: 'tar.js',
  310. 5030 silly resolved scripts: { test: 'tap test/*.js' },
  311. 5030 silly resolved engines: { node: '~0.5.9 || 0.6 || 0.7 || 0.8' },
  312. 5030 silly resolved dependencies: { inherits: '1.x', 'block-stream': '*', fstream: '~0.1.8' },
  313. 5030 silly resolved devDependencies: { tap: '0.x', rimraf: '1.x' },
  314. 5030 silly resolved readme: '# node-tar\n\nTar for Node.js.\n\n## Goals of this project\n\n1. Be able to parse and reasonably extract the contents of any tar file\n created by any program that creates tar files, period.\n\n At least, this includes every version of:\n\n * bsdtar\n * gnutar\n * solaris posix tar\n * Joerg Schilling\'s star ("Schilly tar")\n\n2. Create tar files that can be extracted by any of the following tar\n programs:\n\n * bsdtar/libarchive version 2.6.2\n * gnutar 1.15 and above\n * SunOS Posix tar\n * Joerg Schilling\'s star ("Schilly tar")\n\n3. 100% test coverage. Speed is important. Correctness is slightly\n more important.\n\n4. Create the kind of tar interface that Node users would want to use.\n\n5. Satisfy npm\'s needs for a portable tar implementation with a\n JavaScript interface.\n\n6. No excuses. No complaining. No tolerance for failure.\n\n## But isn\'t there already a tar.js?\n\nYes, there are a few. This one is going to be better, and it will be\nfanatically maintained, because npm will depend on it.\n\nThat\'s why I need to write it from scratch. Creating and extracting\ntarballs is such a large part of what npm does, I simply can\'t have it\nbe a black box any longer.\n\n## Didn\'t you have something already? Where\'d it go?\n\nIt\'s in the "old" folder. It\'s not functional. Don\'t use it.\n\nIt was a useful exploration to learn the issues involved, but like most\nsoftware of any reasonable complexity, node-tar won\'t be useful until\nit\'s been written at least 3 times.\n',
  315. 5030 silly resolved readmeFilename: 'README.md',
  316. 5030 silly resolved _id: 'tar@0.1.13',
  317. 5030 silly resolved dist: { shasum: 'ff9db8ea6780a8b6081c8ba2976b96a2783edd98' },
  318. 5030 silly resolved _from: 'tar@0.1.13',
  319. 5030 silly resolved _resolved: 'https://registry.npmjs.org/tar/-/tar-0.1.13.tgz' },
  320. 5030 silly resolved { name: 'request',
  321. 5030 silly resolved description: 'Simplified HTTP request client.',
  322. 5030 silly resolved tags: [ 'http', 'simple', 'util', 'utility' ],
  323. 5030 silly resolved version: '2.9.203',
  324. 5030 silly resolved author: { name: 'Mikeal Rogers', email: 'mikeal.rogers@gmail.com' },
  325. 5030 silly resolved repository: { type: 'git', url: 'http://github.com/mikeal/request.git' },
  326. 5030 silly resolved bugs: { url: 'http://github.com/mikeal/request/issues' },
  327. 5030 silly resolved engines: [ 'node >= 0.3.6' ],
  328. 5030 silly resolved main: './main',
  329. 5030 silly resolved scripts: { test: 'node tests/run.js' },
  330. 5030 silly resolved readme: '# Request -- Simplified HTTP request method\n\n## Install\n\n<pre>\n npm install request\n</pre>\n\nOr from source:\n\n<pre>\n git clone git://github.com/mikeal/request.git \n cd request\n npm link\n</pre>\n\n## Super simple to use\n\nRequest is designed to be the simplest way possible to make http calls. It supports HTTPS and follows redirects by default.\n\n```javascript\nvar request = require(\'request\');\nrequest(\'http://www.google.com\', function (error, response, body) {\n if (!error && response.statusCode == 200) {\n console.log(body) // Print the google web page.\n }\n})\n```\n\n## Streaming\n\nYou can stream any response to a file stream.\n\n```javascript\nrequest(\'http://google.com/doodle.png\').pipe(fs.createWriteStream(\'doodle.png\'))\n```\n\nYou can also stream a file to a PUT or POST request. This method will also check the file extension against a mapping of file extensions to content-types, in this case `application/json`, and use the proper content-type in the PUT request if one is not already provided in the headers.\n\n```javascript\nfs.createReadStream(\'file.json\').pipe(request.put(\'http://mysite.com/obj.json\'))\n```\n\nRequest can also pipe to itself. When doing so the content-type and content-length will be preserved in the PUT headers.\n\n```javascript\nrequest.get(\'http://google.com/img.png\').pipe(request.put(\'http://mysite.com/img.png\'))\n```\n\nNow let\'s get fancy.\n\n```javascript\nhttp.createServer(function (req, resp) {\n if (req.url === \'/doodle.png\') {\n if (req.method === \'PUT\') {\n req.pipe(request.put(\'http://mysite.com/doodle.png\'))\n } else if (req.method === \'GET\' || req.method === \'HEAD\') {\n request.get(\'http://mysite.com/doodle.png\').pipe(resp)\n } \n }\n})\n```\n\nYou can also pipe() from a http.ServerRequest instance and to a http.ServerResponse instance. The HTTP method and headers will be sent as well as the entity-body data. Which means that, if you don\'t really care about security, you can do:\n\n```javascript\nhttp.createServer(function (req, resp) {\n if (req.url === \'/doodle.png\') {\n var x = request(\'http://mysite.com/doodle.png\')\n req.pipe(x)\n x.pipe(resp)\n }\n})\n```\n\nAnd since pipe() returns the destination stream in node 0.5.x you can do one line proxying :)\n\n```javascript\nreq.pipe(request(\'http://mysite.com/doodle.png\')).pipe(resp)\n```\n\nAlso, none of this new functionality conflicts with requests previous features, it just expands them.\n\n```javascript\nvar r = request.defaults({\'proxy\':\'http://localproxy.com\'})\n\nhttp.createServer(function (req, resp) {\n if (req.url === \'/doodle.png\') {\n r.get(\'http://google.com/doodle.png\').pipe(resp)\n }\n})\n```\n\nYou can still use intermediate proxies, the requests will still follow HTTP forwards, etc.\n\n## OAuth Signing\n\n```javascript\n// Twitter OAuth\nvar qs = require(\'querystring\')\n , oauth =\n { callback: \'http://mysite.com/callback/\'\n , consumer_key: CONSUMER_KEY\n , consumer_secret: CONSUMER_SECRET\n }\n , url = \'https://api.twitter.com/oauth/request_token\'\n ;\nrequest.post({url:url, oauth:oauth}, function (e, r, body) {\n // Assume by some stretch of magic you aquired the verifier\n var access_token = qs.parse(body)\n , oauth = \n { consumer_key: CONSUMER_KEY\n , consumer_secret: CONSUMER_SECRET\n , token: access_token.oauth_token\n , verifier: VERIFIER\n , token_secret: access_token.oauth_token_secret\n }\n , url = \'https://api.twitter.com/oauth/access_token\'\n ;\n request.post({url:url, oauth:oauth}, function (e, r, body) {\n var perm_token = qs.parse(body)\n , oauth = \n { consumer_key: CONSUMER_KEY\n , consumer_secret: CONSUMER_SECRET\n , token: perm_token.oauth_token\n , token_secret: perm_token.oauth_token_secret\n }\n , url = \'https://api.twitter.com/1/users/show.json?\'\n , params = \n { screen_name: perm_token.screen_name\n , user_id: perm_token.user_id\n }\n ;\n url += qs.stringify(params)\n request.get({url:url, oauth:oauth, json:true}, function (e, r, user) {\n console.log(user)\n })\n })\n})\n```\n\n\n\n### request(options, callback)\n\nThe first argument can be either a url or an options object. The only required option is uri, all others are optional.\n\n* `uri` || `url` - fully qualified uri or a parsed url object from url.parse()\n* `qs` - object containing querystring values to be appended to the uri\n* `method` - http method, defaults to GET\n* `headers` - http headers, defaults to {}\n* `body` - entity body for POST and PUT requests. Must be buffer or string.\n* `form` - sets `body` but to querystring representation of value and adds `Content-type: application/x-www-form-urlencoded; charset=utf-8` header.\n* `json` - sets `body` but to JSON representation of value and adds `Content-type: application/json` header.\n* `multipart` - (experimental) array of objects which contains their own headers and `body` attribute. Sends `multipart/related` request. See example below.\n* `followRedirect` - follow HTTP 3xx responses as redirects. defaults to true.\n* `followAllRedirects` - follow non-GET HTTP 3xx responses as redirects. defaults to false.\n* `maxRedirects` - the maximum number of redirects to follow, defaults to 10.\n* `encoding` - Encoding to be used on `setEncoding` of response data. If set to `null`, the body is returned as a Buffer.\n* `pool` - A hash object containing the agents for these requests. If omitted this request will use the global pool which is set to node\'s default maxSockets.\n* `pool.maxSockets` - Integer containing the maximum amount of sockets in the pool.\n* `timeout` - Integer containing the number of milliseconds to wait for a request to respond before aborting the request\t\n* `proxy` - An HTTP proxy to be used. Support proxy Auth with Basic Auth the same way it\'s supported with the `url` parameter by embedding the auth info in the uri.\n* `oauth` - Options for OAuth HMAC-SHA1 signing, see documentation above.\n* `strictSSL` - Set to `true` to require that SSL certificates be valid. Note: to use your own certificate authority, you need to specify an agent that was created with that ca as an option.\n* `jar` - Set to `false` if you don\'t want cookies to be remembered for future use or define your custom cookie jar (see examples section)\n\n\nThe callback argument gets 3 arguments. The first is an error when applicable (usually from the http.Client option not the http.ClientRequest object). The second in an http.ClientResponse object. The third is the response body String or Buffer.\n\n## Convenience methods\n\nThere are also shorthand methods for different HTTP METHODs and some other conveniences.\n\n### request.defaults(options) \n \nThis method returns a wrapper around the normal request API that defaults to whatever options you pass in to it.\n\n### request.put\n\nSame as request() but defaults to `method: "PUT"`.\n\n```javascript\nrequest.put(url)\n```\n\n### request.post\n\nSame as request() but defaults to `method: "POST"`.\n\n```javascript\nrequest.post(url)\n```\n\n### request.head\n\nSame as request() but defaults to `method: "HEAD"`.\n\n```javascript\nrequest.head(url)\n```\n\n### request.del\n\nSame as request() but defaults to `method: "DELETE"`.\n\n```javascript\nrequest.del(url)\n```\n\n### request.get\n\nAlias to normal request method for uniformity.\n\n```javascript\nrequest.get(url)\n```\n### request.cookie\n\nFunction that creates a new cookie.\n\n```javascript\nrequest.cookie(\'cookie_string_here\')\n```\n### request.jar\n\nFunction that creates a new cookie jar.\n\n```javascript\nrequest.jar()\n```\n\n\n## Examples:\n\n```javascript\n var request = require(\'request\')\n , rand = Math.floor(Math.random()*100000000).toString()\n ;\n request(\n { method: \'PUT\'\n , uri: \'http://mikeal.iriscouch.com/testjs/\' + rand\n , multipart: \n [ { \'content-type\': \'application/json\'\n , body: JSON.stringify({foo: \'bar\', _attachments: {\'message.txt\': {follows: true, length: 18, \'content_type\': \'text/plain\' }}})\n }\n , { body: \'I am an attachment\' }\n ] \n }\n , function (error, response, body) {\n if(response.statusCode == 201){\n console.log(\'document saved as: http://mikeal.iriscouch.com/testjs/\'+ rand)\n } else {\n console.log(\'error: \'+ response.statusCode)\n console.log(body)\n }\n }\n )\n```\nCookies are enabled by default (so they can be used in subsequent requests). To disable cookies set jar to false (either in defaults or in the options sent).\n\n```javascript\nvar request = request.defaults({jar: false})\nrequest(\'http://www.google.com\', function () {\n request(\'http://images.google.com\')\n})\n```\n\nIf you to use a custom cookie jar (instead of letting request use its own global cookie jar) you do so by setting the jar default or by specifying it as an option:\n\n```javascript\nvar j = request.jar()\nvar request = request.defaults({jar:j})\nrequest(\'http://www.google.com\', function () {\n request(\'http://images.google.com\')\n})\n```\nOR\n\n```javascript\nvar j = request.jar()\nvar cookie = request.cookie(\'your_cookie_here\')\nj.add(cookie)\nrequest({url: \'http://www.google.com\', jar: j}, function () {\n request(\'http://images.google.com\')\n})\n```\n',
  331. 5030 silly resolved readmeFilename: 'README.md',
  332. 5030 silly resolved _id: 'request@2.9.203',
  333. 5030 silly resolved dist: { shasum: '1fef55b6a822eb3c46a9d7abf7a1a869840d5a93' },
  334. 5030 silly resolved _from: 'request@2.9.203',
  335. 5030 silly resolved _resolved: 'https://registry.npmjs.org/request/-/request-2.9.203.tgz' },
  336. 5030 silly resolved { name: 'require-analyzer',
  337. 5030 silly resolved description: 'Determine dependencies for a given node.js file, directory tree, or module in code or on the command line',
  338. 5030 silly resolved version: '0.5.0',
  339. 5030 silly resolved author: { name: 'Nodejitsu Inc.', email: 'info@nodejitsu.com' },
  340. 5030 silly resolved maintainers: [ [Object], [Object] ],
  341. 5030 silly resolved repository:
  342. 5030 silly resolved { type: 'git',
  343. 5030 silly resolved url: 'http://github.com/nodejitsu/require-analyzer.git' },
  344. 5030 silly resolved dependencies:
  345. 5030 silly resolved { colors: '0.x.x',
  346. 5030 silly resolved optimist: '0.3.x',
  347. 5030 silly resolved semver: '1.0.x',
  348. 5030 silly resolved winston: '0.6.x',
  349. 5030 silly resolved detective: '0.0.x',
  350. 5030 silly resolved resolve: '0.2.x',
  351. 5030 silly resolved eyes: '0.1.x',
  352. 5030 silly resolved 'read-installed': '0.0.x' },
  353. 5030 silly resolved devDependencies: { vows: '0.6.x' },
  354. 5030 silly resolved main: './lib/require-analyzer',
  355. 5030 silly resolved bin: { 'require-analyzer': './bin/require-analyzer' },
  356. 5030 silly resolved engines: { node: '>= 0.4.0' },
  357. 5030 silly resolved scripts: { test: 'vows test/*-test.js --spec' },
  358. 5030 silly resolved readme: '# require-analyzer\n\nDetermine dependencies for a given node.js file, directory tree, or module in code or on the command line\n\n# Status\n[![Build Status](https://secure.travis-ci.org/nodejitsu/require-analyzer.png)](http://travis-ci.org/nodejitsu/require-analyzer)\n\n## Installation\n\n### Installing npm (node package manager)\n<pre>\n curl http://npmjs.org/install.sh | sh\n</pre>\n\n### Installing require-analyzer\n<pre>\n [sudo] npm install require-analyzer\n</pre>\nNOTE: If you\'re using `npm >= 1.0` then you need to add the `-g` parameter to install `require-analyzer` globally.\n\n## Usage\nThere are two distinct ways to use the `require-analyzer` library: from the command line or through code. The command line tool is designed to work with `package.json` files so make sure that you have created one for your project first. Checkout [jitsu][0] for a quick and easy way to create a package.json.\n\nFor more information read our blog post at [blog.nodejitsu.com][1].\n\n### Command-line usage\nUsing require-analyzer from the command line is easy. The binary will attempt to read the `package.json` file in the current directory, then analyze the dependencies and cross reference the result. \n<pre>\n $ require-analyzer --help\n usage: require-analyzer [options] [directory]\n\n Analyzes the node.js requirements for the target directory. If no directory\n is supplied then the current directory is used\n\n options:\n --update Update versions for existing dependencies\n -h, --help You\'re staring at it\n</pre>\n\nHere\'s a sample of `require-analyzer` analyzing it\'s own dependencies:\n<pre>\n $ require-analyzer\n info: require-analyzer starting in /Users/Charlie/Nodejitsu/require-analyzer\n warn: No dependencies found\n info: Analyzing dependencies...\n info: Done analyzing raw dependencies\n info: Retrieved packages from npm\n info: Additional dependencies found\n data: {\n data: findit: \'>= 0.0.3\',\n data: npm: \'>= 0.3.18\'\n data: }\n info: Updating /Users/Charlie/Nodejitsu/require-analyzer/package.json\n info: require-analyzer updated package.json dependencies\n</pre>\n\n### Programmatic usage\nThe easiest way to use `require-analyzer` programmatically is through the `.analyze()` method. This method will use `fs.stat()` on the path supplied and attempt one of three options:\n\n1. If it is a directory that has a package.json, analyze `require` statements from `package.main`\n2. If it is a directory with no package.json analyze every `.js` or `.coffee` file in the directory tree \n3. If it is a file, then analyze `require` statements from that individual file.\n\nLets dive into a quick sample usage:\n\n```javascript\n var analyzer = require(\'require-analyzer\');\n \n var options = {\n target: \'path/to/your/dependency\' // e.g /Users/some-user/your-package\n reduce: true\n };\n \n var deps = analyzer.analyze(options, function (err, pkgs) {\n //\n // Log all packages that were discovered\n //\n console.dir(pkgs);\n });\n \n //\n // The call the `.analyze()` returns an `EventEmitter` which outputs\n // data at various stages of the analysis operation.\n //\n deps.on(\'dependencies\', function (raw) {\n //\n // Log the raw list of dependencies (no versions)\n //\n console.dir(raw);\n });\n \n deps.on(\'search\', function (pkgs) {\n //\n // Log the results from the npm search operation with the current\n // active version for each dependency\n //\n console.dir(pkgs);\n });\n \n deps.on(\'reduce\', function (reduced) {\n //\n // Logs the dependencies after they have been cross-referenced with \n // sibling dependencies. (i.e. if \'foo\' requires \'bar\', \'bar\' will be removed).\n //\n console.dir(reduced);\n });\n```\n\n### Further analyzing dependencies\nSometimes when dealing with dependencies it is necessary to further analyze the dependencies that are returned. `require-analyzer` has a convenience method for doing just this:\n\n```javascript\n var analyzer = require(\'require-analyzer\');\n \n var current = {\n \'foo\': \'>= 0.1.0\'\n };\n \n var updated = {\n \'foo\': \'>= 0.2.0\',\n \'bar\': \'>= 0.1.0\'\n };\n \n var updates = analyzer.updates(current, updated);\n \n //\n // This will return an object literal with the differential\n // updates between the two sets of dependencies:\n //\n // {\n // added: { \'bar\': \'>= 0.1.0\' },\n // updated: { \'foo\': \'>= 0.2.0\' }\n // }\n //\n```\n\n## Tests\n<pre>\n npm test\n</pre>\n\n#### Author: [Charlie Robbins][2]\n\n[0]: http://github.com/nodejitsu/jitsu\n[1]: http://blog.nodejitsu.com/analyze-nodejs-dependencies-like-magic\n[2]: http://nodejitsu.com',
  359. 5030 silly resolved readmeFilename: 'README.md',
  360. 5030 silly resolved _id: 'require-analyzer@0.5.0',
  361. 5030 silly resolved dist: { shasum: '208596ec9e47cb21220e1339bb48c1ef12928594' },
  362. 5030 silly resolved _from: 'require-analyzer@0.5.0',
  363. 5030 silly resolved _resolved: 'https://registry.npmjs.org/require-analyzer/-/require-analyzer-0.5.0.tgz' },
  364. 5030 silly resolved { version: '1.1.59',
  365. 5030 silly resolved name: 'npm',
  366. 5030 silly resolved publishConfig: { 'proprietary-attribs': false },
  367. 5030 silly resolved description: 'A package manager for node',
  368. 5030 silly resolved keywords: [ 'package manager', 'modules', 'install', 'package.json' ],
  369. 5030 silly resolved preferGlobal: true,
  370. 5030 silly resolved config: { publishtest: false },
  371. 5030 silly resolved homepage: 'http://npmjs.org/',
  372. 5030 silly resolved author:
  373. 5030 silly resolved { name: 'Isaac Z. Schlueter',
  374. 5030 silly resolved email: 'i@izs.me',
  375. 5030 silly resolved url: 'http://blog.izs.me' },
  376. 5030 silly resolved repository: { type: 'git', url: 'https://github.com/isaacs/npm' },
  377. 5030 silly resolved bugs:
  378. 5030 silly resolved { email: 'npm-@googlegroups.com',
  379. 5030 silly resolved url: 'http://github.com/isaacs/npm/issues' },
  380. 5030 silly resolved directories: { doc: './doc', man: './man', lib: './lib', bin: './bin' },
  381. 5030 silly resolved main: './lib/npm.js',
  382. 5030 silly resolved bin: { npm: './bin/npm-cli.js' },
  383. 5030 silly resolved dependencies:
  384. 5030 silly resolved { semver: '~1.0.14',
  385. 5030 silly resolved ini: '1',
  386. 5030 silly resolved slide: '1',
  387. 5030 silly resolved abbrev: '1',
  388. 5030 silly resolved 'graceful-fs': '~1.1.1',
  389. 5030 silly resolved minimatch: '~0.2.6',
  390. 5030 silly resolved nopt: '~2.0',
  391. 5030 silly resolved rimraf: '2',
  392. 5030 silly resolved request: '~2.9',
  393. 5030 silly resolved which: '1',
  394. 5030 silly resolved tar: '~0.1.12',
  395. 5030 silly resolved fstream: '~0.1.17',
  396. 5030 silly resolved 'block-stream': '*',
  397. 5030 silly resolved inherits: '1',
  398. 5030 silly resolved mkdirp: '~0.3.3',
  399. 5030 silly resolved read: '~1.0.4',
  400. 5030 silly resolved 'lru-cache': '~2.0.0',
  401. 5030 silly resolved 'node-gyp': '~0.6.4',
  402. 5030 silly resolved 'fstream-npm': '0.1',
  403. 5030 silly resolved 'uid-number': '0',
  404. 5030 silly resolved archy: '0',
  405. 5030 silly resolved chownr: '0',
  406. 5030 silly resolved npmlog: '0',
  407. 5030 silly resolved ansi: '~0.1.2',
  408. 5030 silly resolved 'npm-registry-client': '~0.2.6',
  409. 5030 silly resolved 'read-package-json': '~0.1.3',
  410. 5030 silly resolved 'read-installed': '0',
  411. 5030 silly resolved glob: '~3.1.12',
  412. 5030 silly resolved 'init-package-json': '0',
  413. 5030 silly resolved osenv: '0',
  414. 5030 silly resolved lockfile: '>=0.2',
  415. 5030 silly resolved retry: '~0.6.0',
  416. 5030 silly resolved 'couch-login': '~0.1.9',
  417. 5030 silly resolved once: '~1.1.1',
  418. 5030 silly resolved npmconf: '0' },
  419. 5030 silly resolved bundleDependencies:
  420. 5030 silly resolved [ 'semver',
  421. 5030 silly resolved 'ini',
  422. 5030 silly resolved 'slide',
  423. 5030 silly resolved 'abbrev',
  424. 5030 silly resolved 'graceful-fs',
  425. 5030 silly resolved 'minimatch',
  426. 5030 silly resolved 'nopt',
  427. 5030 silly resolved 'rimraf',
  428. 5030 silly resolved 'request',
  429. 5030 silly resolved 'which',
  430. 5030 silly resolved 'tar',
  431. 5030 silly resolved 'fstream',
  432. 5030 silly resolved 'block-stream',
  433. 5030 silly resolved 'inherits',
  434. 5030 silly resolved 'mkdirp',
  435. 5030 silly resolved 'read',
  436. 5030 silly resolved 'lru-cache',
  437. 5030 silly resolved 'node-gyp',
  438. 5030 silly resolved 'fstream-npm',
  439. 5030 silly resolved 'uid-number',
  440. 5030 silly resolved 'archy',
  441. 5030 silly resolved 'chownr',
  442. 5030 silly resolved 'npmlog',
  443. 5030 silly resolved 'ansi',
  444. 5030 silly resolved 'npm-registry-client',
  445. 5030 silly resolved 'read-package-json',
  446. 5030 silly resolved 'read-installed',
  447. 5030 silly resolved 'glob',
  448. 5030 silly resolved 'init-package-json',
  449. 5030 silly resolved 'osenv',
  450. 5030 silly resolved 'lockfile',
  451. 5030 silly resolved 'retry',
  452. 5030 silly resolved 'couch-login',
  453. 5030 silly resolved 'once',
  454. 5030 silly resolved 'npmconf' ],
  455. 5030 silly resolved devDependencies: { ronn: '~0.3.6', tap: '~0.2.5' },
  456. 5030 silly resolved engines: { node: '>=0.6', npm: '1' },
  457. 5030 silly resolved scripts:
  458. 5030 silly resolved { test: 'node ./test/run.js && tap test/tap/*.js',
  459. 5030 silly resolved prepublish: 'npm prune ; make -j4 doc',
  460. 5030 silly resolved dumpconf: 'env | grep npm | sort | uniq',
  461. 5030 silly resolved echo: 'node bin/npm-cli.js' },
  462. 5030 silly resolved licenses: [ [Object] ],
  463. 5030 silly resolved contributors:
  464. 5030 silly resolved [ [Object],
  465. 5030 silly resolved [Object],
  466. 5030 silly resolved [Object],
  467. 5030 silly resolved [Object],
  468. 5030 silly resolved [Object],
  469. 5030 silly resolved [Object],
  470. 5030 silly resolved [Object],
  471. 5030 silly resolved [Object],
  472. 5030 silly resolved [Object],
  473. 5030 silly resolved [Object],
  474. 5030 silly resolved [Object],
  475. 5030 silly resolved [Object],
  476. 5030 silly resolved [Object],
  477. 5030 silly resolved [Object],
  478. 5030 silly resolved [Object],
  479. 5030 silly resolved [Object],
  480. 5030 silly resolved [Object],
  481. 5030 silly resolved [Object],
  482. 5030 silly resolved [Object],
  483. 5030 silly resolved [Object],
  484. 5030 silly resolved [Object],
  485. 5030 silly resolved [Object],
  486. 5030 silly resolved [Object],
  487. 5030 silly resolved [Object],
  488. 5030 silly resolved [Object],
  489. 5030 silly resolved [Object],
  490. 5030 silly resolved [Object],
  491. 5030 silly resolved [Object],
  492. 5030 silly resolved [Object],
  493. 5030 silly resolved [Object],
  494. 5030 silly resolved [Object],
  495. 5030 silly resolved [Object],
  496. 5030 silly resolved [Object],
  497. 5030 silly resolved [Object],
  498. 5030 silly resolved [Object],
  499. 5030 silly resolved [Object],
  500. 5030 silly resolved [Object],
  501. 5030 silly resolved [Object],
  502. 5030 silly resolved [Object],
  503. 5030 silly resolved [Object],
  504. 5030 silly resolved [Object],
  505. 5030 silly resolved [Object],
  506. 5030 silly resolved [Object],
  507. 5030 silly resolved [Object],
  508. 5030 silly resolved [Object],
  509. 5030 silly resolved [Object],
  510. 5030 silly resolved [Object],
  511. 5030 silly resolved [Object],
  512. 5030 silly resolved [Object],
  513. 5030 silly resolved [Object],
  514. 5030 silly resolved [Object],
  515. 5030 silly resolved [Object],
  516. 5030 silly resolved [Object],
  517. 5030 silly resolved [Object],
  518. 5030 silly resolved [Object],
  519. 5030 silly resolved [Object],
  520. 5030 silly resolved [Object],
  521. 5030 silly resolved [Object],
  522. 5030 silly resolved [Object],
  523. 5030 silly resolved [Object],
  524. 5030 silly resolved [Object],
  525. 5030 silly resolved [Object],
  526. 5030 silly resolved [Object],
  527. 5030 silly resolved [Object],
  528. 5030 silly resolved [Object],
  529. 5030 silly resolved [Object],
  530. 5030 silly resolved [Object],
  531. 5030 silly resolved [Object],
  532. 5030 silly resolved [Object],
  533. 5030 silly resolved [Object],
  534. 5030 silly resolved [Object],
  535. 5030 silly resolved [Object],
  536. 5030 silly resolved [Object],
  537. 5030 silly resolved [Object],
  538. 5030 silly resolved [Object],
  539. 5030 silly resolved [Object],
  540. 5030 silly resolved [Object],
  541. 5030 silly resolved [Object] ],
  542. 5030 silly resolved man:
  543. 5030 silly resolved [ '/root/.npm/npm/1.1.59/package/man/man1/README.1',
  544. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man1/adduser.1',
  545. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man1/author.1',
  546. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man1/bin.1',
  547. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man1/bugs.1',
  548. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man1/build.1',
  549. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man1/bundle.1',
  550. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man1/cache.1',
  551. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man1/changelog.1',
  552. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man1/coding-style.1',
  553. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man1/completion.1',
  554. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man1/config.1',
  555. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man1/dedupe.1',
  556. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man1/deprecate.1',
  557. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man1/developers.1',
  558. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man1/disputes.1',
  559. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man1/docs.1',
  560. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man1/edit.1',
  561. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man1/explore.1',
  562. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man1/faq.1',
  563. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man1/find.1',
  564. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man1/folders.1',
  565. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man1/get.1',
  566. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man1/global.1',
  567. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man1/help-search.1',
  568. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man1/help.1',
  569. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man1/home.1',
  570. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man1/index.1',
  571. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man1/init.1',
  572. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man1/install.1',
  573. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man1/json.1',
  574. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man1/link.1',
  575. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man1/list.1',
  576. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man1/ln.1',
  577. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man1/ls.1',
  578. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man1/npm.1',
  579. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man1/outdated.1',
  580. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man1/owner.1',
  581. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man1/pack.1',
  582. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man1/prefix.1',
  583. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man1/prune.1',
  584. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man1/publish.1',
  585. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man1/rebuild.1',
  586. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man1/registry.1',
  587. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man1/removing-npm.1',
  588. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man1/restart.1',
  589. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man1/rm.1',
  590. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man1/root.1',
  591. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man1/run-script.1',
  592. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man1/scripts.1',
  593. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man1/search.1',
  594. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man1/semver.1',
  595. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man1/set.1',
  596. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man1/shrinkwrap.1',
  597. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man1/star.1',
  598. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man1/start.1',
  599. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man1/stop.1',
  600. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man1/submodule.1',
  601. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man1/tag.1',
  602. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man1/test.1',
  603. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man1/uninstall.1',
  604. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man1/unpublish.1',
  605. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man1/update.1',
  606. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man1/version.1',
  607. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man1/view.1',
  608. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man1/whoami.1',
  609. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man3/author.3',
  610. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man3/bin.3',
  611. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man3/bugs.3',
  612. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man3/commands.3',
  613. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man3/config.3',
  614. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man3/deprecate.3',
  615. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man3/docs.3',
  616. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man3/edit.3',
  617. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man3/explore.3',
  618. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man3/find.3',
  619. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man3/get.3',
  620. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man3/help-search.3',
  621. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man3/home.3',
  622. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man3/init.3',
  623. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man3/install.3',
  624. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man3/link.3',
  625. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man3/list.3',
  626. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man3/ln.3',
  627. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man3/load.3',
  628. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man3/ls.3',
  629. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man3/npm.3',
  630. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man3/outdated.3',
  631. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man3/owner.3',
  632. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man3/pack.3',
  633. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man3/prefix.3',
  634. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man3/prune.3',
  635. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man3/publish.3',
  636. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man3/rebuild.3',
  637. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man3/restart.3',
  638. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man3/rm.3',
  639. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man3/root.3',
  640. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man3/run-script.3',
  641. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man3/search.3',
  642. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man3/set.3',
  643. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man3/shrinkwrap.3',
  644. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man3/start.3',
  645. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man3/stop.3',
  646. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man3/submodule.3',
  647. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man3/tag.3',
  648. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man3/test.3',
  649. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man3/uninstall.3',
  650. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man3/unpublish.3',
  651. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man3/update.3',
  652. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man3/version.3',
  653. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man3/view.3',
  654. 5030 silly resolved '/root/.npm/npm/1.1.59/package/man/man3/whoami.3' ],
  655. 5030 silly resolved readme: 'npm(1) -- node package manager\n==============================\n\n## SYNOPSIS\n\nThis is just enough info to get you up and running.\n\nMuch more info available via `npm help` once it\'s installed.\n\n## IMPORTANT\n\n**You need node v0.6 or higher to run this program.**\n\nTo install an old **and unsupported** version of npm that works on node 0.3\nand prior, clone the git repo and dig through the old tags and branches.\n\n## Super Easy Install\n\nnpm comes with node now.\n\n### Windows Computers\n\nGet the MSI. npm is in it.\n\n### Apple Macintosh Computers\n\nGet the pkg. npm is in it.\n\n### Other Sorts of Unices\n\nRun `make install`. npm will be installed with node.\n\nIf you want a more fancy pants install (a different version, customized\npaths, etc.) then read on.\n\n## Fancy Install (Unix)\n\nThere\'s a pretty robust install script at\n<https://npmjs.org/install.sh>. You can download that and run it.\n\n### Slightly Fancier\n\nYou can set any npm configuration params with that script:\n\nnpm_config_prefix=/some/path sh install.sh\n\nOr, you can run it in uber-debuggery mode:\n\nnpm_debug=1 sh install.sh\n\n### Even Fancier\n\nGet the code with git. Use `make` to build the docs and do other stuff.\nIf you plan on hacking on npm, `make link` is your friend.\n\nIf you\'ve got the npm source code, you can also semi-permanently set\narbitrary config keys using the `./configure --key=val ...`, and then\nrun npm commands by doing `node cli.js <cmd> <args>`. (This is helpful\nfor testing, or running stuff without actually installing npm itself.)\n\n## Fancy Windows Install\n\nYou can download a zip file from <http://npmjs.org/dist/>, and unpack it\nin the same folder where node.exe lives.\n\nIf that\'s not fancy enough for you, then you can fetch the code with\ngit, and mess with it directly.\n\n## Installing on Cygwin\n\nNo.\n\n## Permissions when Using npm to Install Other Stuff\n\n**tl;dr**\n\n* Use `sudo` for greater safety. Or don\'t, if you prefer not to.\n* npm will downgrade permissions if it\'s root before running any build\n scripts that package authors specified.\n\n### More details...\n\nAs of version 0.3, it is recommended to run npm as root.\nThis allows npm to change the user identifier to the `nobody` user prior\nto running any package build or test commands.\n\nIf you are not the root user, or if you are on a platform that does not\nsupport uid switching, then npm will not attempt to change the userid.\n\nIf you would like to ensure that npm **always** runs scripts as the\n"nobody" user, and have it fail if it cannot downgrade permissions, then\nset the following configuration param:\n\n npm config set unsafe-perm false\n\nThis will prevent running in unsafe mode, even as non-root users.\n\n## Uninstalling\n\nSo sad to see you go.\n\n sudo npm uninstall npm -g\n\nOr, if that fails,\n\n sudo make uninstall\n\n## More Severe Uninstalling\n\nUsually, the above instructions are sufficient. That will remove\nnpm, but leave behind anything you\'ve installed.\n\nIf you would like to remove all the packages that you have installed,\nthen you can use the `npm ls` command to find them, and then `npm rm` to\nremove them.\n\nTo remove cruft left behind by npm 0.x, you can use the included\n`clean-old.sh` script file. You can run it conveniently like this:\n\n npm explore npm -g -- sh scripts/clean-old.sh\n\nnpm uses two configuration files, one for per-user configs, and another\nfor global (every-user) configs. You can view them by doing:\n\n npm config get userconfig # defaults to ~/.npmrc\n npm config get globalconfig # defaults to /usr/local/etc/npmrc\n\nUninstalling npm does not remove configuration files by default. You\nmust remove them yourself manually if you want them gone. Note that\nthis means that future npm installs will not remember the settings that\nyou have chosen.\n\n## Using npm Programmatically\n\nIf you would like to use npm programmatically, you can do that.\nIt\'s not very well documented, but it *is* rather simple.\n\nMost of the time, unless you actually want to do all the things that\nnpm does, you should try using one of npm\'s dependencies rather than\nusing npm itself, if possible.\n\nEventually, npm will be just a thin cli wrapper around the modules\nthat it depends on, but for now, there are some things that you must\nuse npm itself to do.\n\n var npm = require("npm")\n npm.load(myConfigObject, function (er) {\n if (er) return handlError(er)\n npm.commands.install(["some", "args"], function (er, data) {\n if (er) return commandFailed(er)\n // command succeeded, and data might have some info\n })\n npm.on("log", function (message) { .... })\n })\n\nThe `load` function takes an object hash of the command-line configs.\nThe various `npm.commands.<cmd>` functions take an **array** of\npositional argument **strings**. The last argument to any\n`npm.commands.<cmd>` function is a callback. Some commands take other\noptional arguments. Read the source.\n\nYou cannot set configs individually for any single npm function at this\ntime. Since `npm` is a singleton, any call to `npm.config.set` will\nchange the value for *all* npm commands in that process.\n\nSee `./bin/npm-cli.js` for an example of pulling config values off of the\ncommand line arguments using nopt. You may also want to check out `npm\nhelp config` to learn about all the options you can set there.\n\n## More Docs\n\nCheck out the [docs](http://npmjs.org/doc/),\nespecially the [faq](http://npmjs.org/doc/faq.html).\n\nYou can use the `npm help` command to read any of them.\n\nIf you\'re a developer, and you want to use npm to publish your program,\nyou should [read this](http://npmjs.org/doc/developers.html)\n\n## Legal Stuff\n\n"npm" and "the npm registry" are owned by Isaac Z. Schlueter. All\nrights not explicitly granted in the MIT license are reserved. See the\nincluded LICENSE file for more details.\n\n"Node.js" and "node" are trademarks owned by Joyent, Inc. npm is not\nofficially part of the Node.js project, and is neither owned by nor\nofficially affiliated with Joyent, Inc.\n\nThe packages in the npm registry are not part of npm itself, and are the\nsole property of their respective maintainers. While every effort is\nmade to ensure accountability, there is absolutely no guarantee,\nwarrantee, or assertion made as to the quality, fitness for a specific\npurpose, or lack of malice in any given npm package. Modules\npublished on the npm registry are not affiliated with or endorsed by\nJoyent, Inc., Isaac Z. Schlueter, Ryan Dahl, or the Node.js project.\n\nIf you have a complaint about a package in the npm registry, and cannot\nresolve it with the package owner, please express your concerns to\nIsaac Z. Schlueter at <i@izs.me>.\n\n### In plain english\n\nThis is mine; not my employer\'s, not Node\'s, not Joyent\'s, not Ryan\nDahl\'s.\n\nIf you publish something, it\'s yours, and you are solely accountable\nfor it. Not me, not Node, not Joyent, not Ryan Dahl.\n\nIf other people publish something, it\'s theirs. Not mine, not Node\'s,\nnot Joyent\'s, not Ryan Dahl\'s.\n\nYes, you can publish something evil. It will be removed promptly if\nreported, and we\'ll lose respect for you. But there is no vetting\nprocess for published modules.\n\nIf this concerns you, inspect the source before using packages.\n\n## BUGS\n\nWhen you find issues, please report them:\n\n* web:\n <http://github.com/isaacs/npm/issues>\n* email:\n <npm-@googlegroups.com>\n\nBe sure to include *all* of the output from the npm command that didn\'t work\nas expected. The `npm-debug.log` file is also helpful to provide.\n\nYou can also look for isaacs in #node.js on irc://irc.freenode.net. He\nwill no doubt tell you to put the output in a gist or email.\n\n## SEE ALSO\n\n* npm(1)\n* npm-faq(1)\n* npm-help(1)\n* npm-index(1)\n',
  656. 5030 silly resolved readmeFilename: 'README.md',
  657. 5030 silly resolved _id: 'npm@1.1.59',
  658. 5030 silly resolved dist: { shasum: 'a906fca917795d268b4799718027f2a2e93241e1' },
  659. 5030 silly resolved _from: 'npm@1.1.59',
  660. 5030 silly resolved _resolved: 'https://registry.npmjs.org/npm/-/npm-1.1.59.tgz' } ]
  661. 5031 info install dateformat@1.0.2-1.2.3 into /usr/lib/node_modules/jitsu
  662. 5032 info install colors@0.6.0-1 into /usr/lib/node_modules/jitsu
  663. 5033 info install complete@0.3.1 into /usr/lib/node_modules/jitsu
  664. 5034 info install flatiron-cli-config@0.1.3 into /usr/lib/node_modules/jitsu
  665. 5035 info install fstream-npm@0.1.1 into /usr/lib/node_modules/jitsu
  666. 5036 info install flatiron-cli-users@0.1.3 into /usr/lib/node_modules/jitsu
  667. 5037 info install fstream@0.1.18 into /usr/lib/node_modules/jitsu
  668. 5038 info install pkginfo@0.2.3 into /usr/lib/node_modules/jitsu
  669. 5039 info install spawn-command@0.0.2 into /usr/lib/node_modules/jitsu
  670. 5040 info install flatiron@0.3.0 into /usr/lib/node_modules/jitsu
  671. 5041 info install semver@1.0.14 into /usr/lib/node_modules/jitsu
  672. 5042 info install wizard@0.0.1 into /usr/lib/node_modules/jitsu
  673. 5043 info install nodejitsu-api@0.3.6 into /usr/lib/node_modules/jitsu
  674. 5044 info install ladder@0.0.0 into /usr/lib/node_modules/jitsu
  675. 5045 info install progress@0.1.0 into /usr/lib/node_modules/jitsu
  676. 5046 info install opener@1.3.0 into /usr/lib/node_modules/jitsu
  677. 5047 info install tar@0.1.13 into /usr/lib/node_modules/jitsu
  678. 5048 info install request@2.9.203 into /usr/lib/node_modules/jitsu
  679. 5049 info install require-analyzer@0.5.0 into /usr/lib/node_modules/jitsu
  680. 5050 info install npm@1.1.59 into /usr/lib/node_modules/jitsu
  681. 5051 info installOne dateformat@1.0.2-1.2.3
  682. 5052 info installOne colors@0.6.0-1
  683. 5053 info installOne complete@0.3.1
  684. 5054 info installOne flatiron-cli-config@0.1.3
  685. 5055 info installOne fstream-npm@0.1.1
  686. 5056 info installOne flatiron-cli-users@0.1.3
  687. 5057 info installOne fstream@0.1.18
  688. 5058 info installOne pkginfo@0.2.3
  689. 5059 info installOne spawn-command@0.0.2
  690. 5060 info installOne flatiron@0.3.0
  691. 5061 info installOne semver@1.0.14
  692. 5062 info installOne wizard@0.0.1
  693. 5063 info installOne nodejitsu-api@0.3.6
  694. 5064 info installOne ladder@0.0.0
  695. 5065 info installOne progress@0.1.0
  696. 5066 info installOne opener@1.3.0
  697. 5067 info installOne tar@0.1.13
  698. 5068 info installOne request@2.9.203
  699. 5069 info installOne require-analyzer@0.5.0
  700. 5070 info installOne npm@1.1.59
  701. 5071 verbose from cache /root/.npm/dateformat/1.0.2-1.2.3/package/package.json
  702. 5072 verbose from cache /root/.npm/colors/0.6.0-1/package/package.json
  703. 5073 verbose from cache /root/.npm/complete/0.3.1/package/package.json
  704. 5074 verbose from cache /root/.npm/flatiron-cli-config/0.1.3/package/package.json
  705. 5075 verbose from cache /root/.npm/fstream-npm/0.1.1/package/package.json
  706. 5076 verbose from cache /root/.npm/flatiron-cli-users/0.1.3/package/package.json
  707. 5077 verbose from cache /root/.npm/fstream/0.1.18/package/package.json
  708. 5078 verbose from cache /root/.npm/pkginfo/0.2.3/package/package.json
  709. 5079 verbose from cache /root/.npm/spawn-command/0.0.2/package/package.json
  710. 5080 verbose from cache /root/.npm/flatiron/0.3.0/package/package.json
  711. 5081 verbose from cache /root/.npm/semver/1.0.14/package/package.json
  712. 5082 verbose from cache /root/.npm/wizard/0.0.1/package/package.json
  713. 5083 verbose from cache /root/.npm/nodejitsu-api/0.3.6/package/package.json
  714. 5084 verbose from cache /root/.npm/ladder/0.0.0/package/package.json
  715. 5085 verbose from cache /root/.npm/progress/0.1.0/package/package.json
  716. 5086 verbose from cache /root/.npm/opener/1.3.0/package/package.json
  717. 5087 verbose from cache /root/.npm/tar/0.1.13/package/package.json
  718. 5088 verbose from cache /root/.npm/request/2.9.203/package/package.json
  719. 5089 verbose from cache /root/.npm/require-analyzer/0.5.0/package/package.json
  720. 5090 verbose from cache /root/.npm/npm/1.1.59/package/package.json
  721. 5091 info /usr/lib/node_modules/jitsu/node_modules/dateformat unbuild
  722. 5092 verbose read json /usr/lib/node_modules/jitsu/node_modules/dateformat/package.json
  723. 5093 info /usr/lib/node_modules/jitsu/node_modules/colors unbuild
  724. 5094 verbose read json /usr/lib/node_modules/jitsu/node_modules/colors/package.json
  725. 5095 info /usr/lib/node_modules/jitsu/node_modules/complete unbuild
  726. 5096 verbose read json /usr/lib/node_modules/jitsu/node_modules/complete/package.json
  727. 5097 info /usr/lib/node_modules/jitsu/node_modules/flatiron-cli-config unbuild
  728. 5098 verbose read json /usr/lib/node_modules/jitsu/node_modules/flatiron-cli-config/package.json
  729. 5099 info /usr/lib/node_modules/jitsu/node_modules/fstream-npm unbuild
  730. 5100 verbose read json /usr/lib/node_modules/jitsu/node_modules/fstream-npm/package.json
  731. 5101 info /usr/lib/node_modules/jitsu/node_modules/flatiron-cli-users unbuild
  732. 5102 verbose read json /usr/lib/node_modules/jitsu/node_modules/flatiron-cli-users/package.json
  733. 5103 info /usr/lib/node_modules/jitsu/node_modules/fstream unbuild
  734. 5104 verbose read json /usr/lib/node_modules/jitsu/node_modules/fstream/package.json
  735. 5105 info /usr/lib/node_modules/jitsu/node_modules/pkginfo unbuild
  736. 5106 verbose read json /usr/lib/node_modules/jitsu/node_modules/pkginfo/package.json
  737. 5107 info /usr/lib/node_modules/jitsu/node_modules/spawn-command unbuild
  738. 5108 verbose read json /usr/lib/node_modules/jitsu/node_modules/spawn-command/package.json
  739. 5109 info /usr/lib/node_modules/jitsu/node_modules/flatiron unbuild
  740. 5110 verbose read json /usr/lib/node_modules/jitsu/node_modules/flatiron/package.json
  741. 5111 info /usr/lib/node_modules/jitsu/node_modules/semver unbuild
  742. 5112 verbose read json /usr/lib/node_modules/jitsu/node_modules/semver/package.json
  743. 5113 info /usr/lib/node_modules/jitsu/node_modules/wizard unbuild
  744. 5114 verbose read json /usr/lib/node_modules/jitsu/node_modules/wizard/package.json
  745. 5115 info /usr/lib/node_modules/jitsu/node_modules/nodejitsu-api unbuild
  746. 5116 verbose read json /usr/lib/node_modules/jitsu/node_modules/nodejitsu-api/package.json
  747. 5117 info /usr/lib/node_modules/jitsu/node_modules/ladder unbuild
  748. 5118 verbose read json /usr/lib/node_modules/jitsu/node_modules/ladder/package.json
  749. 5119 info /usr/lib/node_modules/jitsu/node_modules/progress unbuild
  750. 5120 verbose read json /usr/lib/node_modules/jitsu/node_modules/progress/package.json
  751. 5121 info /usr/lib/node_modules/jitsu/node_modules/opener unbuild
  752. 5122 verbose read json /usr/lib/node_modules/jitsu/node_modules/opener/package.json
  753. 5123 info /usr/lib/node_modules/jitsu/node_modules/tar unbuild
  754. 5124 verbose read json /usr/lib/node_modules/jitsu/node_modules/tar/package.json
  755. 5125 info /usr/lib/node_modules/jitsu/node_modules/request unbuild
  756. 5126 verbose read json /usr/lib/node_modules/jitsu/node_modules/request/package.json
  757. 5127 info /usr/lib/node_modules/jitsu/node_modules/require-analyzer unbuild
  758. 5128 verbose read json /usr/lib/node_modules/jitsu/node_modules/require-analyzer/package.json
  759. 5129 info /usr/lib/node_modules/jitsu/node_modules/npm unbuild
  760. 5130 verbose read json /usr/lib/node_modules/jitsu/node_modules/npm/package.json
  761. 5131 verbose tar unpack /root/.npm/dateformat/1.0.2-1.2.3/package.tgz
  762. 5132 verbose tar unpack /root/.npm/colors/0.6.0-1/package.tgz
  763. 5133 verbose tar unpack /root/.npm/complete/0.3.1/package.tgz
  764. 5134 verbose tar unpack /root/.npm/flatiron-cli-config/0.1.3/package.tgz
  765. 5135 verbose tar unpack /root/.npm/fstream-npm/0.1.1/package.tgz
  766. 5136 verbose tar unpack /root/.npm/flatiron-cli-users/0.1.3/package.tgz
  767. 5137 verbose tar unpack /root/.npm/fstream/0.1.18/package.tgz
  768. 5138 verbose tar unpack /root/.npm/pkginfo/0.2.3/package.tgz
  769. 5139 verbose tar unpack /root/.npm/spawn-command/0.0.2/package.tgz
  770. 5140 verbose tar unpack /root/.npm/flatiron/0.3.0/package.tgz
  771. 5141 verbose tar unpack /root/.npm/semver/1.0.14/package.tgz
  772. 5142 verbose tar unpack /root/.npm/wizard/0.0.1/package.tgz
  773. 5143 verbose tar unpack /root/.npm/nodejitsu-api/0.3.6/package.tgz
  774. 5144 verbose tar unpack /root/.npm/ladder/0.0.0/package.tgz
  775. 5145 verbose tar unpack /root/.npm/progress/0.1.0/package.tgz
  776. 5146 verbose tar unpack /root/.npm/opener/1.3.0/package.tgz
  777. 5147 verbose tar unpack /root/.npm/tar/0.1.13/package.tgz
  778. 5148 verbose tar unpack /root/.npm/request/2.9.203/package.tgz
  779. 5149 verbose tar unpack /root/.npm/require-analyzer/0.5.0/package.tgz
  780. 5150 verbose tar unpack /root/.npm/npm/1.1.59/package.tgz
  781. 5151 silly lockFile 40e5c373-es-jitsu-node-modules-dateformat /usr/lib/node_modules/jitsu/node_modules/dateformat
  782. 5152 verbose lock /usr/lib/node_modules/jitsu/node_modules/dateformat /root/.npm/40e5c373-es-jitsu-node-modules-dateformat.lock
  783. 5153 silly lockFile 366c04df-odules-jitsu-node-modules-colors /usr/lib/node_modules/jitsu/node_modules/colors
  784. 5154 verbose lock /usr/lib/node_modules/jitsu/node_modules/colors /root/.npm/366c04df-odules-jitsu-node-modules-colors.lock
  785. 5155 silly lockFile 1cff7c18-ules-jitsu-node-modules-complete /usr/lib/node_modules/jitsu/node_modules/complete
  786. 5156 verbose lock /usr/lib/node_modules/jitsu/node_modules/complete /root/.npm/1cff7c18-ules-jitsu-node-modules-complete.lock
  787. 5157 silly lockFile cd1fdd0d-node-modules-flatiron-cli-config /usr/lib/node_modules/jitsu/node_modules/flatiron-cli-config
  788. 5158 verbose lock /usr/lib/node_modules/jitsu/node_modules/flatiron-cli-config /root/.npm/cd1fdd0d-node-modules-flatiron-cli-config.lock
  789. 5159 silly lockFile e1b0def1-s-jitsu-node-modules-fstream-npm /usr/lib/node_modules/jitsu/node_modules/fstream-npm
  790. 5160 verbose lock /usr/lib/node_modules/jitsu/node_modules/fstream-npm /root/.npm/e1b0def1-s-jitsu-node-modules-fstream-npm.lock
  791. 5161 silly lockFile 1ab71243--node-modules-flatiron-cli-users /usr/lib/node_modules/jitsu/node_modules/flatiron-cli-users
  792. 5162 verbose lock /usr/lib/node_modules/jitsu/node_modules/flatiron-cli-users /root/.npm/1ab71243--node-modules-flatiron-cli-users.lock
  793. 5163 silly lockFile 8741d1e3-dules-jitsu-node-modules-fstream /usr/lib/node_modules/jitsu/node_modules/fstream
  794. 5164 verbose lock /usr/lib/node_modules/jitsu/node_modules/fstream /root/.npm/8741d1e3-dules-jitsu-node-modules-fstream.lock
  795. 5165 silly lockFile fd7cab7e-dules-jitsu-node-modules-pkginfo /usr/lib/node_modules/jitsu/node_modules/pkginfo
  796. 5166 verbose lock /usr/lib/node_modules/jitsu/node_modules/pkginfo /root/.npm/fd7cab7e-dules-jitsu-node-modules-pkginfo.lock
  797. 5167 silly lockFile af245476-jitsu-node-modules-spawn-command /usr/lib/node_modules/jitsu/node_modules/spawn-command
  798. 5168 verbose lock /usr/lib/node_modules/jitsu/node_modules/spawn-command /root/.npm/af245476-jitsu-node-modules-spawn-command.lock
  799. 5169 silly lockFile 30cdd033-ules-jitsu-node-modules-flatiron /usr/lib/node_modules/jitsu/node_modules/flatiron
  800. 5170 verbose lock /usr/lib/node_modules/jitsu/node_modules/flatiron /root/.npm/30cdd033-ules-jitsu-node-modules-flatiron.lock
  801. 5171 silly lockFile d6b8e9f8-odules-jitsu-node-modules-semver /usr/lib/node_modules/jitsu/node_modules/semver
  802. 5172 verbose lock /usr/lib/node_modules/jitsu/node_modules/semver /root/.npm/d6b8e9f8-odules-jitsu-node-modules-semver.lock
  803. 5173 silly lockFile 7542b1ac-odules-jitsu-node-modules-wizard /usr/lib/node_modules/jitsu/node_modules/wizard
  804. 5174 verbose lock /usr/lib/node_modules/jitsu/node_modules/wizard /root/.npm/7542b1ac-odules-jitsu-node-modules-wizard.lock
  805. 5175 silly lockFile 3be857cc-jitsu-node-modules-nodejitsu-api /usr/lib/node_modules/jitsu/node_modules/nodejitsu-api
  806. 5176 verbose lock /usr/lib/node_modules/jitsu/node_modules/nodejitsu-api /root/.npm/3be857cc-jitsu-node-modules-nodejitsu-api.lock
  807. 5177 silly lockFile ad373dc8-odules-jitsu-node-modules-ladder /usr/lib/node_modules/jitsu/node_modules/ladder
  808. 5178 verbose lock /usr/lib/node_modules/jitsu/node_modules/ladder /root/.npm/ad373dc8-odules-jitsu-node-modules-ladder.lock
  809. 5179 silly lockFile d493ae78-ules-jitsu-node-modules-progress /usr/lib/node_modules/jitsu/node_modules/progress
  810. 5180 verbose lock /usr/lib/node_modules/jitsu/node_modules/progress /root/.npm/d493ae78-ules-jitsu-node-modules-progress.lock
  811. 5181 silly lockFile 861f15c8-odules-jitsu-node-modules-opener /usr/lib/node_modules/jitsu/node_modules/opener
  812. 5182 verbose lock /usr/lib/node_modules/jitsu/node_modules/opener /root/.npm/861f15c8-odules-jitsu-node-modules-opener.lock
  813. 5183 silly lockFile 1e9ddc3f-e-modules-jitsu-node-modules-tar /usr/lib/node_modules/jitsu/node_modules/tar
  814. 5184 verbose lock /usr/lib/node_modules/jitsu/node_modules/tar /root/.npm/1e9ddc3f-e-modules-jitsu-node-modules-tar.lock
  815. 5185 silly lockFile 02efc24e-dules-jitsu-node-modules-request /usr/lib/node_modules/jitsu/node_modules/request
  816. 5186 verbose lock /usr/lib/node_modules/jitsu/node_modules/request /root/.npm/02efc24e-dules-jitsu-node-modules-request.lock
  817. 5187 silly lockFile d0bd7b69-su-node-modules-require-analyzer /usr/lib/node_modules/jitsu/node_modules/require-analyzer
  818. 5188 verbose lock /usr/lib/node_modules/jitsu/node_modules/require-analyzer /root/.npm/d0bd7b69-su-node-modules-require-analyzer.lock
  819. 5189 silly lockFile c1b7cb8e-e-modules-jitsu-node-modules-npm /usr/lib/node_modules/jitsu/node_modules/npm
  820. 5190 verbose lock /usr/lib/node_modules/jitsu/node_modules/npm /root/.npm/c1b7cb8e-e-modules-jitsu-node-modules-npm.lock
  821. 5191 silly gunzTarPerm modes [ '755', '644' ]
  822. 5192 silly gunzTarPerm modes [ '755', '644' ]
  823. 5193 silly gunzTarPerm modes [ '755', '644' ]
  824. 5194 silly gunzTarPerm modes [ '755', '644' ]
  825. 5195 silly gunzTarPerm modes [ '755', '644' ]
  826. 5196 silly gunzTarPerm modes [ '755', '644' ]
  827. 5197 silly gunzTarPerm modes [ '755', '644' ]
  828. 5198 silly gunzTarPerm modes [ '755', '644' ]
  829. 5199 silly gunzTarPerm modes [ '755', '644' ]
  830. 5200 silly gunzTarPerm modes [ '755', '644' ]
  831. 5201 silly gunzTarPerm modes [ '755', '644' ]
  832. 5202 silly gunzTarPerm modes [ '755', '644' ]
  833. 5203 silly gunzTarPerm modes [ '755', '644' ]
  834. 5204 silly gunzTarPerm modes [ '755', '644' ]
  835. 5205 silly gunzTarPerm modes [ '755', '644' ]
  836. 5206 silly gunzTarPerm modes [ '755', '644' ]
  837. 5207 silly gunzTarPerm modes [ '755', '644' ]
  838. 5208 silly gunzTarPerm modes [ '755', '644' ]
  839. 5209 silly gunzTarPerm modes [ '755', '644' ]
  840. 5210 silly gunzTarPerm modes [ '755', '644' ]
  841. 5211 silly gunzTarPerm extractEntry package.json
  842. 5212 silly gunzTarPerm extractEntry package.json
  843. 5213 silly gunzTarPerm extractEntry package.json
  844. 5214 silly gunzTarPerm extractEntry package.json
  845. 5215 silly gunzTarPerm extractEntry package.json
  846. 5216 silly gunzTarPerm extractEntry package.json
  847. 5217 silly gunzTarPerm extractEntry package.json
  848. 5218 silly gunzTarPerm extractEntry package.json
  849. 5219 silly gunzTarPerm extractEntry package.json
  850. 5220 silly gunzTarPerm extractEntry package.json
  851. 5221 silly gunzTarPerm extractEntry package.json
  852. 5222 silly gunzTarPerm extractEntry package.json
  853. 5223 silly gunzTarPerm extractEntry package.json
  854. 5224 silly gunzTarPerm extractEntry package.json
  855. 5225 silly gunzTarPerm extractEntry package.json
  856. 5226 silly gunzTarPerm extractEntry package.json
  857. 5227 silly gunzTarPerm extractEntry package.json
  858. 5228 silly gunzTarPerm extractEntry package.json
  859. 5229 silly gunzTarPerm extractEntry package.json
  860. 5230 silly gunzTarPerm extractEntry package.json
  861. 5231 silly gunzTarPerm extractEntry test/test_weekofyear.js
  862. 5232 silly gunzTarPerm extractEntry test/test_weekofyear.sh
  863. 5233 silly gunzTarPerm extractEntry test.js
  864. 5234 silly gunzTarPerm extractEntry example.js
  865. 5235 silly gunzTarPerm extractEntry .npmignore
  866. 5236 silly gunzTarPerm extractEntry README.md
  867. 5237 silly gunzTarPerm extractEntry .npmignore
  868. 5238 silly gunzTarPerm extractEntry README.md
  869. 5239 silly gunzTarPerm extractEntry .npmignore
  870. 5240 silly gunzTarPerm extractEntry README.md
  871. 5241 silly gunzTarPerm extractEntry .npmignore
  872. 5242 silly gunzTarPerm extractEntry README.md
  873. 5243 silly gunzTarPerm extractEntry .npmignore
  874. 5244 silly gunzTarPerm extractEntry README.md
  875. 5245 silly gunzTarPerm extractEntry .npmignore
  876. 5246 silly gunzTarPerm extractEntry README.md
  877. 5247 silly gunzTarPerm extractEntry README.md
  878. 5248 silly gunzTarPerm extractEntry LICENSE
  879. 5249 silly gunzTarPerm extractEntry .npmignore
  880. 5250 silly gunzTarPerm extractEntry README.md
  881. 5251 silly gunzTarPerm extractEntry .npmignore
  882. 5252 silly gunzTarPerm extractEntry test/helpers.js
  883. 5253 silly gunzTarPerm extractEntry .npmignore
  884. 5254 silly gunzTarPerm extractEntry README.md
  885. 5255 silly gunzTarPerm extractEntry .npmignore
  886. 5256 silly gunzTarPerm extractEntry index.js
  887. 5257 silly gunzTarPerm extractEntry README.md
  888. 5258 silly gunzTarPerm extractEntry config.json
  889. 5259 silly gunzTarPerm extractEntry README.md
  890. 5260 silly gunzTarPerm extractEntry LICENSE
  891. 5261 silly gunzTarPerm extractEntry .npmignore
  892. 5262 silly gunzTarPerm extractEntry index.js
  893. 5263 silly gunzTarPerm extractEntry .npmignore
  894. 5264 silly gunzTarPerm extractEntry README.md
  895. 5265 silly gunzTarPerm extractEntry .npmignore
  896. 5266 silly gunzTarPerm extractEntry README.md
  897. 5267 silly gunzTarPerm extractEntry LICENSE
  898. 5268 silly gunzTarPerm extractEntry README.md
  899. 5269 silly gunzTarPerm extractEntry opener.js
  900. 5270 silly gunzTarPerm extractEntry .npmignore
  901. 5271 silly gunzTarPerm extractEntry README.md
  902. 5272 silly gunzTarPerm extractEntry lib/dateformat.js
  903. 5273 silly gunzTarPerm extractEntry Readme.md
  904. 5274 silly gunzTarPerm extractEntry colors.js
  905. 5275 silly gunzTarPerm extractEntry example.html
  906. 5276 silly gunzTarPerm extractEntry LICENCE
  907. 5277 silly gunzTarPerm extractEntry fstream-npm.js
  908. 5278 silly gunzTarPerm extractEntry LICENSE
  909. 5279 silly gunzTarPerm extractEntry test/spawn-command-test.js
  910. 5280 silly gunzTarPerm extractEntry test.js
  911. 5281 silly gunzTarPerm extractEntry semver.js
  912. 5282 silly gunzTarPerm extractEntry bin/semver
  913. 5283 silly gunzTarPerm extractEntry test/pkginfo-test.js
  914. 5284 silly gunzTarPerm extractEntry lib/pkginfo.js
  915. 5285 silly gunzTarPerm extractEntry Makefile
  916. 5286 silly gunzTarPerm extractEntry lib/node-progress.js
  917. 5287 silly gunzTarPerm extractEntry lib/wizard.js
  918. 5288 silly gunzTarPerm extractEntry lib/wizard/web.js
  919. 5289 silly gunzTarPerm extractEntry oauth.js
  920. 5290 silly gunzTarPerm extractEntry forever.js
  921. 5291 silly gunzTarPerm extractEntry mimetypes.js
  922. 5292 silly gunzTarPerm extractEntry test/ladder-test.js
  923. 5293 silly gunzTarPerm extractEntry test/first.json
  924. 5294 silly gunzTarPerm extractEntry lib/complete.js
  925. 5295 silly gunzTarPerm extractEntry example/package.json
  926. 5296 silly gunzTarPerm extractEntry LICENSE
  927. 5297 silly gunzTarPerm extractEntry test/cli-config-test.js
  928. 5298 silly gunzTarPerm extractEntry test/cli-users-test.js
  929. 5299 silly gunzTarPerm extractEntry test/commands-test.js
  930. 5300 silly gunzTarPerm extractEntry LICENSE
  931. 5301 silly gunzTarPerm extractEntry test/flatiron-test.js
  932. 5302 silly gunzTarPerm extractEntry LICENCE
  933. 5303 silly gunzTarPerm extractEntry fstream.js
  934. 5304 silly gunzTarPerm extractEntry test/macros.js
  935. 5305 silly gunzTarPerm extractEntry test/commands/apps-test.js
  936. 5306 silly gunzTarPerm extractEntry test/example-apps-test.js
  937. 5307 silly gunzTarPerm extractEntry test/require-analyzer-cli-test.js
  938. 5308 silly gunzTarPerm extractEntry LICENSE.txt
  939. 5309 silly gunzTarPerm extractEntry tar.js
  940. 5310 silly gunzTarPerm extractEntry test/00-setup-fixtures.js
  941. 5311 silly gunzTarPerm extractEntry cli.js
  942. 5312 silly gunzTarPerm extractEntry configure
  943. 5313 silly gunzTarPerm extractEntry tunnel.js
  944. 5314 silly gunzTarPerm extractEntry example/dir-tar.js
  945. 5315 silly gunzTarPerm extractEntry example/bundle.js
  946. 5316 silly gunzTarPerm extractEntry test/fixtures/commit
  947. 5317 silly gunzTarPerm extractEntry lib/spawn-command.js
  948. 5318 silly gunzTarPerm extractEntry docs/pkginfo.html
  949. 5319 silly gunzTarPerm extractEntry docs/docco.css
  950. 5320 silly gunzTarPerm extractEntry History.md
  951. 5321 silly gunzTarPerm extractEntry Readme.md
  952. 5322 silly gunzTarPerm extractEntry lib/wizard/cli.js
  953. 5323 silly gunzTarPerm extractEntry examples/config.json
  954. 5324 silly gunzTarPerm extractEntry test/commands/logs-test.js
  955. 5325 silly gunzTarPerm extractEntry test/commands/databases-test.js
  956. 5326 silly gunzTarPerm extractEntry test/third.json
  957. 5327 silly gunzTarPerm extractEntry test/second.json
  958. 5328 silly gunzTarPerm extractEntry example/bin/exampleapp
  959. 5329 silly gunzTarPerm extractEntry example/bin/examplecomp
  960. 5330 silly gunzTarPerm extractEntry test/commands-test.js
  961. 5331 silly gunzTarPerm extractEntry lib/commands.js
  962. 5332 silly gunzTarPerm extractEntry test/fixtures/dot-appconf
  963. 5333 silly gunzTarPerm extractEntry test/helpers/macros.js
  964. 5334 silly gunzTarPerm extractEntry lib/properties.js
  965. 5335 silly gunzTarPerm extractEntry test/fixtures/sample-app/app/new-york/new-york.js
  966. 5336 silly gunzTarPerm extractEntry test/fixtures/sample-app/app/new-york/index.js
  967. 5337 silly gunzTarPerm extractEntry test/fixtures/sample-app/app/new-york/controller.js
  968. 5338 silly gunzTarPerm extractEntry lib/dir-reader.js
  969. 5339 silly gunzTarPerm extractEntry lib/proxy-reader.js
  970. 5340 silly gunzTarPerm extractEntry test/require-analyzer-test.js
  971. 5341 silly gunzTarPerm extractEntry test/fixtures/.npmignore
  972. 5342 silly gunzTarPerm extractEntry test/fixtures/delayed-require/other.js
  973. 5343 silly gunzTarPerm extractEntry test/extract.js
  974. 5344 silly gunzTarPerm extractEntry test/header.js
  975. 5345 silly gunzTarPerm extractEntry main.js
  976. 5346 silly gunzTarPerm extractEntry MIT-LICENSE.txt
  977. 5347 silly gunzTarPerm extractEntry ReadMe.md
  978. 5348 silly gunzTarPerm extractEntry test/run.js
  979. 5349 silly gunzTarPerm extractEntry test/common.js
  980. 5350 silly gunzTarPerm extractEntry test/update-test.sh
  981. 5351 silly gunzTarPerm extractEntry aws2.js
  982. 5352 silly gunzTarPerm extractEntry lib/flatiron-cli-users.js
  983. 5353 silly gunzTarPerm extractEntry test/plugins/resourceful-test.js
  984. 5354 silly gunzTarPerm extractEntry examples/helloworld/server.js
  985. 5355 silly gunzTarPerm extractEntry examples/helloworld/cli-installer.js
  986. 5356 silly gunzTarPerm extractEntry test/fixtures/delayed-require/index.js
  987. 5357 silly gunzTarPerm extractEntry lib/ladder.js
  988. 5358 silly gunzTarPerm extractEntry example/tar.js
  989. 5359 silly gunzTarPerm extractEntry example/dir.js
  990. 5360 silly gunzTarPerm extractEntry examples/simple.js
  991. 5361 silly gunzTarPerm extractEntry .travis.yml
  992. 5362 silly gunzTarPerm extractEntry test/commands/users-test.js
  993. 5363 silly gunzTarPerm extractEntry test/commands/snapshots-test.js
  994. 5364 silly gunzTarPerm extractEntry test/plugins/static-test.js
  995. 5365 silly gunzTarPerm extractEntry examples/package.json
  996. 5366 silly gunzTarPerm extractEntry examples/all-properties.js
  997. 5367 silly gunzTarPerm extractEntry test/tap/publish-config.js
  998. 5368 silly gunzTarPerm extractEntry test/zz-cleanup.js
  999. 5369 silly gunzTarPerm extractEntry test/pack.js
  1000. 5370 silly gunzTarPerm extractEntry test/pack-no-proprietary.js
  1001. 5371 silly gunzTarPerm extractEntry lib/flatiron-cli-config.js
  1002. 5372 silly gunzTarPerm extractEntry examples/app.js
  1003. 5373 silly gunzTarPerm extractEntry lib/writer.js
  1004. 5374 silly gunzTarPerm extractEntry lib/reader.js
  1005. 5375 silly gunzTarPerm extractEntry lib/flatiron.js
  1006. 5376 silly gunzTarPerm extractEntry lib/commands.js
  1007. 5377 silly gunzTarPerm extractEntry examples/app.js
  1008. 5378 silly gunzTarPerm extractEntry test/tap/false_name.js
  1009. 5379 silly gunzTarPerm extractEntry examples/helloworld/config.json
  1010. 5380 silly gunzTarPerm extractEntry examples/helloworld/config/development.json
  1011. 5381 silly gunzTarPerm extractEntry test/fixtures/wildcards/package.json
  1012. 5382 silly gunzTarPerm extractEntry test/fixtures/wildcards/index.js
  1013. 5383 silly gunzTarPerm extractEntry test/fixtures/example-app3/package.json
  1014. 5384 silly gunzTarPerm extractEntry aws.js
  1015. 5385 silly gunzTarPerm extractEntry uuid.js
  1016. 5386 silly gunzTarPerm extractEntry vendor/cookie/index.js
  1017. 5387 silly gunzTarPerm extractEntry test/parse.js
  1018. 5388 silly gunzTarPerm extractEntry example/example.js
  1019. 5389 silly gunzTarPerm extractEntry example/ig-tar.js
  1020. 5390 silly gunzTarPerm extractEntry lib/flatiron/constants.js
  1021. 5391 silly gunzTarPerm extractEntry test/tap/false_name/package.json
  1022. 5392 verbose read json /usr/lib/node_modules/jitsu/node_modules/opener/package.json
  1023. 5393 silly gunzTarPerm extractEntry test/fixtures/snapshot.tgz
  1024. 5394 silly gunzTarPerm extractEntry lib/client.js
  1025. 5395 silly gunzTarPerm extractEntry lib/client/databases.js
  1026. 5396 silly gunzTarPerm extractEntry test/fixtures/example-app3/index.js
  1027. 5397 silly gunzTarPerm extractEntry lib/flatiron/common.js
  1028. 5398 silly gunzTarPerm extractEntry examples/object-argument.js
  1029. 5399 silly gunzTarPerm extractEntry examples/multiple-properties.js
  1030. 5400 silly gunzTarPerm extractEntry examples/single-property.js
  1031. 5401 silly gunzTarPerm extractEntry vendor/cookie/jar.js
  1032. 5402 silly gunzTarPerm extractEntry lib/file-writer.js
  1033. 5403 silly gunzTarPerm extractEntry lib/dir-writer.js
  1034. 5404 silly gunzTarPerm extractEntry examples/helloworld/config/schema.json
  1035. 5405 silly gunzTarPerm extractEntry examples/helloworld/config/production.json
  1036. 5406 silly gunzTarPerm extractEntry test/fixtures/example-app3/node_modules/example-dep3/package.json
  1037. 5407 silly gunzTarPerm extractEntry test/fixtures.tgz
  1038. 5408 silly gunzTarPerm extractEntry lib/extract.js
  1039. 5409 silly gunzTarPerm extractEntry tests/test-pool.js
  1040. 5410 silly gunzTarPerm extractEntry test/tap/false_name/index.js
  1041. 5411 silly gunzTarPerm extractEntry test/disabled/package-bar/package.json
  1042. 5412 silly gunzTarPerm extractEntry test/disabled/package-config/package.json
  1043. 5413 silly gunzTarPerm extractEntry examples/array-argument.js
  1044. 5414 silly lockFile 861f15c8-odules-jitsu-node-modules-opener /usr/lib/node_modules/jitsu/node_modules/opener
  1045. 5415 silly gunzTarPerm extractEntry tests/test-defaults.js
  1046. 5416 silly gunzTarPerm extractEntry lib/flatiron/app.js
  1047. 5417 silly gunzTarPerm extractEntry lib/flatiron/plugins/resourceful.js
  1048. 5418 silly gunzTarPerm extractEntry lib/file-reader.js
  1049. 5419 silly gunzTarPerm extractEntry lib/get-type.js
  1050. 5420 silly gunzTarPerm extractEntry lib/collect.js
  1051. 5421 info preinstall opener@1.3.0
  1052. 5422 silly gunzTarPerm extractEntry lib/client/keys.js
  1053. 5423 silly gunzTarPerm extractEntry lib/client/snapshots.js
  1054. 5424 verbose from cache /usr/lib/node_modules/jitsu/node_modules/opener/package.json
  1055. 5425 silly gunzTarPerm extractEntry test/fixtures/example-app3/node_modules/example-dep3/index.js
  1056. 5426 silly gunzTarPerm extractEntry test/fixtures/example-app3/node_modules/example-dep1/package.json
  1057. 5427 silly gunzTarPerm extractEntry lib/abstract.js
  1058. 5428 silly gunzTarPerm extractEntry lib/header.js
  1059. 5429 silly gunzTarPerm extractEntry lib/entry-writer.js
  1060. 5430 silly gunzTarPerm extractEntry lib/global-header-writer.js
  1061. 5431 verbose read json /usr/lib/node_modules/jitsu/node_modules/dateformat/package.json
  1062. 5432 silly gunzTarPerm extractEntry test/disabled/package-config/test.js
  1063. 5433 silly gunzTarPerm extractEntry test/disabled/startstop/package.json
  1064. 5434 silly gunzTarPerm extractEntry lib/flatiron/plugins/static.js
  1065. 5435 silly gunzTarPerm extractEntry lib/flatiron/plugins/http.js
  1066. 5436 silly gunzTarPerm extractEntry tests/test-headers.js
  1067. 5437 silly gunzTarPerm extractEntry tests/test-pipes.js
  1068. 5438 silly gunzTarPerm extractEntry lib/socket-reader.js
  1069. 5439 silly gunzTarPerm extractEntry lib/pack.js
  1070. 5440 silly gunzTarPerm extractEntry lib/client/helpers.js
  1071. 5441 silly gunzTarPerm extractEntry lib/client/client.js
  1072. 5442 silly gunzTarPerm extractEntry test/fixtures/example-app3/node_modules/example-dep1/index.js
  1073. 5443 silly gunzTarPerm extractEntry test/fixtures/example-app3/node_modules/example-dep2/package.json
  1074. 5444 silly gunzTarPerm extractEntry test/fixtures/example-app3/node_modules/example-dep2/index.js
  1075. 5445 silly gunzTarPerm extractEntry test/disabled/fast/package.json
  1076. 5446 silly gunzTarPerm extractEntry test/disabled/package-foo/package.json
  1077. 5447 silly gunzTarPerm extractEntry lib/entry.js
  1078. 5448 silly lockFile 40e5c373-es-jitsu-node-modules-dateformat /usr/lib/node_modules/jitsu/node_modules/dateformat
  1079. 5449 verbose read json /usr/lib/node_modules/jitsu/node_modules/progress/package.json
  1080. 5450 verbose read json /usr/lib/node_modules/jitsu/node_modules/ladder/package.json
  1081. 5451 silly gunzTarPerm extractEntry tests/test-timeout.js
  1082. 5452 silly gunzTarPerm extractEntry tests/test-qs.js
  1083. 5453 silly gunzTarPerm extractEntry tests/test-body.js
  1084. 5454 silly gunzTarPerm extractEntry lib/buffer-entry.js
  1085. 5455 silly gunzTarPerm extractEntry test/fixtures/conflicting-app/package.json
  1086. 5456 info preinstall dateformat@1.0.2-1.2.3
  1087. 5457 silly gunzTarPerm extractEntry lib/link-writer.js
  1088. 5458 silly gunzTarPerm extractEntry lib/proxy-writer.js
  1089. 5459 silly gunzTarPerm extractEntry lib/client/logs.js
  1090. 5460 silly gunzTarPerm extractEntry lib/client/apps.js
  1091. 5461 silly lockFile ad373dc8-odules-jitsu-node-modules-ladder /usr/lib/node_modules/jitsu/node_modules/ladder
  1092. 5462 silly gunzTarPerm extractEntry lib/flatiron/plugins/cli.js
  1093. 5463 silly gunzTarPerm extractEntry lib/flatiron/cli/create.js
  1094. 5464 verbose from cache /usr/lib/node_modules/jitsu/node_modules/dateformat/package.json
  1095. 5465 silly gunzTarPerm extractEntry test/disabled/change-bin-1/package.json
  1096. 5466 silly gunzTarPerm extractEntry test/disabled/change-bin-1/bin/foo
  1097. 5467 silly gunzTarPerm extractEntry test/disabled/slow/package.json
  1098. 5468 silly gunzTarPerm extractEntry lib/extended-header-writer.js
  1099. 5469 silly gunzTarPerm extractEntry tests/test-redirect.js
  1100. 5470 silly lockFile d493ae78-ules-jitsu-node-modules-progress /usr/lib/node_modules/jitsu/node_modules/progress
  1101. 5471 verbose read json /usr/lib/node_modules/jitsu/node_modules/complete/package.json
  1102. 5472 info preinstall ladder@0.0.0
  1103. 5473 silly gunzTarPerm extractEntry test/fixtures/conflicting-app/index.js
  1104. 5474 silly gunzTarPerm extractEntry test/fixtures/conflicting-app/node_modules/dep2-with-conflict-on-dep1/package.json
  1105. 5475 verbose read json /usr/lib/node_modules/jitsu/node_modules/spawn-command/package.json
  1106. 5476 silly gunzTarPerm extractEntry test/disabled/bundlerecurs/package.json
  1107. 5477 verbose from cache /usr/lib/node_modules/jitsu/node_modules/ladder/package.json
  1108. 5478 info preinstall progress@0.1.0
  1109. 5479 silly gunzTarPerm extractEntry tests/test-oauth.js
  1110. 5480 silly gunzTarPerm extractEntry tests/test-httpModule.js
  1111. 5481 silly gunzTarPerm extractEntry tests/test-params.js
  1112. 5482 silly gunzTarPerm extractEntry lib/link-reader.js
  1113. 5483 silly gunzTarPerm extractEntry examples/filter-pipe.js
  1114. 5484 silly gunzTarPerm extractEntry examples/pipe.js
  1115. 5485 silly gunzTarPerm extractEntry lib/client/users.js
  1116. 5486 silly gunzTarPerm extractEntry ReadMe.md
  1117. 5487 verbose read json /usr/lib/node_modules/jitsu/node_modules/colors/package.json
  1118. 5488 silly gunzTarPerm extractEntry test/disabled/failer/package.json
  1119. 5489 verbose from cache /usr/lib/node_modules/jitsu/node_modules/progress/package.json
  1120. 5490 silly lockFile 1cff7c18-ules-jitsu-node-modules-complete /usr/lib/node_modules/jitsu/node_modules/complete
  1121. 5491 silly gunzTarPerm extractEntry test/fixtures/conflicting-app/node_modules/dep2-with-conflict-on-dep1/index.js
  1122. 5492 silly gunzTarPerm extractEntry test/fixtures/conflicting-app/node_modules/dep2-with-conflict-on-dep1/node_modules/dep1/package.json
  1123. 5493 silly gunzTarPerm extractEntry scaffolds/http/package.json
  1124. 5494 silly gunzTarPerm extractEntry scaffolds/http/app.js
  1125. 5495 silly gunzTarPerm extractEntry tests/test-s3.js
  1126. 5496 silly gunzTarPerm extractEntry examples/reader.js
  1127. 5497 silly gunzTarPerm extractEntry lib/parse.js
  1128. 5498 silly lockFile af245476-jitsu-node-modules-spawn-command /usr/lib/node_modules/jitsu/node_modules/spawn-command
  1129. 5499 silly gunzTarPerm extractEntry examples/symlink-write.js
  1130. 5500 silly gunzTarPerm extractEntry examples/check-auth.js
  1131. 5501 silly gunzTarPerm extractEntry examples/get-logs-by-user.js
  1132. 5502 silly gunzTarPerm extractEntry lib/extended-header.js
  1133. 5503 info preinstall complete@0.3.1
  1134. 5504 silly lockFile 366c04df-odules-jitsu-node-modules-colors /usr/lib/node_modules/jitsu/node_modules/colors
  1135. 5505 silly gunzTarPerm extractEntry test/disabled/change-bin-2/package.json
  1136. 5506 silly gunzTarPerm extractEntry test/disabled/change-bin-2/bin/bar
  1137. 5507 info preinstall spawn-command@0.0.2
  1138. 5508 verbose from cache /usr/lib/node_modules/jitsu/node_modules/complete/package.json
  1139. 5509 silly gunzTarPerm extractEntry scaffolds/http/directories.json
  1140. 5510 silly gunzTarPerm extractEntry scaffolds/http/files.json
  1141. 5511 verbose from cache /usr/lib/node_modules/jitsu/node_modules/spawn-command/package.json
  1142. 5512 silly gunzTarPerm extractEntry .travis.yml
  1143. 5513 silly gunzTarPerm extractEntry examples/extracter.js
  1144. 5514 verbose read json /usr/lib/node_modules/jitsu/node_modules/flatiron-cli-config/package.json
  1145. 5515 silly gunzTarPerm extractEntry test/fixtures/conflicting-app/node_modules/dep2-with-conflict-on-dep1/node_modules/dep1/index.js
  1146. 5516 silly gunzTarPerm extractEntry test/fixtures/conflicting-app/node_modules/dep2-with-conflict-on-dep1/node_modules/dep3/package.json
  1147. 5517 silly gunzTarPerm extractEntry tests/test-tunnel.js
  1148. 5518 silly gunzTarPerm extractEntry tests/test-cookie.js
  1149. 5519 silly gunzTarPerm extractEntry tests/test-https.js
  1150. 5520 info preinstall colors@0.6.0-1
  1151. 5521 verbose read json /usr/lib/node_modules/jitsu/node_modules/semver/package.json
  1152. 5522 verbose from cache /usr/lib/node_modules/jitsu/node_modules/colors/package.json
  1153. 5523 silly gunzTarPerm extractEntry examples/reader.js
  1154. 5524 silly gunzTarPerm extractEntry examples/start-app.js
  1155. 5525 silly gunzTarPerm extractEntry examples/list-keys.js
  1156. 5526 silly gunzTarPerm extractEntry test/packages/npm-test-ignore-nested-nm/package.json
  1157. 5527 silly gunzTarPerm extractEntry test/packages/npm-test-ignore-nested-nm/README
  1158. 5528 silly gunzTarPerm extractEntry scaffolds/http/config/config.json
  1159. 5529 silly gunzTarPerm extractEntry scaffolds/cli/package.json
  1160. 5530 silly gunzTarPerm extractEntry tests/test-cookiejar.js
  1161. 5531 silly gunzTarPerm extractEntry test/fixtures/conflicting-app/node_modules/dep2-with-conflict-on-dep1/node_modules/dep3/index.js
  1162. 5532 silly gunzTarPerm extractEntry test/fixtures/conflicting-app/node_modules/dep1/package.json
  1163. 5533 silly lockFile cd1fdd0d-node-modules-flatiron-cli-config /usr/lib/node_modules/jitsu/node_modules/flatiron-cli-config
  1164. 5534 silly gunzTarPerm extractEntry tests/test-https-strict.js
  1165. 5535 silly lockFile d6b8e9f8-odules-jitsu-node-modules-semver /usr/lib/node_modules/jitsu/node_modules/semver
  1166. 5536 verbose read json /usr/lib/node_modules/jitsu/node_modules/fstream-npm/package.json
  1167. 5537 silly gunzTarPerm extractEntry test/packages/npm-test-ignore-nested-nm/test.js
  1168. 5538 silly gunzTarPerm extractEntry test/packages/npm-test-ignore-nested-nm/lib/node_modules/foo
  1169. 5539 silly gunzTarPerm extractEntry .travis.yml
  1170. 5540 silly gunzTarPerm extractEntry examples/get-key.js
  1171. 5541 silly gunzTarPerm extractEntry examples/create-ssh-key.js
  1172. 5542 silly gunzTarPerm extractEntry examples/restart-app.js
  1173. 5543 info preinstall flatiron-cli-config@0.1.3
  1174. 5544 verbose read json /usr/lib/node_modules/jitsu/node_modules/wizard/package.json
  1175. 5545 silly gunzTarPerm extractEntry scaffolds/cli/app.js
  1176. 5546 silly gunzTarPerm extractEntry scaffolds/cli/directories.json
  1177. 5547 verbose from cache /usr/lib/node_modules/jitsu/node_modules/flatiron-cli-config/package.json
  1178. 5548 silly gunzTarPerm extractEntry test/fixtures/conflicting-app/node_modules/dep1/index.js
  1179. 5549 silly gunzTarPerm extractEntry test/fixtures/socket-io-app/index.js
  1180. 5550 info preinstall semver@1.0.14
  1181. 5551 verbose from cache /usr/lib/node_modules/jitsu/node_modules/semver/package.json
  1182. 5552 silly gunzTarPerm extractEntry tests/run.js
  1183. 5553 silly gunzTarPerm extractEntry tests/test-errors.js
  1184. 5554 silly gunzTarPerm extractEntry tests/test-proxy.js
  1185. 5555 silly lockFile e1b0def1-s-jitsu-node-modules-fstream-npm /usr/lib/node_modules/jitsu/node_modules/fstream-npm
  1186. 5556 silly gunzTarPerm extractEntry test/fixtures/example-app1/package.json
  1187. 5557 silly gunzTarPerm extractEntry test/fixtures/example-app1/index.js
  1188. 5558 silly lockFile 7542b1ac-odules-jitsu-node-modules-wizard /usr/lib/node_modules/jitsu/node_modules/wizard
  1189. 5559 silly gunzTarPerm extractEntry test/packages/npm-test-missing-bindir/package.json
  1190. 5560 silly gunzTarPerm extractEntry test/packages/npm-test-missing-bindir/README
  1191. 5561 silly gunzTarPerm extractEntry scaffolds/cli/lib/index.js
  1192. 5562 silly gunzTarPerm extractEntry scaffolds/cli/files.json
  1193. 5563 silly gunzTarPerm extractEntry tests/test-toJSON.js
  1194. 5564 info preinstall fstream-npm@0.1.1
  1195. 5565 silly gunzTarPerm extractEntry examples/create-api-key.js
  1196. 5566 silly gunzTarPerm extractEntry examples/get-logs-by-app.js
  1197. 5567 info preinstall wizard@0.0.1
  1198. 5568 verbose from cache /usr/lib/node_modules/jitsu/node_modules/fstream-npm/package.json
  1199. 5569 silly gunzTarPerm extractEntry tests/server.js
  1200. 5570 verbose from cache /usr/lib/node_modules/jitsu/node_modules/wizard/package.json
  1201. 5571 silly gunzTarPerm extractEntry test/packages/npm-test-missing-bindir/test.js
  1202. 5572 silly gunzTarPerm extractEntry test/packages/npm-test-bundled-git/package.json
  1203. 5573 silly gunzTarPerm extractEntry tests/googledoodle.png
  1204. 5574 silly gunzTarPerm extractEntry test/fixtures/example-app1/node_modules/example-dep1/package.json
  1205. 5575 silly gunzTarPerm extractEntry test/fixtures/example-app1/node_modules/example-dep1/index.js
  1206. 5576 silly gunzTarPerm extractEntry scaffolds/cli/config/config.json
  1207. 5577 silly gunzTarPerm extractEntry bin/flatiron
  1208. 5578 silly gunzTarPerm extractEntry examples/destroy-key.js
  1209. 5579 silly gunzTarPerm extractEntry examples/list-apps.js
  1210. 5580 silly gunzTarPerm extractEntry examples/stop-app.js
  1211. 5581 silly gunzTarPerm extractEntry test/packages/npm-test-bundled-git/README
  1212. 5582 silly gunzTarPerm extractEntry test/packages/npm-test-bundled-git/test.js
  1213. 5583 verbose read json /usr/lib/node_modules/jitsu/node_modules/flatiron-cli-users/package.json
  1214. 5584 silly gunzTarPerm extractEntry test/fixtures/require-only/index.js
  1215. 5585 silly gunzTarPerm extractEntry test/fixtures/dynamic-deps/package.json
  1216. 5586 silly gunzTarPerm extractEntry tests/ssl/npm-ca.crt
  1217. 5587 silly gunzTarPerm extractEntry examples/snapshots-list.js
  1218. 5588 silly gunzTarPerm extractEntry examples/http-sample.js
  1219. 5589 silly gunzTarPerm extractEntry examples/cli-sample/print.js
  1220. 5590 silly gunzTarPerm extractEntry tests/ssl/ca/server.js
  1221. 5591 silly gunzTarPerm extractEntry test/packages/npm-test-bundled-git/minimatch-expected.json
  1222. 5592 silly gunzTarPerm extractEntry test/packages/npm-test-optional-deps/package.json
  1223. 5593 silly lockFile 1ab71243--node-modules-flatiron-cli-users /usr/lib/node_modules/jitsu/node_modules/flatiron-cli-users
  1224. 5594 silly gunzTarPerm extractEntry tests/ssl/ca/server.cnf
  1225. 5595 silly gunzTarPerm extractEntry test/fixtures/dynamic-deps/index.js
  1226. 5596 silly gunzTarPerm extractEntry test/fixtures/dynamic-deps/node_modules/dep2/package.json
  1227. 5597 silly gunzTarPerm extractEntry examples/get-application.js
  1228. 5598 silly gunzTarPerm extractEntry tests/ssl/ca/ca.srl
  1229. 5599 silly gunzTarPerm extractEntry examples/cli-sample/index.js
  1230. 5600 silly gunzTarPerm extractEntry examples/static-app/package.json
  1231. 5601 info preinstall flatiron-cli-users@0.1.3
  1232. 5602 verbose from cache /usr/lib/node_modules/jitsu/node_modules/flatiron-cli-users/package.json
  1233. 5603 silly gunzTarPerm extractEntry tests/ssl/ca/server.csr
  1234. 5604 silly gunzTarPerm extractEntry test/fixtures/dynamic-deps/node_modules/dep2/index.js
  1235. 5605 silly gunzTarPerm extractEntry test/fixtures/dynamic-deps/node_modules/dep1/package.json
  1236. 5606 silly gunzTarPerm extractEntry test/packages/npm-test-optional-deps/README
  1237. 5607 silly gunzTarPerm extractEntry test/packages/npm-test-optional-deps/test.js
  1238. 5608 silly gunzTarPerm extractEntry tests/ssl/ca/ca.csr
  1239. 5609 silly gunzTarPerm extractEntry examples/static-app/app.js
  1240. 5610 silly gunzTarPerm extractEntry examples/static-app/app/assets/style.js
  1241. 5611 silly gunzTarPerm extractEntry examples/static-app/app/assets/style.css
  1242. 5612 verbose read json /usr/lib/node_modules/jitsu/node_modules/pkginfo/package.json
  1243. 5613 silly gunzTarPerm extractEntry tests/ssl/ca/server.key
  1244. 5614 silly gunzTarPerm extractEntry test/fixtures/dynamic-deps/node_modules/dep1/index.js
  1245. 5615 silly gunzTarPerm extractEntry test/fixtures/dynamic-deps/node_modules/dep3/package.json
  1246. 5616 silly gunzTarPerm extractEntry test/packages/npm-test-array-bin/package.json
  1247. 5617 silly gunzTarPerm extractEntry test/packages/npm-test-array-bin/README
  1248. 5618 silly gunzTarPerm extractEntry tests/ssl/ca/ca.crl
  1249. 5619 silly lockFile fd7cab7e-dules-jitsu-node-modules-pkginfo /usr/lib/node_modules/jitsu/node_modules/pkginfo
  1250. 5620 silly gunzTarPerm extractEntry test/fixtures/dynamic-deps/node_modules/dep3/index.js
  1251. 5621 silly gunzTarPerm extractEntry test/fixtures/example-app2/package.json
  1252. 5622 silly gunzTarPerm extractEntry test/packages/npm-test-array-bin/test.js
  1253. 5623 silly gunzTarPerm extractEntry test/packages/npm-test-array-bin/bin/array-bin
  1254. 5624 silly gunzTarPerm extractEntry examples/resourceful-app/package.json
  1255. 5625 silly gunzTarPerm extractEntry examples/resourceful-app/app.js
  1256. 5626 info preinstall pkginfo@0.2.3
  1257. 5627 silly gunzTarPerm extractEntry tests/ssl/ca/server.crt
  1258. 5628 silly gunzTarPerm extractEntry tests/ssl/ca/ca.key
  1259. 5629 silly gunzTarPerm extractEntry tests/ssl/ca/ca.cnf
  1260. 5630 verbose from cache /usr/lib/node_modules/jitsu/node_modules/pkginfo/package.json
  1261. 5631 silly gunzTarPerm extractEntry tests/ssl/ca/ca.crt
  1262. 5632 silly gunzTarPerm extractEntry test/fixtures/example-app2/index.js
  1263. 5633 silly gunzTarPerm extractEntry test/fixtures/example-app2/node_modules/example-dep1/package.json
  1264. 5634 silly gunzTarPerm extractEntry test/packages/npm-test-shrinkwrap/package.json
  1265. 5635 silly gunzTarPerm extractEntry test/packages/npm-test-shrinkwrap/README
  1266. 5636 silly gunzTarPerm extractEntry examples/resourceful-app/app/resources/creature.js
  1267. 5637 silly gunzTarPerm extractEntry examples/socket.io/server.js
  1268. 5638 silly gunzTarPerm extractEntry tests/ssl/test.crt
  1269. 5639 silly gunzTarPerm extractEntry tests/ssl/test.key
  1270. 5640 silly gunzTarPerm extractEntry test/fixtures/example-app2/node_modules/example-dep1/index.js
  1271. 5641 silly gunzTarPerm extractEntry test/fixtures/example-app2/node_modules/example-dep2/package.json
  1272. 5642 silly gunzTarPerm extractEntry test/packages/npm-test-shrinkwrap/npm-shrinkwrap.json
  1273. 5643 silly gunzTarPerm extractEntry test/packages/npm-test-shrinkwrap/test.sh
  1274. 5644 silly gunzTarPerm extractEntry tests/squid.conf
  1275. 5645 silly gunzTarPerm extractEntry examples/socket.io/index.html
  1276. 5646 silly gunzTarPerm extractEntry .travis.yml
  1277. 5647 silly gunzTarPerm extractEntry test/fixtures/example-app2/node_modules/example-dep2/index.js
  1278. 5648 silly gunzTarPerm extractEntry test/fixtures/explicit-versions/package.json
  1279. 5649 silly gunzTarPerm extractEntry test/packages/npm-test-blerg3/package.json
  1280. 5650 silly gunzTarPerm extractEntry test/packages/npm-test-blerg3/README
  1281. 5651 silly gunzTarPerm extractEntry test/fixtures/explicit-versions/app.js
  1282. 5652 silly gunzTarPerm extractEntry test/fixtures/explicit-versions/node_modules/writeMyCSS/package.json
  1283. 5653 silly gunzTarPerm extractEntry test/packages/npm-test-blerg3/test.js
  1284. 5654 silly gunzTarPerm extractEntry test/packages/npm-test-url-dep/package.json
  1285. 5655 silly gunzTarPerm extractEntry test/packages/npm-test-url-dep/README
  1286. 5656 silly gunzTarPerm extractEntry test/packages/npm-test-files/package.json
  1287. 5657 silly gunzTarPerm extractEntry test/fixtures/explicit-versions/node_modules/writeMyCSS/index.js
  1288. 5658 silly gunzTarPerm extractEntry test/fixtures/explicit-versions/node_modules/makeShiny/package.json
  1289. 5659 silly gunzTarPerm extractEntry test/packages/npm-test-files/.npmignore
  1290. 5660 silly gunzTarPerm extractEntry test/packages/npm-test-files/include4
  1291. 5661 silly gunzTarPerm extractEntry test/fixtures/explicit-versions/node_modules/makeShiny/index.js
  1292. 5662 silly gunzTarPerm extractEntry test/fixtures/explicit-versions/node_modules/serveStuff/package.json
  1293. 5663 silly gunzTarPerm extractEntry test/packages/npm-test-files/test.sh
  1294. 5664 silly gunzTarPerm extractEntry test/packages/npm-test-files/sub/include4
  1295. 5665 silly gunzTarPerm extractEntry test/fixtures/explicit-versions/node_modules/serveStuff/index.js
  1296. 5666 silly gunzTarPerm extractEntry test/fixtures/subdeps/package.json
  1297. 5667 silly gunzTarPerm extractEntry test/packages/npm-test-files/sub/include
  1298. 5668 silly gunzTarPerm extractEntry test/packages/npm-test-files/sub/include2
  1299. 5669 silly gunzTarPerm extractEntry test/fixtures/subdeps/otherstuff.js
  1300. 5670 silly gunzTarPerm extractEntry test/fixtures/subdeps/app.js
  1301. 5671 silly gunzTarPerm extractEntry test/packages/npm-test-dir-bin/package.json
  1302. 5672 silly gunzTarPerm extractEntry test/packages/npm-test-dir-bin/README
  1303. 5673 silly gunzTarPerm extractEntry test/fixtures/subdeps/node_modules/writeMyCSS/package.json
  1304. 5674 silly gunzTarPerm extractEntry test/fixtures/subdeps/node_modules/writeMyCSS/index.js
  1305. 5675 silly gunzTarPerm extractEntry test/fixtures/subdeps/node_modules/makeShiny/package.json
  1306. 5676 silly gunzTarPerm extractEntry test/fixtures/subdeps/node_modules/makeShiny/index.js
  1307. 5677 silly gunzTarPerm extractEntry test/packages/npm-test-dir-bin/test.js
  1308. 5678 silly gunzTarPerm extractEntry test/packages/npm-test-dir-bin/bin/dir-bin
  1309. 5679 silly gunzTarPerm extractEntry test/fixtures/subdeps/node_modules/serveStuff/package.json
  1310. 5680 silly gunzTarPerm extractEntry test/fixtures/subdeps/node_modules/serveStuff/index.js
  1311. 5681 silly gunzTarPerm extractEntry test/packages/npm-test-env-reader/package.json
  1312. 5682 silly gunzTarPerm extractEntry test/packages/npm-test-env-reader/README
  1313. 5683 silly gunzTarPerm extractEntry test/fixtures/version-ranges/package.json
  1314. 5684 silly gunzTarPerm extractEntry test/fixtures/version-ranges/otherstuff.js
  1315. 5685 silly gunzTarPerm extractEntry test/packages/npm-test-env-reader/test.js
  1316. 5686 silly gunzTarPerm extractEntry test/packages/npm-test-blerg/package.json
  1317. 5687 silly gunzTarPerm extractEntry test/fixtures/version-ranges/app.js
  1318. 5688 silly gunzTarPerm extractEntry test/fixtures/version-ranges/node_modules/writeMyCSS/package.json
  1319. 5689 verbose read json /usr/lib/node_modules/jitsu/node_modules/fstream/package.json
  1320. 5690 silly gunzTarPerm extractEntry test/packages/npm-test-blerg/README
  1321. 5691 silly gunzTarPerm extractEntry test/packages/npm-test-blerg/test.js
  1322. 5692 silly gunzTarPerm extractEntry test/fixtures/version-ranges/node_modules/writeMyCSS/index.js
  1323. 5693 silly gunzTarPerm extractEntry test/fixtures/version-ranges/node_modules/makeShiny/package.json
  1324. 5694 silly lockFile 8741d1e3-dules-jitsu-node-modules-fstream /usr/lib/node_modules/jitsu/node_modules/fstream
  1325. 5695 silly gunzTarPerm extractEntry test/packages/npm-test-test-package/package.json
  1326. 5696 silly gunzTarPerm extractEntry test/packages/npm-test-test-package/README
  1327. 5697 info preinstall fstream@0.1.18
  1328. 5698 silly gunzTarPerm extractEntry test/fixtures/version-ranges/node_modules/makeShiny/index.js
  1329. 5699 silly gunzTarPerm extractEntry test/fixtures/version-ranges/node_modules/serveStuff/package.json
  1330. 5700 verbose from cache /usr/lib/node_modules/jitsu/node_modules/fstream/package.json
  1331. 5701 silly gunzTarPerm extractEntry test/packages/npm-test-private/package.json
  1332. 5702 silly gunzTarPerm extractEntry test/packages/npm-test-private/README
  1333. 5703 silly gunzTarPerm extractEntry test/fixtures/version-ranges/node_modules/serveStuff/index.js
  1334. 5704 silly gunzTarPerm extractEntry lib/require-analyzer.js
  1335. 5705 silly gunzTarPerm extractEntry test/packages/npm-test-ignore/package.json
  1336. 5706 silly gunzTarPerm extractEntry test/packages/npm-test-ignore/.npmignore
  1337. 5707 silly gunzTarPerm extractEntry bin/find-dependencies
  1338. 5708 silly gunzTarPerm extractEntry bin/require-analyzer
  1339. 5709 silly gunzTarPerm extractEntry test/packages/npm-test-ignore/README
  1340. 5710 silly gunzTarPerm extractEntry test/packages/npm-test-ignore/include4
  1341. 5711 silly gunzTarPerm extractEntry docs/require-analyzer.html
  1342. 5712 silly gunzTarPerm extractEntry docs/docco.css
  1343. 5713 verbose read json /usr/lib/node_modules/jitsu/node_modules/nodejitsu-api/package.json
  1344. 5714 silly gunzTarPerm extractEntry test/packages/npm-test-ignore/test.sh
  1345. 5715 silly gunzTarPerm extractEntry test/packages/npm-test-ignore/sub/include4
  1346. 5716 silly gunzTarPerm extractEntry .travis.yml
  1347. 5717 silly lockFile 3be857cc-jitsu-node-modules-nodejitsu-api /usr/lib/node_modules/jitsu/node_modules/nodejitsu-api
  1348. 5718 silly gunzTarPerm extractEntry test/packages/npm-test-ignore/sub/include
  1349. 5719 silly gunzTarPerm extractEntry test/packages/npm-test-ignore/sub/include2
  1350. 5720 info preinstall nodejitsu-api@0.3.6
  1351. 5721 verbose from cache /usr/lib/node_modules/jitsu/node_modules/nodejitsu-api/package.json
  1352. 5722 silly gunzTarPerm extractEntry test/packages/npm-test-platform/package.json
  1353. 5723 silly gunzTarPerm extractEntry test/packages/npm-test-platform/README
  1354. 5724 silly gunzTarPerm extractEntry test/packages/npm-test-platform-all/package.json
  1355. 5725 silly gunzTarPerm extractEntry test/packages/npm-test-platform-all/README
  1356. 5726 silly gunzTarPerm extractEntry man/man3/link.3
  1357. 5727 silly gunzTarPerm extractEntry man/man3/explore.3
  1358. 5728 silly gunzTarPerm extractEntry man/man3/start.3
  1359. 5729 silly gunzTarPerm extractEntry man/man3/unpublish.3
  1360. 5730 silly gunzTarPerm extractEntry man/man3/update.3
  1361. 5731 silly gunzTarPerm extractEntry man/man3/ls.3
  1362. 5732 silly gunzTarPerm extractEntry man/man3/set.3
  1363. 5733 silly gunzTarPerm extractEntry man/man3/home.3
  1364. 5734 silly gunzTarPerm extractEntry man/man3/owner.3
  1365. 5735 silly gunzTarPerm extractEntry man/man3/submodule.3
  1366. 5736 silly gunzTarPerm extractEntry man/man3/run-script.3
  1367. 5737 silly gunzTarPerm extractEntry man/man3/version.3
  1368. 5738 silly gunzTarPerm extractEntry man/man3/ln.3
  1369. 5739 silly gunzTarPerm extractEntry man/man3/deprecate.3
  1370. 5740 silly gunzTarPerm extractEntry man/man3/test.3
  1371. 5741 silly gunzTarPerm extractEntry man/man3/install.3
  1372. 5742 silly gunzTarPerm extractEntry man/man3/whoami.3
  1373. 5743 silly gunzTarPerm extractEntry man/man3/uninstall.3
  1374. 5744 silly gunzTarPerm extractEntry man/man3/edit.3
  1375. 5745 silly gunzTarPerm extractEntry man/man3/init.3
  1376. 5746 verbose read json /usr/lib/node_modules/jitsu/node_modules/tar/package.json
  1377. 5747 silly gunzTarPerm extractEntry man/man3/bin.3
  1378. 5748 silly gunzTarPerm extractEntry man/man3/help-search.3
  1379. 5749 silly lockFile 1e9ddc3f-e-modules-jitsu-node-modules-tar /usr/lib/node_modules/jitsu/node_modules/tar
  1380. 5750 verbose read json /usr/lib/node_modules/jitsu/node_modules/flatiron/package.json
  1381. 5751 silly gunzTarPerm extractEntry man/man3/restart.3
  1382. 5752 silly gunzTarPerm extractEntry man/man3/get.3
  1383. 5753 info preinstall tar@0.1.13
  1384. 5754 verbose from cache /usr/lib/node_modules/jitsu/node_modules/tar/package.json
  1385. 5755 silly lockFile 30cdd033-ules-jitsu-node-modules-flatiron /usr/lib/node_modules/jitsu/node_modules/flatiron
  1386. 5756 silly gunzTarPerm extractEntry man/man3/rebuild.3
  1387. 5757 silly gunzTarPerm extractEntry man/man3/search.3
  1388. 5758 info preinstall flatiron@0.3.0
  1389. 5759 verbose from cache /usr/lib/node_modules/jitsu/node_modules/flatiron/package.json
  1390. 5760 silly gunzTarPerm extractEntry man/man3/bugs.3
  1391. 5761 silly gunzTarPerm extractEntry man/man3/prune.3
  1392. 5762 silly gunzTarPerm extractEntry man/man3/shrinkwrap.3
  1393. 5763 silly gunzTarPerm extractEntry man/man3/outdated.3
  1394. 5764 silly gunzTarPerm extractEntry man/man3/root.3
  1395. 5765 silly gunzTarPerm extractEntry man/man3/prefix.3
  1396. 5766 verbose readDependencies using package.json deps
  1397. 5767 verbose from cache /usr/lib/node_modules/jitsu/node_modules/opener/package.json
  1398. 5768 verbose readDependencies using package.json deps
  1399. 5769 verbose from cache /usr/lib/node_modules/jitsu/node_modules/dateformat/package.json
  1400. 5770 verbose readDependencies using package.json deps
  1401. 5771 verbose from cache /usr/lib/node_modules/jitsu/node_modules/progress/package.json
  1402. 5772 verbose readDependencies using package.json deps
  1403. 5773 verbose from cache /usr/lib/node_modules/jitsu/node_modules/ladder/package.json
  1404. 5774 verbose readDependencies using package.json deps
  1405. 5775 verbose from cache /usr/lib/node_modules/jitsu/node_modules/complete/package.json
  1406. 5776 verbose readDependencies using package.json deps
  1407. 5777 verbose from cache /usr/lib/node_modules/jitsu/node_modules/spawn-command/package.json
  1408. 5778 verbose readDependencies using package.json deps
  1409. 5779 verbose from cache /usr/lib/node_modules/jitsu/node_modules/colors/package.json
  1410. 5780 verbose readDependencies using package.json deps
  1411. 5781 verbose from cache /usr/lib/node_modules/jitsu/node_modules/flatiron-cli-config/package.json
  1412. 5782 verbose readDependencies using package.json deps
  1413. 5783 verbose from cache /usr/lib/node_modules/jitsu/node_modules/semver/package.json
  1414. 5784 verbose readDependencies using package.json deps
  1415. 5785 verbose from cache /usr/lib/node_modules/jitsu/node_modules/fstream-npm/package.json
  1416. 5786 verbose readDependencies using package.json deps
  1417. 5787 verbose from cache /usr/lib/node_modules/jitsu/node_modules/wizard/package.json
  1418. 5788 verbose readDependencies using package.json deps
  1419. 5789 verbose from cache /usr/lib/node_modules/jitsu/node_modules/flatiron-cli-users/package.json
  1420. 5790 verbose readDependencies using package.json deps
  1421. 5791 verbose from cache /usr/lib/node_modules/jitsu/node_modules/pkginfo/package.json
  1422. 5792 verbose readDependencies using package.json deps
  1423. 5793 verbose from cache /usr/lib/node_modules/jitsu/node_modules/fstream/package.json
  1424. 5794 verbose readDependencies using package.json deps
  1425. 5795 verbose from cache /usr/lib/node_modules/jitsu/node_modules/nodejitsu-api/package.json
  1426. 5796 verbose readDependencies using package.json deps
  1427. 5797 verbose from cache /usr/lib/node_modules/jitsu/node_modules/tar/package.json
  1428. 5798 verbose readDependencies using package.json deps
  1429. 5799 verbose from cache /usr/lib/node_modules/jitsu/node_modules/flatiron/package.json
  1430. 5800 verbose readDependencies using package.json deps
  1431. 5801 silly resolved []
  1432. 5802 verbose about to build /usr/lib/node_modules/jitsu/node_modules/opener
  1433. 5803 info build /usr/lib/node_modules/jitsu/node_modules/opener
  1434. 5804 verbose from cache /usr/lib/node_modules/jitsu/node_modules/opener/package.json
  1435. 5805 verbose readDependencies using package.json deps
  1436. 5806 silly resolved []
  1437. 5807 verbose about to build /usr/lib/node_modules/jitsu/node_modules/dateformat
  1438. 5808 info build /usr/lib/node_modules/jitsu/node_modules/dateformat
  1439. 5809 verbose from cache /usr/lib/node_modules/jitsu/node_modules/dateformat/package.json
  1440. 5810 verbose readDependencies using package.json deps
  1441. 5811 silly resolved []
  1442. 5812 verbose about to build /usr/lib/node_modules/jitsu/node_modules/progress
  1443. 5813 info build /usr/lib/node_modules/jitsu/node_modules/progress
  1444. 5814 verbose from cache /usr/lib/node_modules/jitsu/node_modules/progress/package.json
  1445. 5815 verbose readDependencies using package.json deps
  1446. 5816 silly resolved []
  1447. 5817 verbose about to build /usr/lib/node_modules/jitsu/node_modules/ladder
  1448. 5818 info build /usr/lib/node_modules/jitsu/node_modules/ladder
  1449. 5819 verbose from cache /usr/lib/node_modules/jitsu/node_modules/ladder/package.json
  1450. 5820 verbose readDependencies using package.json deps
  1451. 5821 silly resolved []
  1452. 5822 verbose about to build /usr/lib/node_modules/jitsu/node_modules/complete
  1453. 5823 info build /usr/lib/node_modules/jitsu/node_modules/complete
  1454. 5824 verbose from cache /usr/lib/node_modules/jitsu/node_modules/complete/package.json
  1455. 5825 verbose readDependencies using package.json deps
  1456. 5826 silly resolved []
  1457. 5827 verbose about to build /usr/lib/node_modules/jitsu/node_modules/spawn-command
  1458. 5828 info build /usr/lib/node_modules/jitsu/node_modules/spawn-command
  1459. 5829 verbose from cache /usr/lib/node_modules/jitsu/node_modules/spawn-command/package.json
  1460. 5830 verbose readDependencies using package.json deps
  1461. 5831 silly resolved []
  1462. 5832 verbose about to build /usr/lib/node_modules/jitsu/node_modules/colors
  1463. 5833 info build /usr/lib/node_modules/jitsu/node_modules/colors
  1464. 5834 verbose from cache /usr/lib/node_modules/jitsu/node_modules/colors/package.json
  1465. 5835 verbose readDependencies using package.json deps
  1466. 5836 silly resolved []
  1467. 5837 verbose about to build /usr/lib/node_modules/jitsu/node_modules/flatiron-cli-config
  1468. 5838 info build /usr/lib/node_modules/jitsu/node_modules/flatiron-cli-config
  1469. 5839 verbose from cache /usr/lib/node_modules/jitsu/node_modules/flatiron-cli-config/package.json
  1470. 5840 verbose readDependencies using package.json deps
  1471. 5841 silly resolved []
  1472. 5842 verbose about to build /usr/lib/node_modules/jitsu/node_modules/semver
  1473. 5843 info build /usr/lib/node_modules/jitsu/node_modules/semver
  1474. 5844 verbose from cache /usr/lib/node_modules/jitsu/node_modules/semver/package.json
  1475. 5845 verbose readDependencies using package.json deps
  1476. 5846 verbose readDependencies using package.json deps
  1477. 5847 verbose readDependencies using package.json deps
  1478. 5848 silly resolved []
  1479. 5849 verbose about to build /usr/lib/node_modules/jitsu/node_modules/flatiron-cli-users
  1480. 5850 info build /usr/lib/node_modules/jitsu/node_modules/flatiron-cli-users
  1481. 5851 verbose from cache /usr/lib/node_modules/jitsu/node_modules/flatiron-cli-users/package.json
  1482. 5852 verbose readDependencies using package.json deps
  1483. 5853 silly resolved []
  1484. 5854 verbose about to build /usr/lib/node_modules/jitsu/node_modules/pkginfo
  1485. 5855 info build /usr/lib/node_modules/jitsu/node_modules/pkginfo
  1486. 5856 verbose from cache /usr/lib/node_modules/jitsu/node_modules/pkginfo/package.json
  1487. 5857 verbose readDependencies using package.json deps
  1488. 5858 verbose readDependencies using package.json deps
  1489. 5859 silly resolved []
  1490. 5860 verbose about to build /usr/lib/node_modules/jitsu/node_modules/nodejitsu-api
  1491. 5861 info build /usr/lib/node_modules/jitsu/node_modules/nodejitsu-api
  1492. 5862 verbose from cache /usr/lib/node_modules/jitsu/node_modules/nodejitsu-api/package.json
  1493. 5863 verbose readDependencies using package.json deps
  1494. 5864 verbose readDependencies using package.json deps
  1495. 5865 silly gunzTarPerm extractEntry man/man3/list.3
  1496. 5866 silly gunzTarPerm extractEntry man/man3/load.3
  1497. 5867 verbose linkStuff [ true,
  1498. 5867 verbose linkStuff '/usr/lib/node_modules',
  1499. 5867 verbose linkStuff false,
  1500. 5867 verbose linkStuff '/usr/lib/node_modules/jitsu/node_modules' ]
  1501. 5868 info linkStuff opener@1.3.0
  1502. 5869 verbose linkBins opener@1.3.0
  1503. 5870 verbose link bins [ { opener: 'opener.js' },
  1504. 5870 verbose link bins '/usr/lib/node_modules/jitsu/node_modules/.bin',
  1505. 5870 verbose link bins false ]
  1506. 5871 verbose linkMans opener@1.3.0
  1507. 5872 verbose rebuildBundles opener@1.3.0
  1508. 5873 verbose linkStuff [ true,
  1509. 5873 verbose linkStuff '/usr/lib/node_modules',
  1510. 5873 verbose linkStuff false,
  1511. 5873 verbose linkStuff '/usr/lib/node_modules/jitsu/node_modules' ]
  1512. 5874 info linkStuff dateformat@1.0.2-1.2.3
  1513. 5875 verbose linkBins dateformat@1.0.2-1.2.3
  1514. 5876 verbose linkMans dateformat@1.0.2-1.2.3
  1515. 5877 verbose rebuildBundles dateformat@1.0.2-1.2.3
  1516. 5878 verbose linkStuff [ true,
  1517. 5878 verbose linkStuff '/usr/lib/node_modules',
  1518. 5878 verbose linkStuff false,
  1519. 5878 verbose linkStuff '/usr/lib/node_modules/jitsu/node_modules' ]
  1520. 5879 info linkStuff progress@0.1.0
  1521. 5880 verbose linkBins progress@0.1.0
  1522. 5881 verbose linkMans progress@0.1.0
  1523. 5882 verbose rebuildBundles progress@0.1.0
  1524. 5883 verbose linkStuff [ true,
  1525. 5883 verbose linkStuff '/usr/lib/node_modules',
  1526. 5883 verbose linkStuff false,
  1527. 5883 verbose linkStuff '/usr/lib/node_modules/jitsu/node_modules' ]
  1528. 5884 info linkStuff ladder@0.0.0
  1529. 5885 verbose linkBins ladder@0.0.0
  1530. 5886 verbose linkMans ladder@0.0.0
  1531. 5887 verbose rebuildBundles ladder@0.0.0
  1532. 5888 verbose linkStuff [ true,
  1533. 5888 verbose linkStuff '/usr/lib/node_modules',
  1534. 5888 verbose linkStuff false,
  1535. 5888 verbose linkStuff '/usr/lib/node_modules/jitsu/node_modules' ]
  1536. 5889 info linkStuff complete@0.3.1
  1537. 5890 verbose linkBins complete@0.3.1
  1538. 5891 verbose linkMans complete@0.3.1
  1539. 5892 verbose rebuildBundles complete@0.3.1
  1540. 5893 verbose linkStuff [ true,
  1541. 5893 verbose linkStuff '/usr/lib/node_modules',
  1542. 5893 verbose linkStuff false,
  1543. 5893 verbose linkStuff '/usr/lib/node_modules/jitsu/node_modules' ]
  1544. 5894 info linkStuff spawn-command@0.0.2
  1545. 5895 verbose linkBins spawn-command@0.0.2
  1546. 5896 verbose linkMans spawn-command@0.0.2
  1547. 5897 verbose rebuildBundles spawn-command@0.0.2
  1548. 5898 verbose linkStuff [ true,
  1549. 5898 verbose linkStuff '/usr/lib/node_modules',
  1550. 5898 verbose linkStuff false,
  1551. 5898 verbose linkStuff '/usr/lib/node_modules/jitsu/node_modules' ]
  1552. 5899 info linkStuff colors@0.6.0-1
  1553. 5900 verbose linkBins colors@0.6.0-1
  1554. 5901 verbose linkMans colors@0.6.0-1
  1555. 5902 verbose rebuildBundles colors@0.6.0-1
  1556. 5903 verbose linkStuff [ true,
  1557. 5903 verbose linkStuff '/usr/lib/node_modules',
  1558. 5903 verbose linkStuff false,
  1559. 5903 verbose linkStuff '/usr/lib/node_modules/jitsu/node_modules' ]
  1560. 5904 info linkStuff flatiron-cli-config@0.1.3
  1561. 5905 verbose linkBins flatiron-cli-config@0.1.3
  1562. 5906 verbose linkMans flatiron-cli-config@0.1.3
  1563. 5907 verbose rebuildBundles flatiron-cli-config@0.1.3
  1564. 5908 verbose linkStuff [ true,
  1565. 5908 verbose linkStuff '/usr/lib/node_modules',
  1566. 5908 verbose linkStuff false,
  1567. 5908 verbose linkStuff '/usr/lib/node_modules/jitsu/node_modules' ]
  1568. 5909 info linkStuff semver@1.0.14
  1569. 5910 verbose linkBins semver@1.0.14
  1570. 5911 verbose link bins [ { semver: './bin/semver' },
  1571. 5911 verbose link bins '/usr/lib/node_modules/jitsu/node_modules/.bin',
  1572. 5911 verbose link bins false ]
  1573. 5912 verbose linkMans semver@1.0.14
  1574. 5913 verbose rebuildBundles semver@1.0.14
  1575. 5914 verbose linkStuff [ true,
  1576. 5914 verbose linkStuff '/usr/lib/node_modules',
  1577. 5914 verbose linkStuff false,
  1578. 5914 verbose linkStuff '/usr/lib/node_modules/jitsu/node_modules' ]
  1579. 5915 info linkStuff flatiron-cli-users@0.1.3
  1580. 5916 verbose linkBins flatiron-cli-users@0.1.3
  1581. 5917 verbose linkMans flatiron-cli-users@0.1.3
  1582. 5918 verbose rebuildBundles flatiron-cli-users@0.1.3
  1583. 5919 verbose linkStuff [ true,
  1584. 5919 verbose linkStuff '/usr/lib/node_modules',
  1585. 5919 verbose linkStuff false,
  1586. 5919 verbose linkStuff '/usr/lib/node_modules/jitsu/node_modules' ]
  1587. 5920 info linkStuff pkginfo@0.2.3
  1588. 5921 verbose linkBins pkginfo@0.2.3
  1589. 5922 verbose linkMans pkginfo@0.2.3
  1590. 5923 verbose rebuildBundles pkginfo@0.2.3
  1591. 5924 verbose linkStuff [ true,
  1592. 5924 verbose linkStuff '/usr/lib/node_modules',
  1593. 5924 verbose linkStuff false,
  1594. 5924 verbose linkStuff '/usr/lib/node_modules/jitsu/node_modules' ]
  1595. 5925 info linkStuff nodejitsu-api@0.3.6
  1596. 5926 verbose linkBins nodejitsu-api@0.3.6
  1597. 5927 verbose linkMans nodejitsu-api@0.3.6
  1598. 5928 verbose rebuildBundles nodejitsu-api@0.3.6
  1599. 5929 verbose cache add [ 'fstream-ignore@~0.0.5', null ]
  1600. 5930 verbose cache add name=undefined spec="fstream-ignore@~0.0.5" args=["fstream-ignore@~0.0.5",null]
  1601. 5931 verbose parsed url { pathname: 'fstream-ignore@~0.0.5',
  1602. 5931 verbose parsed url path: 'fstream-ignore@~0.0.5',
  1603. 5931 verbose parsed url href: 'fstream-ignore@~0.0.5' }
  1604. 5932 verbose cache add name="fstream-ignore" spec="~0.0.5" args=["fstream-ignore","~0.0.5"]
  1605. 5933 verbose parsed url { pathname: '~0.0.5', path: '~0.0.5', href: '~0.0.5' }
  1606. 5934 verbose addNamed [ 'fstream-ignore', '~0.0.5' ]
  1607. 5935 verbose addNamed [ null, '>=0.0.5- <0.1.0-' ]
  1608. 5936 silly lockFile a42d4951-fstream-ignore-0-0-5 fstream-ignore@~0.0.5
  1609. 5937 verbose lock fstream-ignore@~0.0.5 /root/.npm/a42d4951-fstream-ignore-0-0-5.lock
  1610. 5938 verbose cache add [ 'inherits@', null ]
  1611. 5939 verbose cache add name=undefined spec="inherits@" args=["inherits@",null]
  1612. 5940 verbose parsed url { pathname: 'inherits@', path: 'inherits@', href: 'inherits@' }
  1613. 5941 verbose cache add name="inherits" spec="" args=["inherits",""]
  1614. 5942 verbose parsed url { href: '' }
  1615. 5943 verbose addNamed [ 'inherits', '' ]
  1616. 5944 verbose addNamed [ null, '' ]
  1617. 5945 silly lockFile 399f6b9e-inherits inherits@
  1618. 5946 verbose lock inherits@ /root/.npm/399f6b9e-inherits.lock
  1619. 5947 verbose cache add [ 'prompt@*', null ]
  1620. 5948 verbose cache add name=undefined spec="prompt@*" args=["prompt@*",null]
  1621. 5949 verbose parsed url { pathname: 'prompt@*', path: 'prompt@*', href: 'prompt@*' }
  1622. 5950 verbose cache add name="prompt" spec="*" args=["prompt","*"]
  1623. 5951 verbose parsed url { pathname: '*', path: '*', href: '*' }
  1624. 5952 verbose addNamed [ 'prompt', '*' ]
  1625. 5953 verbose addNamed [ null, '' ]
  1626. 5954 silly lockFile 7abdc580-prompt prompt@*
  1627. 5955 verbose lock prompt@* /root/.npm/7abdc580-prompt.lock
  1628. 5956 verbose cache add [ 'rimraf@2', null ]
  1629. 5957 verbose cache add name=undefined spec="rimraf@2" args=["rimraf@2",null]
  1630. 5958 verbose parsed url { pathname: 'rimraf@2', path: 'rimraf@2', href: 'rimraf@2' }
  1631. 5959 verbose cache add name="rimraf" spec="2" args=["rimraf","2"]
  1632. 5960 verbose parsed url { pathname: '2', path: '2', href: '2' }
  1633. 5961 verbose addNamed [ 'rimraf', '2' ]
  1634. 5962 verbose addNamed [ null, '>=2.0.0- <3.0.0-' ]
  1635. 5963 silly lockFile 8c081391-rimraf-2 rimraf@2
  1636. 5964 verbose lock rimraf@2 /root/.npm/8c081391-rimraf-2.lock
  1637. 5965 verbose cache add [ 'mkdirp@0.3', null ]
  1638. 5966 verbose cache add name=undefined spec="mkdirp@0.3" args=["mkdirp@0.3",null]
  1639. 5967 verbose parsed url { pathname: 'mkdirp@0.3',
  1640. 5967 verbose parsed url path: 'mkdirp@0.3',
  1641. 5967 verbose parsed url href: 'mkdirp@0.3' }
  1642. 5968 verbose cache add name="mkdirp" spec="0.3" args=["mkdirp","0.3"]
  1643. 5969 verbose parsed url { pathname: '0.3', path: '0.3', href: '0.3' }
  1644. 5970 verbose addNamed [ 'mkdirp', '0.3' ]
  1645. 5971 verbose addNamed [ null, '>=0.3.0- <0.4.0-' ]
  1646. 5972 silly lockFile b5c3810e-mkdirp-0-3 mkdirp@0.3
  1647. 5973 verbose lock mkdirp@0.3 /root/.npm/b5c3810e-mkdirp-0-3.lock
  1648. 5974 verbose cache add [ 'inherits@1.x', null ]
  1649. 5975 verbose cache add name=undefined spec="inherits@1.x" args=["inherits@1.x",null]
  1650. 5976 verbose parsed url { pathname: 'inherits@1.x',
  1651. 5976 verbose parsed url path: 'inherits@1.x',
  1652. 5976 verbose parsed url href: 'inherits@1.x' }
  1653. 5977 verbose cache add name="inherits" spec="1.x" args=["inherits","1.x"]
  1654. 5978 verbose parsed url { pathname: '1.x', path: '1.x', href: '1.x' }
  1655. 5979 verbose addNamed [ 'inherits', '1.x' ]
  1656. 5980 verbose addNamed [ null, '>=1.0.0- <2.0.0-' ]
  1657. 5981 silly lockFile 4165dcb7-inherits-1-x inherits@1.x
  1658. 5982 verbose lock inherits@1.x /root/.npm/4165dcb7-inherits-1-x.lock
  1659. 5983 verbose cache add [ 'block-stream@*', null ]
  1660. 5984 verbose cache add name=undefined spec="block-stream@*" args=["block-stream@*",null]
  1661. 5985 verbose parsed url { pathname: 'block-stream@*',
  1662. 5985 verbose parsed url path: 'block-stream@*',
  1663. 5985 verbose parsed url href: 'block-stream@*' }
  1664. 5986 verbose cache add name="block-stream" spec="*" args=["block-stream","*"]
  1665. 5987 verbose parsed url { pathname: '*', path: '*', href: '*' }
  1666. 5988 verbose addNamed [ 'block-stream', '*' ]
  1667. 5989 verbose addNamed [ null, '' ]
  1668. 5990 silly lockFile 28c964d9-block-stream block-stream@*
  1669. 5991 verbose lock block-stream@* /root/.npm/28c964d9-block-stream.lock
  1670. 5992 verbose cache add [ 'broadway@0.2.5', null ]
  1671. 5993 verbose cache add name=undefined spec="broadway@0.2.5" args=["broadway@0.2.5",null]
  1672. 5994 verbose parsed url { pathname: 'broadway@0.2.5',
  1673. 5994 verbose parsed url path: 'broadway@0.2.5',
  1674. 5994 verbose parsed url href: 'broadway@0.2.5' }
  1675. 5995 verbose cache add name="broadway" spec="0.2.5" args=["broadway","0.2.5"]
  1676. 5996 verbose parsed url { pathname: '0.2.5', path: '0.2.5', href: '0.2.5' }
  1677. 5997 verbose addNamed [ 'broadway', '0.2.5' ]
  1678. 5998 verbose addNamed [ '0.2.5', '0.2.5' ]
  1679. 5999 silly lockFile f760862d-broadway-0-2-5 broadway@0.2.5
  1680. 6000 verbose lock broadway@0.2.5 /root/.npm/f760862d-broadway-0-2-5.lock
  1681. 6001 verbose cache add [ 'optimist@0.3.4', null ]
  1682. 6002 verbose cache add name=undefined spec="optimist@0.3.4" args=["optimist@0.3.4",null]
  1683. 6003 verbose parsed url { pathname: 'optimist@0.3.4',
  1684. 6003 verbose parsed url path: 'optimist@0.3.4',
  1685. 6003 verbose parsed url href: 'optimist@0.3.4' }
  1686. 6004 verbose cache add name="optimist" spec="0.3.4" args=["optimist","0.3.4"]
  1687. 6005 verbose parsed url { pathname: '0.3.4', path: '0.3.4', href: '0.3.4' }
  1688. 6006 verbose addNamed [ 'optimist', '0.3.4' ]
  1689. 6007 verbose addNamed [ '0.3.4', '0.3.4' ]
  1690. 6008 silly lockFile 823918a4-optimist-0-3-4 optimist@0.3.4
  1691. 6009 verbose lock optimist@0.3.4 /root/.npm/823918a4-optimist-0-3-4.lock
  1692. 6010 verbose cache add [ 'graceful-fs@~1.1.2', null ]
  1693. 6011 verbose cache add name=undefined spec="graceful-fs@~1.1.2" args=["graceful-fs@~1.1.2",null]
  1694. 6012 verbose parsed url { pathname: 'graceful-fs@~1.1.2',
  1695. 6012 verbose parsed url path: 'graceful-fs@~1.1.2',
  1696. 6012 verbose parsed url href: 'graceful-fs@~1.1.2' }
  1697. 6013 verbose cache add name="graceful-fs" spec="~1.1.2" args=["graceful-fs","~1.1.2"]
  1698. 6014 verbose parsed url { pathname: '~1.1.2', path: '~1.1.2', href: '~1.1.2' }
  1699. 6015 verbose addNamed [ 'graceful-fs', '~1.1.2' ]
  1700. 6016 verbose addNamed [ null, '>=1.1.2- <1.2.0-' ]
  1701. 6017 silly lockFile 6ef561cf-graceful-fs-1-1-2 graceful-fs@~1.1.2
  1702. 6018 verbose lock graceful-fs@~1.1.2 /root/.npm/6ef561cf-graceful-fs-1-1-2.lock
  1703. 6019 verbose cache add [ 'prompt@0.2.8', null ]
  1704. 6020 verbose cache add name=undefined spec="prompt@0.2.8" args=["prompt@0.2.8",null]
  1705. 6021 verbose parsed url { pathname: 'prompt@0.2.8',
  1706. 6021 verbose parsed url path: 'prompt@0.2.8',
  1707. 6021 verbose parsed url href: 'prompt@0.2.8' }
  1708. 6022 verbose cache add name="prompt" spec="0.2.8" args=["prompt","0.2.8"]
  1709. 6023 verbose parsed url { pathname: '0.2.8', path: '0.2.8', href: '0.2.8' }
  1710. 6024 verbose addNamed [ 'prompt', '0.2.8' ]
  1711. 6025 verbose addNamed [ '0.2.8', '0.2.8' ]
  1712. 6026 silly lockFile bbccf6c3-prompt-0-2-8 prompt@0.2.8
  1713. 6027 verbose lock prompt@0.2.8 /root/.npm/bbccf6c3-prompt-0-2-8.lock
  1714. 6028 verbose cache add [ 'inherits@~1.0.0', null ]
  1715. 6029 verbose cache add name=undefined spec="inherits@~1.0.0" args=["inherits@~1.0.0",null]
  1716. 6030 verbose parsed url { pathname: 'inherits@~1.0.0',
  1717. 6030 verbose parsed url path: 'inherits@~1.0.0',
  1718. 6030 verbose parsed url href: 'inherits@~1.0.0' }
  1719. 6031 verbose cache add name="inherits" spec="~1.0.0" args=["inherits","~1.0.0"]
  1720. 6032 verbose parsed url { pathname: '~1.0.0', path: '~1.0.0', href: '~1.0.0' }
  1721. 6033 verbose addNamed [ 'inherits', '~1.0.0' ]
  1722. 6034 verbose addNamed [ null, '>=1.0.0- <1.1.0-' ]
  1723. 6035 silly lockFile 9a68ae75-inherits-1-0-0 inherits@~1.0.0
  1724. 6036 verbose lock inherits@~1.0.0 /root/.npm/9a68ae75-inherits-1-0-0.lock
  1725. 6037 verbose cache add [ 'director@1.1.6', null ]
  1726. 6038 verbose cache add name=undefined spec="director@1.1.6" args=["director@1.1.6",null]
  1727. 6039 verbose parsed url { pathname: 'director@1.1.6',
  1728. 6039 verbose parsed url path: 'director@1.1.6',
  1729. 6039 verbose parsed url href: 'director@1.1.6' }
  1730. 6040 verbose cache add name="director" spec="1.1.6" args=["director","1.1.6"]
  1731. 6041 verbose parsed url { pathname: '1.1.6', path: '1.1.6', href: '1.1.6' }
  1732. 6042 verbose addNamed [ 'director', '1.1.6' ]
  1733. 6043 verbose addNamed [ '1.1.6', '1.1.6' ]
  1734. 6044 silly lockFile 74a293a4-director-1-1-6 director@1.1.6
  1735. 6045 verbose lock director@1.1.6 /root/.npm/74a293a4-director-1-1-6.lock
  1736. 6046 info install dateformat@1.0.2-1.2.3
  1737. 6047 info install progress@0.1.0
  1738. 6048 info install ladder@0.0.0
  1739. 6049 info install complete@0.3.1
  1740. 6050 info install spawn-command@0.0.2
  1741. 6051 info install colors@0.6.0-1
  1742. 6052 info install flatiron-cli-config@0.1.3
  1743. 6053 info install flatiron-cli-users@0.1.3
  1744. 6054 info install pkginfo@0.2.3
  1745. 6055 info install nodejitsu-api@0.3.6
  1746. 6056 silly addNameRange { name: 'fstream-ignore',
  1747. 6056 silly addNameRange range: '>=0.0.5- <0.1.0-',
  1748. 6056 silly addNameRange hasData: false }
  1749. 6057 silly addNameRange { name: 'inherits', range: '', hasData: false }
  1750. 6058 silly addNameRange { name: 'prompt', range: '', hasData: false }
  1751. 6059 silly addNameRange { name: 'rimraf', range: '>=2.0.0- <3.0.0-', hasData: false }
  1752. 6060 silly addNameRange { name: 'mkdirp', range: '>=0.3.0- <0.4.0-', hasData: false }
  1753. 6061 silly addNameRange { name: 'inherits', range: '>=1.0.0- <2.0.0-', hasData: false }
  1754. 6062 silly addNameRange { name: 'block-stream', range: '', hasData: false }
  1755. 6063 silly addNameRange { name: 'graceful-fs',
  1756. 6063 silly addNameRange range: '>=1.1.2- <1.2.0-',
  1757. 6063 silly addNameRange hasData: false }
  1758. 6064 silly addNameRange { name: 'inherits', range: '>=1.0.0- <1.1.0-', hasData: false }
  1759. 6065 verbose url raw fstream-ignore
  1760. 6066 verbose url resolving [ 'https://registry.npmjs.org/', './fstream-ignore' ]
  1761. 6067 verbose url resolved https://registry.npmjs.org/fstream-ignore
  1762. 6068 info trying registry request attempt 1 at 23:01:08
  1763. 6069 http GET https://registry.npmjs.org/fstream-ignore
  1764. 6070 verbose url raw inherits
  1765. 6071 verbose url resolving [ 'https://registry.npmjs.org/', './inherits' ]
  1766. 6072 verbose url resolved https://registry.npmjs.org/inherits
  1767. 6073 info trying registry request attempt 1 at 23:01:08
  1768. 6074 http GET https://registry.npmjs.org/inherits
  1769. 6075 verbose url raw prompt
  1770. 6076 verbose url resolving [ 'https://registry.npmjs.org/', './prompt' ]
  1771. 6077 verbose url resolved https://registry.npmjs.org/prompt
  1772. 6078 info trying registry request attempt 1 at 23:01:08
  1773. 6079 http GET https://registry.npmjs.org/prompt
  1774. 6080 verbose url raw rimraf
  1775. 6081 verbose url resolving [ 'https://registry.npmjs.org/', './rimraf' ]
  1776. 6082 verbose url resolved https://registry.npmjs.org/rimraf
  1777. 6083 info trying registry request attempt 1 at 23:01:08
  1778. 6084 http GET https://registry.npmjs.org/rimraf
  1779. 6085 verbose url raw mkdirp
  1780. 6086 verbose url resolving [ 'https://registry.npmjs.org/', './mkdirp' ]
  1781. 6087 verbose url resolved https://registry.npmjs.org/mkdirp
  1782. 6088 info trying registry request attempt 1 at 23:01:08
  1783. 6089 http GET https://registry.npmjs.org/mkdirp
  1784. 6090 verbose url raw inherits
  1785. 6091 verbose url resolving [ 'https://registry.npmjs.org/', './inherits' ]
  1786. 6092 verbose url resolved https://registry.npmjs.org/inherits
  1787. 6093 info trying registry request attempt 1 at 23:01:08
  1788. 6094 http GET https://registry.npmjs.org/inherits
  1789. 6095 verbose url raw block-stream
  1790. 6096 verbose url resolving [ 'https://registry.npmjs.org/', './block-stream' ]
  1791. 6097 verbose url resolved https://registry.npmjs.org/block-stream
  1792. 6098 info trying registry request attempt 1 at 23:01:08
  1793. 6099 http GET https://registry.npmjs.org/block-stream
  1794. 6100 verbose url raw broadway/0.2.5
  1795. 6101 verbose url resolving [ 'https://registry.npmjs.org/', './broadway/0.2.5' ]
  1796. 6102 verbose url resolved https://registry.npmjs.org/broadway/0.2.5
  1797. 6103 info trying registry request attempt 1 at 23:01:08
  1798. 6104 http GET https://registry.npmjs.org/broadway/0.2.5
  1799. 6105 verbose url raw optimist/0.3.4
  1800. 6106 verbose url resolving [ 'https://registry.npmjs.org/', './optimist/0.3.4' ]
  1801. 6107 verbose url resolved https://registry.npmjs.org/optimist/0.3.4
  1802. 6108 info trying registry request attempt 1 at 23:01:08
  1803. 6109 http GET https://registry.npmjs.org/optimist/0.3.4
  1804. 6110 verbose url raw graceful-fs
  1805. 6111 verbose url resolving [ 'https://registry.npmjs.org/', './graceful-fs' ]
  1806. 6112 verbose url resolved https://registry.npmjs.org/graceful-fs
  1807. 6113 info trying registry request attempt 1 at 23:01:08
  1808. 6114 http GET https://registry.npmjs.org/graceful-fs
  1809. 6115 verbose url raw prompt/0.2.8
  1810. 6116 verbose url resolving [ 'https://registry.npmjs.org/', './prompt/0.2.8' ]
  1811. 6117 verbose url resolved https://registry.npmjs.org/prompt/0.2.8
  1812. 6118 info trying registry request attempt 1 at 23:01:08
  1813. 6119 http GET https://registry.npmjs.org/prompt/0.2.8
  1814. 6120 verbose url raw inherits
  1815. 6121 verbose url resolving [ 'https://registry.npmjs.org/', './inherits' ]
  1816. 6122 verbose url resolved https://registry.npmjs.org/inherits
  1817. 6123 info trying registry request attempt 1 at 23:01:08
  1818. 6124 http GET https://registry.npmjs.org/inherits
  1819. 6125 verbose url raw director/1.1.6
  1820. 6126 verbose url resolving [ 'https://registry.npmjs.org/', './director/1.1.6' ]
  1821. 6127 verbose url resolved https://registry.npmjs.org/director/1.1.6
  1822. 6128 info trying registry request attempt 1 at 23:01:08
  1823. 6129 http GET https://registry.npmjs.org/director/1.1.6
  1824. 6130 info postinstall dateformat@1.0.2-1.2.3
  1825. 6131 info postinstall progress@0.1.0
  1826. 6132 info postinstall ladder@0.0.0
  1827. 6133 info postinstall complete@0.3.1
  1828. 6134 info postinstall spawn-command@0.0.2
  1829. 6135 info postinstall colors@0.6.0-1
  1830. 6136 info postinstall flatiron-cli-config@0.1.3
  1831. 6137 info postinstall flatiron-cli-users@0.1.3
  1832. 6138 info postinstall pkginfo@0.2.3
  1833. 6139 info postinstall nodejitsu-api@0.3.6
  1834. 6140 verbose from cache /usr/lib/node_modules/jitsu/package.json
  1835. 6141 verbose from cache /usr/lib/node_modules/jitsu/package.json
  1836. 6142 info install opener@1.3.0
  1837. 6143 silly gunzTarPerm extractEntry man/man3/find.3
  1838. 6144 silly gunzTarPerm extractEntry man/man3/view.3
  1839. 6145 info install semver@1.0.14
  1840. 6146 info postinstall opener@1.3.0
  1841. 6147 info postinstall semver@1.0.14
  1842. 6148 silly gunzTarPerm extractEntry man/man3/publish.3
  1843. 6149 silly gunzTarPerm extractEntry man/man3/commands.3
  1844. 6150 verbose readDependencies using package.json deps
  1845. 6151 verbose readDependencies using package.json deps
  1846. 6152 verbose from cache /usr/lib/node_modules/jitsu/node_modules/opener/package.json
  1847. 6153 verbose from cache /usr/lib/node_modules/jitsu/node_modules/flatiron/package.json
  1848. 6154 verbose from cache /usr/lib/node_modules/jitsu/node_modules/pkginfo/package.json
  1849. 6155 verbose read json /usr/lib/node_modules/jitsu/node_modules/request/package.json
  1850. 6156 verbose from cache /usr/lib/node_modules/jitsu/node_modules/fstream-npm/package.json
  1851. 6157 verbose from cache /usr/lib/node_modules/jitsu/node_modules/nodejitsu-api/package.json
  1852. 6158 verbose from cache /usr/lib/node_modules/jitsu/node_modules/fstream/package.json
  1853. 6159 verbose from cache /usr/lib/node_modules/jitsu/node_modules/spawn-command/package.json
  1854. 6160 verbose read json /usr/lib/node_modules/jitsu/node_modules/require-analyzer/package.json
  1855. 6161 verbose from cache /usr/lib/node_modules/jitsu/node_modules/colors/package.json
  1856. 6162 verbose from cache /usr/lib/node_modules/jitsu/node_modules/wizard/package.json
  1857. 6163 verbose from cache /usr/lib/node_modules/jitsu/node_modules/tar/package.json
  1858. 6164 verbose from cache /usr/lib/node_modules/jitsu/node_modules/flatiron-cli-config/package.json
  1859. 6165 verbose read json /usr/lib/node_modules/jitsu/node_modules/npm/package.json
  1860. 6166 verbose from cache /usr/lib/node_modules/jitsu/node_modules/complete/package.json
  1861. 6167 verbose read json /usr/lib/node_modules/jitsu/node_modules/.bin/package.json
  1862. 6168 verbose from cache /usr/lib/node_modules/jitsu/node_modules/ladder/package.json
  1863. 6169 verbose from cache /usr/lib/node_modules/jitsu/node_modules/dateformat/package.json
  1864. 6170 verbose from cache /usr/lib/node_modules/jitsu/node_modules/flatiron-cli-users/package.json
  1865. 6171 verbose from cache /usr/lib/node_modules/jitsu/node_modules/semver/package.json
  1866. 6172 verbose from cache /usr/lib/node_modules/jitsu/node_modules/progress/package.json
  1867. 6173 verbose from cache /usr/lib/node_modules/jitsu/node_modules/opener/package.json
  1868. 6174 verbose from cache /usr/lib/node_modules/jitsu/node_modules/flatiron/package.json
  1869. 6175 verbose from cache /usr/lib/node_modules/jitsu/node_modules/pkginfo/package.json
  1870. 6176 verbose read json /usr/lib/node_modules/jitsu/node_modules/request/package.json
  1871. 6177 verbose from cache /usr/lib/node_modules/jitsu/node_modules/fstream-npm/package.json
  1872. 6178 verbose from cache /usr/lib/node_modules/jitsu/node_modules/nodejitsu-api/package.json
  1873. 6179 verbose from cache /usr/lib/node_modules/jitsu/node_modules/fstream/package.json
  1874. 6180 verbose from cache /usr/lib/node_modules/jitsu/node_modules/spawn-command/package.json
  1875. 6181 verbose read json /usr/lib/node_modules/jitsu/node_modules/require-analyzer/package.json
  1876. 6182 verbose from cache /usr/lib/node_modules/jitsu/node_modules/colors/package.json
  1877. 6183 verbose from cache /usr/lib/node_modules/jitsu/node_modules/wizard/package.json
  1878. 6184 verbose from cache /usr/lib/node_modules/jitsu/node_modules/tar/package.json
  1879. 6185 verbose from cache /usr/lib/node_modules/jitsu/node_modules/flatiron-cli-config/package.json
  1880. 6186 verbose read json /usr/lib/node_modules/jitsu/node_modules/npm/package.json
  1881. 6187 verbose from cache /usr/lib/node_modules/jitsu/node_modules/complete/package.json
  1882. 6188 verbose read json /usr/lib/node_modules/jitsu/node_modules/.bin/package.json
  1883. 6189 verbose from cache /usr/lib/node_modules/jitsu/node_modules/ladder/package.json
  1884. 6190 verbose from cache /usr/lib/node_modules/jitsu/node_modules/dateformat/package.json
  1885. 6191 verbose from cache /usr/lib/node_modules/jitsu/node_modules/flatiron-cli-users/package.json
  1886. 6192 verbose from cache /usr/lib/node_modules/jitsu/node_modules/semver/package.json
  1887. 6193 verbose from cache /usr/lib/node_modules/jitsu/node_modules/progress/package.json
  1888. 6194 silly gunzTarPerm extractEntry man/man3/stop.3
  1889. 6195 silly gunzTarPerm extractEntry man/man3/docs.3
  1890. 6196 silly gunzTarPerm extractEntry man/man3/tag.3
  1891. 6197 silly gunzTarPerm extractEntry man/man3/npm.3
  1892. 6198 silly gunzTarPerm extractEntry man/man3/rm.3
  1893. 6199 silly gunzTarPerm extractEntry man/man3/author.3
  1894. 6200 silly gunzTarPerm extractEntry man/man3/pack.3
  1895. 6201 silly gunzTarPerm extractEntry man/man3/config.3
  1896. 6202 silly gunzTarPerm extractEntry man/man1/list.1
  1897. 6203 silly gunzTarPerm extractEntry man/man1/coding-style.1
  1898. 6204 silly gunzTarPerm extractEntry man/man1/publish.1
  1899. 6205 silly gunzTarPerm extractEntry man/man1/shrinkwrap.1
  1900. 6206 verbose already installed skipping flatiron@~0.1.9 /usr/lib/node_modules/jitsu
  1901. 6207 silly resolved []
  1902. 6208 verbose about to build /usr/lib/node_modules/jitsu
  1903. 6209 info build /usr/lib/node_modules/jitsu
  1904. 6210 verbose from cache /usr/lib/node_modules/jitsu/package.json
  1905. 6211 verbose already installed skipping flatiron@~0.1.9 /usr/lib/node_modules/jitsu
  1906. 6212 silly resolved []
  1907. 6213 verbose about to build /usr/lib/node_modules/jitsu
  1908. 6214 info build /usr/lib/node_modules/jitsu
  1909. 6215 verbose from cache /usr/lib/node_modules/jitsu/package.json
  1910. 6216 verbose linkStuff [ true, '/usr/lib/node_modules', true, '/usr/lib/node_modules' ]
  1911. 6217 info linkStuff jitsu@0.11.5
  1912. 6218 verbose linkBins jitsu@0.11.5
  1913. 6219 verbose link bins [ { jitsu: './bin/jitsu' }, '/usr/bin', true ]
  1914. 6220 verbose linkMans jitsu@0.11.5
  1915. 6221 verbose rebuildBundles jitsu@0.11.5
  1916. 6222 verbose linkStuff [ true, '/usr/lib/node_modules', true, '/usr/lib/node_modules' ]
  1917. 6223 info linkStuff jitsu@0.11.5
  1918. 6224 verbose linkBins jitsu@0.11.5
  1919. 6225 verbose link bins [ { jitsu: './bin/jitsu' }, '/usr/bin', true ]
  1920. 6226 verbose linkMans jitsu@0.11.5
  1921. 6227 verbose rebuildBundles jitsu@0.11.5
  1922. 6228 verbose rebuildBundles [ 'opener',
  1923. 6228 verbose rebuildBundles 'flatiron',
  1924. 6228 verbose rebuildBundles 'pkginfo',
  1925. 6228 verbose rebuildBundles 'request',
  1926. 6228 verbose rebuildBundles 'fstream-npm',
  1927. 6228 verbose rebuildBundles 'nodejitsu-api',
  1928. 6228 verbose rebuildBundles 'fstream',
  1929. 6228 verbose rebuildBundles 'spawn-command',
  1930. 6228 verbose rebuildBundles 'require-analyzer',
  1931. 6228 verbose rebuildBundles 'colors',
  1932. 6228 verbose rebuildBundles 'wizard',
  1933. 6228 verbose rebuildBundles 'tar',
  1934. 6228 verbose rebuildBundles 'flatiron-cli-config',
  1935. 6228 verbose rebuildBundles 'npm',
  1936. 6228 verbose rebuildBundles 'complete',
  1937. 6228 verbose rebuildBundles '.bin',
  1938. 6228 verbose rebuildBundles 'ladder',
  1939. 6228 verbose rebuildBundles 'dateformat',
  1940. 6228 verbose rebuildBundles 'flatiron-cli-users',
  1941. 6228 verbose rebuildBundles 'semver',
  1942. 6228 verbose rebuildBundles 'progress' ]
  1943. 6229 verbose rebuildBundles [ 'opener',
  1944. 6229 verbose rebuildBundles 'flatiron',
  1945. 6229 verbose rebuildBundles 'pkginfo',
  1946. 6229 verbose rebuildBundles 'request',
  1947. 6229 verbose rebuildBundles 'fstream-npm',
  1948. 6229 verbose rebuildBundles 'nodejitsu-api',
  1949. 6229 verbose rebuildBundles 'fstream',
  1950. 6229 verbose rebuildBundles 'spawn-command',
  1951. 6229 verbose rebuildBundles 'require-analyzer',
  1952. 6229 verbose rebuildBundles 'colors',
  1953. 6229 verbose rebuildBundles 'wizard',
  1954. 6229 verbose rebuildBundles 'tar',
  1955. 6229 verbose rebuildBundles 'flatiron-cli-config',
  1956. 6229 verbose rebuildBundles 'npm',
  1957. 6229 verbose rebuildBundles 'complete',
  1958. 6229 verbose rebuildBundles '.bin',
  1959. 6229 verbose rebuildBundles 'ladder',
  1960. 6229 verbose rebuildBundles 'dateformat',
  1961. 6229 verbose rebuildBundles 'flatiron-cli-users',
  1962. 6229 verbose rebuildBundles 'semver',
  1963. 6229 verbose rebuildBundles 'progress' ]
  1964. 6230 silly gunzTarPerm extractEntry man/man1/changelog.1
  1965. 6231 silly gunzTarPerm extractEntry man/man1/edit.1
  1966. 6232 info /usr/lib/node_modules/jitsu/node_modules/flatiron-cli-users unbuild
  1967. 6233 verbose from cache /usr/lib/node_modules/jitsu/node_modules/flatiron-cli-users/package.json
  1968. 6234 info install jitsu@0.11.5
  1969. 6235 info postinstall jitsu@0.11.5
  1970. 6236 silly gunzTarPerm extractEntry man/man1/init.1
  1971. 6237 silly gunzTarPerm extractEntry man/man1/docs.1
  1972. 6238 silly gunzTarPerm extractEntry man/man1/pack.1
  1973. 6239 silly gunzTarPerm extractEntry man/man1/author.1
  1974. 6240 silly gunzTarPerm extractEntry man/man1/view.1
  1975. 6241 silly gunzTarPerm extractEntry man/man1/update.1
  1976. 6242 info preuninstall flatiron-cli-users@0.1.3
  1977. 6243 silly gunzTarPerm extractEntry man/man1/stop.1
  1978. 6244 silly gunzTarPerm extractEntry man/man1/submodule.1
  1979. 6245 info uninstall flatiron-cli-users@0.1.3
  1980. 6246 verbose false,/usr/lib/node_modules,/usr/lib/node_modules/jitsu/node_modules unbuild flatiron-cli-users@0.1.3
  1981. 6247 info postuninstall flatiron-cli-users@0.1.3
  1982. 6248 silly gunzTarPerm extractEntry man/man1/ls.1
  1983. 6249 silly gunzTarPerm extractEntry man/man1/test.1
  1984. 6250 verbose about to build /usr/lib/node_modules/jitsu
  1985. 6251 info /usr/lib/node_modules/jitsu unbuild
  1986. 6252 verbose from cache /usr/lib/node_modules/jitsu/package.json
  1987. 6253 silly gunzTarPerm extractEntry man/man1/uninstall.1
  1988. 6254 silly gunzTarPerm extractEntry man/man1/help.1
  1989. 6255 silly gunzTarPerm extractEntry man/man1/prefix.1
  1990. 6256 silly gunzTarPerm extractEntry man/man1/run-script.1
  1991. 6257 silly gunzTarPerm extractEntry man/man1/registry.1
  1992. 6258 silly gunzTarPerm extractEntry man/man1/search.1
  1993. 6259 silly gunzTarPerm extractEntry man/man1/removing-npm.1
  1994. 6260 silly gunzTarPerm extractEntry man/man1/faq.1
  1995. 6261 info preuninstall jitsu@0.11.5
  1996. 6262 silly gunzTarPerm extractEntry man/man1/npm.1
  1997. 6263 info uninstall jitsu@0.11.5
  1998. 6264 verbose true,/usr/lib/node_modules,/usr/lib/node_modules unbuild jitsu@0.11.5
  1999. 6265 verbose /usr/bin,[object Object] binRoot
  2000. 6266 silly gunzTarPerm extractEntry man/man1/owner.1
  2001. 6267 silly gunzTarPerm extractEntry man/man1/deprecate.1
  2002. 6268 info postuninstall jitsu@0.11.5
  2003. 6269 silly gunzTarPerm extractEntry man/man1/restart.1
  2004. 6270 silly gunzTarPerm extractEntry man/man1/explore.1
  2005. 6271 error EEXIST, mkdir '/usr/lib/node_modules/jitsu/node_modules/npm/test/packages/npm-test-ignore'
  2006. File exists: /usr/lib/node_modules/jitsu/node_modules/npm/test/packages/npm-test-ignore
  2007. Move it away, and try again.
  2008. 6272 error System Linux 3.6.11-1-ARCH
  2009. 6273 error command "node" "/usr/bin/npm" "install" "-g" "jitsu"
  2010. 6274 error cwd /home/zcdziura
  2011. 6275 error node -v v0.8.17
  2012. 6276 error npm -v 1.2.1
  2013. 6277 error path /usr/lib/node_modules/jitsu/node_modules/npm/test/packages/npm-test-ignore
  2014. 6278 error fstream_path /usr/lib/node_modules/jitsu/node_modules/npm/test/packages/npm-test-ignore/README
  2015. 6279 error fstream_type File
  2016. 6280 error fstream_class FileWriter
  2017. 6281 error code EEXIST
  2018. 6282 error errno 47
  2019. 6283 error fstream_stack /usr/lib/node_modules/npm/node_modules/fstream/lib/writer.js:171:23
  2020. 6283 error fstream_stack /usr/lib/node_modules/npm/node_modules/mkdirp/index.js:37:53
  2021. 6283 error fstream_stack Object.oncomplete (fs.js:297:15)
  2022. 6284 verbose exit [ 47, true ]
Add Comment
Please, Sign In to add comment