Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ERR! configure error Windows 10 #95

Closed
kingvagabond opened this issue May 3, 2018 · 23 comments
Closed

ERR! configure error Windows 10 #95

kingvagabond opened this issue May 3, 2018 · 23 comments
Labels

Comments

@kingvagabond
Copy link

kingvagabond commented May 3, 2018

run command in cmd.exe:

create-proton-app my-proton-app

output errors in console:

reactapp\my-proton-app\node_modules\libui-node>if not defined npm_config_node_gyp (node
"C:\Users\userName\AppData\Roaming\npm\node_modules\npm\node_modules\npm-lifecycle\node-gyp-bin\....\node_modules\node-gyp\bin\node-gyp.js" configure build ) else (node "C:\Users\userName\AppData\Roaming\npm\node_modules\npm\node_modules\npm-lifecycle\node_modules\node-gyp\bin\node-gyp.js" configure build )

gyp
ERR! configure error
gyp ERR! stack Error: Can't find Python executable "C:\Users\userName\AppData\Local\Programs\Python\Python36-32\python.EXE", you can set the PYTHON env variable.
gyp ERR! stack at PythonFinder.failNoPython (C:\Users\userName\AppData\Roaming\npm\node_modules\npm\node_modules\npm-lifecycle\node_modules\node-gyp\lib\configure.js:483:19)
gyp ERR! stack at PythonFinder. (C:\Users\userName\AppData\Roaming\npm\node_modules\npm\node_modules\npm-lifecycle\node_modules\node-gyp\lib\configure.js:508:16)
gyp ERR! stack at C:\Users\userName\AppData\Roaming\npm\node_modules\npm\node_modules\graceful-fs\polyfills.js:284:29
gyp ERR! stack at FSReqWrap.oncomplete (fs.js:152:21)
gyp ERR! System Windows_NT 10.0.17134
gyp ERR! command "C:\Program Files\nodejs\node.exe" "C:\Users\userName\AppData\Roaming\npm\node_modules\npm\node_modules\npm-lifecycle\node_modules\node-gyp\bin\node-gyp.js" "configure" "build"
gyp ERR! cwd C:\Users\userName\Desktop\reactapp\my-proton-app\node_modules\libui-node
gyp ERR! node -v v8.10.0
gyp ERR! node-gyp -v v3.6.2
gyp ERR! not ok

npm
ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! libui-node@0.1.0 build: node-gyp configure build
npm ERR! Exit status 1

npm ERR!
npm ERR! Failed at the libui-node@0.1.0 build script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\userName\AppData\Roaming\npm-cache_logs\2018-05-03T03_11_22_548Z-debug.log

Note: Actually I tried to open this debug.log file but it was empty.

npm
ERR! code ELIFECYCLE
npm ERR! errno 1

npm ERR! libui-node@0.1.0 install: libui-download && autogypi && npm run build
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the libui-node@0.1.0 install script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\userName\AppData\Roaming\npm-cache_logs\2018-05-03T03_11_23_405Z-debug.log

An error ocurred:
npm.cmd install --save --loglevel error proton-native has failed.

(node:7824) UnhandledPromiseRejectionWarning: Error: [object Object]
at isOnline.then.then.then.catch (C:\Users\userName\AppData\Roaming\npm\node_modules\create-proton-app\src\createApp.js:95:11)
at
(node:7824) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1)
(node:7824) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.

Environment:
Windows 10 64bit, node v10.0.0

@parro-it
Copy link
Contributor

parro-it commented May 3, 2018

If you install https://www.npmjs.com/package/windows-build-tools you get python and MSVC++ command line compiler.

@kingvagabond
Copy link
Author

This does not help unfortunately. Actually when it says:

gyp ERR! stack Error: Can't find Python executable "C:\Users\userName\AppData\Local\Programs\Python\Python36-32\python.EXE", you can set the PYTHON env variable.

I opened the exact folder path and python.exe is there all the time.

@parro-it
Copy link
Contributor

parro-it commented May 3, 2018

What happens if you type python in a cmd window?

@mischnic
Copy link
Contributor

mischnic commented May 3, 2018

Docs:

If you're on Windows, you may need to install windows-build-tools to compile libui-node correctly.

Could you try that out?

npm install --global --production windows-build-tools

@parro-it
Copy link
Contributor

parro-it commented May 3, 2018

Could you try that out?

@mischnic he already tried: #95 (comment)

@kusti8 kusti8 added the bug label May 4, 2018
@kingvagabond
Copy link
Author

I have python 3 installed and can enter python environment when typing python from CMD window.

@kingvagabond
Copy link
Author

Also tried with installing windows-build-tools:
npm install --global --production windows-build-tools

But this does not help.

@Angelk90
Copy link

Angelk90 commented May 4, 2018

@kusti8 , @kingvagabond , @parro-it , @albe-rosado :
I have the same problem on window 8.1 does not work.
I installed: npm install --global --production windows-build-tools.
Installed correctly.
I own pyton 2.7.
npm list -g create-proton-app: 1.1.5
When I create an error project.
How can I solve?

@kingvagabond
Copy link
Author

I have confirmed this with more certainty that this issue may be related to a normal user without admin permission. If I use an admin account to run the command create-proton-app my-app, I will not meet the error. It seems that some commands need admin permission but it will not popup dialog to ask for admin password when create-proton-app command executes.

@kingvagabond
Copy link
Author

@Angelk90 Try do the same thing with admin account and see if you will meet this error.

@Angelk90
Copy link

Angelk90 commented May 4, 2018

@kingvagabond :
P.Š. How do you win console, to take the text?
In other words, do the redirect of the output?
Same thing:
slsl

@parro-it
Copy link
Contributor

parro-it commented May 8, 2018

@Angelk90 hey another Italian! ❤️
Could you try installing Visual C++ Redistributable Package per Visual Studio 2013 for your platform?

@Angelk90
Copy link

Angelk90 commented May 8, 2018

@parro-it : I tried as you say, it does not work the same. :(

@Angelk90
Copy link

@parro-it : I can not, can I contact you in private?

@mischnic
Copy link
Contributor

mischnic commented May 25, 2018

@Angelk90 Could you please try uninstalling all Visual Studio versions you have currently currently installed (2013/2015/2017) and then running npm install --global windows-build-tools?

@Angelk90
Copy link

@mischnic , @parro-it :
You could tell me all the steps I have to do to start a project.
That's all I've installed on visual studio right now, do I have to uninstall everything?
2005/2008/2010/2012/2013/2015/2017?
Then, what should I do next?
Install visual studio code again?
stud

@mischnic
Copy link
Contributor

mischnic commented May 26, 2018

Only uninstall "Microsoft Visual Studio Community 2015" and the Installer. Don't uninstall any of the "Redistributable" or "Tools" because it might break other applications.
Then run npm install --global windows-build-tools
(I don't have this error myself, but this was a solution that came up with a "could not find windowssdkdir variable from the registry" google search -> here)

@Angelk90
Copy link

@mischnic : Read here: felixrieseberg/windows-build-tools#110
I have this problem, but I'm not understanding how to fix it seems to be a windows-build-tools problem.

@Angelk90
Copy link

Angelk90 commented May 30, 2018

@kingvagabond , @parro-it , @mischnic , @kusti8 , @albe-rosado :
I'm not succeeding, let's start all over again.
I have Win 8.1, I installed windows-build-tools 3.0.0.
When I create the project with: create-proton-app my-app
It gives me the following error: npm.cmd install has failed.
You could do a win test, let me know what he tells you.
Log file:

0 info it worked if it ends with ok
1 verbose cli [ 'C:\\Program Files\\nodejs\\node.exe',
1 verbose cli   'C:\\Program Files\\nodejs\\node_modules\\npm\\bin\\npm-cli.js',
1 verbose cli   'install' ]
2 info using npm@5.6.0
3 info using node@v8.11.1
4 verbose npm-session 8ba163f651c43852
5 silly install runPreinstallTopLevelLifecycles
6 silly preinstall my-app@0.0.1
7 info lifecycle my-app@0.0.1~preinstall: my-app@0.0.1
8 silly install loadCurrentTree
9 silly install readLocalPackageData
10 silly install loadIdealTree
11 silly install cloneCurrentTreeToIdealTree
12 silly install loadShrinkwrap
13 silly install loadAllDepsIntoIdealTree
14 http fetch GET 304 https://registry.npmjs.org/proton-native 591ms (from cache)
15 silly pacote tag manifest for proton-native@latest fetched in 716ms
16 http fetch GET 304 https://registry.npmjs.org/libui-node 159ms (from cache)
17 silly pacote range manifest for libui-node@^0.2.0 fetched in 166ms
18 http fetch GET 304 https://registry.npmjs.org/nbind 401ms (from cache)
19 http fetch GET 304 https://registry.npmjs.org/autogypi 406ms (from cache)
20 silly pacote range manifest for nbind@^0.3.14 fetched in 407ms
21 silly pacote range manifest for autogypi@^0.2.2 fetched in 418ms
22 http fetch GET 304 https://registry.npmjs.org/node-gyp 522ms (from cache)
23 silly pacote range manifest for node-gyp@^3.3.1 fetched in 545ms
24 http fetch GET 200 https://registry.npmjs.org/commander 125ms (from cache)
25 silly pacote range manifest for commander@~2.9.0 fetched in 215ms
26 http fetch GET 304 https://registry.npmjs.org/libui-download 909ms (from cache)
27 silly pacote range manifest for libui-download@^1.1.0 fetched in 923ms
28 http fetch GET 304 https://registry.npmjs.org/nan 586ms (from cache)
29 http fetch GET 304 https://registry.npmjs.org/emscripten-library-decorator 593ms (from cache)
30 http fetch GET 304 https://registry.npmjs.org/resolve 587ms (from cache)
31 http fetch GET 304 https://registry.npmjs.org/nopt 442ms (from cache)
32 silly pacote range manifest for nan@^2.9.2 fetched in 608ms
33 http fetch GET 304 https://registry.npmjs.org/glob 460ms (from cache)
34 silly pacote range manifest for resolve@~1.1.7 fetched in 610ms
35 silly pacote range manifest for emscripten-library-decorator@~0.2.2 fetched in 620ms
36 silly pacote range manifest for nopt@2 || 3 fetched in 465ms
37 silly pacote range manifest for glob@^7.0.3 fetched in 493ms
38 http fetch GET 304 https://registry.npmjs.org/@mischnic%2fasync-hooks 1147ms (from cache)
39 http fetch GET 304 https://registry.npmjs.org/fstream 581ms (from cache)
40 http fetch GET 304 https://registry.npmjs.org/osenv 409ms (from cache)
41 silly pacote range manifest for @mischnic/async-hooks@^0.0.4 fetched in 1155ms
42 silly pacote range manifest for fstream@^1.0.0 fetched in 590ms
43 silly pacote range manifest for osenv@0 fetched in 426ms
44 http fetch GET 304 https://registry.npmjs.org/rimraf 320ms (from cache)
45 silly pacote range manifest for rimraf@2 fetched in 348ms
46 silly pacote range manifest for glob@^7.0.5 fetched in 8ms
47 http fetch GET 304 https://registry.npmjs.org/graceful-readlink 288ms (from cache)
48 http fetch GET 304 https://registry.npmjs.org/tar 332ms (from cache)
49 http fetch GET 304 https://registry.npmjs.org/home-path 333ms (from cache)
50 silly pacote range manifest for graceful-readlink@>= 1.0.0 fetched in 339ms
51 http fetch GET 304 https://registry.npmjs.org/regenerator-runtime 319ms (from cache)
52 silly pacote range manifest for tar@^2.0.0 fetched in 360ms
53 silly pacote range manifest for home-path@^1.0.1 fetched in 374ms
54 silly pacote range manifest for regenerator-runtime@^0.9.5 fetched in 354ms
55 silly pacote range manifest for fstream@^1.0.2 fetched in 29ms
56 http fetch GET 304 https://registry.npmjs.org/tar 291ms (from cache)
57 silly pacote range manifest for tar@^4.4.0 fetched in 299ms
58 http fetch GET 304 https://registry.npmjs.org/es6-shim 352ms (from cache)
59 http fetch GET 304 https://registry.npmjs.org/abbrev 365ms (from cache)
60 silly pacote range manifest for es6-shim@^0.35.3 fetched in 370ms
61 silly pacote range manifest for abbrev@1 fetched in 382ms
62 http fetch GET 304 https://registry.npmjs.org/block-stream 222ms (from cache)
63 silly pacote range manifest for block-stream@* fetched in 234ms
64 http fetch GET 304 https://registry.npmjs.org/chownr 251ms (from cache)
65 http fetch GET 304 https://registry.npmjs.org/fs-minipass 253ms (from cache)
66 silly pacote range manifest for chownr@^1.0.1 fetched in 264ms
67 silly pacote range manifest for fs-minipass@^1.2.5 fetched in 264ms
68 http fetch GET 304 https://registry.npmjs.org/minipass 280ms (from cache)
69 http fetch GET 200 https://registry.npmjs.org/minipass 16ms (from cache)
70 http fetch GET 304 https://registry.npmjs.org/npmlog 1185ms (from cache)
71 silly pacote range manifest for minipass@^2.3.3 fetched in 289ms
72 silly pacote range manifest for minipass@^2.2.1 fetched in 29ms
73 silly pacote range manifest for npmlog@0 || 1 || 2 || 3 || 4 fetched in 1199ms
74 http fetch GET 304 https://registry.npmjs.org/minizlib 486ms (from cache)
75 silly pacote range manifest for minizlib@^1.1.0 fetched in 504ms
76 http fetch GET 304 https://registry.npmjs.org/mv 973ms (from cache)
77 silly pacote range manifest for mv@^2.0.3 fetched in 985ms
78 silly pacote range manifest for rimraf@~2.4.0 fetched in 20ms
79 http fetch GET 304 https://registry.npmjs.org/yallist 294ms (from cache)
80 http fetch GET 304 https://registry.npmjs.org/are-we-there-yet 290ms (from cache)
81 silly pacote range manifest for glob@^6.0.1 fetched in 13ms
82 silly pacote range manifest for yallist@^3.0.0 fetched in 313ms
83 http fetch GET 200 https://registry.npmjs.org/ncp 48ms (from cache)
84 silly pacote range manifest for are-we-there-yet@~1.1.2 fetched in 307ms
85 silly pacote range manifest for ncp@~2.0.0 fetched in 72ms
86 http fetch GET 304 https://registry.npmjs.org/console-control-strings 326ms (from cache)
87 http fetch GET 304 https://registry.npmjs.org/gauge 328ms (from cache)
88 silly pacote range manifest for console-control-strings@~1.1.0 fetched in 337ms
89 silly pacote range manifest for gauge@~2.7.3 fetched in 339ms
90 silly pacote range manifest for console-control-strings@^1.0.0 fetched in 41ms
91 http fetch GET 304 https://registry.npmjs.org/yallist 713ms (from cache)
92 silly pacote range manifest for yallist@^3.0.2 fetched in 717ms
93 http fetch GET 304 https://registry.npmjs.org/delegates 329ms (from cache)
94 silly pacote range manifest for delegates@^1.0.0 fetched in 333ms
95 http fetch GET 304 https://registry.npmjs.org/has-unicode 418ms (from cache)
96 silly pacote range manifest for has-unicode@^2.0.0 fetched in 424ms
97 http fetch GET 304 https://registry.npmjs.org/aproba 426ms (from cache)
98 silly pacote range manifest for aproba@^1.0.3 fetched in 432ms
99 http fetch GET 304 https://registry.npmjs.org/wide-align 467ms (from cache)
100 silly pacote range manifest for wide-align@^1.1.0 fetched in 470ms
101 silly pacote tag manifest for proton-native@latest fetched in 2ms
102 silly resolveWithNewModule proton-native@1.1.5 checking installable status
103 silly pacote range manifest for libui-node@^0.2.0 fetched in 4ms
104 silly resolveWithNewModule libui-node@0.2.0 checking installable status
105 silly pacote range manifest for autogypi@^0.2.2 fetched in 6ms
106 silly resolveWithNewModule autogypi@0.2.2 checking installable status
107 silly pacote range manifest for @mischnic/async-hooks@^0.0.4 fetched in 10ms
108 silly resolveWithNewModule @mischnic/async-hooks@0.0.4 checking installable status
109 silly pacote range manifest for libui-download@^1.1.0 fetched in 14ms
110 silly resolveWithNewModule libui-download@1.1.0 checking installable status
111 silly pacote range manifest for nbind@^0.3.14 fetched in 18ms
112 silly resolveWithNewModule nbind@0.3.15 checking installable status
113 silly pacote range manifest for node-gyp@^3.3.1 fetched in 21ms
114 silly resolveWithNewModule node-gyp@3.6.2 checking installable status
115 silly pacote range manifest for es6-shim@^0.35.3 fetched in 3ms
116 silly resolveWithNewModule es6-shim@0.35.3 checking installable status
117 silly pacote range manifest for commander@~2.9.0 fetched in 4ms
118 silly resolveWithNewModule commander@2.9.0 checking installable status
119 silly pacote range manifest for resolve@~1.1.7 fetched in 6ms
120 silly resolveWithNewModule resolve@1.1.7 checking installable status
121 silly pacote range manifest for graceful-readlink@>= 1.0.0 fetched in 3ms
122 silly resolveWithNewModule graceful-readlink@1.0.1 checking installable status
123 silly pacote range manifest for home-path@^1.0.1 fetched in 6ms
124 silly resolveWithNewModule home-path@1.0.6 checking installable status
125 silly pacote range manifest for mv@^2.0.3 fetched in 8ms
126 silly resolveWithNewModule mv@2.1.1 checking installable status
127 silly pacote range manifest for regenerator-runtime@^0.9.5 fetched in 11ms
128 silly resolveWithNewModule regenerator-runtime@0.9.6 checking installable status
129 silly pacote range manifest for tar@^4.4.0 fetched in 12ms
130 silly resolveWithNewModule tar@4.4.4 checking installable status
131 silly pacote range manifest for rimraf@~2.4.0 fetched in 4ms
132 silly resolveWithNewModule rimraf@2.4.5 checking installable status
133 silly pacote range manifest for ncp@~2.0.0 fetched in 7ms
134 silly resolveWithNewModule ncp@2.0.0 checking installable status
135 silly pacote range manifest for glob@^6.0.1 fetched in 3ms
136 silly resolveWithNewModule glob@6.0.4 checking installable status
137 silly pacote range manifest for chownr@^1.0.1 fetched in 5ms
138 silly resolveWithNewModule chownr@1.0.1 checking installable status
139 silly pacote range manifest for minipass@^2.3.3 fetched in 7ms
140 silly resolveWithNewModule minipass@2.3.3 checking installable status
141 silly pacote range manifest for fs-minipass@^1.2.5 fetched in 9ms
142 silly resolveWithNewModule fs-minipass@1.2.5 checking installable status
143 silly pacote range manifest for minizlib@^1.1.0 fetched in 11ms
144 silly resolveWithNewModule minizlib@1.1.0 checking installable status
145 silly pacote range manifest for yallist@^3.0.2 fetched in 13ms
146 silly resolveWithNewModule yallist@3.0.2 checking installable status
147 silly pacote range manifest for emscripten-library-decorator@~0.2.2 fetched in 4ms
148 silly resolveWithNewModule emscripten-library-decorator@0.2.2 checking installable status
149 silly pacote range manifest for nan@^2.9.2 fetched in 5ms
150 silly resolveWithNewModule nan@2.10.0 checking installable status
151 silly pacote range manifest for fstream@^1.0.0 fetched in 13ms
152 silly resolveWithNewModule fstream@1.0.11 checking installable status
153 silly pacote range manifest for glob@^7.0.3 fetched in 15ms
154 silly resolveWithNewModule glob@7.1.2 checking installable status
155 silly pacote range manifest for nopt@2 || 3 fetched in 17ms
156 silly resolveWithNewModule nopt@3.0.6 checking installable status
157 silly pacote range manifest for osenv@0 fetched in 20ms
158 silly resolveWithNewModule osenv@0.1.5 checking installable status
159 silly pacote range manifest for npmlog@0 || 1 || 2 || 3 || 4 fetched in 23ms
160 silly resolveWithNewModule npmlog@4.1.2 checking installable status
161 silly pacote range manifest for tar@^2.0.0 fetched in 26ms
162 silly resolveWithNewModule tar@2.2.1 checking installable status
163 silly pacote range manifest for abbrev@1 fetched in 3ms
164 silly resolveWithNewModule abbrev@1.1.1 checking installable status
165 silly pacote range manifest for are-we-there-yet@~1.1.2 fetched in 6ms
166 silly resolveWithNewModule are-we-there-yet@1.1.5 checking installable status
167 silly pacote range manifest for console-control-strings@~1.1.0 fetched in 8ms
168 silly resolveWithNewModule console-control-strings@1.1.0 checking installable status
169 silly pacote range manifest for gauge@~2.7.3 fetched in 10ms
170 silly resolveWithNewModule gauge@2.7.4 checking installable status
171 silly pacote range manifest for delegates@^1.0.0 fetched in 3ms
172 silly resolveWithNewModule delegates@1.0.0 checking installable status
173 silly pacote range manifest for aproba@^1.0.3 fetched in 5ms
174 silly resolveWithNewModule aproba@1.2.0 checking installable status
175 silly pacote range manifest for wide-align@^1.1.0 fetched in 6ms
176 silly resolveWithNewModule wide-align@1.1.3 checking installable status
177 silly pacote range manifest for has-unicode@^2.0.0 fetched in 9ms
178 silly resolveWithNewModule has-unicode@2.0.1 checking installable status
179 silly pacote range manifest for block-stream@* fetched in 2ms
180 silly resolveWithNewModule block-stream@0.0.9 checking installable status
181 http fetch GET 304 https://registry.npmjs.org/fsevents 213ms (from cache)
182 silly pacote range manifest for fsevents@^1.0.0 fetched in 219ms
183 silly resolveWithNewModule fsevents@1.2.4 checking installable status
184 silly pacote trying https://registry.npmjs.org/fsevents/-/fsevents-1.2.4.tgz by hash: sha512-z8H8/diyk76B7q5wg+Ud0+CqzcAF3mBBI/bA5ne5zrRUUIvNkJY//D3BqyH571KuAC4Nr7Rw7CjWX4r0y9DvNg==
185 silly pacote https://registry.npmjs.org/fsevents/-/fsevents-1.2.4.tgz extracted to C:\Users\angel\AppData\Local\Temp\npm-9836-edb1fd3b\unpack-ace4f4f7 by content address 3538ms
186 silly addBundled read tarball
187 silly cleanup remove extracted module
188 silly currentTree my-app@0.0.1
188 silly currentTree +-- 7zip-bin@4.0.2
188 silly currentTree +-- ajv-keywords@3.2.0
188 silly currentTree +-- ajv@5.5.2
188 silly currentTree +-- ansi-align@2.0.0
188 silly currentTree | +-- ansi-regex@3.0.0
188 silly currentTree | +-- is-fullwidth-code-point@2.0.0
188 silly currentTree | +-- string-width@2.1.1
188 silly currentTree | `-- strip-ansi@4.0.0
188 silly currentTree +-- ansi-regex@2.1.1
188 silly currentTree +-- ansi-styles@2.2.1
188 silly currentTree +-- anymatch@1.3.2
188 silly currentTree +-- app-builder-bin@1.9.7
188 silly currentTree +-- argparse@1.0.10
188 silly currentTree +-- arr-diff@2.0.0
188 silly currentTree +-- arr-flatten@1.1.0
188 silly currentTree +-- array-find-index@1.0.2
188 silly currentTree +-- array-unique@0.2.1
188 silly currentTree +-- asap@2.0.6
188 silly currentTree +-- asn1@0.2.3
188 silly currentTree +-- assert-plus@1.0.0
188 silly currentTree +-- async-each@1.0.1
188 silly currentTree +-- async-exit-hook@2.0.1
188 silly currentTree +-- asynckit@0.4.0
188 silly currentTree +-- aws-sign2@0.7.0
188 silly currentTree +-- aws4@1.7.0
188 silly currentTree +-- babel-cli@6.26.0
188 silly currentTree | +-- commander@2.15.1
188 silly currentTree | `-- glob@7.1.2
188 silly currentTree +-- babel-code-frame@6.26.0
188 silly currentTree +-- babel-core@6.26.3
188 silly currentTree +-- babel-generator@6.26.1
188 silly currentTree +-- babel-helper-bindify-decorators@6.24.1
188 silly currentTree +-- babel-helper-builder-binary-assignment-operator-visitor@6.24.1
188 silly currentTree +-- babel-helper-builder-react-jsx@6.26.0
188 silly currentTree +-- babel-helper-call-delegate@6.24.1
188 silly currentTree +-- babel-helper-define-map@6.26.0
188 silly currentTree +-- babel-helper-explode-assignable-expression@6.24.1
188 silly currentTree +-- babel-helper-explode-class@6.24.1
188 silly currentTree +-- babel-helper-function-name@6.24.1
188 silly currentTree +-- babel-helper-get-function-arity@6.24.1
188 silly currentTree +-- babel-helper-hoist-variables@6.24.1
188 silly currentTree +-- babel-helper-optimise-call-expression@6.24.1
188 silly currentTree +-- babel-helper-regex@6.26.0
188 silly currentTree +-- babel-helper-remap-async-to-generator@6.24.1
188 silly currentTree +-- babel-helper-replace-supers@6.24.1
188 silly currentTree +-- babel-helpers@6.24.1
188 silly currentTree +-- babel-messages@6.23.0
188 silly currentTree +-- babel-plugin-check-es2015-constants@6.22.0
188 silly currentTree +-- babel-plugin-syntax-async-functions@6.13.0
188 silly currentTree +-- babel-plugin-syntax-async-generators@6.13.0
188 silly currentTree +-- babel-plugin-syntax-class-constructor-call@6.18.0
188 silly currentTree +-- babel-plugin-syntax-class-properties@6.13.0
188 silly currentTree +-- babel-plugin-syntax-decorators@6.13.0
188 silly currentTree +-- babel-plugin-syntax-do-expressions@6.13.0
188 silly currentTree +-- babel-plugin-syntax-dynamic-import@6.18.0
188 silly currentTree +-- babel-plugin-syntax-exponentiation-operator@6.13.0
188 silly currentTree +-- babel-plugin-syntax-export-extensions@6.13.0
188 silly currentTree +-- babel-plugin-syntax-flow@6.18.0
188 silly currentTree +-- babel-plugin-syntax-function-bind@6.13.0
188 silly currentTree +-- babel-plugin-syntax-jsx@6.18.0
188 silly currentTree +-- babel-plugin-syntax-object-rest-spread@6.13.0
188 silly currentTree +-- babel-plugin-syntax-trailing-function-commas@6.22.0
188 silly currentTree +-- babel-plugin-transform-async-generator-functions@6.24.1
188 silly currentTree +-- babel-plugin-transform-async-to-generator@6.24.1
188 silly currentTree +-- babel-plugin-transform-class-constructor-call@6.24.1
188 silly currentTree +-- babel-plugin-transform-class-properties@6.24.1
188 silly currentTree +-- babel-plugin-transform-decorators@6.24.1
188 silly currentTree +-- babel-plugin-transform-do-expressions@6.22.0
188 silly currentTree +-- babel-plugin-transform-es2015-arrow-functions@6.22.0
188 silly currentTree +-- babel-plugin-transform-es2015-block-scoped-functions@6.22.0
188 silly currentTree +-- babel-plugin-transform-es2015-block-scoping@6.26.0
188 silly currentTree +-- babel-plugin-transform-es2015-classes@6.24.1
188 silly currentTree +-- babel-plugin-transform-es2015-computed-properties@6.24.1
188 silly currentTree +-- babel-plugin-transform-es2015-destructuring@6.23.0
188 silly currentTree +-- babel-plugin-transform-es2015-duplicate-keys@6.24.1
188 silly currentTree +-- babel-plugin-transform-es2015-for-of@6.23.0
188 silly currentTree +-- babel-plugin-transform-es2015-function-name@6.24.1
188 silly currentTree +-- babel-plugin-transform-es2015-literals@6.22.0
188 silly currentTree +-- babel-plugin-transform-es2015-modules-amd@6.24.1
188 silly currentTree +-- babel-plugin-transform-es2015-modules-commonjs@6.26.2
188 silly currentTree +-- babel-plugin-transform-es2015-modules-systemjs@6.24.1
188 silly currentTree +-- babel-plugin-transform-es2015-modules-umd@6.24.1
188 silly currentTree +-- babel-plugin-transform-es2015-object-super@6.24.1
188 silly currentTree +-- babel-plugin-transform-es2015-parameters@6.24.1
188 silly currentTree +-- babel-plugin-transform-es2015-shorthand-properties@6.24.1
188 silly currentTree +-- babel-plugin-transform-es2015-spread@6.22.0
188 silly currentTree +-- babel-plugin-transform-es2015-sticky-regex@6.24.1
188 silly currentTree +-- babel-plugin-transform-es2015-template-literals@6.22.0
188 silly currentTree +-- babel-plugin-transform-es2015-typeof-symbol@6.23.0
188 silly currentTree +-- babel-plugin-transform-es2015-unicode-regex@6.24.1
188 silly currentTree +-- babel-plugin-transform-exponentiation-operator@6.24.1
188 silly currentTree +-- babel-plugin-transform-export-extensions@6.22.0
188 silly currentTree +-- babel-plugin-transform-flow-strip-types@6.22.0
188 silly currentTree +-- babel-plugin-transform-function-bind@6.22.0
188 silly currentTree +-- babel-plugin-transform-object-rest-spread@6.26.0
188 silly currentTree +-- babel-plugin-transform-react-display-name@6.25.0
188 silly currentTree +-- babel-plugin-transform-react-jsx-self@6.22.0
188 silly currentTree +-- babel-plugin-transform-react-jsx-source@6.22.0
188 silly currentTree +-- babel-plugin-transform-react-jsx@6.24.1
188 silly currentTree +-- babel-plugin-transform-regenerator@6.26.0
188 silly currentTree +-- babel-plugin-transform-strict-mode@6.24.1
188 silly currentTree +-- babel-polyfill@6.26.0
188 silly currentTree | +-- core-js@2.5.7
188 silly currentTree | `-- regenerator-runtime@0.10.5
188 silly currentTree +-- babel-preset-env@1.7.0
188 silly currentTree +-- babel-preset-flow@6.23.0
188 silly currentTree +-- babel-preset-react@6.24.1
188 silly currentTree +-- babel-preset-stage-0@6.24.1
188 silly currentTree +-- babel-preset-stage-1@6.24.1
188 silly currentTree +-- babel-preset-stage-2@6.24.1
188 silly currentTree +-- babel-preset-stage-3@6.24.1
188 silly currentTree +-- babel-register@6.26.0
188 silly currentTree | `-- core-js@2.5.7
188 silly currentTree +-- babel-runtime@6.26.0
188 silly currentTree | +-- core-js@2.5.7
188 silly currentTree | `-- regenerator-runtime@0.11.1
188 silly currentTree +-- babel-template@6.26.0
188 silly currentTree +-- babel-traverse@6.26.0
188 silly currentTree +-- babel-types@6.26.0
188 silly currentTree +-- babylon@6.18.0
188 silly currentTree +-- balanced-match@1.0.0
188 silly currentTree +-- base64-js@1.2.0
188 silly currentTree +-- bcrypt-pbkdf@1.0.1
188 silly currentTree +-- binary-extensions@1.11.0
188 silly currentTree +-- bluebird-lst@1.0.5
188 silly currentTree +-- bluebird@3.5.1
188 silly currentTree +-- boxen@1.3.0
188 silly currentTree | +-- ansi-regex@3.0.0
188 silly currentTree | +-- ansi-styles@3.2.1
188 silly currentTree | +-- camelcase@4.1.0
188 silly currentTree | +-- chalk@2.4.1
188 silly currentTree | +-- is-fullwidth-code-point@2.0.0
188 silly currentTree | +-- string-width@2.1.1
188 silly currentTree | +-- strip-ansi@4.0.0
188 silly currentTree | `-- supports-color@5.4.0
188 silly currentTree +-- brace-expansion@1.1.11
188 silly currentTree +-- braces@1.8.5
188 silly currentTree +-- browserslist@3.2.8
188 silly currentTree +-- buffer-from@1.1.0
188 silly currentTree +-- builder-util-runtime@4.2.1
188 silly currentTree | `-- debug@3.1.0
188 silly currentTree +-- builder-util@5.11.2
188 silly currentTree | +-- ansi-styles@3.2.1
188 silly currentTree | +-- chalk@2.4.1
188 silly currentTree | +-- debug@3.1.0
188 silly currentTree | +-- semver@5.5.0
188 silly currentTree | +-- source-map-support@0.5.6
188 silly currentTree | +-- source-map@0.6.1
188 silly currentTree | `-- supports-color@5.4.0
188 silly currentTree +-- builtin-modules@1.1.1
188 silly currentTree +-- camelcase-keys@2.1.0
188 silly currentTree +-- camelcase@2.1.1
188 silly currentTree +-- caniuse-lite@1.0.30000846
188 silly currentTree +-- capture-stack-trace@1.0.0
188 silly currentTree +-- caseless@0.12.0
188 silly currentTree +-- chalk@1.1.3
188 silly currentTree +-- chokidar@1.7.0
188 silly currentTree +-- chromium-pickle-js@0.2.0
188 silly currentTree +-- ci-info@1.1.3
188 silly currentTree +-- cli-boxes@1.0.0
188 silly currentTree +-- cliui@4.1.0
188 silly currentTree | +-- ansi-regex@3.0.0
188 silly currentTree | +-- is-fullwidth-code-point@2.0.0
188 silly currentTree | +-- string-width@2.1.1
188 silly currentTree | `-- strip-ansi@4.0.0
188 silly currentTree +-- co@4.6.0
188 silly currentTree +-- code-point-at@1.1.0
188 silly currentTree +-- color-convert@1.9.1
188 silly currentTree +-- color-name@1.1.3
188 silly currentTree +-- color-string@1.5.2
188 silly currentTree +-- color@3.0.0
188 silly currentTree +-- combined-stream@1.0.6
188 silly currentTree +-- compare-version@0.1.2
188 silly currentTree +-- concat-map@0.0.1
188 silly currentTree +-- configstore@3.1.2
188 silly currentTree +-- convert-source-map@1.5.1
188 silly currentTree +-- core-js@1.2.7
188 silly currentTree +-- core-util-is@1.0.2
188 silly currentTree +-- create-error-class@3.0.2
188 silly currentTree +-- cross-spawn@5.1.0
188 silly currentTree +-- crypto-random-string@1.0.0
188 silly currentTree +-- currently-unhandled@0.4.1
188 silly currentTree +-- dashdash@1.14.1
188 silly currentTree +-- debug@2.6.9
188 silly currentTree +-- decamelize@1.2.0
188 silly currentTree +-- deep-extend@0.6.0
188 silly currentTree +-- delayed-stream@1.0.0
188 silly currentTree +-- detect-indent@4.0.0
188 silly currentTree +-- dmg-builder@4.10.1
188 silly currentTree | +-- ansi-styles@3.2.1
188 silly currentTree | +-- app-builder-bin@1.9.5
188 silly currentTree | +-- chalk@2.4.1
188 silly currentTree | +-- debug@3.1.0
188 silly currentTree | +-- electron-builder-lib@20.14.7
188 silly currentTree | | `-- builder-util@5.11.1
188 silly currentTree | +-- semver@5.5.0
188 silly currentTree | +-- source-map-support@0.5.6
188 silly currentTree | +-- source-map@0.6.1
188 silly currentTree | `-- supports-color@5.4.0
188 silly currentTree +-- dot-prop@4.2.0
188 silly currentTree +-- dotenv-expand@4.2.0
188 silly currentTree +-- dotenv@5.0.1
188 silly currentTree +-- duplexer3@0.1.4
188 silly currentTree +-- ecc-jsbn@0.1.1
188 silly currentTree +-- ejs@2.6.1
188 silly currentTree +-- electron-builder-lib@20.15.1
188 silly currentTree | +-- ansi-styles@3.2.1
188 silly currentTree | +-- chalk@2.4.1
188 silly currentTree | +-- debug@3.1.0
188 silly currentTree | +-- electron-publish@20.15.0
188 silly currentTree | +-- semver@5.5.0
188 silly currentTree | `-- supports-color@5.4.0
188 silly currentTree +-- electron-builder@20.15.1
188 silly currentTree | +-- ansi-styles@3.2.1
188 silly currentTree | +-- chalk@2.4.1
188 silly currentTree | `-- supports-color@5.4.0
188 silly currentTree +-- electron-download-tf@4.3.4
188 silly currentTree | +-- debug@3.1.0
188 silly currentTree | +-- fs-extra@4.0.3
188 silly currentTree | +-- minimist@1.2.0
188 silly currentTree | `-- semver@5.5.0
188 silly currentTree +-- electron-osx-sign@0.4.10
188 silly currentTree | +-- minimist@1.2.0
188 silly currentTree | `-- plist@2.1.0
188 silly currentTree +-- electron-publish@20.14.6
188 silly currentTree | +-- ansi-styles@3.2.1
188 silly currentTree | +-- chalk@2.4.1
188 silly currentTree | `-- supports-color@5.4.0
188 silly currentTree +-- electron-to-chromium@1.3.48
188 silly currentTree +-- encoding@0.1.12
188 silly currentTree +-- env-paths@1.0.0
188 silly currentTree +-- error-ex@1.3.1
188 silly currentTree | `-- is-arrayish@0.2.1
188 silly currentTree +-- escape-string-regexp@1.0.5
188 silly currentTree +-- esprima@4.0.0
188 silly currentTree +-- esutils@2.0.2
188 silly currentTree +-- execa@0.7.0
188 silly currentTree +-- expand-brackets@0.1.5
188 silly currentTree +-- expand-range@1.8.2
188 silly currentTree +-- extend@3.0.1
188 silly currentTree +-- extglob@0.3.2
188 silly currentTree +-- extsprintf@1.3.0
188 silly currentTree +-- fast-deep-equal@1.1.0
188 silly currentTree +-- fast-json-stable-stringify@2.0.0
188 silly currentTree +-- fbjs@0.8.16
188 silly currentTree +-- filename-regex@2.0.1
188 silly currentTree +-- fill-range@2.2.4
188 silly currentTree +-- find-up@1.1.2
188 silly currentTree | `-- path-exists@2.1.0
188 silly currentTree +-- for-in@1.0.2
188 silly currentTree +-- for-own@0.1.5
188 silly currentTree +-- forever-agent@0.6.1
188 silly currentTree +-- form-data@2.3.2
188 silly currentTree +-- fs-extra-p@4.6.0
188 silly currentTree +-- fs-extra@6.0.1
188 silly currentTree +-- fs-readdir-recursive@1.1.0
188 silly currentTree +-- fs.realpath@1.0.0
188 silly currentTree +-- get-caller-file@1.0.2
188 silly currentTree +-- get-stdin@4.0.1
188 silly currentTree +-- get-stream@3.0.0
188 silly currentTree +-- getpass@0.1.7
188 silly currentTree +-- glob-base@0.3.0
188 silly currentTree +-- glob-parent@2.0.0
188 silly currentTree +-- global-dirs@0.1.1
188 silly currentTree +-- globals@9.18.0
188 silly currentTree +-- got@6.7.1
188 silly currentTree +-- graceful-fs@4.1.11
188 silly currentTree +-- har-schema@2.0.0
188 silly currentTree +-- har-validator@5.0.3
188 silly currentTree +-- has-ansi@2.0.0
188 silly currentTree +-- has-flag@3.0.0
188 silly currentTree +-- home-or-tmp@2.0.0
188 silly currentTree +-- hosted-git-info@2.6.0
188 silly currentTree +-- http-signature@1.2.0
188 silly currentTree +-- iconv-lite@0.4.23
188 silly currentTree +-- import-lazy@2.1.0
188 silly currentTree +-- imurmurhash@0.1.4
188 silly currentTree +-- indent-string@2.1.0
188 silly currentTree +-- inflight@1.0.6
188 silly currentTree +-- inherits@2.0.3
188 silly currentTree +-- ini@1.3.5
188 silly currentTree +-- invariant@2.2.4
188 silly currentTree +-- invert-kv@1.0.0
188 silly currentTree +-- is-arrayish@0.3.1
188 silly currentTree +-- is-binary-path@1.0.1
188 silly currentTree +-- is-buffer@1.1.6
188 silly currentTree +-- is-builtin-module@1.0.0
188 silly currentTree +-- is-ci@1.1.0
188 silly currentTree +-- is-dotfile@1.0.3
188 silly currentTree +-- is-equal-shallow@0.1.3
188 silly currentTree +-- is-extendable@0.1.1
188 silly currentTree +-- is-extglob@1.0.0
188 silly currentTree +-- is-finite@1.0.2
188 silly currentTree +-- is-fullwidth-code-point@1.0.0
188 silly currentTree +-- is-glob@2.0.1
188 silly currentTree +-- is-installed-globally@0.1.0
188 silly currentTree +-- is-npm@1.0.0
188 silly currentTree +-- is-number@2.1.0
188 silly currentTree +-- is-obj@1.0.1
188 silly currentTree +-- is-path-inside@1.0.1
188 silly currentTree +-- is-posix-bracket@0.1.1
188 silly currentTree +-- is-primitive@2.0.0
188 silly currentTree +-- is-redirect@1.0.0
188 silly currentTree +-- is-retry-allowed@1.1.0
188 silly currentTree +-- is-stream@1.1.0
188 silly currentTree +-- is-typedarray@1.0.0
188 silly currentTree +-- is-utf8@0.2.1
188 silly currentTree +-- isarray@1.0.0
188 silly currentTree +-- isbinaryfile@3.0.2
188 silly currentTree +-- isexe@2.0.0
188 silly currentTree +-- isobject@2.1.0
188 silly currentTree +-- isomorphic-fetch@2.2.1
188 silly currentTree +-- isstream@0.1.2
188 silly currentTree +-- js-tokens@3.0.2
188 silly currentTree +-- js-yaml@3.11.0
188 silly currentTree +-- jsbn@0.1.1
188 silly currentTree +-- jsesc@1.3.0
188 silly currentTree +-- json-schema-traverse@0.3.1
188 silly currentTree +-- json-schema@0.2.3
188 silly currentTree +-- json-stringify-safe@5.0.1
188 silly currentTree +-- json5@0.5.1
188 silly currentTree +-- jsonfile@4.0.0
188 silly currentTree +-- jsprim@1.4.1
188 silly currentTree +-- kind-of@3.2.2
188 silly currentTree +-- latest-version@3.1.0
188 silly currentTree +-- lazy-val@1.0.3
188 silly currentTree +-- lcid@1.0.0
188 silly currentTree +-- load-json-file@1.1.0
188 silly currentTree +-- locate-path@2.0.0
188 silly currentTree +-- lodash@4.17.10
188 silly currentTree +-- loose-envify@1.3.1
188 silly currentTree +-- loud-rejection@1.6.0
188 silly currentTree +-- lowercase-keys@1.0.1
188 silly currentTree +-- lru-cache@4.1.3
188 silly currentTree | `-- yallist@2.1.2
188 silly currentTree +-- make-dir@1.3.0
188 silly currentTree | `-- pify@3.0.0
188 silly currentTree +-- map-obj@1.0.1
188 silly currentTree +-- math-random@1.0.1
188 silly currentTree +-- mem@1.1.0
188 silly currentTree +-- meow@3.7.0
188 silly currentTree | `-- minimist@1.2.0
188 silly currentTree +-- micromatch@2.3.11
188 silly currentTree +-- mime-db@1.33.0
188 silly currentTree +-- mime-types@2.1.18
188 silly currentTree +-- mime@2.3.1
188 silly currentTree +-- mimic-fn@1.2.0
188 silly currentTree +-- minimatch@3.0.4
188 silly currentTree +-- minimist@0.0.8
188 silly currentTree +-- mkdirp@0.5.1
188 silly currentTree +-- ms@2.0.0
188 silly currentTree +-- node-fetch@1.7.3
188 silly currentTree +-- normalize-package-data@2.4.0
188 silly currentTree +-- normalize-path@2.1.1
188 silly currentTree +-- npm-run-path@2.0.2
188 silly currentTree +-- nugget@2.0.1
188 silly currentTree | `-- minimist@1.2.0
188 silly currentTree +-- number-is-nan@1.0.1
188 silly currentTree +-- oauth-sign@0.8.2
188 silly currentTree +-- object-assign@4.1.1
188 silly currentTree +-- object-keys@0.4.0
188 silly currentTree +-- object.omit@2.0.1
188 silly currentTree +-- once@1.4.0
188 silly currentTree +-- os-homedir@1.0.2
188 silly currentTree +-- os-locale@2.1.0
188 silly currentTree +-- os-tmpdir@1.0.2
188 silly currentTree +-- output-file-sync@1.1.2
188 silly currentTree +-- p-finally@1.0.0
188 silly currentTree +-- p-limit@1.2.0
188 silly currentTree +-- p-locate@2.0.0
188 silly currentTree +-- p-try@1.0.0
188 silly currentTree +-- package-json@4.0.1
188 silly currentTree +-- parse-color@1.0.0
188 silly currentTree | `-- color-convert@0.5.3
188 silly currentTree +-- parse-glob@3.0.4
188 silly currentTree +-- parse-json@2.2.0
188 silly currentTree +-- parser-toolkit@0.0.5
188 silly currentTree +-- path-exists@3.0.0
188 silly currentTree +-- path-is-absolute@1.0.1
188 silly currentTree +-- path-is-inside@1.0.2
188 silly currentTree +-- path-key@2.0.1
188 silly currentTree +-- path-type@1.1.0
188 silly currentTree +-- performance-now@2.1.0
188 silly currentTree +-- pify@2.3.0
188 silly currentTree +-- pinkie-promise@2.0.1
188 silly currentTree +-- pinkie@2.0.4
188 silly currentTree +-- plist@3.0.1
188 silly currentTree | +-- base64-js@1.3.0
188 silly currentTree | `-- xmlbuilder@9.0.7
188 silly currentTree +-- prepend-http@1.0.4
188 silly currentTree +-- preserve@0.2.0
188 silly currentTree +-- pretty-bytes@1.0.4
188 silly currentTree +-- private@0.1.8
188 silly currentTree +-- process-nextick-args@2.0.0
188 silly currentTree +-- progress-stream@1.2.0
188 silly currentTree +-- promise@7.3.1
188 silly currentTree +-- prop-types@15.6.1
188 silly currentTree +-- pseudomap@1.0.2
188 silly currentTree +-- punycode@1.4.1
188 silly currentTree +-- qs@6.5.2
188 silly currentTree +-- randomatic@3.0.0
188 silly currentTree | +-- is-number@4.0.0
188 silly currentTree | `-- kind-of@6.0.2
188 silly currentTree +-- rc@1.2.8
188 silly currentTree | `-- minimist@1.2.0
188 silly currentTree +-- react-reconciler@0.7.0
188 silly currentTree +-- react@16.4.0
188 silly currentTree +-- read-config-file@3.0.1
188 silly currentTree | +-- ajv@6.5.0
188 silly currentTree | +-- fast-deep-equal@2.0.1
188 silly currentTree | +-- json5@1.0.1
188 silly currentTree | `-- minimist@1.2.0
188 silly currentTree +-- read-pkg-up@1.0.1
188 silly currentTree +-- read-pkg@1.1.0
188 silly currentTree +-- readable-stream@2.3.6
188 silly currentTree +-- readdirp@2.1.0
188 silly currentTree +-- redent@1.0.0
188 silly currentTree +-- regenerate@1.4.0
188 silly currentTree +-- regenerator-transform@0.10.1
188 silly currentTree +-- regex-cache@0.4.4
188 silly currentTree +-- regexpu-core@2.0.0
188 silly currentTree +-- registry-auth-token@3.3.2
188 silly currentTree +-- registry-url@3.1.0
188 silly currentTree +-- regjsgen@0.2.0
188 silly currentTree +-- regjsparser@0.1.5
188 silly currentTree | `-- jsesc@0.5.0
188 silly currentTree +-- remove-trailing-separator@1.1.0
188 silly currentTree +-- repeat-element@1.1.2
188 silly currentTree +-- repeat-string@1.6.1
188 silly currentTree +-- repeating@2.0.1
188 silly currentTree +-- request@2.87.0
188 silly currentTree +-- require-directory@2.1.1
188 silly currentTree +-- require-main-filename@1.0.1
188 silly currentTree +-- safe-buffer@5.1.2
188 silly currentTree +-- safer-buffer@2.1.2
188 silly currentTree +-- sanitize-filename@1.6.1
188 silly currentTree +-- sax@1.2.4
188 silly currentTree +-- semver-diff@2.1.0
188 silly currentTree +-- semver@5.3.0
188 silly currentTree +-- set-blocking@2.0.0
188 silly currentTree +-- set-immediate-shim@1.0.1
188 silly currentTree +-- setimmediate@1.0.5
188 silly currentTree +-- shebang-command@1.2.0
188 silly currentTree +-- shebang-regex@1.0.0
188 silly currentTree +-- signal-exit@3.0.2
188 silly currentTree +-- simple-swizzle@0.2.2
188 silly currentTree +-- single-line-log@1.1.2
188 silly currentTree +-- slash@1.0.0
188 silly currentTree +-- source-map-support@0.4.18
188 silly currentTree +-- source-map@0.5.7
188 silly currentTree +-- spdx-correct@3.0.0
188 silly currentTree +-- spdx-exceptions@2.1.0
188 silly currentTree +-- spdx-expression-parse@3.0.0
188 silly currentTree +-- spdx-license-ids@3.0.0
188 silly currentTree +-- speedometer@0.1.4
188 silly currentTree +-- sprintf-js@1.0.3
188 silly currentTree +-- sshpk@1.14.1
188 silly currentTree +-- stat-mode@0.2.2
188 silly currentTree +-- stream-json@0.6.1
188 silly currentTree +-- string_decoder@1.1.1
188 silly currentTree +-- string-width@1.0.2
188 silly currentTree +-- strip-ansi@3.0.1
188 silly currentTree +-- strip-bom@2.0.0
188 silly currentTree +-- strip-eof@1.0.0
188 silly currentTree +-- strip-indent@1.0.1
188 silly currentTree +-- strip-json-comments@2.0.1
188 silly currentTree +-- sumchecker@2.0.2
188 silly currentTree +-- supports-color@2.0.0
188 silly currentTree +-- svg-path-parser@1.1.0
188 silly currentTree +-- temp-file@3.1.2
188 silly currentTree +-- term-size@1.2.0
188 silly currentTree +-- throttleit@0.0.2
188 silly currentTree +-- through2@0.2.3
188 silly currentTree | +-- isarray@0.0.1
188 silly currentTree | +-- readable-stream@1.1.14
188 silly currentTree | `-- string_decoder@0.10.31
188 silly currentTree +-- timed-out@4.0.1
188 silly currentTree +-- to-fast-properties@1.0.3
188 silly currentTree +-- tough-cookie@2.3.4
188 silly currentTree +-- trim-newlines@1.0.0
188 silly currentTree +-- trim-right@1.0.1
188 silly currentTree +-- truncate-utf8-bytes@1.0.2
188 silly currentTree +-- tunnel-agent@0.6.0
188 silly currentTree +-- tweetnacl@0.14.5
188 silly currentTree +-- ua-parser-js@0.7.18
188 silly currentTree +-- unique-string@1.0.0
188 silly currentTree +-- universalify@0.1.1
188 silly currentTree +-- unzip-response@2.0.1
188 silly currentTree +-- update-notifier@2.5.0
188 silly currentTree | +-- ansi-styles@3.2.1
188 silly currentTree | +-- chalk@2.4.1
188 silly currentTree | `-- supports-color@5.4.0
188 silly currentTree +-- uri-js@4.2.2
188 silly currentTree | `-- punycode@2.1.1
188 silly currentTree +-- url-parse-lax@1.0.0
188 silly currentTree +-- user-home@1.1.1
188 silly currentTree +-- utf8-byte-length@1.0.4
188 silly currentTree +-- util-deprecate@1.0.2
188 silly currentTree +-- uuid@3.2.1
188 silly currentTree +-- v8flags@2.1.1
188 silly currentTree +-- validate-npm-package-license@3.0.3
188 silly currentTree +-- verror@1.10.0
188 silly currentTree +-- whatwg-fetch@2.0.4
188 silly currentTree +-- which-module@2.0.0
188 silly currentTree +-- which@1.3.1
188 silly currentTree +-- widest-line@2.0.0
188 silly currentTree | +-- ansi-regex@3.0.0
188 silly currentTree | +-- is-fullwidth-code-point@2.0.0
188 silly currentTree | +-- string-width@2.1.1
188 silly currentTree | `-- strip-ansi@4.0.0
188 silly currentTree +-- wrap-ansi@2.1.0
188 silly currentTree +-- wrappy@1.0.2
188 silly currentTree +-- write-file-atomic@2.3.0
188 silly currentTree +-- xdg-basedir@3.0.0
188 silly currentTree +-- xmlbuilder@8.2.2
188 silly currentTree +-- xmldom@0.1.27
188 silly currentTree +-- xtend@2.1.2
188 silly currentTree +-- y18n@3.2.1
188 silly currentTree +-- yargs-parser@9.0.2
188 silly currentTree | `-- camelcase@4.1.0
188 silly currentTree `-- yargs@11.0.0
188 silly currentTree   +-- ansi-regex@3.0.0
188 silly currentTree   +-- find-up@2.1.0
188 silly currentTree   +-- is-fullwidth-code-point@2.0.0
188 silly currentTree   +-- string-width@2.1.1
188 silly currentTree   `-- strip-ansi@4.0.0
189 silly idealTree my-app@0.0.1
189 silly idealTree +-- @mischnic/async-hooks@0.0.4
189 silly idealTree +-- 7zip-bin@4.0.2
189 silly idealTree +-- abbrev@1.1.1
189 silly idealTree +-- ajv-keywords@3.2.0
189 silly idealTree +-- ajv@5.5.2
189 silly idealTree +-- ansi-align@2.0.0
189 silly idealTree | +-- ansi-regex@3.0.0
189 silly idealTree | +-- is-fullwidth-code-point@2.0.0
189 silly idealTree | +-- string-width@2.1.1
189 silly idealTree | `-- strip-ansi@4.0.0
189 silly idealTree +-- ansi-regex@2.1.1
189 silly idealTree +-- ansi-styles@2.2.1
189 silly idealTree +-- anymatch@1.3.2
189 silly idealTree +-- app-builder-bin@1.9.7
189 silly idealTree +-- aproba@1.2.0
189 silly idealTree +-- are-we-there-yet@1.1.5
189 silly idealTree +-- argparse@1.0.10
189 silly idealTree +-- arr-diff@2.0.0
189 silly idealTree +-- arr-flatten@1.1.0
189 silly idealTree +-- array-find-index@1.0.2
189 silly idealTree +-- array-unique@0.2.1
189 silly idealTree +-- asap@2.0.6
189 silly idealTree +-- asn1@0.2.3
189 silly idealTree +-- assert-plus@1.0.0
189 silly idealTree +-- async-each@1.0.1
189 silly idealTree +-- async-exit-hook@2.0.1
189 silly idealTree +-- asynckit@0.4.0
189 silly idealTree +-- autogypi@0.2.2
189 silly idealTree +-- aws-sign2@0.7.0
189 silly idealTree +-- aws4@1.7.0
189 silly idealTree +-- babel-cli@6.26.0
189 silly idealTree | +-- commander@2.15.1
189 silly idealTree | `-- glob@7.1.2
189 silly idealTree +-- babel-code-frame@6.26.0
189 silly idealTree +-- babel-core@6.26.3
189 silly idealTree +-- babel-generator@6.26.1
189 silly idealTree +-- babel-helper-bindify-decorators@6.24.1
189 silly idealTree +-- babel-helper-builder-binary-assignment-operator-visitor@6.24.1
189 silly idealTree +-- babel-helper-builder-react-jsx@6.26.0
189 silly idealTree +-- babel-helper-call-delegate@6.24.1
189 silly idealTree +-- babel-helper-define-map@6.26.0
189 silly idealTree +-- babel-helper-explode-assignable-expression@6.24.1
189 silly idealTree +-- babel-helper-explode-class@6.24.1
189 silly idealTree +-- babel-helper-function-name@6.24.1
189 silly idealTree +-- babel-helper-get-function-arity@6.24.1
189 silly idealTree +-- babel-helper-hoist-variables@6.24.1
189 silly idealTree +-- babel-helper-optimise-call-expression@6.24.1
189 silly idealTree +-- babel-helper-regex@6.26.0
189 silly idealTree +-- babel-helper-remap-async-to-generator@6.24.1
189 silly idealTree +-- babel-helper-replace-supers@6.24.1
189 silly idealTree +-- babel-helpers@6.24.1
189 silly idealTree +-- babel-messages@6.23.0
189 silly idealTree +-- babel-plugin-check-es2015-constants@6.22.0
189 silly idealTree +-- babel-plugin-syntax-async-functions@6.13.0
189 silly idealTree +-- babel-plugin-syntax-async-generators@6.13.0
189 silly idealTree +-- babel-plugin-syntax-class-constructor-call@6.18.0
189 silly idealTree +-- babel-plugin-syntax-class-properties@6.13.0
189 silly idealTree +-- babel-plugin-syntax-decorators@6.13.0
189 silly idealTree +-- babel-plugin-syntax-do-expressions@6.13.0
189 silly idealTree +-- babel-plugin-syntax-dynamic-import@6.18.0
189 silly idealTree +-- babel-plugin-syntax-exponentiation-operator@6.13.0
189 silly idealTree +-- babel-plugin-syntax-export-extensions@6.13.0
189 silly idealTree +-- babel-plugin-syntax-flow@6.18.0
189 silly idealTree +-- babel-plugin-syntax-function-bind@6.13.0
189 silly idealTree +-- babel-plugin-syntax-jsx@6.18.0
189 silly idealTree +-- babel-plugin-syntax-object-rest-spread@6.13.0
189 silly idealTree +-- babel-plugin-syntax-trailing-function-commas@6.22.0
189 silly idealTree +-- babel-plugin-transform-async-generator-functions@6.24.1
189 silly idealTree +-- babel-plugin-transform-async-to-generator@6.24.1
189 silly idealTree +-- babel-plugin-transform-class-constructor-call@6.24.1
189 silly idealTree +-- babel-plugin-transform-class-properties@6.24.1
189 silly idealTree +-- babel-plugin-transform-decorators@6.24.1
189 silly idealTree +-- babel-plugin-transform-do-expressions@6.22.0
189 silly idealTree +-- babel-plugin-transform-es2015-arrow-functions@6.22.0
189 silly idealTree +-- babel-plugin-transform-es2015-block-scoped-functions@6.22.0
189 silly idealTree +-- babel-plugin-transform-es2015-block-scoping@6.26.0
189 silly idealTree +-- babel-plugin-transform-es2015-classes@6.24.1
189 silly idealTree +-- babel-plugin-transform-es2015-computed-properties@6.24.1
189 silly idealTree +-- babel-plugin-transform-es2015-destructuring@6.23.0
189 silly idealTree +-- babel-plugin-transform-es2015-duplicate-keys@6.24.1
189 silly idealTree +-- babel-plugin-transform-es2015-for-of@6.23.0
189 silly idealTree +-- babel-plugin-transform-es2015-function-name@6.24.1
189 silly idealTree +-- babel-plugin-transform-es2015-literals@6.22.0
189 silly idealTree +-- babel-plugin-transform-es2015-modules-amd@6.24.1
189 silly idealTree +-- babel-plugin-transform-es2015-modules-commonjs@6.26.2
189 silly idealTree +-- babel-plugin-transform-es2015-modules-systemjs@6.24.1
189 silly idealTree +-- babel-plugin-transform-es2015-modules-umd@6.24.1
189 silly idealTree +-- babel-plugin-transform-es2015-object-super@6.24.1
189 silly idealTree +-- babel-plugin-transform-es2015-parameters@6.24.1
189 silly idealTree +-- babel-plugin-transform-es2015-shorthand-properties@6.24.1
189 silly idealTree +-- babel-plugin-transform-es2015-spread@6.22.0
189 silly idealTree +-- babel-plugin-transform-es2015-sticky-regex@6.24.1
189 silly idealTree +-- babel-plugin-transform-es2015-template-literals@6.22.0
189 silly idealTree +-- babel-plugin-transform-es2015-typeof-symbol@6.23.0
189 silly idealTree +-- babel-plugin-transform-es2015-unicode-regex@6.24.1
189 silly idealTree +-- babel-plugin-transform-exponentiation-operator@6.24.1
189 silly idealTree +-- babel-plugin-transform-export-extensions@6.22.0
189 silly idealTree +-- babel-plugin-transform-flow-strip-types@6.22.0
189 silly idealTree +-- babel-plugin-transform-function-bind@6.22.0
189 silly idealTree +-- babel-plugin-transform-object-rest-spread@6.26.0
189 silly idealTree +-- babel-plugin-transform-react-display-name@6.25.0
189 silly idealTree +-- babel-plugin-transform-react-jsx-self@6.22.0
189 silly idealTree +-- babel-plugin-transform-react-jsx-source@6.22.0
189 silly idealTree +-- babel-plugin-transform-react-jsx@6.24.1
189 silly idealTree +-- babel-plugin-transform-regenerator@6.26.0
189 silly idealTree +-- babel-plugin-transform-strict-mode@6.24.1
189 silly idealTree +-- babel-polyfill@6.26.0
189 silly idealTree | +-- core-js@2.5.7
189 silly idealTree | `-- regenerator-runtime@0.10.5
189 silly idealTree +-- babel-preset-env@1.7.0
189 silly idealTree +-- babel-preset-flow@6.23.0
189 silly idealTree +-- babel-preset-react@6.24.1
189 silly idealTree +-- babel-preset-stage-0@6.24.1
189 silly idealTree +-- babel-preset-stage-1@6.24.1
189 silly idealTree +-- babel-preset-stage-2@6.24.1
189 silly idealTree +-- babel-preset-stage-3@6.24.1
189 silly idealTree +-- babel-register@6.26.0
189 silly idealTree | `-- core-js@2.5.7
189 silly idealTree +-- babel-runtime@6.26.0
189 silly idealTree | +-- core-js@2.5.7
189 silly idealTree | `-- regenerator-runtime@0.11.1
189 silly idealTree +-- babel-template@6.26.0
189 silly idealTree +-- babel-traverse@6.26.0
189 silly idealTree +-- babel-types@6.26.0
189 silly idealTree +-- babylon@6.18.0
189 silly idealTree +-- balanced-match@1.0.0
189 silly idealTree +-- base64-js@1.2.0
189 silly idealTree +-- bcrypt-pbkdf@1.0.1
189 silly idealTree +-- binary-extensions@1.11.0
189 silly idealTree +-- block-stream@0.0.9
189 silly idealTree +-- bluebird-lst@1.0.5
189 silly idealTree +-- bluebird@3.5.1
189 silly idealTree +-- boxen@1.3.0
189 silly idealTree | +-- ansi-regex@3.0.0
189 silly idealTree | +-- ansi-styles@3.2.1
189 silly idealTree | +-- camelcase@4.1.0
189 silly idealTree | +-- chalk@2.4.1
189 silly idealTree | +-- is-fullwidth-code-point@2.0.0
189 silly idealTree | +-- string-width@2.1.1
189 silly idealTree | +-- strip-ansi@4.0.0
189 silly idealTree | `-- supports-color@5.4.0
189 silly idealTree +-- brace-expansion@1.1.11
189 silly idealTree +-- braces@1.8.5
189 silly idealTree +-- browserslist@3.2.8
189 silly idealTree +-- buffer-from@1.1.0
189 silly idealTree +-- builder-util-runtime@4.2.1
189 silly idealTree | `-- debug@3.1.0
189 silly idealTree +-- builder-util@5.11.2
189 silly idealTree | +-- ansi-styles@3.2.1
189 silly idealTree | +-- chalk@2.4.1
189 silly idealTree | +-- debug@3.1.0
189 silly idealTree | +-- semver@5.5.0
189 silly idealTree | +-- source-map-support@0.5.6
189 silly idealTree | +-- source-map@0.6.1
189 silly idealTree | `-- supports-color@5.4.0
189 silly idealTree +-- builtin-modules@1.1.1
189 silly idealTree +-- camelcase-keys@2.1.0
189 silly idealTree +-- camelcase@2.1.1
189 silly idealTree +-- caniuse-lite@1.0.30000846
189 silly idealTree +-- capture-stack-trace@1.0.0
189 silly idealTree +-- caseless@0.12.0
189 silly idealTree +-- chalk@1.1.3
189 silly idealTree +-- chokidar@1.7.0
189 silly idealTree +-- chownr@1.0.1
189 silly idealTree +-- chromium-pickle-js@0.2.0
189 silly idealTree +-- ci-info@1.1.3
189 silly idealTree +-- cli-boxes@1.0.0
189 silly idealTree +-- cliui@4.1.0
189 silly idealTree | +-- ansi-regex@3.0.0
189 silly idealTree | +-- is-fullwidth-code-point@2.0.0
189 silly idealTree | +-- string-width@2.1.1
189 silly idealTree | `-- strip-ansi@4.0.0
189 silly idealTree +-- co@4.6.0
189 silly idealTree +-- code-point-at@1.1.0
189 silly idealTree +-- color-convert@1.9.1
189 silly idealTree +-- color-name@1.1.3
189 silly idealTree +-- color-string@1.5.2
189 silly idealTree +-- color@3.0.0
189 silly idealTree +-- combined-stream@1.0.6
189 silly idealTree +-- commander@2.9.0
189 silly idealTree +-- compare-version@0.1.2
189 silly idealTree +-- concat-map@0.0.1
189 silly idealTree +-- configstore@3.1.2
189 silly idealTree +-- console-control-strings@1.1.0
189 silly idealTree +-- convert-source-map@1.5.1
189 silly idealTree +-- core-js@1.2.7
189 silly idealTree +-- core-util-is@1.0.2
189 silly idealTree +-- create-error-class@3.0.2
189 silly idealTree +-- cross-spawn@5.1.0
189 silly idealTree +-- crypto-random-string@1.0.0
189 silly idealTree +-- currently-unhandled@0.4.1
189 silly idealTree +-- dashdash@1.14.1
189 silly idealTree +-- debug@2.6.9
189 silly idealTree +-- decamelize@1.2.0
189 silly idealTree +-- deep-extend@0.6.0
189 silly idealTree +-- delayed-stream@1.0.0
189 silly idealTree +-- delegates@1.0.0
189 silly idealTree +-- detect-indent@4.0.0
189 silly idealTree +-- dmg-builder@4.10.1
189 silly idealTree | +-- ansi-styles@3.2.1
189 silly idealTree | +-- app-builder-bin@1.9.5
189 silly idealTree | +-- chalk@2.4.1
189 silly idealTree | +-- debug@3.1.0
189 silly idealTree | +-- electron-builder-lib@20.14.7
189 silly idealTree | | `-- builder-util@5.11.1
189 silly idealTree | +-- semver@5.5.0
189 silly idealTree | +-- source-map-support@0.5.6
189 silly idealTree | +-- source-map@0.6.1
189 silly idealTree | `-- supports-color@5.4.0
189 silly idealTree +-- dot-prop@4.2.0
189 silly idealTree +-- dotenv-expand@4.2.0
189 silly idealTree +-- dotenv@5.0.1
189 silly idealTree +-- duplexer3@0.1.4
189 silly idealTree +-- ecc-jsbn@0.1.1
189 silly idealTree +-- ejs@2.6.1
189 silly idealTree +-- electron-builder-lib@20.15.1
189 silly idealTree | +-- ansi-styles@3.2.1
189 silly idealTree | +-- chalk@2.4.1
189 silly idealTree | +-- debug@3.1.0
189 silly idealTree | +-- electron-publish@20.15.0
189 silly idealTree | +-- semver@5.5.0
189 silly idealTree | `-- supports-color@5.4.0
189 silly idealTree +-- electron-builder@20.15.1
189 silly idealTree | +-- ansi-styles@3.2.1
189 silly idealTree | +-- chalk@2.4.1
189 silly idealTree | `-- supports-color@5.4.0
189 silly idealTree +-- electron-download-tf@4.3.4
189 silly idealTree | +-- debug@3.1.0
189 silly idealTree | +-- fs-extra@4.0.3
189 silly idealTree | +-- minimist@1.2.0
189 silly idealTree | `-- semver@5.5.0
189 silly idealTree +-- electron-osx-sign@0.4.10
189 silly idealTree | +-- minimist@1.2.0
189 silly idealTree | `-- plist@2.1.0
189 silly idealTree +-- electron-publish@20.14.6
189 silly idealTree | +-- ansi-styles@3.2.1
189 silly idealTree | +-- chalk@2.4.1
189 silly idealTree | `-- supports-color@5.4.0
189 silly idealTree +-- electron-to-chromium@1.3.48
189 silly idealTree +-- emscripten-library-decorator@0.2.2
189 silly idealTree +-- encoding@0.1.12
189 silly idealTree +-- env-paths@1.0.0
189 silly idealTree +-- error-ex@1.3.1
189 silly idealTree | `-- is-arrayish@0.2.1
189 silly idealTree +-- es6-shim@0.35.3
189 silly idealTree +-- escape-string-regexp@1.0.5
189 silly idealTree +-- esprima@4.0.0
189 silly idealTree +-- esutils@2.0.2
189 silly idealTree +-- execa@0.7.0
189 silly idealTree +-- expand-brackets@0.1.5
189 silly idealTree +-- expand-range@1.8.2
189 silly idealTree +-- extend@3.0.1
189 silly idealTree +-- extglob@0.3.2
189 silly idealTree +-- extsprintf@1.3.0
189 silly idealTree +-- fast-deep-equal@1.1.0
189 silly idealTree +-- fast-json-stable-stringify@2.0.0
189 silly idealTree +-- fbjs@0.8.16
189 silly idealTree +-- filename-regex@2.0.1
189 silly idealTree +-- fill-range@2.2.4
189 silly idealTree +-- find-up@1.1.2
189 silly idealTree | `-- path-exists@2.1.0
189 silly idealTree +-- for-in@1.0.2
189 silly idealTree +-- for-own@0.1.5
189 silly idealTree +-- forever-agent@0.6.1
189 silly idealTree +-- form-data@2.3.2
189 silly idealTree +-- fs-extra-p@4.6.0
189 silly idealTree +-- fs-extra@6.0.1
189 silly idealTree +-- fs-minipass@1.2.5
189 silly idealTree +-- fs-readdir-recursive@1.1.0
189 silly idealTree +-- fs.realpath@1.0.0
189 silly idealTree +-- fsevents@1.2.4
189 silly idealTree | +-- abbrev@1.1.1
189 silly idealTree | +-- ansi-regex@2.1.1
189 silly idealTree | +-- aproba@1.2.0
189 silly idealTree | +-- are-we-there-yet@1.1.4
189 silly idealTree | +-- balanced-match@1.0.0
189 silly idealTree | +-- brace-expansion@1.1.11
189 silly idealTree | +-- chownr@1.0.1
189 silly idealTree | +-- code-point-at@1.1.0
189 silly idealTree | +-- concat-map@0.0.1
189 silly idealTree | +-- console-control-strings@1.1.0
189 silly idealTree | +-- core-util-is@1.0.2
189 silly idealTree | +-- debug@2.6.9
189 silly idealTree | +-- deep-extend@0.5.1
189 silly idealTree | +-- delegates@1.0.0
189 silly idealTree | +-- detect-libc@1.0.3
189 silly idealTree | +-- fs-minipass@1.2.5
189 silly idealTree | +-- fs.realpath@1.0.0
189 silly idealTree | +-- gauge@2.7.4
189 silly idealTree | +-- glob@7.1.2
189 silly idealTree | +-- has-unicode@2.0.1
189 silly idealTree | +-- iconv-lite@0.4.21
189 silly idealTree | +-- ignore-walk@3.0.1
189 silly idealTree | +-- inflight@1.0.6
189 silly idealTree | +-- inherits@2.0.3
189 silly idealTree | +-- ini@1.3.5
189 silly idealTree | +-- is-fullwidth-code-point@1.0.0
189 silly idealTree | +-- isarray@1.0.0
189 silly idealTree | +-- minimatch@3.0.4
189 silly idealTree | +-- minimist@0.0.8
189 silly idealTree | +-- minipass@2.2.4
189 silly idealTree | +-- minizlib@1.1.0
189 silly idealTree | +-- mkdirp@0.5.1
189 silly idealTree | +-- ms@2.0.0
189 silly idealTree | +-- needle@2.2.0
189 silly idealTree | +-- node-pre-gyp@0.10.0
189 silly idealTree | +-- nopt@4.0.1
189 silly idealTree | +-- npm-bundled@1.0.3
189 silly idealTree | +-- npm-packlist@1.1.10
189 silly idealTree | +-- npmlog@4.1.2
189 silly idealTree | +-- number-is-nan@1.0.1
189 silly idealTree | +-- object-assign@4.1.1
189 silly idealTree | +-- once@1.4.0
189 silly idealTree | +-- os-homedir@1.0.2
189 silly idealTree | +-- os-tmpdir@1.0.2
189 silly idealTree | +-- osenv@0.1.5
189 silly idealTree | +-- path-is-absolute@1.0.1
189 silly idealTree | +-- process-nextick-args@2.0.0
189 silly idealTree | +-- rc@1.2.7
189 silly idealTree | | `-- minimist@1.2.0
189 silly idealTree | +-- readable-stream@2.3.6
189 silly idealTree | +-- rimraf@2.6.2
189 silly idealTree | +-- safe-buffer@5.1.1
189 silly idealTree | +-- safer-buffer@2.1.2
189 silly idealTree | +-- sax@1.2.4
189 silly idealTree | +-- semver@5.5.0
189 silly idealTree | +-- set-blocking@2.0.0
189 silly idealTree | +-- signal-exit@3.0.2
189 silly idealTree | +-- string_decoder@1.1.1
189 silly idealTree | +-- string-width@1.0.2
189 silly idealTree | +-- strip-ansi@3.0.1
189 silly idealTree | +-- strip-json-comments@2.0.1
189 silly idealTree | +-- tar@4.4.1
189 silly idealTree | +-- util-deprecate@1.0.2
189 silly idealTree | +-- wide-align@1.1.2
189 silly idealTree | +-- wrappy@1.0.2
189 silly idealTree | `-- yallist@3.0.2
189 silly idealTree +-- fstream@1.0.11
189 silly idealTree +-- gauge@2.7.4
189 silly idealTree +-- get-caller-file@1.0.2
189 silly idealTree +-- get-stdin@4.0.1
189 silly idealTree +-- get-stream@3.0.0
189 silly idealTree +-- getpass@0.1.7
189 silly idealTree +-- glob-base@0.3.0
189 silly idealTree +-- glob-parent@2.0.0
189 silly idealTree +-- glob@6.0.4
189 silly idealTree +-- global-dirs@0.1.1
189 silly idealTree +-- globals@9.18.0
189 silly idealTree +-- got@6.7.1
189 silly idealTree +-- graceful-fs@4.1.11
189 silly idealTree +-- graceful-readlink@1.0.1
189 silly idealTree +-- har-schema@2.0.0
189 silly idealTree +-- har-validator@5.0.3
189 silly idealTree +-- has-ansi@2.0.0
189 silly idealTree +-- has-flag@3.0.0
189 silly idealTree +-- has-unicode@2.0.1
189 silly idealTree +-- home-or-tmp@2.0.0
189 silly idealTree +-- home-path@1.0.6
189 silly idealTree +-- hosted-git-info@2.6.0
189 silly idealTree +-- http-signature@1.2.0
189 silly idealTree +-- iconv-lite@0.4.23
189 silly idealTree +-- import-lazy@2.1.0
189 silly idealTree +-- imurmurhash@0.1.4
189 silly idealTree +-- indent-string@2.1.0
189 silly idealTree +-- inflight@1.0.6
189 silly idealTree +-- inherits@2.0.3
189 silly idealTree +-- ini@1.3.5
189 silly idealTree +-- invariant@2.2.4
189 silly idealTree +-- invert-kv@1.0.0
189 silly idealTree +-- is-arrayish@0.3.1
189 silly idealTree +-- is-binary-path@1.0.1
189 silly idealTree +-- is-buffer@1.1.6
189 silly idealTree +-- is-builtin-module@1.0.0
189 silly idealTree +-- is-ci@1.1.0
189 silly idealTree +-- is-dotfile@1.0.3
189 silly idealTree +-- is-equal-shallow@0.1.3
189 silly idealTree +-- is-extendable@0.1.1
189 silly idealTree +-- is-extglob@1.0.0
189 silly idealTree +-- is-finite@1.0.2
189 silly idealTree +-- is-fullwidth-code-point@1.0.0
189 silly idealTree +-- is-glob@2.0.1
189 silly idealTree +-- is-installed-globally@0.1.0
189 silly idealTree +-- is-npm@1.0.0
189 silly idealTree +-- is-number@2.1.0
189 silly idealTree +-- is-obj@1.0.1
189 silly idealTree +-- is-path-inside@1.0.1
189 silly idealTree +-- is-posix-bracket@0.1.1
189 silly idealTree +-- is-primitive@2.0.0
189 silly idealTree +-- is-redirect@1.0.0
189 silly idealTree +-- is-retry-allowed@1.1.0
189 silly idealTree +-- is-stream@1.1.0
189 silly idealTree +-- is-typedarray@1.0.0
189 silly idealTree +-- is-utf8@0.2.1
189 silly idealTree +-- isarray@1.0.0
189 silly idealTree +-- isbinaryfile@3.0.2
189 silly idealTree +-- isexe@2.0.0
189 silly idealTree +-- isobject@2.1.0
189 silly idealTree +-- isomorphic-fetch@2.2.1
189 silly idealTree +-- isstream@0.1.2
189 silly idealTree +-- js-tokens@3.0.2
189 silly idealTree +-- js-yaml@3.11.0
189 silly idealTree +-- jsbn@0.1.1
189 silly idealTree +-- jsesc@1.3.0
189 silly idealTree +-- json-schema-traverse@0.3.1
189 silly idealTree +-- json-schema@0.2.3
189 silly idealTree +-- json-stringify-safe@5.0.1
189 silly idealTree +-- json5@0.5.1
189 silly idealTree +-- jsonfile@4.0.0
189 silly idealTree +-- jsprim@1.4.1
189 silly idealTree +-- kind-of@3.2.2
189 silly idealTree +-- latest-version@3.1.0
189 silly idealTree +-- lazy-val@1.0.3
189 silly idealTree +-- lcid@1.0.0
189 silly idealTree +-- libui-download@1.1.0
189 silly idealTree +-- libui-node@0.2.0
189 silly idealTree +-- load-json-file@1.1.0
189 silly idealTree +-- locate-path@2.0.0
189 silly idealTree +-- lodash@4.17.10
189 silly idealTree +-- loose-envify@1.3.1
189 silly idealTree +-- loud-rejection@1.6.0
189 silly idealTree +-- lowercase-keys@1.0.1
189 silly idealTree +-- lru-cache@4.1.3
189 silly idealTree | `-- yallist@2.1.2
189 silly idealTree +-- make-dir@1.3.0
189 silly idealTree | `-- pify@3.0.0
189 silly idealTree +-- map-obj@1.0.1
189 silly idealTree +-- math-random@1.0.1
189 silly idealTree +-- mem@1.1.0
189 silly idealTree +-- meow@3.7.0
189 silly idealTree | `-- minimist@1.2.0
189 silly idealTree +-- micromatch@2.3.11
189 silly idealTree +-- mime-db@1.33.0
189 silly idealTree +-- mime-types@2.1.18
189 silly idealTree +-- mime@2.3.1
189 silly idealTree +-- mimic-fn@1.2.0
189 silly idealTree +-- minimatch@3.0.4
189 silly idealTree +-- minimist@0.0.8
189 silly idealTree +-- minipass@2.3.3
189 silly idealTree +-- minizlib@1.1.0
189 silly idealTree +-- mkdirp@0.5.1
189 silly idealTree +-- ms@2.0.0
189 silly idealTree +-- mv@2.1.1
189 silly idealTree +-- nan@2.10.0
189 silly idealTree +-- nbind@0.3.15
189 silly idealTree +-- ncp@2.0.0
189 silly idealTree +-- node-fetch@1.7.3
189 silly idealTree +-- node-gyp@3.6.2
189 silly idealTree | +-- glob@7.1.2
189 silly idealTree | `-- tar@2.2.1
189 silly idealTree +-- nopt@3.0.6
189 silly idealTree +-- normalize-package-data@2.4.0
189 silly idealTree +-- normalize-path@2.1.1
189 silly idealTree +-- npm-run-path@2.0.2
189 silly idealTree +-- npmlog@4.1.2
189 silly idealTree +-- nugget@2.0.1
189 silly idealTree | `-- minimist@1.2.0
189 silly idealTree +-- number-is-nan@1.0.1
189 silly idealTree +-- oauth-sign@0.8.2
189 silly idealTree +-- object-assign@4.1.1
189 silly idealTree +-- object-keys@0.4.0
189 silly idealTree +-- object.omit@2.0.1
189 silly idealTree +-- once@1.4.0
189 silly idealTree +-- os-homedir@1.0.2
189 silly idealTree +-- os-locale@2.1.0
189 silly idealTree +-- os-tmpdir@1.0.2
189 silly idealTree +-- osenv@0.1.5
189 silly idealTree +-- output-file-sync@1.1.2
189 silly idealTree +-- p-finally@1.0.0
189 silly idealTree +-- p-limit@1.2.0
189 silly idealTree +-- p-locate@2.0.0
189 silly idealTree +-- p-try@1.0.0
189 silly idealTree +-- package-json@4.0.1
189 silly idealTree +-- parse-color@1.0.0
189 silly idealTree | `-- color-convert@0.5.3
189 silly idealTree +-- parse-glob@3.0.4
189 silly idealTree +-- parse-json@2.2.0
189 silly idealTree +-- parser-toolkit@0.0.5
189 silly idealTree +-- path-exists@3.0.0
189 silly idealTree +-- path-is-absolute@1.0.1
189 silly idealTree +-- path-is-inside@1.0.2
189 silly idealTree +-- path-key@2.0.1
189 silly idealTree +-- path-type@1.1.0
189 silly idealTree +-- performance-now@2.1.0
189 silly idealTree +-- pify@2.3.0
189 silly idealTree +-- pinkie-promise@2.0.1
189 silly idealTree +-- pinkie@2.0.4
189 silly idealTree +-- plist@3.0.1
189 silly idealTree | +-- base64-js@1.3.0
189 silly idealTree | `-- xmlbuilder@9.0.7
189 silly idealTree +-- prepend-http@1.0.4
189 silly idealTree +-- preserve@0.2.0
189 silly idealTree +-- pretty-bytes@1.0.4
189 silly idealTree +-- private@0.1.8
189 silly idealTree +-- process-nextick-args@2.0.0
189 silly idealTree +-- progress-stream@1.2.0
189 silly idealTree +-- promise@7.3.1
189 silly idealTree +-- prop-types@15.6.1
189 silly idealTree +-- proton-native@1.1.5
189 silly idealTree +-- pseudomap@1.0.2
189 silly idealTree +-- punycode@1.4.1
189 silly idealTree +-- qs@6.5.2
189 silly idealTree +-- randomatic@3.0.0
189 silly idealTree | +-- is-number@4.0.0
189 silly idealTree | `-- kind-of@6.0.2
189 silly idealTree +-- rc@1.2.8
189 silly idealTree | `-- minimist@1.2.0
189 silly idealTree +-- react-reconciler@0.7.0
189 silly idealTree +-- react@16.4.0
189 silly idealTree +-- read-config-file@3.0.1
189 silly idealTree | +-- ajv@6.5.0
189 silly idealTree | +-- fast-deep-equal@2.0.1
189 silly idealTree | +-- json5@1.0.1
189 silly idealTree | `-- minimist@1.2.0
189 silly idealTree +-- read-pkg-up@1.0.1
189 silly idealTree +-- read-pkg@1.1.0
189 silly idealTree +-- readable-stream@2.3.6
189 silly idealTree +-- readdirp@2.1.0
189 silly idealTree +-- redent@1.0.0
189 silly idealTree +-- regenerate@1.4.0
189 silly idealTree +-- regenerator-runtime@0.9.6
189 silly idealTree +-- regenerator-transform@0.10.1
189 silly idealTree +-- regex-cache@0.4.4
189 silly idealTree +-- regexpu-core@2.0.0
189 silly idealTree +-- registry-auth-token@3.3.2
189 silly idealTree +-- registry-url@3.1.0
189 silly idealTree +-- regjsgen@0.2.0
189 silly idealTree +-- regjsparser@0.1.5
189 silly idealTree | `-- jsesc@0.5.0
189 silly idealTree +-- remove-trailing-separator@1.1.0
189 silly idealTree +-- repeat-element@1.1.2
189 silly idealTree +-- repeat-string@1.6.1
189 silly idealTree +-- repeating@2.0.1
189 silly idealTree +-- request@2.87.0
189 silly idealTree +-- require-directory@2.1.1
189 silly idealTree +-- require-main-filename@1.0.1
189 silly idealTree +-- resolve@1.1.7
189 silly idealTree +-- rimraf@2.4.5
189 silly idealTree +-- safe-buffer@5.1.2
189 silly idealTree +-- safer-buffer@2.1.2
189 silly idealTree +-- sanitize-filename@1.6.1
189 silly idealTree +-- sax@1.2.4
189 silly idealTree +-- semver-diff@2.1.0
189 silly idealTree +-- semver@5.3.0
189 silly idealTree +-- set-blocking@2.0.0
189 silly idealTree +-- set-immediate-shim@1.0.1
189 silly idealTree +-- setimmediate@1.0.5
189 silly idealTree +-- shebang-command@1.2.0
189 silly idealTree +-- shebang-regex@1.0.0
189 silly idealTree +-- signal-exit@3.0.2
189 silly idealTree +-- simple-swizzle@0.2.2
189 silly idealTree +-- single-line-log@1.1.2
189 silly idealTree +-- slash@1.0.0
189 silly idealTree +-- source-map-support@0.4.18
189 silly idealTree +-- source-map@0.5.7
189 silly idealTree +-- spdx-correct@3.0.0
189 silly idealTree +-- spdx-exceptions@2.1.0
189 silly idealTree +-- spdx-expression-parse@3.0.0
189 silly idealTree +-- spdx-license-ids@3.0.0
189 silly idealTree +-- speedometer@0.1.4
189 silly idealTree +-- sprintf-js@1.0.3
189 silly idealTree +-- sshpk@1.14.1
189 silly idealTree +-- stat-mode@0.2.2
189 silly idealTree +-- stream-json@0.6.1
189 silly idealTree +-- string_decoder@1.1.1
189 silly idealTree +-- string-width@1.0.2
189 silly idealTree +-- strip-ansi@3.0.1
189 silly idealTree +-- strip-bom@2.0.0
189 silly idealTree +-- strip-eof@1.0.0
189 silly idealTree +-- strip-indent@1.0.1
189 silly idealTree +-- strip-json-comments@2.0.1
189 silly idealTree +-- sumchecker@2.0.2
189 silly idealTree +-- supports-color@2.0.0
189 silly idealTree +-- svg-path-parser@1.1.0
189 silly idealTree +-- tar@4.4.4
189 silly idealTree +-- temp-file@3.1.2
189 silly idealTree +-- term-size@1.2.0
189 silly idealTree +-- throttleit@0.0.2
189 silly idealTree +-- through2@0.2.3
189 silly idealTree | +-- isarray@0.0.1
189 silly idealTree | +-- readable-stream@1.1.14
189 silly idealTree | `-- string_decoder@0.10.31
189 silly idealTree +-- timed-out@4.0.1
189 silly idealTree +-- to-fast-properties@1.0.3
189 silly idealTree +-- tough-cookie@2.3.4
189 silly idealTree +-- trim-newlines@1.0.0
189 silly idealTree +-- trim-right@1.0.1
189 silly idealTree +-- truncate-utf8-bytes@1.0.2
189 silly idealTree +-- tunnel-agent@0.6.0
189 silly idealTree +-- tweetnacl@0.14.5
189 silly idealTree +-- ua-parser-js@0.7.18
189 silly idealTree +-- unique-string@1.0.0
189 silly idealTree +-- universalify@0.1.1
189 silly idealTree +-- unzip-response@2.0.1
189 silly idealTree +-- update-notifier@2.5.0
189 silly idealTree | +-- ansi-styles@3.2.1
189 silly idealTree | +-- chalk@2.4.1
189 silly idealTree | `-- supports-color@5.4.0
189 silly idealTree +-- uri-js@4.2.2
189 silly idealTree | `-- punycode@2.1.1
189 silly idealTree +-- url-parse-lax@1.0.0
189 silly idealTree +-- user-home@1.1.1
189 silly idealTree +-- utf8-byte-length@1.0.4
189 silly idealTree +-- util-deprecate@1.0.2
189 silly idealTree +-- uuid@3.2.1
189 silly idealTree +-- v8flags@2.1.1
189 silly idealTree +-- validate-npm-package-license@3.0.3
189 silly idealTree +-- verror@1.10.0
189 silly idealTree +-- whatwg-fetch@2.0.4
189 silly idealTree +-- which-module@2.0.0
189 silly idealTree +-- which@1.3.1
189 silly idealTree +-- wide-align@1.1.3
189 silly idealTree +-- widest-line@2.0.0
189 silly idealTree | +-- ansi-regex@3.0.0
189 silly idealTree | +-- is-fullwidth-code-point@2.0.0
189 silly idealTree | +-- string-width@2.1.1
189 silly idealTree | `-- strip-ansi@4.0.0
189 silly idealTree +-- wrap-ansi@2.1.0
189 silly idealTree +-- wrappy@1.0.2
189 silly idealTree +-- write-file-atomic@2.3.0
189 silly idealTree +-- xdg-basedir@3.0.0
189 silly idealTree +-- xmlbuilder@8.2.2
189 silly idealTree +-- xmldom@0.1.27
189 silly idealTree +-- xtend@2.1.2
189 silly idealTree +-- y18n@3.2.1
189 silly idealTree +-- yallist@3.0.2
189 silly idealTree +-- yargs-parser@9.0.2
189 silly idealTree | `-- camelcase@4.1.0
189 silly idealTree `-- yargs@11.0.0
189 silly idealTree   +-- ansi-regex@3.0.0
189 silly idealTree   +-- find-up@2.1.0
189 silly idealTree   +-- is-fullwidth-code-point@2.0.0
189 silly idealTree   +-- string-width@2.1.1
189 silly idealTree   `-- strip-ansi@4.0.0
190 silly install generateActionsToTake
191 silly diffTrees action count 107
192 silly diffTrees add abbrev@1.1.1
193 silly diffTrees add aproba@1.2.0
194 silly diffTrees add block-stream@0.0.9
195 silly diffTrees add chownr@1.0.1
196 silly diffTrees add console-control-strings@1.1.0
197 silly diffTrees add delegates@1.0.0
198 silly diffTrees add are-we-there-yet@1.1.5
199 silly diffTrees add emscripten-library-decorator@0.2.2
200 silly diffTrees add es6-shim@0.35.3
201 silly diffTrees add @mischnic/async-hooks@0.0.4
202 silly diffTrees add abbrev@1.1.1
203 silly diffTrees add ansi-regex@2.1.1
204 silly diffTrees add aproba@1.2.0
205 silly diffTrees add balanced-match@1.0.0
206 silly diffTrees add chownr@1.0.1
207 silly diffTrees add code-point-at@1.1.0
208 silly diffTrees add concat-map@0.0.1
209 silly diffTrees add brace-expansion@1.1.11
210 silly diffTrees add console-control-strings@1.1.0
211 silly diffTrees add core-util-is@1.0.2
212 silly diffTrees add deep-extend@0.5.1
213 silly diffTrees add delegates@1.0.0
214 silly diffTrees add detect-libc@1.0.3
215 silly diffTrees add fs.realpath@1.0.0
216 silly diffTrees add has-unicode@2.0.1
217 silly diffTrees add inherits@2.0.3
218 silly diffTrees add ini@1.3.5
219 silly diffTrees add isarray@1.0.0
220 silly diffTrees add minimatch@3.0.4
221 silly diffTrees add ignore-walk@3.0.1
222 silly diffTrees add minimist@0.0.8
223 silly diffTrees add mkdirp@0.5.1
224 silly diffTrees add ms@2.0.0
225 silly diffTrees add debug@2.6.9
226 silly diffTrees add npm-bundled@1.0.3
227 silly diffTrees add npm-packlist@1.1.10
228 silly diffTrees add number-is-nan@1.0.1
229 silly diffTrees add is-fullwidth-code-point@1.0.0
230 silly diffTrees add object-assign@4.1.1
231 silly diffTrees add os-homedir@1.0.2
232 silly diffTrees add os-tmpdir@1.0.2
233 silly diffTrees add osenv@0.1.5
234 silly diffTrees add nopt@4.0.1
235 silly diffTrees add path-is-absolute@1.0.1
236 silly diffTrees add process-nextick-args@2.0.0
237 silly diffTrees add minimist@1.2.0
238 silly diffTrees add safe-buffer@5.1.1
239 silly diffTrees add safer-buffer@2.1.2
240 silly diffTrees add iconv-lite@0.4.21
241 silly diffTrees add sax@1.2.4
242 silly diffTrees add needle@2.2.0
243 silly diffTrees add semver@5.5.0
244 silly diffTrees add set-blocking@2.0.0
245 silly diffTrees add signal-exit@3.0.2
246 silly diffTrees add string_decoder@1.1.1
247 silly diffTrees add strip-ansi@3.0.1
248 silly diffTrees add string-width@1.0.2
249 silly diffTrees add strip-json-comments@2.0.1
250 silly diffTrees add rc@1.2.7
251 silly diffTrees add util-deprecate@1.0.2
252 silly diffTrees add readable-stream@2.3.6
253 silly diffTrees add are-we-there-yet@1.1.4
254 silly diffTrees add wide-align@1.1.2
255 silly diffTrees add gauge@2.7.4
256 silly diffTrees add npmlog@4.1.2
257 silly diffTrees add wrappy@1.0.2
258 silly diffTrees add once@1.4.0
259 silly diffTrees add inflight@1.0.6
260 silly diffTrees add glob@7.1.2
261 silly diffTrees add rimraf@2.6.2
262 silly diffTrees add yallist@3.0.2
263 silly diffTrees add minipass@2.2.4
264 silly diffTrees add fs-minipass@1.2.5
265 silly diffTrees add minizlib@1.1.0
266 silly diffTrees add tar@4.4.1
267 silly diffTrees add node-pre-gyp@0.10.0
268 silly diffTrees add glob@6.0.4
269 silly diffTrees add graceful-readlink@1.0.1
270 silly diffTrees add commander@2.9.0
271 silly diffTrees add has-unicode@2.0.1
272 silly diffTrees add home-path@1.0.6
273 silly diffTrees add nan@2.10.0
274 silly diffTrees add fsevents@1.2.4
275 silly diffTrees add nbind@0.3.15
276 silly diffTrees add ncp@2.0.0
277 silly diffTrees add glob@7.1.2
278 silly diffTrees add nopt@3.0.6
279 silly diffTrees add osenv@0.1.5
280 silly diffTrees add regenerator-runtime@0.9.6
281 silly diffTrees add resolve@1.1.7
282 silly diffTrees add autogypi@0.2.2
283 silly diffTrees add rimraf@2.4.5
284 silly diffTrees add fstream@1.0.11
285 silly diffTrees add tar@2.2.1
286 silly diffTrees add mv@2.1.1
287 silly diffTrees add wide-align@1.1.3
288 silly diffTrees add gauge@2.7.4
289 silly diffTrees add npmlog@4.1.2
290 silly diffTrees add node-gyp@3.6.2
291 silly diffTrees add yallist@3.0.2
292 silly diffTrees add minipass@2.3.3
293 silly diffTrees add fs-minipass@1.2.5
294 silly diffTrees add minizlib@1.1.0
295 silly diffTrees add tar@4.4.4
296 silly diffTrees add libui-download@1.1.0
297 silly diffTrees add libui-node@0.2.0
298 silly diffTrees add proton-native@1.1.5
299 silly decomposeActions action count 724
300 silly decomposeActions fetch abbrev@1.1.1
301 silly decomposeActions extract abbrev@1.1.1
302 silly decomposeActions preinstall abbrev@1.1.1
303 silly decomposeActions build abbrev@1.1.1
304 silly decomposeActions install abbrev@1.1.1
305 silly decomposeActions postinstall abbrev@1.1.1
306 silly decomposeActions finalize abbrev@1.1.1
307 silly decomposeActions refresh-package-json abbrev@1.1.1
308 silly decomposeActions fetch aproba@1.2.0
309 silly decomposeActions extract aproba@1.2.0
310 silly decomposeActions preinstall aproba@1.2.0
311 silly decomposeActions build aproba@1.2.0
312 silly decomposeActions install aproba@1.2.0
313 silly decomposeActions postinstall aproba@1.2.0
314 silly decomposeActions finalize aproba@1.2.0
315 silly decomposeActions refresh-package-json aproba@1.2.0
316 silly decomposeActions fetch block-stream@0.0.9
317 silly decomposeActions extract block-stream@0.0.9
318 silly decomposeActions preinstall block-stream@0.0.9
319 silly decomposeActions build block-stream@0.0.9
320 silly decomposeActions install block-stream@0.0.9
321 silly decomposeActions postinstall block-stream@0.0.9
322 silly decomposeActions finalize block-stream@0.0.9
323 silly decomposeActions refresh-package-json block-stream@0.0.9
324 silly decomposeActions fetch chownr@1.0.1
325 silly decomposeActions extract chownr@1.0.1
326 silly decomposeActions preinstall chownr@1.0.1
327 silly decomposeActions build chownr@1.0.1
328 silly decomposeActions install chownr@1.0.1
329 silly decomposeActions postinstall chownr@1.0.1
330 silly decomposeActions finalize chownr@1.0.1
331 silly decomposeActions refresh-package-json chownr@1.0.1
332 silly decomposeActions fetch console-control-strings@1.1.0
333 silly decomposeActions extract console-control-strings@1.1.0
334 silly decomposeActions preinstall console-control-strings@1.1.0
335 silly decomposeActions build console-control-strings@1.1.0
336 silly decomposeActions install console-control-strings@1.1.0
337 silly decomposeActions postinstall console-control-strings@1.1.0
338 silly decomposeActions finalize console-control-strings@1.1.0
339 silly decomposeActions refresh-package-json console-control-strings@1.1.0
340 silly decomposeActions fetch delegates@1.0.0
341 silly decomposeActions extract delegates@1.0.0
342 silly decomposeActions preinstall delegates@1.0.0
343 silly decomposeActions build delegates@1.0.0
344 silly decomposeActions install delegates@1.0.0
345 silly decomposeActions postinstall delegates@1.0.0
346 silly decomposeActions finalize delegates@1.0.0
347 silly decomposeActions refresh-package-json delegates@1.0.0
348 silly decomposeActions fetch are-we-there-yet@1.1.5
349 silly decomposeActions extract are-we-there-yet@1.1.5
350 silly decomposeActions preinstall are-we-there-yet@1.1.5
351 silly decomposeActions build are-we-there-yet@1.1.5
352 silly decomposeActions install are-we-there-yet@1.1.5
353 silly decomposeActions postinstall are-we-there-yet@1.1.5
354 silly decomposeActions finalize are-we-there-yet@1.1.5
355 silly decomposeActions refresh-package-json are-we-there-yet@1.1.5
356 silly decomposeActions fetch emscripten-library-decorator@0.2.2
357 silly decomposeActions extract emscripten-library-decorator@0.2.2
358 silly decomposeActions preinstall emscripten-library-decorator@0.2.2
359 silly decomposeActions build emscripten-library-decorator@0.2.2
360 silly decomposeActions install emscripten-library-decorator@0.2.2
361 silly decomposeActions postinstall emscripten-library-decorator@0.2.2
362 silly decomposeActions finalize emscripten-library-decorator@0.2.2
363 silly decomposeActions refresh-package-json emscripten-library-decorator@0.2.2
364 silly decomposeActions fetch es6-shim@0.35.3
365 silly decomposeActions extract es6-shim@0.35.3
366 silly decomposeActions preinstall es6-shim@0.35.3
367 silly decomposeActions build es6-shim@0.35.3
368 silly decomposeActions install es6-shim@0.35.3
369 silly decomposeActions postinstall es6-shim@0.35.3
370 silly decomposeActions finalize es6-shim@0.35.3
371 silly decomposeActions refresh-package-json es6-shim@0.35.3
372 silly decomposeActions fetch @mischnic/async-hooks@0.0.4
373 silly decomposeActions extract @mischnic/async-hooks@0.0.4
374 silly decomposeActions preinstall @mischnic/async-hooks@0.0.4
375 silly decomposeActions build @mischnic/async-hooks@0.0.4
376 silly decomposeActions install @mischnic/async-hooks@0.0.4
377 silly decomposeActions postinstall @mischnic/async-hooks@0.0.4
378 silly decomposeActions finalize @mischnic/async-hooks@0.0.4
379 silly decomposeActions refresh-package-json @mischnic/async-hooks@0.0.4
380 silly decomposeActions preinstall abbrev@1.1.1
381 silly decomposeActions build abbrev@1.1.1
382 silly decomposeActions install abbrev@1.1.1
383 silly decomposeActions postinstall abbrev@1.1.1
384 silly decomposeActions finalize abbrev@1.1.1
385 silly decomposeActions refresh-package-json abbrev@1.1.1
386 silly decomposeActions preinstall ansi-regex@2.1.1
387 silly decomposeActions build ansi-regex@2.1.1
388 silly decomposeActions install ansi-regex@2.1.1
389 silly decomposeActions postinstall ansi-regex@2.1.1
390 silly decomposeActions finalize ansi-regex@2.1.1
391 silly decomposeActions refresh-package-json ansi-regex@2.1.1
392 silly decomposeActions preinstall aproba@1.2.0
393 silly decomposeActions build aproba@1.2.0
394 silly decomposeActions install aproba@1.2.0
395 silly decomposeActions postinstall aproba@1.2.0
396 silly decomposeActions finalize aproba@1.2.0
397 silly decomposeActions refresh-package-json aproba@1.2.0
398 silly decomposeActions preinstall balanced-match@1.0.0
399 silly decomposeActions build balanced-match@1.0.0
400 silly decomposeActions install balanced-match@1.0.0
401 silly decomposeActions postinstall balanced-match@1.0.0
402 silly decomposeActions finalize balanced-match@1.0.0
403 silly decomposeActions refresh-package-json balanced-match@1.0.0
404 silly decomposeActions preinstall chownr@1.0.1
405 silly decomposeActions build chownr@1.0.1
406 silly decomposeActions install chownr@1.0.1
407 silly decomposeActions postinstall chownr@1.0.1
408 silly decomposeActions finalize chownr@1.0.1
409 silly decomposeActions refresh-package-json chownr@1.0.1
410 silly decomposeActions preinstall code-point-at@1.1.0
411 silly decomposeActions build code-point-at@1.1.0
412 silly decomposeActions install code-point-at@1.1.0
413 silly decomposeActions postinstall code-point-at@1.1.0
414 silly decomposeActions finalize code-point-at@1.1.0
415 silly decomposeActions refresh-package-json code-point-at@1.1.0
416 silly decomposeActions preinstall concat-map@0.0.1
417 silly decomposeActions build concat-map@0.0.1
418 silly decomposeActions install concat-map@0.0.1
419 silly decomposeActions postinstall concat-map@0.0.1
420 silly decomposeActions finalize concat-map@0.0.1
421 silly decomposeActions refresh-package-json concat-map@0.0.1
422 silly decomposeActions preinstall brace-expansion@1.1.11
423 silly decomposeActions build brace-expansion@1.1.11
424 silly decomposeActions install brace-expansion@1.1.11
425 silly decomposeActions postinstall brace-expansion@1.1.11
426 silly decomposeActions finalize brace-expansion@1.1.11
427 silly decomposeActions refresh-package-json brace-expansion@1.1.11
428 silly decomposeActions preinstall console-control-strings@1.1.0
429 silly decomposeActions build console-control-strings@1.1.0
430 silly decomposeActions install console-control-strings@1.1.0
431 silly decomposeActions postinstall console-control-strings@1.1.0
432 silly decomposeActions finalize console-control-strings@1.1.0
433 silly decomposeActions refresh-package-json console-control-strings@1.1.0
434 silly decomposeActions preinstall core-util-is@1.0.2
435 silly decomposeActions build core-util-is@1.0.2
436 silly decomposeActions install core-util-is@1.0.2
437 silly decomposeActions postinstall core-util-is@1.0.2
438 silly decomposeActions finalize core-util-is@1.0.2
439 silly decomposeActions refresh-package-json core-util-is@1.0.2
440 silly decomposeActions preinstall deep-extend@0.5.1
441 silly decomposeActions build deep-extend@0.5.1
442 silly decomposeActions install deep-extend@0.5.1
443 silly decomposeActions postinstall deep-extend@0.5.1
444 silly decomposeActions finalize deep-extend@0.5.1
445 silly decomposeActions refresh-package-json deep-extend@0.5.1
446 silly decomposeActions preinstall delegates@1.0.0
447 silly decomposeActions build delegates@1.0.0
448 silly decomposeActions install delegates@1.0.0
449 silly decomposeActions postinstall delegates@1.0.0
450 silly decomposeActions finalize delegates@1.0.0
451 silly decomposeActions refresh-package-json delegates@1.0.0
452 silly decomposeActions preinstall detect-libc@1.0.3
453 silly decomposeActions build detect-libc@1.0.3
454 silly decomposeActions install detect-libc@1.0.3
455 silly decomposeActions postinstall detect-libc@1.0.3
456 silly decomposeActions finalize detect-libc@1.0.3
457 silly decomposeActions refresh-package-json detect-libc@1.0.3
458 silly decomposeActions preinstall fs.realpath@1.0.0
459 silly decomposeActions build fs.realpath@1.0.0
460 silly decomposeActions install fs.realpath@1.0.0
461 silly decomposeActions postinstall fs.realpath@1.0.0
462 silly decomposeActions finalize fs.realpath@1.0.0
463 silly decomposeActions refresh-package-json fs.realpath@1.0.0
464 silly decomposeActions preinstall has-unicode@2.0.1
465 silly decomposeActions build has-unicode@2.0.1
466 silly decomposeActions install has-unicode@2.0.1
467 silly decomposeActions postinstall has-unicode@2.0.1
468 silly decomposeActions finalize has-unicode@2.0.1
469 silly decomposeActions refresh-package-json has-unicode@2.0.1
470 silly decomposeActions preinstall inherits@2.0.3
471 silly decomposeActions build inherits@2.0.3
472 silly decomposeActions install inherits@2.0.3
473 silly decomposeActions postinstall inherits@2.0.3
474 silly decomposeActions finalize inherits@2.0.3
475 silly decomposeActions refresh-package-json inherits@2.0.3
476 silly decomposeActions preinstall ini@1.3.5
477 silly decomposeActions build ini@1.3.5
478 silly decomposeActions install ini@1.3.5
479 silly decomposeActions postinstall ini@1.3.5
480 silly decomposeActions finalize ini@1.3.5
481 silly decomposeActions refresh-package-json ini@1.3.5
482 silly decomposeActions preinstall isarray@1.0.0
483 silly decomposeActions build isarray@1.0.0
484 silly decomposeActions install isarray@1.0.0
485 silly decomposeActions postinstall isarray@1.0.0
486 silly decomposeActions finalize isarray@1.0.0
487 silly decomposeActions refresh-package-json isarray@1.0.0
488 silly decomposeActions preinstall minimatch@3.0.4
489 silly decomposeActions build minimatch@3.0.4
490 silly decomposeActions install minimatch@3.0.4
491 silly decomposeActions postinstall minimatch@3.0.4
492 silly decomposeActions finalize minimatch@3.0.4
493 silly decomposeActions refresh-package-json minimatch@3.0.4
494 silly decomposeActions preinstall ignore-walk@3.0.1
495 silly decomposeActions build ignore-walk@3.0.1
496 silly decomposeActions install ignore-walk@3.0.1
497 silly decomposeActions postinstall ignore-walk@3.0.1
498 silly decomposeActions finalize ignore-walk@3.0.1
499 silly decomposeActions refresh-package-json ignore-walk@3.0.1
500 silly decomposeActions preinstall minimist@0.0.8
501 silly decomposeActions build minimist@0.0.8
502 silly decomposeActions install minimist@0.0.8
503 silly decomposeActions postinstall minimist@0.0.8
504 silly decomposeActions finalize minimist@0.0.8
505 silly decomposeActions refresh-package-json minimist@0.0.8
506 silly decomposeActions preinstall mkdirp@0.5.1
507 silly decomposeActions build mkdirp@0.5.1
508 silly decomposeActions install mkdirp@0.5.1
509 silly decomposeActions postinstall mkdirp@0.5.1
510 silly decomposeActions finalize mkdirp@0.5.1
511 silly decomposeActions refresh-package-json mkdirp@0.5.1
512 silly decomposeActions preinstall ms@2.0.0
513 silly decomposeActions build ms@2.0.0
514 silly decomposeActions install ms@2.0.0
515 silly decomposeActions postinstall ms@2.0.0
516 silly decomposeActions finalize ms@2.0.0
517 silly decomposeActions refresh-package-json ms@2.0.0
518 silly decomposeActions preinstall debug@2.6.9
519 silly decomposeActions build debug@2.6.9
520 silly decomposeActions install debug@2.6.9
521 silly decomposeActions postinstall debug@2.6.9
522 silly decomposeActions finalize debug@2.6.9
523 silly decomposeActions refresh-package-json debug@2.6.9
524 silly decomposeActions preinstall npm-bundled@1.0.3
525 silly decomposeActions build npm-bundled@1.0.3
526 silly decomposeActions install npm-bundled@1.0.3
527 silly decomposeActions postinstall npm-bundled@1.0.3
528 silly decomposeActions finalize npm-bundled@1.0.3
529 silly decomposeActions refresh-package-json npm-bundled@1.0.3
530 silly decomposeActions preinstall npm-packlist@1.1.10
531 silly decomposeActions build npm-packlist@1.1.10
532 silly decomposeActions install npm-packlist@1.1.10
533 silly decomposeActions postinstall npm-packlist@1.1.10
534 silly decomposeActions finalize npm-packlist@1.1.10
535 silly decomposeActions refresh-package-json npm-packlist@1.1.10
536 silly decomposeActions preinstall number-is-nan@1.0.1
537 silly decomposeActions build number-is-nan@1.0.1
538 silly decomposeActions install number-is-nan@1.0.1
539 silly decomposeActions postinstall number-is-nan@1.0.1
540 silly decomposeActions finalize number-is-nan@1.0.1
541 silly decomposeActions refresh-package-json number-is-nan@1.0.1
542 silly decomposeActions preinstall is-fullwidth-code-point@1.0.0
543 silly decomposeActions build is-fullwidth-code-point@1.0.0
544 silly decomposeActions install is-fullwidth-code-point@1.0.0
545 silly decomposeActions postinstall is-fullwidth-code-point@1.0.0
546 silly decomposeActions finalize is-fullwidth-code-point@1.0.0
547 silly decomposeActions refresh-package-json is-fullwidth-code-point@1.0.0
548 silly decomposeActions preinstall object-assign@4.1.1
549 silly decomposeActions build object-assign@4.1.1
550 silly decomposeActions install object-assign@4.1.1
551 silly decomposeActions postinstall object-assign@4.1.1
552 silly decomposeActions finalize object-assign@4.1.1
553 silly decomposeActions refresh-package-json object-assign@4.1.1
554 silly decomposeActions preinstall os-homedir@1.0.2
555 silly decomposeActions build os-homedir@1.0.2
556 silly decomposeActions install os-homedir@1.0.2
557 silly decomposeActions postinstall os-homedir@1.0.2
558 silly decomposeActions finalize os-homedir@1.0.2
559 silly decomposeActions refresh-package-json os-homedir@1.0.2
560 silly decomposeActions preinstall os-tmpdir@1.0.2
561 silly decomposeActions build os-tmpdir@1.0.2
562 silly decomposeActions install os-tmpdir@1.0.2
563 silly decomposeActions postinstall os-tmpdir@1.0.2
564 silly decomposeActions finalize os-tmpdir@1.0.2
565 silly decomposeActions refresh-package-json os-tmpdir@1.0.2
566 silly decomposeActions preinstall osenv@0.1.5
567 silly decomposeActions build osenv@0.1.5
568 silly decomposeActions install osenv@0.1.5
569 silly decomposeActions postinstall osenv@0.1.5
570 silly decomposeActions finalize osenv@0.1.5
571 silly decomposeActions refresh-package-json osenv@0.1.5
572 silly decomposeActions preinstall nopt@4.0.1
573 silly decomposeActions build nopt@4.0.1
574 silly decomposeActions install nopt@4.0.1
575 silly decomposeActions postinstall nopt@4.0.1
576 silly decomposeActions finalize nopt@4.0.1
577 silly decomposeActions refresh-package-json nopt@4.0.1
578 silly decomposeActions preinstall path-is-absolute@1.0.1
579 silly decomposeActions build path-is-absolute@1.0.1
580 silly decomposeActions install path-is-absolute@1.0.1
581 silly decomposeActions postinstall path-is-absolute@1.0.1
582 silly decomposeActions finalize path-is-absolute@1.0.1
583 silly decomposeActions refresh-package-json path-is-absolute@1.0.1
584 silly decomposeActions preinstall process-nextick-args@2.0.0
585 silly decomposeActions build process-nextick-args@2.0.0
586 silly decomposeActions install process-nextick-args@2.0.0
587 silly decomposeActions postinstall process-nextick-args@2.0.0
588 silly decomposeActions finalize process-nextick-args@2.0.0
589 silly decomposeActions refresh-package-json process-nextick-args@2.0.0
590 silly decomposeActions preinstall minimist@1.2.0
591 silly decomposeActions build minimist@1.2.0
592 silly decomposeActions install minimist@1.2.0
593 silly decomposeActions postinstall minimist@1.2.0
594 silly decomposeActions finalize minimist@1.2.0
595 silly decomposeActions refresh-package-json minimist@1.2.0
596 silly decomposeActions preinstall safe-buffer@5.1.1
597 silly decomposeActions build safe-buffer@5.1.1
598 silly decomposeActions install safe-buffer@5.1.1
599 silly decomposeActions postinstall safe-buffer@5.1.1
600 silly decomposeActions finalize safe-buffer@5.1.1
601 silly decomposeActions refresh-package-json safe-buffer@5.1.1
602 silly decomposeActions preinstall safer-buffer@2.1.2
603 silly decomposeActions build safer-buffer@2.1.2
604 silly decomposeActions install safer-buffer@2.1.2
605 silly decomposeActions postinstall safer-buffer@2.1.2
606 silly decomposeActions finalize safer-buffer@2.1.2
607 silly decomposeActions refresh-package-json safer-buffer@2.1.2
608 silly decomposeActions preinstall iconv-lite@0.4.21
609 silly decomposeActions build iconv-lite@0.4.21
610 silly decomposeActions install iconv-lite@0.4.21
611 silly decomposeActions postinstall iconv-lite@0.4.21
612 silly decomposeActions finalize iconv-lite@0.4.21
613 silly decomposeActions refresh-package-json iconv-lite@0.4.21
614 silly decomposeActions preinstall sax@1.2.4
615 silly decomposeActions build sax@1.2.4
616 silly decomposeActions install sax@1.2.4
617 silly decomposeActions postinstall sax@1.2.4
618 silly decomposeActions finalize sax@1.2.4
619 silly decomposeActions refresh-package-json sax@1.2.4
620 silly decomposeActions preinstall needle@2.2.0
621 silly decomposeActions build needle@2.2.0
622 silly decomposeActions install needle@2.2.0
623 silly decomposeActions postinstall needle@2.2.0
624 silly decomposeActions finalize needle@2.2.0
625 silly decomposeActions refresh-package-json needle@2.2.0
626 silly decomposeActions preinstall semver@5.5.0
627 silly decomposeActions build semver@5.5.0
628 silly decomposeActions install semver@5.5.0
629 silly decomposeActions postinstall semver@5.5.0
630 silly decomposeActions finalize semver@5.5.0
631 silly decomposeActions refresh-package-json semver@5.5.0
632 silly decomposeActions preinstall set-blocking@2.0.0
633 silly decomposeActions build set-blocking@2.0.0
634 silly decomposeActions install set-blocking@2.0.0
635 silly decomposeActions postinstall set-blocking@2.0.0
636 silly decomposeActions finalize set-blocking@2.0.0
637 silly decomposeActions refresh-package-json set-blocking@2.0.0
638 silly decomposeActions preinstall signal-exit@3.0.2
639 silly decomposeActions build signal-exit@3.0.2
640 silly decomposeActions install signal-exit@3.0.2
641 silly decomposeActions postinstall signal-exit@3.0.2
642 silly decomposeActions finalize signal-exit@3.0.2
643 silly decomposeActions refresh-package-json signal-exit@3.0.2
644 silly decomposeActions preinstall string_decoder@1.1.1
645 silly decomposeActions build string_decoder@1.1.1
646 silly decomposeActions install string_decoder@1.1.1
647 silly decomposeActions postinstall string_decoder@1.1.1
648 silly decomposeActions finalize string_decoder@1.1.1
649 silly decomposeActions refresh-package-json string_decoder@1.1.1
650 silly decomposeActions preinstall strip-ansi@3.0.1
651 silly decomposeActions build strip-ansi@3.0.1
652 silly decomposeActions install strip-ansi@3.0.1
653 silly decomposeActions postinstall strip-ansi@3.0.1
654 silly decomposeActions finalize strip-ansi@3.0.1
655 silly decomposeActions refresh-package-json strip-ansi@3.0.1
656 silly decomposeActions preinstall string-width@1.0.2
657 silly decomposeActions build string-width@1.0.2
658 silly decomposeActions install string-width@1.0.2
659 silly decomposeActions postinstall string-width@1.0.2
660 silly decomposeActions finalize string-width@1.0.2
661 silly decomposeActions refresh-package-json string-width@1.0.2
662 silly decomposeActions preinstall strip-json-comments@2.0.1
663 silly decomposeActions build strip-json-comments@2.0.1
664 silly decomposeActions install strip-json-comments@2.0.1
665 silly decomposeActions postinstall strip-json-comments@2.0.1
666 silly decomposeActions finalize strip-json-comments@2.0.1
667 silly decomposeActions refresh-package-json strip-json-comments@2.0.1
668 silly decomposeActions preinstall rc@1.2.7
669 silly decomposeActions build rc@1.2.7
670 silly decomposeActions install rc@1.2.7
671 silly decomposeActions postinstall rc@1.2.7
672 silly decomposeActions finalize rc@1.2.7
673 silly decomposeActions refresh-package-json rc@1.2.7
674 silly decomposeActions preinstall util-deprecate@1.0.2
675 silly decomposeActions build util-deprecate@1.0.2
676 silly decomposeActions install util-deprecate@1.0.2
677 silly decomposeActions postinstall util-deprecate@1.0.2
678 silly decomposeActions finalize util-deprecate@1.0.2
679 silly decomposeActions refresh-package-json util-deprecate@1.0.2
680 silly decomposeActions preinstall readable-stream@2.3.6
681 silly decomposeActions build readable-stream@2.3.6
682 silly decomposeActions install readable-stream@2.3.6
683 silly decomposeActions postinstall readable-stream@2.3.6
684 silly decomposeActions finalize readable-stream@2.3.6
685 silly decomposeActions refresh-package-json readable-stream@2.3.6
686 silly decomposeActions preinstall are-we-there-yet@1.1.4
687 silly decomposeActions build are-we-there-yet@1.1.4
688 silly decomposeActions install are-we-there-yet@1.1.4
689 silly decomposeActions postinstall are-we-there-yet@1.1.4
690 silly decomposeActions finalize are-we-there-yet@1.1.4
691 silly decomposeActions refresh-package-json are-we-there-yet@1.1.4
692 silly decomposeActions preinstall wide-align@1.1.2
693 silly decomposeActions build wide-align@1.1.2
694 silly decomposeActions install wide-align@1.1.2
695 silly decomposeActions postinstall wide-align@1.1.2
696 silly decomposeActions finalize wide-align@1.1.2
697 silly decomposeActions refresh-package-json wide-align@1.1.2
698 silly decomposeActions preinstall gauge@2.7.4
699 silly decomposeActions build gauge@2.7.4
700 silly decomposeActions install gauge@2.7.4
701 silly decomposeActions postinstall gauge@2.7.4
702 silly decomposeActions finalize gauge@2.7.4
703 silly decomposeActions refresh-package-json gauge@2.7.4
704 silly decomposeActions preinstall npmlog@4.1.2
705 silly decomposeActions build npmlog@4.1.2
706 silly decomposeActions install npmlog@4.1.2
707 silly decomposeActions postinstall npmlog@4.1.2
708 silly decomposeActions finalize npmlog@4.1.2
709 silly decomposeActions refresh-package-json npmlog@4.1.2
710 silly decomposeActions preinstall wrappy@1.0.2
711 silly decomposeActions build wrappy@1.0.2
712 silly decomposeActions install wrappy@1.0.2
713 silly decomposeActions postinstall wrappy@1.0.2
714 silly decomposeActions finalize wrappy@1.0.2
715 silly decomposeActions refresh-package-json wrappy@1.0.2
716 silly decomposeActions preinstall once@1.4.0
717 silly decomposeActions build once@1.4.0
718 silly decomposeActions install once@1.4.0
719 silly decomposeActions postinstall once@1.4.0
720 silly decomposeActions finalize once@1.4.0
721 silly decomposeActions refresh-package-json once@1.4.0
722 silly decomposeActions preinstall inflight@1.0.6
723 silly decomposeActions build inflight@1.0.6
724 silly decomposeActions install inflight@1.0.6
725 silly decomposeActions postinstall inflight@1.0.6
726 silly decomposeActions finalize inflight@1.0.6
727 silly decomposeActions refresh-package-json inflight@1.0.6
728 silly decomposeActions preinstall glob@7.1.2
729 silly decomposeActions build glob@7.1.2
730 silly decomposeActions install glob@7.1.2
731 silly decomposeActions postinstall glob@7.1.2
732 silly decomposeActions finalize glob@7.1.2
733 silly decomposeActions refresh-package-json glob@7.1.2
734 silly decomposeActions preinstall rimraf@2.6.2
735 silly decomposeActions build rimraf@2.6.2
736 silly decomposeActions install rimraf@2.6.2
737 silly decomposeActions postinstall rimraf@2.6.2
738 silly decomposeActions finalize rimraf@2.6.2
739 silly decomposeActions refresh-package-json rimraf@2.6.2
740 silly decomposeActions preinstall yallist@3.0.2
741 silly decomposeActions build yallist@3.0.2
742 silly decomposeActions install yallist@3.0.2
743 silly decomposeActions postinstall yallist@3.0.2
744 silly decomposeActions finalize yallist@3.0.2
745 silly decomposeActions refresh-package-json yallist@3.0.2
746 silly decomposeActions preinstall minipass@2.2.4
747 silly decomposeActions build minipass@2.2.4
748 silly decomposeActions install minipass@2.2.4
749 silly decomposeActions postinstall minipass@2.2.4
750 silly decomposeActions finalize minipass@2.2.4
751 silly decomposeActions refresh-package-json minipass@2.2.4
752 silly decomposeActions preinstall fs-minipass@1.2.5
753 silly decomposeActions build fs-minipass@1.2.5
754 silly decomposeActions install fs-minipass@1.2.5
755 silly decomposeActions postinstall fs-minipass@1.2.5
756 silly decomposeActions finalize fs-minipass@1.2.5
757 silly decomposeActions refresh-package-json fs-minipass@1.2.5
758 silly decomposeActions preinstall minizlib@1.1.0
759 silly decomposeActions build minizlib@1.1.0
760 silly decomposeActions install minizlib@1.1.0
761 silly decomposeActions postinstall minizlib@1.1.0
762 silly decomposeActions finalize minizlib@1.1.0
763 silly decomposeActions refresh-package-json minizlib@1.1.0
764 silly decomposeActions preinstall tar@4.4.1
765 silly decomposeActions build tar@4.4.1
766 silly decomposeActions install tar@4.4.1
767 silly decomposeActions postinstall tar@4.4.1
768 silly decomposeActions finalize tar@4.4.1
769 silly decomposeActions refresh-package-json tar@4.4.1
770 silly decomposeActions preinstall node-pre-gyp@0.10.0
771 silly decomposeActions build node-pre-gyp@0.10.0
772 silly decomposeActions install node-pre-gyp@0.10.0
773 silly decomposeActions postinstall node-pre-gyp@0.10.0
774 silly decomposeActions finalize node-pre-gyp@0.10.0
775 silly decomposeActions refresh-package-json node-pre-gyp@0.10.0
776 silly decomposeActions fetch glob@6.0.4
777 silly decomposeActions extract glob@6.0.4
778 silly decomposeActions preinstall glob@6.0.4
779 silly decomposeActions build glob@6.0.4
780 silly decomposeActions install glob@6.0.4
781 silly decomposeActions postinstall glob@6.0.4
782 silly decomposeActions finalize glob@6.0.4
783 silly decomposeActions refresh-package-json glob@6.0.4
784 silly decomposeActions fetch graceful-readlink@1.0.1
785 silly decomposeActions extract graceful-readlink@1.0.1
786 silly decomposeActions preinstall graceful-readlink@1.0.1
787 silly decomposeActions build graceful-readlink@1.0.1
788 silly decomposeActions install graceful-readlink@1.0.1
789 silly decomposeActions postinstall graceful-readlink@1.0.1
790 silly decomposeActions finalize graceful-readlink@1.0.1
791 silly decomposeActions refresh-package-json graceful-readlink@1.0.1
792 silly decomposeActions fetch commander@2.9.0
793 silly decomposeActions extract commander@2.9.0
794 silly decomposeActions preinstall commander@2.9.0
795 silly decomposeActions build commander@2.9.0
796 silly decomposeActions install commander@2.9.0
797 silly decomposeActions postinstall commander@2.9.0
798 silly decomposeActions finalize commander@2.9.0
799 silly decomposeActions refresh-package-json commander@2.9.0
800 silly decomposeActions fetch has-unicode@2.0.1
801 silly decomposeActions extract has-unicode@2.0.1
802 silly decomposeActions preinstall has-unicode@2.0.1
803 silly decomposeActions build has-unicode@2.0.1
804 silly decomposeActions install has-unicode@2.0.1
805 silly decomposeActions postinstall has-unicode@2.0.1
806 silly decomposeActions finalize has-unicode@2.0.1
807 silly decomposeActions refresh-package-json has-unicode@2.0.1
808 silly decomposeActions fetch home-path@1.0.6
809 silly decomposeActions extract home-path@1.0.6
810 silly decomposeActions preinstall home-path@1.0.6
811 silly decomposeActions build home-path@1.0.6
812 silly decomposeActions install home-path@1.0.6
813 silly decomposeActions postinstall home-path@1.0.6
814 silly decomposeActions finalize home-path@1.0.6
815 silly decomposeActions refresh-package-json home-path@1.0.6
816 silly decomposeActions fetch nan@2.10.0
817 silly decomposeActions extract nan@2.10.0
818 silly decomposeActions preinstall nan@2.10.0
819 silly decomposeActions build nan@2.10.0
820 silly decomposeActions install nan@2.10.0
821 silly decomposeActions postinstall nan@2.10.0
822 silly decomposeActions finalize nan@2.10.0
823 silly decomposeActions refresh-package-json nan@2.10.0
824 silly decomposeActions fetch fsevents@1.2.4
825 silly decomposeActions extract fsevents@1.2.4
826 silly decomposeActions preinstall fsevents@1.2.4
827 silly decomposeActions build fsevents@1.2.4
828 silly decomposeActions install fsevents@1.2.4
829 silly decomposeActions postinstall fsevents@1.2.4
830 silly decomposeActions finalize fsevents@1.2.4
831 silly decomposeActions refresh-package-json fsevents@1.2.4
832 silly decomposeActions fetch nbind@0.3.15
833 silly decomposeActions extract nbind@0.3.15
834 silly decomposeActions preinstall nbind@0.3.15
835 silly decomposeActions build nbind@0.3.15
836 silly decomposeActions install nbind@0.3.15
837 silly decomposeActions postinstall nbind@0.3.15
838 silly decomposeActions finalize nbind@0.3.15
839 silly decomposeActions refresh-package-json nbind@0.3.15
840 silly decomposeActions fetch ncp@2.0.0
841 silly decomposeActions extract ncp@2.0.0
842 silly decomposeActions preinstall ncp@2.0.0
843 silly decomposeActions build ncp@2.0.0
844 silly decomposeActions install ncp@2.0.0
845 silly decomposeActions postinstall ncp@2.0.0
846 silly decomposeActions finalize ncp@2.0.0
847 silly decomposeActions refresh-package-json ncp@2.0.0
848 silly decomposeActions fetch glob@7.1.2
849 silly decomposeActions extract glob@7.1.2
850 silly decomposeActions preinstall glob@7.1.2
851 silly decomposeActions build glob@7.1.2
852 silly decomposeActions install glob@7.1.2
853 silly decomposeActions postinstall glob@7.1.2
854 silly decomposeActions finalize glob@7.1.2
855 silly decomposeActions refresh-package-json glob@7.1.2
856 silly decomposeActions fetch nopt@3.0.6
857 silly decomposeActions extract nopt@3.0.6
858 silly decomposeActions preinstall nopt@3.0.6
859 silly decomposeActions build nopt@3.0.6
860 silly decomposeActions install nopt@3.0.6
861 silly decomposeActions postinstall nopt@3.0.6
862 silly decomposeActions finalize nopt@3.0.6
863 silly decomposeActions refresh-package-json nopt@3.0.6
864 silly decomposeActions fetch osenv@0.1.5
865 silly decomposeActions extract osenv@0.1.5
866 silly decomposeActions preinstall osenv@0.1.5
867 silly decomposeActions build osenv@0.1.5
868 silly decomposeActions install osenv@0.1.5
869 silly decomposeActions postinstall osenv@0.1.5
870 silly decomposeActions finalize osenv@0.1.5
871 silly decomposeActions refresh-package-json osenv@0.1.5
872 silly decomposeActions fetch regenerator-runtime@0.9.6
873 silly decomposeActions extract regenerator-runtime@0.9.6
874 silly decomposeActions preinstall regenerator-runtime@0.9.6
875 silly decomposeActions build regenerator-runtime@0.9.6
876 silly decomposeActions install regenerator-runtime@0.9.6
877 silly decomposeActions postinstall regenerator-runtime@0.9.6
878 silly decomposeActions finalize regenerator-runtime@0.9.6
879 silly decomposeActions refresh-package-json regenerator-runtime@0.9.6
880 silly decomposeActions fetch resolve@1.1.7
881 silly decomposeActions extract resolve@1.1.7
882 silly decomposeActions preinstall resolve@1.1.7
883 silly decomposeActions build resolve@1.1.7
884 silly decomposeActions install resolve@1.1.7
885 silly decomposeActions postinstall resolve@1.1.7
886 silly decomposeActions finalize resolve@1.1.7
887 silly decomposeActions refresh-package-json resolve@1.1.7
888 silly decomposeActions fetch autogypi@0.2.2
889 silly decomposeActions extract autogypi@0.2.2
890 silly decomposeActions preinstall autogypi@0.2.2
891 silly decomposeActions build autogypi@0.2.2
892 silly decomposeActions install autogypi@0.2.2
893 silly decomposeActions postinstall autogypi@0.2.2
894 silly decomposeActions finalize autogypi@0.2.2
895 silly decomposeActions refresh-package-json autogypi@0.2.2
896 silly decomposeActions fetch rimraf@2.4.5
897 silly decomposeActions extract rimraf@2.4.5
898 silly decomposeActions preinstall rimraf@2.4.5
899 silly decomposeActions build rimraf@2.4.5
900 silly decomposeActions install rimraf@2.4.5
901 silly decomposeActions postinstall rimraf@2.4.5
902 silly decomposeActions finalize rimraf@2.4.5
903 silly decomposeActions refresh-package-json rimraf@2.4.5
904 silly decomposeActions fetch fstream@1.0.11
905 silly decomposeActions extract fstream@1.0.11
906 silly decomposeActions preinstall fstream@1.0.11
907 silly decomposeActions build fstream@1.0.11
908 silly decomposeActions install fstream@1.0.11
909 silly decomposeActions postinstall fstream@1.0.11
910 silly decomposeActions finalize fstream@1.0.11
911 silly decomposeActions refresh-package-json fstream@1.0.11
912 silly decomposeActions fetch tar@2.2.1
913 silly decomposeActions extract tar@2.2.1
914 silly decomposeActions preinstall tar@2.2.1
915 silly decomposeActions build tar@2.2.1
916 silly decomposeActions install tar@2.2.1
917 silly decomposeActions postinstall tar@2.2.1
918 silly decomposeActions finalize tar@2.2.1
919 silly decomposeActions refresh-package-json tar@2.2.1
920 silly decomposeActions fetch mv@2.1.1
921 silly decomposeActions extract mv@2.1.1
922 silly decomposeActions preinstall mv@2.1.1
923 silly decomposeActions build mv@2.1.1
924 silly decomposeActions install mv@2.1.1
925 silly decomposeActions postinstall mv@2.1.1
926 silly decomposeActions finalize mv@2.1.1
927 silly decomposeActions refresh-package-json mv@2.1.1
928 silly decomposeActions fetch wide-align@1.1.3
929 silly decomposeActions extract wide-align@1.1.3
930 silly decomposeActions preinstall wide-align@1.1.3
931 silly decomposeActions build wide-align@1.1.3
932 silly decomposeActions install wide-align@1.1.3
933 silly decomposeActions postinstall wide-align@1.1.3
934 silly decomposeActions finalize wide-align@1.1.3
935 silly decomposeActions refresh-package-json wide-align@1.1.3
936 silly decomposeActions fetch gauge@2.7.4
937 silly decomposeActions extract gauge@2.7.4
938 silly decomposeActions preinstall gauge@2.7.4
939 silly decomposeActions build gauge@2.7.4
940 silly decomposeActions install gauge@2.7.4
941 silly decomposeActions postinstall gauge@2.7.4
942 silly decomposeActions finalize gauge@2.7.4
943 silly decomposeActions refresh-package-json gauge@2.7.4
944 silly decomposeActions fetch npmlog@4.1.2
945 silly decomposeActions extract npmlog@4.1.2
946 silly decomposeActions preinstall npmlog@4.1.2
947 silly decomposeActions build npmlog@4.1.2
948 silly decomposeActions install npmlog@4.1.2
949 silly decomposeActions postinstall npmlog@4.1.2
950 silly decomposeActions finalize npmlog@4.1.2
951 silly decomposeActions refresh-package-json npmlog@4.1.2
952 silly decomposeActions fetch node-gyp@3.6.2
953 silly decomposeActions extract node-gyp@3.6.2
954 silly decomposeActions preinstall node-gyp@3.6.2
955 silly decomposeActions build node-gyp@3.6.2
956 silly decomposeActions install node-gyp@3.6.2
957 silly decomposeActions postinstall node-gyp@3.6.2
958 silly decomposeActions finalize node-gyp@3.6.2
959 silly decomposeActions refresh-package-json node-gyp@3.6.2
960 silly decomposeActions fetch yallist@3.0.2
961 silly decomposeActions extract yallist@3.0.2
962 silly decomposeActions preinstall yallist@3.0.2
963 silly decomposeActions build yallist@3.0.2
964 silly decomposeActions install yallist@3.0.2
965 silly decomposeActions postinstall yallist@3.0.2
966 silly decomposeActions finalize yallist@3.0.2
967 silly decomposeActions refresh-package-json yallist@3.0.2
968 silly decomposeActions fetch minipass@2.3.3
969 silly decomposeActions extract minipass@2.3.3
970 silly decomposeActions preinstall minipass@2.3.3
971 silly decomposeActions build minipass@2.3.3
972 silly decomposeActions install minipass@2.3.3
973 silly decomposeActions postinstall minipass@2.3.3
974 silly decomposeActions finalize minipass@2.3.3
975 silly decomposeActions refresh-package-json minipass@2.3.3
976 silly decomposeActions fetch fs-minipass@1.2.5
977 silly decomposeActions extract fs-minipass@1.2.5
978 silly decomposeActions preinstall fs-minipass@1.2.5
979 silly decomposeActions build fs-minipass@1.2.5
980 silly decomposeActions install fs-minipass@1.2.5
981 silly decomposeActions postinstall fs-minipass@1.2.5
982 silly decomposeActions finalize fs-minipass@1.2.5
983 silly decomposeActions refresh-package-json fs-minipass@1.2.5
984 silly decomposeActions fetch minizlib@1.1.0
985 silly decomposeActions extract minizlib@1.1.0
986 silly decomposeActions preinstall minizlib@1.1.0
987 silly decomposeActions build minizlib@1.1.0
988 silly decomposeActions install minizlib@1.1.0
989 silly decomposeActions postinstall minizlib@1.1.0
990 silly decomposeActions finalize minizlib@1.1.0
991 silly decomposeActions refresh-package-json minizlib@1.1.0
992 silly decomposeActions fetch tar@4.4.4
993 silly decomposeActions extract tar@4.4.4
994 silly decomposeActions preinstall tar@4.4.4
995 silly decomposeActions build tar@4.4.4
996 silly decomposeActions install tar@4.4.4
997 silly decomposeActions postinstall tar@4.4.4
998 silly decomposeActions finalize tar@4.4.4
999 silly decomposeActions refresh-package-json tar@4.4.4
1000 silly decomposeActions fetch libui-download@1.1.0
1001 silly decomposeActions extract libui-download@1.1.0
1002 silly decomposeActions preinstall libui-download@1.1.0
1003 silly decomposeActions build libui-download@1.1.0
1004 silly decomposeActions install libui-download@1.1.0
1005 silly decomposeActions postinstall libui-download@1.1.0
1006 silly decomposeActions finalize libui-download@1.1.0
1007 silly decomposeActions refresh-package-json libui-download@1.1.0
1008 silly decomposeActions fetch libui-node@0.2.0
1009 silly decomposeActions extract libui-node@0.2.0
1010 silly decomposeActions preinstall libui-node@0.2.0
1011 silly decomposeActions build libui-node@0.2.0
1012 silly decomposeActions install libui-node@0.2.0
1013 silly decomposeActions postinstall libui-node@0.2.0
1014 silly decomposeActions finalize libui-node@0.2.0
1015 silly decomposeActions refresh-package-json libui-node@0.2.0
1016 silly decomposeActions fetch proton-native@1.1.5
1017 silly decomposeActions extract proton-native@1.1.5
1018 silly decomposeActions preinstall proton-native@1.1.5
1019 silly decomposeActions build proton-native@1.1.5
1020 silly decomposeActions install proton-native@1.1.5
1021 silly decomposeActions postinstall proton-native@1.1.5
1022 silly decomposeActions finalize proton-native@1.1.5
1023 silly decomposeActions refresh-package-json proton-native@1.1.5
1024 silly install executeActions
1025 silly doSerial global-install 724
1026 verbose correctMkdir C:\Users\angel\AppData\Roaming\npm-cache\_locks correctMkdir not in flight; initializing
1027 verbose lock using C:\Users\angel\AppData\Roaming\npm-cache\_locks\staging-cd4311422553b877.lock for C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\.staging
1028 silly doParallel extract 724
1029 silly extract abbrev@1.1.1
1030 silly pacote trying abbrev@https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz by hash: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==
1031 silly extract aproba@1.2.0
1032 silly pacote trying aproba@https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz by hash: sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==
1033 silly extract block-stream@0.0.9
1034 silly pacote trying block-stream@https://registry.npmjs.org/block-stream/-/block-stream-0.0.9.tgz by hash: sha1-E+v+d4oDIFz+A3UUgeu0szAMEmo=
1035 silly extract chownr@1.0.1
1036 silly pacote trying chownr@https://registry.npmjs.org/chownr/-/chownr-1.0.1.tgz by hash: sha1-4qdQQqlVGQi+vSW4Uj1fl2nXkYE=
1037 silly extract console-control-strings@1.1.0
1038 silly pacote trying console-control-strings@https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz by hash: sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=
1039 silly extract delegates@1.0.0
1040 silly pacote trying delegates@https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz by hash: sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=
1041 silly extract are-we-there-yet@1.1.5
1042 silly pacote trying are-we-there-yet@https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz by hash: sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w==
1043 silly extract emscripten-library-decorator@0.2.2
1044 silly pacote trying emscripten-library-decorator@https://registry.npmjs.org/emscripten-library-decorator/-/emscripten-library-decorator-0.2.2.tgz by hash: sha1-0DXwI+KoTGgwXMhCze6jjmdoPEA=
1045 silly extract es6-shim@0.35.3
1046 silly pacote trying es6-shim@https://registry.npmjs.org/es6-shim/-/es6-shim-0.35.3.tgz by hash: sha1-m/tzY/7//4emzbbNk+QF7DxLbyY=
1047 silly extract @mischnic/async-hooks@0.0.4
1048 silly pacote trying @mischnic/async-hooks@https://registry.npmjs.org/@mischnic/async-hooks/-/async-hooks-0.0.4.tgz by hash: sha512-mJL/Rckke7oIR8c1Dk+40Y0a+Ss712hyJqROOurl5VE8gQY+GbbebKcNuWIRxlZTrQQq8mfo7oE9xKZXrtQTjQ==
1049 silly extract glob@6.0.4
1050 silly pacote trying glob@https://registry.npmjs.org/glob/-/glob-6.0.4.tgz by hash: sha1-DwiGD2oVUSey+t1PnOJLGqtuTSI=
1051 silly extract graceful-readlink@1.0.1
1052 silly pacote trying graceful-readlink@https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz by hash: sha1-TK+tdrxi8C+gObL5Tpo906ORpyU=
1053 silly extract commander@2.9.0
1054 silly pacote trying commander@https://registry.npmjs.org/commander/-/commander-2.9.0.tgz by hash: sha1-nJkJQXbhIkDLItbFFGCYQA/g99Q=
1055 silly extract has-unicode@2.0.1
1056 silly pacote trying has-unicode@https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz by hash: sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=
1057 silly extract home-path@1.0.6
1058 silly pacote trying home-path@https://registry.npmjs.org/home-path/-/home-path-1.0.6.tgz by hash: sha512-wo+yjrdAtoXt43Vy92a+0IPCYViiyLAHyp0QVS4xL/tfvVz5sXIW1ubLZk3nhVkD92fQpUMKX+fzMjr5F489vw==
1059 silly extract nan@2.10.0
1060 silly pacote trying nan@https://registry.npmjs.org/nan/-/nan-2.10.0.tgz by hash: sha512-bAdJv7fBLhWC+/Bls0Oza+mvTaNQtP+1RyhhhvD95pgUJz6XM5IzgmxOkItJ9tkoCiplvAnXI1tNmmUD/eScyA==
1061 silly extract fsevents@1.2.4
1062 silly pacote trying fsevents@https://registry.npmjs.org/fsevents/-/fsevents-1.2.4.tgz by hash: sha512-z8H8/diyk76B7q5wg+Ud0+CqzcAF3mBBI/bA5ne5zrRUUIvNkJY//D3BqyH571KuAC4Nr7Rw7CjWX4r0y9DvNg==
1063 silly extract nbind@0.3.15
1064 silly pacote trying nbind@https://registry.npmjs.org/nbind/-/nbind-0.3.15.tgz by hash: sha512-TrKLNRj5D8wZRJb7XmUNbA1W3iTigAEpm3qaGig5bEWY/iCT2IQBgBc2EUGO59FbRIGhx5hB/McVwqxlSGScVw==
1065 silly extract ncp@2.0.0
1066 silly pacote trying ncp@https://registry.npmjs.org/ncp/-/ncp-2.0.0.tgz by hash: sha1-GVoh1sRuNh0vsSgbo4uR6d9727M=
1067 silly extract glob@7.1.2
1068 silly pacote trying glob@https://registry.npmjs.org/glob/-/glob-7.1.2.tgz by hash: sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==
1069 silly extract nopt@3.0.6
1070 silly pacote trying nopt@https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz by hash: sha1-xkZdvwirzU2zWTF/eaxopkayj/k=
1071 silly extract osenv@0.1.5
1072 silly pacote trying osenv@https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz by hash: sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==
1073 silly extract regenerator-runtime@0.9.6
1074 silly pacote trying regenerator-runtime@https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.9.6.tgz by hash: sha1-0z65XQ0gAaS+OWWXB8UbDLcc4Ck=
1075 silly extract resolve@1.1.7
1076 silly pacote trying resolve@https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz by hash: sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs=
1077 silly extract autogypi@0.2.2
1078 silly pacote trying autogypi@https://registry.npmjs.org/autogypi/-/autogypi-0.2.2.tgz by hash: sha1-JYurX3hXdVsJvqxqZB/qEw/0Yi0=
1079 silly extract rimraf@2.4.5
1080 silly pacote trying rimraf@https://registry.npmjs.org/rimraf/-/rimraf-2.4.5.tgz by hash: sha1-7nEM5dk6j9uFb7Xqj/Di11k0sto=
1081 silly extract fstream@1.0.11
1082 silly pacote trying fstream@https://registry.npmjs.org/fstream/-/fstream-1.0.11.tgz by hash: sha1-XB+x8RdHcRTwYyoOtLcbPLD9MXE=
1083 silly extract tar@2.2.1
1084 silly pacote trying tar@https://registry.npmjs.org/tar/-/tar-2.2.1.tgz by hash: sha1-jk0qJWwOIYXGsYrWlK7JaLg8sdE=
1085 silly extract mv@2.1.1
1086 silly pacote trying mv@https://registry.npmjs.org/mv/-/mv-2.1.1.tgz by hash: sha1-rmzg1vbV4KT32JN5jQPB6pVZtqI=
1087 silly extract wide-align@1.1.3
1088 silly pacote trying wide-align@https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz by hash: sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==
1089 silly extract gauge@2.7.4
1090 silly pacote trying gauge@https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz by hash: sha1-LANAXHU4w51+s3sxcCLjJfsBi/c=
1091 silly extract npmlog@4.1.2
1092 silly pacote trying npmlog@https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz by hash: sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==
1093 silly extract node-gyp@3.6.2
1094 silly pacote trying node-gyp@https://registry.npmjs.org/node-gyp/-/node-gyp-3.6.2.tgz by hash: sha1-m/vlRWIoYoSDjnUOrAUpWFP6HGA=
1095 silly extract yallist@3.0.2
1096 silly pacote trying yallist@https://registry.npmjs.org/yallist/-/yallist-3.0.2.tgz by hash: sha1-hFK0u36Dx8GI2AQcGoN8dz1ti7k=
1097 silly extract minipass@2.3.3
1098 silly pacote trying minipass@https://registry.npmjs.org/minipass/-/minipass-2.3.3.tgz by hash: sha512-/jAn9/tEX4gnpyRATxgHEOV6xbcyxgT7iUnxo9Y3+OB0zX00TgKIv/2FZCf5brBbICcwbLqVv2ImjvWWrQMSYw==
1099 silly extract fs-minipass@1.2.5
1100 silly pacote trying fs-minipass@https://registry.npmjs.org/fs-minipass/-/fs-minipass-1.2.5.tgz by hash: sha512-JhBl0skXjUPCFH7x6x61gQxrKyXsxB5gcgePLZCwfyCGGsTISMoIeObbrvVeP6Xmyaudw4TT43qV2Gz+iyd2oQ==
1101 silly extract minizlib@1.1.0
1102 silly pacote trying minizlib@https://registry.npmjs.org/minizlib/-/minizlib-1.1.0.tgz by hash: sha512-4T6Ur/GctZ27nHfpt9THOdRZNgyJ9FZchYO1ceg5S8Q3DNLCKYy44nCZzgCJgcvx2UM8czmqak5BCxJMrq37lA==
1103 silly extract tar@4.4.4
1104 silly pacote trying tar@https://registry.npmjs.org/tar/-/tar-4.4.4.tgz by hash: sha512-mq9ixIYfNF9SK0IS/h2HKMu8Q2iaCuhDDsZhdEag/FHv8fOaYld4vN7ouMgcSSt5WKZzPs8atclTcJm36OTh4w==
1105 silly extract libui-download@1.1.0
1106 silly pacote trying libui-download@https://registry.npmjs.org/libui-download/-/libui-download-1.1.0.tgz by hash: sha512-kn/VrmvI4zUNjH+GsUelLMKNiuNG/T9q7eEWXSLXQwcpQvhsvUZQO8VxeiNfYw4wMqnYUOyPynbx8qfXJt3ZaQ==
1107 silly extract libui-node@0.2.0
1108 silly pacote trying libui-node@https://registry.npmjs.org/libui-node/-/libui-node-0.2.0.tgz by hash: sha512-6LRO0y++9kO5RcuODjjwwV9IeZlkYC4mnr9NLlCmm/CT8xKIZ1AWMp4JU+iI41VDNN52kOqh9u4uB9nFdcGa2g==
1109 silly extract proton-native@1.1.5
1110 silly pacote trying proton-native@https://registry.npmjs.org/proton-native/-/proton-native-1.1.5.tgz by hash: sha512-/2qHbBPhvkRWOoKKhYT8FfEWpIxRczggXVTchJHuhWBq65AFt2T97WNvVSl3HwVD1IDNF/Y+eM7oXixZ9odkWg==
1111 silly pacote abbrev@https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz extracted to C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\.staging\abbrev-94644515 by content address 2003ms
1112 silly pacote osenv@https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz extracted to C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\.staging\osenv-2d167494 by content address 2048ms
1113 silly pacote fs-minipass@https://registry.npmjs.org/fs-minipass/-/fs-minipass-1.2.5.tgz extracted to C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\.staging\fs-minipass-82296641 by content address 2050ms
1114 silly pacote minipass@https://registry.npmjs.org/minipass/-/minipass-2.3.3.tgz extracted to C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\.staging\minipass-ada41575 by content address 2059ms
1115 silly pacote chownr@https://registry.npmjs.org/chownr/-/chownr-1.0.1.tgz extracted to C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\.staging\chownr-29cdf23c by content address 2108ms
1116 silly pacote aproba@https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz extracted to C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\.staging\aproba-bfdef08d by content address 2126ms
1117 silly pacote has-unicode@https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz extracted to C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\.staging\has-unicode-f843921f by content address 2145ms
1118 silly pacote wide-align@https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz extracted to C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\.staging\wide-align-5ef0dfdc by content address 2172ms
1119 silly pacote console-control-strings@https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz extracted to C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\.staging\console-control-strings-16097cb2 by content address 2265ms
1120 silly pacote commander@https://registry.npmjs.org/commander/-/commander-2.9.0.tgz extracted to C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\.staging\commander-5de2ccaa by content address 2323ms
1121 silly pacote block-stream@https://registry.npmjs.org/block-stream/-/block-stream-0.0.9.tgz extracted to C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\.staging\block-stream-c9ec7f60 by content address 2372ms
1122 silly pacote minizlib@https://registry.npmjs.org/minizlib/-/minizlib-1.1.0.tgz extracted to C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\.staging\minizlib-0996cfcf by content address 2322ms
1123 silly pacote rimraf@https://registry.npmjs.org/rimraf/-/rimraf-2.4.5.tgz extracted to C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\.staging\rimraf-98621a47 by content address 2333ms
1124 silly pacote libui-download@https://registry.npmjs.org/libui-download/-/libui-download-1.1.0.tgz extracted to C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\.staging\libui-download-a916a369 by content address 2320ms
1125 silly pacote graceful-readlink@https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz extracted to C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\.staging\graceful-readlink-73ad076c by content address 2395ms
1126 silly pacote yallist@https://registry.npmjs.org/yallist/-/yallist-3.0.2.tgz extracted to C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\.staging\yallist-e395acca by content address 2397ms
1127 silly pacote regenerator-runtime@https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.9.6.tgz extracted to C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\.staging\regenerator-runtime-e82a846a by content address 2481ms
1128 silly pacote npmlog@https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz extracted to C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\.staging\npmlog-28872817 by content address 2476ms
1129 silly pacote home-path@https://registry.npmjs.org/home-path/-/home-path-1.0.6.tgz extracted to C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\.staging\home-path-5a463300 by content address 2519ms
1130 silly pacote glob@https://registry.npmjs.org/glob/-/glob-6.0.4.tgz extracted to C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\.staging\glob-90d61782 by content address 2566ms
1131 silly pacote glob@https://registry.npmjs.org/glob/-/glob-7.1.2.tgz extracted to C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\.staging\glob-252b0d10 by content address 2561ms
1132 silly pacote are-we-there-yet@https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz extracted to C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\.staging\are-we-there-yet-502a9f40 by content address 2636ms
1133 silly pacote delegates@https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz extracted to C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\.staging\delegates-06c1d86b by content address 2805ms
1134 silly pacote emscripten-library-decorator@https://registry.npmjs.org/emscripten-library-decorator/-/emscripten-library-decorator-0.2.2.tgz extracted to C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\.staging\emscripten-library-decorator-b81d349a by content address 2838ms
1135 silly pacote gauge@https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz extracted to C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\.staging\gauge-426916cf by content address 3246ms
1136 silly pacote nopt@https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz extracted to C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\.staging\nopt-75c3a5a3 by content address 3416ms
1137 silly pacote mv@https://registry.npmjs.org/mv/-/mv-2.1.1.tgz extracted to C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\.staging\mv-d571c6d6 by content address 3502ms
1138 silly pacote fstream@https://registry.npmjs.org/fstream/-/fstream-1.0.11.tgz extracted to C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\.staging\fstream-d51902b8 by content address 3735ms
1139 silly pacote tar@https://registry.npmjs.org/tar/-/tar-4.4.4.tgz extracted to C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\.staging\tar-f003396f by content address 3920ms
1140 silly pacote tar@https://registry.npmjs.org/tar/-/tar-2.2.1.tgz extracted to C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\.staging\tar-1fa0ab62 by content address 4060ms
1141 silly pacote nan@https://registry.npmjs.org/nan/-/nan-2.10.0.tgz extracted to C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\.staging\nan-390a607f by content address 4379ms
1142 silly pacote ncp@https://registry.npmjs.org/ncp/-/ncp-2.0.0.tgz extracted to C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\.staging\ncp-9670cd9e by content address 4676ms
1143 silly pacote proton-native@https://registry.npmjs.org/proton-native/-/proton-native-1.1.5.tgz extracted to C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\.staging\proton-native-c21b2062 by content address 4728ms
1144 silly pacote @mischnic/async-hooks@https://registry.npmjs.org/@mischnic/async-hooks/-/async-hooks-0.0.4.tgz extracted to C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\.staging\@mischnic\async-hooks-3df5fa5b by content address 4860ms
1145 silly pacote es6-shim@https://registry.npmjs.org/es6-shim/-/es6-shim-0.35.3.tgz extracted to C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\.staging\es6-shim-c0e36cff by content address 4922ms
1146 silly pacote libui-node@https://registry.npmjs.org/libui-node/-/libui-node-0.2.0.tgz extracted to C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\.staging\libui-node-0050636c by content address 4944ms
1147 silly pacote autogypi@https://registry.npmjs.org/autogypi/-/autogypi-0.2.2.tgz extracted to C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\.staging\autogypi-4f28415b by content address 4969ms
1148 silly pacote nbind@https://registry.npmjs.org/nbind/-/nbind-0.3.15.tgz extracted to C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\.staging\nbind-10d12dce by content address 5081ms
1149 silly pacote node-gyp@https://registry.npmjs.org/node-gyp/-/node-gyp-3.6.2.tgz extracted to C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\.staging\node-gyp-3c8a6d41 by content address 5405ms
1150 silly pacote resolve@https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz extracted to C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\.staging\resolve-d9b97d33 by content address 5501ms
1151 silly pacote fsevents@https://registry.npmjs.org/fsevents/-/fsevents-1.2.4.tgz extracted to C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\.staging\fsevents-dda3a04d by content address 9356ms
1152 silly doReverseSerial unbuild 724
1153 silly doSerial remove 724
1154 silly doSerial move 724
1155 silly doSerial finalize 724
1156 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\abbrev
1157 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\aproba
1158 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\block-stream
1159 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\chownr
1160 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\console-control-strings
1161 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\delegates
1162 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\are-we-there-yet
1163 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\emscripten-library-decorator
1164 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\es6-shim
1165 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\@mischnic\async-hooks
1166 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\abbrev
1167 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\ansi-regex
1168 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\aproba
1169 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\balanced-match
1170 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\chownr
1171 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\code-point-at
1172 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\concat-map
1173 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\brace-expansion
1174 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\console-control-strings
1175 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\core-util-is
1176 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\deep-extend
1177 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\delegates
1178 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\detect-libc
1179 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\fs.realpath
1180 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\has-unicode
1181 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\inherits
1182 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\ini
1183 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\isarray
1184 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\minimatch
1185 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\ignore-walk
1186 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\minimist
1187 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\mkdirp
1188 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\ms
1189 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\debug
1190 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\npm-bundled
1191 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\npm-packlist
1192 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\number-is-nan
1193 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\is-fullwidth-code-point
1194 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\object-assign
1195 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\os-homedir
1196 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\os-tmpdir
1197 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\osenv
1198 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\nopt
1199 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\path-is-absolute
1200 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\process-nextick-args
1201 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\rc\node_modules\minimist
1202 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\safe-buffer
1203 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\safer-buffer
1204 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\iconv-lite
1205 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\sax
1206 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\needle
1207 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\semver
1208 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\set-blocking
1209 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\signal-exit
1210 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\string_decoder
1211 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\strip-ansi
1212 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\string-width
1213 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\strip-json-comments
1214 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\rc
1215 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\util-deprecate
1216 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\readable-stream
1217 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\are-we-there-yet
1218 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\wide-align
1219 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\gauge
1220 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\npmlog
1221 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\wrappy
1222 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\once
1223 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\inflight
1224 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\glob
1225 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\rimraf
1226 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\yallist
1227 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\minipass
1228 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\fs-minipass
1229 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\minizlib
1230 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\tar
1231 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\node-pre-gyp
1232 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\glob
1233 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\graceful-readlink
1234 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\commander
1235 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\has-unicode
1236 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\home-path
1237 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\nan
1238 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents
1239 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\nbind
1240 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\ncp
1241 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\node-gyp\node_modules\glob
1242 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\nopt
1243 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\osenv
1244 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\regenerator-runtime
1245 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\resolve
1246 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\autogypi
1247 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\rimraf
1248 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fstream
1249 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\node-gyp\node_modules\tar
1250 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\mv
1251 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\wide-align
1252 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\gauge
1253 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\npmlog
1254 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\node-gyp
1255 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\yallist
1256 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\minipass
1257 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fs-minipass
1258 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\minizlib
1259 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\tar
1260 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\libui-download
1261 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\libui-node
1262 silly finalize C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\proton-native
1263 silly doParallel refresh-package-json 724
1264 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\abbrev
1265 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\aproba
1266 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\block-stream
1267 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\chownr
1268 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\console-control-strings
1269 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\delegates
1270 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\are-we-there-yet
1271 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\emscripten-library-decorator
1272 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\es6-shim
1273 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\@mischnic\async-hooks
1274 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\abbrev
1275 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\ansi-regex
1276 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\aproba
1277 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\balanced-match
1278 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\chownr
1279 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\code-point-at
1280 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\concat-map
1281 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\brace-expansion
1282 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\console-control-strings
1283 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\core-util-is
1284 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\deep-extend
1285 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\delegates
1286 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\detect-libc
1287 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\fs.realpath
1288 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\has-unicode
1289 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\inherits
1290 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\ini
1291 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\isarray
1292 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\minimatch
1293 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\ignore-walk
1294 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\minimist
1295 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\mkdirp
1296 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\ms
1297 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\debug
1298 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\npm-bundled
1299 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\npm-packlist
1300 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\number-is-nan
1301 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\is-fullwidth-code-point
1302 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\object-assign
1303 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\os-homedir
1304 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\os-tmpdir
1305 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\osenv
1306 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\nopt
1307 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\path-is-absolute
1308 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\process-nextick-args
1309 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\rc\node_modules\minimist
1310 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\safe-buffer
1311 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\safer-buffer
1312 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\iconv-lite
1313 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\sax
1314 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\proton-native
1315 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\libui-node
1316 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\libui-download
1317 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\tar
1318 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\minizlib
1319 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fs-minipass
1320 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\minipass
1321 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\yallist
1322 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\node-gyp
1323 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\npmlog
1324 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\gauge
1325 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\wide-align
1326 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\mv
1327 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\node-gyp\node_modules\tar
1328 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fstream
1329 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\rimraf
1330 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\autogypi
1331 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\resolve
1332 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\regenerator-runtime
1333 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\osenv
1334 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\nopt
1335 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\node-gyp\node_modules\glob
1336 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\ncp
1337 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\nbind
1338 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents
1339 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\nan
1340 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\home-path
1341 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\has-unicode
1342 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\commander
1343 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\graceful-readlink
1344 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\glob
1345 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\node-pre-gyp
1346 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\tar
1347 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\minizlib
1348 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\fs-minipass
1349 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\minipass
1350 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\yallist
1351 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\rimraf
1352 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\glob
1353 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\inflight
1354 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\once
1355 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\wrappy
1356 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\npmlog
1357 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\gauge
1358 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\wide-align
1359 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\are-we-there-yet
1360 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\readable-stream
1361 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\util-deprecate
1362 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\rc
1363 silly refresh-package-json C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\fsevents\node_modules\strip-json-comments
1364 silly doParallel preinstall 724
1365 silly preinstall abbrev@1.1.1
1366 info lifecycle abbrev@1.1.1~preinstall: abbrev@1.1.1
1367 silly preinstall aproba@1.2.0
1368 info lifecycle aproba@1.2.0~preinstall: aproba@1.2.0
1369 silly preinstall block-stream@0.0.9
1370 info lifecycle block-stream@0.0.9~preinstall: block-stream@0.0.9
1371 silly preinstall chownr@1.0.1
1372 info lifecycle chownr@1.0.1~preinstall: chownr@1.0.1
1373 silly preinstall console-control-strings@1.1.0
1374 info lifecycle console-control-strings@1.1.0~preinstall: console-control-strings@1.1.0
1375 silly preinstall delegates@1.0.0
1376 info lifecycle delegates@1.0.0~preinstall: delegates@1.0.0
1377 silly preinstall are-we-there-yet@1.1.5
1378 info lifecycle are-we-there-yet@1.1.5~preinstall: are-we-there-yet@1.1.5
1379 silly preinstall emscripten-library-decorator@0.2.2
1380 info lifecycle emscripten-library-decorator@0.2.2~preinstall: emscripten-library-decorator@0.2.2
1381 silly preinstall es6-shim@0.35.3
1382 info lifecycle es6-shim@0.35.3~preinstall: es6-shim@0.35.3
1383 silly preinstall @mischnic/async-hooks@0.0.4
1384 info lifecycle @mischnic/async-hooks@0.0.4~preinstall: @mischnic/async-hooks@0.0.4
1385 silly preinstall glob@6.0.4
1386 info lifecycle glob@6.0.4~preinstall: glob@6.0.4
1387 silly preinstall graceful-readlink@1.0.1
1388 info lifecycle graceful-readlink@1.0.1~preinstall: graceful-readlink@1.0.1
1389 silly preinstall commander@2.9.0
1390 info lifecycle commander@2.9.0~preinstall: commander@2.9.0
1391 silly preinstall has-unicode@2.0.1
1392 info lifecycle has-unicode@2.0.1~preinstall: has-unicode@2.0.1
1393 silly preinstall home-path@1.0.6
1394 info lifecycle home-path@1.0.6~preinstall: home-path@1.0.6
1395 silly preinstall nan@2.10.0
1396 info lifecycle nan@2.10.0~preinstall: nan@2.10.0
1397 silly preinstall nbind@0.3.15
1398 info lifecycle nbind@0.3.15~preinstall: nbind@0.3.15
1399 silly preinstall ncp@2.0.0
1400 info lifecycle ncp@2.0.0~preinstall: ncp@2.0.0
1401 silly preinstall glob@7.1.2
1402 info lifecycle glob@7.1.2~preinstall: glob@7.1.2
1403 silly preinstall nopt@3.0.6
1404 info lifecycle nopt@3.0.6~preinstall: nopt@3.0.6
1405 silly preinstall osenv@0.1.5
1406 info lifecycle osenv@0.1.5~preinstall: osenv@0.1.5
1407 silly preinstall regenerator-runtime@0.9.6
1408 info lifecycle regenerator-runtime@0.9.6~preinstall: regenerator-runtime@0.9.6
1409 silly preinstall resolve@1.1.7
1410 info lifecycle resolve@1.1.7~preinstall: resolve@1.1.7
1411 silly preinstall autogypi@0.2.2
1412 info lifecycle autogypi@0.2.2~preinstall: autogypi@0.2.2
1413 silly preinstall rimraf@2.4.5
1414 info lifecycle rimraf@2.4.5~preinstall: rimraf@2.4.5
1415 silly preinstall fstream@1.0.11
1416 info lifecycle fstream@1.0.11~preinstall: fstream@1.0.11
1417 silly preinstall tar@2.2.1
1418 info lifecycle tar@2.2.1~preinstall: tar@2.2.1
1419 silly preinstall mv@2.1.1
1420 info lifecycle mv@2.1.1~preinstall: mv@2.1.1
1421 silly preinstall wide-align@1.1.3
1422 info lifecycle wide-align@1.1.3~preinstall: wide-align@1.1.3
1423 silly preinstall gauge@2.7.4
1424 info lifecycle gauge@2.7.4~preinstall: gauge@2.7.4
1425 silly preinstall npmlog@4.1.2
1426 info lifecycle npmlog@4.1.2~preinstall: npmlog@4.1.2
1427 silly preinstall node-gyp@3.6.2
1428 info lifecycle node-gyp@3.6.2~preinstall: node-gyp@3.6.2
1429 silly preinstall yallist@3.0.2
1430 info lifecycle yallist@3.0.2~preinstall: yallist@3.0.2
1431 silly preinstall minipass@2.3.3
1432 info lifecycle minipass@2.3.3~preinstall: minipass@2.3.3
1433 silly preinstall fs-minipass@1.2.5
1434 info lifecycle fs-minipass@1.2.5~preinstall: fs-minipass@1.2.5
1435 silly preinstall minizlib@1.1.0
1436 info lifecycle minizlib@1.1.0~preinstall: minizlib@1.1.0
1437 silly preinstall tar@4.4.4
1438 info lifecycle tar@4.4.4~preinstall: tar@4.4.4
1439 silly preinstall libui-download@1.1.0
1440 info lifecycle libui-download@1.1.0~preinstall: libui-download@1.1.0
1441 silly preinstall libui-node@0.2.0
1442 info lifecycle libui-node@0.2.0~preinstall: libui-node@0.2.0
1443 silly preinstall proton-native@1.1.5
1444 info lifecycle proton-native@1.1.5~preinstall: proton-native@1.1.5
1445 silly doSerial build 724
1446 silly build abbrev@1.1.1
1447 info linkStuff abbrev@1.1.1
1448 silly linkStuff abbrev@1.1.1 has C:\Users\angel\Desktop\Github\Proton\my-app\node_modules as its parent node_modules
1449 verbose linkBins abbrev@1.1.1
1450 verbose linkMans abbrev@1.1.1
1451 silly build aproba@1.2.0
1452 info linkStuff aproba@1.2.0
1453 silly linkStuff aproba@1.2.0 has C:\Users\angel\Desktop\Github\Proton\my-app\node_modules as its parent node_modules
1454 verbose linkBins aproba@1.2.0
1455 verbose linkMans aproba@1.2.0
1456 silly build block-stream@0.0.9
1457 info linkStuff block-stream@0.0.9
1458 silly linkStuff block-stream@0.0.9 has C:\Users\angel\Desktop\Github\Proton\my-app\node_modules as its parent node_modules
1459 verbose linkBins block-stream@0.0.9
1460 verbose linkMans block-stream@0.0.9
1461 silly build chownr@1.0.1
1462 info linkStuff chownr@1.0.1
1463 silly linkStuff chownr@1.0.1 has C:\Users\angel\Desktop\Github\Proton\my-app\node_modules as its parent node_modules
1464 verbose linkBins chownr@1.0.1
1465 verbose linkMans chownr@1.0.1
1466 silly build console-control-strings@1.1.0
1467 info linkStuff console-control-strings@1.1.0
1468 silly linkStuff console-control-strings@1.1.0 has C:\Users\angel\Desktop\Github\Proton\my-app\node_modules as its parent node_modules
1469 verbose linkBins console-control-strings@1.1.0
1470 verbose linkMans console-control-strings@1.1.0
1471 silly build delegates@1.0.0
1472 info linkStuff delegates@1.0.0
1473 silly linkStuff delegates@1.0.0 has C:\Users\angel\Desktop\Github\Proton\my-app\node_modules as its parent node_modules
1474 verbose linkBins delegates@1.0.0
1475 verbose linkMans delegates@1.0.0
1476 silly build are-we-there-yet@1.1.5
1477 info linkStuff are-we-there-yet@1.1.5
1478 silly linkStuff are-we-there-yet@1.1.5 has C:\Users\angel\Desktop\Github\Proton\my-app\node_modules as its parent node_modules
1479 verbose linkBins are-we-there-yet@1.1.5
1480 verbose linkMans are-we-there-yet@1.1.5
1481 silly build emscripten-library-decorator@0.2.2
1482 info linkStuff emscripten-library-decorator@0.2.2
1483 silly linkStuff emscripten-library-decorator@0.2.2 has C:\Users\angel\Desktop\Github\Proton\my-app\node_modules as its parent node_modules
1484 verbose linkBins emscripten-library-decorator@0.2.2
1485 verbose linkBins [ { 'dump-em-lib': './dump-em-lib' },
1485 verbose linkBins   'C:\\Users\\angel\\Desktop\\Github\\Proton\\my-app\\node_modules\\.bin',
1485 verbose linkBins   false ]
1486 verbose linkMans emscripten-library-decorator@0.2.2
1487 silly linkBins Converting line endings of hashbang file: C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\emscripten-library-decorator\dump-em-lib
1488 silly build es6-shim@0.35.3
1489 info linkStuff es6-shim@0.35.3
1490 silly linkStuff es6-shim@0.35.3 has C:\Users\angel\Desktop\Github\Proton\my-app\node_modules as its parent node_modules
1491 verbose linkBins es6-shim@0.35.3
1492 verbose linkMans es6-shim@0.35.3
1493 silly build @mischnic/async-hooks@0.0.4
1494 info linkStuff @mischnic/async-hooks@0.0.4
1495 silly linkStuff @mischnic/async-hooks@0.0.4 has C:\Users\angel\Desktop\Github\Proton\my-app\node_modules as its parent node_modules
1496 verbose linkBins @mischnic/async-hooks@0.0.4
1497 verbose linkMans @mischnic/async-hooks@0.0.4
1498 silly build glob@6.0.4
1499 info linkStuff glob@6.0.4
1500 silly linkStuff glob@6.0.4 has C:\Users\angel\Desktop\Github\Proton\my-app\node_modules as its parent node_modules
1501 verbose linkBins glob@6.0.4
1502 verbose linkMans glob@6.0.4
1503 silly build graceful-readlink@1.0.1
1504 info linkStuff graceful-readlink@1.0.1
1505 silly linkStuff graceful-readlink@1.0.1 has C:\Users\angel\Desktop\Github\Proton\my-app\node_modules as its parent node_modules
1506 verbose linkBins graceful-readlink@1.0.1
1507 verbose linkMans graceful-readlink@1.0.1
1508 silly build commander@2.9.0
1509 info linkStuff commander@2.9.0
1510 silly linkStuff commander@2.9.0 has C:\Users\angel\Desktop\Github\Proton\my-app\node_modules as its parent node_modules
1511 verbose linkBins commander@2.9.0
1512 verbose linkMans commander@2.9.0
1513 silly build has-unicode@2.0.1
1514 info linkStuff has-unicode@2.0.1
1515 silly linkStuff has-unicode@2.0.1 has C:\Users\angel\Desktop\Github\Proton\my-app\node_modules as its parent node_modules
1516 verbose linkBins has-unicode@2.0.1
1517 verbose linkMans has-unicode@2.0.1
1518 silly build home-path@1.0.6
1519 info linkStuff home-path@1.0.6
1520 silly linkStuff home-path@1.0.6 has C:\Users\angel\Desktop\Github\Proton\my-app\node_modules as its parent node_modules
1521 verbose linkBins home-path@1.0.6
1522 verbose linkMans home-path@1.0.6
1523 silly build nan@2.10.0
1524 info linkStuff nan@2.10.0
1525 silly linkStuff nan@2.10.0 has C:\Users\angel\Desktop\Github\Proton\my-app\node_modules as its parent node_modules
1526 verbose linkBins nan@2.10.0
1527 verbose linkMans nan@2.10.0
1528 silly build nbind@0.3.15
1529 info linkStuff nbind@0.3.15
1530 silly linkStuff nbind@0.3.15 has C:\Users\angel\Desktop\Github\Proton\my-app\node_modules as its parent node_modules
1531 verbose linkBins nbind@0.3.15
1532 verbose linkBins [ { copyasm: 'bin/copyasm.js',
1532 verbose linkBins     'emcc-path': 'bin/emcc-path.js',
1532 verbose linkBins     ndts: 'bin/ndts.js' },
1532 verbose linkBins   'C:\\Users\\angel\\Desktop\\Github\\Proton\\my-app\\node_modules\\.bin',
1532 verbose linkBins   false ]
1533 verbose linkMans nbind@0.3.15
1534 silly linkBins Converting line endings of hashbang file: C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\nbind\bin\copyasm.js
1535 silly linkBins Converting line endings of hashbang file: C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\nbind\bin\emcc-path.js
1536 silly linkBins Converting line endings of hashbang file: C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\nbind\bin\ndts.js
1537 silly build ncp@2.0.0
1538 info linkStuff ncp@2.0.0
1539 silly linkStuff ncp@2.0.0 has C:\Users\angel\Desktop\Github\Proton\my-app\node_modules as its parent node_modules
1540 verbose linkBins ncp@2.0.0
1541 verbose linkBins [ { ncp: './bin/ncp' },
1541 verbose linkBins   'C:\\Users\\angel\\Desktop\\Github\\Proton\\my-app\\node_modules\\.bin',
1541 verbose linkBins   false ]
1542 verbose linkMans ncp@2.0.0
1543 silly linkBins Converting line endings of hashbang file: C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\ncp\bin\ncp
1544 silly build glob@7.1.2
1545 info linkStuff glob@7.1.2
1546 silly linkStuff glob@7.1.2 has C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\node-gyp\node_modules as its parent node_modules
1547 verbose linkBins glob@7.1.2
1548 verbose linkMans glob@7.1.2
1549 silly build nopt@3.0.6
1550 info linkStuff nopt@3.0.6
1551 silly linkStuff nopt@3.0.6 has C:\Users\angel\Desktop\Github\Proton\my-app\node_modules as its parent node_modules
1552 verbose linkBins nopt@3.0.6
1553 verbose linkBins [ { nopt: './bin/nopt.js' },
1553 verbose linkBins   'C:\\Users\\angel\\Desktop\\Github\\Proton\\my-app\\node_modules\\.bin',
1553 verbose linkBins   false ]
1554 verbose linkMans nopt@3.0.6
1555 silly linkBins Converting line endings of hashbang file: C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\nopt\bin\nopt.js
1556 silly build osenv@0.1.5
1557 info linkStuff osenv@0.1.5
1558 silly linkStuff osenv@0.1.5 has C:\Users\angel\Desktop\Github\Proton\my-app\node_modules as its parent node_modules
1559 verbose linkBins osenv@0.1.5
1560 verbose linkMans osenv@0.1.5
1561 silly build regenerator-runtime@0.9.6
1562 info linkStuff regenerator-runtime@0.9.6
1563 silly linkStuff regenerator-runtime@0.9.6 has C:\Users\angel\Desktop\Github\Proton\my-app\node_modules as its parent node_modules
1564 verbose linkBins regenerator-runtime@0.9.6
1565 verbose linkMans regenerator-runtime@0.9.6
1566 silly build resolve@1.1.7
1567 info linkStuff resolve@1.1.7
1568 silly linkStuff resolve@1.1.7 has C:\Users\angel\Desktop\Github\Proton\my-app\node_modules as its parent node_modules
1569 verbose linkBins resolve@1.1.7
1570 verbose linkMans resolve@1.1.7
1571 silly build autogypi@0.2.2
1572 info linkStuff autogypi@0.2.2
1573 silly linkStuff autogypi@0.2.2 has C:\Users\angel\Desktop\Github\Proton\my-app\node_modules as its parent node_modules
1574 verbose linkBins autogypi@0.2.2
1575 verbose linkBins [ { autogypi: './autogypi' },
1575 verbose linkBins   'C:\\Users\\angel\\Desktop\\Github\\Proton\\my-app\\node_modules\\.bin',
1575 verbose linkBins   false ]
1576 verbose linkMans autogypi@0.2.2
1577 silly linkBins Converting line endings of hashbang file: C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\autogypi\autogypi
1578 silly build rimraf@2.4.5
1579 info linkStuff rimraf@2.4.5
1580 silly linkStuff rimraf@2.4.5 has C:\Users\angel\Desktop\Github\Proton\my-app\node_modules as its parent node_modules
1581 verbose linkBins rimraf@2.4.5
1582 verbose linkBins [ { rimraf: './bin.js' },
1582 verbose linkBins   'C:\\Users\\angel\\Desktop\\Github\\Proton\\my-app\\node_modules\\.bin',
1582 verbose linkBins   false ]
1583 verbose linkMans rimraf@2.4.5
1584 silly linkBins Converting line endings of hashbang file: C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\rimraf\bin.js
1585 silly build fstream@1.0.11
1586 info linkStuff fstream@1.0.11
1587 silly linkStuff fstream@1.0.11 has C:\Users\angel\Desktop\Github\Proton\my-app\node_modules as its parent node_modules
1588 verbose linkBins fstream@1.0.11
1589 verbose linkMans fstream@1.0.11
1590 silly build tar@2.2.1
1591 info linkStuff tar@2.2.1
1592 silly linkStuff tar@2.2.1 has C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\node-gyp\node_modules as its parent node_modules
1593 verbose linkBins tar@2.2.1
1594 verbose linkMans tar@2.2.1
1595 silly build mv@2.1.1
1596 info linkStuff mv@2.1.1
1597 silly linkStuff mv@2.1.1 has C:\Users\angel\Desktop\Github\Proton\my-app\node_modules as its parent node_modules
1598 verbose linkBins mv@2.1.1
1599 verbose linkMans mv@2.1.1
1600 silly build wide-align@1.1.3
1601 info linkStuff wide-align@1.1.3
1602 silly linkStuff wide-align@1.1.3 has C:\Users\angel\Desktop\Github\Proton\my-app\node_modules as its parent node_modules
1603 verbose linkBins wide-align@1.1.3
1604 verbose linkMans wide-align@1.1.3
1605 silly build gauge@2.7.4
1606 info linkStuff gauge@2.7.4
1607 silly linkStuff gauge@2.7.4 has C:\Users\angel\Desktop\Github\Proton\my-app\node_modules as its parent node_modules
1608 verbose linkBins gauge@2.7.4
1609 verbose linkMans gauge@2.7.4
1610 silly build npmlog@4.1.2
1611 info linkStuff npmlog@4.1.2
1612 silly linkStuff npmlog@4.1.2 has C:\Users\angel\Desktop\Github\Proton\my-app\node_modules as its parent node_modules
1613 verbose linkBins npmlog@4.1.2
1614 verbose linkMans npmlog@4.1.2
1615 silly build node-gyp@3.6.2
1616 info linkStuff node-gyp@3.6.2
1617 silly linkStuff node-gyp@3.6.2 has C:\Users\angel\Desktop\Github\Proton\my-app\node_modules as its parent node_modules
1618 verbose linkBins node-gyp@3.6.2
1619 verbose linkBins [ { 'node-gyp': './bin/node-gyp.js' },
1619 verbose linkBins   'C:\\Users\\angel\\Desktop\\Github\\Proton\\my-app\\node_modules\\.bin',
1619 verbose linkBins   false ]
1620 verbose linkMans node-gyp@3.6.2
1621 silly linkBins Converting line endings of hashbang file: C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\node-gyp\bin\node-gyp.js
1622 silly build yallist@3.0.2
1623 info linkStuff yallist@3.0.2
1624 silly linkStuff yallist@3.0.2 has C:\Users\angel\Desktop\Github\Proton\my-app\node_modules as its parent node_modules
1625 verbose linkBins yallist@3.0.2
1626 verbose linkMans yallist@3.0.2
1627 silly build minipass@2.3.3
1628 info linkStuff minipass@2.3.3
1629 silly linkStuff minipass@2.3.3 has C:\Users\angel\Desktop\Github\Proton\my-app\node_modules as its parent node_modules
1630 verbose linkBins minipass@2.3.3
1631 verbose linkMans minipass@2.3.3
1632 silly build fs-minipass@1.2.5
1633 info linkStuff fs-minipass@1.2.5
1634 silly linkStuff fs-minipass@1.2.5 has C:\Users\angel\Desktop\Github\Proton\my-app\node_modules as its parent node_modules
1635 verbose linkBins fs-minipass@1.2.5
1636 verbose linkMans fs-minipass@1.2.5
1637 silly build minizlib@1.1.0
1638 info linkStuff minizlib@1.1.0
1639 silly linkStuff minizlib@1.1.0 has C:\Users\angel\Desktop\Github\Proton\my-app\node_modules as its parent node_modules
1640 verbose linkBins minizlib@1.1.0
1641 verbose linkMans minizlib@1.1.0
1642 silly build tar@4.4.4
1643 info linkStuff tar@4.4.4
1644 silly linkStuff tar@4.4.4 has C:\Users\angel\Desktop\Github\Proton\my-app\node_modules as its parent node_modules
1645 verbose linkBins tar@4.4.4
1646 verbose linkMans tar@4.4.4
1647 silly build libui-download@1.1.0
1648 info linkStuff libui-download@1.1.0
1649 silly linkStuff libui-download@1.1.0 has C:\Users\angel\Desktop\Github\Proton\my-app\node_modules as its parent node_modules
1650 verbose linkBins libui-download@1.1.0
1651 verbose linkBins [ { 'libui-download': 'cli.js' },
1651 verbose linkBins   'C:\\Users\\angel\\Desktop\\Github\\Proton\\my-app\\node_modules\\.bin',
1651 verbose linkBins   false ]
1652 verbose linkMans libui-download@1.1.0
1653 silly linkBins Converting line endings of hashbang file: C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\libui-download\cli.js
1654 silly build libui-node@0.2.0
1655 info linkStuff libui-node@0.2.0
1656 silly linkStuff libui-node@0.2.0 has C:\Users\angel\Desktop\Github\Proton\my-app\node_modules as its parent node_modules
1657 verbose linkBins libui-node@0.2.0
1658 verbose linkMans libui-node@0.2.0
1659 silly build proton-native@1.1.5
1660 info linkStuff proton-native@1.1.5
1661 silly linkStuff proton-native@1.1.5 has C:\Users\angel\Desktop\Github\Proton\my-app\node_modules as its parent node_modules
1662 verbose linkBins proton-native@1.1.5
1663 verbose linkMans proton-native@1.1.5
1664 silly doSerial global-link 724
1665 silly doParallel update-linked 724
1666 silly doSerial install 724
1667 silly install abbrev@1.1.1
1668 info lifecycle abbrev@1.1.1~install: abbrev@1.1.1
1669 silly install aproba@1.2.0
1670 info lifecycle aproba@1.2.0~install: aproba@1.2.0
1671 silly install block-stream@0.0.9
1672 info lifecycle block-stream@0.0.9~install: block-stream@0.0.9
1673 silly install chownr@1.0.1
1674 info lifecycle chownr@1.0.1~install: chownr@1.0.1
1675 silly install console-control-strings@1.1.0
1676 info lifecycle console-control-strings@1.1.0~install: console-control-strings@1.1.0
1677 silly install delegates@1.0.0
1678 info lifecycle delegates@1.0.0~install: delegates@1.0.0
1679 silly install are-we-there-yet@1.1.5
1680 info lifecycle are-we-there-yet@1.1.5~install: are-we-there-yet@1.1.5
1681 silly install emscripten-library-decorator@0.2.2
1682 info lifecycle emscripten-library-decorator@0.2.2~install: emscripten-library-decorator@0.2.2
1683 silly install es6-shim@0.35.3
1684 info lifecycle es6-shim@0.35.3~install: es6-shim@0.35.3
1685 silly install @mischnic/async-hooks@0.0.4
1686 info lifecycle @mischnic/async-hooks@0.0.4~install: @mischnic/async-hooks@0.0.4
1687 silly install glob@6.0.4
1688 info lifecycle glob@6.0.4~install: glob@6.0.4
1689 silly install graceful-readlink@1.0.1
1690 info lifecycle graceful-readlink@1.0.1~install: graceful-readlink@1.0.1
1691 silly install commander@2.9.0
1692 info lifecycle commander@2.9.0~install: commander@2.9.0
1693 silly install has-unicode@2.0.1
1694 info lifecycle has-unicode@2.0.1~install: has-unicode@2.0.1
1695 silly install home-path@1.0.6
1696 info lifecycle home-path@1.0.6~install: home-path@1.0.6
1697 silly install nan@2.10.0
1698 info lifecycle nan@2.10.0~install: nan@2.10.0
1699 silly install nbind@0.3.15
1700 info lifecycle nbind@0.3.15~install: nbind@0.3.15
1701 silly install ncp@2.0.0
1702 info lifecycle ncp@2.0.0~install: ncp@2.0.0
1703 silly install glob@7.1.2
1704 info lifecycle glob@7.1.2~install: glob@7.1.2
1705 silly install nopt@3.0.6
1706 info lifecycle nopt@3.0.6~install: nopt@3.0.6
1707 silly install osenv@0.1.5
1708 info lifecycle osenv@0.1.5~install: osenv@0.1.5
1709 silly install regenerator-runtime@0.9.6
1710 info lifecycle regenerator-runtime@0.9.6~install: regenerator-runtime@0.9.6
1711 silly install resolve@1.1.7
1712 info lifecycle resolve@1.1.7~install: resolve@1.1.7
1713 silly install autogypi@0.2.2
1714 info lifecycle autogypi@0.2.2~install: autogypi@0.2.2
1715 silly install rimraf@2.4.5
1716 info lifecycle rimraf@2.4.5~install: rimraf@2.4.5
1717 silly install fstream@1.0.11
1718 info lifecycle fstream@1.0.11~install: fstream@1.0.11
1719 silly install tar@2.2.1
1720 info lifecycle tar@2.2.1~install: tar@2.2.1
1721 silly install mv@2.1.1
1722 info lifecycle mv@2.1.1~install: mv@2.1.1
1723 silly install wide-align@1.1.3
1724 info lifecycle wide-align@1.1.3~install: wide-align@1.1.3
1725 silly install gauge@2.7.4
1726 info lifecycle gauge@2.7.4~install: gauge@2.7.4
1727 silly install npmlog@4.1.2
1728 info lifecycle npmlog@4.1.2~install: npmlog@4.1.2
1729 silly install node-gyp@3.6.2
1730 info lifecycle node-gyp@3.6.2~install: node-gyp@3.6.2
1731 silly install yallist@3.0.2
1732 info lifecycle yallist@3.0.2~install: yallist@3.0.2
1733 silly install minipass@2.3.3
1734 info lifecycle minipass@2.3.3~install: minipass@2.3.3
1735 silly install fs-minipass@1.2.5
1736 info lifecycle fs-minipass@1.2.5~install: fs-minipass@1.2.5
1737 silly install minizlib@1.1.0
1738 info lifecycle minizlib@1.1.0~install: minizlib@1.1.0
1739 silly install tar@4.4.4
1740 info lifecycle tar@4.4.4~install: tar@4.4.4
1741 silly install libui-download@1.1.0
1742 info lifecycle libui-download@1.1.0~install: libui-download@1.1.0
1743 silly install libui-node@0.2.0
1744 info lifecycle libui-node@0.2.0~install: libui-node@0.2.0
1745 verbose lifecycle libui-node@0.2.0~install: unsafe-perm in lifecycle true
1746 verbose lifecycle libui-node@0.2.0~install: PATH: C:\Users\angel\AppData\Roaming\nvm\v8.11.1\node_modules\npm\node_modules\npm-lifecycle\node-gyp-bin;C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\libui-node\node_modules\.bin;C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\.bin;C:\Program Files (x86)\EasyPHP-DevServer-14.1VC11\binaries\php\php_runningversion;C:\ProgramData\Oracle\Java\javapath;C:\Program Files (x86)\Intel\iCLS Client\;C:\Program Files\Intel\iCLS Client\;C:\windows\system32;C:\windows;C:\windows\System32\Wbem;C:\windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\ATI Technologies\ATI.ACE\Core-Static;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\IPT;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\IPT;C:\Program Files (x86)\Microchip\xc8\v1.35\bin;C:\Program Files\Java\jdk1.8.0_25\bin;C:\Program Files (x86)\Skype\Phone\;C:\Program Files (x86)\GtkSharp\2.12\bin;C:\Users\angel\Desktop\android-sdk-windows\tools;C:\Users\angel\Desktop\android-sdk-windows\platform-tools;C:\Program Files\Git\cmd;C:\Users\angel\AppData\Roaming\nvm;C:\Program Files\nodejs;C:\Program Files\MiKTeX 2.9\miktex\bin\x64\;C:\Ruby193\bin;C:\Users\angel\AppData\Local\atom\bin;C:\Users\angel\AppData\Roaming\npm;C:\Program Files\Microsoft VS Code\bin;C:\Program Files\Heroku\bin
1747 verbose lifecycle libui-node@0.2.0~install: CWD: C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\libui-node
1748 silly lifecycle libui-node@0.2.0~install: Args: [ '/d /s /c', 'libui-download && autogypi && npm run build' ]
1749 silly lifecycle libui-node@0.2.0~install: Returned: code: 1  signal: null
1750 info lifecycle libui-node@0.2.0~install: Failed to exec install script
1751 verbose unlock done using C:\Users\angel\AppData\Roaming\npm-cache\_locks\staging-cd4311422553b877.lock for C:\Users\angel\Desktop\Github\Proton\my-app\node_modules\.staging
1752 silly saveTree my-app@0.0.1
1752 silly saveTree +-- babel-cli@6.26.0
1752 silly saveTree | +-- babel-core@6.26.3
1752 silly saveTree | | +-- babel-code-frame@6.26.0
1752 silly saveTree | | | +-- chalk@1.1.3
1752 silly saveTree | | | | +-- ansi-styles@2.2.1
1752 silly saveTree | | | | +-- escape-string-regexp@1.0.5
1752 silly saveTree | | | | +-- has-ansi@2.0.0
1752 silly saveTree | | | | | `-- ansi-regex@2.1.1
1752 silly saveTree | | | | +-- strip-ansi@3.0.1
1752 silly saveTree | | | | `-- supports-color@2.0.0
1752 silly saveTree | | | +-- esutils@2.0.2
1752 silly saveTree | | | `-- js-tokens@3.0.2
1752 silly saveTree | | +-- babel-generator@6.26.1
1752 silly saveTree | | | +-- babel-messages@6.23.0
1752 silly saveTree | | | | `-- babel-runtime@6.26.0
1752 silly saveTree | | | |   +-- core-js@2.5.7
1752 silly saveTree | | | |   `-- regenerator-runtime@0.11.1
1752 silly saveTree | | | +-- babel-runtime@6.26.0
1752 silly saveTree | | | +-- babel-types@6.26.0
1752 silly saveTree | | | | +-- lodash@4.17.10
1752 silly saveTree | | | | `-- to-fast-properties@1.0.3
1752 silly saveTree | | | +-- detect-indent@4.0.0
1752 silly saveTree | | | | `-- repeating@2.0.1
1752 silly saveTree | | | |   `-- is-finite@1.0.2
1752 silly saveTree | | | |     `-- number-is-nan@1.0.1
1752 silly saveTree | | | +-- jsesc@1.3.0
1752 silly saveTree | | | +-- lodash@4.17.10
1752 silly saveTree | | | +-- source-map@0.5.7
1752 silly saveTree | | | `-- trim-right@1.0.1
1752 silly saveTree | | +-- babel-helpers@6.24.1
1752 silly saveTree | | | `-- babel-template@6.26.0
1752 silly saveTree | | |   +-- babel-traverse@6.26.0
1752 silly saveTree | | |   | +-- babylon@6.18.0
1752 silly saveTree | | |   | +-- debug@2.6.9
1752 silly saveTree | | |   | | `-- ms@2.0.0
1752 silly saveTree | | |   | +-- globals@9.18.0
1752 silly saveTree | | |   | `-- invariant@2.2.4
1752 silly saveTree | | |   |   `-- loose-envify@1.3.1
1752 silly saveTree | | |   `-- babylon@6.18.0
1752 silly saveTree | | +-- babel-messages@6.23.0
1752 silly saveTree | | +-- babel-register@6.26.0
1752 silly saveTree | | | +-- core-js@2.5.7
1752 silly saveTree | | | +-- home-or-tmp@2.0.0
1752 silly saveTree | | | | +-- os-homedir@1.0.2
1752 silly saveTree | | | | `-- os-tmpdir@1.0.2
1752 silly saveTree | | | +-- mkdirp@0.5.1
1752 silly saveTree | | | | `-- minimist@0.0.8
1752 silly saveTree | | | `-- source-map-support@0.4.18
1752 silly saveTree | | +-- babel-runtime@6.26.0
1752 silly saveTree | | +-- babel-template@6.26.0
1752 silly saveTree | | +-- babel-traverse@6.26.0
1752 silly saveTree | | +-- babel-types@6.26.0
1752 silly saveTree | | +-- babylon@6.18.0
1752 silly saveTree | | +-- convert-source-map@1.5.1
1752 silly saveTree | | +-- debug@2.6.9
1752 silly saveTree | | +-- json5@0.5.1
1752 silly saveTree | | +-- lodash@4.17.10
1752 silly saveTree | | +-- minimatch@3.0.4
1752 silly saveTree | | | `-- brace-expansion@1.1.11
1752 silly saveTree | | |   +-- balanced-match@1.0.0
1752 silly saveTree | | |   `-- concat-map@0.0.1
1752 silly saveTree | | +-- path-is-absolute@1.0.1
1752 silly saveTree | | +-- private@0.1.8
1752 silly saveTree | | +-- slash@1.0.0
1752 silly saveTree | | `-- source-map@0.5.7
1752 silly saveTree | +-- babel-polyfill@6.26.0
1752 silly saveTree | | +-- core-js@2.5.7
1752 silly saveTree | | `-- regenerator-runtime@0.10.5
1752 silly saveTree | +-- babel-register@6.26.0
1752 silly saveTree | +-- babel-runtime@6.26.0
1752 silly saveTree | +-- chokidar@1.7.0
1752 silly saveTree | | +-- anymatch@1.3.2
1752 silly saveTree | | | +-- micromatch@2.3.11
1752 silly saveTree | | | | +-- arr-diff@2.0.0
1752 silly saveTree | | | | | `-- arr-flatten@1.1.0
1752 silly saveTree | | | | +-- array-unique@0.2.1
1752 silly saveTree | | | | +-- braces@1.8.5
1752 silly saveTree | | | | | +-- expand-range@1.8.2
1752 silly saveTree | | | | | | `-- fill-range@2.2.4
1752 silly saveTree | | | | | |   +-- is-number@2.1.0
1752 silly saveTree | | | | | |   | `-- kind-of@3.2.2
1752 silly saveTree | | | | | |   |   `-- is-buffer@1.1.6
1752 silly saveTree | | | | | |   +-- isobject@2.1.0
1752 silly saveTree | | | | | |   | `-- isarray@1.0.0
1752 silly saveTree | | | | | |   +-- randomatic@3.0.0
1752 silly saveTree | | | | | |   | +-- is-number@4.0.0
1752 silly saveTree | | | | | |   | +-- kind-of@6.0.2
1752 silly saveTree | | | | | |   | `-- math-random@1.0.1
1752 silly saveTree | | | | | |   +-- repeat-element@1.1.2
1752 silly saveTree | | | | | |   `-- repeat-string@1.6.1
1752 silly saveTree | | | | | +-- preserve@0.2.0
1752 silly saveTree | | | | | `-- repeat-element@1.1.2
1752 silly saveTree | | | | +-- expand-brackets@0.1.5
1752 silly saveTree | | | | | `-- is-posix-bracket@0.1.1
1752 silly saveTree | | | | +-- extglob@0.3.2
1752 silly saveTree | | | | | `-- is-extglob@1.0.0
1752 silly saveTree | | | | +-- filename-regex@2.0.1
1752 silly saveTree | | | | +-- is-extglob@1.0.0
1752 silly saveTree | | | | +-- is-glob@2.0.1
1752 silly saveTree | | | | +-- kind-of@3.2.2
1752 silly saveTree | | | | +-- normalize-path@2.1.1
1752 silly saveTree | | | | | `-- remove-trailing-separator@1.1.0
1752 silly saveTree | | | | +-- object.omit@2.0.1
1752 silly saveTree | | | | | +-- for-own@0.1.5
1752 silly saveTree | | | | | | `-- for-in@1.0.2
1752 silly saveTree | | | | | `-- is-extendable@0.1.1
1752 silly saveTree | | | | +-- parse-glob@3.0.4
1752 silly saveTree | | | | | +-- glob-base@0.3.0
1752 silly saveTree | | | | | | `-- glob-parent@2.0.0
1752 silly saveTree | | | | | `-- is-dotfile@1.0.3
1752 silly saveTree | | | | `-- regex-cache@0.4.4
1752 silly saveTree | | | |   `-- is-equal-shallow@0.1.3
1752 silly saveTree | | | |     `-- is-primitive@2.0.0
1752 silly saveTree | | | `-- normalize-path@2.1.1
1752 silly saveTree | | +-- async-each@1.0.1
1752 silly saveTree | | +-- fsevents@1.2.4
1752 silly saveTree | | | +-- nan@2.10.0
1752 silly saveTree | | | `-- node-pre-gyp@0.10.0
1752 silly saveTree | | |   +-- detect-libc@1.0.3
1752 silly saveTree | | |   +-- mkdirp@0.5.1
1752 silly saveTree | | |   | `-- minimist@0.0.8
1752 silly saveTree | | |   +-- needle@2.2.0
1752 silly saveTree | | |   | +-- debug@2.6.9
1752 silly saveTree | | |   | | `-- ms@2.0.0
1752 silly saveTree | | |   | +-- iconv-lite@0.4.21
1752 silly saveTree | | |   | | `-- safer-buffer@2.1.2
1752 silly saveTree | | |   | `-- sax@1.2.4
1752 silly saveTree | | |   +-- nopt@4.0.1
1752 silly saveTree | | |   | +-- abbrev@1.1.1
1752 silly saveTree | | |   | `-- osenv@0.1.5
1752 silly saveTree | | |   |   +-- os-homedir@1.0.2
1752 silly saveTree | | |   |   `-- os-tmpdir@1.0.2
1752 silly saveTree | | |   +-- npm-packlist@1.1.10
1752 silly saveTree | | |   | +-- ignore-walk@3.0.1
1752 silly saveTree | | |   | | `-- minimatch@3.0.4
1752 silly saveTree | | |   | |   `-- brace-expansion@1.1.11
1752 silly saveTree | | |   | |     +-- balanced-match@1.0.0
1752 silly saveTree | | |   | |     `-- concat-map@0.0.1
1752 silly saveTree | | |   | `-- npm-bundled@1.0.3
1752 silly saveTree | | |   +-- npmlog@4.1.2
1752 silly saveTree | | |   | +-- are-we-there-yet@1.1.4
1752 silly saveTree | | |   | | +-- delegates@1.0.0
1752 silly saveTree | | |   | | `-- readable-stream@2.3.6
1752 silly saveTree | | |   | |   +-- core-util-is@1.0.2
1752 silly saveTree | | |   | |   +-- inherits@2.0.3
1752 silly saveTree | | |   | |   +-- isarray@1.0.0
1752 silly saveTree | | |   | |   +-- process-nextick-args@2.0.0
1752 silly saveTree | | |   | |   +-- safe-buffer@5.1.1
1752 silly saveTree | | |   | |   +-- string_decoder@1.1.1
1752 silly saveTree | | |   | |   `-- util-deprecate@1.0.2
1752 silly saveTree | | |   | +-- console-control-strings@1.1.0
1752 silly saveTree | | |   | +-- gauge@2.7.4
1752 silly saveTree | | |   | | +-- aproba@1.2.0
1752 silly saveTree | | |   | | +-- has-unicode@2.0.1
1752 silly saveTree | | |   | | +-- object-assign@4.1.1
1752 silly saveTree | | |   | | +-- signal-exit@3.0.2
1752 silly saveTree | | |   | | +-- string-width@1.0.2
1752 silly saveTree | | |   | | | +-- code-point-at@1.1.0
1752 silly saveTree | | |   | | | +-- is-fullwidth-code-point@1.0.0
1752 silly saveTree | | |   | | | | `-- number-is-nan@1.0.1
1752 silly saveTree | | |   | | | `-- strip-ansi@3.0.1
1752 silly saveTree | | |   | | |   `-- ansi-regex@2.1.1
1752 silly saveTree | | |   | | +-- strip-ansi@3.0.1
1752 silly saveTree | | |   | | `-- wide-align@1.1.2
1752 silly saveTree | | |   | `-- set-blocking@2.0.0
1752 silly saveTree | | |   +-- rc@1.2.7
1752 silly saveTree | | |   | +-- deep-extend@0.5.1
1752 silly saveTree | | |   | +-- ini@1.3.5
1752 silly saveTree | | |   | +-- minimist@1.2.0
1752 silly saveTree | | |   | `-- strip-json-comments@2.0.1
1752 silly saveTree | | |   +-- rimraf@2.6.2
1752 silly saveTree | | |   | `-- glob@7.1.2
1752 silly saveTree | | |   |   +-- fs.realpath@1.0.0
1752 silly saveTree | | |   |   +-- inflight@1.0.6
1752 silly saveTree | | |   |   | +-- once@1.4.0
1752 silly saveTree | | |   |   | | `-- wrappy@1.0.2
1752 silly saveTree | | |   |   | `-- wrappy@1.0.2
1752 silly saveTree | | |   |   +-- once@1.4.0
1752 silly saveTree | | |   |   `-- path-is-absolute@1.0.1
1752 silly saveTree | | |   +-- semver@5.5.0
1752 silly saveTree | | |   `-- tar@4.4.1
1752 silly saveTree | | |     +-- chownr@1.0.1
1752 silly saveTree | | |     +-- fs-minipass@1.2.5
1752 silly saveTree | | |     | `-- minipass@2.2.4
1752 silly saveTree | | |     |   `-- yallist@3.0.2
1752 silly saveTree | | |     +-- minipass@2.2.4
1752 silly saveTree | | |     +-- minizlib@1.1.0
1752 silly saveTree | | |     `-- yallist@3.0.2
1752 silly saveTree | | +-- glob-parent@2.0.0
1752 silly saveTree | | +-- inherits@2.0.3
1752 silly saveTree | | +-- is-binary-path@1.0.1
1752 silly saveTree | | | `-- binary-extensions@1.11.0
1752 silly saveTree | | +-- is-glob@2.0.1
1752 silly saveTree | | `-- readdirp@2.1.0
1752 silly saveTree | |   +-- graceful-fs@4.1.11
1752 silly saveTree | |   +-- readable-stream@2.3.6
1752 silly saveTree | |   | +-- core-util-is@1.0.2
1752 silly saveTree | |   | +-- process-nextick-args@2.0.0
1752 silly saveTree | |   | +-- safe-buffer@5.1.2
1752 silly saveTree | |   | +-- string_decoder@1.1.1
1752 silly saveTree | |   | `-- util-deprecate@1.0.2
1752 silly saveTree | |   `-- set-immediate-shim@1.0.1
1752 silly saveTree | +-- commander@2.15.1
1752 silly saveTree | +-- convert-source-map@1.5.1
1752 silly saveTree | +-- fs-readdir-recursive@1.1.0
1752 silly saveTree | +-- glob@7.1.2
1752 silly saveTree | | +-- fs.realpath@1.0.0
1752 silly saveTree | | +-- inflight@1.0.6
1752 silly saveTree | | | +-- once@1.4.0
1752 silly saveTree | | | | `-- wrappy@1.0.2
1752 silly saveTree | | | `-- wrappy@1.0.2
1752 silly saveTree | | `-- once@1.4.0
1752 silly saveTree | +-- lodash@4.17.10
1752 silly saveTree | +-- output-file-sync@1.1.2
1752 silly saveTree | | `-- object-assign@4.1.1
1752 silly saveTree | +-- path-is-absolute@1.0.1
1752 silly saveTree | +-- slash@1.0.0
1752 silly saveTree | +-- source-map@0.5.7
1752 silly saveTree | `-- v8flags@2.1.1
1752 silly saveTree |   `-- user-home@1.1.1
1752 silly saveTree +-- babel-preset-env@1.7.0
1752 silly saveTree | +-- babel-plugin-check-es2015-constants@6.22.0
1752 silly saveTree | +-- babel-plugin-syntax-trailing-function-commas@6.22.0
1752 silly saveTree | +-- babel-plugin-transform-async-to-generator@6.24.1
1752 silly saveTree | | +-- babel-helper-remap-async-to-generator@6.24.1
1752 silly saveTree | | | `-- babel-helper-function-name@6.24.1
1752 silly saveTree | | |   `-- babel-helper-get-function-arity@6.24.1
1752 silly saveTree | | `-- babel-plugin-syntax-async-functions@6.13.0
1752 silly saveTree | +-- babel-plugin-transform-es2015-arrow-functions@6.22.0
1752 silly saveTree | +-- babel-plugin-transform-es2015-block-scoped-functions@6.22.0
1752 silly saveTree | +-- babel-plugin-transform-es2015-block-scoping@6.26.0
1752 silly saveTree | +-- babel-plugin-transform-es2015-classes@6.24.1
1752 silly saveTree | | +-- babel-helper-define-map@6.26.0
1752 silly saveTree | | +-- babel-helper-optimise-call-expression@6.24.1
1752 silly saveTree | | `-- babel-helper-replace-supers@6.24.1
1752 silly saveTree | +-- babel-plugin-transform-es2015-computed-properties@6.24.1
1752 silly saveTree | +-- babel-plugin-transform-es2015-destructuring@6.23.0
1752 silly saveTree | +-- babel-plugin-transform-es2015-duplicate-keys@6.24.1
1752 silly saveTree | +-- babel-plugin-transform-es2015-for-of@6.23.0
1752 silly saveTree | +-- babel-plugin-transform-es2015-function-name@6.24.1
1752 silly saveTree | +-- babel-plugin-transform-es2015-literals@6.22.0
1752 silly saveTree | +-- babel-plugin-transform-es2015-modules-amd@6.24.1
1752 silly saveTree | | `-- babel-plugin-transform-es2015-modules-commonjs@6.26.2
1752 silly saveTree | |   `-- babel-plugin-transform-strict-mode@6.24.1
1752 silly saveTree | +-- babel-plugin-transform-es2015-modules-commonjs@6.26.2
1752 silly saveTree | +-- babel-plugin-transform-es2015-modules-systemjs@6.24.1
1752 silly saveTree | | `-- babel-helper-hoist-variables@6.24.1
1752 silly saveTree | +-- babel-plugin-transform-es2015-modules-umd@6.24.1
1752 silly saveTree | +-- babel-plugin-transform-es2015-object-super@6.24.1
1752 silly saveTree | +-- babel-plugin-transform-es2015-parameters@6.24.1
1752 silly saveTree | | `-- babel-helper-call-delegate@6.24.1
1752 silly saveTree | +-- babel-plugin-transform-es2015-shorthand-properties@6.24.1
1752 silly saveTree | +-- babel-plugin-transform-es2015-spread@6.22.0
1752 silly saveTree | +-- babel-plugin-transform-es2015-sticky-regex@6.24.1
1752 silly saveTree | | `-- babel-helper-regex@6.26.0
1752 silly saveTree | +-- babel-plugin-transform-es2015-template-literals@6.22.0
1752 silly saveTree | +-- babel-plugin-transform-es2015-typeof-symbol@6.23.0
1752 silly saveTree | +-- babel-plugin-transform-es2015-unicode-regex@6.24.1
1752 silly saveTree | | `-- regexpu-core@2.0.0
1752 silly saveTree | |   +-- regenerate@1.4.0
1752 silly saveTree | |   +-- regjsgen@0.2.0
1752 silly saveTree | |   `-- regjsparser@0.1.5
1752 silly saveTree | |     `-- jsesc@0.5.0
1752 silly saveTree | +-- babel-plugin-transform-exponentiation-operator@6.24.1
1752 silly saveTree | | +-- babel-helper-builder-binary-assignment-operator-visitor@6.24.1
1752 silly saveTree | | | `-- babel-helper-explode-assignable-expression@6.24.1
1752 silly saveTree | | `-- babel-plugin-syntax-exponentiation-operator@6.13.0
1752 silly saveTree | +-- babel-plugin-transform-regenerator@6.26.0
1752 silly saveTree | | `-- regenerator-transform@0.10.1
1752 silly saveTree | +-- browserslist@3.2.8
1752 silly saveTree | | +-- caniuse-lite@1.0.30000846
1752 silly saveTree | | `-- electron-to-chromium@1.3.48
1752 silly saveTree | `-- semver@5.3.0
1752 silly saveTree +-- babel-preset-react@6.24.1
1752 silly saveTree | +-- babel-plugin-syntax-jsx@6.18.0
1752 silly saveTree | +-- babel-plugin-transform-react-display-name@6.25.0
1752 silly saveTree | +-- babel-plugin-transform-react-jsx-self@6.22.0
1752 silly saveTree | +-- babel-plugin-transform-react-jsx-source@6.22.0
1752 silly saveTree | +-- babel-plugin-transform-react-jsx@6.24.1
1752 silly saveTree | | `-- babel-helper-builder-react-jsx@6.26.0
1752 silly saveTree | `-- babel-preset-flow@6.23.0
1752 silly saveTree |   `-- babel-plugin-transform-flow-strip-types@6.22.0
1752 silly saveTree |     `-- babel-plugin-syntax-flow@6.18.0
1752 silly saveTree +-- babel-preset-stage-0@6.24.1
1752 silly saveTree | +-- babel-plugin-transform-do-expressions@6.22.0
1752 silly saveTree | | `-- babel-plugin-syntax-do-expressions@6.13.0
1752 silly saveTree | +-- babel-plugin-transform-function-bind@6.22.0
1752 silly saveTree | | `-- babel-plugin-syntax-function-bind@6.13.0
1752 silly saveTree | `-- babel-preset-stage-1@6.24.1
1752 silly saveTree |   +-- babel-plugin-transform-class-constructor-call@6.24.1
1752 silly saveTree |   | `-- babel-plugin-syntax-class-constructor-call@6.18.0
1752 silly saveTree |   +-- babel-plugin-transform-export-extensions@6.22.0
1752 silly saveTree |   | `-- babel-plugin-syntax-export-extensions@6.13.0
1752 silly saveTree |   `-- babel-preset-stage-2@6.24.1
1752 silly saveTree |     +-- babel-plugin-syntax-dynamic-import@6.18.0
1752 silly saveTree |     +-- babel-plugin-transform-class-properties@6.24.1
1752 silly saveTree |     | `-- babel-plugin-syntax-class-properties@6.13.0
1752 silly saveTree |     +-- babel-plugin-transform-decorators@6.24.1
1752 silly saveTree |     | +-- babel-helper-explode-class@6.24.1
1752 silly saveTree |     | | `-- babel-helper-bindify-decorators@6.24.1
1752 silly saveTree |     | `-- babel-plugin-syntax-decorators@6.13.0
1752 silly saveTree |     `-- babel-preset-stage-3@6.24.1
1752 silly saveTree |       +-- babel-plugin-transform-async-generator-functions@6.24.1
1752 silly saveTree |       | `-- babel-plugin-syntax-async-generators@6.13.0
1752 silly saveTree |       `-- babel-plugin-transform-object-rest-spread@6.26.0
1752 silly saveTree |         `-- babel-plugin-syntax-object-rest-spread@6.13.0
1752 silly saveTree +-- electron-builder@20.15.1
1752 silly saveTree | +-- bluebird-lst@1.0.5
1752 silly saveTree | | `-- bluebird@3.5.1
1752 silly saveTree | +-- builder-util-runtime@4.2.1
1752 silly saveTree | | +-- debug@3.1.0
1752 silly saveTree | | +-- fs-extra-p@4.6.0
1752 silly saveTree | | | `-- fs-extra@6.0.1
1752 silly saveTree | | |   +-- jsonfile@4.0.0
1752 silly saveTree | | |   `-- universalify@0.1.1
1752 silly saveTree | | `-- sax@1.2.4
1752 silly saveTree | +-- builder-util@5.11.2
1752 silly saveTree | | +-- 7zip-bin@4.0.2
1752 silly saveTree | | +-- app-builder-bin@1.9.7
1752 silly saveTree | | +-- chalk@2.4.1
1752 silly saveTree | | | +-- ansi-styles@3.2.1
1752 silly saveTree | | | | `-- color-convert@1.9.1
1752 silly saveTree | | | |   `-- color-name@1.1.3
1752 silly saveTree | | | `-- supports-color@5.4.0
1752 silly saveTree | | |   `-- has-flag@3.0.0
1752 silly saveTree | | +-- debug@3.1.0
1752 silly saveTree | | +-- is-ci@1.1.0
1752 silly saveTree | | | `-- ci-info@1.1.3
1752 silly saveTree | | +-- js-yaml@3.11.0
1752 silly saveTree | | | +-- argparse@1.0.10
1752 silly saveTree | | | | `-- sprintf-js@1.0.3
1752 silly saveTree | | | `-- esprima@4.0.0
1752 silly saveTree | | +-- lazy-val@1.0.3
1752 silly saveTree | | +-- semver@5.5.0
1752 silly saveTree | | +-- source-map-support@0.5.6
1752 silly saveTree | | | +-- buffer-from@1.1.0
1752 silly saveTree | | | `-- source-map@0.6.1
1752 silly saveTree | | +-- stat-mode@0.2.2
1752 silly saveTree | | `-- temp-file@3.1.2
1752 silly saveTree | |   `-- async-exit-hook@2.0.1
1752 silly saveTree | +-- chalk@2.4.1
1752 silly saveTree | | +-- ansi-styles@3.2.1
1752 silly saveTree | | `-- supports-color@5.4.0
1752 silly saveTree | +-- dmg-builder@4.10.1
1752 silly saveTree | | +-- electron-builder-lib@20.14.7
1752 silly saveTree | | | +-- app-builder-bin@1.9.5
1752 silly saveTree | | | +-- builder-util@5.11.1
1752 silly saveTree | | | | +-- chalk@2.4.1
1752 silly saveTree | | | | | +-- ansi-styles@3.2.1
1752 silly saveTree | | | | | `-- supports-color@5.4.0
1752 silly saveTree | | | | +-- debug@3.1.0
1752 silly saveTree | | | | +-- semver@5.5.0
1752 silly saveTree | | | | `-- source-map-support@0.5.6
1752 silly saveTree | | | |   `-- source-map@0.6.1
1752 silly saveTree | | | +-- chromium-pickle-js@0.2.0
1752 silly saveTree | | | +-- debug@3.1.0
1752 silly saveTree | | | +-- ejs@2.6.1
1752 silly saveTree | | | +-- electron-osx-sign@0.4.10
1752 silly saveTree | | | | +-- compare-version@0.1.2
1752 silly saveTree | | | | +-- isbinaryfile@3.0.2
1752 silly saveTree | | | | +-- minimist@1.2.0
1752 silly saveTree | | | | `-- plist@2.1.0
1752 silly saveTree | | | |   +-- base64-js@1.2.0
1752 silly saveTree | | | |   +-- xmlbuilder@8.2.2
1752 silly saveTree | | | |   `-- xmldom@0.1.27
1752 silly saveTree | | | +-- electron-publish@20.14.6
1752 silly saveTree | | | | +-- chalk@2.4.1
1752 silly saveTree | | | | | +-- ansi-styles@3.2.1
1752 silly saveTree | | | | | `-- supports-color@5.4.0
1752 silly saveTree | | | | `-- mime@2.3.1
1752 silly saveTree | | | +-- hosted-git-info@2.6.0
1752 silly saveTree | | | +-- isbinaryfile@3.0.2
1752 silly saveTree | | | +-- normalize-package-data@2.4.0
1752 silly saveTree | | | | +-- is-builtin-module@1.0.0
1752 silly saveTree | | | | | `-- builtin-modules@1.1.1
1752 silly saveTree | | | | `-- validate-npm-package-license@3.0.3
1752 silly saveTree | | | |   +-- spdx-correct@3.0.0
1752 silly saveTree | | | |   | +-- spdx-expression-parse@3.0.0
1752 silly saveTree | | | |   | | +-- spdx-exceptions@2.1.0
1752 silly saveTree | | | |   | | `-- spdx-license-ids@3.0.0
1752 silly saveTree | | | |   | `-- spdx-license-ids@3.0.0
1752 silly saveTree | | | |   `-- spdx-expression-parse@3.0.0
1752 silly saveTree | | | +-- plist@3.0.1
1752 silly saveTree | | | | +-- base64-js@1.3.0
1752 silly saveTree | | | | `-- xmlbuilder@9.0.7
1752 silly saveTree | | | +-- read-config-file@3.0.1
1752 silly saveTree | | | | +-- ajv-keywords@3.2.0
1752 silly saveTree | | | | +-- ajv@6.5.0
1752 silly saveTree | | | | | +-- fast-deep-equal@2.0.1
1752 silly saveTree | | | | | +-- fast-json-stable-stringify@2.0.0
1752 silly saveTree | | | | | +-- json-schema-traverse@0.3.1
1752 silly saveTree | | | | | `-- uri-js@4.2.2
1752 silly saveTree | | | | |   `-- punycode@2.1.1
1752 silly saveTree | | | | +-- dotenv-expand@4.2.0
1752 silly saveTree | | | | +-- dotenv@5.0.1
1752 silly saveTree | | | | `-- json5@1.0.1
1752 silly saveTree | | | |   `-- minimist@1.2.0
1752 silly saveTree | | | +-- sanitize-filename@1.6.1
1752 silly saveTree | | | | `-- truncate-utf8-bytes@1.0.2
1752 silly saveTree | | | |   `-- utf8-byte-length@1.0.4
1752 silly saveTree | | | +-- semver@5.5.0
1752 silly saveTree | | | `-- stream-json@0.6.1
1752 silly saveTree | | |   `-- parser-toolkit@0.0.5
1752 silly saveTree | | +-- iconv-lite@0.4.23
1752 silly saveTree | | | `-- safer-buffer@2.1.2
1752 silly saveTree | | +-- parse-color@1.0.0
1752 silly saveTree | | | `-- color-convert@0.5.3
1752 silly saveTree | | `-- sanitize-filename@1.6.1
1752 silly saveTree | +-- electron-builder-lib@20.15.1
1752 silly saveTree | | +-- debug@3.1.0
1752 silly saveTree | | +-- electron-publish@20.15.0
1752 silly saveTree | | | `-- chalk@2.4.1
1752 silly saveTree | | |   +-- ansi-styles@3.2.1
1752 silly saveTree | | |   `-- supports-color@5.4.0
1752 silly saveTree | | `-- semver@5.5.0
1752 silly saveTree | +-- electron-download-tf@4.3.4
1752 silly saveTree | | +-- debug@3.1.0
1752 silly saveTree | | +-- env-paths@1.0.0
1752 silly saveTree | | +-- fs-extra@4.0.3
1752 silly saveTree | | +-- minimist@1.2.0
1752 silly saveTree | | +-- nugget@2.0.1
1752 silly saveTree | | | +-- minimist@1.2.0
1752 silly saveTree | | | +-- pretty-bytes@1.0.4
1752 silly saveTree | | | | +-- get-stdin@4.0.1
1752 silly saveTree | | | | `-- meow@3.7.0
1752 silly saveTree | | | |   +-- camelcase-keys@2.1.0
1752 silly saveTree | | | |   | +-- camelcase@2.1.1
1752 silly saveTree | | | |   | `-- map-obj@1.0.1
1752 silly saveTree | | | |   +-- decamelize@1.2.0
1752 silly saveTree | | | |   +-- loud-rejection@1.6.0
1752 silly saveTree | | | |   | +-- currently-unhandled@0.4.1
1752 silly saveTree | | | |   | | `-- array-find-index@1.0.2
1752 silly saveTree | | | |   | `-- signal-exit@3.0.2
1752 silly saveTree | | | |   +-- map-obj@1.0.1
1752 silly saveTree | | | |   +-- minimist@1.2.0
1752 silly saveTree | | | |   +-- read-pkg-up@1.0.1
1752 silly saveTree | | | |   | +-- find-up@1.1.2
1752 silly saveTree | | | |   | | +-- path-exists@2.1.0
1752 silly saveTree | | | |   | | | `-- pinkie-promise@2.0.1
1752 silly saveTree | | | |   | | |   `-- pinkie@2.0.4
1752 silly saveTree | | | |   | | `-- pinkie-promise@2.0.1
1752 silly saveTree | | | |   | `-- read-pkg@1.1.0
1752 silly saveTree | | | |   |   +-- load-json-file@1.1.0
1752 silly saveTree | | | |   |   | +-- parse-json@2.2.0
1752 silly saveTree | | | |   |   | | `-- error-ex@1.3.1
1752 silly saveTree | | | |   |   | |   `-- is-arrayish@0.2.1
1752 silly saveTree | | | |   |   | +-- pify@2.3.0
1752 silly saveTree | | | |   |   | `-- strip-bom@2.0.0
1752 silly saveTree | | | |   |   |   `-- is-utf8@0.2.1
1752 silly saveTree | | | |   |   `-- path-type@1.1.0
1752 silly saveTree | | | |   +-- redent@1.0.0
1752 silly saveTree | | | |   | +-- indent-string@2.1.0
1752 silly saveTree | | | |   | `-- strip-indent@1.0.1
1752 silly saveTree | | | |   `-- trim-newlines@1.0.0
1752 silly saveTree | | | +-- progress-stream@1.2.0
1752 silly saveTree | | | | +-- speedometer@0.1.4
1752 silly saveTree | | | | `-- through2@0.2.3
1752 silly saveTree | | | |   +-- readable-stream@1.1.14
1752 silly saveTree | | | |   | +-- isarray@0.0.1
1752 silly saveTree | | | |   | `-- string_decoder@0.10.31
1752 silly saveTree | | | |   `-- xtend@2.1.2
1752 silly saveTree | | | |     `-- object-keys@0.4.0
1752 silly saveTree | | | +-- request@2.87.0
1752 silly saveTree | | | | +-- aws-sign2@0.7.0
1752 silly saveTree | | | | +-- aws4@1.7.0
1752 silly saveTree | | | | +-- caseless@0.12.0
1752 silly saveTree | | | | +-- combined-stream@1.0.6
1752 silly saveTree | | | | | `-- delayed-stream@1.0.0
1752 silly saveTree | | | | +-- extend@3.0.1
1752 silly saveTree | | | | +-- forever-agent@0.6.1
1752 silly saveTree | | | | +-- form-data@2.3.2
1752 silly saveTree | | | | | +-- asynckit@0.4.0
1752 silly saveTree | | | | | `-- mime-types@2.1.18
1752 silly saveTree | | | | |   `-- mime-db@1.33.0
1752 silly saveTree | | | | +-- har-validator@5.0.3
1752 silly saveTree | | | | | +-- ajv@5.5.2
1752 silly saveTree | | | | | | +-- co@4.6.0
1752 silly saveTree | | | | | | `-- fast-deep-equal@1.1.0
1752 silly saveTree | | | | | `-- har-schema@2.0.0
1752 silly saveTree | | | | +-- http-signature@1.2.0
1752 silly saveTree | | | | | +-- assert-plus@1.0.0
1752 silly saveTree | | | | | +-- jsprim@1.4.1
1752 silly saveTree | | | | | | +-- extsprintf@1.3.0
1752 silly saveTree | | | | | | +-- json-schema@0.2.3
1752 silly saveTree | | | | | | `-- verror@1.10.0
1752 silly saveTree | | | | | `-- sshpk@1.14.1
1752 silly saveTree | | | | |   +-- asn1@0.2.3
1752 silly saveTree | | | | |   +-- bcrypt-pbkdf@1.0.1
1752 silly saveTree | | | | |   | `-- tweetnacl@0.14.5
1752 silly saveTree | | | | |   +-- dashdash@1.14.1
1752 silly saveTree | | | | |   +-- ecc-jsbn@0.1.1
1752 silly saveTree | | | | |   | `-- jsbn@0.1.1
1752 silly saveTree | | | | |   +-- getpass@0.1.7
1752 silly saveTree | | | | |   +-- jsbn@0.1.1
1752 silly saveTree | | | | |   `-- tweetnacl@0.14.5
1752 silly saveTree | | | | +-- is-typedarray@1.0.0
1752 silly saveTree | | | | +-- isstream@0.1.2
1752 silly saveTree | | | | +-- json-stringify-safe@5.0.1
1752 silly saveTree | | | | +-- mime-types@2.1.18
1752 silly saveTree | | | | +-- oauth-sign@0.8.2
1752 silly saveTree | | | | +-- performance-now@2.1.0
1752 silly saveTree | | | | +-- qs@6.5.2
1752 silly saveTree | | | | +-- tough-cookie@2.3.4
1752 silly saveTree | | | | | `-- punycode@1.4.1
1752 silly saveTree | | | | +-- tunnel-agent@0.6.0
1752 silly saveTree | | | | `-- uuid@3.2.1
1752 silly saveTree | | | +-- single-line-log@1.1.2
1752 silly saveTree | | | | `-- string-width@1.0.2
1752 silly saveTree | | | |   +-- code-point-at@1.1.0
1752 silly saveTree | | | |   `-- is-fullwidth-code-point@1.0.0
1752 silly saveTree | | | `-- throttleit@0.0.2
1752 silly saveTree | | +-- path-exists@3.0.0
1752 silly saveTree | | +-- rc@1.2.8
1752 silly saveTree | | | +-- deep-extend@0.6.0
1752 silly saveTree | | | +-- ini@1.3.5
1752 silly saveTree | | | +-- minimist@1.2.0
1752 silly saveTree | | | `-- strip-json-comments@2.0.1
1752 silly saveTree | | +-- semver@5.5.0
1752 silly saveTree | | `-- sumchecker@2.0.2
1752 silly saveTree | +-- fs-extra-p@4.6.0
1752 silly saveTree | +-- is-ci@1.1.0
1752 silly saveTree | +-- lazy-val@1.0.3
1752 silly saveTree | +-- read-config-file@3.0.1
1752 silly saveTree | +-- sanitize-filename@1.6.1
1752 silly saveTree | +-- update-notifier@2.5.0
1752 silly saveTree | | +-- boxen@1.3.0
1752 silly saveTree | | | +-- ansi-align@2.0.0
1752 silly saveTree | | | | `-- string-width@2.1.1
1752 silly saveTree | | | |   +-- is-fullwidth-code-point@2.0.0
1752 silly saveTree | | | |   `-- strip-ansi@4.0.0
1752 silly saveTree | | | |     `-- ansi-regex@3.0.0
1752 silly saveTree | | | +-- camelcase@4.1.0
1752 silly saveTree | | | +-- chalk@2.4.1
1752 silly saveTree | | | | +-- ansi-styles@3.2.1
1752 silly saveTree | | | | `-- supports-color@5.4.0
1752 silly saveTree | | | +-- cli-boxes@1.0.0
1752 silly saveTree | | | +-- string-width@2.1.1
1752 silly saveTree | | | | +-- is-fullwidth-code-point@2.0.0
1752 silly saveTree | | | | `-- strip-ansi@4.0.0
1752 silly saveTree | | | |   `-- ansi-regex@3.0.0
1752 silly saveTree | | | +-- term-size@1.2.0
1752 silly saveTree | | | | `-- execa@0.7.0
1752 silly saveTree | | | |   +-- cross-spawn@5.1.0
1752 silly saveTree | | | |   | +-- lru-cache@4.1.3
1752 silly saveTree | | | |   | | +-- pseudomap@1.0.2
1752 silly saveTree | | | |   | | `-- yallist@2.1.2
1752 silly saveTree | | | |   | +-- shebang-command@1.2.0
1752 silly saveTree | | | |   | | `-- shebang-regex@1.0.0
1752 silly saveTree | | | |   | `-- which@1.3.1
1752 silly saveTree | | | |   |   `-- isexe@2.0.0
1752 silly saveTree | | | |   +-- get-stream@3.0.0
1752 silly saveTree | | | |   +-- is-stream@1.1.0
1752 silly saveTree | | | |   +-- npm-run-path@2.0.2
1752 silly saveTree | | | |   | `-- path-key@2.0.1
1752 silly saveTree | | | |   +-- p-finally@1.0.0
1752 silly saveTree | | | |   `-- strip-eof@1.0.0
1752 silly saveTree | | | `-- widest-line@2.0.0
1752 silly saveTree | | |   `-- string-width@2.1.1
1752 silly saveTree | | |     +-- is-fullwidth-code-point@2.0.0
1752 silly saveTree | | |     `-- strip-ansi@4.0.0
1752 silly saveTree | | |       `-- ansi-regex@3.0.0
1752 silly saveTree | | +-- chalk@2.4.1
1752 silly saveTree | | | +-- ansi-styles@3.2.1
1752 silly saveTree | | | `-- supports-color@5.4.0
1752 silly saveTree | | +-- configstore@3.1.2
1752 silly saveTree | | | +-- dot-prop@4.2.0
1752 silly saveTree | | | | `-- is-obj@1.0.1
1752 silly saveTree | | | +-- make-dir@1.3.0
1752 silly saveTree | | | | `-- pify@3.0.0
1752 silly saveTree | | | +-- unique-string@1.0.0
1752 silly saveTree | | | | `-- crypto-random-string@1.0.0
1752 silly saveTree | | | +-- write-file-atomic@2.3.0
1752 silly saveTree | | | | `-- imurmurhash@0.1.4
1752 silly saveTree | | | `-- xdg-basedir@3.0.0
1752 silly saveTree | | +-- import-lazy@2.1.0
1752 silly saveTree | | +-- is-installed-globally@0.1.0
1752 silly saveTree | | | +-- global-dirs@0.1.1
1752 silly saveTree | | | `-- is-path-inside@1.0.1
1752 silly saveTree | | |   `-- path-is-inside@1.0.2
1752 silly saveTree | | +-- is-npm@1.0.0
1752 silly saveTree | | +-- latest-version@3.1.0
1752 silly saveTree | | | `-- package-json@4.0.1
1752 silly saveTree | | |   +-- got@6.7.1
1752 silly saveTree | | |   | +-- create-error-class@3.0.2
1752 silly saveTree | | |   | | `-- capture-stack-trace@1.0.0
1752 silly saveTree | | |   | +-- duplexer3@0.1.4
1752 silly saveTree | | |   | +-- is-redirect@1.0.0
1752 silly saveTree | | |   | +-- is-retry-allowed@1.1.0
1752 silly saveTree | | |   | +-- lowercase-keys@1.0.1
1752 silly saveTree | | |   | +-- timed-out@4.0.1
1752 silly saveTree | | |   | +-- unzip-response@2.0.1
1752 silly saveTree | | |   | `-- url-parse-lax@1.0.0
1752 silly saveTree | | |   |   `-- prepend-http@1.0.4
1752 silly saveTree | | |   +-- registry-auth-token@3.3.2
1752 silly saveTree | | |   `-- registry-url@3.1.0
1752 silly saveTree | | +-- semver-diff@2.1.0
1752 silly saveTree | | `-- xdg-basedir@3.0.0
1752 silly saveTree | `-- yargs@11.0.0
1752 silly saveTree |   +-- cliui@4.1.0
1752 silly saveTree |   | +-- string-width@2.1.1
1752 silly saveTree |   | | +-- is-fullwidth-code-point@2.0.0
1752 silly saveTree |   | | `-- strip-ansi@4.0.0
1752 silly saveTree |   | |   `-- ansi-regex@3.0.0
1752 silly saveTree |   | +-- strip-ansi@4.0.0
1752 silly saveTree |   | `-- wrap-ansi@2.1.0
1752 silly saveTree |   +-- find-up@2.1.0
1752 silly saveTree |   | `-- locate-path@2.0.0
1752 silly saveTree |   |   `-- p-locate@2.0.0
1752 silly saveTree |   |     `-- p-limit@1.2.0
1752 silly saveTree |   |       `-- p-try@1.0.0
1752 silly saveTree |   +-- get-caller-file@1.0.2
1752 silly saveTree |   +-- os-locale@2.1.0
1752 silly saveTree |   | +-- lcid@1.0.0
1752 silly saveTree |   | | `-- invert-kv@1.0.0
1752 silly saveTree |   | `-- mem@1.1.0
1752 silly saveTree |   |   `-- mimic-fn@1.2.0
1752 silly saveTree |   +-- require-directory@2.1.1
1752 silly saveTree |   +-- require-main-filename@1.0.1
1752 silly saveTree |   +-- set-blocking@2.0.0
1752 silly saveTree |   +-- string-width@2.1.1
1752 silly saveTree |   | +-- is-fullwidth-code-point@2.0.0
1752 silly saveTree |   | `-- strip-ansi@4.0.0
1752 silly saveTree |   |   `-- ansi-regex@3.0.0
1752 silly saveTree |   +-- which-module@2.0.0
1752 silly saveTree |   +-- y18n@3.2.1
1752 silly saveTree |   `-- yargs-parser@9.0.2
1752 silly saveTree |     `-- camelcase@4.1.0
1752 silly saveTree `-- proton-native@1.1.5
1752 silly saveTree   +-- color@3.0.0
1752 silly saveTree   | `-- color-string@1.5.2
1752 silly saveTree   |   `-- simple-swizzle@0.2.2
1752 silly saveTree   |     `-- is-arrayish@0.3.1
1752 silly saveTree   +-- fbjs@0.8.16
1752 silly saveTree   | +-- core-js@1.2.7
1752 silly saveTree   | +-- isomorphic-fetch@2.2.1
1752 silly saveTree   | | +-- node-fetch@1.7.3
1752 silly saveTree   | | | `-- encoding@0.1.12
1752 silly saveTree   | | `-- whatwg-fetch@2.0.4
1752 silly saveTree   | +-- promise@7.3.1
1752 silly saveTree   | | `-- asap@2.0.6
1752 silly saveTree   | +-- setimmediate@1.0.5
1752 silly saveTree   | `-- ua-parser-js@0.7.18
1752 silly saveTree   +-- libui-node@0.2.0
1752 silly saveTree   | +-- @mischnic/async-hooks@0.0.4
1752 silly saveTree   | | `-- es6-shim@0.35.3
1752 silly saveTree   | +-- autogypi@0.2.2
1752 silly saveTree   | | +-- commander@2.9.0
1752 silly saveTree   | | | `-- graceful-readlink@1.0.1
1752 silly saveTree   | | `-- resolve@1.1.7
1752 silly saveTree   | +-- libui-download@1.1.0
1752 silly saveTree   | | +-- home-path@1.0.6
1752 silly saveTree   | | +-- mv@2.1.1
1752 silly saveTree   | | | +-- ncp@2.0.0
1752 silly saveTree   | | | `-- rimraf@2.4.5
1752 silly saveTree   | | |   `-- glob@6.0.4
1752 silly saveTree   | | +-- regenerator-runtime@0.9.6
1752 silly saveTree   | | `-- tar@4.4.4
1752 silly saveTree   | |   +-- chownr@1.0.1
1752 silly saveTree   | |   +-- fs-minipass@1.2.5
1752 silly saveTree   | |   | `-- minipass@2.3.3
1752 silly saveTree   | |   |   `-- yallist@3.0.2
1752 silly saveTree   | |   +-- minipass@2.3.3
1752 silly saveTree   | |   +-- minizlib@1.1.0
1752 silly saveTree   | |   `-- yallist@3.0.2
1752 silly saveTree   | +-- nbind@0.3.15
1752 silly saveTree   | | `-- emscripten-library-decorator@0.2.2
1752 silly saveTree   | `-- node-gyp@3.6.2
1752 silly saveTree   |   +-- fstream@1.0.11
1752 silly saveTree   |   +-- glob@7.1.2
1752 silly saveTree   |   +-- nopt@3.0.6
1752 silly saveTree   |   | `-- abbrev@1.1.1
1752 silly saveTree   |   +-- npmlog@4.1.2
1752 silly saveTree   |   | +-- are-we-there-yet@1.1.5
1752 silly saveTree   |   | | `-- delegates@1.0.0
1752 silly saveTree   |   | +-- console-control-strings@1.1.0
1752 silly saveTree   |   | `-- gauge@2.7.4
1752 silly saveTree   |   |   +-- aproba@1.2.0
1752 silly saveTree   |   |   +-- has-unicode@2.0.1
1752 silly saveTree   |   |   `-- wide-align@1.1.3
1752 silly saveTree   |   +-- osenv@0.1.5
1752 silly saveTree   |   `-- tar@2.2.1
1752 silly saveTree   |     `-- block-stream@0.0.9
1752 silly saveTree   +-- prop-types@15.6.1
1752 silly saveTree   +-- react-reconciler@0.7.0
1752 silly saveTree   +-- react@16.4.0
1752 silly saveTree   `-- svg-path-parser@1.1.0
1753 warn ajv-keywords@3.2.0 requires a peer of ajv@^6.0.0 but none is installed. You must install peer dependencies yourself.
1754 warn optional SKIPPING OPTIONAL DEPENDENCY: fsevents@1.2.4 (node_modules\fsevents):
1755 warn notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@1.2.4: wanted {"os":"darwin","arch":"any"} (current: {"os":"win32","arch":"x64"})
1756 verbose notsup SKIPPING OPTIONAL DEPENDENCY: Valid OS:    darwin
1756 verbose notsup SKIPPING OPTIONAL DEPENDENCY: Valid Arch:  any
1756 verbose notsup SKIPPING OPTIONAL DEPENDENCY: Actual OS:   win32
1756 verbose notsup SKIPPING OPTIONAL DEPENDENCY: Actual Arch: x64
1757 verbose stack Error: libui-node@0.2.0 install: `libui-download && autogypi && npm run build`
1757 verbose stack Exit status 1
1757 verbose stack     at EventEmitter.<anonymous> (C:\Users\angel\AppData\Roaming\nvm\v8.11.1\node_modules\npm\node_modules\npm-lifecycle\index.js:285:16)
1757 verbose stack     at emitTwo (events.js:126:13)
1757 verbose stack     at EventEmitter.emit (events.js:214:7)
1757 verbose stack     at ChildProcess.<anonymous> (C:\Users\angel\AppData\Roaming\nvm\v8.11.1\node_modules\npm\node_modules\npm-lifecycle\lib\spawn.js:55:14)
1757 verbose stack     at emitTwo (events.js:126:13)
1757 verbose stack     at ChildProcess.emit (events.js:214:7)
1757 verbose stack     at maybeClose (internal/child_process.js:925:16)
1757 verbose stack     at Process.ChildProcess._handle.onexit (internal/child_process.js:209:5)
1758 verbose pkgid libui-node@0.2.0
1759 verbose cwd C:\Users\angel\Desktop\Github\Proton\my-app
1760 verbose Windows_NT 6.3.9600
1761 verbose argv "C:\\Program Files\\nodejs\\node.exe" "C:\\Program Files\\nodejs\\node_modules\\npm\\bin\\npm-cli.js" "install"
1762 verbose node v8.11.1
1763 verbose npm  v5.6.0
1764 error code ELIFECYCLE
1765 error errno 1
1766 error libui-node@0.2.0 install: `libui-download && autogypi && npm run build`
1766 error Exit status 1
1767 error Failed at the libui-node@0.2.0 install script.
1767 error This is probably not a problem with npm. There is likely additional logging output above.
1768 verbose exit [ 1, true ]

@parro-it
Copy link
Contributor

@parro-it : I can not, can I contact you in private?

Yes, you can write me at andrea@parro.it
Sorry for the late response, I someway missed your comment

@Angelk90
Copy link

@parro-it : I was trying to send you a message on Twitter by chance you set that I can not send you messages?

@parro-it
Copy link
Contributor

No, I don't think so... what's your twitter nickname?
Just drop me a short e-mail if you can't reach me there...

@kusti8
Copy link
Owner

kusti8 commented May 30, 2018

Continued in #150.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

5 participants