GithubHelp home page GithubHelp logo

mac-lookup's Issues

User Experience enhancement for download of oui update file

When performing a rebuild the download of the latest oui.txt file (via my link) takes forever and I hate sitting there wondering if the process is running or stalled.

I've made a few alterations to my version of the this code which may be of benefit to anyone else using this great package.

The original code in index.js at 114

  request(this.options.url)
    .on('error', console.error)
    .on('end', function() {
      parse(next);
    })
    .pipe(fs.createWriteStream(this.options.txt));

The new code

  var bytesRead=0;
  var bytesToReceive=0;  
  request(this.options.url) 
    .on('response', function(response) {        
        if (response.statusCode != 200) {
            console.error("Request failed with status/code of :", response.statusCode);
            console.error('The accompanying message is:', response.statusMessage);
            throw new Error("Downloading of the Update has failed.");
        }
        else {
            bytesToReceive = Number(response.headers["content-length"]);
            console.log("Size of update is " + bytesToReceive.toLocaleString() + " bytes.");
        }
    })
    .on('data', function(data) {
        bytesRead += data.length;
        // stdout.write and using the \r allows us to rewrite on the same console line
        process.stdout.write("Received " + ((bytesRead/bytesToReceive) * 100).toFixed(2) + "% of the file...\r");
    })
    .on('end', function () {
        // prefix with a \n to leave the last "Received" message on the console
        console.log("\nDownload completed.");
    })  
    .on('error', console.error)
    .on('end', function() {
      parse(next);
    })
    .pipe(fs.createWriteStream(this.options.txt));

The difference to the overall output is an extra 3 lines, for example:

Size of update is 3,343,033 bytes.
Received 100.00% of the file...
Download completed.

The advantages of this refactor are:

  • it throws an error if the initial response/connection is borked
  • it does a percentage update as the download progresses, and
  • informs you when the download is complete.

Thanks for your consideration.

Rebuild fails in mac-lookup v0.1.7

The rebuild method fails via the documented example with the following error:

EBUSY: resource busy or locked, unlink 'C:\Work\Mac\node_modules\mac-lookup\oui.db'

The solution I found was to simply close the sqlite3 database before attempting to unlink / delete it.

That is, before the unlink call at line 88 (in the index.js source file)

fs.unlink(ml.options.sql, function(err) {

Insert this call to solve the locked resource problem

ml.options.db.close();

Hope this helps somebody out there...

N.B I am using Windows 10 and Node v4.5.0

Adding custom URL for pulling the oui.txt

I'm creating this for tracking purposes.

The options in the const section should be passable during init of the module, so that a custom location can be used. I'm currently having to modify the source for my personal usage, and using a custom location: http://linuxnet.ca/ieee/oui/

Can this be exposed please?

can't install on OS-X El Capitan

On OS-X El Capitan i can't seem to install mac-lookup, it fails when installing the sqlite3 dependency.

node version: 4.2.1
npm version: 3.3.9

Terminal output:

$ npm install sqlite3

> [email protected] install /Users/matias/projects/neura/user_analytics/ndjs/node_modules/sqlite3
> node-pre-gyp install --fallback-to-build

[sqlite3] Success: "/Users/matias/projects/neura/user_analytics/ndjs/node_modules/sqlite3/lib/binding/node-v46-darwin-x64/node_sqlite3.node" is installed via remote
[email protected] /Users/matias/projects/neura/user_analytics/ndjs
└── [email protected]  extraneous

npm WARN EPACKAGEJSON [email protected] No repository field.
npm WARN EPACKAGEJSON [email protected] No license field.

matias at matias-neura in ~/projects/neura/user_analytics/ndjs on master
$ npm install mac-lookup
npm WARN engine [email protected]: wanted: {"node":">= 0.6.13 < 0.11.0"} (current: {"node":"4.2.1","npm":"3.3.9"})

> [email protected] install /Users/**/node_modules/mac-lookup/node_modules/sqlite3
> node build.js

[sqlite3]: Checking for http://node-sqlite3.s3.amazonaws.com/Release/node_sqlite3-v2.1.a-node-v46-darwin-x64.tar.gz
[sqlite3]: http://node-sqlite3.s3.amazonaws.com/Release/node_sqlite3-v2.1.a-node-v46-darwin-x64.tar.gz not found, falling back to source compile (Error: Server returned 404)
(node) child_process: options.customFds option is deprecated. Use options.stdio instead.
gyp: mac-lookup not found (cwd: /Users/**/node_modules/mac-lookup/node_modules/sqlite3) while trying to load mac-lookup
gyp ERR! configure error
gyp ERR! stack Error: `gyp` failed with exit code: 1
gyp ERR! stack     at ChildProcess.onCpExit (/usr/local/lib/node_modules/npm/node_modules/node-gyp/lib/configure.js:355:16)
gyp ERR! stack     at emitTwo (events.js:87:13)
gyp ERR! stack     at ChildProcess.emit (events.js:172:7)
gyp ERR! stack     at Process.ChildProcess._handle.onexit (internal/child_process.js:200:12)
gyp ERR! System Darwin 15.0.0
gyp ERR! command "/usr/local/Cellar/node/4.2.1/bin/node" "/usr/local/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js" "rebuild" "mac-lookup"
gyp ERR! cwd /Users/**/node_modules/mac-lookup/node_modules/sqlite3
gyp ERR! node -v v4.2.1
gyp ERR! node-gyp -v v3.0.3
gyp ERR! not ok
[sqlite3]: Error: Failed to execute 'node-gyp rebuild mac-lookup' (1)
npm WARN EPACKAGEJSON [email protected] No repository field.
npm WARN EPACKAGEJSON [email protected] No license field.
npm ERR! Darwin 15.0.0
npm ERR! argv "/usr/local/Cellar/node/4.2.1/bin/node" "/usr/local/bin/npm" "install" "mac-lookup"
npm ERR! node v4.2.1
npm ERR! npm  v3.3.9
npm ERR! code ELIFECYCLE

npm ERR! [email protected] install: `node build.js`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the [email protected] install script 'node build.js'.
npm ERR! This is most likely a problem with the sqlite3 package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR!     node build.js
npm ERR! You can get their info via:
npm ERR!     npm owner ls sqlite3
npm ERR! There is likely additional logging output above.

npm ERR! Please include the following file with any support request:
npm ERR!     /Users/**/npm-debug.log

npm-debug.log file output:

0 info it worked if it ends with ok
1 verbose cli [ '/usr/local/Cellar/node/4.2.1/bin/node',
1 verbose cli   '/usr/local/bin/npm',
1 verbose cli   'install',
1 verbose cli   'mac-lookup' ]
2 info using [email protected]
3 info using [email protected]
4 silly loadCurrentTree Starting
5 silly install loadCurrentTree
6 silly install readLocalPackageData
7 silly fetchPackageMetaData mac-lookup@*
8 silly fetchNamedPackageData mac-lookup
9 silly mapToRegistry name mac-lookup
10 silly mapToRegistry using default registry
11 silly mapToRegistry registry https://registry.npmjs.org/
12 silly mapToRegistry uri https://registry.npmjs.org/mac-lookup
13 verbose request uri https://registry.npmjs.org/mac-lookup
14 verbose request no auth needed
15 info attempt registry request try #1 at 11:05:47 AM
16 verbose request id 3864408796ff5a79
17 verbose etag "BYYZNK2WMZMOFC4CB4AHNG4KT"
18 http request GET https://registry.npmjs.org/mac-lookup
19 http 304 https://registry.npmjs.org/mac-lookup
20 verbose headers { date: 'Mon, 19 Oct 2015 08:05:48 GMT',
20 verbose headers   via: '1.1 varnish',
20 verbose headers   'cache-control': 'max-age=60',
20 verbose headers   etag: '"BYYZNK2WMZMOFC4CB4AHNG4KT"',
20 verbose headers   age: '0',
20 verbose headers   connection: 'keep-alive',
20 verbose headers   'x-served-by': 'cache-lhr6333-LHR',
20 verbose headers   'x-cache': 'MISS',
20 verbose headers   'x-cache-hits': '0',
20 verbose headers   'x-timer': 'S1445241948.328665,VS0,VE358',
20 verbose headers   vary: 'Accept' }
21 silly get cb [ 304,
21 silly get   { date: 'Mon, 19 Oct 2015 08:05:48 GMT',
21 silly get     via: '1.1 varnish',
21 silly get     'cache-control': 'max-age=60',
21 silly get     etag: '"BYYZNK2WMZMOFC4CB4AHNG4KT"',
21 silly get     age: '0',
21 silly get     connection: 'keep-alive',
21 silly get     'x-served-by': 'cache-lhr6333-LHR',
21 silly get     'x-cache': 'MISS',
21 silly get     'x-cache-hits': '0',
21 silly get     'x-timer': 'S1445241948.328665,VS0,VE358',
21 silly get     vary: 'Accept' } ]
22 verbose etag https://registry.npmjs.org/mac-lookup from cache
23 verbose get saving mac-lookup to /Users/**/.npm/registry.npmjs.org/mac-lookup/.cache.json
24 silly install normalizeTree
25 silly loadCurrentTree Finishing
26 silly loadIdealTree Starting
27 silly install loadIdealTree
28 silly cloneCurrentTree Starting
29 silly install cloneCurrentTreeToIdealTree
30 silly cloneCurrentTree Finishing
31 silly loadShrinkwrap Starting
32 silly install loadShrinkwrap
33 silly loadShrinkwrap Finishing
34 silly loadAllDepsIntoIdealTree Starting
35 silly install loadAllDepsIntoIdealTree
36 silly resolveWithNewModule [email protected] checking installable status
37 silly cache add args [ 'mac-lookup@*', null ]
38 verbose cache add spec mac-lookup@*
39 silly cache add parsed spec Result {
39 silly cache add   raw: 'mac-lookup@*',
39 silly cache add   scope: null,
39 silly cache add   name: 'mac-lookup',
39 silly cache add   rawSpec: '*',
39 silly cache add   spec: '*',
39 silly cache add   type: 'range' }
40 silly addNamed mac-lookup@*
41 verbose addNamed "*" is a valid semver range for mac-lookup
42 silly addNameRange { name: 'mac-lookup', range: '*', hasData: false }
43 silly mapToRegistry name mac-lookup
44 silly mapToRegistry using default registry
45 silly mapToRegistry registry https://registry.npmjs.org/
46 silly mapToRegistry uri https://registry.npmjs.org/mac-lookup
47 verbose addNameRange registry:https://registry.npmjs.org/mac-lookup not in flight; fetching
48 verbose get https://registry.npmjs.org/mac-lookup not expired, no request
49 silly addNameRange number 2 { name: 'mac-lookup', range: '*', hasData: true }
50 silly addNameRange versions [ 'mac-lookup', [ '0.0.1', '0.0.2', '0.0.3' ] ]
51 silly addNamed [email protected]
52 verbose addNamed "0.0.3" is a plain semver version for mac-lookup
53 silly cache afterAdd [email protected]
54 verbose afterAdd /Users/**/.npm/mac-lookup/0.0.3/package/package.json not in flight; writing
55 verbose afterAdd /Users/**/.npm/mac-lookup/0.0.3/package/package.json written
56 silly fetchNamedPackageData sqlite3
57 silly mapToRegistry name sqlite3
58 silly mapToRegistry using default registry
59 silly mapToRegistry registry https://registry.npmjs.org/
60 silly mapToRegistry uri https://registry.npmjs.org/sqlite3
61 verbose request uri https://registry.npmjs.org/sqlite3
62 verbose request no auth needed
63 info attempt registry request try #1 at 11:05:48 AM
64 verbose etag "86HSZMS200GSQ75AGGSCKN3TO"
65 http request GET https://registry.npmjs.org/sqlite3
66 http 304 https://registry.npmjs.org/sqlite3
67 verbose headers { date: 'Mon, 19 Oct 2015 08:05:49 GMT',
67 verbose headers   via: '1.1 varnish',
67 verbose headers   'cache-control': 'max-age=60',
67 verbose headers   etag: '"86HSZMS200GSQ75AGGSCKN3TO"',
67 verbose headers   age: '25',
67 verbose headers   connection: 'keep-alive',
67 verbose headers   'x-served-by': 'cache-lhr6335-LHR',
67 verbose headers   'x-cache': 'HIT',
67 verbose headers   'x-cache-hits': '1',
67 verbose headers   'x-timer': 'S1445241949.307213,VS0,VE1',
67 verbose headers   vary: 'Accept' }
68 silly get cb [ 304,
68 silly get   { date: 'Mon, 19 Oct 2015 08:05:49 GMT',
68 silly get     via: '1.1 varnish',
68 silly get     'cache-control': 'max-age=60',
68 silly get     etag: '"86HSZMS200GSQ75AGGSCKN3TO"',
68 silly get     age: '25',
68 silly get     connection: 'keep-alive',
68 silly get     'x-served-by': 'cache-lhr6335-LHR',
68 silly get     'x-cache': 'HIT',
68 silly get     'x-cache-hits': '1',
68 silly get     'x-timer': 'S1445241949.307213,VS0,VE1',
68 silly get     vary: 'Accept' } ]
69 verbose etag https://registry.npmjs.org/sqlite3 from cache
70 verbose get saving sqlite3 to /Users/**/.npm/registry.npmjs.org/sqlite3/.cache.json
71 silly resolveWithNewModule [email protected] checking installable status
72 warn engine [email protected]: wanted: {"node":">= 0.6.13 < 0.11.0"} (current: {"node":"4.2.1","npm":"3.3.9"})
73 silly cache add args [ 'sqlite3@~2.1.19', null ]
74 verbose cache add spec sqlite3@~2.1.19
75 silly cache add parsed spec Result {
75 silly cache add   raw: 'sqlite3@~2.1.19',
75 silly cache add   scope: null,
75 silly cache add   name: 'sqlite3',
75 silly cache add   rawSpec: '~2.1.19',
75 silly cache add   spec: '>=2.1.19 <2.2.0',
75 silly cache add   type: 'range' }
76 silly addNamed sqlite3@>=2.1.19 <2.2.0
77 verbose addNamed ">=2.1.19 <2.2.0" is a valid semver range for sqlite3
78 silly addNameRange { name: 'sqlite3', range: '>=2.1.19 <2.2.0', hasData: false }
79 silly mapToRegistry name sqlite3
80 silly mapToRegistry using default registry
81 silly mapToRegistry registry https://registry.npmjs.org/
82 silly mapToRegistry uri https://registry.npmjs.org/sqlite3
83 verbose addNameRange registry:https://registry.npmjs.org/sqlite3 not in flight; fetching
84 verbose get https://registry.npmjs.org/sqlite3 not expired, no request
85 silly addNameRange number 2 { name: 'sqlite3', range: '>=2.1.19 <2.2.0', hasData: true }
86 silly addNameRange versions [ 'sqlite3',
86 silly addNameRange   [ '2.0.0',
86 silly addNameRange     '2.0.1',
86 silly addNameRange     '2.0.2',
86 silly addNameRange     '2.0.3',
86 silly addNameRange     '2.0.4',
86 silly addNameRange     '2.0.5',
86 silly addNameRange     '2.0.6',
86 silly addNameRange     '2.0.7',
86 silly addNameRange     '2.0.8',
86 silly addNameRange     '2.0.9',
86 silly addNameRange     '2.0.10',
86 silly addNameRange     '2.0.11',
86 silly addNameRange     '2.0.12',
86 silly addNameRange     '2.0.13',
86 silly addNameRange     '2.0.14',
86 silly addNameRange     '2.0.15',
86 silly addNameRange     '2.0.16',
86 silly addNameRange     '2.0.17',
86 silly addNameRange     '2.0.18',
86 silly addNameRange     '2.1.0',
86 silly addNameRange     '2.1.1',
86 silly addNameRange     '2.1.2',
86 silly addNameRange     '2.1.3',
86 silly addNameRange     '2.1.4',
86 silly addNameRange     '2.1.5',
86 silly addNameRange     '2.1.7',
86 silly addNameRange     '2.1.8',
86 silly addNameRange     '2.1.9',
86 silly addNameRange     '2.1.10',
86 silly addNameRange     '2.1.11',
86 silly addNameRange     '2.1.12',
86 silly addNameRange     '2.1.13',
86 silly addNameRange     '2.1.14',
86 silly addNameRange     '2.1.15',
86 silly addNameRange     '2.1.16',
86 silly addNameRange     '2.1.17',
86 silly addNameRange     '2.1.18',
86 silly addNameRange     '2.1.19',
86 silly addNameRange     '2.2.0',
86 silly addNameRange     '2.2.1',
86 silly addNameRange     '2.2.2',
86 silly addNameRange     '2.2.3',
86 silly addNameRange     '2.2.4',
86 silly addNameRange     '2.2.6',
86 silly addNameRange     '2.2.7',
86 silly addNameRange     '3.0.0',
86 silly addNameRange     '3.0.1',
86 silly addNameRange     '3.0.2',
86 silly addNameRange     '3.0.4',
86 silly addNameRange     '3.0.5',
86 silly addNameRange     '3.0.6',
86 silly addNameRange     '3.0.7',
86 silly addNameRange     '3.0.8',
86 silly addNameRange     '3.0.9',
86 silly addNameRange     '3.0.10',
86 silly addNameRange     '3.1.0' ] ]
87 silly addNamed [email protected]
88 verbose addNamed "2.1.19" is a plain semver version for sqlite3
89 silly cache afterAdd [email protected]
90 verbose afterAdd /Users/**/.npm/sqlite3/2.1.19/package/package.json not in flight; writing
91 verbose afterAdd /Users/**/.npm/sqlite3/2.1.19/package/package.json written
92 verbose addBundled extract /Users/**/.npm/sqlite3/2.1.19/package.tgz
93 verbose tar unpack /Users/**/.npm/sqlite3/2.1.19/package.tgz
94 verbose tar unpacking to /var/folders/2_/sxg7flh90x9btj99v57g4hkh0000gp/T/npm-42994-06345818/unpack-ba60e703799126aace617aa8de47750c
95 silly gentlyRm /var/folders/2_/sxg7flh90x9btj99v57g4hkh0000gp/T/npm-42994-06345818/unpack-ba60e703799126aace617aa8de47750c is being purged
96 verbose gentlyRm don't care about contents; nuking /var/folders/2_/sxg7flh90x9btj99v57g4hkh0000gp/T/npm-42994-06345818/unpack-ba60e703799126aace617aa8de47750c
97 silly gunzTarPerm modes [ '755', '644' ]
98 silly gunzTarPerm extractEntry package.json
99 silly gunzTarPerm extractEntry .npmignore
100 silly gunzTarPerm extractEntry README.md
101 silly gunzTarPerm extractEntry LICENSE
102 silly gunzTarPerm extractEntry sqlite3.js
103 silly gunzTarPerm extractEntry build.js
104 silly gunzTarPerm extractEntry examples/simple-chaining.js
105 silly gunzTarPerm extractEntry benchmark/insert.js
106 silly gunzTarPerm extractEntry benchmark/insert-transaction.sql
107 silly gunzTarPerm extractEntry build-util/crosswalk-semver-to-module.js
108 silly gunzTarPerm extractEntry build-util/tools.js
109 silly gunzTarPerm extractEntry build-util/remake.sh
110 silly gunzTarPerm extractEntry build-util/upload.sh
111 silly gunzTarPerm extractEntry .travis.yml
112 silly gunzTarPerm extractEntry configure
113 silly gunzTarPerm extractEntry deps/common-sqlite.gypi
114 silly gunzTarPerm extractEntry deps/extract.py
115 silly gunzTarPerm extractEntry deps/sqlite-autoconf-3071700.tar.gz
116 silly gunzTarPerm extractEntry deps/sqlite3.gyp
117 silly gunzTarPerm extractEntry binding.gyp
118 silly gunzTarPerm extractEntry lib/binary_name.js
119 silly gunzTarPerm extractEntry lib/index.js
120 silly gunzTarPerm extractEntry lib/sqlite3.js
121 silly gunzTarPerm extractEntry lib/trace.js
122 silly gunzTarPerm extractEntry Makefile
123 silly gunzTarPerm extractEntry CHANGELOG.md
124 silly gunzTarPerm extractEntry src/async.h
125 silly gunzTarPerm extractEntry src/database.cc
126 silly gunzTarPerm extractEntry src/database.h
127 silly gunzTarPerm extractEntry src/macros.h
128 silly gunzTarPerm extractEntry src/node_sqlite3.cc
129 silly gunzTarPerm extractEntry src/statement.cc
130 silly gunzTarPerm extractEntry src/statement.h
131 silly gunzTarPerm extractEntry src/threading.h
132 silly gunzTarPerm extractEntry test/affected.test.js
133 silly gunzTarPerm extractEntry test/fts-content.test.js
134 silly gunzTarPerm extractEntry test/issue-108.test.js
135 silly gunzTarPerm extractEntry test/map.test.js
136 silly gunzTarPerm extractEntry test/named_columns.test.js
137 silly gunzTarPerm extractEntry test/extension.test.js
138 silly gunzTarPerm extractEntry test/null_error.test.js
139 silly gunzTarPerm extractEntry test/open_close.test.js
140 silly gunzTarPerm extractEntry test/other_objects.test.js
141 silly gunzTarPerm extractEntry test/parallel_insert.test.js
142 silly gunzTarPerm extractEntry test/prepare.test.js
143 silly gunzTarPerm extractEntry test/exec.test.js
144 silly gunzTarPerm extractEntry test/profile.test.js
145 silly gunzTarPerm extractEntry test/each.test.js
146 silly gunzTarPerm extractEntry test/rerun.test.js
147 silly gunzTarPerm extractEntry test/database_fail.test.js
148 silly gunzTarPerm extractEntry test/scheduling.test.js
149 silly gunzTarPerm extractEntry test/constants.test.js
150 silly gunzTarPerm extractEntry test/serialization.test.js
151 silly gunzTarPerm extractEntry test/cache.test.js
152 silly gunzTarPerm extractEntry test/trace.test.js
153 silly gunzTarPerm extractEntry test/blob.test.js
154 silly gunzTarPerm extractEntry test/unicode.test.js
155 silly gunzTarPerm extractEntry test/named_params.test.js
156 silly gunzTarPerm extractEntry test/support/createdb.js
157 silly gunzTarPerm extractEntry test/support/helper.js
158 silly gunzTarPerm extractEntry test/support/elmo.png
159 silly gunzTarPerm extractEntry test/support/prepare.db
160 silly gunzTarPerm extractEntry test/support/script.sql
161 silly addBundled read tarball
162 silly cleanup remove extracted module
163 silly fetchNamedPackageData mkdirp
164 silly mapToRegistry name mkdirp
165 silly mapToRegistry using default registry
166 silly mapToRegistry registry https://registry.npmjs.org/
167 silly mapToRegistry uri https://registry.npmjs.org/mkdirp
168 silly fetchNamedPackageData tar.gz
169 silly mapToRegistry name tar.gz
170 silly mapToRegistry using default registry
171 silly mapToRegistry registry https://registry.npmjs.org/
172 silly mapToRegistry uri https://registry.npmjs.org/tar.gz
173 verbose request uri https://registry.npmjs.org/mkdirp
174 verbose request no auth needed
175 info attempt registry request try #1 at 11:05:49 AM
176 verbose etag "AX3EZVYG80BPU7C3KCWIPQE2C"
177 http request GET https://registry.npmjs.org/mkdirp
178 verbose request uri https://registry.npmjs.org/tar.gz
179 verbose request no auth needed
180 info attempt registry request try #1 at 11:05:49 AM
181 verbose etag "114BWYKA78I7S0K01FUHZ017B"
182 http request GET https://registry.npmjs.org/tar.gz
183 http 304 https://registry.npmjs.org/tar.gz
184 verbose headers { date: 'Mon, 19 Oct 2015 08:05:49 GMT',
184 verbose headers   via: '1.1 varnish',
184 verbose headers   'cache-control': 'max-age=60',
184 verbose headers   etag: '"114BWYKA78I7S0K01FUHZ017B"',
184 verbose headers   age: '28',
184 verbose headers   connection: 'keep-alive',
184 verbose headers   'x-served-by': 'cache-lhr6322-LHR',
184 verbose headers   'x-cache': 'HIT',
184 verbose headers   'x-cache-hits': '1',
184 verbose headers   'x-timer': 'S1445241949.794064,VS0,VE0',
184 verbose headers   vary: 'Accept' }
185 silly get cb [ 304,
185 silly get   { date: 'Mon, 19 Oct 2015 08:05:49 GMT',
185 silly get     via: '1.1 varnish',
185 silly get     'cache-control': 'max-age=60',
185 silly get     etag: '"114BWYKA78I7S0K01FUHZ017B"',
185 silly get     age: '28',
185 silly get     connection: 'keep-alive',
185 silly get     'x-served-by': 'cache-lhr6322-LHR',
185 silly get     'x-cache': 'HIT',
185 silly get     'x-cache-hits': '1',
185 silly get     'x-timer': 'S1445241949.794064,VS0,VE0',
185 silly get     vary: 'Accept' } ]
186 verbose etag https://registry.npmjs.org/tar.gz from cache
187 verbose get saving tar.gz to /Users/**/.npm/registry.npmjs.org/tar.gz/.cache.json
188 silly resolveWithNewModule [email protected] checking installable status
189 silly cache add args [ 'tar.gz@~0.1.1', null ]
190 verbose cache add spec tar.gz@~0.1.1
191 silly cache add parsed spec Result {
191 silly cache add   raw: 'tar.gz@~0.1.1',
191 silly cache add   scope: null,
191 silly cache add   name: 'tar.gz',
191 silly cache add   rawSpec: '~0.1.1',
191 silly cache add   spec: '>=0.1.1 <0.2.0',
191 silly cache add   type: 'range' }
192 silly addNamed tar.gz@>=0.1.1 <0.2.0
193 verbose addNamed ">=0.1.1 <0.2.0" is a valid semver range for tar.gz
194 silly addNameRange { name: 'tar.gz', range: '>=0.1.1 <0.2.0', hasData: false }
195 silly mapToRegistry name tar.gz
196 silly mapToRegistry using default registry
197 silly mapToRegistry registry https://registry.npmjs.org/
198 silly mapToRegistry uri https://registry.npmjs.org/tar.gz
199 verbose addNameRange registry:https://registry.npmjs.org/tar.gz not in flight; fetching
200 http 304 https://registry.npmjs.org/mkdirp
201 verbose headers { date: 'Mon, 19 Oct 2015 08:05:49 GMT',
201 verbose headers   via: '1.1 varnish',
201 verbose headers   'cache-control': 'max-age=60',
201 verbose headers   etag: '"AX3EZVYG80BPU7C3KCWIPQE2C"',
201 verbose headers   age: '24',
201 verbose headers   connection: 'keep-alive',
201 verbose headers   'x-served-by': 'cache-lhr6326-LHR',
201 verbose headers   'x-cache': 'HIT',
201 verbose headers   'x-cache-hits': '5',
201 verbose headers   'x-timer': 'S1445241949.799637,VS0,VE0',
201 verbose headers   vary: 'Accept' }
202 silly get cb [ 304,
202 silly get   { date: 'Mon, 19 Oct 2015 08:05:49 GMT',
202 silly get     via: '1.1 varnish',
202 silly get     'cache-control': 'max-age=60',
202 silly get     etag: '"AX3EZVYG80BPU7C3KCWIPQE2C"',
202 silly get     age: '24',
202 silly get     connection: 'keep-alive',
202 silly get     'x-served-by': 'cache-lhr6326-LHR',
202 silly get     'x-cache': 'HIT',
202 silly get     'x-cache-hits': '5',
202 silly get     'x-timer': 'S1445241949.799637,VS0,VE0',
202 silly get     vary: 'Accept' } ]
203 verbose etag https://registry.npmjs.org/mkdirp from cache
204 verbose get saving mkdirp to /Users/**/.npm/registry.npmjs.org/mkdirp/.cache.json
205 verbose get https://registry.npmjs.org/tar.gz not expired, no request
206 silly addNameRange number 2 { name: 'tar.gz', range: '>=0.1.1 <0.2.0', hasData: true }
207 silly addNameRange versions [ 'tar.gz',
207 silly addNameRange   [ '0.0.1', '0.1.0', '0.1.1', '1.0.0', '1.0.1', '1.0.2' ] ]
208 silly addNamed [email protected]
209 verbose addNamed "0.1.1" is a plain semver version for tar.gz
210 silly cache afterAdd [email protected]
211 verbose afterAdd /Users/**/.npm/tar.gz/0.1.1/package/package.json not in flight; writing
212 silly resolveWithNewModule [email protected] checking installable status
213 silly cache add args [ 'mkdirp@~0.3.5', null ]
214 verbose cache add spec mkdirp@~0.3.5
215 silly cache add parsed spec Result {
215 silly cache add   raw: 'mkdirp@~0.3.5',
215 silly cache add   scope: null,
215 silly cache add   name: 'mkdirp',
215 silly cache add   rawSpec: '~0.3.5',
215 silly cache add   spec: '>=0.3.5 <0.4.0',
215 silly cache add   type: 'range' }
216 silly addNamed mkdirp@>=0.3.5 <0.4.0
217 verbose addNamed ">=0.3.5 <0.4.0" is a valid semver range for mkdirp
218 silly addNameRange { name: 'mkdirp', range: '>=0.3.5 <0.4.0', hasData: false }
219 silly mapToRegistry name mkdirp
220 silly mapToRegistry using default registry
221 silly mapToRegistry registry https://registry.npmjs.org/
222 silly mapToRegistry uri https://registry.npmjs.org/mkdirp
223 verbose addNameRange registry:https://registry.npmjs.org/mkdirp not in flight; fetching
224 verbose get https://registry.npmjs.org/mkdirp not expired, no request
225 silly addNameRange number 2 { name: 'mkdirp', range: '>=0.3.5 <0.4.0', hasData: true }
226 silly addNameRange versions [ 'mkdirp',
226 silly addNameRange   [ '0.0.1',
226 silly addNameRange     '0.0.2',
226 silly addNameRange     '0.0.3',
226 silly addNameRange     '0.0.4',
226 silly addNameRange     '0.0.5',
226 silly addNameRange     '0.0.6',
226 silly addNameRange     '0.0.7',
226 silly addNameRange     '0.1.0',
226 silly addNameRange     '0.2.0',
226 silly addNameRange     '0.2.1',
226 silly addNameRange     '0.2.2',
226 silly addNameRange     '0.3.0',
226 silly addNameRange     '0.3.1',
226 silly addNameRange     '0.3.2',
226 silly addNameRange     '0.3.3',
226 silly addNameRange     '0.3.4',
226 silly addNameRange     '0.3.5',
226 silly addNameRange     '0.4.0',
226 silly addNameRange     '0.4.1',
226 silly addNameRange     '0.4.2',
226 silly addNameRange     '0.5.0',
226 silly addNameRange     '0.5.1' ] ]
227 silly addNamed [email protected]
228 verbose addNamed "0.3.5" is a plain semver version for mkdirp
229 verbose afterAdd /Users/**/.npm/tar.gz/0.1.1/package/package.json written
230 silly cache afterAdd [email protected]
231 verbose afterAdd /Users/**/.npm/mkdirp/0.3.5/package/package.json not in flight; writing
232 verbose afterAdd /Users/**/.npm/mkdirp/0.3.5/package/package.json written
233 silly fetchNamedPackageData fstream
234 silly mapToRegistry name fstream
235 silly mapToRegistry using default registry
236 silly mapToRegistry registry https://registry.npmjs.org/
237 silly mapToRegistry uri https://registry.npmjs.org/fstream
238 silly fetchNamedPackageData tar
239 silly mapToRegistry name tar
240 silly mapToRegistry using default registry
241 silly mapToRegistry registry https://registry.npmjs.org/
242 silly mapToRegistry uri https://registry.npmjs.org/tar
243 silly fetchNamedPackageData commander
244 silly mapToRegistry name commander
245 silly mapToRegistry using default registry
246 silly mapToRegistry registry https://registry.npmjs.org/
247 silly mapToRegistry uri https://registry.npmjs.org/commander
248 verbose request uri https://registry.npmjs.org/fstream
249 verbose request no auth needed
250 info attempt registry request try #1 at 11:05:49 AM
251 verbose etag "17H59Q9GBES57PGP9VD5JRIIX"
252 http request GET https://registry.npmjs.org/fstream
253 verbose request uri https://registry.npmjs.org/tar
254 verbose request no auth needed
255 info attempt registry request try #1 at 11:05:49 AM
256 verbose etag "8XKYJQ46I2UV2OIF3OHSBZ9CI"
257 http request GET https://registry.npmjs.org/tar
258 verbose request uri https://registry.npmjs.org/commander
259 verbose request no auth needed
260 info attempt registry request try #1 at 11:05:49 AM
261 verbose etag "888R04V6RKVY7ZOO2CDAXQPML"
262 http request GET https://registry.npmjs.org/commander
263 http 304 https://registry.npmjs.org/fstream
264 verbose headers { date: 'Mon, 19 Oct 2015 08:05:50 GMT',
264 verbose headers   via: '1.1 varnish',
264 verbose headers   'cache-control': 'max-age=60',
264 verbose headers   etag: '"17H59Q9GBES57PGP9VD5JRIIX"',
264 verbose headers   age: '6',
264 verbose headers   connection: 'keep-alive',
264 verbose headers   'x-served-by': 'cache-lhr6320-LHR',
264 verbose headers   'x-cache': 'HIT',
264 verbose headers   'x-cache-hits': '1',
264 verbose headers   'x-timer': 'S1445241950.055106,VS0,VE1',
264 verbose headers   vary: 'Accept' }
265 silly get cb [ 304,
265 silly get   { date: 'Mon, 19 Oct 2015 08:05:50 GMT',
265 silly get     via: '1.1 varnish',
265 silly get     'cache-control': 'max-age=60',
265 silly get     etag: '"17H59Q9GBES57PGP9VD5JRIIX"',
265 silly get     age: '6',
265 silly get     connection: 'keep-alive',
265 silly get     'x-served-by': 'cache-lhr6320-LHR',
265 silly get     'x-cache': 'HIT',
265 silly get     'x-cache-hits': '1',
265 silly get     'x-timer': 'S1445241950.055106,VS0,VE1',
265 silly get     vary: 'Accept' } ]
266 verbose etag https://registry.npmjs.org/fstream from cache
267 verbose get saving fstream to /Users/**/.npm/registry.npmjs.org/fstream/.cache.json
268 http 304 https://registry.npmjs.org/commander
269 verbose headers { date: 'Mon, 19 Oct 2015 08:05:50 GMT',
269 verbose headers   via: '1.1 varnish',
269 verbose headers   'cache-control': 'max-age=60',
269 verbose headers   etag: '"888R04V6RKVY7ZOO2CDAXQPML"',
269 verbose headers   age: '21',
269 verbose headers   connection: 'keep-alive',
269 verbose headers   'x-served-by': 'cache-lhr6320-LHR',
269 verbose headers   'x-cache': 'HIT',
269 verbose headers   'x-cache-hits': '201',
269 verbose headers   'x-timer': 'S1445241950.057570,VS0,VE0',
269 verbose headers   vary: 'Accept' }
270 silly get cb [ 304,
270 silly get   { date: 'Mon, 19 Oct 2015 08:05:50 GMT',
270 silly get     via: '1.1 varnish',
270 silly get     'cache-control': 'max-age=60',
270 silly get     etag: '"888R04V6RKVY7ZOO2CDAXQPML"',
270 silly get     age: '21',
270 silly get     connection: 'keep-alive',
270 silly get     'x-served-by': 'cache-lhr6320-LHR',
270 silly get     'x-cache': 'HIT',
270 silly get     'x-cache-hits': '201',
270 silly get     'x-timer': 'S1445241950.057570,VS0,VE0',
270 silly get     vary: 'Accept' } ]
271 verbose etag https://registry.npmjs.org/commander from cache
272 verbose get saving commander to /Users/**/.npm/registry.npmjs.org/commander/.cache.json
273 silly resolveWithNewModule [email protected] checking installable status
274 silly cache add args [ '[email protected]', null ]
275 verbose cache add spec [email protected]
276 silly cache add parsed spec Result {
276 silly cache add   raw: '[email protected]',
276 silly cache add   scope: null,
276 silly cache add   name: 'fstream',
276 silly cache add   rawSpec: '0.1.x',
276 silly cache add   spec: '>=0.1.0 <0.2.0',
276 silly cache add   type: 'range' }
277 silly addNamed fstream@>=0.1.0 <0.2.0
278 verbose addNamed ">=0.1.0 <0.2.0" is a valid semver range for fstream
279 silly addNameRange { name: 'fstream', range: '>=0.1.0 <0.2.0', hasData: false }
280 silly mapToRegistry name fstream
281 silly mapToRegistry using default registry
282 silly mapToRegistry registry https://registry.npmjs.org/
283 silly mapToRegistry uri https://registry.npmjs.org/fstream
284 verbose addNameRange registry:https://registry.npmjs.org/fstream not in flight; fetching
285 silly resolveWithNewModule [email protected] checking installable status
286 silly cache add args [ '[email protected]', null ]
287 verbose cache add spec [email protected]
288 silly cache add parsed spec Result {
288 silly cache add   raw: '[email protected]',
288 silly cache add   scope: null,
288 silly cache add   name: 'commander',
288 silly cache add   rawSpec: '1.1.x',
288 silly cache add   spec: '>=1.1.0 <1.2.0',
288 silly cache add   type: 'range' }
289 silly addNamed commander@>=1.1.0 <1.2.0
290 verbose addNamed ">=1.1.0 <1.2.0" is a valid semver range for commander
291 silly addNameRange { name: 'commander', range: '>=1.1.0 <1.2.0', hasData: false }
292 silly mapToRegistry name commander
293 silly mapToRegistry using default registry
294 silly mapToRegistry registry https://registry.npmjs.org/
295 silly mapToRegistry uri https://registry.npmjs.org/commander
296 verbose addNameRange registry:https://registry.npmjs.org/commander not in flight; fetching
297 verbose get https://registry.npmjs.org/fstream not expired, no request
298 silly addNameRange number 2 { name: 'fstream', range: '>=0.1.0 <0.2.0', hasData: true }
299 silly addNameRange versions [ 'fstream',
299 silly addNameRange   [ '0.0.0',
299 silly addNameRange     '0.0.1',
299 silly addNameRange     '0.1.0',
299 silly addNameRange     '0.1.1',
299 silly addNameRange     '0.1.2',
299 silly addNameRange     '0.1.3',
299 silly addNameRange     '0.1.5',
299 silly addNameRange     '0.1.6',
299 silly addNameRange     '0.1.7',
299 silly addNameRange     '0.1.8',
299 silly addNameRange     '0.1.9',
299 silly addNameRange     '0.1.10',
299 silly addNameRange     '0.1.11',
299 silly addNameRange     '0.1.12',
299 silly addNameRange     '0.1.13',
299 silly addNameRange     '0.1.14',
299 silly addNameRange     '0.1.15',
299 silly addNameRange     '0.1.16',
299 silly addNameRange     '0.1.17',
299 silly addNameRange     '0.1.18',
299 silly addNameRange     '0.1.19',
299 silly addNameRange     '0.1.20',
299 silly addNameRange     '0.1.21',
299 silly addNameRange     '0.1.22',
299 silly addNameRange     '0.1.23',
299 silly addNameRange     '0.1.24',
299 silly addNameRange     '0.1.25',
299 silly addNameRange     '0.1.26',
299 silly addNameRange     '0.1.27',
299 silly addNameRange     '0.1.28',
299 silly addNameRange     '0.1.29',
299 silly addNameRange     '0.1.30',
299 silly addNameRange     '1.0.0',
299 silly addNameRange     '1.0.1',
299 silly addNameRange     '0.1.31',
299 silly addNameRange     '1.0.2',
299 silly addNameRange     '1.0.3',
299 silly addNameRange     '1.0.4',
299 silly addNameRange     '1.0.5',
299 silly addNameRange     '1.0.6',
299 silly addNameRange     '1.0.7',
299 silly addNameRange     '1.0.8' ] ]
300 silly addNamed [email protected]
301 verbose addNamed "0.1.31" is a plain semver version for fstream
302 verbose get https://registry.npmjs.org/commander not expired, no request
303 silly addNameRange number 2 { name: 'commander', range: '>=1.1.0 <1.2.0', hasData: true }
304 silly addNameRange versions [ 'commander',
304 silly addNameRange   [ '0.0.1',
304 silly addNameRange     '0.0.3',
304 silly addNameRange     '0.0.4',
304 silly addNameRange     '0.0.5',
304 silly addNameRange     '0.1.0',
304 silly addNameRange     '0.2.0',
304 silly addNameRange     '0.2.1',
304 silly addNameRange     '0.3.0',
304 silly addNameRange     '0.3.1',
304 silly addNameRange     '0.3.2',
304 silly addNameRange     '0.3.3',
304 silly addNameRange     '0.4.0',
304 silly addNameRange     '0.4.1',
304 silly addNameRange     '0.4.2',
304 silly addNameRange     '0.4.3',
304 silly addNameRange     '0.5.0',
304 silly addNameRange     '0.5.1',
304 silly addNameRange     '0.6.0',
304 silly addNameRange     '0.6.1',
304 silly addNameRange     '0.5.2',
304 silly addNameRange     '1.0.0',
304 silly addNameRange     '1.0.1',
304 silly addNameRange     '1.0.2',
304 silly addNameRange     '1.0.3',
304 silly addNameRange     '1.0.4',
304 silly addNameRange     '1.0.5',
304 silly addNameRange     '1.1.0',
304 silly addNameRange     '1.1.1',
304 silly addNameRange     '1.2.0',
304 silly addNameRange     '1.3.0',
304 silly addNameRange     '1.3.1',
304 silly addNameRange     '1.3.2',
304 silly addNameRange     '2.0.0',
304 silly addNameRange     '2.1.0',
304 silly addNameRange     '2.2.0',
304 silly addNameRange     '2.3.0',
304 silly addNameRange     '2.4.0',
304 silly addNameRange     '2.5.0',
304 silly addNameRange     '2.5.1',
304 silly addNameRange     '2.6.0',
304 silly addNameRange     '2.7.0',
304 silly addNameRange     '2.7.1',
304 silly addNameRange     '2.8.0',
304 silly addNameRange     '2.8.1',
304 silly addNameRange     '2.9.0' ] ]
305 silly addNamed [email protected]
306 verbose addNamed "1.1.1" is a plain semver version for commander
307 silly cache afterAdd [email protected]
308 verbose afterAdd /Users/**/.npm/fstream/0.1.31/package/package.json not in flight; writing
309 silly cache afterAdd [email protected]
310 verbose afterAdd /Users/**/.npm/commander/1.1.1/package/package.json not in flight; writing
311 verbose afterAdd /Users/**/.npm/fstream/0.1.31/package/package.json written
312 verbose afterAdd /Users/**/.npm/commander/1.1.1/package/package.json written
313 http 304 https://registry.npmjs.org/tar
314 verbose headers { date: 'Mon, 19 Oct 2015 08:05:50 GMT',
314 verbose headers   via: '1.1 varnish',
314 verbose headers   'cache-control': 'max-age=60',
314 verbose headers   etag: '"8XKYJQ46I2UV2OIF3OHSBZ9CI"',
314 verbose headers   age: '0',
314 verbose headers   connection: 'keep-alive',
314 verbose headers   'x-served-by': 'cache-lhr6325-LHR',
314 verbose headers   'x-cache': 'HIT',
314 verbose headers   'x-cache-hits': '1',
314 verbose headers   'x-timer': 'S1445241950.059016,VS0,VE90',
314 verbose headers   vary: 'Accept' }
315 silly get cb [ 304,
315 silly get   { date: 'Mon, 19 Oct 2015 08:05:50 GMT',
315 silly get     via: '1.1 varnish',
315 silly get     'cache-control': 'max-age=60',
315 silly get     etag: '"8XKYJQ46I2UV2OIF3OHSBZ9CI"',
315 silly get     age: '0',
315 silly get     connection: 'keep-alive',
315 silly get     'x-served-by': 'cache-lhr6325-LHR',
315 silly get     'x-cache': 'HIT',
315 silly get     'x-cache-hits': '1',
315 silly get     'x-timer': 'S1445241950.059016,VS0,VE90',
315 silly get     vary: 'Accept' } ]
316 verbose etag https://registry.npmjs.org/tar from cache
317 verbose get saving tar to /Users/**/.npm/registry.npmjs.org/tar/.cache.json
318 silly resolveWithNewModule [email protected] checking installable status
319 silly cache add args [ '[email protected]', null ]
320 verbose cache add spec [email protected]
321 silly cache add parsed spec Result {
321 silly cache add   raw: '[email protected]',
321 silly cache add   scope: null,
321 silly cache add   name: 'tar',
321 silly cache add   rawSpec: '0.1.x',
321 silly cache add   spec: '>=0.1.0 <0.2.0',
321 silly cache add   type: 'range' }
322 silly addNamed tar@>=0.1.0 <0.2.0
323 verbose addNamed ">=0.1.0 <0.2.0" is a valid semver range for tar
324 silly addNameRange { name: 'tar', range: '>=0.1.0 <0.2.0', hasData: false }
325 silly mapToRegistry name tar
326 silly mapToRegistry using default registry
327 silly mapToRegistry registry https://registry.npmjs.org/
328 silly mapToRegistry uri https://registry.npmjs.org/tar
329 verbose addNameRange registry:https://registry.npmjs.org/tar not in flight; fetching
330 verbose get https://registry.npmjs.org/tar not expired, no request
331 silly addNameRange number 2 { name: 'tar', range: '>=0.1.0 <0.2.0', hasData: true }
332 silly addNameRange versions [ 'tar',
332 silly addNameRange   [ '0.0.1',
332 silly addNameRange     '0.1.0',
332 silly addNameRange     '0.1.2',
332 silly addNameRange     '0.1.3',
332 silly addNameRange     '0.1.4',
332 silly addNameRange     '0.1.5',
332 silly addNameRange     '0.1.6',
332 silly addNameRange     '0.1.7',
332 silly addNameRange     '0.1.8',
332 silly addNameRange     '0.1.9',
332 silly addNameRange     '0.1.10',
332 silly addNameRange     '0.1.11',
332 silly addNameRange     '0.1.12',
332 silly addNameRange     '0.1.13',
332 silly addNameRange     '0.1.14',
332 silly addNameRange     '0.1.15',
332 silly addNameRange     '0.1.16',
332 silly addNameRange     '0.1.17',
332 silly addNameRange     '0.1.18',
332 silly addNameRange     '0.1.19',
332 silly addNameRange     '0.1.20',
332 silly addNameRange     '1.0.0',
332 silly addNameRange     '1.0.1',
332 silly addNameRange     '1.0.2',
332 silly addNameRange     '1.0.3',
332 silly addNameRange     '2.0.0',
332 silly addNameRange     '2.0.1',
332 silly addNameRange     '2.1.0',
332 silly addNameRange     '2.1.1',
332 silly addNameRange     '2.2.0',
332 silly addNameRange     '2.2.1' ] ]
333 silly addNamed [email protected]
334 verbose addNamed "0.1.20" is a plain semver version for tar
335 silly cache afterAdd [email protected]
336 verbose afterAdd /Users/**/.npm/tar/0.1.20/package/package.json not in flight; writing
337 verbose afterAdd /Users/**/.npm/tar/0.1.20/package/package.json written
338 silly fetchNamedPackageData keypress
339 silly mapToRegistry name keypress
340 silly mapToRegistry using default registry
341 silly mapToRegistry registry https://registry.npmjs.org/
342 silly mapToRegistry uri https://registry.npmjs.org/keypress
343 verbose request uri https://registry.npmjs.org/keypress
344 verbose request no auth needed
345 info attempt registry request try #1 at 11:05:50 AM
346 verbose etag "ER3AVGD62GK1JONYE2XCMBVCO"
347 http request GET https://registry.npmjs.org/keypress
348 http 304 https://registry.npmjs.org/keypress
349 verbose headers { date: 'Mon, 19 Oct 2015 08:05:50 GMT',
349 verbose headers   via: '1.1 varnish',
349 verbose headers   'cache-control': 'max-age=60',
349 verbose headers   etag: '"ER3AVGD62GK1JONYE2XCMBVCO"',
349 verbose headers   age: '10',
349 verbose headers   connection: 'keep-alive',
349 verbose headers   'x-served-by': 'cache-lhr6326-LHR',
349 verbose headers   'x-cache': 'HIT',
349 verbose headers   'x-cache-hits': '1',
349 verbose headers   'x-timer': 'S1445241950.392381,VS0,VE1',
349 verbose headers   vary: 'Accept' }
350 silly get cb [ 304,
350 silly get   { date: 'Mon, 19 Oct 2015 08:05:50 GMT',
350 silly get     via: '1.1 varnish',
350 silly get     'cache-control': 'max-age=60',
350 silly get     etag: '"ER3AVGD62GK1JONYE2XCMBVCO"',
350 silly get     age: '10',
350 silly get     connection: 'keep-alive',
350 silly get     'x-served-by': 'cache-lhr6326-LHR',
350 silly get     'x-cache': 'HIT',
350 silly get     'x-cache-hits': '1',
350 silly get     'x-timer': 'S1445241950.392381,VS0,VE1',
350 silly get     vary: 'Accept' } ]
351 verbose etag https://registry.npmjs.org/keypress from cache
352 verbose get saving keypress to /Users/**/.npm/registry.npmjs.org/keypress/.cache.json
353 silly resolveWithNewModule [email protected] checking installable status
354 silly cache add args [ '[email protected]', null ]
355 verbose cache add spec [email protected]
356 silly cache add parsed spec Result {
356 silly cache add   raw: '[email protected]',
356 silly cache add   scope: null,
356 silly cache add   name: 'keypress',
356 silly cache add   rawSpec: '0.1.x',
356 silly cache add   spec: '>=0.1.0 <0.2.0',
356 silly cache add   type: 'range' }
357 silly addNamed keypress@>=0.1.0 <0.2.0
358 verbose addNamed ">=0.1.0 <0.2.0" is a valid semver range for keypress
359 silly addNameRange { name: 'keypress', range: '>=0.1.0 <0.2.0', hasData: false }
360 silly mapToRegistry name keypress
361 silly mapToRegistry using default registry
362 silly mapToRegistry registry https://registry.npmjs.org/
363 silly mapToRegistry uri https://registry.npmjs.org/keypress
364 verbose addNameRange registry:https://registry.npmjs.org/keypress not in flight; fetching
365 verbose get https://registry.npmjs.org/keypress not expired, no request
366 silly addNameRange number 2 { name: 'keypress', range: '>=0.1.0 <0.2.0', hasData: true }
367 silly addNameRange versions [ 'keypress', [ '0.0.1', '0.0.2', '0.1.0', '0.2.0', '0.2.1' ] ]
368 silly addNamed [email protected]
369 verbose addNamed "0.1.0" is a plain semver version for keypress
370 silly cache afterAdd [email protected]
371 verbose afterAdd /Users/**/.npm/keypress/0.1.0/package/package.json not in flight; writing
372 verbose afterAdd /Users/**/.npm/keypress/0.1.0/package/package.json written
373 silly fetchNamedPackageData graceful-fs
374 silly mapToRegistry name graceful-fs
375 silly mapToRegistry using default registry
376 silly mapToRegistry registry https://registry.npmjs.org/
377 silly mapToRegistry uri https://registry.npmjs.org/graceful-fs
378 silly fetchNamedPackageData mkdirp
379 silly mapToRegistry name mkdirp
380 silly mapToRegistry using default registry
381 silly mapToRegistry registry https://registry.npmjs.org/
382 silly mapToRegistry uri https://registry.npmjs.org/mkdirp
383 silly resolveWithNewModule [email protected] checking installable status
384 silly cache add args [ '[email protected]', null ]
385 verbose cache add spec [email protected]
386 silly fetchNamedPackageData rimraf
387 silly mapToRegistry name rimraf
388 silly mapToRegistry using default registry
389 silly mapToRegistry registry https://registry.npmjs.org/
390 silly mapToRegistry uri https://registry.npmjs.org/rimraf
391 silly cache add parsed spec Result {
391 silly cache add   raw: '[email protected]',
391 silly cache add   scope: null,
391 silly cache add   name: 'mkdirp',
391 silly cache add   rawSpec: '0.5',
391 silly cache add   spec: '>=0.5.0 <0.6.0',
391 silly cache add   type: 'range' }
392 silly addNamed mkdirp@>=0.5.0 <0.6.0
393 verbose addNamed ">=0.5.0 <0.6.0" is a valid semver range for mkdirp
394 silly addNameRange { name: 'mkdirp', range: '>=0.5.0 <0.6.0', hasData: false }
395 silly mapToRegistry name mkdirp
396 silly mapToRegistry using default registry
397 silly mapToRegistry registry https://registry.npmjs.org/
398 silly mapToRegistry uri https://registry.npmjs.org/mkdirp
399 verbose addNameRange registry:https://registry.npmjs.org/mkdirp not in flight; fetching
400 verbose request uri https://registry.npmjs.org/graceful-fs
401 verbose request no auth needed
402 info attempt registry request try #1 at 11:05:50 AM
403 verbose etag "6A8OIHSAUDCCUMW7MWX3L6A9C"
404 http request GET https://registry.npmjs.org/graceful-fs
405 verbose request uri https://registry.npmjs.org/rimraf
406 verbose request no auth needed
407 info attempt registry request try #1 at 11:05:50 AM
408 verbose etag "7K1QAFI50HA61LPOTSAM1E14W"
409 http request GET https://registry.npmjs.org/rimraf
410 verbose get https://registry.npmjs.org/mkdirp not expired, no request
411 silly addNameRange number 2 { name: 'mkdirp', range: '>=0.5.0 <0.6.0', hasData: true }
412 silly addNameRange versions [ 'mkdirp',
412 silly addNameRange   [ '0.0.1',
412 silly addNameRange     '0.0.2',
412 silly addNameRange     '0.0.3',
412 silly addNameRange     '0.0.4',
412 silly addNameRange     '0.0.5',
412 silly addNameRange     '0.0.6',
412 silly addNameRange     '0.0.7',
412 silly addNameRange     '0.1.0',
412 silly addNameRange     '0.2.0',
412 silly addNameRange     '0.2.1',
412 silly addNameRange     '0.2.2',
412 silly addNameRange     '0.3.0',
412 silly addNameRange     '0.3.1',
412 silly addNameRange     '0.3.2',
412 silly addNameRange     '0.3.3',
412 silly addNameRange     '0.3.4',
412 silly addNameRange     '0.3.5',
412 silly addNameRange     '0.4.0',
412 silly addNameRange     '0.4.1',
412 silly addNameRange     '0.4.2',
412 silly addNameRange     '0.5.0',
412 silly addNameRange     '0.5.1' ] ]
413 silly addNamed [email protected]
414 verbose addNamed "0.5.1" is a plain semver version for mkdirp
415 silly cache afterAdd [email protected]
416 verbose afterAdd /Users/**/.npm/mkdirp/0.5.1/package/package.json not in flight; writing
417 verbose afterAdd /Users/**/.npm/mkdirp/0.5.1/package/package.json written
418 http 304 https://registry.npmjs.org/graceful-fs
419 verbose headers { date: 'Mon, 19 Oct 2015 08:05:50 GMT',
419 verbose headers   via: '1.1 varnish',
419 verbose headers   'cache-control': 'max-age=60',
419 verbose headers   etag: '"6A8OIHSAUDCCUMW7MWX3L6A9C"',
419 verbose headers   age: '54',
419 verbose headers   connection: 'keep-alive',
419 verbose headers   'x-served-by': 'cache-lhr6322-LHR',
419 verbose headers   'x-cache': 'HIT',
419 verbose headers   'x-cache-hits': '5',
419 verbose headers   'x-timer': 'S1445241950.684707,VS0,VE0',
419 verbose headers   vary: 'Accept' }
420 silly get cb [ 304,
420 silly get   { date: 'Mon, 19 Oct 2015 08:05:50 GMT',
420 silly get     via: '1.1 varnish',
420 silly get     'cache-control': 'max-age=60',
420 silly get     etag: '"6A8OIHSAUDCCUMW7MWX3L6A9C"',
420 silly get     age: '54',
420 silly get     connection: 'keep-alive',
420 silly get     'x-served-by': 'cache-lhr6322-LHR',
420 silly get     'x-cache': 'HIT',
420 silly get     'x-cache-hits': '5',
420 silly get     'x-timer': 'S1445241950.684707,VS0,VE0',
420 silly get     vary: 'Accept' } ]
421 verbose etag https://registry.npmjs.org/graceful-fs from cache
422 verbose get saving graceful-fs to /Users/**/.npm/registry.npmjs.org/graceful-fs/.cache.json
423 silly resolveWithNewModule [email protected] checking installable status
424 silly cache add args [ 'graceful-fs@~3.0.2', null ]
425 verbose cache add spec graceful-fs@~3.0.2
426 silly cache add parsed spec Result {
426 silly cache add   raw: 'graceful-fs@~3.0.2',
426 silly cache add   scope: null,
426 silly cache add   name: 'graceful-fs',
426 silly cache add   rawSpec: '~3.0.2',
426 silly cache add   spec: '>=3.0.2 <3.1.0',
426 silly cache add   type: 'range' }
427 silly addNamed graceful-fs@>=3.0.2 <3.1.0
428 verbose addNamed ">=3.0.2 <3.1.0" is a valid semver range for graceful-fs
429 silly addNameRange { name: 'graceful-fs', range: '>=3.0.2 <3.1.0', hasData: false }
430 silly mapToRegistry name graceful-fs
431 silly mapToRegistry using default registry
432 silly mapToRegistry registry https://registry.npmjs.org/
433 silly mapToRegistry uri https://registry.npmjs.org/graceful-fs
434 verbose addNameRange registry:https://registry.npmjs.org/graceful-fs not in flight; fetching
435 verbose get https://registry.npmjs.org/graceful-fs not expired, no request
436 silly addNameRange number 2 { name: 'graceful-fs', range: '>=3.0.2 <3.1.0', hasData: true }
437 silly addNameRange versions [ 'graceful-fs',
437 silly addNameRange   [ '1.0.0',
437 silly addNameRange     '1.0.1',
437 silly addNameRange     '1.0.2',
437 silly addNameRange     '1.1.0',
437 silly addNameRange     '1.1.1',
437 silly addNameRange     '1.1.2',
437 silly addNameRange     '1.1.3',
437 silly addNameRange     '1.1.4',
437 silly addNameRange     '1.1.5',
437 silly addNameRange     '1.1.6',
437 silly addNameRange     '1.1.7',
437 silly addNameRange     '1.1.8',
437 silly addNameRange     '1.1.9',
437 silly addNameRange     '1.1.10',
437 silly addNameRange     '1.1.11',
437 silly addNameRange     '1.1.12',
437 silly addNameRange     '1.1.13',
437 silly addNameRange     '1.1.14',
437 silly addNameRange     '1.2.0',
437 silly addNameRange     '1.2.1',
437 silly addNameRange     '1.2.2',
437 silly addNameRange     '1.2.3',
437 silly addNameRange     '2.0.0',
437 silly addNameRange     '2.0.1',
437 silly addNameRange     '2.0.2',
437 silly addNameRange     '2.0.3',
437 silly addNameRange     '3.0.0',
437 silly addNameRange     '3.0.1',
437 silly addNameRange     '3.0.2',
437 silly addNameRange     '3.0.3',
437 silly addNameRange     '3.0.4',
437 silly addNameRange     '3.0.5',
437 silly addNameRange     '3.0.6',
437 silly addNameRange     '3.0.7',
437 silly addNameRange     '3.0.8',
437 silly addNameRange     '4.1.0',
437 silly addNameRange     '4.1.1',
437 silly addNameRange     '4.1.2' ] ]
438 silly addNamed [email protected]
439 verbose addNamed "3.0.8" is a plain semver version for graceful-fs
440 http 304 https://registry.npmjs.org/rimraf
441 verbose headers { date: 'Mon, 19 Oct 2015 08:05:50 GMT',
441 verbose headers   via: '1.1 varnish',
441 verbose headers   'cache-control': 'max-age=60',
441 verbose headers   etag: '"7K1QAFI50HA61LPOTSAM1E14W"',
441 verbose headers   age: '56',
441 verbose headers   connection: 'keep-alive',
441 verbose headers   'x-served-by': 'cache-lhr6322-LHR',
441 verbose headers   'x-cache': 'HIT',
441 verbose headers   'x-cache-hits': '5',
441 verbose headers   'x-timer': 'S1445241950.692644,VS0,VE0',
441 verbose headers   vary: 'Accept' }
442 silly get cb [ 304,
442 silly get   { date: 'Mon, 19 Oct 2015 08:05:50 GMT',
442 silly get     via: '1.1 varnish',
442 silly get     'cache-control': 'max-age=60',
442 silly get     etag: '"7K1QAFI50HA61LPOTSAM1E14W"',
442 silly get     age: '56',
442 silly get     connection: 'keep-alive',
442 silly get     'x-served-by': 'cache-lhr6322-LHR',
442 silly get     'x-cache': 'HIT',
442 silly get     'x-cache-hits': '5',
442 silly get     'x-timer': 'S1445241950.692644,VS0,VE0',
442 silly get     vary: 'Accept' } ]
443 verbose etag https://registry.npmjs.org/rimraf from cache
444 verbose get saving rimraf to /Users/**/.npm/registry.npmjs.org/rimraf/.cache.json
445 silly cache afterAdd [email protected]
446 verbose afterAdd /Users/**/.npm/graceful-fs/3.0.8/package/package.json not in flight; writing
447 silly resolveWithNewModule [email protected] checking installable status
448 silly cache add args [ 'rimraf@2', null ]
449 verbose cache add spec rimraf@2
450 silly cache add parsed spec Result {
450 silly cache add   raw: 'rimraf@2',
450 silly cache add   scope: null,
450 silly cache add   name: 'rimraf',
450 silly cache add   rawSpec: '2',
450 silly cache add   spec: '>=2.0.0 <3.0.0',
450 silly cache add   type: 'range' }
451 silly addNamed rimraf@>=2.0.0 <3.0.0
452 verbose addNamed ">=2.0.0 <3.0.0" is a valid semver range for rimraf
453 silly addNameRange { name: 'rimraf', range: '>=2.0.0 <3.0.0', hasData: false }
454 silly mapToRegistry name rimraf
455 silly mapToRegistry using default registry
456 silly mapToRegistry registry https://registry.npmjs.org/
457 silly mapToRegistry uri https://registry.npmjs.org/rimraf
458 verbose addNameRange registry:https://registry.npmjs.org/rimraf not in flight; fetching
459 verbose afterAdd /Users/**/.npm/graceful-fs/3.0.8/package/package.json written
460 verbose get https://registry.npmjs.org/rimraf not expired, no request
461 silly addNameRange number 2 { name: 'rimraf', range: '>=2.0.0 <3.0.0', hasData: true }
462 silly addNameRange versions [ 'rimraf',
462 silly addNameRange   [ '1.0.0',
462 silly addNameRange     '1.0.1',
462 silly addNameRange     '1.0.2',
462 silly addNameRange     '1.0.4',
462 silly addNameRange     '1.0.5',
462 silly addNameRange     '1.0.6',
462 silly addNameRange     '1.0.7',
462 silly addNameRange     '1.0.8',
462 silly addNameRange     '1.0.9',
462 silly addNameRange     '2.0.0',
462 silly addNameRange     '2.0.1',
462 silly addNameRange     '2.0.2',
462 silly addNameRange     '2.0.3',
462 silly addNameRange     '2.1.0',
462 silly addNameRange     '2.1.1',
462 silly addNameRange     '2.1.2',
462 silly addNameRange     '2.1.3',
462 silly addNameRange     '2.1.4',
462 silly addNameRange     '2.2.0',
462 silly addNameRange     '2.2.1',
462 silly addNameRange     '2.2.2',
462 silly addNameRange     '2.2.3',
462 silly addNameRange     '2.2.4',
462 silly addNameRange     '2.2.5',
462 silly addNameRange     '2.2.6',
462 silly addNameRange     '2.2.8',
462 silly addNameRange     '2.3.0',
462 silly addNameRange     '2.3.1',
462 silly addNameRange     '2.3.2',
462 silly addNameRange     '2.3.3',
462 silly addNameRange     '2.3.4',
462 silly addNameRange     '2.4.0',
462 silly addNameRange     '2.4.1',
462 silly addNameRange     '2.4.2',
462 silly addNameRange     '2.4.3' ] ]
463 silly addNamed [email protected]
464 verbose addNamed "2.4.3" is a plain semver version for rimraf
465 silly cache afterAdd [email protected]
466 verbose afterAdd /Users/**/.npm/rimraf/2.4.3/package/package.json not in flight; writing
467 verbose afterAdd /Users/**/.npm/rimraf/2.4.3/package/package.json written
468 silly fetchNamedPackageData minimist
469 silly mapToRegistry name minimist
470 silly mapToRegistry using default registry
471 silly mapToRegistry registry https://registry.npmjs.org/
472 silly mapToRegistry uri https://registry.npmjs.org/minimist
473 verbose request uri https://registry.npmjs.org/minimist
474 verbose request no auth needed
475 info attempt registry request try #1 at 11:05:50 AM
476 verbose etag "DL1F8QEUSW2Z29NQFGXYFGJ4K"
477 http request GET https://registry.npmjs.org/minimist
478 http 304 https://registry.npmjs.org/minimist
479 verbose headers { date: 'Mon, 19 Oct 2015 08:05:50 GMT',
479 verbose headers   via: '1.1 varnish',
479 verbose headers   'cache-control': 'max-age=60',
479 verbose headers   etag: '"DL1F8QEUSW2Z29NQFGXYFGJ4K"',
479 verbose headers   age: '48',
479 verbose headers   connection: 'keep-alive',
479 verbose headers   'x-served-by': 'cache-lhr6334-LHR',
479 verbose headers   'x-cache': 'HIT',
479 verbose headers   'x-cache-hits': '6',
479 verbose headers   'x-timer': 'S1445241950.933951,VS0,VE0',
479 verbose headers   vary: 'Accept' }
480 silly get cb [ 304,
480 silly get   { date: 'Mon, 19 Oct 2015 08:05:50 GMT',
480 silly get     via: '1.1 varnish',
480 silly get     'cache-control': 'max-age=60',
480 silly get     etag: '"DL1F8QEUSW2Z29NQFGXYFGJ4K"',
480 silly get     age: '48',
480 silly get     connection: 'keep-alive',
480 silly get     'x-served-by': 'cache-lhr6334-LHR',
480 silly get     'x-cache': 'HIT',
480 silly get     'x-cache-hits': '6',
480 silly get     'x-timer': 'S1445241950.933951,VS0,VE0',
480 silly get     vary: 'Accept' } ]
481 verbose etag https://registry.npmjs.org/minimist from cache
482 verbose get saving minimist to /Users/**/.npm/registry.npmjs.org/minimist/.cache.json
483 silly resolveWithNewModule [email protected] checking installable status
484 silly cache add args [ '[email protected]', null ]
485 verbose cache add spec [email protected]
486 silly cache add parsed spec Result {
486 silly cache add   raw: '[email protected]',
486 silly cache add   scope: null,
486 silly cache add   name: 'minimist',
486 silly cache add   rawSpec: '0.0.8',
486 silly cache add   spec: '0.0.8',
486 silly cache add   type: 'version' }
487 silly addNamed [email protected]
488 verbose addNamed "0.0.8" is a plain semver version for minimist
489 silly mapToRegistry name minimist
490 silly mapToRegistry using default registry
491 silly mapToRegistry registry https://registry.npmjs.org/
492 silly mapToRegistry uri https://registry.npmjs.org/minimist
493 verbose addNameVersion registry:https://registry.npmjs.org/minimist not in flight; fetching
494 verbose get https://registry.npmjs.org/minimist not expired, no request
495 silly cache afterAdd [email protected]
496 verbose afterAdd /Users/**/.npm/minimist/0.0.8/package/package.json not in flight; writing
497 verbose afterAdd /Users/**/.npm/minimist/0.0.8/package/package.json written
498 silly fetchNamedPackageData glob
499 silly mapToRegistry name glob
500 silly mapToRegistry using default registry
501 silly mapToRegistry registry https://registry.npmjs.org/
502 silly mapToRegistry uri https://registry.npmjs.org/glob
503 verbose request uri https://registry.npmjs.org/glob
504 verbose request no auth needed
505 info attempt registry request try #1 at 11:05:50 AM
506 verbose etag "BZOCE8S48WO78UJ0LW96EMJRV"
507 http request GET https://registry.npmjs.org/glob
508 http 304 https://registry.npmjs.org/glob
509 verbose headers { date: 'Mon, 19 Oct 2015 08:05:51 GMT',
509 verbose headers   via: '1.1 varnish',
509 verbose headers   'cache-control': 'max-age=60',
509 verbose headers   etag: '"BZOCE8S48WO78UJ0LW96EMJRV"',
509 verbose headers   age: '38',
509 verbose headers   connection: 'keep-alive',
509 verbose headers   'x-served-by': 'cache-lhr6335-LHR',
509 verbose headers   'x-cache': 'HIT',
509 verbose headers   'x-cache-hits': '2',
509 verbose headers   'x-timer': 'S1445241951.207432,VS0,VE0',
509 verbose headers   vary: 'Accept' }
510 silly get cb [ 304,
510 silly get   { date: 'Mon, 19 Oct 2015 08:05:51 GMT',
510 silly get     via: '1.1 varnish',
510 silly get     'cache-control': 'max-age=60',
510 silly get     etag: '"BZOCE8S48WO78UJ0LW96EMJRV"',
510 silly get     age: '38',
510 silly get     connection: 'keep-alive',
510 silly get     'x-served-by': 'cache-lhr6335-LHR',
510 silly get     'x-cache': 'HIT',
510 silly get     'x-cache-hits': '2',
510 silly get     'x-timer': 'S1445241951.207432,VS0,VE0',
510 silly get     vary: 'Accept' } ]
511 verbose etag https://registry.npmjs.org/glob from cache
512 verbose get saving glob to /Users/**/.npm/registry.npmjs.org/glob/.cache.json
513 silly resolveWithNewModule [email protected] checking installable status
514 silly cache add args [ 'glob@^5.0.14', null ]
515 verbose cache add spec glob@^5.0.14
516 silly cache add parsed spec Result {
516 silly cache add   raw: 'glob@^5.0.14',
516 silly cache add   scope: null,
516 silly cache add   name: 'glob',
516 silly cache add   rawSpec: '^5.0.14',
516 silly cache add   spec: '>=5.0.14 <6.0.0',
516 silly cache add   type: 'range' }
517 silly addNamed glob@>=5.0.14 <6.0.0
518 verbose addNamed ">=5.0.14 <6.0.0" is a valid semver range for glob
519 silly addNameRange { name: 'glob', range: '>=5.0.14 <6.0.0', hasData: false }
520 silly mapToRegistry name glob
521 silly mapToRegistry using default registry
522 silly mapToRegistry registry https://registry.npmjs.org/
523 silly mapToRegistry uri https://registry.npmjs.org/glob
524 verbose addNameRange registry:https://registry.npmjs.org/glob not in flight; fetching
525 verbose get https://registry.npmjs.org/glob not expired, no request
526 silly addNameRange number 2 { name: 'glob', range: '>=5.0.14 <6.0.0', hasData: true }
527 silly addNameRange versions [ 'glob',
527 silly addNameRange   [ '1.1.0',
527 silly addNameRange     '2.0.9',
527 silly addNameRange     '2.0.8',
527 silly addNameRange     '2.0.7',
527 silly addNameRange     '2.1.0',
527 silly addNameRange     '3.0.0',
527 silly addNameRange     '3.0.1',
527 silly addNameRange     '3.1.0',
527 silly addNameRange     '3.1.1',
527 silly addNameRange     '3.1.2',
527 silly addNameRange     '3.1.3',
527 silly addNameRange     '3.1.4',
527 silly addNameRange     '3.1.5',
527 silly addNameRange     '3.1.6',
527 silly addNameRange     '3.1.7',
527 silly addNameRange     '3.1.9',
527 silly addNameRange     '3.1.10',
527 silly addNameRange     '3.1.11',
527 silly addNameRange     '3.1.12',
527 silly addNameRange     '3.1.13',
527 silly addNameRange     '3.1.14',
527 silly addNameRange     '3.1.15',
527 silly addNameRange     '3.1.16',
527 silly addNameRange     '3.1.17',
527 silly addNameRange     '3.1.18',
527 silly addNameRange     '3.1.19',
527 silly addNameRange     '3.1.20',
527 silly addNameRange     '3.1.21',
527 silly addNameRange     '3.2.0',
527 silly addNameRange     '3.2.1',
527 silly addNameRange     '3.2.3',
527 silly addNameRange     '3.2.4',
527 silly addNameRange     '3.2.5',
527 silly addNameRange     '3.2.6',
527 silly addNameRange     '3.2.7',
527 silly addNameRange     '3.2.8',
527 silly addNameRange     '3.2.9',
527 silly addNameRange     '3.2.10',
527 silly addNameRange     '3.2.11',
527 silly addNameRange     '4.0.0',
527 silly addNameRange     '4.0.1',
527 silly addNameRange     '4.0.2',
527 silly addNameRange     '4.0.3',
527 silly addNameRange     '4.0.4',
527 silly addNameRange     '4.0.5',
527 silly addNameRange     '4.0.6',
527 silly addNameRange     '4.1.2-beta',
527 silly addNameRange     '4.1.2',
527 silly addNameRange     '4.1.3',
527 silly addNameRange     '4.1.4',
527 silly addNameRange     '4.1.5',
527 silly addNameRange     '4.1.6',
527 silly addNameRange     '4.2.0',
527 silly addNameRange     '4.2.1',
527 silly addNameRange     '4.2.2',
527 silly addNameRange     '4.3.0',
527 silly addNameRange     '4.3.1',
527 silly addNameRange     '4.3.2',
527 silly addNameRange     '4.3.3',
527 silly addNameRange     '4.3.4',
527 silly addNameRange     '4.3.5',
527 silly addNameRange     '4.4.0',
527 silly addNameRange     '4.4.2',
527 silly addNameRange     '4.5.0',
527 silly addNameRange     '5.0.0',
527 silly addNameRange     '4.5.1',
527 silly addNameRange     '5.0.1',
527 silly addNameRange     '4.5.2',
527 silly addNameRange     '5.0.2',
527 silly addNameRange     '4.5.3',
527 silly addNameRange     '5.0.3',
527 silly addNameRange     '5.0.4',
527 silly addNameRange     '5.0.5',
527 silly addNameRange     '5.0.6',
527 silly addNameRange     '5.0.7',
527 silly addNameRange     '5.0.9',
527 silly addNameRange     '5.0.10',
527 silly addNameRange     '5.0.11',
527 silly addNameRange     '5.0.12',
527 silly addNameRange     '5.0.13',
527 silly addNameRange     '5.0.14',
527 silly addNameRange     '5.0.15' ] ]
528 silly addNamed [email protected]
529 verbose addNamed "5.0.15" is a plain semver version for glob
530 silly cache afterAdd [email protected]
531 verbose afterAdd /Users/**/.npm/glob/5.0.15/package/package.json not in flight; writing
532 verbose afterAdd /Users/**/.npm/glob/5.0.15/package/package.json written
533 silly fetchNamedPackageData inflight
534 silly mapToRegistry name inflight
535 silly mapToRegistry using default registry
536 silly mapToRegistry registry https://registry.npmjs.org/
537 silly mapToRegistry uri https://registry.npmjs.org/inflight
538 silly fetchNamedPackageData minimatch
539 silly mapToRegistry name minimatch
540 silly mapToRegistry using default registry
541 silly mapToRegistry registry https://registry.npmjs.org/
542 silly mapToRegistry uri https://registry.npmjs.org/minimatch
543 silly fetchNamedPackageData once
544 silly mapToRegistry name once
545 silly mapToRegistry using default registry
546 silly mapToRegistry registry https://registry.npmjs.org/
547 silly mapToRegistry uri https://registry.npmjs.org/once
548 silly fetchNamedPackageData path-is-absolute
549 silly mapToRegistry name path-is-absolute
550 silly mapToRegistry using default registry
551 silly mapToRegistry registry https://registry.npmjs.org/
552 silly mapToRegistry uri https://registry.npmjs.org/path-is-absolute
553 verbose request uri https://registry.npmjs.org/inflight
554 verbose request no auth needed
555 info attempt registry request try #1 at 11:05:51 AM
556 verbose etag "AYD7KENJNHXM5Z0WKMT2D06HW"
557 http request GET https://registry.npmjs.org/inflight
558 verbose request uri https://registry.npmjs.org/once
559 verbose request no auth needed
560 info attempt registry request try #1 at 11:05:51 AM
561 verbose etag "CG4CSZ7WMFUO49PBM5XJSO6GB"
562 http request GET https://registry.npmjs.org/once
563 verbose request uri https://registry.npmjs.org/path-is-absolute
564 verbose request no auth needed
565 info attempt registry request try #1 at 11:05:51 AM
566 verbose etag "28JNKEBCL0V9HRWV1FZK3S0HB"
567 http request GET https://registry.npmjs.org/path-is-absolute
568 verbose request uri https://registry.npmjs.org/minimatch
569 verbose request no auth needed
570 info attempt registry request try #1 at 11:05:51 AM
571 verbose etag "74Y2R4NV4FFDLR942180M8IG0"
572 http request GET https://registry.npmjs.org/minimatch
573 http 304 https://registry.npmjs.org/inflight
574 verbose headers { date: 'Mon, 19 Oct 2015 08:05:51 GMT',
574 verbose headers   via: '1.1 varnish',
574 verbose headers   'cache-control': 'max-age=60',
574 verbose headers   etag: '"AYD7KENJNHXM5Z0WKMT2D06HW"',
574 verbose headers   age: '8',
574 verbose headers   connection: 'keep-alive',
574 verbose headers   'x-served-by': 'cache-lhr6322-LHR',
574 verbose headers   'x-cache': 'HIT',
574 verbose headers   'x-cache-hits': '1',
574 verbose headers   'x-timer': 'S1445241951.535431,VS0,VE0',
574 verbose headers   vary: 'Accept' }
575 silly get cb [ 304,
575 silly get   { date: 'Mon, 19 Oct 2015 08:05:51 GMT',
575 silly get     via: '1.1 varnish',
575 silly get     'cache-control': 'max-age=60',
575 silly get     etag: '"AYD7KENJNHXM5Z0WKMT2D06HW"',
575 silly get     age: '8',
575 silly get     connection: 'keep-alive',
575 silly get     'x-served-by': 'cache-lhr6322-LHR',
575 silly get     'x-cache': 'HIT',
575 silly get     'x-cache-hits': '1',
575 silly get     'x-timer': 'S1445241951.535431,VS0,VE0',
575 silly get     vary: 'Accept' } ]
576 verbose etag https://registry.npmjs.org/inflight from cache
577 verbose get saving inflight to /Users/**/.npm/registry.npmjs.org/inflight/.cache.json
578 silly resolveWithNewModule [email protected] checking installable status
579 silly cache add args [ 'inflight@^1.0.4', null ]
580 verbose cache add spec inflight@^1.0.4
581 silly cache add parsed spec Result {
581 silly cache add   raw: 'inflight@^1.0.4',
581 silly cache add   scope: null,
581 silly cache add   name: 'inflight',
581 silly cache add   rawSpec: '^1.0.4',
581 silly cache add   spec: '>=1.0.4 <2.0.0',
581 silly cache add   type: 'range' }
582 silly addNamed inflight@>=1.0.4 <2.0.0
583 verbose addNamed ">=1.0.4 <2.0.0" is a valid semver range for inflight
584 silly addNameRange { name: 'inflight', range: '>=1.0.4 <2.0.0', hasData: false }
585 silly mapToRegistry name inflight
586 silly mapToRegistry using default registry
587 silly mapToRegistry registry https://registry.npmjs.org/
588 silly mapToRegistry uri https://registry.npmjs.org/inflight
589 verbose addNameRange registry:https://registry.npmjs.org/inflight not in flight; fetching
590 verbose get https://registry.npmjs.org/inflight not expired, no request
591 silly addNameRange number 2 { name: 'inflight', range: '>=1.0.4 <2.0.0', hasData: true }
592 silly addNameRange versions [ 'inflight', [ '1.0.0', '1.0.1', '1.0.2', '1.0.3', '1.0.4' ] ]
593 silly addNamed [email protected]
594 verbose addNamed "1.0.4" is a plain semver version for inflight
595 silly cache afterAdd [email protected]
596 verbose afterAdd /Users/**/.npm/inflight/1.0.4/package/package.json not in flight; writing
597 verbose afterAdd /Users/**/.npm/inflight/1.0.4/package/package.json written
598 http 304 https://registry.npmjs.org/once
599 verbose headers { date: 'Mon, 19 Oct 2015 08:05:51 GMT',
599 verbose headers   via: '1.1 varnish',
599 verbose headers   'cache-control': 'max-age=60',
599 verbose headers   etag: '"CG4CSZ7WMFUO49PBM5XJSO6GB"',
599 verbose headers   age: '51',
599 verbose headers   connection: 'keep-alive',
599 verbose headers   'x-served-by': 'cache-lhr6334-LHR',
599 verbose headers   'x-cache': 'HIT',
599 verbose headers   'x-cache-hits': '7',
599 verbose headers   'x-timer': 'S1445241951.550692,VS0,VE0',
599 verbose headers   vary: 'Accept' }
600 silly get cb [ 304,
600 silly get   { date: 'Mon, 19 Oct 2015 08:05:51 GMT',
600 silly get     via: '1.1 varnish',
600 silly get     'cache-control': 'max-age=60',
600 silly get     etag: '"CG4CSZ7WMFUO49PBM5XJSO6GB"',
600 silly get     age: '51',
600 silly get     connection: 'keep-alive',
600 silly get     'x-served-by': 'cache-lhr6334-LHR',
600 silly get     'x-cache': 'HIT',
600 silly get     'x-cache-hits': '7',
600 silly get     'x-timer': 'S1445241951.550692,VS0,VE0',
600 silly get     vary: 'Accept' } ]
601 verbose etag https://registry.npmjs.org/once from cache
602 verbose get saving once to /Users/**/.npm/registry.npmjs.org/once/.cache.json
603 http 304 https://registry.npmjs.org/path-is-absolute
604 verbose headers { date: 'Mon, 19 Oct 2015 08:05:51 GMT',
604 verbose headers   via: '1.1 varnish',
604 verbose headers   'cache-control': 'max-age=60',
604 verbose headers   etag: '"28JNKEBCL0V9HRWV1FZK3S0HB"',
604 verbose headers   age: '34',
604 verbose headers   connection: 'keep-alive',
604 verbose headers   'x-served-by': 'cache-lhr6331-LHR',
604 verbose headers   'x-cache': 'HIT',
604 verbose headers   'x-cache-hits': '5',
604 verbose headers   'x-timer': 'S1445241951.552209,VS0,VE0',
604 verbose headers   vary: 'Accept' }
605 silly get cb [ 304,
605 silly get   { date: 'Mon, 19 Oct 2015 08:05:51 GMT',
605 silly get     via: '1.1 varnish',
605 silly get     'cache-control': 'max-age=60',
605 silly get     etag: '"28JNKEBCL0V9HRWV1FZK3S0HB"',
605 silly get     age: '34',
605 silly get     connection: 'keep-alive',
605 silly get     'x-served-by': 'cache-lhr6331-LHR',
605 silly get     'x-cache': 'HIT',
605 silly get     'x-cache-hits': '5',
605 silly get     'x-timer': 'S1445241951.552209,VS0,VE0',
605 silly get     vary: 'Accept' } ]
606 verbose etag https://registry.npmjs.org/path-is-absolute from cache
607 verbose get saving path-is-absolute to /Users/**/.npm/registry.npmjs.org/path-is-absolute/.cache.json
608 http 304 https://registry.npmjs.org/minimatch
609 verbose headers { date: 'Mon, 19 Oct 2015 08:05:51 GMT',
609 verbose headers   via: '1.1 varnish',
609 verbose headers   'cache-control': 'max-age=60',
609 verbose headers   etag: '"74Y2R4NV4FFDLR942180M8IG0"',
609 verbose headers   age: '45',
609 verbose headers   connection: 'keep-alive',
609 verbose headers   'x-served-by': 'cache-lhr6335-LHR',
609 verbose headers   'x-cache': 'HIT',
609 verbose headers   'x-cache-hits': '6',
609 verbose headers   'x-timer': 'S1445241951.552832,VS0,VE0',
609 verbose headers   vary: 'Accept' }
610 silly get cb [ 304,
610 silly get   { date: 'Mon, 19 Oct 2015 08:05:51 GMT',
610 silly get     via: '1.1 varnish',
610 silly get     'cache-control': 'max-age=60',
610 silly get     etag: '"74Y2R4NV4FFDLR942180M8IG0"',
610 silly get     age: '45',
610 silly get     connection: 'keep-alive',
610 silly get     'x-served-by': 'cache-lhr6335-LHR',
610 silly get     'x-cache': 'HIT',
610 silly get     'x-cache-hits': '6',
610 silly get     'x-timer': 'S1445241951.552832,VS0,VE0',
610 silly get     vary: 'Accept' } ]
611 verbose etag https://registry.npmjs.org/minimatch from cache
612 verbose get saving minimatch to /Users/**/.npm/registry.npmjs.org/minimatch/.cache.json
613 silly resolveWithNewModule [email protected] checking installable status
614 silly cache add args [ 'once@^1.3.0', null ]
615 verbose cache add spec once@^1.3.0
616 silly cache add parsed spec Result {
616 silly cache add   raw: 'once@^1.3.0',
616 silly cache add   scope: null,
616 silly cache add   name: 'once',
616 silly cache add   rawSpec: '^1.3.0',
616 silly cache add   spec: '>=1.3.0 <2.0.0',
616 silly cache add   type: 'range' }
617 silly addNamed once@>=1.3.0 <2.0.0
618 verbose addNamed ">=1.3.0 <2.0.0" is a valid semver range for once
619 silly addNameRange { name: 'once', range: '>=1.3.0 <2.0.0', hasData: false }
620 silly mapToRegistry name once
621 silly mapToRegistry using default registry
622 silly mapToRegistry registry https://registry.npmjs.org/
623 silly mapToRegistry uri https://registry.npmjs.org/once
624 verbose addNameRange registry:https://registry.npmjs.org/once not in flight; fetching
625 silly resolveWithNewModule [email protected] checking installable status
626 silly cache add args [ 'path-is-absolute@^1.0.0', null ]
627 verbose cache add spec path-is-absolute@^1.0.0
628 silly cache add parsed spec Result {
628 silly cache add   raw: 'path-is-absolute@^1.0.0',
628 silly cache add   scope: null,
628 silly cache add   name: 'path-is-absolute',
628 silly cache add   rawSpec: '^1.0.0',
628 silly cache add   spec: '>=1.0.0 <2.0.0',
628 silly cache add   type: 'range' }
629 silly addNamed path-is-absolute@>=1.0.0 <2.0.0
630 verbose addNamed ">=1.0.0 <2.0.0" is a valid semver range for path-is-absolute
631 silly addNameRange { name: 'path-is-absolute',
631 silly addNameRange   range: '>=1.0.0 <2.0.0',
631 silly addNameRange   hasData: false }
632 silly mapToRegistry name path-is-absolute
633 silly mapToRegistry using default registry
634 silly mapToRegistry registry https://registry.npmjs.org/
635 silly mapToRegistry uri https://registry.npmjs.org/path-is-absolute
636 verbose addNameRange registry:https://registry.npmjs.org/path-is-absolute not in flight; fetching
637 verbose get https://registry.npmjs.org/once not expired, no request
638 silly addNameRange number 2 { name: 'once', range: '>=1.3.0 <2.0.0', hasData: true }
639 silly addNameRange versions [ 'once', [ '1.1.1', '1.2.0', '1.3.0', '1.3.1', '1.3.2' ] ]
640 silly addNamed [email protected]
641 verbose addNamed "1.3.2" is a plain semver version for once
642 silly resolveWithNewModule [email protected] checking installable status
643 silly cache add args [ 'minimatch@2 || 3', null ]
644 verbose cache add spec minimatch@2 || 3
645 silly cache add parsed spec Result {
645 silly cache add   raw: 'minimatch@2 || 3',
645 silly cache add   scope: null,
645 silly cache add   name: 'minimatch',
645 silly cache add   rawSpec: '2 || 3',
645 silly cache add   spec: '>=2.0.0 <3.0.0||>=3.0.0 <4.0.0',
645 silly cache add   type: 'range' }
646 silly addNamed minimatch@>=2.0.0 <3.0.0||>=3.0.0 <4.0.0
647 verbose addNamed ">=2.0.0 <3.0.0||>=3.0.0 <4.0.0" is a valid semver range for minimatch
648 silly addNameRange { name: 'minimatch',
648 silly addNameRange   range: '>=2.0.0 <3.0.0||>=3.0.0 <4.0.0',
648 silly addNameRange   hasData: false }
649 silly mapToRegistry name minimatch
650 silly mapToRegistry using default registry
651 silly mapToRegistry registry https://registry.npmjs.org/
652 silly mapToRegistry uri https://registry.npmjs.org/minimatch
653 verbose addNameRange registry:https://registry.npmjs.org/minimatch not in flight; fetching
654 verbose get https://registry.npmjs.org/path-is-absolute not expired, no request
655 silly addNameRange number 2 { name: 'path-is-absolute',
655 silly addNameRange   range: '>=1.0.0 <2.0.0',
655 silly addNameRange   hasData: true }
656 silly addNameRange versions [ 'path-is-absolute', [ '1.0.0' ] ]
657 silly addNamed [email protected]
658 verbose addNamed "1.0.0" is a plain semver version for path-is-absolute
659 silly cache afterAdd [email protected]
660 verbose afterAdd /Users/**/.npm/once/1.3.2/package/package.json not in flight; writing
661 verbose get https://registry.npmjs.org/minimatch not expired, no request
662 silly addNameRange number 2 { name: 'minimatch',
662 silly addNameRange   range: '>=2.0.0 <3.0.0||>=3.0.0 <4.0.0',
662 silly addNameRange   hasData: true }
663 silly addNameRange versions [ 'minimatch',
663 silly addNameRange   [ '0.0.1',
663 silly addNameRange     '0.0.2',
663 silly addNameRange     '0.0.4',
663 silly addNameRange     '0.0.5',
663 silly addNameRange     '0.1.1',
663 silly addNameRange     '0.1.2',
663 silly addNameRange     '0.1.3',
663 silly addNameRange     '0.1.4',
663 silly addNameRange     '0.1.5',
663 silly addNameRange     '0.2.0',
663 silly addNameRange     '0.2.2',
663 silly addNameRange     '0.2.3',
663 silly addNameRange     '0.2.4',
663 silly addNameRange     '0.2.5',
663 silly addNameRange     '0.2.6',
663 silly addNameRange     '0.2.7',
663 silly addNameRange     '0.2.8',
663 silly addNameRange     '0.2.9',
663 silly addNameRange     '0.2.10',
663 silly addNameRange     '0.2.11',
663 silly addNameRange     '0.2.12',
663 silly addNameRange     '0.2.13',
663 silly addNameRange     '0.2.14',
663 silly addNameRange     '0.3.0',
663 silly addNameRange     '0.4.0',
663 silly addNameRange     '1.0.0',
663 silly addNameRange     '2.0.0',
663 silly addNameRange     '2.0.1',
663 silly addNameRange     '2.0.2',
663 silly addNameRange     '2.0.3',
663 silly addNameRange     '2.0.4',
663 silly addNameRange     '2.0.5',
663 silly addNameRange     '2.0.6',
663 silly addNameRange     '2.0.7',
663 silly addNameRange     '2.0.8',
663 silly addNameRange     '2.0.9',
663 silly addNameRange     '2.0.10',
663 silly addNameRange     '3.0.0' ] ]
664 silly addNamed [email protected]
665 verbose addNamed "3.0.0" is a plain semver version for minimatch
666 silly cache afterAdd [email protected]
667 verbose afterAdd /Users/**/.npm/path-is-absolute/1.0.0/package/package.json not in flight; writing
668 verbose afterAdd /Users/**/.npm/once/1.3.2/package/package.json written
669 silly cache afterAdd [email protected]
670 verbose afterAdd /Users/**/.npm/minimatch/3.0.0/package/package.json not in flight; writing
671 verbose afterAdd /Users/**/.npm/path-is-absolute/1.0.0/package/package.json written
672 verbose afterAdd /Users/**/.npm/minimatch/3.0.0/package/package.json written
673 silly fetchNamedPackageData wrappy
674 silly mapToRegistry name wrappy
675 silly mapToRegistry using default registry
676 silly mapToRegistry registry https://registry.npmjs.org/
677 silly mapToRegistry uri https://registry.npmjs.org/wrappy
678 verbose request uri https://registry.npmjs.org/wrappy
679 verbose request no auth needed
680 info attempt registry request try #1 at 11:05:51 AM
681 verbose etag "BC9JAW6E2PQBS8NYYKIYUR99F"
682 http request GET https://registry.npmjs.org/wrappy
683 http 304 https://registry.npmjs.org/wrappy
684 verbose headers { date: 'Mon, 19 Oct 2015 08:05:51 GMT',
684 verbose headers   via: '1.1 varnish',
684 verbose headers   'cache-control': 'max-age=60',
684 verbose headers   etag: '"BC9JAW6E2PQBS8NYYKIYUR99F"',
684 verbose headers   age: '35',
684 verbose headers   connection: 'keep-alive',
684 verbose headers   'x-served-by': 'cache-lhr6324-LHR',
684 verbose headers   'x-cache': 'HIT',
684 verbose headers   'x-cache-hits': '4',
684 verbose headers   'x-timer': 'S1445241951.810682,VS0,VE0',
684 verbose headers   vary: 'Accept' }
685 silly get cb [ 304,
685 silly get   { date: 'Mon, 19 Oct 2015 08:05:51 GMT',
685 silly get     via: '1.1 varnish',
685 silly get     'cache-control': 'max-age=60',
685 silly get     etag: '"BC9JAW6E2PQBS8NYYKIYUR99F"',
685 silly get     age: '35',
685 silly get     connection: 'keep-alive',
685 silly get     'x-served-by': 'cache-lhr6324-LHR',
685 silly get     'x-cache': 'HIT',
685 silly get     'x-cache-hits': '4',
685 silly get     'x-timer': 'S1445241951.810682,VS0,VE0',
685 silly get     vary: 'Accept' } ]
686 verbose etag https://registry.npmjs.org/wrappy from cache
687 verbose get saving wrappy to /Users/**/.npm/registry.npmjs.org/wrappy/.cache.json
688 silly resolveWithNewModule [email protected] checking installable status
689 silly cache add args [ 'wrappy@1', null ]
690 verbose cache add spec wrappy@1
691 silly cache add parsed spec Result {
691 silly cache add   raw: 'wrappy@1',
691 silly cache add   scope: null,
691 silly cache add   name: 'wrappy',
691 silly cache add   rawSpec: '1',
691 silly cache add   spec: '>=1.0.0 <2.0.0',
691 silly cache add   type: 'range' }
692 silly addNamed wrappy@>=1.0.0 <2.0.0
693 verbose addNamed ">=1.0.0 <2.0.0" is a valid semver range for wrappy
694 silly addNameRange { name: 'wrappy', range: '>=1.0.0 <2.0.0', hasData: false }
695 silly mapToRegistry name wrappy
696 silly mapToRegistry using default registry
697 silly mapToRegistry registry https://registry.npmjs.org/
698 silly mapToRegistry uri https://registry.npmjs.org/wrappy
699 verbose addNameRange registry:https://registry.npmjs.org/wrappy not in flight; fetching
700 verbose get https://registry.npmjs.org/wrappy not expired, no request
701 silly addNameRange number 2 { name: 'wrappy', range: '>=1.0.0 <2.0.0', hasData: true }
702 silly addNameRange versions [ 'wrappy', [ '1.0.0', '1.0.1' ] ]
703 silly addNamed [email protected]
704 verbose addNamed "1.0.1" is a plain semver version for wrappy
705 silly cache afterAdd [email protected]
706 verbose afterAdd /Users/**/.npm/wrappy/1.0.1/package/package.json not in flight; writing
707 verbose afterAdd /Users/**/.npm/wrappy/1.0.1/package/package.json written
708 silly fetchNamedPackageData brace-expansion
709 silly mapToRegistry name brace-expansion
710 silly mapToRegistry using default registry
711 silly mapToRegistry registry https://registry.npmjs.org/
712 silly mapToRegistry uri https://registry.npmjs.org/brace-expansion
713 verbose request uri https://registry.npmjs.org/brace-expansion
714 verbose request no auth needed
715 info attempt registry request try #1 at 11:05:51 AM
716 verbose etag "ATCF3YPNIHUUCSFVP2K99PFFT"
717 http request GET https://registry.npmjs.org/brace-expansion
718 http 304 https://registry.npmjs.org/brace-expansion
719 verbose headers { date: 'Mon, 19 Oct 2015 08:05:52 GMT',
719 verbose headers   via: '1.1 varnish',
719 verbose headers   'cache-control': 'max-age=60',
719 verbose headers   etag: '"ATCF3YPNIHUUCSFVP2K99PFFT"',
719 verbose headers   age: '11',
719 verbose headers   connection: 'keep-alive',
719 verbose headers   'x-served-by': 'cache-lhr6328-LHR',
719 verbose headers   'x-cache': 'HIT',
719 verbose headers   'x-cache-hits': '2',
719 verbose headers   'x-timer': 'S1445241952.050248,VS0,VE0',
719 verbose headers   vary: 'Accept' }
720 silly get cb [ 304,
720 silly get   { date: 'Mon, 19 Oct 2015 08:05:52 GMT',
720 silly get     via: '1.1 varnish',
720 silly get     'cache-control': 'max-age=60',
720 silly get     etag: '"ATCF3YPNIHUUCSFVP2K99PFFT"',
720 silly get     age: '11',
720 silly get     connection: 'keep-alive',
720 silly get     'x-served-by': 'cache-lhr6328-LHR',
720 silly get     'x-cache': 'HIT',
720 silly get     'x-cache-hits': '2',
720 silly get     'x-timer': 'S1445241952.050248,VS0,VE0',
720 silly get     vary: 'Accept' } ]
721 verbose etag https://registry.npmjs.org/brace-expansion from cache
722 verbose get saving brace-expansion to /Users/**/.npm/registry.npmjs.org/brace-expansion/.cache.json
723 silly resolveWithNewModule [email protected] checking installable status
724 silly cache add args [ 'brace-expansion@^1.0.0', null ]
725 verbose cache add spec brace-expansion@^1.0.0
726 silly cache add parsed spec Result {
726 silly cache add   raw: 'brace-expansion@^1.0.0',
726 silly cache add   scope: null,
726 silly cache add   name: 'brace-expansion',
726 silly cache add   rawSpec: '^1.0.0',
726 silly cache add   spec: '>=1.0.0 <2.0.0',
726 silly cache add   type: 'range' }
727 silly addNamed brace-expansion@>=1.0.0 <2.0.0
728 verbose addNamed ">=1.0.0 <2.0.0" is a valid semver range for brace-expansion
729 silly addNameRange { name: 'brace-expansion',
729 silly addNameRange   range: '>=1.0.0 <2.0.0',
729 silly addNameRange   hasData: false }
730 silly mapToRegistry name brace-expansion
731 silly mapToRegistry using default registry
732 silly mapToRegistry registry https://registry.npmjs.org/
733 silly mapToRegistry uri https://registry.npmjs.org/brace-expansion
734 verbose addNameRange registry:https://registry.npmjs.org/brace-expansion not in flight; fetching
735 verbose get https://registry.npmjs.org/brace-expansion not expired, no request
736 silly addNameRange number 2 { name: 'brace-expansion',
736 silly addNameRange   range: '>=1.0.0 <2.0.0',
736 silly addNameRange   hasData: true }
737 silly addNameRange versions [ 'brace-expansion',
737 silly addNameRange   [ '0.0.0', '1.0.0', '1.0.1', '1.1.0', '1.1.1' ] ]
738 silly addNamed [email protected]
739 verbose addNamed "1.1.1" is a plain semver version for brace-expansion
740 silly cache afterAdd [email protected]
741 verbose afterAdd /Users/**/.npm/brace-expansion/1.1.1/package/package.json not in flight; writing
742 verbose afterAdd /Users/**/.npm/brace-expansion/1.1.1/package/package.json written
743 silly fetchNamedPackageData balanced-match
744 silly mapToRegistry name balanced-match
745 silly mapToRegistry using default registry
746 silly mapToRegistry registry https://registry.npmjs.org/
747 silly mapToRegistry uri https://registry.npmjs.org/balanced-match
748 silly fetchNamedPackageData concat-map
749 silly mapToRegistry name concat-map
750 silly mapToRegistry using default registry
751 silly mapToRegistry registry https://registry.npmjs.org/
752 silly mapToRegistry uri https://registry.npmjs.org/concat-map
753 verbose request uri https://registry.npmjs.org/balanced-match
754 verbose request no auth needed
755 info attempt registry request try #1 at 11:05:52 AM
756 verbose etag "VJOQR28QMCA3H5RIZBJEY5JU"
757 http request GET https://registry.npmjs.org/balanced-match
758 verbose request uri https://registry.npmjs.org/concat-map
759 verbose request no auth needed
760 info attempt registry request try #1 at 11:05:52 AM
761 verbose etag "66LI2B4AH1989LYDFSL4P944A"
762 http request GET https://registry.npmjs.org/concat-map
763 http 304 https://registry.npmjs.org/balanced-match
764 verbose headers { date: 'Mon, 19 Oct 2015 08:05:52 GMT',
764 verbose headers   via: '1.1 varnish',
764 verbose headers   'cache-control': 'max-age=60',
764 verbose headers   etag: '"VJOQR28QMCA3H5RIZBJEY5JU"',
764 verbose headers   age: '50',
764 verbose headers   connection: 'keep-alive',
764 verbose headers   'x-served-by': 'cache-lhr6329-LHR',
764 verbose headers   'x-cache': 'HIT',
764 verbose headers   'x-cache-hits': '37',
764 verbose headers   'x-timer': 'S1445241952.306374,VS0,VE0',
764 verbose headers   vary: 'Accept' }
765 silly get cb [ 304,
765 silly get   { date: 'Mon, 19 Oct 2015 08:05:52 GMT',
765 silly get     via: '1.1 varnish',
765 silly get     'cache-control': 'max-age=60',
765 silly get     etag: '"VJOQR28QMCA3H5RIZBJEY5JU"',
765 silly get     age: '50',
765 silly get     connection: 'keep-alive',
765 silly get     'x-served-by': 'cache-lhr6329-LHR',
765 silly get     'x-cache': 'HIT',
765 silly get     'x-cache-hits': '37',
765 silly get     'x-timer': 'S1445241952.306374,VS0,VE0',
765 silly get     vary: 'Accept' } ]
766 verbose etag https://registry.npmjs.org/balanced-match from cache
767 verbose get saving balanced-match to /Users/**/.npm/registry.npmjs.org/balanced-match/.cache.json
768 http 304 https://registry.npmjs.org/concat-map
769 verbose headers { date: 'Mon, 19 Oct 2015 08:05:52 GMT',
769 verbose headers   via: '1.1 varnish',
769 verbose headers   'cache-control': 'max-age=60',
769 verbose headers   etag: '"66LI2B4AH1989LYDFSL4P944A"',
769 verbose headers   age: '14',
769 verbose headers   connection: 'keep-alive',
769 verbose headers   'x-served-by': 'cache-lhr6325-LHR',
769 verbose headers   'x-cache': 'HIT',
769 verbose headers   'x-cache-hits': '3',
769 verbose headers   'x-timer': 'S1445241952.306965,VS0,VE0',
769 verbose headers   vary: 'Accept' }
770 silly get cb [ 304,
770 silly get   { date: 'Mon, 19 Oct 2015 08:05:52 GMT',
770 silly get     via: '1.1 varnish',
770 silly get     'cache-control': 'max-age=60',
770 silly get     etag: '"66LI2B4AH1989LYDFSL4P944A"',
770 silly get     age: '14',
770 silly get     connection: 'keep-alive',
770 silly get     'x-served-by': 'cache-lhr6325-LHR',
770 silly get     'x-cache': 'HIT',
770 silly get     'x-cache-hits': '3',
770 silly get     'x-timer': 'S1445241952.306965,VS0,VE0',
770 silly get     vary: 'Accept' } ]
771 verbose etag https://registry.npmjs.org/concat-map from cache
772 verbose get saving concat-map to /Users/**/.npm/registry.npmjs.org/concat-map/.cache.json
773 silly resolveWithNewModule [email protected] checking installable status
774 silly cache add args [ 'balanced-match@^0.2.0', null ]
775 verbose cache add spec balanced-match@^0.2.0
776 silly cache add parsed spec Result {
776 silly cache add   raw: 'balanced-match@^0.2.0',
776 silly cache add   scope: null,
776 silly cache add   name: 'balanced-match',
776 silly cache add   rawSpec: '^0.2.0',
776 silly cache add   spec: '>=0.2.0 <0.3.0',
776 silly cache add   type: 'range' }
777 silly addNamed balanced-match@>=0.2.0 <0.3.0
778 verbose addNamed ">=0.2.0 <0.3.0" is a valid semver range for balanced-match
779 silly addNameRange { name: 'balanced-match',
779 silly addNameRange   range: '>=0.2.0 <0.3.0',
779 silly addNameRange   hasData: false }
780 silly mapToRegistry name balanced-match
781 silly mapToRegistry using default registry
782 silly mapToRegistry registry https://registry.npmjs.org/
783 silly mapToRegistry uri https://registry.npmjs.org/balanced-match
784 verbose addNameRange registry:https://registry.npmjs.org/balanced-match not in flight; fetching
785 silly resolveWithNewModule [email protected] checking installable status
786 silly cache add args [ '[email protected]', null ]
787 verbose cache add spec [email protected]
788 silly cache add parsed spec Result {
788 silly cache add   raw: '[email protected]',
788 silly cache add   scope: null,
788 silly cache add   name: 'concat-map',
788 silly cache add   rawSpec: '0.0.1',
788 silly cache add   spec: '0.0.1',
788 silly cache add   type: 'version' }
789 silly addNamed [email protected]
790 verbose addNamed "0.0.1" is a plain semver version for concat-map
791 silly mapToRegistry name concat-map
792 silly mapToRegistry using default registry
793 silly mapToRegistry registry https://registry.npmjs.org/
794 silly mapToRegistry uri https://registry.npmjs.org/concat-map
795 verbose addNameVersion registry:https://registry.npmjs.org/concat-map not in flight; fetching
796 verbose get https://registry.npmjs.org/balanced-match not expired, no request
797 silly addNameRange number 2 { name: 'balanced-match',
797 silly addNameRange   range: '>=0.2.0 <0.3.0',
797 silly addNameRange   hasData: true }
798 silly addNameRange versions [ 'balanced-match', [ '0.0.0', '0.0.1', '0.1.0', '0.2.0' ] ]
799 silly addNamed [email protected]
800 verbose addNamed "0.2.0" is a plain semver version for balanced-match
801 verbose get https://registry.npmjs.org/concat-map not expired, no request
802 silly cache afterAdd [email protected]
803 verbose afterAdd /Users/**/.npm/balanced-match/0.2.0/package/package.json not in flight; writing
804 silly cache afterAdd [email protected]
805 verbose afterAdd /Users/**/.npm/concat-map/0.0.1/package/package.json not in flight; writing
806 verbose afterAdd /Users/**/.npm/balanced-match/0.2.0/package/package.json written
807 verbose afterAdd /Users/**/.npm/concat-map/0.0.1/package/package.json written
808 silly fetchNamedPackageData block-stream
809 silly mapToRegistry name block-stream
810 silly mapToRegistry using default registry
811 silly mapToRegistry registry https://registry.npmjs.org/
812 silly mapToRegistry uri https://registry.npmjs.org/block-stream
813 verbose request uri https://registry.npmjs.org/block-stream
814 verbose request no auth needed
815 info attempt registry request try #1 at 11:05:52 AM
816 verbose etag "C7OJPKZD1OK2WI9TVJ794V0P5"
817 http request GET https://registry.npmjs.org/block-stream
818 http 304 https://registry.npmjs.org/block-stream
819 verbose headers { date: 'Mon, 19 Oct 2015 08:05:52 GMT',
819 verbose headers   via: '1.1 varnish',
819 verbose headers   'cache-control': 'max-age=60',
819 verbose headers   etag: '"C7OJPKZD1OK2WI9TVJ794V0P5"',
819 verbose headers   age: '47',
819 verbose headers   connection: 'keep-alive',
819 verbose headers   'x-served-by': 'cache-lhr6327-LHR',
819 verbose headers   'x-cache': 'HIT',
819 verbose headers   'x-cache-hits': '1',
819 verbose headers   'x-timer': 'S1445241952.545470,VS0,VE1',
819 verbose headers   vary: 'Accept' }
820 silly get cb [ 304,
820 silly get   { date: 'Mon, 19 Oct 2015 08:05:52 GMT',
820 silly get     via: '1.1 varnish',
820 silly get     'cache-control': 'max-age=60',
820 silly get     etag: '"C7OJPKZD1OK2WI9TVJ794V0P5"',
820 silly get     age: '47',
820 silly get     connection: 'keep-alive',
820 silly get     'x-served-by': 'cache-lhr6327-LHR',
820 silly get     'x-cache': 'HIT',
820 silly get     'x-cache-hits': '1',
820 silly get     'x-timer': 'S1445241952.545470,VS0,VE1',
820 silly get     vary: 'Accept' } ]
821 verbose etag https://registry.npmjs.org/block-stream from cache
822 verbose get saving block-stream to /Users/**/.npm/registry.npmjs.org/block-stream/.cache.json
823 silly resolveWithNewModule [email protected] checking installable status
824 silly cache add args [ 'block-stream@*', null ]
825 verbose cache add spec block-stream@*
826 silly cache add parsed spec Result {
826 silly cache add   raw: 'block-stream@*',
826 silly cache add   scope: null,
826 silly cache add   name: 'block-stream',
826 silly cache add   rawSpec: '*',
826 silly cache add   spec: '*',
826 silly cache add   type: 'range' }
827 silly addNamed block-stream@*
828 verbose addNamed "*" is a valid semver range for block-stream
829 silly addNameRange { name: 'block-stream', range: '*', hasData: false }
830 silly mapToRegistry name block-stream
831 silly mapToRegistry using default registry
832 silly mapToRegistry registry https://registry.npmjs.org/
833 silly mapToRegistry uri https://registry.npmjs.org/block-stream
834 verbose addNameRange registry:https://registry.npmjs.org/block-stream not in flight; fetching
835 verbose get https://registry.npmjs.org/block-stream not expired, no request
836 silly addNameRange number 2 { name: 'block-stream', range: '*', hasData: true }
837 silly addNameRange versions [ 'block-stream',
837 silly addNameRange   [ '0.0.3', '0.0.4', '0.0.5', '0.0.6', '0.0.7', '0.0.8' ] ]
838 silly addNamed [email protected]
839 verbose addNamed "0.0.8" is a plain semver version for block-stream
840 silly cache afterAdd [email protected]
841 verbose afterAdd /Users/**/.npm/block-stream/0.0.8/package/package.json not in flight; writing
842 verbose afterAdd /Users/**/.npm/block-stream/0.0.8/package/package.json written
843 silly loadAllDepsIntoIdealTree Finishing
844 silly idealTree:prePrune [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├─┬ [email protected]
844 silly idealTree:prePrune │ ├── [email protected]
844 silly idealTree:prePrune │ ├── [email protected]
844 silly idealTree:prePrune │ └── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├─┬ [email protected]
844 silly idealTree:prePrune │ └── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├─┬ [email protected]
844 silly idealTree:prePrune │ └── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├─┬ [email protected]
844 silly idealTree:prePrune │ └─┬ [email protected]
844 silly idealTree:prePrune │   ├─┬ [email protected]
844 silly idealTree:prePrune │   │ └── [email protected]
844 silly idealTree:prePrune │   ├─┬ [email protected]
844 silly idealTree:prePrune │   │ └── [email protected]
844 silly idealTree:prePrune │   ├─┬ [email protected]
844 silly idealTree:prePrune │   │ ├── [email protected]
844 silly idealTree:prePrune │   │ ├─┬ [email protected]
844 silly idealTree:prePrune │   │ │ ├── [email protected]
844 silly idealTree:prePrune │   │ │ └─┬ [email protected]
844 silly idealTree:prePrune │   │ │   ├── [email protected]
844 silly idealTree:prePrune │   │ │   ├── [email protected]
844 silly idealTree:prePrune │   │ │   ├── [email protected]
844 silly idealTree:prePrune │   │ │   └── [email protected]
844 silly idealTree:prePrune │   │ └─┬ [email protected]
844 silly idealTree:prePrune │   │   ├── [email protected]
844 silly idealTree:prePrune │   │   ├─┬ [email protected]
844 silly idealTree:prePrune │   │   │ ├── [email protected]
844 silly idealTree:prePrune │   │   │ └─┬ [email protected]
844 silly idealTree:prePrune │   │   │   └── [email protected]
844 silly idealTree:prePrune │   │   ├─┬ [email protected]
844 silly idealTree:prePrune │   │   │ ├── [email protected]
844 silly idealTree:prePrune │   │   │ └─┬ [email protected]
844 silly idealTree:prePrune │   │   │   └── [email protected]
844 silly idealTree:prePrune │   │   └─┬ [email protected]
844 silly idealTree:prePrune │   │     ├── [email protected]
844 silly idealTree:prePrune │   │     └─┬ [email protected]
844 silly idealTree:prePrune │   │       └── [email protected]
844 silly idealTree:prePrune │   ├─┬ [email protected]
844 silly idealTree:prePrune │   │ ├── [email protected]
844 silly idealTree:prePrune │   │ ├── [email protected]
844 silly idealTree:prePrune │   │ ├── [email protected]
844 silly idealTree:prePrune │   │ └── [email protected]
844 silly idealTree:prePrune │   ├─┬ [email protected]
844 silly idealTree:prePrune │   │ ├── [email protected]
844 silly idealTree:prePrune │   │ ├─┬ [email protected]
844 silly idealTree:prePrune │   │ │ └─┬ [email protected]
844 silly idealTree:prePrune │   │ │   ├── [email protected]
844 silly idealTree:prePrune │   │ │   ├── [email protected]
844 silly idealTree:prePrune │   │ │   ├── [email protected]
844 silly idealTree:prePrune │   │ │   ├── [email protected]
844 silly idealTree:prePrune │   │ │   ├── [email protected]
844 silly idealTree:prePrune │   │ │   └── [email protected]
844 silly idealTree:prePrune │   │ ├── [email protected]
844 silly idealTree:prePrune │   │ ├─┬ [email protected]
844 silly idealTree:prePrune │   │ │ └── [email protected]
844 silly idealTree:prePrune │   │ ├── [email protected]
844 silly idealTree:prePrune │   │ ├── [email protected]
844 silly idealTree:prePrune │   │ ├─┬ [email protected]
844 silly idealTree:prePrune │   │ │ └── [email protected]
844 silly idealTree:prePrune │   │ ├─┬ [email protected]
844 silly idealTree:prePrune │   │ │ ├── [email protected]
844 silly idealTree:prePrune │   │ │ ├─┬ [email protected]
844 silly idealTree:prePrune │   │ │ │ ├── [email protected]
844 silly idealTree:prePrune │   │ │ │ ├── [email protected]
844 silly idealTree:prePrune │   │ │ │ ├─┬ [email protected]
844 silly idealTree:prePrune │   │ │ │ │ └── [email protected]
844 silly idealTree:prePrune │   │ │ │ ├─┬ [email protected]
844 silly idealTree:prePrune │   │ │ │ │ └── [email protected]
844 silly idealTree:prePrune │   │ │ │ └── [email protected]
844 silly idealTree:prePrune │   │ │ ├─┬ [email protected]
844 silly idealTree:prePrune │   │ │ │ └── [email protected]
844 silly idealTree:prePrune │   │ │ └─┬ [email protected]
844 silly idealTree:prePrune │   │ │   ├── [email protected]
844 silly idealTree:prePrune │   │ │   ├─┬ [email protected]
844 silly idealTree:prePrune │   │ │   │ └── [email protected]
844 silly idealTree:prePrune │   │ │   ├── [email protected]
844 silly idealTree:prePrune │   │ │   └── [email protected]
844 silly idealTree:prePrune │   │ ├─┬ [email protected]
844 silly idealTree:prePrune │   │ │ ├── [email protected]
844 silly idealTree:prePrune │   │ │ ├── [email protected]
844 silly idealTree:prePrune │   │ │ ├── [email protected]
844 silly idealTree:prePrune │   │ │ └── [email protected]
844 silly idealTree:prePrune │   │ ├─┬ [email protected]
844 silly idealTree:prePrune │   │ │ ├── [email protected]
844 silly idealTree:prePrune │   │ │ ├── [email protected]
844 silly idealTree:prePrune │   │ │ └── [email protected]
844 silly idealTree:prePrune │   │ ├── [email protected]
844 silly idealTree:prePrune │   │ ├── [email protected]
844 silly idealTree:prePrune │   │ ├─┬ [email protected]
844 silly idealTree:prePrune │   │ │ └── [email protected]
844 silly idealTree:prePrune │   │ ├── [email protected]
844 silly idealTree:prePrune │   │ ├── [email protected]
844 silly idealTree:prePrune │   │ ├── [email protected]
844 silly idealTree:prePrune │   │ ├── [email protected]
844 silly idealTree:prePrune │   │ ├── [email protected]
844 silly idealTree:prePrune │   │ └── [email protected]
844 silly idealTree:prePrune │   ├─┬ [email protected]
844 silly idealTree:prePrune │   │ └─┬ [email protected]
844 silly idealTree:prePrune │   │   ├─┬ [email protected]
844 silly idealTree:prePrune │   │   │ └── [email protected]
844 silly idealTree:prePrune │   │   ├── [email protected]
844 silly idealTree:prePrune │   │   ├─┬ [email protected]
844 silly idealTree:prePrune │   │   │ └─┬ [email protected]
844 silly idealTree:prePrune │   │   │   ├── [email protected]
844 silly idealTree:prePrune │   │   │   └── [email protected]
844 silly idealTree:prePrune │   │   ├─┬ [email protected]
844 silly idealTree:prePrune │   │   │ └── [email protected]
844 silly idealTree:prePrune │   │   └── [email protected]
844 silly idealTree:prePrune │   ├── [email protected]
844 silly idealTree:prePrune │   ├─┬ [email protected]
844 silly idealTree:prePrune │   │ ├── [email protected]
844 silly idealTree:prePrune │   │ ├─┬ [email protected]
844 silly idealTree:prePrune │   │ │ ├── [email protected]
844 silly idealTree:prePrune │   │ │ └─┬ [email protected]
844 silly idealTree:prePrune │   │ │   ├── [email protected]
844 silly idealTree:prePrune │   │ │   └── [email protected]
844 silly idealTree:prePrune │   │ ├─┬ [email protected]
844 silly idealTree:prePrune │   │ │ ├── [email protected]
844 silly idealTree:prePrune │   │ │ └── [email protected]
844 silly idealTree:prePrune │   │ ├── [email protected]
844 silly idealTree:prePrune │   │ ├── [email protected]
844 silly idealTree:prePrune │   │ ├─┬ [email protected]
844 silly idealTree:prePrune │   │ │ ├── [email protected]
844 silly idealTree:prePrune │   │ │ ├── [email protected]
844 silly idealTree:prePrune │   │ │ ├── [email protected]
844 silly idealTree:prePrune │   │ │ └── [email protected]
844 silly idealTree:prePrune │   │ ├── [email protected]
844 silly idealTree:prePrune │   │ ├─┬ [email protected]
844 silly idealTree:prePrune │   │ │ ├── [email protected]
844 silly idealTree:prePrune │   │ │ └── [email protected]
844 silly idealTree:prePrune │   │ └── [email protected]
844 silly idealTree:prePrune │   └─┬ [email protected]
844 silly idealTree:prePrune │     ├── [email protected]
844 silly idealTree:prePrune │     ├─┬ [email protected]
844 silly idealTree:prePrune │     │ └── [email protected]
844 silly idealTree:prePrune │     └── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune ├── [email protected]
844 silly idealTree:prePrune └── [email protected]
845 silly loadIdealTree Finishing
846 silly currentTree [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├─┬ [email protected]
846 silly currentTree │ ├── [email protected]
846 silly currentTree │ ├── [email protected]
846 silly currentTree │ └── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├─┬ [email protected]
846 silly currentTree │ └─┬ [email protected]
846 silly currentTree │   ├─┬ [email protected]
846 silly currentTree │   │ └── [email protected]
846 silly currentTree │   ├─┬ [email protected]
846 silly currentTree │   │ └── [email protected]
846 silly currentTree │   ├─┬ [email protected]
846 silly currentTree │   │ ├── [email protected]
846 silly currentTree │   │ ├─┬ [email protected]
846 silly currentTree │   │ │ ├── [email protected]
846 silly currentTree │   │ │ └─┬ [email protected]
846 silly currentTree │   │ │   ├── [email protected]
846 silly currentTree │   │ │   ├── [email protected]
846 silly currentTree │   │ │   ├── [email protected]
846 silly currentTree │   │ │   └── [email protected]
846 silly currentTree │   │ └─┬ [email protected]
846 silly currentTree │   │   ├── [email protected]
846 silly currentTree │   │   ├─┬ [email protected]
846 silly currentTree │   │   │ ├── [email protected]
846 silly currentTree │   │   │ └─┬ [email protected]
846 silly currentTree │   │   │   └── [email protected]
846 silly currentTree │   │   ├─┬ [email protected]
846 silly currentTree │   │   │ ├── [email protected]
846 silly currentTree │   │   │ └─┬ [email protected]
846 silly currentTree │   │   │   └── [email protected]
846 silly currentTree │   │   └─┬ [email protected]
846 silly currentTree │   │     ├── [email protected]
846 silly currentTree │   │     └─┬ [email protected]
846 silly currentTree │   │       └── [email protected]
846 silly currentTree │   ├─┬ [email protected]
846 silly currentTree │   │ ├── [email protected]
846 silly currentTree │   │ ├── [email protected]
846 silly currentTree │   │ ├── [email protected]
846 silly currentTree │   │ └── [email protected]
846 silly currentTree │   ├─┬ [email protected]
846 silly currentTree │   │ ├── [email protected]
846 silly currentTree │   │ ├─┬ [email protected]
846 silly currentTree │   │ │ └─┬ [email protected]
846 silly currentTree │   │ │   ├── [email protected]
846 silly currentTree │   │ │   ├── [email protected]
846 silly currentTree │   │ │   ├── [email protected]
846 silly currentTree │   │ │   ├── [email protected]
846 silly currentTree │   │ │   ├── [email protected]
846 silly currentTree │   │ │   └── [email protected]
846 silly currentTree │   │ ├── [email protected]
846 silly currentTree │   │ ├─┬ [email protected]
846 silly currentTree │   │ │ └── [email protected]
846 silly currentTree │   │ ├── [email protected]
846 silly currentTree │   │ ├── [email protected]
846 silly currentTree │   │ ├─┬ [email protected]
846 silly currentTree │   │ │ └── [email protected]
846 silly currentTree │   │ ├─┬ [email protected]
846 silly currentTree │   │ │ ├── [email protected]
846 silly currentTree │   │ │ ├─┬ [email protected]
846 silly currentTree │   │ │ │ ├── [email protected]
846 silly currentTree │   │ │ │ ├── [email protected]
846 silly currentTree │   │ │ │ ├─┬ [email protected]
846 silly currentTree │   │ │ │ │ └── [email protected]
846 silly currentTree │   │ │ │ ├─┬ [email protected]
846 silly currentTree │   │ │ │ │ └── [email protected]
846 silly currentTree │   │ │ │ └── [email protected]
846 silly currentTree │   │ │ ├─┬ [email protected]
846 silly currentTree │   │ │ │ └── [email protected]
846 silly currentTree │   │ │ └─┬ [email protected]
846 silly currentTree │   │ │   ├── [email protected]
846 silly currentTree │   │ │   ├─┬ [email protected]
846 silly currentTree │   │ │   │ └── [email protected]
846 silly currentTree │   │ │   ├── [email protected]
846 silly currentTree │   │ │   └── [email protected]
846 silly currentTree │   │ ├─┬ [email protected]
846 silly currentTree │   │ │ ├── [email protected]
846 silly currentTree │   │ │ ├── [email protected]
846 silly currentTree │   │ │ ├── [email protected]
846 silly currentTree │   │ │ └── [email protected]
846 silly currentTree │   │ ├─┬ [email protected]
846 silly currentTree │   │ │ ├── [email protected]
846 silly currentTree │   │ │ ├── [email protected]
846 silly currentTree │   │ │ └── [email protected]
846 silly currentTree │   │ ├── [email protected]
846 silly currentTree │   │ ├── [email protected]
846 silly currentTree │   │ ├─┬ [email protected]
846 silly currentTree │   │ │ └── [email protected]
846 silly currentTree │   │ ├── [email protected]
846 silly currentTree │   │ ├── [email protected]
846 silly currentTree │   │ ├── [email protected]
846 silly currentTree │   │ ├── [email protected]
846 silly currentTree │   │ ├── [email protected]
846 silly currentTree │   │ └── [email protected]
846 silly currentTree │   ├─┬ [email protected]
846 silly currentTree │   │ └─┬ [email protected]
846 silly currentTree │   │   ├─┬ [email protected]
846 silly currentTree │   │   │ └── [email protected]
846 silly currentTree │   │   ├── [email protected]
846 silly currentTree │   │   ├─┬ [email protected]
846 silly currentTree │   │   │ └─┬ [email protected]
846 silly currentTree │   │   │   ├── [email protected]
846 silly currentTree │   │   │   └── [email protected]
846 silly currentTree │   │   ├─┬ [email protected]
846 silly currentTree │   │   │ └── [email protected]
846 silly currentTree │   │   └── [email protected]
846 silly currentTree │   ├── [email protected]
846 silly currentTree │   ├─┬ [email protected]
846 silly currentTree │   │ ├── [email protected]
846 silly currentTree │   │ ├─┬ [email protected]
846 silly currentTree │   │ │ ├── [email protected]
846 silly currentTree │   │ │ └─┬ [email protected]
846 silly currentTree │   │ │   ├── [email protected]
846 silly currentTree │   │ │   └── [email protected]
846 silly currentTree │   │ ├─┬ [email protected]
846 silly currentTree │   │ │ ├── [email protected]
846 silly currentTree │   │ │ └── [email protected]
846 silly currentTree │   │ ├── [email protected]
846 silly currentTree │   │ ├── [email protected]
846 silly currentTree │   │ ├─┬ [email protected]
846 silly currentTree │   │ │ ├── [email protected]
846 silly currentTree │   │ │ ├── [email protected]
846 silly currentTree │   │ │ ├── [email protected]
846 silly currentTree │   │ │ └── [email protected]
846 silly currentTree │   │ ├── [email protected]
846 silly currentTree │   │ ├─┬ [email protected]
846 silly currentTree │   │ │ ├── [email protected]
846 silly currentTree │   │ │ └── [email protected]
846 silly currentTree │   │ └── [email protected]
846 silly currentTree │   └─┬ [email protected]
846 silly currentTree │     ├── [email protected]
846 silly currentTree │     ├─┬ [email protected]
846 silly currentTree │     │ └── [email protected]
846 silly currentTree │     └── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree ├── [email protected]
846 silly currentTree └── [email protected]
847 silly idealTree [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├─┬ [email protected]
847 silly idealTree │ ├── [email protected]
847 silly idealTree │ ├── [email protected]
847 silly idealTree │ └── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├─┬ [email protected]
847 silly idealTree │ └── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├─┬ [email protected]
847 silly idealTree │ └── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├─┬ [email protected]
847 silly idealTree │ └─┬ [email protected]
847 silly idealTree │   ├─┬ [email protected]
847 silly idealTree │   │ └── [email protected]
847 silly idealTree │   ├─┬ [email protected]
847 silly idealTree │   │ └── [email protected]
847 silly idealTree │   ├─┬ [email protected]
847 silly idealTree │   │ ├── [email protected]
847 silly idealTree │   │ ├─┬ [email protected]
847 silly idealTree │   │ │ ├── [email protected]
847 silly idealTree │   │ │ └─┬ [email protected]
847 silly idealTree │   │ │   ├── [email protected]
847 silly idealTree │   │ │   ├── [email protected]
847 silly idealTree │   │ │   ├── [email protected]
847 silly idealTree │   │ │   └── [email protected]
847 silly idealTree │   │ └─┬ [email protected]
847 silly idealTree │   │   ├── [email protected]
847 silly idealTree │   │   ├─┬ [email protected]
847 silly idealTree │   │   │ ├── [email protected]
847 silly idealTree │   │   │ └─┬ [email protected]
847 silly idealTree │   │   │   └── [email protected]
847 silly idealTree │   │   ├─┬ [email protected]
847 silly idealTree │   │   │ ├── [email protected]
847 silly idealTree │   │   │ └─┬ [email protected]
847 silly idealTree │   │   │   └── [email protected]
847 silly idealTree │   │   └─┬ [email protected]
847 silly idealTree │   │     ├── [email protected]
847 silly idealTree │   │     └─┬ [email protected]
847 silly idealTree │   │       └── [email protected]
847 silly idealTree │   ├─┬ [email protected]
847 silly idealTree │   │ ├── [email protected]
847 silly idealTree │   │ ├── [email protected]
847 silly idealTree │   │ ├── [email protected]
847 silly idealTree │   │ └── [email protected]
847 silly idealTree │   ├─┬ [email protected]
847 silly idealTree │   │ ├── [email protected]
847 silly idealTree │   │ ├─┬ [email protected]
847 silly idealTree │   │ │ └─┬ [email protected]
847 silly idealTree │   │ │   ├── [email protected]
847 silly idealTree │   │ │   ├── [email protected]
847 silly idealTree │   │ │   ├── [email protected]
847 silly idealTree │   │ │   ├── [email protected]
847 silly idealTree │   │ │   ├── [email protected]
847 silly idealTree │   │ │   └── [email protected]
847 silly idealTree │   │ ├── [email protected]
847 silly idealTree │   │ ├─┬ [email protected]
847 silly idealTree │   │ │ └── [email protected]
847 silly idealTree │   │ ├── [email protected]
847 silly idealTree │   │ ├── [email protected]
847 silly idealTree │   │ ├─┬ [email protected]
847 silly idealTree │   │ │ └── [email protected]
847 silly idealTree │   │ ├─┬ [email protected]
847 silly idealTree │   │ │ ├── [email protected]
847 silly idealTree │   │ │ ├─┬ [email protected]
847 silly idealTree │   │ │ │ ├── [email protected]
847 silly idealTree │   │ │ │ ├── [email protected]
847 silly idealTree │   │ │ │ ├─┬ [email protected]
847 silly idealTree │   │ │ │ │ └── [email protected]
847 silly idealTree │   │ │ │ ├─┬ [email protected]
847 silly idealTree │   │ │ │ │ └── [email protected]
847 silly idealTree │   │ │ │ └── [email protected]
847 silly idealTree │   │ │ ├─┬ [email protected]
847 silly idealTree │   │ │ │ └── [email protected]
847 silly idealTree │   │ │ └─┬ [email protected]
847 silly idealTree │   │ │   ├── [email protected]
847 silly idealTree │   │ │   ├─┬ [email protected]
847 silly idealTree │   │ │   │ └── [email protected]
847 silly idealTree │   │ │   ├── [email protected]
847 silly idealTree │   │ │   └── [email protected]
847 silly idealTree │   │ ├─┬ [email protected]
847 silly idealTree │   │ │ ├── [email protected]
847 silly idealTree │   │ │ ├── [email protected]
847 silly idealTree │   │ │ ├── [email protected]
847 silly idealTree │   │ │ └── [email protected]
847 silly idealTree │   │ ├─┬ [email protected]
847 silly idealTree │   │ │ ├── [email protected]
847 silly idealTree │   │ │ ├── [email protected]
847 silly idealTree │   │ │ └── [email protected]
847 silly idealTree │   │ ├── [email protected]
847 silly idealTree │   │ ├── [email protected]
847 silly idealTree │   │ ├─┬ [email protected]
847 silly idealTree │   │ │ └── [email protected]
847 silly idealTree │   │ ├── [email protected]
847 silly idealTree │   │ ├── [email protected]
847 silly idealTree │   │ ├── [email protected]
847 silly idealTree │   │ ├── [email protected]
847 silly idealTree │   │ ├── [email protected]
847 silly idealTree │   │ └── [email protected]
847 silly idealTree │   ├─┬ [email protected]
847 silly idealTree │   │ └─┬ [email protected]
847 silly idealTree │   │   ├─┬ [email protected]
847 silly idealTree │   │   │ └── [email protected]
847 silly idealTree │   │   ├── [email protected]
847 silly idealTree │   │   ├─┬ [email protected]
847 silly idealTree │   │   │ └─┬ [email protected]
847 silly idealTree │   │   │   ├── [email protected]
847 silly idealTree │   │   │   └── [email protected]
847 silly idealTree │   │   ├─┬ [email protected]
847 silly idealTree │   │   │ └── [email protected]
847 silly idealTree │   │   └── [email protected]
847 silly idealTree │   ├── [email protected]
847 silly idealTree │   ├─┬ [email protected]
847 silly idealTree │   │ ├── [email protected]
847 silly idealTree │   │ ├─┬ [email protected]
847 silly idealTree │   │ │ ├── [email protected]
847 silly idealTree │   │ │ └─┬ [email protected]
847 silly idealTree │   │ │   ├── [email protected]
847 silly idealTree │   │ │   └── [email protected]
847 silly idealTree │   │ ├─┬ [email protected]
847 silly idealTree │   │ │ ├── [email protected]
847 silly idealTree │   │ │ └── [email protected]
847 silly idealTree │   │ ├── [email protected]
847 silly idealTree │   │ ├── [email protected]
847 silly idealTree │   │ ├─┬ [email protected]
847 silly idealTree │   │ │ ├── [email protected]
847 silly idealTree │   │ │ ├── [email protected]
847 silly idealTree │   │ │ ├── [email protected]
847 silly idealTree │   │ │ └── [email protected]
847 silly idealTree │   │ ├── [email protected]
847 silly idealTree │   │ ├─┬ [email protected]
847 silly idealTree │   │ │ ├── [email protected]
847 silly idealTree │   │ │ └── [email protected]
847 silly idealTree │   │ └── [email protected]
847 silly idealTree │   └─┬ [email protected]
847 silly idealTree │     ├── [email protected]
847 silly idealTree │     ├─┬ [email protected]
847 silly idealTree │     │ └── [email protected]
847 silly idealTree │     └── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree ├── [email protected]
847 silly idealTree └── [email protected]
848 silly generateActionsToTake Starting
849 silly install generateActionsToTake
850 silly generateActionsToTake Finishing
851 silly diffTrees action count 22
852 silly diffTrees add [email protected]
853 silly diffTrees add [email protected]
854 silly diffTrees add [email protected]
855 silly diffTrees add [email protected]
856 silly diffTrees add [email protected]
857 silly diffTrees add [email protected]
858 silly diffTrees add [email protected]
859 silly diffTrees add [email protected]
860 silly diffTrees add [email protected]
861 silly diffTrees add [email protected]
862 silly diffTrees add [email protected]
863 silly diffTrees add [email protected]
864 silly diffTrees add [email protected]
865 silly diffTrees add [email protected]
866 silly diffTrees add [email protected]
867 silly diffTrees add [email protected]
868 silly diffTrees add [email protected]
869 silly diffTrees add [email protected]
870 silly diffTrees add [email protected]
871 silly diffTrees add [email protected]
872 silly diffTrees add [email protected]
873 silly diffTrees add [email protected]
874 silly decomposeActions action count 176
875 silly decomposeActions fetch [email protected]
876 silly decomposeActions extract [email protected]
877 silly decomposeActions preinstall [email protected]
878 silly decomposeActions build [email protected]
879 silly decomposeActions install [email protected]
880 silly decomposeActions postinstall [email protected]
881 silly decomposeActions test [email protected]
882 silly decomposeActions finalize [email protected]
883 silly decomposeActions fetch [email protected]
884 silly decomposeActions extract [email protected]
885 silly decomposeActions preinstall [email protected]
886 silly decomposeActions build [email protected]
887 silly decomposeActions install [email protected]
888 silly decomposeActions postinstall [email protected]
889 silly decomposeActions test [email protected]
890 silly decomposeActions finalize [email protected]
891 silly decomposeActions fetch [email protected]
892 silly decomposeActions extract [email protected]
893 silly decomposeActions preinstall [email protected]
894 silly decomposeActions build [email protected]
895 silly decomposeActions install [email protected]
896 silly decomposeActions postinstall [email protected]
897 silly decomposeActions test [email protected]
898 silly decomposeActions finalize [email protected]
899 silly decomposeActions fetch [email protected]
900 silly decomposeActions extract [email protected]
901 silly decomposeActions preinstall [email protected]
902 silly decomposeActions build [email protected]
903 silly decomposeActions install [email protected]
904 silly decomposeActions postinstall [email protected]
905 silly decomposeActions test [email protected]
906 silly decomposeActions finalize [email protected]
907 silly decomposeActions fetch [email protected]
908 silly decomposeActions extract [email protected]
909 silly decomposeActions preinstall [email protected]
910 silly decomposeActions build [email protected]
911 silly decomposeActions install [email protected]
912 silly decomposeActions postinstall [email protected]
913 silly decomposeActions test [email protected]
914 silly decomposeActions finalize [email protected]
915 silly decomposeActions fetch [email protected]
916 silly decomposeActions extract [email protected]
917 silly decomposeActions preinstall [email protected]
918 silly decomposeActions build [email protected]
919 silly decomposeActions install [email protected]
920 silly decomposeActions postinstall [email protected]
921 silly decomposeActions test [email protected]
922 silly decomposeActions finalize [email protected]
923 silly decomposeActions fetch [email protected]
924 silly decomposeActions extract [email protected]
925 silly decomposeActions preinstall [email protected]
926 silly decomposeActions build [email protected]
927 silly decomposeActions install [email protected]
928 silly decomposeActions postinstall [email protected]
929 silly decomposeActions test [email protected]
930 silly decomposeActions finalize [email protected]
931 silly decomposeActions fetch [email protected]
932 silly decomposeActions extract [email protected]
933 silly decomposeActions preinstall [email protected]
934 silly decomposeActions build [email protected]
935 silly decomposeActions install [email protected]
936 silly decomposeActions postinstall [email protected]
937 silly decomposeActions test [email protected]
938 silly decomposeActions finalize [email protected]
939 silly decomposeActions fetch [email protected]
940 silly decomposeActions extract [email protected]
941 silly decomposeActions preinstall [email protected]
942 silly decomposeActions build [email protected]
943 silly decomposeActions install [email protected]
944 silly decomposeActions postinstall [email protected]
945 silly decomposeActions test [email protected]
946 silly decomposeActions finalize [email protected]
947 silly decomposeActions fetch [email protected]
948 silly decomposeActions extract [email protected]
949 silly decomposeActions preinstall [email protected]
950 silly decomposeActions build [email protected]
951 silly decomposeActions install [email protected]
952 silly decomposeActions postinstall [email protected]
953 silly decomposeActions test [email protected]
954 silly decomposeActions finalize [email protected]
955 silly decomposeActions fetch [email protected]
956 silly decomposeActions extract [email protected]
957 silly decomposeActions preinstall [email protected]
958 silly decomposeActions build [email protected]
959 silly decomposeActions install [email protected]
960 silly decomposeActions postinstall [email protected]
961 silly decomposeActions test [email protected]
962 silly decomposeActions finalize [email protected]
963 silly decomposeActions fetch [email protected]
964 silly decomposeActions extract [email protected]
965 silly decomposeActions preinstall [email protected]
966 silly decomposeActions build [email protected]
967 silly decomposeActions install [email protected]
968 silly decomposeActions postinstall [email protected]
969 silly decomposeActions test [email protected]
970 silly decomposeActions finalize [email protected]
971 silly decomposeActions fetch [email protected]
972 silly decomposeActions extract [email protected]
973 silly decomposeActions preinstall [email protected]
974 silly decomposeActions build [email protected]
975 silly decomposeActions install [email protected]
976 silly decomposeActions postinstall [email protected]
977 silly decomposeActions test [email protected]
978 silly decomposeActions finalize [email protected]
979 silly decomposeActions fetch [email protected]
980 silly decomposeActions extract [email protected]
981 silly decomposeActions preinstall [email protected]
982 silly decomposeActions build [email protected]
983 silly decomposeActions install [email protected]
984 silly decomposeActions postinstall [email protected]
985 silly decomposeActions test [email protected]
986 silly decomposeActions finalize [email protected]
987 silly decomposeActions fetch [email protected]
988 silly decomposeActions extract [email protected]
989 silly decomposeActions preinstall [email protected]
990 silly decomposeActions build [email protected]
991 silly decomposeActions install [email protected]
992 silly decomposeActions postinstall [email protected]
993 silly decomposeActions test [email protected]
994 silly decomposeActions finalize [email protected]
995 silly decomposeActions fetch [email protected]
996 silly decomposeActions extract [email protected]
997 silly decomposeActions preinstall [email protected]
998 silly decomposeActions build [email protected]
999 silly decomposeActions install [email protected]
1000 silly decomposeActions postinstall [email protected]
1001 silly decomposeActions test [email protected]
1002 silly decomposeActions finalize [email protected]
1003 silly decomposeActions fetch [email protected]
1004 silly decomposeActions extract [email protected]
1005 silly decomposeActions preinstall [email protected]
1006 silly decomposeActions build [email protected]
1007 silly decomposeActions install [email protected]
1008 silly decomposeActions postinstall [email protected]
1009 silly decomposeActions test [email protected]
1010 silly decomposeActions finalize [email protected]
1011 silly decomposeActions fetch [email protected]
1012 silly decomposeActions extract [email protected]
1013 silly decomposeActions preinstall [email protected]
1014 silly decomposeActions build [email protected]
1015 silly decomposeActions install [email protected]
1016 silly decomposeActions postinstall [email protected]
1017 silly decomposeActions test [email protected]
1018 silly decomposeActions finalize [email protected]
1019 silly decomposeActions fetch [email protected]
1020 silly decomposeActions extract [email protected]
1021 silly decomposeActions preinstall [email protected]
1022 silly decomposeActions build [email protected]
1023 silly decomposeActions install [email protected]
1024 silly decomposeActions postinstall [email protected]
1025 silly decomposeActions test [email protected]
1026 silly decomposeActions finalize [email protected]
1027 silly decomposeActions fetch [email protected]
1028 silly decomposeActions extract [email protected]
1029 silly decomposeActions preinstall [email protected]
1030 silly decomposeActions build [email protected]
1031 silly decomposeActions install [email protected]
1032 silly decomposeActions postinstall [email protected]
1033 silly decomposeActions test [email protected]
1034 silly decomposeActions finalize [email protected]
1035 silly decomposeActions fetch [email protected]
1036 silly decomposeActions extract [email protected]
1037 silly decomposeActions preinstall [email protected]
1038 silly decomposeActions build [email protected]
1039 silly decomposeActions install [email protected]
1040 silly decomposeActions postinstall [email protected]
1041 silly decomposeActions test [email protected]
1042 silly decomposeActions finalize [email protected]
1043 silly decomposeActions fetch [email protected]
1044 silly decomposeActions extract [email protected]
1045 silly decomposeActions preinstall [email protected]
1046 silly decomposeActions build [email protected]
1047 silly decomposeActions install [email protected]
1048 silly decomposeActions postinstall [email protected]
1049 silly decomposeActions test [email protected]
1050 silly decomposeActions finalize [email protected]
1051 silly executeActions Starting
1052 silly install executeActions
1053 silly doSerial global-install 0
1054 silly doParallel fetch 22
1055 verbose lock using /Users/**/.npm/_locks/staging-e8797dd316fd2098.lock for /Users/**/node_modules/.staging
1056 silly doParallel extract 22
1057 silly extract [email protected]
1058 silly extract [email protected]
1059 silly extract [email protected]
1060 silly extract [email protected]
1061 silly extract [email protected]
1062 silly extract [email protected]
1063 silly extract [email protected]
1064 silly extract [email protected]
1065 silly extract [email protected]
1066 silly extract [email protected]
1067 silly extract [email protected]
1068 silly extract [email protected]
1069 silly extract [email protected]
1070 silly extract [email protected]
1071 silly extract [email protected]
1072 silly extract [email protected]
1073 silly extract [email protected]
1074 silly extract [email protected]
1075 silly extract [email protected]
1076 silly extract [email protected]
1077 silly extract [email protected]
1078 silly extract [email protected]
1079 verbose unbuild node_modules/.staging/balanced-match-fac245e15fb7fa4df566161606314520
1080 verbose unbuild node_modules/.staging/block-stream-b9cbcf7040d52dd0c382daa35db9633d
1081 verbose unbuild node_modules/.staging/brace-expansion-d6298b6844836ad1fd90c08e0688ddc0
1082 verbose unbuild node_modules/.staging/concat-map-4a0cb178cbb0dc99a9760de023bed8c0
1083 verbose unbuild node_modules/.staging/graceful-fs-edc734ee8b04eaa00b79190cf44c7a68
1084 verbose unbuild node_modules/.staging/keypress-e5d1d1bb785757cc60866cb9bec5032c
1085 verbose unbuild node_modules/.staging/commander-67595df1bb13c09553cd407e47d2eb24
1086 verbose unbuild node_modules/.staging/minimatch-4adb3c0e75344b5dbb62f75b5c72cfd3
1087 verbose unbuild node_modules/.staging/minimist-b6924a30d1073c179aabba758b5123d3
1088 verbose unbuild node_modules/.staging/mkdirp-9cda8d1f1937c47960eadd96e9a2d9ea
1089 verbose unbuild node_modules/.staging/path-is-absolute-324fa4eec521d599bb82eaaecb6542a3
1090 verbose unbuild node_modules/.staging/wrappy-38bde7b299cdfad5ade07e57057d4f80
1091 verbose unbuild node_modules/.staging/once-1feddbe34e27ade3651edf54904f2a6f
1092 verbose unbuild node_modules/.staging/inflight-816ae9f35ad8b442da55ad48c00d7c09
1093 verbose unbuild node_modules/.staging/glob-2b0a3e6caccc6c477b1577899f3408bf
1094 verbose unbuild node_modules/.staging/fstream-b1932bd66c5634666d6948ef14abf096
1095 verbose unbuild node_modules/.staging/tar-52c065c6f9b03b104f7dec7ac6217115
1096 verbose unbuild node_modules/.staging/sqlite3-8a8006326a8d25e89a0c644922c9adeb
1097 verbose unbuild node_modules/.staging/mac-lookup-76190493c6bff062f7ce1fb111ace4b2
1098 verbose unbuild node_modules/.staging/mkdirp-346aaf6162689d19b7d24fe0edee9447
1099 verbose unbuild node_modules/.staging/rimraf-ba29dc9145d984e6e2cc035a3d30e402
1100 verbose unbuild node_modules/.staging/tar.gz-1206b55e02cd33bb0cf2f690f147fd93
1101 silly gentlyRm /Users/**/node_modules/.staging/balanced-match-fac245e15fb7fa4df566161606314520 is being purged from base /Users/**
1102 silly gentlyRm /Users/**/node_modules/.staging/block-stream-b9cbcf7040d52dd0c382daa35db9633d is being purged from base /Users/**
1103 silly gentlyRm /Users/**/node_modules/.staging/brace-expansion-d6298b6844836ad1fd90c08e0688ddc0 is being purged from base /Users/**
1104 silly gentlyRm /Users/**/node_modules/.staging/concat-map-4a0cb178cbb0dc99a9760de023bed8c0 is being purged from base /Users/**
1105 silly gentlyRm /Users/**/node_modules/.staging/graceful-fs-edc734ee8b04eaa00b79190cf44c7a68 is being purged from base /Users/**
1106 silly gentlyRm /Users/**/node_modules/.staging/keypress-e5d1d1bb785757cc60866cb9bec5032c is being purged from base /Users/**
1107 silly gentlyRm /Users/**/node_modules/.staging/commander-67595df1bb13c09553cd407e47d2eb24 is being purged from base /Users/**
1108 silly gentlyRm /Users/**/node_modules/.staging/minimatch-4adb3c0e75344b5dbb62f75b5c72cfd3 is being purged from base /Users/**
1109 silly gentlyRm /Users/**/node_modules/.staging/minimist-b6924a30d1073c179aabba758b5123d3 is being purged from base /Users/**
1110 silly gentlyRm /Users/**/node_modules/.staging/mkdirp-9cda8d1f1937c47960eadd96e9a2d9ea is being purged from base /Users/**
1111 silly gentlyRm /Users/**/node_modules/.staging/path-is-absolute-324fa4eec521d599bb82eaaecb6542a3 is being purged from base /Users/**
1112 silly gentlyRm /Users/**/node_modules/.staging/wrappy-38bde7b299cdfad5ade07e57057d4f80 is being purged from base /Users/**
1113 silly gentlyRm /Users/**/node_modules/.staging/once-1feddbe34e27ade3651edf54904f2a6f is being purged from base /Users/**
1114 silly gentlyRm /Users/**/node_modules/.staging/inflight-816ae9f35ad8b442da55ad48c00d7c09 is being purged from base /Users/**
1115 silly gentlyRm /Users/**/node_modules/.staging/glob-2b0a3e6caccc6c477b1577899f3408bf is being purged from base /Users/**
1116 silly gentlyRm /Users/**/node_modules/.staging/fstream-b1932bd66c5634666d6948ef14abf096 is being purged from base /Users/**
1117 silly gentlyRm /Users/**/node_modules/.staging/tar-52c065c6f9b03b104f7dec7ac6217115 is being purged from base /Users/**
1118 silly gentlyRm /Users/**/node_modules/.staging/sqlite3-8a8006326a8d25e89a0c644922c9adeb is being purged from base /Users/**
1119 silly gentlyRm /Users/**/node_modules/.staging/mac-lookup-76190493c6bff062f7ce1fb111ace4b2 is being purged from base /Users/**
1120 verbose gentlyRm don't care about contents; nuking /Users/**/node_modules/.staging/balanced-match-fac245e15fb7fa4df566161606314520
1121 verbose gentlyRm don't care about contents; nuking /Users/**/node_modules/.staging/block-stream-b9cbcf7040d52dd0c382daa35db9633d
1122 verbose gentlyRm don't care about contents; nuking /Users/**/node_modules/.staging/brace-expansion-d6298b6844836ad1fd90c08e0688ddc0
1123 verbose gentlyRm don't care about contents; nuking /Users/**/node_modules/.staging/concat-map-4a0cb178cbb0dc99a9760de023bed8c0
1124 verbose gentlyRm don't care about contents; nuking /Users/**/node_modules/.staging/graceful-fs-edc734ee8b04eaa00b79190cf44c7a68
1125 verbose gentlyRm don't care about contents; nuking /Users/**/node_modules/.staging/keypress-e5d1d1bb785757cc60866cb9bec5032c
1126 verbose gentlyRm don't care about contents; nuking /Users/**/node_modules/.staging/commander-67595df1bb13c09553cd407e47d2eb24
1127 verbose gentlyRm don't care about contents; nuking /Users/**/node_modules/.staging/minimatch-4adb3c0e75344b5dbb62f75b5c72cfd3
1128 verbose gentlyRm don't care about contents; nuking /Users/**/node_modules/.staging/minimist-b6924a30d1073c179aabba758b5123d3
1129 silly gentlyRm /Users/**/node_modules/.staging/mkdirp-346aaf6162689d19b7d24fe0edee9447 is being purged from base /Users/**
1130 verbose gentlyRm don't care about contents; nuking /Users/**/node_modules/.staging/mkdirp-9cda8d1f1937c47960eadd96e9a2d9ea
1131 verbose gentlyRm don't care about contents; nuking /Users/**/node_modules/.staging/path-is-absolute-324fa4eec521d599bb82eaaecb6542a3
1132 verbose gentlyRm don't care about contents; nuking /Users/**/node_modules/.staging/wrappy-38bde7b299cdfad5ade07e57057d4f80
1133 verbose gentlyRm don't care about contents; nuking /Users/**/node_modules/.staging/once-1feddbe34e27ade3651edf54904f2a6f
1134 verbose gentlyRm don't care about contents; nuking /Users/**/node_modules/.staging/inflight-816ae9f35ad8b442da55ad48c00d7c09
1135 verbose gentlyRm don't care about contents; nuking /Users/**/node_modules/.staging/glob-2b0a3e6caccc6c477b1577899f3408bf
1136 silly gentlyRm /Users/**/node_modules/.staging/rimraf-ba29dc9145d984e6e2cc035a3d30e402 is being purged from base /Users/**
1137 verbose gentlyRm don't care about contents; nuking /Users/**/node_modules/.staging/fstream-b1932bd66c5634666d6948ef14abf096
1138 verbose gentlyRm don't care about contents; nuking /Users/**/node_modules/.staging/tar-52c065c6f9b03b104f7dec7ac6217115
1139 silly gentlyRm /Users/**/node_modules/.staging/tar.gz-1206b55e02cd33bb0cf2f690f147fd93 is being purged from base /Users/**
1140 verbose gentlyRm don't care about contents; nuking /Users/**/node_modules/.staging/sqlite3-8a8006326a8d25e89a0c644922c9adeb
1141 verbose gentlyRm don't care about contents; nuking /Users/**/node_modules/.staging/mac-lookup-76190493c6bff062f7ce1fb111ace4b2
1142 verbose tar unpack /Users/**/.npm/balanced-match/0.2.0/package.tgz
1143 verbose tar unpacking to /Users/**/node_modules/.staging/balanced-match-fac245e15fb7fa4df566161606314520
1144 silly gentlyRm /Users/**/node_modules/.staging/balanced-match-fac245e15fb7fa4df566161606314520 is being purged
1145 verbose tar unpack /Users/**/.npm/block-stream/0.0.8/package.tgz
1146 verbose tar unpacking to /Users/**/node_modules/.staging/block-stream-b9cbcf7040d52dd0c382daa35db9633d
1147 silly gentlyRm /Users/**/node_modules/.staging/block-stream-b9cbcf7040d52dd0c382daa35db9633d is being purged
1148 verbose tar unpack /Users/**/.npm/concat-map/0.0.1/package.tgz
1149 verbose tar unpacking to /Users/**/node_modules/.staging/concat-map-4a0cb178cbb0dc99a9760de023bed8c0
1150 silly gentlyRm /Users/**/node_modules/.staging/concat-map-4a0cb178cbb0dc99a9760de023bed8c0 is being purged
1151 verbose tar unpack /Users/**/.npm/brace-expansion/1.1.1/package.tgz
1152 verbose tar unpacking to /Users/**/node_modules/.staging/brace-expansion-d6298b6844836ad1fd90c08e0688ddc0
1153 silly gentlyRm /Users/**/node_modules/.staging/brace-expansion-d6298b6844836ad1fd90c08e0688ddc0 is being purged
1154 verbose tar unpack /Users/**/.npm/graceful-fs/3.0.8/package.tgz
1155 verbose tar unpacking to /Users/**/node_modules/.staging/graceful-fs-edc734ee8b04eaa00b79190cf44c7a68
1156 silly gentlyRm /Users/**/node_modules/.staging/graceful-fs-edc734ee8b04eaa00b79190cf44c7a68 is being purged
1157 verbose tar unpack /Users/**/.npm/keypress/0.1.0/package.tgz
1158 verbose tar unpacking to /Users/**/node_modules/.staging/keypress-e5d1d1bb785757cc60866cb9bec5032c
1159 silly gentlyRm /Users/**/node_modules/.staging/keypress-e5d1d1bb785757cc60866cb9bec5032c is being purged
1160 verbose tar unpack /Users/**/.npm/commander/1.1.1/package.tgz
1161 verbose tar unpacking to /Users/**/node_modules/.staging/commander-67595df1bb13c09553cd407e47d2eb24
1162 silly gentlyRm /Users/**/node_modules/.staging/commander-67595df1bb13c09553cd407e47d2eb24 is being purged
1163 verbose tar unpack /Users/**/.npm/minimatch/3.0.0/package.tgz
1164 verbose tar unpacking to /Users/**/node_modules/.staging/minimatch-4adb3c0e75344b5dbb62f75b5c72cfd3
1165 silly gentlyRm /Users/**/node_modules/.staging/minimatch-4adb3c0e75344b5dbb62f75b5c72cfd3 is being purged
1166 verbose tar unpack /Users/**/.npm/minimist/0.0.8/package.tgz
1167 verbose tar unpacking to /Users/**/node_modules/.staging/minimist-b6924a30d1073c179aabba758b5123d3
1168 silly gentlyRm /Users/**/node_modules/.staging/minimist-b6924a30d1073c179aabba758b5123d3 is being purged
1169 verbose gentlyRm don't care about contents; nuking /Users/**/node_modules/.staging/mkdirp-346aaf6162689d19b7d24fe0edee9447
1170 verbose tar unpack /Users/**/.npm/mkdirp/0.3.5/package.tgz
1171 verbose tar unpacking to /Users/**/node_modules/.staging/mkdirp-9cda8d1f1937c47960eadd96e9a2d9ea
1172 silly gentlyRm /Users/**/node_modules/.staging/mkdirp-9cda8d1f1937c47960eadd96e9a2d9ea is being purged
1173 verbose tar unpack /Users/**/.npm/path-is-absolute/1.0.0/package.tgz
1174 verbose tar unpacking to /Users/**/node_modules/.staging/path-is-absolute-324fa4eec521d599bb82eaaecb6542a3
1175 silly gentlyRm /Users/**/node_modules/.staging/path-is-absolute-324fa4eec521d599bb82eaaecb6542a3 is being purged
1176 verbose tar unpack /Users/**/.npm/wrappy/1.0.1/package.tgz
1177 verbose tar unpacking to /Users/**/node_modules/.staging/wrappy-38bde7b299cdfad5ade07e57057d4f80
1178 silly gentlyRm /Users/**/node_modules/.staging/wrappy-38bde7b299cdfad5ade07e57057d4f80 is being purged
1179 verbose tar unpack /Users/**/.npm/once/1.3.2/package.tgz
1180 verbose tar unpacking to /Users/**/node_modules/.staging/once-1feddbe34e27ade3651edf54904f2a6f
1181 silly gentlyRm /Users/**/node_modules/.staging/once-1feddbe34e27ade3651edf54904f2a6f is being purged
1182 verbose tar unpack /Users/**/.npm/inflight/1.0.4/package.tgz
1183 verbose tar unpacking to /Users/**/node_modules/.staging/inflight-816ae9f35ad8b442da55ad48c00d7c09
1184 silly gentlyRm /Users/**/node_modules/.staging/inflight-816ae9f35ad8b442da55ad48c00d7c09 is being purged
1185 verbose tar unpack /Users/**/.npm/glob/5.0.15/package.tgz
1186 verbose tar unpacking to /Users/**/node_modules/.staging/glob-2b0a3e6caccc6c477b1577899f3408bf
1187 silly gentlyRm /Users/**/node_modules/.staging/glob-2b0a3e6caccc6c477b1577899f3408bf is being purged
1188 verbose gentlyRm don't care about contents; nuking /Users/**/node_modules/.staging/rimraf-ba29dc9145d984e6e2cc035a3d30e402
1189 verbose tar unpack /Users/**/.npm/fstream/0.1.31/package.tgz
1190 verbose tar unpacking to /Users/**/node_modules/.staging/fstream-b1932bd66c5634666d6948ef14abf096
1191 silly gentlyRm /Users/**/node_modules/.staging/fstream-b1932bd66c5634666d6948ef14abf096 is being purged
1192 verbose tar unpack /Users/**/.npm/tar/0.1.20/package.tgz
1193 verbose tar unpacking to /Users/**/node_modules/.staging/tar-52c065c6f9b03b104f7dec7ac6217115
1194 silly gentlyRm /Users/**/node_modules/.staging/tar-52c065c6f9b03b104f7dec7ac6217115 is being purged
1195 verbose gentlyRm don't care about contents; nuking /Users/**/node_modules/.staging/tar.gz-1206b55e02cd33bb0cf2f690f147fd93
1196 verbose tar unpack /Users/**/.npm/sqlite3/2.1.19/package.tgz
1197 verbose tar unpacking to /Users/**/node_modules/.staging/sqlite3-8a8006326a8d25e89a0c644922c9adeb
1198 silly gentlyRm /Users/**/node_modules/.staging/sqlite3-8a8006326a8d25e89a0c644922c9adeb is being purged
1199 verbose tar unpack /Users/**/.npm/mac-lookup/0.0.3/package.tgz
1200 verbose tar unpacking to /Users/**/node_modules/.staging/mac-lookup-76190493c6bff062f7ce1fb111ace4b2
1201 silly gentlyRm /Users/**/node_modules/.staging/mac-lookup-76190493c6bff062f7ce1fb111ace4b2 is being purged
1202 verbose gentlyRm don't care about contents; nuking /Users/**/node_modules/.staging/balanced-match-fac245e15fb7fa4df566161606314520
1203 verbose gentlyRm don't care about contents; nuking /Users/**/node_modules/.staging/block-stream-b9cbcf7040d52dd0c382daa35db9633d
1204 verbose gentlyRm don't care about contents; nuking /Users/**/node_modules/.staging/concat-map-4a0cb178cbb0dc99a9760de023bed8c0
1205 verbose gentlyRm don't care about contents; nuking /Users/**/node_modules/.staging/brace-expansion-d6298b6844836ad1fd90c08e0688ddc0
1206 verbose gentlyRm don't care about contents; nuking /Users/**/node_modules/.staging/graceful-fs-edc734ee8b04eaa00b79190cf44c7a68
1207 verbose gentlyRm don't care about contents; nuking /Users/**/node_modules/.staging/keypress-e5d1d1bb785757cc60866cb9bec5032c
1208 verbose gentlyRm don't care about contents; nuking /Users/**/node_modules/.staging/commander-67595df1bb13c09553cd407e47d2eb24
1209 verbose gentlyRm don't care about contents; nuking /Users/**/node_modules/.staging/minimatch-4adb3c0e75344b5dbb62f75b5c72cfd3
1210 verbose gentlyRm don't care about contents; nuking /Users/**/node_modules/.staging/minimist-b6924a30d1073c179aabba758b5123d3
1211 verbose tar unpack /Users/**/.npm/mkdirp/0.5.1/package.tgz
1212 verbose tar unpacking to /Users/**/node_modules/.staging/mkdirp-346aaf6162689d19b7d24fe0edee9447
1213 silly gentlyRm /Users/**/node_modules/.staging/mkdirp-346aaf6162689d19b7d24fe0edee9447 is being purged
1214 verbose gentlyRm don't care about contents; nuking /Users/**/node_modules/.staging/mkdirp-9cda8d1f1937c47960eadd96e9a2d9ea
1215 verbose gentlyRm don't care about contents; nuking /Users/**/node_modules/.staging/path-is-absolute-324fa4eec521d599bb82eaaecb6542a3
1216 verbose gentlyRm don't care about contents; nuking /Users/**/node_modules/.staging/wrappy-38bde7b299cdfad5ade07e57057d4f80
1217 verbose gentlyRm don't care about contents; nuking /Users/**/node_modules/.staging/once-1feddbe34e27ade3651edf54904f2a6f
1218 verbose gentlyRm don't care about contents; nuking /Users/**/node_modules/.staging/inflight-816ae9f35ad8b442da55ad48c00d7c09
1219 verbose gentlyRm don't care about contents; nuking /Users/**/node_modules/.staging/glob-2b0a3e6caccc6c477b1577899f3408bf
1220 verbose tar unpack /Users/**/.npm/rimraf/2.4.3/package.tgz
1221 verbose tar unpacking to /Users/**/node_modules/.staging/rimraf-ba29dc9145d984e6e2cc035a3d30e402
1222 silly gentlyRm /Users/**/node_modules/.staging/rimraf-ba29dc9145d984e6e2cc035a3d30e402 is being purged
1223 verbose gentlyRm don't care about contents; nuking /Users/**/node_modules/.staging/fstream-b1932bd66c5634666d6948ef14abf096
1224 verbose gentlyRm don't care about contents; nuking /Users/**/node_modules/.staging/tar-52c065c6f9b03b104f7dec7ac6217115
1225 verbose tar unpack /Users/**/.npm/tar.gz/0.1.1/package.tgz
1226 verbose tar unpacking to /Users/**/node_modules/.staging/tar.gz-1206b55e02cd33bb0cf2f690f147fd93
1227 silly gentlyRm /Users/**/node_modules/.staging/tar.gz-1206b55e02cd33bb0cf2f690f147fd93 is being purged
1228 verbose gentlyRm don't care about contents; nuking /Users/**/node_modules/.staging/sqlite3-8a8006326a8d25e89a0c644922c9adeb
1229 verbose gentlyRm don't care about contents; nuking /Users/**/node_modules/.staging/mac-lookup-76190493c6bff062f7ce1fb111ace4b2
1230 silly gunzTarPerm modes [ '755', '644' ]
1231 silly gunzTarPerm modes [ '755', '644' ]
1232 silly gunzTarPerm modes [ '755', '644' ]
1233 silly gunzTarPerm modes [ '755', '644' ]
1234 silly gunzTarPerm modes [ '755', '644' ]
1235 silly gunzTarPerm modes [ '755', '644' ]
1236 silly gunzTarPerm modes [ '755', '644' ]
1237 silly gunzTarPerm modes [ '755', '644' ]
1238 silly gunzTarPerm modes [ '755', '644' ]
1239 verbose gentlyRm don't care about contents; nuking /Users/**/node_modules/.staging/mkdirp-346aaf6162689d19b7d24fe0edee9447
1240 silly gunzTarPerm modes [ '755', '644' ]
1241 silly gunzTarPerm modes [ '755', '644' ]
1242 silly gunzTarPerm modes [ '755', '644' ]
1243 silly gunzTarPerm modes [ '755', '644' ]
1244 silly gunzTarPerm modes [ '755', '644' ]
1245 silly gunzTarPerm modes [ '755', '644' ]
1246 verbose gentlyRm don't care about contents; nuking /Users/**/node_modules/.staging/rimraf-ba29dc9145d984e6e2cc035a3d30e402
1247 silly gunzTarPerm modes [ '755', '644' ]
1248 silly gunzTarPerm modes [ '755', '644' ]
1249 verbose gentlyRm don't care about contents; nuking /Users/**/node_modules/.staging/tar.gz-1206b55e02cd33bb0cf2f690f147fd93
1250 silly gunzTarPerm modes [ '755', '644' ]
1251 silly gunzTarPerm modes [ '755', '644' ]
1252 silly gunzTarPerm modes [ '755', '644' ]
1253 silly gunzTarPerm modes [ '755', '644' ]
1254 silly gunzTarPerm modes [ '755', '644' ]
1255 silly gunzTarPerm extractEntry package.json
1256 silly gunzTarPerm extractEntry package.json
1257 silly gunzTarPerm extractEntry package.json
1258 silly gunzTarPerm extractEntry package.json
1259 silly gunzTarPerm extractEntry package.json
1260 silly gunzTarPerm extractEntry package.json
1261 silly gunzTarPerm extractEntry package.json
1262 silly gunzTarPerm extractEntry package.json
1263 silly gunzTarPerm extractEntry package.json
1264 silly gunzTarPerm extractEntry package.json
1265 silly gunzTarPerm extractEntry package.json
1266 silly gunzTarPerm extractEntry package.json
1267 silly gunzTarPerm extractEntry package.json
1268 silly gunzTarPerm extractEntry package.json
1269 silly gunzTarPerm extractEntry package.json
1270 silly gunzTarPerm extractEntry package.json
1271 silly gunzTarPerm extractEntry package.json
1272 silly gunzTarPerm extractEntry package.json
1273 silly gunzTarPerm extractEntry package.json
1274 silly gunzTarPerm extractEntry package.json
1275 silly gunzTarPerm extractEntry package.json
1276 silly gunzTarPerm extractEntry package.json
1277 silly gunzTarPerm extractEntry .npmignore
1278 silly gunzTarPerm modified mode [ '.npmignore', 436, 420 ]
1279 silly gunzTarPerm extractEntry README.md
1280 silly gunzTarPerm extractEntry README.md
1281 silly gunzTarPerm extractEntry LICENCE
1282 silly gunzTarPerm extractEntry LICENSE
1283 silly gunzTarPerm extractEntry index.js
1284 silly gunzTarPerm extractEntry .npmignore
1285 silly gunzTarPerm extractEntry README.md
1286 silly gunzTarPerm extractEntry .npmignore
1287 silly gunzTarPerm extractEntry README.md
1288 silly gunzTarPerm extractEntry README.md
1289 silly gunzTarPerm extractEntry index.js
1290 silly gunzTarPerm extractEntry .npmignore
1291 silly gunzTarPerm extractEntry index.js
1292 silly gunzTarPerm extractEntry README.md
1293 silly gunzTarPerm extractEntry LICENSE
1294 silly gunzTarPerm extractEntry LICENSE
1295 silly gunzTarPerm extractEntry index.js
1296 silly gunzTarPerm extractEntry .npmignore
1297 silly gunzTarPerm extractEntry LICENSE
1298 silly gunzTarPerm extractEntry index.js
1299 silly gunzTarPerm extractEntry license
1300 silly gunzTarPerm extractEntry README.md
1301 silly gunzTarPerm extractEntry LICENSE
1302 silly gunzTarPerm extractEntry README.md
1303 silly gunzTarPerm extractEntry LICENSE
1304 silly gunzTarPerm extractEntry README.md
1305 silly gunzTarPerm extractEntry LICENSE
1306 silly gunzTarPerm extractEntry common.js
1307 silly gunzTarPerm extractEntry glob.js
1308 silly gunzTarPerm extractEntry sync.js
1309 silly gunzTarPerm extractEntry README.md
1310 silly gunzTarPerm extractEntry LICENSE
1311 silly gunzTarPerm extractEntry .npmignore
1312 silly gunzTarPerm extractEntry README.md
1313 silly gunzTarPerm extractEntry .npmignore
1314 silly gunzTarPerm extractEntry README.md
1315 silly gunzTarPerm extractEntry .npmignore
1316 silly gunzTarPerm extractEntry README.md
1317 silly gunzTarPerm extractEntry README.md
1318 silly gunzTarPerm extractEntry index.js
1319 silly gunzTarPerm extractEntry LICENSE
1320 silly gunzTarPerm extractEntry index.js
1321 silly gunzTarPerm extractEntry README.md
1322 silly gunzTarPerm extractEntry LICENSE
1323 silly gunzTarPerm extractEntry .npmignore
1324 silly gunzTarPerm extractEntry README.md
1325 silly gunzTarPerm extractEntry LICENSE
1326 silly gunzTarPerm extractEntry block-stream.js
1327 silly gunzTarPerm extractEntry test.js
1328 silly gunzTarPerm extractEntry LICENCE
1329 silly gunzTarPerm extractEntry tar.js
1330 silly gunzTarPerm extractEntry example.js
1331 silly gunzTarPerm modified mode [ 'example.js', 436, 420 ]
1332 silly gunzTarPerm extractEntry index.js
1333 silly gunzTarPerm extractEntry .travis.yml
1334 silly gunzTarPerm extractEntry README.markdown
1335 silly gunzTarPerm extractEntry LICENSE
1336 silly gunzTarPerm extractEntry fs.js
1337 silly gunzTarPerm extractEntry example.js
1338 silly gunzTarPerm extractEntry index.js
1339 silly gunzTarPerm extractEntry .travis.yml
1340 silly gunzTarPerm extractEntry minimatch.js
1341 silly gunzTarPerm extractEntry .travis.yml
1342 silly gunzTarPerm extractEntry example/parse.js
1343 silly gunzTarPerm extractEntry readme.md
1344 silly gunzTarPerm extractEntry index.js
1345 silly gunzTarPerm extractEntry examples/pow.js
1346 silly gunzTarPerm extractEntry wrappy.js
1347 silly gunzTarPerm extractEntry test/basic.js
1348 silly gunzTarPerm extractEntry once.js
1349 silly gunzTarPerm extractEntry test/once.js
1350 silly gunzTarPerm extractEntry inflight.js
1351 silly gunzTarPerm extractEntry test.js
1352 silly gunzTarPerm extractEntry oui.db
1353 silly gunzTarPerm extractEntry .travis.yml
1354 silly gunzTarPerm extractEntry bin/cmd.js
1355 silly gunzTarPerm extractEntry bin.js
1356 silly gunzTarPerm extractEntry rimraf.js
1357 silly gunzTarPerm extractEntry LICENSE
1358 silly gunzTarPerm extractEntry fstream.js
1359 silly gunzTarPerm extractEntry LICENSE
1360 silly gunzTarPerm extractEntry sqlite3.js
1361 silly gunzTarPerm extractEntry LICENSE
1362 silly gunzTarPerm extractEntry Cakefile
1363 silly gunzTarPerm extractEntry bench/block-stream-pause.js
1364 silly gunzTarPerm extractEntry bench/block-stream.js
1365 silly gunzTarPerm extractEntry .travis.yml
1366 silly gunzTarPerm extractEntry examples/extracter.js
1367 silly gunzTarPerm extractEntry .travis.yml
1368 silly gunzTarPerm modified mode [ '.travis.yml', 436, 420 ]
1369 silly gunzTarPerm extractEntry Makefile
1370 silly gunzTarPerm modified mode [ 'Makefile', 436, 420 ]
1371 silly gunzTarPerm extractEntry graceful-fs.js
1372 silly gunzTarPerm extractEntry polyfills.js
1373 silly gunzTarPerm extractEntry History.md
1374 silly gunzTarPerm extractEntry Makefile
1375 silly gunzTarPerm extractEntry Readme.md
1376 silly gunzTarPerm extractEntry readme.markdown
1377 silly gunzTarPerm extractEntry test/perm.js
1378 silly gunzTarPerm extractEntry example/map.js
1379 silly gunzTarPerm extractEntry test/map.js
1380 silly gunzTarPerm extractEntry readme.markdown
1381 silly gunzTarPerm extractEntry test/dash.js
1382 silly gunzTarPerm extractEntry .travis.yml
1383 silly gunzTarPerm extractEntry examples/filter-pipe.js
1384 silly gunzTarPerm extractEntry build.js
1385 silly gunzTarPerm extractEntry .eslintrc
1386 silly gunzTarPerm extractEntry examples/simple-chaining.js
1387 silly gunzTarPerm extractEntry bin/targz
1388 silly gunzTarPerm extractEntry example/example.js
1389 silly gunzTarPerm extractEntry bin/usage.txt
1390 silly gunzTarPerm extractEntry examples/pow.js
1391 silly gunzTarPerm extractEntry bench/dropper-pause.js
1392 silly gunzTarPerm extractEntry examples/packer.js
1393 silly gunzTarPerm extractEntry examples/reader.js
1394 silly gunzTarPerm extractEntry test/balanced.js
1395 silly gunzTarPerm extractEntry test/max-open.js
1396 silly gunzTarPerm extractEntry test/perm_sync.js
1397 silly gunzTarPerm extractEntry test/race.js
1398 silly gunzTarPerm extractEntry test/default_bool.js
1399 silly gunzTarPerm extractEntry test/dotted.js
1400 silly gunzTarPerm extractEntry test/long.js
1401 silly gunzTarPerm extractEntry test/parse.js
1402 silly gunzTarPerm extractEntry test/parse_modified.js
1403 silly gunzTarPerm extractEntry test/short.js
1404 silly gunzTarPerm extractEntry test/whitespace.js
1405 silly gunzTarPerm extractEntry examples/pipe.js
1406 silly gunzTarPerm extractEntry examples/reader.js
1407 silly gunzTarPerm extractEntry examples/symlink-write.js
1408 silly gunzTarPerm extractEntry lib/abstract.js
1409 silly gunzTarPerm extractEntry lib/dir-writer.js
1410 silly gunzTarPerm extractEntry lib/file-reader.js
1411 silly gunzTarPerm extractEntry lib/file-writer.js
1412 silly gunzTarPerm extractEntry lib/get-type.js
1413 silly gunzTarPerm extractEntry lib/dir-reader.js
1414 silly gunzTarPerm extractEntry lib/link-writer.js
1415 silly gunzTarPerm extractEntry lib/proxy-reader.js
1416 silly gunzTarPerm extractEntry lib/proxy-writer.js
1417 silly gunzTarPerm extractEntry lib/reader.js
1418 silly gunzTarPerm extractEntry lib/socket-reader.js
1419 silly gunzTarPerm extractEntry lib/collect.js
1420 silly gunzTarPerm extractEntry lib/writer.js
1421 silly gunzTarPerm extractEntry lib/link-reader.js
1422 silly gunzTarPerm extractEntry benchmark/insert.js
1423 silly gunzTarPerm extractEntry benchmark/insert-transaction.sql
1424 silly gunzTarPerm extractEntry example/example.coffee
1425 silly gunzTarPerm extractEntry readme.markdown
1426 silly gunzTarPerm extractEntry test/chmod.js
1427 silly gunzTarPerm extractEntry bench/dropper.js
1428 silly gunzTarPerm extractEntry test/basic.js
1429 silly gunzTarPerm extractEntry test/rel.js
1430 silly gunzTarPerm extractEntry lib/buffer-entry.js
1431 silly gunzTarPerm extractEntry lib/entry-writer.js
1432 silly gunzTarPerm extractEntry lib/entry.js
1433 silly gunzTarPerm extractEntry lib/extended-header-writer.js
1434 silly gunzTarPerm extractEntry lib/extended-header.js
1435 silly gunzTarPerm extractEntry lib/extract.js
1436 silly gunzTarPerm extractEntry lib/global-header-writer.js
1437 silly gunzTarPerm extractEntry lib/header.js
1438 silly gunzTarPerm extractEntry lib/pack.js
1439 silly gunzTarPerm extractEntry lib/parse.js
1440 silly gunzTarPerm extractEntry test/00-setup-fixtures.js
1441 silly gunzTarPerm extractEntry test/extract.js
1442 silly gunzTarPerm extractEntry test/header.js
1443 silly gunzTarPerm extractEntry test/pack-no-proprietary.js
1444 silly gunzTarPerm extractEntry test/pack.js
1445 silly gunzTarPerm extractEntry test/parse.js
1446 silly gunzTarPerm extractEntry test/zz-cleanup.js
1447 silly gunzTarPerm extractEntry test/fixtures.tgz
1448 silly gunzTarPerm extractEntry test/open.js
1449 silly gunzTarPerm extractEntry test/readdir-sort.js
1450 silly gunzTarPerm extractEntry test/opts_fs_sync.js
1451 silly gunzTarPerm extractEntry build-util/crosswalk-semver-to-module.js
1452 silly gunzTarPerm extractEntry lib/targz.js
1453 silly gunzTarPerm extractEntry src/targz.coffee
1454 silly gunzTarPerm extractEntry test/nopad-thorough.js
1455 silly gunzTarPerm extractEntry test/nopad.js
1456 silly gunzTarPerm extractEntry test/write-then-read.js
1457 silly gunzTarPerm extractEntry test/return.js
1458 silly gunzTarPerm extractEntry test/clobber.js
1459 silly gunzTarPerm extractEntry build-util/tools.js
1460 silly gunzTarPerm extractEntry build-util/remake.sh
1461 silly gunzTarPerm extractEntry test/compress/test.txt
1462 silly gunzTarPerm extractEntry test/extract/placeholder
1463 silly gunzTarPerm extractEntry test/perm.js
1464 silly gunzTarPerm extractEntry test/perm_sync.js
1465 silly gunzTarPerm extractEntry test/root.js
1466 silly gunzTarPerm extractEntry test/umask.js
1467 silly gunzTarPerm extractEntry build-util/upload.sh
1468 silly gunzTarPerm extractEntry .travis.yml
1469 silly gunzTarPerm extractEntry test/pause-resume.js
1470 silly gunzTarPerm extractEntry test/thorough.js
1471 silly gunzTarPerm extractEntry test/opts_fs.js
1472 silly gunzTarPerm extractEntry test/rel.js
1473 silly gunzTarPerm extractEntry test/two-stream.js
1474 silly gunzTarPerm extractEntry configure
1475 silly gunzTarPerm extractEntry deps/common-sqlite.gypi
1476 silly gunzTarPerm extractEntry test/sync.js
1477 silly gunzTarPerm extractEntry test/chmod.js
1478 silly gunzTarPerm extractEntry test/return.js
1479 silly gunzTarPerm extractEntry test/return_sync.js
1480 silly gunzTarPerm extractEntry test/root.js
1481 silly gunzTarPerm extractEntry test/sync.js
1482 silly gunzTarPerm extractEntry test/umask_sync.js
1483 silly gunzTarPerm extractEntry test/return_sync.js
1484 silly gunzTarPerm extractEntry deps/extract.py
1485 silly gunzTarPerm extractEntry deps/sqlite-autoconf-3071700.tar.gz
1486 silly gunzTarPerm extractEntry test/mkdirp.js
1487 silly gunzTarPerm extractEntry .travis.yml
1488 silly gunzTarPerm extractEntry test/mkdirp.js
1489 silly gunzTarPerm extractEntry test/umask.js
1490 silly gunzTarPerm extractEntry test/clobber.js
1491 silly gunzTarPerm extractEntry test/umask_sync.js
1492 silly gunzTarPerm extractEntry test/race.js
1493 silly gunzTarPerm extractEntry deps/sqlite3.gyp
1494 silly gunzTarPerm extractEntry binding.gyp
1495 silly gunzTarPerm extractEntry lib/binary_name.js
1496 silly gunzTarPerm extractEntry lib/index.js
1497 silly gunzTarPerm extractEntry lib/sqlite3.js
1498 silly gunzTarPerm extractEntry lib/trace.js
1499 silly gunzTarPerm extractEntry Makefile
1500 silly gunzTarPerm extractEntry CHANGELOG.md
1501 silly gunzTarPerm extractEntry src/async.h
1502 silly gunzTarPerm extractEntry src/database.cc
1503 silly gunzTarPerm extractEntry src/database.h
1504 silly gunzTarPerm extractEntry src/macros.h
1505 silly gunzTarPerm extractEntry src/node_sqlite3.cc
1506 silly gunzTarPerm extractEntry src/statement.cc
1507 silly gunzTarPerm extractEntry src/statement.h
1508 silly gunzTarPerm extractEntry src/threading.h
1509 silly gunzTarPerm extractEntry test/affected.test.js
1510 silly gunzTarPerm extractEntry test/fts-content.test.js
1511 silly gunzTarPerm extractEntry test/issue-108.test.js
1512 silly gunzTarPerm extractEntry test/map.test.js
1513 silly gunzTarPerm extractEntry test/named_columns.test.js
1514 silly gunzTarPerm extractEntry test/extension.test.js
1515 silly gunzTarPerm extractEntry test/null_error.test.js
1516 silly gunzTarPerm extractEntry test/open_close.test.js
1517 silly gunzTarPerm extractEntry test/other_objects.test.js
1518 silly gunzTarPerm extractEntry test/parallel_insert.test.js
1519 silly gunzTarPerm extractEntry test/prepare.test.js
1520 silly gunzTarPerm extractEntry test/exec.test.js
1521 silly gunzTarPerm extractEntry test/profile.test.js
1522 silly gunzTarPerm extractEntry test/each.test.js
1523 silly gunzTarPerm extractEntry test/rerun.test.js
1524 silly gunzTarPerm extractEntry test/database_fail.test.js
1525 silly gunzTarPerm extractEntry test/scheduling.test.js
1526 silly gunzTarPerm extractEntry test/constants.test.js
1527 silly gunzTarPerm extractEntry test/serialization.test.js
1528 silly gunzTarPerm extractEntry test/cache.test.js
1529 silly gunzTarPerm extractEntry test/trace.test.js
1530 silly gunzTarPerm extractEntry test/blob.test.js
1531 silly gunzTarPerm extractEntry test/unicode.test.js
1532 silly gunzTarPerm extractEntry test/named_params.test.js
1533 silly gunzTarPerm extractEntry test/support/createdb.js
1534 silly gunzTarPerm extractEntry test/support/helper.js
1535 silly gunzTarPerm extractEntry test/support/elmo.png
1536 silly gunzTarPerm extractEntry test/support/prepare.db
1537 silly gunzTarPerm extractEntry test/support/script.sql
1538 silly doParallel preinstall 22
1539 silly preinstall [email protected] /Users/**/node_modules/.staging/balanced-match-fac245e15fb7fa4df566161606314520
1540 info lifecycle [email protected]~preinstall: [email protected]
1541 silly preinstall [email protected] /Users/**/node_modules/.staging/block-stream-b9cbcf7040d52dd0c382daa35db9633d
1542 info lifecycle [email protected]~preinstall: [email protected]
1543 silly preinstall [email protected] /Users/**/node_modules/.staging/concat-map-4a0cb178cbb0dc99a9760de023bed8c0
1544 info lifecycle [email protected]~preinstall: [email protected]
1545 silly preinstall [email protected] /Users/**/node_modules/.staging/brace-expansion-d6298b6844836ad1fd90c08e0688ddc0
1546 info lifecycle [email protected]~preinstall: [email protected]
1547 silly preinstall [email protected] /Users/**/node_modules/.staging/graceful-fs-edc734ee8b04eaa00b79190cf44c7a68
1548 info lifecycle [email protected]~preinstall: [email protected]
1549 silly preinstall [email protected] /Users/**/node_modules/.staging/keypress-e5d1d1bb785757cc60866cb9bec5032c
1550 info lifecycle [email protected]~preinstall: [email protected]
1551 silly preinstall [email protected] /Users/**/node_modules/.staging/commander-67595df1bb13c09553cd407e47d2eb24
1552 info lifecycle [email protected]~preinstall: [email protected]
1553 silly preinstall [email protected] /Users/**/node_modules/.staging/minimatch-4adb3c0e75344b5dbb62f75b5c72cfd3
1554 info lifecycle [email protected]~preinstall: [email protected]
1555 silly preinstall [email protected] /Users/**/node_modules/.staging/minimist-b6924a30d1073c179aabba758b5123d3
1556 info lifecycle [email protected]~preinstall: [email protected]
1557 silly preinstall [email protected] /Users/**/node_modules/.staging/mkdirp-346aaf6162689d19b7d24fe0edee9447
1558 info lifecycle [email protected]~preinstall: [email protected]
1559 silly preinstall [email protected] /Users/**/node_modules/.staging/mkdirp-9cda8d1f1937c47960eadd96e9a2d9ea
1560 info lifecycle [email protected]~preinstall: [email protected]
1561 silly preinstall [email protected] /Users/**/node_modules/.staging/path-is-absolute-324fa4eec521d599bb82eaaecb6542a3
1562 info lifecycle [email protected]~preinstall: [email protected]
1563 silly preinstall [email protected] /Users/**/node_modules/.staging/wrappy-38bde7b299cdfad5ade07e57057d4f80
1564 info lifecycle [email protected]~preinstall: [email protected]
1565 silly preinstall [email protected] /Users/**/node_modules/.staging/once-1feddbe34e27ade3651edf54904f2a6f
1566 info lifecycle [email protected]~preinstall: [email protected]
1567 silly preinstall [email protected] /Users/**/node_modules/.staging/inflight-816ae9f35ad8b442da55ad48c00d7c09
1568 info lifecycle [email protected]~preinstall: [email protected]
1569 silly preinstall [email protected] /Users/**/node_modules/.staging/glob-2b0a3e6caccc6c477b1577899f3408bf
1570 info lifecycle [email protected]~preinstall: [email protected]
1571 silly preinstall [email protected] /Users/**/node_modules/.staging/rimraf-ba29dc9145d984e6e2cc035a3d30e402
1572 info lifecycle [email protected]~preinstall: [email protected]
1573 silly preinstall [email protected] /Users/**/node_modules/.staging/fstream-b1932bd66c5634666d6948ef14abf096
1574 info lifecycle [email protected]~preinstall: [email protected]
1575 silly preinstall [email protected] /Users/**/node_modules/.staging/tar-52c065c6f9b03b104f7dec7ac6217115
1576 info lifecycle [email protected]~preinstall: [email protected]
1577 silly preinstall [email protected] /Users/**/node_modules/.staging/tar.gz-1206b55e02cd33bb0cf2f690f147fd93
1578 info lifecycle [email protected]~preinstall: [email protected]
1579 silly preinstall [email protected] /Users/**/node_modules/.staging/sqlite3-8a8006326a8d25e89a0c644922c9adeb
1580 info lifecycle [email protected]~preinstall: [email protected]
1581 silly preinstall [email protected] /Users/**/node_modules/.staging/mac-lookup-76190493c6bff062f7ce1fb111ace4b2
1582 info lifecycle [email protected]~preinstall: [email protected]
1583 silly lifecycle [email protected]~preinstall: no script for preinstall, continuing
1584 silly lifecycle [email protected]~preinstall: no script for preinstall, continuing
1585 silly lifecycle [email protected]~preinstall: no script for preinstall, continuing
1586 silly lifecycle [email protected]~preinstall: no script for preinstall, continuing
1587 silly lifecycle [email protected]~preinstall: no script for preinstall, continuing
1588 silly lifecycle [email protected]~preinstall: no script for preinstall, continuing
1589 silly lifecycle [email protected]~preinstall: no script for preinstall, continuing
1590 silly lifecycle [email protected]~preinstall: no script for preinstall, continuing
1591 silly lifecycle [email protected]~preinstall: no script for preinstall, continuing
1592 silly lifecycle [email protected]~preinstall: no script for preinstall, continuing
1593 silly lifecycle [email protected]~preinstall: no script for preinstall, continuing
1594 silly lifecycle [email protected]~preinstall: no script for preinstall, continuing
1595 silly lifecycle [email protected]~preinstall: no script for preinstall, continuing
1596 silly lifecycle [email protected]~preinstall: no script for preinstall, continuing
1597 silly lifecycle [email protected]~preinstall: no script for preinstall, continuing
1598 silly lifecycle [email protected]~preinstall: no script for preinstall, continuing
1599 silly lifecycle [email protected]~preinstall: no script for preinstall, continuing
1600 silly lifecycle [email protected]~preinstall: no script for preinstall, continuing
1601 silly lifecycle [email protected]~preinstall: no script for preinstall, continuing
1602 silly lifecycle [email protected]~preinstall: no script for preinstall, continuing
1603 silly lifecycle [email protected]~preinstall: no script for preinstall, continuing
1604 silly lifecycle [email protected]~preinstall: no script for preinstall, continuing
1605 silly doReverseSerial remove 0
1606 silly doSerial move 0
1607 silly doSerial finalize 22
1608 silly finalize /Users/**/node_modules/balanced-match
1609 silly finalize /Users/**/node_modules/block-stream
1610 silly finalize /Users/**/node_modules/concat-map
1611 silly finalize /Users/**/node_modules/brace-expansion
1612 silly finalize /Users/**/node_modules/graceful-fs
1613 silly finalize /Users/**/node_modules/keypress
1614 silly finalize /Users/**/node_modules/commander
1615 silly finalize /Users/**/node_modules/minimatch
1616 silly finalize /Users/**/node_modules/minimist
1617 silly finalize /Users/**/node_modules/fstream/node_modules/mkdirp
1618 silly finalize /Users/**/node_modules/mkdirp
1619 silly finalize /Users/**/node_modules/path-is-absolute
1620 silly finalize /Users/**/node_modules/wrappy
1621 silly finalize /Users/**/node_modules/once
1622 silly finalize /Users/**/node_modules/inflight
1623 silly finalize /Users/**/node_modules/glob
1624 silly finalize /Users/**/node_modules/rimraf
1625 silly finalize /Users/**/node_modules/fstream
1626 silly finalize /Users/**/node_modules/tar
1627 silly finalize /Users/**/node_modules/tar.gz
1628 silly finalize /Users/**/node_modules/mac-lookup/node_modules/sqlite3
1629 silly finalize /Users/**/node_modules/mac-lookup
1630 silly doSerial build 22
1631 silly build [email protected]
1632 info linkStuff [email protected]
1633 silly linkStuff [email protected] has /Users/**/node_modules as its parent node_modules
1634 verbose linkBins [email protected]
1635 verbose linkMans [email protected]
1636 silly build [email protected]
1637 info linkStuff [email protected]
1638 silly linkStuff [email protected] has /Users/**/node_modules as its parent node_modules
1639 verbose linkBins [email protected]
1640 verbose linkMans [email protected]
1641 silly build [email protected]
1642 info linkStuff [email protected]
1643 silly linkStuff [email protected] has /Users/**/node_modules as its parent node_modules
1644 verbose linkBins [email protected]
1645 verbose linkMans [email protected]
1646 silly build [email protected]
1647 info linkStuff [email protected]
1648 silly linkStuff [email protected] has /Users/**/node_modules as its parent node_modules
1649 verbose linkBins [email protected]
1650 verbose linkMans [email protected]
1651 silly build [email protected]
1652 info linkStuff [email protected]
1653 silly linkStuff [email protected] has /Users/**/node_modules as its parent node_modules
1654 verbose linkBins [email protected]
1655 verbose linkMans [email protected]
1656 silly build [email protected]
1657 info linkStuff [email protected]
1658 silly linkStuff [email protected] has /Users/**/node_modules as its parent node_modules
1659 verbose linkBins [email protected]
1660 verbose linkMans [email protected]
1661 silly build [email protected]
1662 info linkStuff [email protected]
1663 silly linkStuff [email protected] has /Users/**/node_modules as its parent node_modules
1664 verbose linkBins [email protected]
1665 verbose linkMans [email protected]
1666 silly build [email protected]
1667 info linkStuff [email protected]
1668 silly linkStuff [email protected] has /Users/**/node_modules as its parent node_modules
1669 verbose linkBins [email protected]
1670 verbose linkMans [email protected]
1671 silly build [email protected]
1672 info linkStuff [email protected]
1673 silly linkStuff [email protected] has /Users/**/node_modules as its parent node_modules
1674 verbose linkBins [email protected]
1675 verbose linkMans [email protected]
1676 silly build [email protected]
1677 info linkStuff [email protected]
1678 silly linkStuff [email protected] has /Users/**/node_modules/fstream/node_modules as its parent node_modules
1679 verbose linkBins [email protected]
1680 verbose link bins [ { mkdirp: 'bin/cmd.js' },
1680 verbose link bins   '/Users/**/node_modules/fstream/node_modules/.bin',
1680 verbose link bins   false ]
1681 verbose linkMans [email protected]
1682 silly gentlyRm /Users/**/node_modules/fstream/node_modules/.bin/mkdirp is being purged
1683 verbose gentlyRm don't care about contents; nuking /Users/**/node_modules/fstream/node_modules/.bin/mkdirp
1684 silly build [email protected]
1685 info linkStuff [email protected]
1686 silly linkStuff [email protected] has /Users/**/node_modules as its parent node_modules
1687 verbose linkBins [email protected]
1688 verbose linkMans [email protected]
1689 silly build [email protected]
1690 info linkStuff [email protected]
1691 silly linkStuff [email protected] has /Users/**/node_modules as its parent node_modules
1692 verbose linkBins [email protected]
1693 verbose linkMans [email protected]
1694 silly build [email protected]
1695 info linkStuff [email protected]
1696 silly linkStuff [email protected] has /Users/**/node_modules as its parent node_modules
1697 verbose linkBins [email protected]
1698 verbose linkMans [email protected]
1699 silly build [email protected]
1700 info linkStuff [email protected]
1701 silly linkStuff [email protected] has /Users/**/node_modules as its parent node_modules
1702 verbose linkBins [email protected]
1703 verbose linkMans [email protected]
1704 silly build [email protected]
1705 info linkStuff [email protected]
1706 silly linkStuff [email protected] has /Users/**/node_modules as its parent node_modules
1707 verbose linkBins [email protected]
1708 verbose linkMans [email protected]
1709 silly build [email protected]
1710 info linkStuff [email protected]
1711 silly linkStuff [email protected] has /Users/**/node_modules as its parent node_modules
1712 verbose linkBins [email protected]
1713 verbose linkMans [email protected]
1714 silly build [email protected]
1715 info linkStuff [email protected]
1716 silly linkStuff [email protected] has /Users/**/node_modules as its parent node_modules
1717 verbose linkBins [email protected]
1718 verbose link bins [ { rimraf: './bin.js' },
1718 verbose link bins   '/Users/**/node_modules/.bin',
1718 verbose link bins   false ]
1719 verbose linkMans [email protected]
1720 silly build [email protected]
1721 info linkStuff [email protected]
1722 silly linkStuff [email protected] has /Users/**/node_modules as its parent node_modules
1723 verbose linkBins [email protected]
1724 verbose linkMans [email protected]
1725 silly build [email protected]
1726 info linkStuff [email protected]
1727 silly linkStuff [email protected] has /Users/**/node_modules as its parent node_modules
1728 verbose linkBins [email protected]
1729 verbose linkMans [email protected]
1730 silly build [email protected]
1731 info linkStuff [email protected]
1732 silly linkStuff [email protected] has /Users/**/node_modules as its parent node_modules
1733 verbose linkBins [email protected]
1734 verbose link bins [ { targz: './bin/targz' },
1734 verbose link bins   '/Users/**/node_modules/.bin',
1734 verbose link bins   false ]
1735 verbose linkMans [email protected]
1736 silly build [email protected]
1737 info linkStuff [email protected]
1738 silly linkStuff [email protected] has /Users/**/node_modules/mac-lookup/node_modules as its parent node_modules
1739 verbose linkBins [email protected]
1740 verbose linkMans [email protected]
1741 silly build [email protected]
1742 info linkStuff [email protected]
1743 silly linkStuff [email protected] has /Users/**/node_modules as its parent node_modules
1744 verbose linkBins [email protected]
1745 verbose linkMans [email protected]
1746 silly doSerial global-link 0
1747 silly doParallel update-linked 0
1748 silly doSerial install 22
1749 silly install [email protected] /Users/**/node_modules/.staging/balanced-match-fac245e15fb7fa4df566161606314520
1750 info lifecycle [email protected]~install: [email protected]
1751 silly lifecycle [email protected]~install: no script for install, continuing
1752 silly install [email protected] /Users/**/node_modules/.staging/block-stream-b9cbcf7040d52dd0c382daa35db9633d
1753 info lifecycle [email protected]~install: [email protected]
1754 silly lifecycle [email protected]~install: no script for install, continuing
1755 silly install [email protected] /Users/**/node_modules/.staging/concat-map-4a0cb178cbb0dc99a9760de023bed8c0
1756 info lifecycle [email protected]~install: [email protected]
1757 silly lifecycle [email protected]~install: no script for install, continuing
1758 silly install [email protected] /Users/**/node_modules/.staging/brace-expansion-d6298b6844836ad1fd90c08e0688ddc0
1759 info lifecycle [email protected]~install: [email protected]
1760 silly lifecycle [email protected]~install: no script for install, continuing
1761 silly install [email protected] /Users/**/node_modules/.staging/graceful-fs-edc734ee8b04eaa00b79190cf44c7a68
1762 info lifecycle [email protected]~install: [email protected]
1763 silly lifecycle [email protected]~install: no script for install, continuing
1764 silly install [email protected] /Users/**/node_modules/.staging/keypress-e5d1d1bb785757cc60866cb9bec5032c
1765 info lifecycle [email protected]~install: [email protected]
1766 silly lifecycle [email protected]~install: no script for install, continuing
1767 silly install [email protected] /Users/**/node_modules/.staging/commander-67595df1bb13c09553cd407e47d2eb24
1768 info lifecycle [email protected]~install: [email protected]
1769 silly lifecycle [email protected]~install: no script for install, continuing
1770 silly install [email protected] /Users/**/node_modules/.staging/minimatch-4adb3c0e75344b5dbb62f75b5c72cfd3
1771 info lifecycle [email protected]~install: [email protected]
1772 silly lifecycle [email protected]~install: no script for install, continuing
1773 silly install [email protected] /Users/**/node_modules/.staging/minimist-b6924a30d1073c179aabba758b5123d3
1774 info lifecycle [email protected]~install: [email protected]
1775 silly lifecycle [email protected]~install: no script for install, continuing
1776 silly install [email protected] /Users/**/node_modules/.staging/mkdirp-346aaf6162689d19b7d24fe0edee9447
1777 info lifecycle [email protected]~install: [email protected]
1778 silly lifecycle [email protected]~install: no script for install, continuing
1779 silly install [email protected] /Users/**/node_modules/.staging/mkdirp-9cda8d1f1937c47960eadd96e9a2d9ea
1780 info lifecycle [email protected]~install: [email protected]
1781 silly lifecycle [email protected]~install: no script for install, continuing
1782 silly install [email protected] /Users/**/node_modules/.staging/path-is-absolute-324fa4eec521d599bb82eaaecb6542a3
1783 info lifecycle [email protected]~install: [email protected]
1784 silly lifecycle [email protected]~install: no script for install, continuing
1785 silly install [email protected] /Users/**/node_modules/.staging/wrappy-38bde7b299cdfad5ade07e57057d4f80
1786 info lifecycle [email protected]~install: [email protected]
1787 silly lifecycle [email protected]~install: no script for install, continuing
1788 silly install [email protected] /Users/**/node_modules/.staging/once-1feddbe34e27ade3651edf54904f2a6f
1789 info lifecycle [email protected]~install: [email protected]
1790 silly lifecycle [email protected]~install: no script for install, continuing
1791 silly install [email protected] /Users/**/node_modules/.staging/inflight-816ae9f35ad8b442da55ad48c00d7c09
1792 info lifecycle [email protected]~install: [email protected]
1793 silly lifecycle [email protected]~install: no script for install, continuing
1794 silly install [email protected] /Users/**/node_modules/.staging/glob-2b0a3e6caccc6c477b1577899f3408bf
1795 info lifecycle [email protected]~install: [email protected]
1796 silly lifecycle [email protected]~install: no script for install, continuing
1797 silly install [email protected] /Users/**/node_modules/.staging/rimraf-ba29dc9145d984e6e2cc035a3d30e402
1798 info lifecycle [email protected]~install: [email protected]
1799 silly lifecycle [email protected]~install: no script for install, continuing
1800 silly install [email protected] /Users/**/node_modules/.staging/fstream-b1932bd66c5634666d6948ef14abf096
1801 info lifecycle [email protected]~install: [email protected]
1802 silly lifecycle [email protected]~install: no script for install, continuing
1803 silly install [email protected] /Users/**/node_modules/.staging/tar-52c065c6f9b03b104f7dec7ac6217115
1804 info lifecycle [email protected]~install: [email protected]
1805 silly lifecycle [email protected]~install: no script for install, continuing
1806 silly install [email protected] /Users/**/node_modules/.staging/tar.gz-1206b55e02cd33bb0cf2f690f147fd93
1807 info lifecycle [email protected]~install: [email protected]
1808 silly lifecycle [email protected]~install: no script for install, continuing
1809 silly install [email protected] /Users/**/node_modules/.staging/sqlite3-8a8006326a8d25e89a0c644922c9adeb
1810 info lifecycle [email protected]~install: [email protected]
1811 verbose lifecycle [email protected]~install: unsafe-perm in lifecycle true
1812 verbose lifecycle [email protected]~install: PATH: /usr/local/lib/node_modules/npm/bin/node-gyp-bin:/Users/**/node_modules/mac-lookup/node_modules/sqlite3/node_modules/.bin:/Users/**/node_modules/mac-lookup/node_modules/.bin:/Users/**/node_modules/.bin:/Users/**/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin
1813 verbose lifecycle [email protected]~install: CWD: /Users/**/node_modules/mac-lookup/node_modules/sqlite3
1814 silly lifecycle [email protected]~install: Args: [ '-c', 'node build.js' ]
1815 silly lifecycle [email protected]~install: Returned: code: 1  signal: null
1816 info lifecycle [email protected]~install: Failed to exec install script
1817 verbose unlock done using /Users/**/.npm/_locks/staging-e8797dd316fd2098.lock for /Users/**/node_modules/.staging
1818 silly rollbackFailedOptional Starting
1819 silly rollbackFailedOptional Finishing
1820 silly runTopLevelLifecycles Starting
1821 silly runTopLevelLifecycles Finishing
1822 silly install printInstalled
1823 warn EPACKAGEJSON [email protected] No repository field.
1824 warn EPACKAGEJSON [email protected] No license field.
1825 verbose stack Error: [email protected] install: `node build.js`
1825 verbose stack Exit status 1
1825 verbose stack     at EventEmitter.<anonymous> (/usr/local/lib/node_modules/npm/lib/utils/lifecycle.js:233:16)
1825 verbose stack     at emitTwo (events.js:87:13)
1825 verbose stack     at EventEmitter.emit (events.js:172:7)
1825 verbose stack     at ChildProcess.<anonymous> (/usr/local/lib/node_modules/npm/lib/utils/spawn.js:24:14)
1825 verbose stack     at emitTwo (events.js:87:13)
1825 verbose stack     at ChildProcess.emit (events.js:172:7)
1825 verbose stack     at maybeClose (internal/child_process.js:818:16)
1825 verbose stack     at Process.ChildProcess._handle.onexit (internal/child_process.js:211:5)
1826 verbose pkgid [email protected]
1827 verbose cwd /Users/**
1828 error Darwin 15.0.0
1829 error argv "/usr/local/Cellar/node/4.2.1/bin/node" "/usr/local/bin/npm" "install" "mac-lookup"
1830 error node v4.2.1
1831 error npm  v3.3.9
1832 error code ELIFECYCLE
1833 error [email protected] install: `node build.js`
1833 error Exit status 1
1834 error Failed at the [email protected] install script 'node build.js'.
1834 error This is most likely a problem with the sqlite3 package,
1834 error not with npm itself.
1834 error Tell the author that this fails on your system:
1834 error     node build.js
1834 error You can get their info via:
1834 error     npm owner ls sqlite3
1834 error There is likely additional logging output above.
1835 verbose exit [ 1, true ]

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.