Skip to content

Instantly share code, notes, and snippets.

@cranic
Created September 16, 2012 03:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cranic/3730932 to your computer and use it in GitHub Desktop.
Save cranic/3730932 to your computer and use it in GitHub Desktop.
0 info it worked if it ends with ok
1 verbose cli [ 'C:\\Program Files (x86)\\nodejs\\\\node.exe',
1 verbose cli 'C:\\Program Files (x86)\\nodejs\\node_modules\\npm\\bin\\npm-cli.js',
1 verbose cli 'install',
1 verbose cli 'levelup' ]
2 info using npm@1.1.61
3 info using node@v0.8.9
4 verbose node symlink C:\Program Files (x86)\nodejs\\node.exe
5 verbose read json C:\Users\Alan Hoffmeistert\Projetos\levelup\package.json
6 verbose read json C:\Users\Alan Hoffmeistert\Projetos\levelup\package.json
7 verbose cache add [ 'levelup', null ]
8 silly cache add name=undefined spec="levelup" args=["levelup",null]
9 verbose parsed url { pathname: 'levelup', path: 'levelup', href: 'levelup' }
10 silly lockFile 98373860-levelup levelup
11 verbose lock levelup C:\Users\Alan Hoffmeistert\AppData\Roaming\npm-cache\98373860-levelup.lock
12 silly lockFile 98373860-levelup levelup
13 verbose addNamed [ 'levelup', '' ]
14 verbose addNamed [ null, '' ]
15 silly lockFile dad10c9a-levelup levelup@
16 verbose lock levelup@ C:\Users\Alan Hoffmeistert\AppData\Roaming\npm-cache\dad10c9a-levelup.lock
17 silly addNameRange { name: 'levelup', range: '', hasData: false }
18 verbose url raw levelup
19 verbose url resolving [ 'https://registry.npmjs.org/', './levelup' ]
20 verbose url resolved https://registry.npmjs.org/levelup
21 info trying registry request attempt 1 at 00:40:33
22 verbose etag "7E1HRMXD5B0WUEJHA7HIFIMJJ"
23 http GET https://registry.npmjs.org/levelup
24 http 304 https://registry.npmjs.org/levelup
25 silly registry.get cb [ 304,
25 silly registry.get { server: 'CouchDB/1.2.0 (Erlang OTP/R15B)',
25 silly registry.get etag: '"7E1HRMXD5B0WUEJHA7HIFIMJJ"',
25 silly registry.get date: 'Sun, 16 Sep 2012 03:41:09 GMT',
25 silly registry.get 'content-length': '0' } ]
26 verbose etag levelup from cache
27 silly addNameRange number 2 { name: 'levelup', range: '', hasData: true }
28 silly addNameRange versions [ 'levelup',
28 silly addNameRange [ '0.0.0',
28 silly addNameRange '0.0.0-1',
28 silly addNameRange '0.0.1',
28 silly addNameRange '0.0.2',
28 silly addNameRange '0.0.2a',
28 silly addNameRange '0.0.2-1',
28 silly addNameRange '0.0.3',
28 silly addNameRange '0.0.4' ] ]
29 verbose addNamed [ 'levelup', '0.0.4' ]
30 verbose addNamed [ '0.0.4', '0.0.4' ]
31 silly lockFile bc4ffbd0-levelup-0-0-4 levelup@0.0.4
32 verbose lock levelup@0.0.4 C:\Users\Alan Hoffmeistert\AppData\Roaming\npm-cache\bc4ffbd0-levelup-0-0-4.lock
33 verbose read json C:\Users\Alan Hoffmeistert\AppData\Roaming\npm-cache\levelup\0.0.4\package\package.json
34 silly lockFile bc4ffbd0-levelup-0-0-4 levelup@0.0.4
35 silly lockFile dad10c9a-levelup levelup@
36 silly resolved [ { name: 'levelup',
36 silly resolved authors: [ 'Rod Vagg @rvagg <rod@vagg.org> (https://github.com/rvagg)' ],
36 silly resolved keywords:
36 silly resolved [ 'leveldb',
36 silly resolved 'levelup',
36 silly resolved 'stream',
36 silly resolved 'database',
36 silly resolved 'db',
36 silly resolved 'store',
36 silly resolved 'storage',
36 silly resolved 'json' ],
36 silly resolved version: '0.0.4',
36 silly resolved main: 'lib/levelup.js',
36 silly resolved dependencies:
36 silly resolved { errno: '~0.0.3',
36 silly resolved bindings: '~1.0.0',
36 silly resolved 'concat-stream': '~0.0.8',
36 silly resolved bufferstream: '~0.5.1' },
36 silly resolved devDependencies:
36 silly resolved { buster: '*',
36 silly resolved rimraf: '*',
36 silly resolved async: '*',
36 silly resolved fstream: '*',
36 silly resolved tar: '*',
36 silly resolved mkfiletree: '*',
36 silly resolved readfiletree: '*' },
36 silly resolved repository:
36 silly resolved { type: 'git',
36 silly resolved url: 'https://github.com/rvagg/node-levelup.git' },
36 silly resolved scripts:
36 silly resolved { test: './node_modules/.bin/buster-test',
36 silly resolved install: 'node-gyp rebuild' },
36 silly resolved license: 'MIT',
36 silly resolved gypfile: true,
36 silly resolved readme: 'LevelUP\n=======\n\nFast & simple storage - a Node.js-style LevelDB wrapper\n-------------------------------------------------------\n\n**[LevelDB](http://code.google.com/p/leveldb/)** is a simple key/value data store built by Google, inspired by BigTable. It\'s used in Google Chrome and many other products. LevelDB supports arbitrary byte arrays as both keys and values, singular *get*, *put* and *delete* operations, *batched put and delete*, forward and reverse iteration and simple compression using the [Snappy](http://code.google.com/p/snappy/) algorithm which is optimised for speed over compression.\n\n\n**LevelUP** aims to expose the features of LevelDB in a Node.js-friendly way. Both keys and values are treated as `Buffer` objects and are automatically converted using a specified `\'encoding\'`. LevelDB\'s iterators are exposed as a Node.js style object-`ReadStream` and writing can be peformed via an object-`WriteStream`.\n\nBasic usage\n-----------\n\nAll operations are asynchronous although they don\'t necessarily require a callback if you don\'t need to know when the operation was performed.\n\n```js\nvar levelup = require(\'levelup\')\n\n// 1) Create our database, supply location and options.\n// This will create or open the underlying LevelDB store.\nvar options = { createIfMissing: true, errorIfExists: false }\nlevelup(\'./mydb\', options, function (err, db) {\n if (err) return console.log(\'Ooops!\', err)\n\n // 2) put a key & value\n db.put(\'name\', \'LevelUP\', function (err) {\n if (err) return console.log(\'Ooops!\', err) // some kind of I/O error\n\n // 3) fetch by key\n db.get(\'name\', function (err, value) {\n if (err) return console.log(\'Ooops!\', err) // likely the key was not found\n\n // ta da!\n console.log(\'name=\' + value)\n })\n })\n})\n```\n\n### Options\n\n`levelup()` takes an optional options object as its second argument; the following properties are accepted:\n\n* `createIfMissing` *(boolean)*: If `true`, will initialise an empty database at the specified location if one doesn\'t already exit. If `false` and a database doesn\'t exist you will receive an error in your `open()` callback and your database won\'t open. Defaults to `false`.\n\n* `errorIfExists` *(boolean)*: If `true`, you will receive an error in your `open()` callback if the database exists at the specified location. Defaults to `false`.\n\n* `encoding` *(string)*: The encoding of the keys and values passed through Node.js\' `Buffer` implementation (see [Buffer#toString()](http://nodejs.org/docs/latest/api/buffer.html#buffer_buf_tostring_encoding_start_end))\n <p><code>\'utf8\'</code> is the default encoding for both keys and values so you can simply pass in strings and expect strings from your <code>get()</code> operations. You can also pass <code>Buffer</code> objects as keys and/or values and converstion will be performed.</p>\n <p>Supported encodings are: hex, utf8, ascii, binary, base64, ucs2, utf16le.</p>\n <p><code>\'json\'</code> encoding is also supported, see below.</p>\n\n* `keyEncoding` and `valueEncoding` *(string)*: use instead of `encoding` to specify the exact encoding of both the keys and the values in this database.\n\nAdditionally, each of the main interface methods accept an optional options object that can be used to override `encoding` (or `keyEncoding` & `valueEncoding`).\n\n### Batch operations\n\nFor faster write operations, the `batch()` method can be used to submit an array of operations to be executed sequentially. Each operation is contained in an object having the following properties: `type`, `key`, `value`, where the *type* is either `\'put\'` or `\'del\'`. In the case of `\'del\'` the `\'value\'` property is ignored.\n\n```js\nvar ops = [\n { type: \'del\', key: \'father\' }\n , { type: \'put\', key: \'name\', value: \'Yuri Irsenovich Kim\' }\n , { type: \'put\', key: \'dob\', value: \'16 February 1941\' }\n , { type: \'put\', key: \'spouse\', value: \'Kim Young-sook\' }\n , { type: \'put\', key: \'occupation\', value: \'Clown\' }\n]\n\ndb.batch(ops, function (err) {\n if (err) return console.log(\'Ooops!\', err)\n console.log(\'Great success dear leader!\')\n})\n```\n\nStreams\n-------\n\n### ReadStream\n\nYou can obtain a **ReadStream** of the full database by calling the `readStream()` method. The resulting stream is a complete Node.js-style [Readable Stream](http://nodejs.org/docs/latest/api/stream.html#stream_readable_stream) where `\'data\'` events emit objects with `\'key\'` and `\'value\'` pairs.\n\n```js\ndb.readStream()\n .on(\'data\', function (data) {\n console.log(data.key, \'=\', data.value)\n })\n .on(\'error\', function (err) {\n console.log(\'Oh my!\', err)\n })\n .on(\'close\', function () {\n console.log(\'Stream closed\')\n })\n .on(\'end\', function () {\n console.log(\'Stream closed\')\n })\n```\n\nThe standard `pause()`, `resume()` and `destroy()` methods are implemented on the ReadStream, as is `pipe()` (see below). `\'data\'`, \'`error\'`, `\'end\'` and `\'close\'` events are emitted.\n\nAdditionally, you can supply an options object as the first parameter to `readStream()` with the following options:\n\n* `\'start\'`: the key you wish to start the read at. By default it will start at the beginning of the store. Note that the *start* doesn\'t have to be an actual key that exists, LevelDB will simply find the *next* key, greater than the key you provide.\n\n* `\'end\'`: the key you wish to end the read on. By default it will continue until the end of the store. Again, the *end* doesn\'t have to be an actual key as an (inclusive) `<=`-type operation is performed to detect the end. You can also use the `destroy()` method instead of supplying an `\'end\'` parameter to achieve the same effect.\n\n* `\'reverse\'`: a boolean, set to true if you want the stream to go in reverse order. Beware that due to the way LevelDB works, a reverse seek will be slower than a forward seek.\n\n### WriteStream\n\nA **WriteStream** can be obtained by calling the `writeStream()` method. The resulting stream is a complete Node.js-style [Writable Stream](http://nodejs.org/docs/latest/api/stream.html#stream_writable_stream) which accepts objects with `\'key\'` and `\'value\'` pairs on its `write()` method. Tce WriteStream will buffer writes and submit them as a `batch()` operation where the writes occur on the same event loop tick, otherwise they are treated as simple `put()` operations.\n\n```js\ndb.writeStream()\n .on(\'error\', function (err) {\n console.log(\'Oh my!\', err)\n })\n .on(\'close\', function () {\n console.log(\'Stream closed\')\n })\n .write({ key: \'name\', value: \'Yuri Irsenovich Kim\' })\n .write({ key: \'dob\', value: \'16 February 1941\' })\n .write({ key: \'spouse\', value: \'Kim Young-sook\' })\n .write({ key: \'occupation\', value: \'Clown\' })\n .end()\n```\n\nThe standard `write()`, `end()`, `destroy()` and `destroySoon()` methods are implemented on the WriteStream. `\'drain\'`, `\'error\'`, `\'close\'` and `\'pipe\'` events are emitted.\n\n### Pipes and compatibility\n\nA ReadStream can be piped directly to a WriteStream, allowing for easy copying of an entire database. A simple `copy()` operation is included in LevelUP that performs exactly this on two open databases:\n\n```js\nfunction copy (srcdb, dstdb, callback) {\n srcdb.readStream().pipe(dstdb.writeStream().on(\'close\', callback))\n}\n```\n\nThe ReadStream is also [fstream](https://github.com/isaacs/fstream)-compatible which means you should be able to pipe to and from fstreams. So you can serialize and deserialize an entire database to a directory where keys are filenames and values are their contents, or even into a *tar* file using [node-tar](https://github.com/isaacs/node-tar). See the [fstream functional test](https://github.com/rvagg/node-levelup/blob/master/test/functional/fstream-test.js) for an example. *(Note: I\'m not really sure there\'s a great use-case for this but it\'s a fun example and it helps to harden the stream implementations.)*\n\nJSON\n----\n\nYou specify `\'json\'` encoding for both keys and/or values, you can then supply JavaScript objects to LevelUP and receive them from all fetch operations, including ReadStreams. LevelUP will automatically *stringify* your objects and store them as *utf8* and parse the strings back into objects before passing them back to you.\n\nImportant considerations\n------------------------\n\n* LevelDB is thread-safe but is **not** suitable for accessing with multiple processes. You should only ever have a LevelDB database open from a single Node.js process.\n\nTODO\n----\n\n* Filter streams, e.g.: KeyReadStream, ValueReadStream\n* *Windows support, maybe*\n* Benchmarks\n\nLicence & copyright\n-------------------\n\nLevelUP is Copyright (c) 2012 Rod Vagg <@rvagg> and licenced under the MIT licence. All rights not explicitly granted in the MIT license are reserved. See the included LICENSE file for more details.\n\nLevelUP builds on the excellent work of the LevelDB and Snappy teams from Google and additional contributors. LevelDB and Snappy are both issued under the [New BSD Licence](http://opensource.org/licenses/BSD-3-Clause).\n',
36 silly resolved _id: 'levelup@0.0.4',
36 silly resolved description: 'LevelUP =======',
36 silly resolved _from: 'levelup' } ]
37 info install levelup@0.0.4 into C:\Users\Alan Hoffmeistert\Projetos\levelup
38 info installOne levelup@0.0.4
39 verbose from cache C:\Users\Alan Hoffmeistert\AppData\Roaming\npm-cache\levelup\0.0.4\package\package.json
40 info C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup unbuild
41 verbose read json C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup\package.json
42 verbose tar unpack C:\Users\Alan Hoffmeistert\AppData\Roaming\npm-cache\levelup\0.0.4\package.tgz
43 silly lockFile 07902624-tos-levelup-node-modules-levelup C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup
44 verbose lock C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup C:\Users\Alan Hoffmeistert\AppData\Roaming\npm-cache\07902624-tos-levelup-node-modules-levelup.lock
45 silly gunzTarPerm modes [ '755', '644' ]
46 silly gunzTarPerm extractEntry package.json
47 silly gunzTarPerm modified mode [ 'package.json', 438, 420 ]
48 silly gunzTarPerm extractEntry .npmignore
49 silly gunzTarPerm modified mode [ '.npmignore', 438, 420 ]
50 silly gunzTarPerm extractEntry README.md
51 silly gunzTarPerm modified mode [ 'README.md', 438, 420 ]
52 silly gunzTarPerm extractEntry LICENSE
53 silly gunzTarPerm modified mode [ 'LICENSE', 438, 420 ]
54 silly gunzTarPerm extractEntry buster.js
55 silly gunzTarPerm modified mode [ 'buster.js', 438, 420 ]
56 silly gunzTarPerm extractEntry lib/errors.js
57 silly gunzTarPerm modified mode [ 'lib/errors.js', 438, 420 ]
58 silly gunzTarPerm extractEntry lib/levelup.js
59 silly gunzTarPerm modified mode [ 'lib/levelup.js', 438, 420 ]
60 silly gunzTarPerm extractEntry lib/read-stream.js
61 silly gunzTarPerm modified mode [ 'lib/read-stream.js', 438, 420 ]
62 silly gunzTarPerm extractEntry lib/util.js
63 silly gunzTarPerm modified mode [ 'lib/util.js', 438, 420 ]
64 silly gunzTarPerm extractEntry lib/write-stream.js
65 silly gunzTarPerm modified mode [ 'lib/write-stream.js', 438, 420 ]
66 silly gunzTarPerm extractEntry .jshintrc
67 silly gunzTarPerm modified mode [ '.jshintrc', 438, 420 ]
68 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/.npmignore
69 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/.npmignore', 438, 420 ]
70 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/README
71 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/README', 438, 420 ]
72 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/LICENSE
73 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/LICENSE', 438, 420 ]
74 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/Makefile
75 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/Makefile', 438, 420 ]
76 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/build_detect_platform
77 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/build_detect_platform', 438, 420 ]
78 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/doc/bench/db_bench_sqlite3.cc
79 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/doc/bench/db_bench_sqlite3.cc',
79 silly gunzTarPerm 438,
79 silly gunzTarPerm 420 ]
80 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/doc/bench/db_bench_tree_db.cc
81 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/doc/bench/db_bench_tree_db.cc',
81 silly gunzTarPerm 438,
81 silly gunzTarPerm 420 ]
82 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/doc/benchmark.html
83 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/doc/benchmark.html', 438, 420 ]
84 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/doc/doc.css
85 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/doc/doc.css', 438, 420 ]
86 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/doc/impl.html
87 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/doc/impl.html', 438, 420 ]
88 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/doc/index.html
89 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/doc/index.html', 438, 420 ]
90 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/doc/log_format.txt
91 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/doc/log_format.txt', 438, 420 ]
92 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/doc/table_format.txt
93 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/doc/table_format.txt', 438, 420 ]
94 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/helpers/memenv/memenv.cc
95 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/helpers/memenv/memenv.cc',
95 silly gunzTarPerm 438,
95 silly gunzTarPerm 420 ]
96 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/helpers/memenv/memenv.h
97 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/helpers/memenv/memenv.h',
97 silly gunzTarPerm 438,
97 silly gunzTarPerm 420 ]
98 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/helpers/memenv/memenv_test.cc
99 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/helpers/memenv/memenv_test.cc',
99 silly gunzTarPerm 438,
99 silly gunzTarPerm 420 ]
100 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/include/leveldb/iterator.h
101 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/include/leveldb/iterator.h',
101 silly gunzTarPerm 438,
101 silly gunzTarPerm 420 ]
102 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/include/leveldb/c.h
103 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/include/leveldb/c.h', 438, 420 ]
104 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/include/leveldb/comparator.h
105 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/include/leveldb/comparator.h',
105 silly gunzTarPerm 438,
105 silly gunzTarPerm 420 ]
106 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/include/leveldb/db.h
107 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/include/leveldb/db.h', 438, 420 ]
108 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/include/leveldb/env.h
109 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/include/leveldb/env.h', 438, 420 ]
110 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/include/leveldb/filter_policy.h
111 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/include/leveldb/filter_policy.h',
111 silly gunzTarPerm 438,
111 silly gunzTarPerm 420 ]
112 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/include/leveldb/cache.h
113 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/include/leveldb/cache.h',
113 silly gunzTarPerm 438,
113 silly gunzTarPerm 420 ]
114 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/include/leveldb/options.h
115 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/include/leveldb/options.h',
115 silly gunzTarPerm 438,
115 silly gunzTarPerm 420 ]
116 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/include/leveldb/slice.h
117 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/include/leveldb/slice.h',
117 silly gunzTarPerm 438,
117 silly gunzTarPerm 420 ]
118 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/include/leveldb/status.h
119 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/include/leveldb/status.h',
119 silly gunzTarPerm 438,
119 silly gunzTarPerm 420 ]
120 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/include/leveldb/table.h
121 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/include/leveldb/table.h',
121 silly gunzTarPerm 438,
121 silly gunzTarPerm 420 ]
122 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/include/leveldb/table_builder.h
123 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/include/leveldb/table_builder.h',
123 silly gunzTarPerm 438,
123 silly gunzTarPerm 420 ]
124 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/include/leveldb/write_batch.h
125 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/include/leveldb/write_batch.h',
125 silly gunzTarPerm 438,
125 silly gunzTarPerm 420 ]
126 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/AUTHORS
127 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/AUTHORS', 438, 420 ]
128 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/db/log_test.cc
129 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/db/log_test.cc', 438, 420 ]
130 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/db/builder.cc
131 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/db/builder.cc', 438, 420 ]
132 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/db/c.cc
133 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/db/c.cc', 438, 420 ]
134 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/db/corruption_test.cc
135 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/db/corruption_test.cc', 438, 420 ]
136 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/db/c_test.c
137 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/db/c_test.c', 438, 420 ]
138 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/db/dbformat.cc
139 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/db/dbformat.cc', 438, 420 ]
140 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/db/dbformat.h
141 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/db/dbformat.h', 438, 420 ]
142 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/db/dbformat_test.cc
143 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/db/dbformat_test.cc', 438, 420 ]
144 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/db/db_bench.cc
145 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/db/db_bench.cc', 438, 420 ]
146 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/db/db_impl.cc
147 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/db/db_impl.cc', 438, 420 ]
148 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/db/db_impl.h
149 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/db/db_impl.h', 438, 420 ]
150 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/db/db_iter.cc
151 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/db/db_iter.cc', 438, 420 ]
152 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/db/db_iter.h
153 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/db/db_iter.h', 438, 420 ]
154 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/db/db_test.cc
155 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/db/db_test.cc', 438, 420 ]
156 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/db/filename.cc
157 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/db/filename.cc', 438, 420 ]
158 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/db/filename.h
159 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/db/filename.h', 438, 420 ]
160 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/db/filename_test.cc
161 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/db/filename_test.cc', 438, 420 ]
162 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/db/log_format.h
163 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/db/log_format.h', 438, 420 ]
164 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/db/log_reader.cc
165 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/db/log_reader.cc', 438, 420 ]
166 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/db/log_reader.h
167 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/db/log_reader.h', 438, 420 ]
168 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/db/builder.h
169 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/db/builder.h', 438, 420 ]
170 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/db/log_writer.cc
171 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/db/log_writer.cc', 438, 420 ]
172 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/db/log_writer.h
173 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/db/log_writer.h', 438, 420 ]
174 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/db/memtable.cc
175 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/db/memtable.cc', 438, 420 ]
176 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/db/memtable.h
177 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/db/memtable.h', 438, 420 ]
178 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/db/repair.cc
179 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/db/repair.cc', 438, 420 ]
180 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/db/skiplist.h
181 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/db/skiplist.h', 438, 420 ]
182 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/db/skiplist_test.cc
183 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/db/skiplist_test.cc', 438, 420 ]
184 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/db/snapshot.h
185 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/db/snapshot.h', 438, 420 ]
186 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/db/table_cache.cc
187 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/db/table_cache.cc', 438, 420 ]
188 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/db/table_cache.h
189 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/db/table_cache.h', 438, 420 ]
190 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/db/version_edit.cc
191 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/db/version_edit.cc', 438, 420 ]
192 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/db/version_edit.h
193 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/db/version_edit.h', 438, 420 ]
194 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/db/version_edit_test.cc
195 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/db/version_edit_test.cc',
195 silly gunzTarPerm 438,
195 silly gunzTarPerm 420 ]
196 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/db/version_set.cc
197 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/db/version_set.cc', 438, 420 ]
198 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/db/version_set.h
199 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/db/version_set.h', 438, 420 ]
200 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/db/version_set_test.cc
201 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/db/version_set_test.cc', 438, 420 ]
202 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/db/write_batch.cc
203 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/db/write_batch.cc', 438, 420 ]
204 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/db/write_batch_internal.h
205 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/db/write_batch_internal.h',
205 silly gunzTarPerm 438,
205 silly gunzTarPerm 420 ]
206 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/db/write_batch_test.cc
207 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/db/write_batch_test.cc', 438, 420 ]
208 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/NEWS
209 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/NEWS', 438, 420 ]
210 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/port/README
211 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/port/README', 438, 420 ]
212 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/port/atomic_pointer.h
213 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/port/atomic_pointer.h', 438, 420 ]
214 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/port/port.h
215 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/port/port.h', 438, 420 ]
216 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/port/port_example.h
217 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/port/port_example.h', 438, 420 ]
218 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/port/port_posix.cc
219 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/port/port_posix.cc', 438, 420 ]
220 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/port/port_posix.h
221 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/port/port_posix.h', 438, 420 ]
222 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/port/win/stdint.h
223 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/port/win/stdint.h', 438, 420 ]
224 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/build/config.gypi
225 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/build/config.gypi', 438, 420 ]
226 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/table/iterator.cc
227 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/table/iterator.cc', 438, 420 ]
228 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/table/block.cc
229 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/table/block.cc', 438, 420 ]
230 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/table/block_builder.cc
231 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/table/block_builder.cc', 438, 420 ]
232 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/table/block_builder.h
233 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/table/block_builder.h', 438, 420 ]
234 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/table/filter_block.cc
235 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/table/filter_block.cc', 438, 420 ]
236 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/table/filter_block.h
237 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/table/filter_block.h', 438, 420 ]
238 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/table/filter_block_test.cc
239 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/table/filter_block_test.cc',
239 silly gunzTarPerm 438,
239 silly gunzTarPerm 420 ]
240 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/table/format.cc
241 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/table/format.cc', 438, 420 ]
242 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/table/format.h
243 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/table/format.h', 438, 420 ]
244 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/table/block.h
245 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/table/block.h', 438, 420 ]
246 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/table/iterator_wrapper.h
247 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/table/iterator_wrapper.h',
247 silly gunzTarPerm 438,
247 silly gunzTarPerm 420 ]
248 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/table/merger.cc
249 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/table/merger.cc', 438, 420 ]
250 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/table/merger.h
251 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/table/merger.h', 438, 420 ]
252 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/table/table.cc
253 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/table/table.cc', 438, 420 ]
254 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/table/table_builder.cc
255 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/table/table_builder.cc', 438, 420 ]
256 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/table/table_test.cc
257 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/table/table_test.cc', 438, 420 ]
258 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/table/two_level_iterator.cc
259 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/table/two_level_iterator.cc',
259 silly gunzTarPerm 438,
259 silly gunzTarPerm 420 ]
260 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/table/two_level_iterator.h
261 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/table/two_level_iterator.h',
261 silly gunzTarPerm 438,
261 silly gunzTarPerm 420 ]
262 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/TODO
263 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/TODO', 438, 420 ]
264 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/util/env_test.cc
265 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/util/env_test.cc', 438, 420 ]
266 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/util/arena.cc
267 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/util/arena.cc', 438, 420 ]
268 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/util/arena_test.cc
269 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/util/arena_test.cc', 438, 420 ]
270 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/util/bloom.cc
271 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/util/bloom.cc', 438, 420 ]
272 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/util/bloom_test.cc
273 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/util/bloom_test.cc', 438, 420 ]
274 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/util/cache.cc
275 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/util/cache.cc', 438, 420 ]
276 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/util/cache_test.cc
277 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/util/cache_test.cc', 438, 420 ]
278 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/util/coding.cc
279 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/util/coding.cc', 438, 420 ]
280 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/util/coding.h
281 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/util/coding.h', 438, 420 ]
282 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/util/coding_test.cc
283 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/util/coding_test.cc', 438, 420 ]
284 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/util/comparator.cc
285 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/util/comparator.cc', 438, 420 ]
286 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/util/crc32c.cc
287 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/util/crc32c.cc', 438, 420 ]
288 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/util/crc32c.h
289 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/util/crc32c.h', 438, 420 ]
290 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/util/crc32c_test.cc
291 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/util/crc32c_test.cc', 438, 420 ]
292 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/util/env.cc
293 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/util/env.cc', 438, 420 ]
294 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/util/env_posix.cc
295 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/util/env_posix.cc', 438, 420 ]
296 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/util/arena.h
297 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/util/arena.h', 438, 420 ]
298 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/util/filter_policy.cc
299 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/util/filter_policy.cc', 438, 420 ]
300 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/util/hash.cc
301 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/util/hash.cc', 438, 420 ]
302 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/util/hash.h
303 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/util/hash.h', 438, 420 ]
304 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/util/histogram.cc
305 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/util/histogram.cc', 438, 420 ]
306 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/util/histogram.h
307 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/util/histogram.h', 438, 420 ]
308 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/util/logging.cc
309 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/util/logging.cc', 438, 420 ]
310 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/util/logging.h
311 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/util/logging.h', 438, 420 ]
312 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/util/mutexlock.h
313 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/util/mutexlock.h', 438, 420 ]
314 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/util/options.cc
315 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/util/options.cc', 438, 420 ]
316 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/util/posix_logger.h
317 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/util/posix_logger.h', 438, 420 ]
318 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/util/random.h
319 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/util/random.h', 438, 420 ]
320 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/util/status.cc
321 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/util/status.cc', 438, 420 ]
322 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/util/testharness.cc
323 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/util/testharness.cc', 438, 420 ]
324 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/util/testharness.h
325 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/util/testharness.h', 438, 420 ]
326 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/util/testutil.cc
327 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/util/testutil.cc', 438, 420 ]
328 silly gunzTarPerm extractEntry deps/leveldb/leveldb-1.5.0/util/testutil.h
329 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb-1.5.0/util/testutil.h', 438, 420 ]
330 silly gunzTarPerm extractEntry deps/leveldb/leveldb.gyp
331 silly gunzTarPerm modified mode [ 'deps/leveldb/leveldb.gyp', 438, 420 ]
332 silly gunzTarPerm extractEntry deps/snappy/linux/config.h
333 silly gunzTarPerm modified mode [ 'deps/snappy/linux/config.h', 438, 420 ]
334 silly gunzTarPerm extractEntry deps/snappy/linux/snappy-stubs-public.h
335 silly gunzTarPerm modified mode [ 'deps/snappy/linux/snappy-stubs-public.h', 438, 420 ]
336 silly gunzTarPerm extractEntry deps/snappy/mac/config.h
337 silly gunzTarPerm modified mode [ 'deps/snappy/mac/config.h', 438, 420 ]
338 silly gunzTarPerm extractEntry deps/snappy/mac/snappy-stubs-public.h
339 silly gunzTarPerm modified mode [ 'deps/snappy/mac/snappy-stubs-public.h', 438, 420 ]
340 silly gunzTarPerm extractEntry deps/snappy/snappy-1.0.5/README
341 silly gunzTarPerm modified mode [ 'deps/snappy/snappy-1.0.5/README', 438, 420 ]
342 silly gunzTarPerm extractEntry deps/snappy/snappy-1.0.5/m4/gtest.m4
343 silly gunzTarPerm modified mode [ 'deps/snappy/snappy-1.0.5/m4/gtest.m4', 438, 420 ]
344 silly gunzTarPerm extractEntry deps/snappy/snappy-1.0.5/AUTHORS
345 silly gunzTarPerm modified mode [ 'deps/snappy/snappy-1.0.5/AUTHORS', 438, 420 ]
346 silly gunzTarPerm extractEntry deps/snappy/snappy-1.0.5/autogen.sh
347 silly gunzTarPerm modified mode [ 'deps/snappy/snappy-1.0.5/autogen.sh', 438, 420 ]
348 silly gunzTarPerm extractEntry deps/snappy/snappy-1.0.5/ChangeLog
349 silly gunzTarPerm modified mode [ 'deps/snappy/snappy-1.0.5/ChangeLog', 438, 420 ]
350 silly gunzTarPerm extractEntry deps/snappy/snappy-1.0.5/config.guess
351 silly gunzTarPerm modified mode [ 'deps/snappy/snappy-1.0.5/config.guess', 438, 420 ]
352 silly gunzTarPerm extractEntry deps/snappy/snappy-1.0.5/config.h
353 silly gunzTarPerm modified mode [ 'deps/snappy/snappy-1.0.5/config.h', 438, 420 ]
354 silly gunzTarPerm extractEntry deps/snappy/snappy-1.0.5/config.h.in
355 silly gunzTarPerm modified mode [ 'deps/snappy/snappy-1.0.5/config.h.in', 438, 420 ]
356 silly gunzTarPerm extractEntry deps/snappy/snappy-1.0.5/config.log
357 silly gunzTarPerm modified mode [ 'deps/snappy/snappy-1.0.5/config.log', 438, 420 ]
358 silly gunzTarPerm extractEntry deps/snappy/snappy-1.0.5/config.status
359 silly gunzTarPerm modified mode [ 'deps/snappy/snappy-1.0.5/config.status', 438, 420 ]
360 silly gunzTarPerm extractEntry deps/snappy/snappy-1.0.5/config.sub
361 silly gunzTarPerm modified mode [ 'deps/snappy/snappy-1.0.5/config.sub', 438, 420 ]
362 silly gunzTarPerm extractEntry deps/snappy/snappy-1.0.5/configure
363 silly gunzTarPerm modified mode [ 'deps/snappy/snappy-1.0.5/configure', 438, 420 ]
364 silly gunzTarPerm extractEntry deps/snappy/snappy-1.0.5/configure.ac
365 silly gunzTarPerm modified mode [ 'deps/snappy/snappy-1.0.5/configure.ac', 438, 420 ]
366 silly gunzTarPerm extractEntry deps/snappy/snappy-1.0.5/COPYING
367 silly gunzTarPerm modified mode [ 'deps/snappy/snappy-1.0.5/COPYING', 438, 420 ]
368 silly gunzTarPerm extractEntry deps/snappy/snappy-1.0.5/depcomp
369 silly gunzTarPerm modified mode [ 'deps/snappy/snappy-1.0.5/depcomp', 438, 420 ]
370 silly gunzTarPerm extractEntry deps/snappy/snappy-1.0.5/format_description.txt
371 silly gunzTarPerm modified mode [ 'deps/snappy/snappy-1.0.5/format_description.txt', 438, 420 ]
372 silly gunzTarPerm extractEntry deps/snappy/snappy-1.0.5/framing_format.txt
373 silly gunzTarPerm modified mode [ 'deps/snappy/snappy-1.0.5/framing_format.txt', 438, 420 ]
374 silly gunzTarPerm extractEntry deps/snappy/snappy-1.0.5/INSTALL
375 silly gunzTarPerm modified mode [ 'deps/snappy/snappy-1.0.5/INSTALL', 438, 420 ]
376 silly gunzTarPerm extractEntry deps/snappy/snappy-1.0.5/install-sh
377 silly gunzTarPerm modified mode [ 'deps/snappy/snappy-1.0.5/install-sh', 438, 420 ]
378 silly gunzTarPerm extractEntry deps/snappy/snappy-1.0.5/libtool
379 silly gunzTarPerm modified mode [ 'deps/snappy/snappy-1.0.5/libtool', 438, 420 ]
380 silly gunzTarPerm extractEntry deps/snappy/snappy-1.0.5/ltmain.sh
381 silly gunzTarPerm modified mode [ 'deps/snappy/snappy-1.0.5/ltmain.sh', 438, 420 ]
382 silly gunzTarPerm extractEntry deps/snappy/snappy-1.0.5/aclocal.m4
383 silly gunzTarPerm modified mode [ 'deps/snappy/snappy-1.0.5/aclocal.m4', 438, 420 ]
384 silly gunzTarPerm extractEntry deps/snappy/snappy-1.0.5/Makefile
385 silly gunzTarPerm modified mode [ 'deps/snappy/snappy-1.0.5/Makefile', 438, 420 ]
386 silly gunzTarPerm extractEntry deps/snappy/snappy-1.0.5/Makefile.am
387 silly gunzTarPerm modified mode [ 'deps/snappy/snappy-1.0.5/Makefile.am', 438, 420 ]
388 silly gunzTarPerm extractEntry deps/snappy/snappy-1.0.5/Makefile.in
389 silly gunzTarPerm modified mode [ 'deps/snappy/snappy-1.0.5/Makefile.in', 438, 420 ]
390 silly gunzTarPerm extractEntry deps/snappy/snappy-1.0.5/missing
391 silly gunzTarPerm modified mode [ 'deps/snappy/snappy-1.0.5/missing', 438, 420 ]
392 silly gunzTarPerm extractEntry deps/snappy/snappy-1.0.5/NEWS
393 silly gunzTarPerm modified mode [ 'deps/snappy/snappy-1.0.5/NEWS', 438, 420 ]
394 silly gunzTarPerm extractEntry deps/snappy/snappy-1.0.5/.deps/snappy-c.Plo
395 silly gunzTarPerm modified mode [ 'deps/snappy/snappy-1.0.5/.deps/snappy-c.Plo', 438, 420 ]
396 silly gunzTarPerm extractEntry deps/snappy/snappy-1.0.5/.deps/snappy-sinksource.Plo
397 silly gunzTarPerm modified mode [ 'deps/snappy/snappy-1.0.5/.deps/snappy-sinksource.Plo',
397 silly gunzTarPerm 438,
397 silly gunzTarPerm 420 ]
398 silly gunzTarPerm extractEntry deps/snappy/snappy-1.0.5/.deps/snappy-stubs-internal.Plo
399 silly gunzTarPerm modified mode [ 'deps/snappy/snappy-1.0.5/.deps/snappy-stubs-internal.Plo',
399 silly gunzTarPerm 438,
399 silly gunzTarPerm 420 ]
400 silly gunzTarPerm extractEntry deps/snappy/snappy-1.0.5/.deps/snappy.Plo
401 silly gunzTarPerm modified mode [ 'deps/snappy/snappy-1.0.5/.deps/snappy.Plo', 438, 420 ]
402 silly gunzTarPerm extractEntry deps/snappy/snappy-1.0.5/.deps/snappy_unittest-snappy-test.Po
403 silly gunzTarPerm modified mode [ 'deps/snappy/snappy-1.0.5/.deps/snappy_unittest-snappy-test.Po',
403 silly gunzTarPerm 438,
403 silly gunzTarPerm 420 ]
404 silly gunzTarPerm extractEntry deps/snappy/snappy-1.0.5/.deps/snappy_unittest-snappy_unittest.Po
405 silly gunzTarPerm modified mode [ 'deps/snappy/snappy-1.0.5/.deps/snappy_unittest-snappy_unittest.Po',
405 silly gunzTarPerm 438,
405 silly gunzTarPerm 420 ]
406 silly gunzTarPerm extractEntry deps/snappy/snappy-1.0.5/snappy-c.cc
407 silly gunzTarPerm modified mode [ 'deps/snappy/snappy-1.0.5/snappy-c.cc', 438, 420 ]
408 silly gunzTarPerm extractEntry deps/snappy/snappy-1.0.5/snappy-c.h
409 silly gunzTarPerm modified mode [ 'deps/snappy/snappy-1.0.5/snappy-c.h', 438, 420 ]
410 silly gunzTarPerm extractEntry deps/snappy/snappy-1.0.5/snappy-internal.h
411 silly gunzTarPerm modified mode [ 'deps/snappy/snappy-1.0.5/snappy-internal.h', 438, 420 ]
412 silly gunzTarPerm extractEntry deps/snappy/snappy-1.0.5/snappy-sinksource.cc
413 silly gunzTarPerm modified mode [ 'deps/snappy/snappy-1.0.5/snappy-sinksource.cc', 438, 420 ]
414 silly gunzTarPerm extractEntry deps/snappy/snappy-1.0.5/snappy-sinksource.h
415 silly gunzTarPerm modified mode [ 'deps/snappy/snappy-1.0.5/snappy-sinksource.h', 438, 420 ]
416 silly gunzTarPerm extractEntry deps/snappy/snappy-1.0.5/snappy-stubs-internal.cc
417 silly gunzTarPerm modified mode [ 'deps/snappy/snappy-1.0.5/snappy-stubs-internal.cc', 438, 420 ]
418 silly gunzTarPerm extractEntry deps/snappy/snappy-1.0.5/snappy-stubs-internal.h
419 silly gunzTarPerm modified mode [ 'deps/snappy/snappy-1.0.5/snappy-stubs-internal.h', 438, 420 ]
420 silly gunzTarPerm extractEntry deps/snappy/snappy-1.0.5/snappy-stubs-public.h
421 silly gunzTarPerm modified mode [ 'deps/snappy/snappy-1.0.5/snappy-stubs-public.h', 438, 420 ]
422 silly gunzTarPerm extractEntry deps/snappy/snappy-1.0.5/snappy-stubs-public.h.in
423 silly gunzTarPerm modified mode [ 'deps/snappy/snappy-1.0.5/snappy-stubs-public.h.in', 438, 420 ]
424 silly gunzTarPerm extractEntry deps/snappy/snappy-1.0.5/snappy-test.cc
425 silly gunzTarPerm modified mode [ 'deps/snappy/snappy-1.0.5/snappy-test.cc', 438, 420 ]
426 silly gunzTarPerm extractEntry deps/snappy/snappy-1.0.5/snappy-test.h
427 silly gunzTarPerm modified mode [ 'deps/snappy/snappy-1.0.5/snappy-test.h', 438, 420 ]
428 silly gunzTarPerm extractEntry deps/snappy/snappy-1.0.5/snappy.cc
429 silly gunzTarPerm modified mode [ 'deps/snappy/snappy-1.0.5/snappy.cc', 438, 420 ]
430 silly gunzTarPerm extractEntry deps/snappy/snappy-1.0.5/snappy.h
431 silly gunzTarPerm modified mode [ 'deps/snappy/snappy-1.0.5/snappy.h', 438, 420 ]
432 silly gunzTarPerm extractEntry deps/snappy/snappy-1.0.5/snappy_unittest.cc
433 silly gunzTarPerm modified mode [ 'deps/snappy/snappy-1.0.5/snappy_unittest.cc', 438, 420 ]
434 silly gunzTarPerm extractEntry deps/snappy/snappy-1.0.5/stamp-h1
435 silly gunzTarPerm modified mode [ 'deps/snappy/snappy-1.0.5/stamp-h1', 438, 420 ]
436 silly gunzTarPerm extractEntry deps/snappy/snappy.gyp
437 silly gunzTarPerm modified mode [ 'deps/snappy/snappy.gyp', 438, 420 ]
438 silly gunzTarPerm extractEntry deps/snappy/win32/snappy-stubs-public.h
439 silly gunzTarPerm modified mode [ 'deps/snappy/win32/snappy-stubs-public.h', 438, 420 ]
440 silly gunzTarPerm extractEntry binding.gyp
441 silly gunzTarPerm modified mode [ 'binding.gyp', 438, 420 ]
442 silly gunzTarPerm extractEntry src/database_async.h
443 silly gunzTarPerm modified mode [ 'src/database_async.h', 438, 420 ]
444 silly gunzTarPerm extractEntry src/async.cc
445 silly gunzTarPerm modified mode [ 'src/async.cc', 438, 420 ]
446 silly gunzTarPerm extractEntry src/batch.cc
447 silly gunzTarPerm modified mode [ 'src/batch.cc', 438, 420 ]
448 silly gunzTarPerm extractEntry src/batch.h
449 silly gunzTarPerm modified mode [ 'src/batch.h', 438, 420 ]
450 silly gunzTarPerm extractEntry src/database.cc
451 silly gunzTarPerm modified mode [ 'src/database.cc', 438, 420 ]
452 silly gunzTarPerm extractEntry src/database.h
453 silly gunzTarPerm modified mode [ 'src/database.h', 438, 420 ]
454 silly gunzTarPerm extractEntry src/database_async.cc
455 silly gunzTarPerm modified mode [ 'src/database_async.cc', 438, 420 ]
456 silly gunzTarPerm extractEntry src/async.h
457 silly gunzTarPerm modified mode [ 'src/async.h', 438, 420 ]
458 silly gunzTarPerm extractEntry src/iterator.cc
459 silly gunzTarPerm modified mode [ 'src/iterator.cc', 438, 420 ]
460 silly gunzTarPerm extractEntry src/iterator.h
461 silly gunzTarPerm modified mode [ 'src/iterator.h', 438, 420 ]
462 silly gunzTarPerm extractEntry src/iterator_async.cc
463 silly gunzTarPerm modified mode [ 'src/iterator_async.cc', 438, 420 ]
464 silly gunzTarPerm extractEntry src/iterator_async.h
465 silly gunzTarPerm modified mode [ 'src/iterator_async.h', 438, 420 ]
466 silly gunzTarPerm extractEntry src/levelup.cc
467 silly gunzTarPerm modified mode [ 'src/levelup.cc', 438, 420 ]
468 silly gunzTarPerm extractEntry src/levelup.h
469 silly gunzTarPerm modified mode [ 'src/levelup.h', 438, 420 ]
470 silly gunzTarPerm extractEntry test/binary-test.js
471 silly gunzTarPerm modified mode [ 'test/binary-test.js', 438, 420 ]
472 silly gunzTarPerm extractEntry test/common.js
473 silly gunzTarPerm modified mode [ 'test/common.js', 438, 420 ]
474 silly gunzTarPerm extractEntry test/copy-test.js
475 silly gunzTarPerm modified mode [ 'test/copy-test.js', 438, 420 ]
476 silly gunzTarPerm extractEntry test/json-test.js
477 silly gunzTarPerm modified mode [ 'test/json-test.js', 438, 420 ]
478 silly gunzTarPerm extractEntry test/read-stream-test.js
479 silly gunzTarPerm modified mode [ 'test/read-stream-test.js', 438, 420 ]
480 silly gunzTarPerm extractEntry test/simple-test.js
481 silly gunzTarPerm modified mode [ 'test/simple-test.js', 438, 420 ]
482 silly gunzTarPerm extractEntry test/write-stream-test.js
483 silly gunzTarPerm modified mode [ 'test/write-stream-test.js', 438, 420 ]
484 silly gunzTarPerm extractEntry test/data/testdata.bin
485 silly gunzTarPerm modified mode [ 'test/data/testdata.bin', 438, 420 ]
486 silly gunzTarPerm extractEntry test/functional/fstream-test.js
487 silly gunzTarPerm modified mode [ 'test/functional/fstream-test.js', 438, 420 ]
488 verbose read json C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup\package.json
489 silly lockFile 07902624-tos-levelup-node-modules-levelup C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup
490 info preinstall levelup@0.0.4
491 verbose from cache C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup\package.json
492 verbose readDependencies using package.json deps
493 verbose from cache C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup\package.json
494 verbose readDependencies using package.json deps
495 verbose cache add [ 'errno@~0.0.3', null ]
496 silly cache add name=undefined spec="errno@~0.0.3" args=["errno@~0.0.3",null]
497 verbose parsed url { pathname: 'errno@~0.0.3',
497 verbose parsed url path: 'errno@~0.0.3',
497 verbose parsed url href: 'errno@~0.0.3' }
498 silly cache add name="errno" spec="~0.0.3" args=["errno","~0.0.3"]
499 verbose parsed url { pathname: '~0.0.3', path: '~0.0.3', href: '~0.0.3' }
500 verbose addNamed [ 'errno', '~0.0.3' ]
501 verbose addNamed [ null, '>=0.0.3- <0.1.0-' ]
502 silly lockFile 7da45d80-errno-0-0-3 errno@~0.0.3
503 verbose lock errno@~0.0.3 C:\Users\Alan Hoffmeistert\AppData\Roaming\npm-cache\7da45d80-errno-0-0-3.lock
504 verbose cache add [ 'bindings@~1.0.0', null ]
505 silly cache add name=undefined spec="bindings@~1.0.0" args=["bindings@~1.0.0",null]
506 verbose parsed url { pathname: 'bindings@~1.0.0',
506 verbose parsed url path: 'bindings@~1.0.0',
506 verbose parsed url href: 'bindings@~1.0.0' }
507 silly cache add name="bindings" spec="~1.0.0" args=["bindings","~1.0.0"]
508 verbose parsed url { pathname: '~1.0.0', path: '~1.0.0', href: '~1.0.0' }
509 verbose addNamed [ 'bindings', '~1.0.0' ]
510 verbose addNamed [ null, '>=1.0.0- <1.1.0-' ]
511 silly lockFile ffec4ddc-bindings-1-0-0 bindings@~1.0.0
512 verbose lock bindings@~1.0.0 C:\Users\Alan Hoffmeistert\AppData\Roaming\npm-cache\ffec4ddc-bindings-1-0-0.lock
513 verbose cache add [ 'concat-stream@~0.0.8', null ]
514 silly cache add name=undefined spec="concat-stream@~0.0.8" args=["concat-stream@~0.0.8",null]
515 verbose parsed url { pathname: 'concat-stream@~0.0.8',
515 verbose parsed url path: 'concat-stream@~0.0.8',
515 verbose parsed url href: 'concat-stream@~0.0.8' }
516 silly cache add name="concat-stream" spec="~0.0.8" args=["concat-stream","~0.0.8"]
517 verbose parsed url { pathname: '~0.0.8', path: '~0.0.8', href: '~0.0.8' }
518 verbose addNamed [ 'concat-stream', '~0.0.8' ]
519 verbose addNamed [ null, '>=0.0.8- <0.1.0-' ]
520 silly lockFile 7c9b7959-concat-stream-0-0-8 concat-stream@~0.0.8
521 verbose lock concat-stream@~0.0.8 C:\Users\Alan Hoffmeistert\AppData\Roaming\npm-cache\7c9b7959-concat-stream-0-0-8.lock
522 verbose cache add [ 'bufferstream@~0.5.1', null ]
523 silly cache add name=undefined spec="bufferstream@~0.5.1" args=["bufferstream@~0.5.1",null]
524 verbose parsed url { pathname: 'bufferstream@~0.5.1',
524 verbose parsed url path: 'bufferstream@~0.5.1',
524 verbose parsed url href: 'bufferstream@~0.5.1' }
525 silly cache add name="bufferstream" spec="~0.5.1" args=["bufferstream","~0.5.1"]
526 verbose parsed url { pathname: '~0.5.1', path: '~0.5.1', href: '~0.5.1' }
527 verbose addNamed [ 'bufferstream', '~0.5.1' ]
528 verbose addNamed [ null, '>=0.5.1- <0.6.0-' ]
529 silly lockFile a1048c2e-bufferstream-0-5-1 bufferstream@~0.5.1
530 verbose lock bufferstream@~0.5.1 C:\Users\Alan Hoffmeistert\AppData\Roaming\npm-cache\a1048c2e-bufferstream-0-5-1.lock
531 silly addNameRange { name: 'errno', range: '>=0.0.3- <0.1.0-', hasData: false }
532 silly addNameRange { name: 'bindings', range: '>=1.0.0- <1.1.0-', hasData: false }
533 silly addNameRange { name: 'concat-stream',
533 silly addNameRange range: '>=0.0.8- <0.1.0-',
533 silly addNameRange hasData: false }
534 silly addNameRange { name: 'bufferstream',
534 silly addNameRange range: '>=0.5.1- <0.6.0-',
534 silly addNameRange hasData: false }
535 verbose url raw errno
536 verbose url resolving [ 'https://registry.npmjs.org/', './errno' ]
537 verbose url resolved https://registry.npmjs.org/errno
538 info trying registry request attempt 1 at 00:40:36
539 verbose etag "62ATXQ4SMZXG5AOPD58IJJWDG"
540 http GET https://registry.npmjs.org/errno
541 verbose url raw concat-stream
542 verbose url resolving [ 'https://registry.npmjs.org/', './concat-stream' ]
543 verbose url resolved https://registry.npmjs.org/concat-stream
544 info trying registry request attempt 1 at 00:40:36
545 verbose etag "7IAF5N6RHSAJE0M8CWZEO0OX7"
546 http GET https://registry.npmjs.org/concat-stream
547 verbose url raw bufferstream
548 verbose url resolving [ 'https://registry.npmjs.org/', './bufferstream' ]
549 verbose url resolved https://registry.npmjs.org/bufferstream
550 info trying registry request attempt 1 at 00:40:36
551 verbose etag "DDZIKCV82KU6RMYOZ0L2VTIJX"
552 http GET https://registry.npmjs.org/bufferstream
553 verbose url raw bindings
554 verbose url resolving [ 'https://registry.npmjs.org/', './bindings' ]
555 verbose url resolved https://registry.npmjs.org/bindings
556 info trying registry request attempt 1 at 00:40:36
557 verbose etag "6EP3WH7QRRUQYN4C2DI090LM0"
558 http GET https://registry.npmjs.org/bindings
559 http 304 https://registry.npmjs.org/errno
560 silly registry.get cb [ 304,
560 silly registry.get { server: 'CouchDB/1.2.0 (Erlang OTP/R15B)',
560 silly registry.get etag: '"62ATXQ4SMZXG5AOPD58IJJWDG"',
560 silly registry.get date: 'Sun, 16 Sep 2012 03:41:12 GMT',
560 silly registry.get 'content-length': '0' } ]
561 verbose etag errno from cache
562 http 304 https://registry.npmjs.org/concat-stream
563 silly registry.get cb [ 304,
563 silly registry.get { server: 'CouchDB/1.2.0 (Erlang OTP/R15B)',
563 silly registry.get etag: '"7IAF5N6RHSAJE0M8CWZEO0OX7"',
563 silly registry.get date: 'Sun, 16 Sep 2012 03:41:12 GMT',
563 silly registry.get 'content-length': '0' } ]
564 verbose etag concat-stream from cache
565 silly addNameRange number 2 { name: 'errno', range: '>=0.0.3- <0.1.0-', hasData: true }
566 silly addNameRange versions [ 'errno', [ '0.0.1', '0.0.2', '0.0.3' ] ]
567 verbose addNamed [ 'errno', '0.0.3' ]
568 verbose addNamed [ '0.0.3', '0.0.3' ]
569 silly lockFile 400d9b3f-errno-0-0-3 errno@0.0.3
570 verbose lock errno@0.0.3 C:\Users\Alan Hoffmeistert\AppData\Roaming\npm-cache\400d9b3f-errno-0-0-3.lock
571 verbose read json C:\Users\Alan Hoffmeistert\AppData\Roaming\npm-cache\errno\0.0.3\package\package.json
572 silly addNameRange number 2 { name: 'concat-stream',
572 silly addNameRange range: '>=0.0.8- <0.1.0-',
572 silly addNameRange hasData: true }
573 silly addNameRange versions [ 'concat-stream',
573 silly addNameRange [ '0.0.1',
573 silly addNameRange '0.0.2',
573 silly addNameRange '0.0.3',
573 silly addNameRange '0.0.4',
573 silly addNameRange '0.0.5',
573 silly addNameRange '0.0.6',
573 silly addNameRange '0.0.7',
573 silly addNameRange '0.0.8',
573 silly addNameRange '0.0.9',
573 silly addNameRange '0.1.0' ] ]
574 verbose addNamed [ 'concat-stream', '0.0.9' ]
575 verbose addNamed [ '0.0.9', '0.0.9' ]
576 silly lockFile 0598b340-concat-stream-0-0-9 concat-stream@0.0.9
577 verbose lock concat-stream@0.0.9 C:\Users\Alan Hoffmeistert\AppData\Roaming\npm-cache\0598b340-concat-stream-0-0-9.lock
578 silly lockFile 400d9b3f-errno-0-0-3 errno@0.0.3
579 verbose read json C:\Users\Alan Hoffmeistert\AppData\Roaming\npm-cache\concat-stream\0.0.9\package\package.json
580 silly lockFile 7da45d80-errno-0-0-3 errno@~0.0.3
581 silly lockFile 0598b340-concat-stream-0-0-9 concat-stream@0.0.9
582 silly lockFile 7c9b7959-concat-stream-0-0-8 concat-stream@~0.0.8
583 http 304 https://registry.npmjs.org/bufferstream
584 silly registry.get cb [ 304,
584 silly registry.get { server: 'CouchDB/1.2.0 (Erlang OTP/R15B)',
584 silly registry.get etag: '"DDZIKCV82KU6RMYOZ0L2VTIJX"',
584 silly registry.get date: 'Sun, 16 Sep 2012 03:41:12 GMT',
584 silly registry.get 'content-length': '0' } ]
585 verbose etag bufferstream from cache
586 http 304 https://registry.npmjs.org/bindings
587 silly registry.get cb [ 304,
587 silly registry.get { server: 'CouchDB/1.2.0 (Erlang OTP/R15B)',
587 silly registry.get etag: '"6EP3WH7QRRUQYN4C2DI090LM0"',
587 silly registry.get date: 'Sun, 16 Sep 2012 03:41:12 GMT',
587 silly registry.get 'content-length': '0' } ]
588 verbose etag bindings from cache
589 silly addNameRange number 2 { name: 'bufferstream',
589 silly addNameRange range: '>=0.5.1- <0.6.0-',
589 silly addNameRange hasData: true }
590 silly addNameRange versions [ 'bufferstream',
590 silly addNameRange [ '0.0.2',
590 silly addNameRange '0.0.3',
590 silly addNameRange '0.1.0',
590 silly addNameRange '0.1.1',
590 silly addNameRange '0.1.2',
590 silly addNameRange '0.1.2-1',
590 silly addNameRange '0.1.2-2',
590 silly addNameRange '0.1.2-3',
590 silly addNameRange '0.1.2-4',
590 silly addNameRange '0.1.2-5',
590 silly addNameRange '0.1.2-6',
590 silly addNameRange '0.1.3',
590 silly addNameRange '0.1.4',
590 silly addNameRange '0.1.5',
590 silly addNameRange '0.1.6',
590 silly addNameRange '0.2.0',
590 silly addNameRange '0.3.0',
590 silly addNameRange '0.4.0',
590 silly addNameRange '0.4.1',
590 silly addNameRange '0.4.2',
590 silly addNameRange '0.4.3',
590 silly addNameRange '0.4.4',
590 silly addNameRange '0.4.5',
590 silly addNameRange '0.4.6',
590 silly addNameRange '0.4.7',
590 silly addNameRange '0.4.8',
590 silly addNameRange '0.4.9',
590 silly addNameRange '0.4.10',
590 silly addNameRange '0.5.0-pre',
590 silly addNameRange '0.5.0-pre2',
590 silly addNameRange '0.5.0',
590 silly addNameRange '0.5.1' ] ]
591 verbose addNamed [ 'bufferstream', '0.5.1' ]
592 verbose addNamed [ '0.5.1', '0.5.1' ]
593 silly lockFile 9025c3e0-bufferstream-0-5-1 bufferstream@0.5.1
594 verbose lock bufferstream@0.5.1 C:\Users\Alan Hoffmeistert\AppData\Roaming\npm-cache\9025c3e0-bufferstream-0-5-1.lock
595 silly addNameRange number 2 { name: 'bindings', range: '>=1.0.0- <1.1.0-', hasData: true }
596 silly addNameRange versions [ 'bindings',
596 silly addNameRange [ '0.0.1',
596 silly addNameRange '0.1.0',
596 silly addNameRange '0.1.1',
596 silly addNameRange '0.2.0',
596 silly addNameRange '0.2.1',
596 silly addNameRange '0.2.2',
596 silly addNameRange '0.2.3',
596 silly addNameRange '0.2.4',
596 silly addNameRange '0.3.0',
596 silly addNameRange '0.4.0',
596 silly addNameRange '1.0.0' ] ]
597 verbose addNamed [ 'bindings', '1.0.0' ]
598 verbose addNamed [ '1.0.0', '1.0.0' ]
599 silly lockFile f01e5454-bindings-1-0-0 bindings@1.0.0
600 verbose lock bindings@1.0.0 C:\Users\Alan Hoffmeistert\AppData\Roaming\npm-cache\f01e5454-bindings-1-0-0.lock
601 verbose read json C:\Users\Alan Hoffmeistert\AppData\Roaming\npm-cache\bufferstream\0.5.1\package\package.json
602 verbose read json C:\Users\Alan Hoffmeistert\AppData\Roaming\npm-cache\bindings\1.0.0\package\package.json
603 silly lockFile 9025c3e0-bufferstream-0-5-1 bufferstream@0.5.1
604 silly lockFile f01e5454-bindings-1-0-0 bindings@1.0.0
605 silly lockFile a1048c2e-bufferstream-0-5-1 bufferstream@~0.5.1
606 silly lockFile ffec4ddc-bindings-1-0-0 bindings@~1.0.0
607 silly resolved [ { name: 'errno',
607 silly resolved authors: [ 'Rod Vagg @rvagg <rod@vagg.org> (https://github.com/rvagg)' ],
607 silly resolved description: 'libuv errno details exposed',
607 silly resolved keywords: [ 'errors', 'errno', 'libuv' ],
607 silly resolved version: '0.0.3',
607 silly resolved main: 'errno.js',
607 silly resolved dependencies: {},
607 silly resolved bin: { errno: './cli.js' },
607 silly resolved devDependencies: { request: '*' },
607 silly resolved repository: { type: 'git', url: 'https://github.com/rvagg/node-errno.git' },
607 silly resolved license: 'MIT',
607 silly resolved readme: '# node-errno\n\nBetter [libuv](https://github.com/joyent/libuv)/[Node.js](http://nodejs.org) error handling & reporting. Available in npm as *errno*.\n\n* [errno exposed](#errnoexposed)\n* [Custom errors](#customerrors)\n\n<a name="errnoexposed"></a>\n## errno exposed\n\nEver find yourself needing more details about Node.js errors? Me too, so *node-errno* contains the errno mappings direct from libuv so you can use them in your code.\n\n**By errno:**\n\n```js\nrequire(\'errno\').errno[3]\n// → {\n// "errno": 3,\n// "code": "EACCES",\n// "description": "permission denied"\n// }\n```\n\n**By code:**\n\n```js\nrequire(\'errno\').code.ENOTEMPTY\n// → {\n// "errno": 53,\n// "code": "ENOTEMPTY",\n// "description": "directory not empty"\n// }\n```\n\n**Make your errors more descriptive:**\n\n```js\nvar errno = require(\'errno\')\n\nfunction errmsg(err) {\n var str = \'Error: \'\n // if it\'s a libuv error then get the description from errno\n if (errno.errno[err.errno]) {\n str += errno.errno[err.errno].description\n } else {\n str += err.message\n }\n \n // if it\'s a `fs` error then it\'ll have a \'path\' property\n if (err.path) {\n str += \' [\' + err.path + \']\'\n }\n return str\n}\n\nvar fs = require(\'fs\')\n\nfs.readFile(\'thisisnotarealfile.txt\', function (err, data) {\n if (err)\n return console.log(errmsg(err))\n})\n```\n\n**Use as a command line tool:**\n\n```\n~ $ errno 53\n{\n "errno": 53,\n "code": "ENOTEMPTY",\n "description": "directory not empty"\n}\n~ $ errno EROFS\n{\n "errno": 56,\n "code": "EROFS",\n "description": "read-only file system"\n}\n~ $ errno foo\nNo such errno/code: "foo"\n```\n\nSupply no arguments for the full list. Error codes are processed case-insensitive.\n\nYou will need to install with `npm install errno -g` if you want the `errno` command to be available without supplying a full path to the node_modules installation.\n\n<a name="customerrors"></a>\n## Custom errors\n\nUse `errno.custom.createError()` to create custom `Error` objects to throw around in your Node.js library. Create error heirachies so `instanceof` becomes a useful tool in tracking errors. Call-stack is correctly captured at the time you create an instance of the error object, plus a `cause` property will make available the original error object if you pass one in to the constructor.\n\n```js\nvar errno = require(\'errno\')\nvar MyError = errno.custom.createError(\'MyError\') // inherits from Error\nvar SpecificError = errno.custom.createError(\'SpecificError\', MyError) // inherits from MyError\nvar OtherError = errno.custom.createError(\'OtherError\', MyError)\n\n// use them!\nif (condition) throw new SpecificError(\'Eeek! Something bad happened\')\n\nif (err) return callback(new OtherError(err))\n```\n\nAlso available is a `errno.custom.FilesystemError` with in-built access to errno properties:\n\n```js\nfs.readFile(\'foo\', function (err, data) {\n if (err) return callback(new errno.custom.FilesystemError(err))\n // do something else\n})\n```\n\nThe resulting error object passed through the callback will have the following properties: `code`, `errno`, `path` and `message` will contain a descriptive human-readable message.\n\n## Contributors\n\n* [bahamas10](https://github.com/bahamas10) (Dave Eddy) - Added CLI\n\n## Copyright & Licence\n\n*Copyright (c) 2012 [Rod Vagg](https://github.com/rvagg) ([@rvagg](https://twitter.com/rvagg))*\n\nMade available under the MIT licence:\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the "Software"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is furnished\nto do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.',
607 silly resolved _id: 'errno@0.0.3',
607 silly resolved _from: 'errno@~0.0.3' },
607 silly resolved { name: 'concat-stream',
607 silly resolved description: 'writable stream that concatenates strings or data and calls a callback with the result',
607 silly resolved tags: [ 'stream', 'simple', 'util', 'utility' ],
607 silly resolved version: '0.0.9',
607 silly resolved author: { name: 'Max Ogden', email: 'max@maxogden.com' },
607 silly resolved repository:
607 silly resolved { type: 'git',
607 silly resolved url: 'http://github.com/maxogden/node-concat-stream.git' },
607 silly resolved bugs: { url: 'http://github.com/maxogden/node-concat-stream/issues' },
607 silly resolved engines: [ 'node >= 0.8.0' ],
607 silly resolved readme: '# concat-stream\n\n npm install concat-stream\n\nthen\n\n var concat = require(\'concat-stream\')\n var fs = require(\'fs\')\n \n var read = fs.createReadStream(\'readme.md\')\n var write = concat(function(err, data) {})\n \n read.pipe(write)\n \nworks with arrays too!\n\n var write = concat(function(err, data) {})\n write.write([1,2,3])\n write.write([4,5,6])\n write.end()\n // data will be [1,2,3,4,5,6] in the above callback\n\nworks with buffers too! can\'t believe the deals!\n\n var write = concat(function(err, data) {})\n write.write(new Buffer(\'hello \'))\n write.write(new Buffer(\'world\'))\n write.end()\n // data will be a buffer that toString()s to \'hello world\' in the above callback\n \nMIT LICENSE\n',
607 silly resolved _id: 'concat-stream@0.0.9',
607 silly resolved _from: 'concat-stream@~0.0.8' },
607 silly resolved { name: 'bufferstream',
607 silly resolved description: 'painless stream buffering and cutting',
607 silly resolved version: '0.5.1',
607 silly resolved homepage: 'https://github.com/dodo/node-bufferstream',
607 silly resolved author: { name: 'dodo', url: 'https://github.com/dodo' },
607 silly resolved repository:
607 silly resolved { type: 'git',
607 silly resolved url: 'git://github.com/dodo/node-bufferstream.git' },
607 silly resolved main: 'bufferstream.js',
607 silly resolved engines: { node: '>= 0.4.x' },
607 silly resolved keywords: [ 'buffer', 'buffers', 'stream', 'streams' ],
607 silly resolved scripts:
607 silly resolved { test: 'cake build && nodeunit test',
607 silly resolved prepublish: 'cake build' },
607 silly resolved dependencies: { buffertools: '>= 1.0.3' },
607 silly resolved devDependencies:
607 silly resolved { nodeunit: '>= 0.5.4',
607 silly resolved muffin: '>= 0.2.6',
607 silly resolved 'coffee-script': '>= 1.1.2',
607 silly resolved cli: '>= 0.3.7',
607 silly resolved express: '>= 2.4.5' },
607 silly resolved readme: '# BufferStream\n\npainless stream buffering, cutting and piping.\n\n## install\n\n npm install bufferstream\n\n## api\n\nBufferStream is a full node.js [Stream](http://nodejs.org/docs/v0.4.7/api/streams.html) so it has apis of both [Writeable Stream](http://nodejs.org/docs/v0.4.7/api/streams.html#writable_Stream) and [Readable Stream](http://nodejs.org/docs/v0.4.7/api/streams.html#readable_Stream).\n\n### BufferStream\n\n```javascript\nBufferStream = require(\'bufferstream\')\nstream = new BufferStream([{encoding:\'utf8\', size:\'none\'}]) // default\n```\n * `encoding` default encoding for writing strings\n * `blocking` if true and the source is a child_process the stream will block the entire process (timeouts wont work anymore, but splitting and listening on data still works, because they work sync)\n * `size` defines buffer level or sets buffer to given size (see ↓`setSize` for more)\n * `disabled` immediately call disable\n * `split` short form for:\n\n```javascript\nstream.split(token, function (chunk) {stream.emit(\'data\', chunk)})\n```\n\n### stream.setSize\n\n```javascript\nstream.setSize(size) // can be one of [\'none\', \'flexible\', <number>]\n```\n\ndifferent buffer behaviors can be triggered by size:\n\n * `none` when output drains, bufferstream drains too\n * `flexible` buffers everthing that it gets and not piping out\n * `<number>` `TODO` buffer has given size. buffers everthing until buffer is full. when buffer is full then the stream will drain\n\n### stream.enable\n\n```javascript\nstream.enable()\n```\n\nenables stream buffering __default__\n\n### stream.disable\n\n```javascript\nstream.disable()\n```\n\nflushes buffer and disables stream buffering.\nBufferStream now pipes all data as long as the output accepting data.\nwhen the output is draining BufferStream will buffer all input temporary.\n\n```javascript\nstream.disable(token, ...)\nstream.disable(tokens) // Array\n```\n * `token[s]` buffer splitters (should be String or Buffer)\n\ndisables given tokens. wont flush until no splitter tokens are left.\n\n### stream.split\n\n```javascript\nstream.split(token, ...)\nstream.split(tokens) // Array\n```\n * `token[s]` buffer splitters (should be String or Buffer)\n\neach time BufferStream finds a splitter token in the input data it will emit a __split__ event.\nthis also works for binary data.\n\n### Event: \'split\'\n\n```javascript\nstream.on(\'split\', function (chunk, token) {…})\nstream.split(token, function (chunk, token) {…}) // only get called for this particular token\n```\n\nwhenever the stream is enabled it will try to find all splitter token in `stream.buffer`,\ncut it off and emit the chunk (without token) as __split__ event.\nthis data will be lost when not handled.\n\nthe chunk is the cut off of `stream.buffer` without the token.\n\n__Warning:__ try to avoid calling `stream.emit(\'data\', newchunk)` more than one time, because this will likely throw `Error: Offset is out of bounds`.\n\n### stream.getBuffer\n\n```javascript\nstream.getBuffer()\n// or just\nstream.buffer\n```\n\nreturns its [Buffer](http://nodejs.org/docs/v0.4.7/api/buffers.html).\n\n### stream.toString\n\n```javascript\nstream.toString()\n```\n\nshortcut for `stream.buffer.toString()`\n\n### stream.length\n\n```javascript\nstream.length\n```\n\nshortcut for `stream.buffer.length`\n\n### PostBuffer\n\n```javascript\nPostBuffer = require(\'bufferstream/postbuffer\')\npost = new PostBuffer(req)\n```\n * `req` http.ServerRequest\n\nfor if you want to get all the post data from a http server request and do some db reqeust before.\n\nbuffer http client\n\n### post.onEnd\n\n```javascript\npost.onEnd(function (data) {…});\n```\n\nset a callback to get all post data from a http server request\n\n### post.pipe\n\n```javascript\npost.pipe(stream, options);\n```\n\npumps data into another stream to allow incoming streams\ngiven options will be passed to Stream.pipe\n\n## example\n\n```javascript\nBufferStream = require(\'bufferstream\')\nstream = new BufferStream({encoding:\'utf8\', size:\'flexible\'})\nstream.split(\'//\', \':\')\nstream.on(\'split\', function (chunk, token) {\n console.log("got \'%s\' by \'%s\'", chunk.toString(), token.toString())\n})\nstream.write("buffer:stream//23")\nconsole.log(stream.toString())\n```\n\nresults in\n\n got \'buffer\' by \':\'\n got \'stream\' by \'//\'\n 23\n\n* https://github.com/dodo/node-bufferstream/blob/master/example/split.js\n\n## FAQ\n\n> I\'m not sure from your readme what the split event emits?\n\nyou can specify more than one split token .. so it\'s emitted whenever\na token is found.\n\n> does it emit the buffer up to the just before the token starts?\n\nyes.\n\n> also, does it join buffers together if they do not already end in a token?\n\nwhen size is `flexible` it joins everything together what it gets to\none buffer (accessible through `stream.buffer` or\n`stream.getBuffer()`)\nwhenever it gets data, it will try to find all tokens\n\n> in other words, can I use this to rechunk a stream so that the chunks always break on newlines, for example?\n\nyes.\n\n```javascript\nstream = new BufferStream({size:\'flexible\'});\nstream.split(\'\\n\', function (line) { // line doesn\'t have a \'\\n\' anymore\n stream.emit(\'data\', line); // Buffer.isBuffer(line) === true\n});\n```\n\n[![Build Status](https://secure.travis-ci.org/dodo/node-bufferstream.png)](http://travis-ci.org/dodo/node-bufferstream)\n',
607 silly resolved _id: 'bufferstream@0.5.1',
607 silly resolved _from: 'bufferstream@~0.5.1' },
607 silly resolved { name: 'bindings',
607 silly resolved description: 'Helper module for loading your native module\'s .node file',
607 silly resolved keywords: [ 'native', 'addon', 'bindings', 'gyp', 'waf', 'c', 'c++' ],
607 silly resolved version: '1.0.0',
607 silly resolved author:
607 silly resolved { name: 'Nathan Rajlich',
607 silly resolved email: 'nathan@tootallnate.net',
607 silly resolved url: 'http://tootallnate.net' },
607 silly resolved repository:
607 silly resolved { type: 'git',
607 silly resolved url: 'git://github.com/TooTallNate/node-bindings.git' },
607 silly resolved main: './bindings.js',
607 silly resolved readme: 'node-bindings\n=============\n### Helper module for loading your native module\'s .node file\n\nThis is a helper module for authors of Node.js native addon modules.\nIt is basically the "swiss army knife" of `require()`ing your native module\'s\n`.node` file.\n\nThroughout the course of Node\'s native addon history, addons have ended up being\ncompiled in a variety of different places, depending on which build tool and which\nversion of node was used. To make matters worse, now the _gyp_ build tool can\nproduce either a _Release_ or _Debug_ build, each being built into different\nlocations.\n\nThis module checks _all_ the possible locations that a native addon would be built\nat, and returns the first one that loads successfully.\n\n\nInstallation\n------------\n\nInstall with `npm`:\n\n``` bash\n$ npm install bindings\n```\n\nOr add it to the `"dependencies"` section of your _package.json_ file.\n\n\nExample\n-------\n\n`require()`ing the proper bindings file for the current node version, platform\nand architecture is as simple as:\n\n``` js\nvar bindings = require(\'bindings\')(\'binding.node\')\n\n// Use your bindings defined in your C files\nbindings.your_c_function()\n```\n\n\nNice Error Output\n-----------------\n\nWhen the `.node` file could not be loaded, `node-bindings` throws an Error with\na nice error message telling you exactly what was tried. You can also check the\n`err.tries` Array property.\n\n```\nError: Could not load the bindings file. Tried:\n → /Users/nrajlich/ref/build/binding.node\n → /Users/nrajlich/ref/build/Debug/binding.node\n → /Users/nrajlich/ref/build/Release/binding.node\n → /Users/nrajlich/ref/out/Debug/binding.node\n → /Users/nrajlich/ref/Debug/binding.node\n → /Users/nrajlich/ref/out/Release/binding.node\n → /Users/nrajlich/ref/Release/binding.node\n → /Users/nrajlich/ref/build/default/binding.node\n → /Users/nrajlich/ref/compiled/0.8.2/darwin/x64/binding.node\n at bindings (/Users/nrajlich/ref/node_modules/bindings/bindings.js:84:13)\n at Object.<anonymous> (/Users/nrajlich/ref/lib/ref.js:5:47)\n at Module._compile (module.js:449:26)\n at Object.Module._extensions..js (module.js:467:10)\n at Module.load (module.js:356:32)\n at Function.Module._load (module.js:312:12)\n ...\n```\n\n\nLicense\n-------\n\n(The MIT License)\n\nCopyright (c) 2012 Nathan Rajlich &lt;nathan@tootallnate.net&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.\n',
607 silly resolved _id: 'bindings@1.0.0',
607 silly resolved _from: 'bindings@~1.0.0' } ]
608 info install errno@0.0.3 into C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup
609 info install concat-stream@0.0.9 into C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup
610 info install bufferstream@0.5.1 into C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup
611 info install bindings@1.0.0 into C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup
612 info installOne errno@0.0.3
613 info installOne concat-stream@0.0.9
614 info installOne bufferstream@0.5.1
615 info installOne bindings@1.0.0
616 verbose from cache C:\Users\Alan Hoffmeistert\AppData\Roaming\npm-cache\errno\0.0.3\package\package.json
617 verbose from cache C:\Users\Alan Hoffmeistert\AppData\Roaming\npm-cache\concat-stream\0.0.9\package\package.json
618 verbose from cache C:\Users\Alan Hoffmeistert\AppData\Roaming\npm-cache\bufferstream\0.5.1\package\package.json
619 info C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup\node_modules\errno unbuild
620 verbose read json C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup\node_modules\errno\package.json
621 info C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup\node_modules\concat-stream unbuild
622 verbose read json C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup\node_modules\concat-stream\package.json
623 info C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup\node_modules\bufferstream unbuild
624 verbose read json C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup\node_modules\bufferstream\package.json
625 verbose from cache C:\Users\Alan Hoffmeistert\AppData\Roaming\npm-cache\bindings\1.0.0\package\package.json
626 info C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup\node_modules\bindings unbuild
627 verbose read json C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup\node_modules\bindings\package.json
628 verbose tar unpack C:\Users\Alan Hoffmeistert\AppData\Roaming\npm-cache\errno\0.0.3\package.tgz
629 silly lockFile fa828832-dules-levelup-node-modules-errno C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup\node_modules\errno
630 verbose lock C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup\node_modules\errno C:\Users\Alan Hoffmeistert\AppData\Roaming\npm-cache\fa828832-dules-levelup-node-modules-errno.lock
631 verbose tar unpack C:\Users\Alan Hoffmeistert\AppData\Roaming\npm-cache\concat-stream\0.0.9\package.tgz
632 silly lockFile 3c5fdd15-velup-node-modules-concat-stream C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup\node_modules\concat-stream
633 verbose lock C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup\node_modules\concat-stream C:\Users\Alan Hoffmeistert\AppData\Roaming\npm-cache\3c5fdd15-velup-node-modules-concat-stream.lock
634 verbose tar unpack C:\Users\Alan Hoffmeistert\AppData\Roaming\npm-cache\bufferstream\0.5.1\package.tgz
635 silly lockFile cc1d93e0-evelup-node-modules-bufferstream C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup\node_modules\bufferstream
636 verbose lock C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup\node_modules\bufferstream C:\Users\Alan Hoffmeistert\AppData\Roaming\npm-cache\cc1d93e0-evelup-node-modules-bufferstream.lock
637 verbose tar unpack C:\Users\Alan Hoffmeistert\AppData\Roaming\npm-cache\bindings\1.0.0\package.tgz
638 silly lockFile 46a171d1-es-levelup-node-modules-bindings C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup\node_modules\bindings
639 verbose lock C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup\node_modules\bindings C:\Users\Alan Hoffmeistert\AppData\Roaming\npm-cache\46a171d1-es-levelup-node-modules-bindings.lock
640 silly gunzTarPerm modes [ '755', '644' ]
641 silly gunzTarPerm modes [ '755', '644' ]
642 silly gunzTarPerm modes [ '755', '644' ]
643 silly gunzTarPerm modes [ '755', '644' ]
644 silly gunzTarPerm extractEntry package.json
645 silly gunzTarPerm modified mode [ 'package.json', 438, 420 ]
646 silly gunzTarPerm extractEntry package.json
647 silly gunzTarPerm modified mode [ 'package.json', 438, 420 ]
648 silly gunzTarPerm extractEntry package.json
649 silly gunzTarPerm modified mode [ 'package.json', 438, 420 ]
650 silly gunzTarPerm extractEntry package.json
651 silly gunzTarPerm modified mode [ 'package.json', 438, 420 ]
652 silly gunzTarPerm extractEntry .npmignore
653 silly gunzTarPerm modified mode [ '.npmignore', 438, 420 ]
654 silly gunzTarPerm extractEntry README.md
655 silly gunzTarPerm modified mode [ 'README.md', 438, 420 ]
656 silly gunzTarPerm extractEntry index.js
657 silly gunzTarPerm modified mode [ 'index.js', 438, 420 ]
658 silly gunzTarPerm extractEntry test.js
659 silly gunzTarPerm modified mode [ 'test.js', 438, 420 ]
660 silly gunzTarPerm extractEntry README.md
661 silly gunzTarPerm modified mode [ 'README.md', 438, 420 ]
662 silly gunzTarPerm extractEntry bindings.js
663 silly gunzTarPerm modified mode [ 'bindings.js', 438, 420 ]
664 silly gunzTarPerm extractEntry .npmignore
665 silly gunzTarPerm modified mode [ '.npmignore', 438, 420 ]
666 silly gunzTarPerm extractEntry README.md
667 silly gunzTarPerm modified mode [ 'README.md', 438, 420 ]
668 silly gunzTarPerm extractEntry readme.md
669 silly gunzTarPerm modified mode [ 'readme.md', 438, 420 ]
670 silly gunzTarPerm extractEntry build.js
671 silly gunzTarPerm modified mode [ 'build.js', 438, 420 ]
672 silly gunzTarPerm extractEntry cli.js
673 silly gunzTarPerm modified mode [ 'cli.js', 438, 420 ]
674 silly gunzTarPerm extractEntry bufferstream.js
675 silly gunzTarPerm modified mode [ 'bufferstream.js', 438, 420 ]
676 silly gunzTarPerm extractEntry events.js
677 silly gunzTarPerm modified mode [ 'events.js', 438, 420 ]
678 silly gunzTarPerm extractEntry custom.js
679 silly gunzTarPerm modified mode [ 'custom.js', 438, 420 ]
680 silly gunzTarPerm extractEntry errno.js
681 silly gunzTarPerm modified mode [ 'errno.js', 438, 420 ]
682 silly gunzTarPerm extractEntry test.js
683 silly gunzTarPerm modified mode [ 'test.js', 438, 420 ]
684 silly gunzTarPerm extractEntry postbuffer.js
685 silly gunzTarPerm modified mode [ 'postbuffer.js', 438, 420 ]
686 silly gunzTarPerm extractEntry lib/buffer-stream.js
687 silly gunzTarPerm modified mode [ 'lib/buffer-stream.js', 438, 420 ]
688 silly gunzTarPerm extractEntry lib/fn.js
689 silly gunzTarPerm modified mode [ 'lib/fn.js', 438, 420 ]
690 silly gunzTarPerm extractEntry lib/post-buffer.js
691 silly gunzTarPerm modified mode [ 'lib/post-buffer.js', 438, 420 ]
692 silly gunzTarPerm extractEntry .travis.yml
693 silly gunzTarPerm modified mode [ '.travis.yml', 438, 420 ]
694 silly gunzTarPerm extractEntry test/buffer.js
695 silly gunzTarPerm modified mode [ 'test/buffer.js', 438, 420 ]
696 silly gunzTarPerm extractEntry test/stream.js
697 silly gunzTarPerm modified mode [ 'test/stream.js', 438, 420 ]
698 silly gunzTarPerm extractEntry todo
699 silly gunzTarPerm modified mode [ 'todo', 438, 420 ]
700 verbose read json C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup\node_modules\bindings\package.json
701 verbose read json C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup\node_modules\concat-stream\package.json
702 silly lockFile 46a171d1-es-levelup-node-modules-bindings C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup\node_modules\bindings
703 silly lockFile 3c5fdd15-velup-node-modules-concat-stream C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup\node_modules\concat-stream
704 info preinstall bindings@1.0.0
705 info preinstall concat-stream@0.0.9
706 verbose from cache C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup\node_modules\bindings\package.json
707 verbose from cache C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup\node_modules\concat-stream\package.json
708 verbose readDependencies using package.json deps
709 verbose from cache C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup\node_modules\bindings\package.json
710 verbose readDependencies using package.json deps
711 verbose from cache C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup\node_modules\concat-stream\package.json
712 verbose readDependencies using package.json deps
713 silly resolved []
714 verbose about to build C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup\node_modules\bindings
715 info build C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup\node_modules\bindings
716 verbose from cache C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup\node_modules\bindings\package.json
717 verbose linkStuff [ false,
717 verbose linkStuff false,
717 verbose linkStuff false,
717 verbose linkStuff 'C:\\Users\\Alan Hoffmeistert\\Projetos\\levelup\\node_modules\\levelup\\node_modules' ]
718 info linkStuff bindings@1.0.0
719 verbose linkBins bindings@1.0.0
720 verbose linkMans bindings@1.0.0
721 verbose rebuildBundles bindings@1.0.0
722 verbose readDependencies using package.json deps
723 silly resolved []
724 verbose about to build C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup\node_modules\concat-stream
725 info build C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup\node_modules\concat-stream
726 verbose from cache C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup\node_modules\concat-stream\package.json
727 verbose linkStuff [ false,
727 verbose linkStuff false,
727 verbose linkStuff false,
727 verbose linkStuff 'C:\\Users\\Alan Hoffmeistert\\Projetos\\levelup\\node_modules\\levelup\\node_modules' ]
728 info linkStuff concat-stream@0.0.9
729 verbose linkBins concat-stream@0.0.9
730 verbose linkMans concat-stream@0.0.9
731 verbose rebuildBundles concat-stream@0.0.9
732 info install bindings@1.0.0
733 info install concat-stream@0.0.9
734 info postinstall bindings@1.0.0
735 info postinstall concat-stream@0.0.9
736 verbose read json C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup\node_modules\errno\package.json
737 silly lockFile fa828832-dules-levelup-node-modules-errno C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup\node_modules\errno
738 info preinstall errno@0.0.3
739 verbose from cache C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup\node_modules\errno\package.json
740 verbose readDependencies using package.json deps
741 verbose from cache C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup\node_modules\errno\package.json
742 verbose readDependencies using package.json deps
743 silly resolved []
744 verbose about to build C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup\node_modules\errno
745 info build C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup\node_modules\errno
746 verbose from cache C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup\node_modules\errno\package.json
747 verbose linkStuff [ false,
747 verbose linkStuff false,
747 verbose linkStuff false,
747 verbose linkStuff 'C:\\Users\\Alan Hoffmeistert\\Projetos\\levelup\\node_modules\\levelup\\node_modules' ]
748 info linkStuff errno@0.0.3
749 verbose linkBins errno@0.0.3
750 verbose link bins [ { errno: './cli.js' },
750 verbose link bins 'C:\\Users\\Alan Hoffmeistert\\Projetos\\levelup\\node_modules\\levelup\\node_modules\\.bin',
750 verbose link bins false ]
751 verbose linkMans errno@0.0.3
752 verbose rebuildBundles errno@0.0.3
753 info install errno@0.0.3
754 info postinstall errno@0.0.3
755 verbose read json C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup\node_modules\bufferstream\package.json
756 silly lockFile cc1d93e0-evelup-node-modules-bufferstream C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup\node_modules\bufferstream
757 info preinstall bufferstream@0.5.1
758 verbose from cache C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup\node_modules\bufferstream\package.json
759 verbose readDependencies using package.json deps
760 verbose from cache C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup\node_modules\bufferstream\package.json
761 verbose readDependencies using package.json deps
762 verbose cache add [ 'buffertools@>= 1.0.3', null ]
763 silly cache add name=undefined spec="buffertools@>= 1.0.3" args=["buffertools@>= 1.0.3",null]
764 verbose parsed url { pathname: 'buffertools@%3E=%201.0.3',
764 verbose parsed url path: 'buffertools@%3E=%201.0.3',
764 verbose parsed url href: 'buffertools@%3E=%201.0.3' }
765 silly cache add name="buffertools" spec=">= 1.0.3" args=["buffertools",">= 1.0.3"]
766 verbose parsed url { pathname: '%3E=%201.0.3',
766 verbose parsed url path: '%3E=%201.0.3',
766 verbose parsed url href: '%3E=%201.0.3' }
767 verbose addNamed [ 'buffertools', '>= 1.0.3' ]
768 verbose addNamed [ null, '>=1.0.3' ]
769 silly lockFile 7f466163-buffertools-1-0-3 buffertools@>= 1.0.3
770 verbose lock buffertools@>= 1.0.3 C:\Users\Alan Hoffmeistert\AppData\Roaming\npm-cache\7f466163-buffertools-1-0-3.lock
771 silly addNameRange { name: 'buffertools', range: '>=1.0.3', hasData: false }
772 verbose url raw buffertools
773 verbose url resolving [ 'https://registry.npmjs.org/', './buffertools' ]
774 verbose url resolved https://registry.npmjs.org/buffertools
775 info trying registry request attempt 1 at 00:40:38
776 verbose etag "AVT0PGJBUHV15BU6003I2DIAM"
777 http GET https://registry.npmjs.org/buffertools
778 http 304 https://registry.npmjs.org/buffertools
779 silly registry.get cb [ 304,
779 silly registry.get { server: 'CouchDB/1.2.0 (Erlang OTP/R15B)',
779 silly registry.get etag: '"AVT0PGJBUHV15BU6003I2DIAM"',
779 silly registry.get date: 'Sun, 16 Sep 2012 03:41:14 GMT',
779 silly registry.get 'content-length': '0' } ]
780 verbose etag buffertools from cache
781 silly addNameRange number 2 { name: 'buffertools', range: '>=1.0.3', hasData: true }
782 silly addNameRange versions [ 'buffertools',
782 silly addNameRange [ '1.0.0',
782 silly addNameRange '1.0.1',
782 silly addNameRange '1.0.2',
782 silly addNameRange '1.0.3',
782 silly addNameRange '1.0.4',
782 silly addNameRange '1.0.5',
782 silly addNameRange '1.0.6',
782 silly addNameRange '1.0.7',
782 silly addNameRange '1.0.8',
782 silly addNameRange '1.0.9',
782 silly addNameRange '1.1.0' ] ]
783 verbose addNamed [ 'buffertools', '1.1.0' ]
784 verbose addNamed [ '1.1.0', '1.1.0' ]
785 silly lockFile 2038c422-buffertools-1-1-0 buffertools@1.1.0
786 verbose lock buffertools@1.1.0 C:\Users\Alan Hoffmeistert\AppData\Roaming\npm-cache\2038c422-buffertools-1-1-0.lock
787 verbose read json C:\Users\Alan Hoffmeistert\AppData\Roaming\npm-cache\buffertools\1.1.0\package\package.json
788 silly lockFile 2038c422-buffertools-1-1-0 buffertools@1.1.0
789 silly lockFile 7f466163-buffertools-1-0-3 buffertools@>= 1.0.3
790 silly resolved [ { name: 'buffertools',
790 silly resolved main: 'buffertools',
790 silly resolved version: '1.1.0',
790 silly resolved keywords: [ 'buffer', 'buffers' ],
790 silly resolved description: 'Working with node.js buffers made easy.',
790 silly resolved homepage: 'https://github.com/bnoordhuis/node-buffertools',
790 silly resolved author:
790 silly resolved { name: 'Ben Noordhuis',
790 silly resolved email: 'info@bnoordhuis.nl',
790 silly resolved url: 'http://bnoordhuis.nl/' },
790 silly resolved repository:
790 silly resolved { type: 'git',
790 silly resolved url: 'https://github.com/bnoordhuis/node-buffertools.git' },
790 silly resolved engines: { node: '>=0.3.0' },
790 silly resolved scripts: { install: 'node-gyp rebuild' },
790 silly resolved gypfile: true,
790 silly resolved contributors: [ [Object], [Object], [Object] ],
790 silly resolved readme: '# node-buffertools\n\nUtilities for manipulating buffers.\n\n## Installing the module\n\nEasy! With [npm](http://npmjs.org/):\n\n\tnpm install buffertools\n\nFrom source:\n\n\tnode-gyp configure\n\tnode-gyp build\n\nNow you can include the module in your project.\n\n\trequire(\'buffertools\');\n\tnew Buffer(42).clear();\n\n## Methods\n\nNote that most methods that take a buffer as an argument, will also accept a string.\n\n### Buffer.clear()\n\nClear the buffer. This is equivalent to `Buffer.fill(0)`.\nReturns the buffer object so you can chain method calls.\n\n### Buffer.compare(buffer|string)\n\nLexicographically compare two buffers. Returns a number less than zero\nif a < b, zero if a == b or greater than zero if a > b.\n\nBuffers are considered equal when they are of the same length and contain\nthe same binary data.\n\nSmaller buffers are considered to be less than larger ones. Some buffers\nfind this hurtful.\n\n### Buffer.concat(a, b, c, ...)\n### buffertools.concat(a, b, c, ...)\n\nConcatenate two or more buffers/strings and return the result. Example:\n\n\t// identical to new Buffer(\'foobarbaz\')\n\ta = new Buffer(\'foo\');\n\tb = new Buffer(\'bar\');\n\tc = a.concat(b, \'baz\');\n\tconsole.log(a, b, c); // "foo bar foobarbaz"\n\n\t// static variant\n\tbuffertools.concat(\'foo\', new Buffer(\'bar\'), \'baz\');\n\n### Buffer.equals(buffer|string)\n\nReturns true if this buffer equals the argument, false otherwise.\n\nBuffers are considered equal when they are of the same length and contain\nthe same binary data.\n\nCaveat emptor: If your buffers contain strings with different character encodings,\nthey will most likely *not* be equal.\n\n### Buffer.fill(integer|string|buffer)\n\nFill the buffer (repeatedly if necessary) with the argument.\nReturns the buffer object so you can chain method calls.\n\n### Buffer.fromHex()\n\nAssumes this buffer contains hexadecimal data (packed, no whitespace)\nand decodes it into binary data. Returns a new buffer with the decoded\ncontent. Throws an exception if non-hexadecimal data is encountered.\n\n### Buffer.indexOf(buffer|string, [start=0])\n\nSearch this buffer for the first occurrence of the argument, starting at\noffset `start`. Returns the zero-based index or -1 if there is no match.\n\n### Buffer.reverse()\n\nReverse the content of the buffer in place. Example:\n\n\tb = new Buffer(\'live\');\n\tb.reverse();\n\tconsole.log(b); // "evil"\n\n### Buffer.toHex()\n\nReturns the contents of this buffer encoded as a hexadecimal string.\n\n## Classes\n\nSingular, actually. To wit:\n\n## WritableBufferStream\n\nThis is a regular node.js [writable stream](http://nodejs.org/docs/v0.3.4/api/streams.html#writable_Stream)\nthat accumulates the data it receives into a buffer.\n\nExample usage:\n\n\t// slurp stdin into a buffer\n\tprocess.stdin.resume();\n\tostream = new WritableBufferStream();\n\tutil.pump(process.stdin, ostream);\n\tconsole.log(ostream.getBuffer());\n\nThe stream never emits \'error\' or \'drain\' events.\n\n### WritableBufferStream.getBuffer()\n\nReturn the data accumulated so far as a buffer.\n\n## TODO\n\n* Logical operations on buffers (AND, OR, XOR).\n* Add lastIndexOf() functions.\n',
790 silly resolved _id: 'buffertools@1.1.0',
790 silly resolved _from: 'buffertools@>= 1.0.3' } ]
791 info install buffertools@1.1.0 into C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup\node_modules\bufferstream
792 info installOne buffertools@1.1.0
793 verbose from cache C:\Users\Alan Hoffmeistert\AppData\Roaming\npm-cache\buffertools\1.1.0\package\package.json
794 info C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup\node_modules\bufferstream\node_modules\buffertools unbuild
795 verbose read json C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup\node_modules\bufferstream\node_modules\buffertools\package.json
796 verbose tar unpack C:\Users\Alan Hoffmeistert\AppData\Roaming\npm-cache\buffertools\1.1.0\package.tgz
797 silly lockFile 7518d31e-rstream-node-modules-buffertools C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup\node_modules\bufferstream\node_modules\buffertools
798 verbose lock C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup\node_modules\bufferstream\node_modules\buffertools C:\Users\Alan Hoffmeistert\AppData\Roaming\npm-cache\7518d31e-rstream-node-modules-buffertools.lock
799 silly gunzTarPerm modes [ '755', '644' ]
800 silly gunzTarPerm extractEntry package.json
801 silly gunzTarPerm modified mode [ 'package.json', 438, 420 ]
802 silly gunzTarPerm extractEntry .npmignore
803 silly gunzTarPerm modified mode [ '.npmignore', 438, 420 ]
804 silly gunzTarPerm extractEntry README.md
805 silly gunzTarPerm modified mode [ 'README.md', 438, 420 ]
806 silly gunzTarPerm extractEntry buffertools.js
807 silly gunzTarPerm modified mode [ 'buffertools.js', 438, 420 ]
808 silly gunzTarPerm extractEntry test.js
809 silly gunzTarPerm modified mode [ 'test.js', 438, 420 ]
810 silly gunzTarPerm extractEntry buffertools.cc
811 silly gunzTarPerm modified mode [ 'buffertools.cc', 438, 420 ]
812 silly gunzTarPerm extractEntry AUTHORS
813 silly gunzTarPerm modified mode [ 'AUTHORS', 438, 420 ]
814 silly gunzTarPerm extractEntry binding.gyp
815 silly gunzTarPerm modified mode [ 'binding.gyp', 438, 420 ]
816 silly gunzTarPerm extractEntry BoyerMoore.h
817 silly gunzTarPerm modified mode [ 'BoyerMoore.h', 438, 420 ]
818 silly gunzTarPerm extractEntry .mailmap
819 silly gunzTarPerm modified mode [ '.mailmap', 438, 420 ]
820 silly gunzTarPerm extractEntry wscript
821 silly gunzTarPerm modified mode [ 'wscript', 438, 420 ]
822 verbose read json C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup\node_modules\bufferstream\node_modules\buffertools\package.json
823 silly lockFile 7518d31e-rstream-node-modules-buffertools C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup\node_modules\bufferstream\node_modules\buffertools
824 info preinstall buffertools@1.1.0
825 verbose from cache C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup\node_modules\bufferstream\node_modules\buffertools\package.json
826 verbose readDependencies using package.json deps
827 verbose from cache C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup\node_modules\bufferstream\node_modules\buffertools\package.json
828 verbose readDependencies using package.json deps
829 silly resolved []
830 verbose about to build C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup\node_modules\bufferstream\node_modules\buffertools
831 info build C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup\node_modules\bufferstream\node_modules\buffertools
832 verbose from cache C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup\node_modules\bufferstream\node_modules\buffertools\package.json
833 verbose linkStuff [ false,
833 verbose linkStuff false,
833 verbose linkStuff false,
833 verbose linkStuff 'C:\\Users\\Alan Hoffmeistert\\Projetos\\levelup\\node_modules\\levelup\\node_modules\\bufferstream\\node_modules' ]
834 info linkStuff buffertools@1.1.0
835 verbose linkBins buffertools@1.1.0
836 verbose linkMans buffertools@1.1.0
837 verbose rebuildBundles buffertools@1.1.0
838 info install buffertools@1.1.0
839 verbose unsafe-perm in lifecycle true
840 silly exec cmd "/c" "node-gyp rebuild"
841 silly cmd,/c,node-gyp rebuild,C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup\node_modules\bufferstream\node_modules\buffertools spawning
842 info postinstall buffertools@1.1.0
843 verbose about to build C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup\node_modules\bufferstream
844 info build C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup\node_modules\bufferstream
845 verbose from cache C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup\node_modules\bufferstream\package.json
846 verbose linkStuff [ false,
846 verbose linkStuff false,
846 verbose linkStuff false,
846 verbose linkStuff 'C:\\Users\\Alan Hoffmeistert\\Projetos\\levelup\\node_modules\\levelup\\node_modules' ]
847 info linkStuff bufferstream@0.5.1
848 verbose linkBins bufferstream@0.5.1
849 verbose linkMans bufferstream@0.5.1
850 verbose rebuildBundles bufferstream@0.5.1
851 verbose rebuildBundles [ 'buffertools' ]
852 info install bufferstream@0.5.1
853 info postinstall bufferstream@0.5.1
854 verbose about to build C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup
855 info build C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup
856 verbose from cache C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup\package.json
857 verbose linkStuff [ false,
857 verbose linkStuff false,
857 verbose linkStuff false,
857 verbose linkStuff 'C:\\Users\\Alan Hoffmeistert\\Projetos\\levelup\\node_modules' ]
858 info linkStuff levelup@0.0.4
859 verbose linkBins levelup@0.0.4
860 verbose linkMans levelup@0.0.4
861 verbose rebuildBundles levelup@0.0.4
862 verbose rebuildBundles [ '.bin', 'bindings', 'bufferstream', 'concat-stream', 'errno' ]
863 info install levelup@0.0.4
864 verbose unsafe-perm in lifecycle true
865 silly exec cmd "/c" "node-gyp rebuild"
866 silly cmd,/c,node-gyp rebuild,C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup spawning
867 info levelup@0.0.4 Failed to exec install script
868 info C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup unbuild
869 verbose from cache C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules\levelup\package.json
870 info preuninstall levelup@0.0.4
871 info uninstall levelup@0.0.4
872 verbose true,C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules,C:\Users\Alan Hoffmeistert\Projetos\levelup\node_modules unbuild levelup@0.0.4
873 info postuninstall levelup@0.0.4
874 error levelup@0.0.4 install: `node-gyp rebuild`
874 error `cmd "/c" "node-gyp rebuild"` failed with 1
875 error Failed at the levelup@0.0.4 install script.
875 error This is most likely a problem with the levelup package,
875 error not with npm itself.
875 error Tell the author that this fails on your system:
875 error node-gyp rebuild
875 error You can get their info via:
875 error npm owner ls levelup
875 error There is likely additional logging output above.
876 error System Windows_NT 6.1.7601
877 error command "C:\\Program Files (x86)\\nodejs\\\\node.exe" "C:\\Program Files (x86)\\nodejs\\node_modules\\npm\\bin\\npm-cli.js" "install" "levelup"
878 error cwd C:\Users\Alan Hoffmeistert\Projetos\levelup
879 error node -v v0.8.9
880 error npm -v 1.1.61
881 error code ELIFECYCLE
882 verbose exit [ 1, true ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment