Page MenuHomePhabricator
Paste P8366

499597/17
ArchivedPublic

Authored by zeljkofilipin on Apr 8 2019, 12:19 PM.
Tags
None
Referenced Files
F28595110: raw.txt
Apr 8 2019, 12:50 PM
F28595104: raw.txt
Apr 8 2019, 12:47 PM
F28595014: raw.txt
Apr 8 2019, 12:19 PM
Subscribers
None
~/Documents/gerrit$ tree -d -L 4
...
├── mediawiki
│   ├── core
...
│   │   ├── services
│   │   │   ├── parsoid
│   │   │   └── restbase
...
└── releng
└── local-charts
...
~/Documents/gerrit/releng/local-charts$ git review -d 499597
Downloading refs/changes/97/499597/17 from gerrit
Switched to branch "review/jeena_huneidi/499597"
~/Documents/gerrit/releng/local-charts$ ./mac_prereq.sh
Ensuring homebrew caskroom is installed...
Updating Homebrew...
==> Auto-updated Homebrew!
Updated 3 taps (homebrew/core, homebrew/cask and caskroom/cask).
==> Updated Formulae
dita-ot gitbucket libxlsxwriter php
doitlive gobject-introspection pacapt
Installing docker for mac and minikube...
Warning: Cask 'docker' is already installed.
To re-install docker, run:
brew cask reinstall docker
Warning: Cask 'minikube' is already installed.
To re-install minikube, run:
brew cask reinstall minikube
Installing hyperkit and helm...
Warning: docker-machine-driver-hyperkit 1.0.0 is already installed and up-to-date
To reinstall 1.0.0, run `brew reinstall docker-machine-driver-hyperkit`
Warning: hyperkit 0.20180403 is already installed and up-to-date
To reinstall 0.20180403, run `brew reinstall hyperkit`
Warning: kubernetes-helm 2.13.1 is already installed and up-to-date
To reinstall 2.13.1, run `brew reinstall kubernetes-helm`
Giving hyperkit driver superuser privileges...
Password:
Making /usr/local/opt/docker-machine-driver-hyperkit/bin/docker-machine-driver-hyperkit setuid...Making launchd start docker now and on log-in...
Service `docker-machine` already started, use `brew services restart docker-machine` to restart.
Making hyperkit the default VM driver...
⚠️ These changes will take effect upon a minikube delete and then a minikube start
~/Documents/gerrit/releng/local-charts$ minikube delete
🔥 Deleting "minikube" from hyperkit ...
💔 The "minikube" cluster has been deleted.
~/Documents/gerrit/releng/local-charts$ cat values.yaml
# Default values for localdev.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
global:
# Set the mediawikiServer address below if using an external mediawiki server
#mediawikiServer: mediawiki
mediawikiPort: &mediawikiPort 8080
# Set the parsoidServer address below if using a separately deployed parsoid server
# Example: "192.168.64.1" or "irreverant-meerkat-parsoid"
#parsoidServer: "your server address"
parsoidPort: &parsoidPort 8081
# Set the restbaseServer address below if using a separately deployed restbase server
# Example: "irreverent-meerkat-restbase"
#restbaseServer: "your sever address"
# Set restbaseExternal if your restbase server is not running in minikube
#restbaseExternal: true
restbasePort: &restbasePort 7231
restbaseNodePort: &restbaseNodePort 31327
# Set this if using a separately deployed parsoid or restbase server
#domain: "your parsoid or restbase domain"
# Set the dbServer address below if you are using an external database or one from another release
# Example: "192.168.64.1" or "irreverent-meerkat-mariadb"
#dbServer: &dbServer "my external db server address"
dbPassword: &dbPassword "password"
dbName: &dbName "my_wiki"
enabled:
mariadb: true
mediawiki: true
parsoid: true
restbase: true
mariadb:
rootUser:
password: *dbPassword
db:
name: *dbName
mediawiki:
image:
repository:
tag: mediawiki
pullPolicy: Never
# set to true if you want to mount your local files (so you can edit locally)
mountLocalFiles: false
volumes:
- name: hostvol
hostPath:
path: /home/docker/projects/core
volumeMounts:
- name: hostvol
mountPath: /var/www/html
service:
port: *mediawikiPort
# Uncomment the following if you want to set the value of the nodePort.
# This would be useful if running multiple mediawikis on the same cluster.
# The range of valid ports is 30000-32767
# nodePort: 30000
# Uncomment the following if using an external db
#dbServer: *dbServer
env:
- name: wikiName
value: "My Wiki"
- name: wikiAdmin
value: "admin"
- name: wikiAdminPassword
value: "adminpass"
- name: dbName
value: *dbName
- name: dbPassword
value: *dbPassword
parsoid:
image:
repository:
tag: parsoid
pullPolicy: Never
# set to true if you want to mount your local files (so you can edit locally)
mountLocalFiles: false
volumes:
- name: hostvol
hostPath:
path: /home/docker/projects/parsoid
volumeMounts:
- name: hostvol
mountPath: /usr/src/app
service:
port: *parsoidPort
restbase:
image:
repository:
tag: restbase
pullPolicy: Never
# set to true if you want to mount your local files (so you can edit locally)
mountLocalFiles: false
volumes:
- name: hostvol
hostPath:
path: /home/docker/projects/restbase
volumeMounts:
- name: hostvol
mountPath: /usr/src/app
# Do not comment these port definitions. They are used by the mediawiki chart
service:
port: *restbasePort
nodePort: *restbaseNodePort
~/Documents/gerrit/releng/local-charts$ minikube start
😄 minikube v1.0.0 on darwin (amd64)
🤹 Downloading Kubernetes v1.14.0 images in the background ...
🔥 Creating hyperkit VM (CPUs=2, Memory=2048MB, Disk=20000MB) ...
📶 "minikube" IP address is 192.168.64.3
🐳 Configuring Docker as the container runtime ...
🐳 Version of container runtime is 18.06.2-ce
⌛ Waiting for image downloads to complete ...
✨ Preparing Kubernetes environment ...
🚜 Pulling images required by Kubernetes v1.14.0 ...
🚀 Launching Kubernetes v1.14.0 using kubeadm ...
⌛ Waiting for pods: apiserver proxy etcd scheduler controller dns
🔑 Configuring cluster permissions ...
🤔 Verifying component health .....
💗 kubectl is now configured to use "minikube"
🏄 Done! Thank you for using minikube!
~/Documents/gerrit/releng/local-charts$ helm init
$HELM_HOME has been configured at /Users/z/.helm.
Tiller (the Helm server-side component) has been installed into your Kubernetes Cluster.
Please note: by default, Tiller is deployed with an insecure 'allow unauthenticated users' policy.
To prevent this, run `helm init` with the --tiller-tls-verify flag.
For more information on securing your installation see: https://docs.helm.sh/using_helm/#securing-your-helm-installation
Happy Helming!
~/Documents/gerrit/releng/local-charts$ eval $(minikube docker-env)
~/Documents/gerrit/releng/local-charts$ cat ~/Documents/gerrit/mediawiki/core/LocalSettings.php
<?php
require_once __DIR__ . '/../../config/LocalSettings.php';
~/Documents/gerrit/releng/local-charts$ cat ~/Documents/gerrit/mediawiki/core/Dockerfile
FROM php:7.2-apache
RUN docker-php-ext-install mysqli pdo pdo_mysql
RUN groupadd -o -g "65533" -r "somebody" && useradd -o -m -d "/home/somebody" -r -g "somebody" -u "65533" "somebody" && mkdir -p "/var/www/html" && chown "65533":"65533" "/var/www/html"
WORKDIR /var/www/html/
COPY --chown=65533:65533 [".", "."]
USER somebody
RUN php composer.phar install
USER root
~/Documents/gerrit/releng/local-charts$ cat ~/Documents/gerrit/mediawiki/core/LocalSettings.php
<?php
require_once __DIR__ . '/../../config/LocalSettings.php';
~/Documents/gerrit/releng/local-charts$ cat ~/Documents/gerrit/mediawiki/core/Dockerfile
FROM php:7.2-apache
RUN docker-php-ext-install mysqli pdo pdo_mysql
RUN groupadd -o -g "65533" -r "somebody" && useradd -o -m -d "/home/somebody" -r -g "somebody" -u "65533" "somebody" && mkdir -p "/var/www/html" && chown "65533":"65533" "/var/www/html"
WORKDIR /var/www/html/
COPY --chown=65533:65533 [".", "."]
USER somebody
RUN php composer.phar install
USER root
~/Documents/gerrit/releng/local-charts$ cd ~/Documents/gerrit/mediawiki/core/
~/Documents/gerrit/mediawiki/core$ docker build -t mediawiki .
Sending build context to Docker daemon 542.6MB
Step 1/8 : FROM php:7.2-apache
7.2-apache: Pulling from library/php
27833a3ba0a5: Pull complete
2d79f6773a3c: Pull complete
f5dd9a448b82: Pull complete
95719e57e42b: Pull complete
cc75e951030f: Pull complete
78873f480bce: Pull complete
1b14116a29a2: Pull complete
887fc426d9b4: Pull complete
e8a2a7e68e47: Pull complete
44116bd4b499: Pull complete
5a7ed133cf7c: Pull complete
a0cc2e7ce3b9: Pull complete
3ea943f2a6e6: Pull complete
Digest: sha256:249f28517d12ccc89cc5e8ec6f661cab8da6c98f5bfcf1baf4da5874142fd8ad
Status: Downloaded newer image for php:7.2-apache
---> b98367bdaf03
Step 2/8 : RUN docker-php-ext-install mysqli pdo pdo_mysql
---> Running in 9f84413bdbed
Configuring for:
PHP Api Version: 20170718
Zend Module Api No: 20170718
Zend Extension Api No: 320170718
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for a sed that does not truncate output... /bin/sed
checking for cc... cc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether cc accepts -g... yes
checking for cc option to accept ISO C89... none needed
checking how to run the C preprocessor... cc -E
checking for icc... no
checking for suncc... no
checking whether cc understands -c and -o together... yes
checking for system library directory... lib
checking if compiler supports -R... no
checking if compiler supports -Wl,-rpath,... yes
checking build system type... x86_64-pc-linux-gnu
checking host system type... x86_64-pc-linux-gnu
checking target system type... x86_64-pc-linux-gnu
checking for PHP prefix... /usr/local
checking for PHP includes... -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib
checking for PHP extension directory... /usr/local/lib/php/extensions/no-debug-non-zts-20170718
checking for PHP installed headers prefix... /usr/local/include/php
checking if debug is enabled... no
checking if zts is enabled... no
checking for re2c... re2c
checking for re2c version... 0.16 (ok)
checking for gawk... no
checking for nawk... nawk
checking if nawk is broken... no
checking for MySQLi support... yes, shared
checking whether to enable embedded MySQLi support... no
checking for specified location of the MySQL UNIX socket... no
checking for MySQL UNIX socket location... no
checking for ld used by cc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for /usr/bin/ld option to reload object files... -r
checking for BSD-compatible nm... /usr/bin/nm -B
checking whether ln -s works... yes
checking how to recognize dependent libraries... pass_all
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking dlfcn.h usability... yes
checking dlfcn.h presence... yes
checking for dlfcn.h... yes
checking the maximum length of command line arguments... 1572864
checking command to parse /usr/bin/nm -B output from cc object... ok
checking for objdir... .libs
checking for ar... ar
checking for ranlib... ranlib
checking for strip... strip
checking if cc supports -fno-rtti -fno-exceptions... no
checking for cc option to produce PIC... -fPIC
checking if cc PIC flag -fPIC works... yes
checking if cc static flag -static works... yes
checking if cc supports -c -o file.o... yes
checking whether the cc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... no
creating libtool
appending configuration tag "CXX" to libtool
configure: creating ./config.status
config.status: creating config.h
/bin/bash /usr/src/php/ext/mysqli/libtool --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/mysqli -DPHP_ATOM_INC -I/usr/src/php/ext/mysqli/include -I/usr/src/php/ext/mysqli/main -I/usr/src/php/ext/mysqli -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/mysqli/mysqli.c -o mysqli.lo
mkdir .libs
cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/mysqli -DPHP_ATOM_INC -I/usr/src/php/ext/mysqli/include -I/usr/src/php/ext/mysqli/main -I/usr/src/php/ext/mysqli -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/mysqli/mysqli.c -fPIC -DPIC -o .libs/mysqli.o
/bin/bash /usr/src/php/ext/mysqli/libtool --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/mysqli -DPHP_ATOM_INC -I/usr/src/php/ext/mysqli/include -I/usr/src/php/ext/mysqli/main -I/usr/src/php/ext/mysqli -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/mysqli/mysqli_api.c -o mysqli_api.lo
cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/mysqli -DPHP_ATOM_INC -I/usr/src/php/ext/mysqli/include -I/usr/src/php/ext/mysqli/main -I/usr/src/php/ext/mysqli -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/mysqli/mysqli_api.c -fPIC -DPIC -o .libs/mysqli_api.o
/bin/bash /usr/src/php/ext/mysqli/libtool --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/mysqli -DPHP_ATOM_INC -I/usr/src/php/ext/mysqli/include -I/usr/src/php/ext/mysqli/main -I/usr/src/php/ext/mysqli -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/mysqli/mysqli_prop.c -o mysqli_prop.lo
cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/mysqli -DPHP_ATOM_INC -I/usr/src/php/ext/mysqli/include -I/usr/src/php/ext/mysqli/main -I/usr/src/php/ext/mysqli -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/mysqli/mysqli_prop.c -fPIC -DPIC -o .libs/mysqli_prop.o
/bin/bash /usr/src/php/ext/mysqli/libtool --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/mysqli -DPHP_ATOM_INC -I/usr/src/php/ext/mysqli/include -I/usr/src/php/ext/mysqli/main -I/usr/src/php/ext/mysqli -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/mysqli/mysqli_nonapi.c -o mysqli_nonapi.lo
cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/mysqli -DPHP_ATOM_INC -I/usr/src/php/ext/mysqli/include -I/usr/src/php/ext/mysqli/main -I/usr/src/php/ext/mysqli -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/mysqli/mysqli_nonapi.c -fPIC -DPIC -o .libs/mysqli_nonapi.o
/bin/bash /usr/src/php/ext/mysqli/libtool --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/mysqli -DPHP_ATOM_INC -I/usr/src/php/ext/mysqli/include -I/usr/src/php/ext/mysqli/main -I/usr/src/php/ext/mysqli -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/mysqli/mysqli_fe.c -o mysqli_fe.lo
cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/mysqli -DPHP_ATOM_INC -I/usr/src/php/ext/mysqli/include -I/usr/src/php/ext/mysqli/main -I/usr/src/php/ext/mysqli -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/mysqli/mysqli_fe.c -fPIC -DPIC -o .libs/mysqli_fe.o
/bin/bash /usr/src/php/ext/mysqli/libtool --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/mysqli -DPHP_ATOM_INC -I/usr/src/php/ext/mysqli/include -I/usr/src/php/ext/mysqli/main -I/usr/src/php/ext/mysqli -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/mysqli/mysqli_report.c -o mysqli_report.lo
cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/mysqli -DPHP_ATOM_INC -I/usr/src/php/ext/mysqli/include -I/usr/src/php/ext/mysqli/main -I/usr/src/php/ext/mysqli -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/mysqli/mysqli_report.c -fPIC -DPIC -o .libs/mysqli_report.o
/bin/bash /usr/src/php/ext/mysqli/libtool --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/mysqli -DPHP_ATOM_INC -I/usr/src/php/ext/mysqli/include -I/usr/src/php/ext/mysqli/main -I/usr/src/php/ext/mysqli -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/mysqli/mysqli_driver.c -o mysqli_driver.lo
cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/mysqli -DPHP_ATOM_INC -I/usr/src/php/ext/mysqli/include -I/usr/src/php/ext/mysqli/main -I/usr/src/php/ext/mysqli -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/mysqli/mysqli_driver.c -fPIC -DPIC -o .libs/mysqli_driver.o
/bin/bash /usr/src/php/ext/mysqli/libtool --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/mysqli -DPHP_ATOM_INC -I/usr/src/php/ext/mysqli/include -I/usr/src/php/ext/mysqli/main -I/usr/src/php/ext/mysqli -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/mysqli/mysqli_warning.c -o mysqli_warning.lo
cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/mysqli -DPHP_ATOM_INC -I/usr/src/php/ext/mysqli/include -I/usr/src/php/ext/mysqli/main -I/usr/src/php/ext/mysqli -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/mysqli/mysqli_warning.c -fPIC -DPIC -o .libs/mysqli_warning.o
/bin/bash /usr/src/php/ext/mysqli/libtool --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/mysqli -DPHP_ATOM_INC -I/usr/src/php/ext/mysqli/include -I/usr/src/php/ext/mysqli/main -I/usr/src/php/ext/mysqli -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/mysqli/mysqli_exception.c -o mysqli_exception.lo
cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/mysqli -DPHP_ATOM_INC -I/usr/src/php/ext/mysqli/include -I/usr/src/php/ext/mysqli/main -I/usr/src/php/ext/mysqli -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/mysqli/mysqli_exception.c -fPIC -DPIC -o .libs/mysqli_exception.o
/bin/bash /usr/src/php/ext/mysqli/libtool --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/mysqli -DPHP_ATOM_INC -I/usr/src/php/ext/mysqli/include -I/usr/src/php/ext/mysqli/main -I/usr/src/php/ext/mysqli -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/mysqli/mysqli_result_iterator.c -o mysqli_result_iterator.lo
cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/mysqli -DPHP_ATOM_INC -I/usr/src/php/ext/mysqli/include -I/usr/src/php/ext/mysqli/main -I/usr/src/php/ext/mysqli -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/mysqli/mysqli_result_iterator.c -fPIC -DPIC -o .libs/mysqli_result_iterator.o
/bin/bash /usr/src/php/ext/mysqli/libtool --mode=link cc -DPHP_ATOM_INC -I/usr/src/php/ext/mysqli/include -I/usr/src/php/ext/mysqli/main -I/usr/src/php/ext/mysqli -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -Wl,-O1 -Wl,--hash-style=both -pie -o mysqli.la -export-dynamic -avoid-version -prefer-pic -module -rpath /usr/src/php/ext/mysqli/modules mysqli.lo mysqli_api.lo mysqli_prop.lo mysqli_nonapi.lo mysqli_fe.lo mysqli_report.lo mysqli_driver.lo mysqli_warning.lo mysqli_exception.lo mysqli_result_iterator.lo
cc -shared .libs/mysqli.o .libs/mysqli_api.o .libs/mysqli_prop.o .libs/mysqli_nonapi.o .libs/mysqli_fe.o .libs/mysqli_report.o .libs/mysqli_driver.o .libs/mysqli_warning.o .libs/mysqli_exception.o .libs/mysqli_result_iterator.o -Wl,-O1 -Wl,--hash-style=both -Wl,-soname -Wl,mysqli.so -o .libs/mysqli.so
creating mysqli.la
(cd .libs && rm -f mysqli.la && ln -s ../mysqli.la mysqli.la)
/bin/bash /usr/src/php/ext/mysqli/libtool --mode=install cp ./mysqli.la /usr/src/php/ext/mysqli/modules
cp ./.libs/mysqli.so /usr/src/php/ext/mysqli/modules/mysqli.so
cp ./.libs/mysqli.lai /usr/src/php/ext/mysqli/modules/mysqli.la
PATH="$PATH:/sbin" ldconfig -n /usr/src/php/ext/mysqli/modules
----------------------------------------------------------------------
Libraries have been installed in:
/usr/src/php/ext/mysqli/modules
If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the `-LLIBDIR'
flag during linking and do at least one of the following:
- add LIBDIR to the `LD_LIBRARY_PATH' environment variable
during execution
- add LIBDIR to the `LD_RUN_PATH' environment variable
during linking
- use the `-Wl,--rpath -Wl,LIBDIR' linker flag
- have your system administrator add LIBDIR to `/etc/ld.so.conf'
See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
Build complete.
Don't forget to run 'make test'.
Installing shared extensions: /usr/local/lib/php/extensions/no-debug-non-zts-20170718/
Installing header files: /usr/local/include/php/
find . -name \*.gcno -o -name \*.gcda | xargs rm -f
find . -name \*.lo -o -name \*.o | xargs rm -f
find . -name \*.la -o -name \*.a | xargs rm -f
find . -name \*.so | xargs rm -f
find . -name .libs -a -type d|xargs rm -rf
rm -f libphp.la modules/* libs/*
Configuring for:
PHP Api Version: 20170718
Zend Module Api No: 20170718
Zend Extension Api No: 320170718
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for a sed that does not truncate output... /bin/sed
checking for cc... cc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether cc accepts -g... yes
checking for cc option to accept ISO C89... none needed
checking how to run the C preprocessor... cc -E
checking for icc... no
checking for suncc... no
checking whether cc understands -c and -o together... yes
checking for system library directory... lib
checking if compiler supports -R... no
checking if compiler supports -Wl,-rpath,... yes
checking build system type... x86_64-pc-linux-gnu
checking host system type... x86_64-pc-linux-gnu
checking target system type... x86_64-pc-linux-gnu
checking for PHP prefix... /usr/local
checking for PHP includes... -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib
checking for PHP extension directory... /usr/local/lib/php/extensions/no-debug-non-zts-20170718
checking for PHP installed headers prefix... /usr/local/include/php
checking if debug is enabled... no
checking if zts is enabled... no
checking for re2c... re2c
checking for re2c version... 0.16 (ok)
checking for gawk... no
checking for nawk... nawk
checking if nawk is broken... no
checking whether to enable PDO support... yes, shared
checking for ld used by cc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for /usr/bin/ld option to reload object files... -r
checking for BSD-compatible nm... /usr/bin/nm -B
checking whether ln -s works... yes
checking how to recognize dependent libraries... pass_all
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking dlfcn.h usability... yes
checking dlfcn.h presence... yes
checking for dlfcn.h... yes
checking the maximum length of command line arguments... 1572864
checking command to parse /usr/bin/nm -B output from cc object... ok
checking for objdir... .libs
checking for ar... ar
checking for ranlib... ranlib
checking for strip... strip
checking if cc supports -fno-rtti -fno-exceptions... no
checking for cc option to produce PIC... -fPIC
checking if cc PIC flag -fPIC works... yes
checking if cc static flag -static works... yes
checking if cc supports -c -o file.o... yes
checking whether the cc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... no
creating libtool
appending configuration tag "CXX" to libtool
configure: creating ./config.status
config.status: creating config.h
/bin/bash /usr/src/php/ext/pdo/libtool --mode=compile cc -I. -I/usr/src/php/ext/pdo -DPHP_ATOM_INC -I/usr/src/php/ext/pdo/include -I/usr/src/php/ext/pdo/main -I/usr/src/php/ext/pdo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/pdo/pdo.c -o pdo.lo
mkdir .libs
cc -I. -I/usr/src/php/ext/pdo -DPHP_ATOM_INC -I/usr/src/php/ext/pdo/include -I/usr/src/php/ext/pdo/main -I/usr/src/php/ext/pdo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/pdo/pdo.c -fPIC -DPIC -o .libs/pdo.o
/bin/bash /usr/src/php/ext/pdo/libtool --mode=compile cc -I. -I/usr/src/php/ext/pdo -DPHP_ATOM_INC -I/usr/src/php/ext/pdo/include -I/usr/src/php/ext/pdo/main -I/usr/src/php/ext/pdo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/pdo/pdo_dbh.c -o pdo_dbh.lo
cc -I. -I/usr/src/php/ext/pdo -DPHP_ATOM_INC -I/usr/src/php/ext/pdo/include -I/usr/src/php/ext/pdo/main -I/usr/src/php/ext/pdo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/pdo/pdo_dbh.c -fPIC -DPIC -o .libs/pdo_dbh.o
/bin/bash /usr/src/php/ext/pdo/libtool --mode=compile cc -I. -I/usr/src/php/ext/pdo -DPHP_ATOM_INC -I/usr/src/php/ext/pdo/include -I/usr/src/php/ext/pdo/main -I/usr/src/php/ext/pdo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/pdo/pdo_stmt.c -o pdo_stmt.lo
cc -I. -I/usr/src/php/ext/pdo -DPHP_ATOM_INC -I/usr/src/php/ext/pdo/include -I/usr/src/php/ext/pdo/main -I/usr/src/php/ext/pdo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/pdo/pdo_stmt.c -fPIC -DPIC -o .libs/pdo_stmt.o
/bin/bash /usr/src/php/ext/pdo/libtool --mode=compile cc -I. -I/usr/src/php/ext/pdo -DPHP_ATOM_INC -I/usr/src/php/ext/pdo/include -I/usr/src/php/ext/pdo/main -I/usr/src/php/ext/pdo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/pdo/pdo_sql_parser.c -o pdo_sql_parser.lo
cc -I. -I/usr/src/php/ext/pdo -DPHP_ATOM_INC -I/usr/src/php/ext/pdo/include -I/usr/src/php/ext/pdo/main -I/usr/src/php/ext/pdo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/pdo/pdo_sql_parser.c -fPIC -DPIC -o .libs/pdo_sql_parser.o
/bin/bash /usr/src/php/ext/pdo/libtool --mode=compile cc -I. -I/usr/src/php/ext/pdo -DPHP_ATOM_INC -I/usr/src/php/ext/pdo/include -I/usr/src/php/ext/pdo/main -I/usr/src/php/ext/pdo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/pdo/pdo_sqlstate.c -o pdo_sqlstate.lo
cc -I. -I/usr/src/php/ext/pdo -DPHP_ATOM_INC -I/usr/src/php/ext/pdo/include -I/usr/src/php/ext/pdo/main -I/usr/src/php/ext/pdo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/pdo/pdo_sqlstate.c -fPIC -DPIC -o .libs/pdo_sqlstate.o
/bin/bash /usr/src/php/ext/pdo/libtool --mode=link cc -DPHP_ATOM_INC -I/usr/src/php/ext/pdo/include -I/usr/src/php/ext/pdo/main -I/usr/src/php/ext/pdo -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -Wl,-O1 -Wl,--hash-style=both -pie -o pdo.la -export-dynamic -avoid-version -prefer-pic -module -rpath /usr/src/php/ext/pdo/modules pdo.lo pdo_dbh.lo pdo_stmt.lo pdo_sql_parser.lo pdo_sqlstate.lo
cc -shared .libs/pdo.o .libs/pdo_dbh.o .libs/pdo_stmt.o .libs/pdo_sql_parser.o .libs/pdo_sqlstate.o -Wl,-O1 -Wl,--hash-style=both -Wl,-soname -Wl,pdo.so -o .libs/pdo.so
creating pdo.la
(cd .libs && rm -f pdo.la && ln -s ../pdo.la pdo.la)
/bin/bash /usr/src/php/ext/pdo/libtool --mode=install cp ./pdo.la /usr/src/php/ext/pdo/modules
cp ./.libs/pdo.so /usr/src/php/ext/pdo/modules/pdo.so
cp ./.libs/pdo.lai /usr/src/php/ext/pdo/modules/pdo.la
PATH="$PATH:/sbin" ldconfig -n /usr/src/php/ext/pdo/modules
----------------------------------------------------------------------
Libraries have been installed in:
/usr/src/php/ext/pdo/modules
If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the `-LLIBDIR'
flag during linking and do at least one of the following:
- add LIBDIR to the `LD_LIBRARY_PATH' environment variable
during execution
- add LIBDIR to the `LD_RUN_PATH' environment variable
during linking
- use the `-Wl,--rpath -Wl,LIBDIR' linker flag
- have your system administrator add LIBDIR to `/etc/ld.so.conf'
See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
Build complete.
Don't forget to run 'make test'.
Installing shared extensions: /usr/local/lib/php/extensions/no-debug-non-zts-20170718/
Installing header files: /usr/local/include/php/
Installing PDO headers: /usr/local/include/php/ext/pdo/
warning: pdo (pdo.so) is already loaded!
find . -name \*.gcno -o -name \*.gcda | xargs rm -f
find . -name \*.lo -o -name \*.o | xargs rm -f
find . -name \*.la -o -name \*.a | xargs rm -f
find . -name \*.so | xargs rm -f
find . -name .libs -a -type d|xargs rm -rf
rm -f libphp.la modules/* libs/*
Configuring for:
PHP Api Version: 20170718
Zend Module Api No: 20170718
Zend Extension Api No: 320170718
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for a sed that does not truncate output... /bin/sed
checking for cc... cc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether cc accepts -g... yes
checking for cc option to accept ISO C89... none needed
checking how to run the C preprocessor... cc -E
checking for icc... no
checking for suncc... no
checking whether cc understands -c and -o together... yes
checking for system library directory... lib
checking if compiler supports -R... no
checking if compiler supports -Wl,-rpath,... yes
checking build system type... x86_64-pc-linux-gnu
checking host system type... x86_64-pc-linux-gnu
checking target system type... x86_64-pc-linux-gnu
checking for PHP prefix... /usr/local
checking for PHP includes... -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib
checking for PHP extension directory... /usr/local/lib/php/extensions/no-debug-non-zts-20170718
checking for PHP installed headers prefix... /usr/local/include/php
checking if debug is enabled... no
checking if zts is enabled... no
checking for re2c... re2c
checking for re2c version... 0.16 (ok)
checking for gawk... no
checking for nawk... nawk
checking if nawk is broken... no
checking for MySQL support for PDO... yes, shared
checking for the location of libz... no
checking for MySQL UNIX socket location...
checking for PDO includes... checking for PDO includes... /usr/local/include/php/ext
checking for ld used by cc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for /usr/bin/ld option to reload object files... -r
checking for BSD-compatible nm... /usr/bin/nm -B
checking whether ln -s works... yes
checking how to recognize dependent libraries... pass_all
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking dlfcn.h usability... yes
checking dlfcn.h presence... yes
checking for dlfcn.h... yes
checking the maximum length of command line arguments... 1572864
checking command to parse /usr/bin/nm -B output from cc object... ok
checking for objdir... .libs
checking for ar... ar
checking for ranlib... ranlib
checking for strip... strip
checking if cc supports -fno-rtti -fno-exceptions... no
checking for cc option to produce PIC... -fPIC
checking if cc PIC flag -fPIC works... yes
checking if cc static flag -static works... yes
checking if cc supports -c -o file.o... yes
checking whether the cc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... no
creating libtool
appending configuration tag "CXX" to libtool
configure: creating ./config.status
config.status: creating config.h
/bin/bash /usr/src/php/ext/pdo_mysql/libtool --mode=compile cc -I/usr/local/include/php/ext -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/pdo_mysql -DPHP_ATOM_INC -I/usr/src/php/ext/pdo_mysql/include -I/usr/src/php/ext/pdo_mysql/main -I/usr/src/php/ext/pdo_mysql -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/pdo_mysql/pdo_mysql.c -o pdo_mysql.lo
mkdir .libs
cc -I/usr/local/include/php/ext -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/pdo_mysql -DPHP_ATOM_INC -I/usr/src/php/ext/pdo_mysql/include -I/usr/src/php/ext/pdo_mysql/main -I/usr/src/php/ext/pdo_mysql -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/pdo_mysql/pdo_mysql.c -fPIC -DPIC -o .libs/pdo_mysql.o
/bin/bash /usr/src/php/ext/pdo_mysql/libtool --mode=compile cc -I/usr/local/include/php/ext -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/pdo_mysql -DPHP_ATOM_INC -I/usr/src/php/ext/pdo_mysql/include -I/usr/src/php/ext/pdo_mysql/main -I/usr/src/php/ext/pdo_mysql -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/pdo_mysql/mysql_driver.c -o mysql_driver.lo
cc -I/usr/local/include/php/ext -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/pdo_mysql -DPHP_ATOM_INC -I/usr/src/php/ext/pdo_mysql/include -I/usr/src/php/ext/pdo_mysql/main -I/usr/src/php/ext/pdo_mysql -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/pdo_mysql/mysql_driver.c -fPIC -DPIC -o .libs/mysql_driver.o
/bin/bash /usr/src/php/ext/pdo_mysql/libtool --mode=compile cc -I/usr/local/include/php/ext -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/pdo_mysql -DPHP_ATOM_INC -I/usr/src/php/ext/pdo_mysql/include -I/usr/src/php/ext/pdo_mysql/main -I/usr/src/php/ext/pdo_mysql -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/pdo_mysql/mysql_statement.c -o mysql_statement.lo
cc -I/usr/local/include/php/ext -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -I. -I/usr/src/php/ext/pdo_mysql -DPHP_ATOM_INC -I/usr/src/php/ext/pdo_mysql/include -I/usr/src/php/ext/pdo_mysql/main -I/usr/src/php/ext/pdo_mysql -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -c /usr/src/php/ext/pdo_mysql/mysql_statement.c -fPIC -DPIC -o .libs/mysql_statement.o
/bin/bash /usr/src/php/ext/pdo_mysql/libtool --mode=link cc -DPHP_ATOM_INC -I/usr/src/php/ext/pdo_mysql/include -I/usr/src/php/ext/pdo_mysql/main -I/usr/src/php/ext/pdo_mysql -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/TSRM -I/usr/local/include/php/Zend -I/usr/local/include/php/ext -I/usr/local/include/php/ext/date/lib -fstack-protector-strong -fpic -fpie -O2 -DHAVE_CONFIG_H -fstack-protector-strong -fpic -fpie -O2 -Wl,-O1 -Wl,--hash-style=both -pie -o pdo_mysql.la -export-dynamic -avoid-version -prefer-pic -module -rpath /usr/src/php/ext/pdo_mysql/modules pdo_mysql.lo mysql_driver.lo mysql_statement.lo
cc -shared .libs/pdo_mysql.o .libs/mysql_driver.o .libs/mysql_statement.o -Wl,-O1 -Wl,--hash-style=both -Wl,-soname -Wl,pdo_mysql.so -o .libs/pdo_mysql.so
creating pdo_mysql.la
(cd .libs && rm -f pdo_mysql.la && ln -s ../pdo_mysql.la pdo_mysql.la)
/bin/bash /usr/src/php/ext/pdo_mysql/libtool --mode=install cp ./pdo_mysql.la /usr/src/php/ext/pdo_mysql/modules
cp ./.libs/pdo_mysql.so /usr/src/php/ext/pdo_mysql/modules/pdo_mysql.so
cp ./.libs/pdo_mysql.lai /usr/src/php/ext/pdo_mysql/modules/pdo_mysql.la
PATH="$PATH:/sbin" ldconfig -n /usr/src/php/ext/pdo_mysql/modules
----------------------------------------------------------------------
Libraries have been installed in:
/usr/src/php/ext/pdo_mysql/modules
If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the `-LLIBDIR'
flag during linking and do at least one of the following:
- add LIBDIR to the `LD_LIBRARY_PATH' environment variable
during execution
- add LIBDIR to the `LD_RUN_PATH' environment variable
during linking
- use the `-Wl,--rpath -Wl,LIBDIR' linker flag
- have your system administrator add LIBDIR to `/etc/ld.so.conf'
See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
Build complete.
Don't forget to run 'make test'.
Installing shared extensions: /usr/local/lib/php/extensions/no-debug-non-zts-20170718/
find . -name \*.gcno -o -name \*.gcda | xargs rm -f
find . -name \*.lo -o -name \*.o | xargs rm -f
find . -name \*.la -o -name \*.a | xargs rm -f
find . -name \*.so | xargs rm -f
find . -name .libs -a -type d|xargs rm -rf
rm -f libphp.la modules/* libs/*
Removing intermediate container 9f84413bdbed
---> 3cf78a088462
Step 3/8 : RUN groupadd -o -g "65533" -r "somebody" && useradd -o -m -d "/home/somebody" -r -g "somebody" -u "65533" "somebody" && mkdir -p "/var/www/html" && chown "65533":"65533" "/var/www/html"
---> Running in 49a61b7eeddb
Removing intermediate container 49a61b7eeddb
---> 52e3d616debc
Step 4/8 : WORKDIR /var/www/html/
---> Running in 0bad8a732005
Removing intermediate container 0bad8a732005
---> 15e1b32fef04
Step 5/8 : COPY --chown=65533:65533 [".", "."]
---> c7b0656c6a12
Step 6/8 : USER somebody
---> Running in 1ba62512b921
Removing intermediate container 1ba62512b921
---> b2b1b7810b8e
Step 7/8 : RUN php composer.phar install
---> Running in b0d166f60ac1
Could not open input file: composer.phar
The command '/bin/sh -c php composer.phar install' returned a non-zero code: 1
~/Documents/gerrit/mediawiki/core$ cd services/parsoid/
~/Documents/gerrit/mediawiki/core/services/parsoid$ cat Dockerfile
FROM node:6.11.0
# Create app directory
WORKDIR /usr/src/app
# Install app dependencies
# A wildcard is used to ensure both package.json AND package-lock.json are copied
# where available (npm@5+)
COPY package*.json ./
# If you are building your code for production
# RUN npm install --only=production
RUN npm install
# Bundle app source
COPY . .
EXPOSE 8142
EXPOSE 5858
~/Documents/gerrit/mediawiki/core/services/parsoid$ docker build -t parsoid .
Sending build context to Docker daemon 58.99MB
Step 1/7 : FROM node:6.11.0
6.11.0: Pulling from library/node
9f0706ba7422: Pull complete
d3942a742d22: Pull complete
62b1123c88f6: Pull complete
2dac6294ef18: Pull complete
fd18c4867ed6: Pull complete
c8b70cd3e56f: Pull complete
d4638d709f75: Pull complete
4ed0b6e78187: Pull complete
Digest: sha256:19de5403244485481fa1c2ddf47d47debabbe8094a80fb3ccab082b8ee9e0763
Status: Downloaded newer image for node:6.11.0
---> 867601d9565a
Step 2/7 : WORKDIR /usr/src/app
---> Running in 1982e28c7baa
Removing intermediate container 1982e28c7baa
---> 64e4ea14cfa1
Step 3/7 : COPY package*.json ./
---> 7e4a0ed8d4bd
Step 4/7 : RUN npm install
---> Running in 591ed0e2b3fc
npm info it worked if it ends with ok
npm info using npm@3.10.10
npm info using node@v6.11.0
npm info attempt registry request try #1 at 12:37:36 PM
npm http request GET https://registry.npmjs.org/babybird
npm info attempt registry request try #1 at 12:37:36 PM
npm http request GET https://registry.npmjs.org/compression
npm info attempt registry request try #1 at 12:37:36 PM
npm http request GET https://registry.npmjs.org/connect-busboy
npm info attempt registry request try #1 at 12:37:36 PM
npm http request GET https://registry.npmjs.org/core-js
npm info attempt registry request try #1 at 12:37:36 PM
npm http request GET https://registry.npmjs.org/domino
npm info attempt registry request try #1 at 12:37:36 PM
npm http request GET https://registry.npmjs.org/entities
npm info attempt registry request try #1 at 12:37:36 PM
npm http request GET https://registry.npmjs.org/express
npm info attempt registry request try #1 at 12:37:36 PM
npm http request GET https://registry.npmjs.org/express-handlebars
npm info attempt registry request try #1 at 12:37:36 PM
npm http request GET https://registry.npmjs.org/finalhandler
npm info attempt registry request try #1 at 12:37:36 PM
npm http request GET https://registry.npmjs.org/js-yaml
npm info attempt registry request try #1 at 12:37:36 PM
npm http request GET https://registry.npmjs.org/mediawiki-title
npm info attempt registry request try #1 at 12:37:36 PM
npm http request GET https://registry.npmjs.org/pn
npm info attempt registry request try #1 at 12:37:36 PM
npm http request GET https://registry.npmjs.org/prfun
npm info attempt registry request try #1 at 12:37:36 PM
npm http request GET https://registry.npmjs.org/request
npm info attempt registry request try #1 at 12:37:36 PM
npm http request GET https://registry.npmjs.org/semver
npm info attempt registry request try #1 at 12:37:36 PM
npm http request GET https://registry.npmjs.org/serve-favicon
npm info attempt registry request try #1 at 12:37:36 PM
npm http request GET https://registry.npmjs.org/service-runner
npm info attempt registry request try #1 at 12:37:36 PM
npm http request GET https://registry.npmjs.org/simplediff
npm info attempt registry request try #1 at 12:37:36 PM
npm http request GET https://registry.npmjs.org/uuid
npm info attempt registry request try #1 at 12:37:36 PM
npm http request GET https://registry.npmjs.org/wikipeg
npm info attempt registry request try #1 at 12:37:36 PM
npm http request GET https://registry.npmjs.org/yargs
npm info git [ 'clone',
npm info git '--template=/root/.npm/_git-remotes/_templates',
npm info git '--mirror',
npm info git 'https://github.com/wikimedia/content-type.git',
npm info git '/root/.npm/_git-remotes/git-https-github-com-wikimedia-content-type-git-master-0dff22de' ]
npm info git [ 'clone',
npm info git '--template=/root/.npm/_git-remotes/_templates',
npm info git '--mirror',
npm info git 'https://github.com/arlolra/negotiator.git',
npm info git '/root/.npm/_git-remotes/git-https-github-com-arlolra-negotiator-git-full-parse-access-164c7910' ]
npm info git [ 'clone',
npm info git '--template=/root/.npm/_git-remotes/_templates',
npm info git '--mirror',
npm info git 'https://github.com/wikimedia/mediawiki-libs-LangConv.git',
npm info git '/root/.npm/_git-remotes/git-https-github-com-wikimedia-mediawiki-libs-LangConv-git-master-377a8676' ]
npm info git [ 'clone',
npm info git '--template=/root/.npm/_git-remotes/_templates',
npm info git '--mirror',
npm info git 'https://github.com/arlolra/node-worker-farm.git',
npm info git '/root/.npm/_git-remotes/git-https-github-com-arlolra-node-worker-farm-git-queue-b683c365' ]
npm http 200 https://registry.npmjs.org/pn
npm http 200 https://registry.npmjs.org/entities
npm http 200 https://registry.npmjs.org/finalhandler
npm http 200 https://registry.npmjs.org/uuid
npm http 200 https://registry.npmjs.org/compression
npm http 200 https://registry.npmjs.org/serve-favicon
npm http 200 https://registry.npmjs.org/js-yaml
npm http 200 https://registry.npmjs.org/express-handlebars
npm http 200 https://registry.npmjs.org/semver
npm http 200 https://registry.npmjs.org/request
npm http 200 https://registry.npmjs.org/core-js
npm info retry fetch attempt 1 at 12:37:36 PM
npm info attempt registry request try #1 at 12:37:36 PM
npm http fetch GET https://registry.npmjs.org/serve-favicon/-/serve-favicon-2.5.0.tgz
npm http 200 https://registry.npmjs.org/yargs
npm info retry fetch attempt 1 at 12:37:36 PM
npm info attempt registry request try #1 at 12:37:36 PM
npm http fetch GET https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.1.tgz
npm info retry fetch attempt 1 at 12:37:36 PM
npm info attempt registry request try #1 at 12:37:36 PM
npm http fetch GET https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz
npm info retry fetch attempt 1 at 12:37:36 PM
npm info attempt registry request try #1 at 12:37:36 PM
npm http fetch GET https://registry.npmjs.org/entities/-/entities-1.1.2.tgz
npm info retry fetch attempt 1 at 12:37:37 PM
npm info attempt registry request try #1 at 12:37:37 PM
npm http fetch GET https://registry.npmjs.org/express-handlebars/-/express-handlebars-3.0.2.tgz
npm info retry fetch attempt 1 at 12:37:37 PM
npm info attempt registry request try #1 at 12:37:37 PM
npm http fetch GET https://registry.npmjs.org/uuid/-/uuid-3.3.2.tgz
npm info retry fetch attempt 1 at 12:37:37 PM
npm info attempt registry request try #1 at 12:37:37 PM
npm http fetch GET https://registry.npmjs.org/pn/-/pn-1.1.0.tgz
npm info retry fetch attempt 1 at 12:37:37 PM
npm info attempt registry request try #1 at 12:37:37 PM
npm http fetch GET https://registry.npmjs.org/semver/-/semver-5.7.0.tgz
npm info retry fetch attempt 1 at 12:37:37 PM
npm info attempt registry request try #1 at 12:37:37 PM
npm http fetch GET https://registry.npmjs.org/compression/-/compression-1.7.4.tgz
npm http fetch 200 https://registry.npmjs.org/serve-favicon/-/serve-favicon-2.5.0.tgz
npm http fetch 200 https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.1.tgz
npm http fetch 200 https://registry.npmjs.org/entities/-/entities-1.1.2.tgz
npm http fetch 200 https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz
npm http fetch 200 https://registry.npmjs.org/express-handlebars/-/express-handlebars-3.0.2.tgz
npm http fetch 200 https://registry.npmjs.org/pn/-/pn-1.1.0.tgz
npm http fetch 200 https://registry.npmjs.org/semver/-/semver-5.7.0.tgz
npm http fetch 200 https://registry.npmjs.org/compression/-/compression-1.7.4.tgz
npm http fetch 200 https://registry.npmjs.org/uuid/-/uuid-3.3.2.tgz
npm http 200 https://registry.npmjs.org/express
npm info retry fetch attempt 1 at 12:37:37 PM
npm info attempt registry request try #1 at 12:37:37 PM
npm http fetch GET https://registry.npmjs.org/request/-/request-2.88.0.tgz
npm info retry fetch attempt 1 at 12:37:37 PM
npm info attempt registry request try #1 at 12:37:37 PM
npm http fetch GET https://registry.npmjs.org/core-js/-/core-js-2.6.5.tgz
npm http 200 https://registry.npmjs.org/wikipeg
npm info retry fetch attempt 1 at 12:37:37 PM
npm info attempt registry request try #1 at 12:37:37 PM
npm http fetch GET https://registry.npmjs.org/yargs/-/yargs-7.1.0.tgz
npm http fetch 200 https://registry.npmjs.org/request/-/request-2.88.0.tgz
npm http fetch 200 https://registry.npmjs.org/core-js/-/core-js-2.6.5.tgz
npm http fetch 200 https://registry.npmjs.org/yargs/-/yargs-7.1.0.tgz
npm info retry fetch attempt 1 at 12:37:37 PM
npm info attempt registry request try #1 at 12:37:37 PM
npm http fetch GET https://registry.npmjs.org/express/-/express-4.16.4.tgz
npm info retry fetch attempt 1 at 12:37:37 PM
npm info attempt registry request try #1 at 12:37:37 PM
npm http fetch GET https://registry.npmjs.org/wikipeg/-/wikipeg-2.0.1.tgz
npm http fetch 200 https://registry.npmjs.org/express/-/express-4.16.4.tgz
npm http 200 https://registry.npmjs.org/domino
npm http 200 https://registry.npmjs.org/connect-busboy
npm http 200 https://registry.npmjs.org/simplediff
npm http 200 https://registry.npmjs.org/mediawiki-title
npm http 200 https://registry.npmjs.org/babybird
npm info retry fetch attempt 1 at 12:37:37 PM
npm info attempt registry request try #1 at 12:37:37 PM
npm http fetch GET https://registry.npmjs.org/domino/-/domino-2.1.3.tgz
npm info retry fetch attempt 1 at 12:37:37 PM
npm info attempt registry request try #1 at 12:37:37 PM
npm http fetch GET https://registry.npmjs.org/connect-busboy/-/connect-busboy-0.0.2.tgz
npm info retry fetch attempt 1 at 12:37:37 PM
npm info attempt registry request try #1 at 12:37:37 PM
npm http fetch GET https://registry.npmjs.org/simplediff/-/simplediff-0.1.1.tgz
npm info retry fetch attempt 1 at 12:37:37 PM
npm info attempt registry request try #1 at 12:37:37 PM
npm http fetch GET https://registry.npmjs.org/mediawiki-title/-/mediawiki-title-0.6.5.tgz
npm info retry fetch attempt 1 at 12:37:37 PM
npm info attempt registry request try #1 at 12:37:37 PM
npm http fetch GET https://registry.npmjs.org/babybird/-/babybird-0.0.1.tgz
npm http fetch 200 https://registry.npmjs.org/domino/-/domino-2.1.3.tgz
npm http fetch 200 https://registry.npmjs.org/connect-busboy/-/connect-busboy-0.0.2.tgz
npm http fetch 200 https://registry.npmjs.org/babybird/-/babybird-0.0.1.tgz
npm info git [ 'rev-list', '-n1', 'master' ]
npm info git [ 'clone',
npm info git '/root/.npm/_git-remotes/git-https-github-com-wikimedia-content-type-git-master-0dff22de',
npm info git '/tmp/npm-7-39aa7ea7/git-cache-96741d1f/47b2632d0a2ee79a7d67268e2f6621becd95d05b' ]
npm info git [ 'checkout', '47b2632d0a2ee79a7d67268e2f6621becd95d05b' ]
npm info git [ 'submodule', '-q', 'update', '--init', '--recursive' ]
npm http 200 https://registry.npmjs.org/prfun
npm info retry fetch attempt 1 at 12:37:38 PM
npm info attempt registry request try #1 at 12:37:38 PM
npm http fetch GET https://registry.npmjs.org/prfun/-/prfun-2.1.5.tgz
npm info git [ 'rev-list', '-n1', 'queue' ]
npm info git [ 'clone',
npm info git '/root/.npm/_git-remotes/git-https-github-com-arlolra-node-worker-farm-git-queue-b683c365',
npm info git '/tmp/npm-7-39aa7ea7/git-cache-1585864f/8e7b2b40bdcff0d106372cf95acdf52557b741a0' ]
npm info git [ 'checkout', '8e7b2b40bdcff0d106372cf95acdf52557b741a0' ]
npm info git [ 'rev-list', '-n1', 'full-parse-access' ]
npm info git [ 'submodule', '-q', 'update', '--init', '--recursive' ]
npm info git [ 'clone',
npm info git '/root/.npm/_git-remotes/git-https-github-com-arlolra-negotiator-git-full-parse-access-164c7910',
npm info git '/tmp/npm-7-39aa7ea7/git-cache-58f124a3/0418ab4e9a665772b7e233564a4525c9d9a8ec3a' ]
npm info git [ 'checkout', '0418ab4e9a665772b7e233564a4525c9d9a8ec3a' ]
npm info git [ 'submodule', '-q', 'update', '--init', '--recursive' ]
npm http 200 https://registry.npmjs.org/service-runner
npm http fetch 200 https://registry.npmjs.org/simplediff/-/simplediff-0.1.1.tgz
npm info retry fetch attempt 1 at 12:37:38 PM
npm info attempt registry request try #1 at 12:37:38 PM
npm http fetch GET https://registry.npmjs.org/service-runner/-/service-runner-2.6.17.tgz
npm http fetch 200 https://registry.npmjs.org/mediawiki-title/-/mediawiki-title-0.6.5.tgz
npm http fetch 200 https://registry.npmjs.org/wikipeg/-/wikipeg-2.0.1.tgz
npm http fetch 200 https://registry.npmjs.org/prfun/-/prfun-2.1.5.tgz
npm http fetch 200 https://registry.npmjs.org/service-runner/-/service-runner-2.6.17.tgz
npm info git [ 'rev-list', '-n1', 'master' ]
npm info git [ 'clone',
npm info git '/root/.npm/_git-remotes/git-https-github-com-wikimedia-mediawiki-libs-LangConv-git-master-377a8676',
npm info git '/tmp/npm-7-39aa7ea7/git-cache-0747be2d/19084f38081a84a0018af46ec8b139cd4e66070c' ]
npm info git [ 'checkout', '19084f38081a84a0018af46ec8b139cd4e66070c' ]
npm info git [ 'submodule', '-q', 'update', '--init', '--recursive' ]
npm info attempt registry request try #1 at 12:38:58 PM
npm http request GET https://registry.npmjs.org/asap
npm info attempt registry request try #1 at 12:38:58 PM
npm http request GET https://registry.npmjs.org/is-arguments
npm http 200 https://registry.npmjs.org/asap
npm info retry fetch attempt 1 at 12:38:58 PM
npm info attempt registry request try #1 at 12:38:58 PM
npm http fetch GET https://registry.npmjs.org/asap/-/asap-2.0.6.tgz
npm http fetch 200 https://registry.npmjs.org/asap/-/asap-2.0.6.tgz
npm http 200 https://registry.npmjs.org/is-arguments
npm info retry fetch attempt 1 at 12:38:59 PM
npm info attempt registry request try #1 at 12:38:59 PM
npm http fetch GET https://registry.npmjs.org/is-arguments/-/is-arguments-1.0.4.tgz
npm http fetch 200 https://registry.npmjs.org/is-arguments/-/is-arguments-1.0.4.tgz
npm info attempt registry request try #1 at 12:38:59 PM
npm http request GET https://registry.npmjs.org/accepts
npm info attempt registry request try #1 at 12:38:59 PM
npm http request GET https://registry.npmjs.org/bytes
npm info attempt registry request try #1 at 12:38:59 PM
npm http request GET https://registry.npmjs.org/compressible
npm info attempt registry request try #1 at 12:38:59 PM
npm http request GET https://registry.npmjs.org/debug
npm info attempt registry request try #1 at 12:38:59 PM
npm http request GET https://registry.npmjs.org/on-headers
npm info attempt registry request try #1 at 12:38:59 PM
npm http request GET https://registry.npmjs.org/safe-buffer
npm info attempt registry request try #1 at 12:38:59 PM
npm http request GET https://registry.npmjs.org/vary
npm http 200 https://registry.npmjs.org/bytes
npm http 200 https://registry.npmjs.org/on-headers
npm http 200 https://registry.npmjs.org/safe-buffer
npm http 200 https://registry.npmjs.org/accepts
npm http 200 https://registry.npmjs.org/compressible
npm info retry fetch attempt 1 at 12:38:59 PM
npm info attempt registry request try #1 at 12:38:59 PM
npm http fetch GET https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz
npm http 200 https://registry.npmjs.org/vary
npm http 200 https://registry.npmjs.org/debug
npm info retry fetch attempt 1 at 12:39:00 PM
npm info attempt registry request try #1 at 12:39:00 PM
npm http fetch GET https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz
npm http fetch 200 https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz
npm info retry fetch attempt 1 at 12:39:00 PM
npm info attempt registry request try #1 at 12:39:00 PM
npm http fetch GET https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz
npm info retry fetch attempt 1 at 12:39:00 PM
npm info attempt registry request try #1 at 12:39:00 PM
npm http fetch GET https://registry.npmjs.org/compressible/-/compressible-2.0.16.tgz
npm info retry fetch attempt 1 at 12:39:00 PM
npm info attempt registry request try #1 at 12:39:00 PM
npm http fetch GET https://registry.npmjs.org/accepts/-/accepts-1.3.5.tgz
npm info retry fetch attempt 1 at 12:39:00 PM
npm info attempt registry request try #1 at 12:39:00 PM
npm http fetch GET https://registry.npmjs.org/vary/-/vary-1.1.2.tgz
npm info retry fetch attempt 1 at 12:39:00 PM
npm info attempt registry request try #1 at 12:39:00 PM
npm http fetch GET https://registry.npmjs.org/debug/-/debug-2.6.9.tgz
npm http fetch 200 https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz
npm http fetch 200 https://registry.npmjs.org/compressible/-/compressible-2.0.16.tgz
npm http fetch 200 https://registry.npmjs.org/accepts/-/accepts-1.3.5.tgz
npm http fetch 200 https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz
npm http fetch 200 https://registry.npmjs.org/vary/-/vary-1.1.2.tgz
npm http fetch 200 https://registry.npmjs.org/debug/-/debug-2.6.9.tgz
npm info attempt registry request try #1 at 12:39:00 PM
npm http request GET https://registry.npmjs.org/mime-types
npm http 200 https://registry.npmjs.org/mime-types
npm info retry fetch attempt 1 at 12:39:00 PM
npm info attempt registry request try #1 at 12:39:00 PM
npm http fetch GET https://registry.npmjs.org/mime-types/-/mime-types-2.1.22.tgz
npm http fetch 200 https://registry.npmjs.org/mime-types/-/mime-types-2.1.22.tgz
npm info attempt registry request try #1 at 12:39:00 PM
npm http request GET https://registry.npmjs.org/mime-db
npm http 200 https://registry.npmjs.org/mime-db
npm info retry fetch attempt 1 at 12:39:00 PM
npm info attempt registry request try #1 at 12:39:00 PM
npm http fetch GET https://registry.npmjs.org/mime-db/-/mime-db-1.38.0.tgz
npm http fetch 200 https://registry.npmjs.org/mime-db/-/mime-db-1.38.0.tgz
npm info attempt registry request try #1 at 12:39:00 PM
npm http request GET https://registry.npmjs.org/ms
npm http 200 https://registry.npmjs.org/ms
npm info retry fetch attempt 1 at 12:39:00 PM
npm info attempt registry request try #1 at 12:39:00 PM
npm http fetch GET https://registry.npmjs.org/ms/-/ms-2.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/ms/-/ms-2.0.0.tgz
npm info attempt registry request try #1 at 12:39:00 PM
npm http request GET https://registry.npmjs.org/busboy
npm http 200 https://registry.npmjs.org/busboy
npm info retry fetch attempt 1 at 12:39:00 PM
npm info attempt registry request try #1 at 12:39:00 PM
npm http fetch GET https://registry.npmjs.org/busboy/-/busboy-0.3.1.tgz
npm http fetch 200 https://registry.npmjs.org/busboy/-/busboy-0.3.1.tgz
npm info attempt registry request try #1 at 12:39:00 PM
npm http request GET https://registry.npmjs.org/dicer
npm http 200 https://registry.npmjs.org/dicer
npm info retry fetch attempt 1 at 12:39:01 PM
npm info attempt registry request try #1 at 12:39:01 PM
npm http fetch GET https://registry.npmjs.org/dicer/-/dicer-0.3.0.tgz
npm http fetch 200 https://registry.npmjs.org/dicer/-/dicer-0.3.0.tgz
npm info attempt registry request try #1 at 12:39:01 PM
npm http request GET https://registry.npmjs.org/streamsearch
npm http 200 https://registry.npmjs.org/streamsearch
npm info retry fetch attempt 1 at 12:39:01 PM
npm info attempt registry request try #1 at 12:39:01 PM
npm http fetch GET https://registry.npmjs.org/streamsearch/-/streamsearch-0.1.2.tgz
npm http fetch 200 https://registry.npmjs.org/streamsearch/-/streamsearch-0.1.2.tgz
npm info attempt registry request try #1 at 12:39:01 PM
npm http request GET https://registry.npmjs.org/array-flatten
npm info attempt registry request try #1 at 12:39:01 PM
npm http request GET https://registry.npmjs.org/body-parser
npm info attempt registry request try #1 at 12:39:01 PM
npm http request GET https://registry.npmjs.org/content-disposition
npm info attempt registry request try #1 at 12:39:01 PM
npm http request GET https://registry.npmjs.org/content-type
npm info attempt registry request try #1 at 12:39:01 PM
npm http request GET https://registry.npmjs.org/cookie
npm info attempt registry request try #1 at 12:39:01 PM
npm http request GET https://registry.npmjs.org/cookie-signature
npm info attempt registry request try #1 at 12:39:01 PM
npm http request GET https://registry.npmjs.org/depd
npm info attempt registry request try #1 at 12:39:01 PM
npm http request GET https://registry.npmjs.org/encodeurl
npm info attempt registry request try #1 at 12:39:01 PM
npm http request GET https://registry.npmjs.org/escape-html
npm info attempt registry request try #1 at 12:39:01 PM
npm http request GET https://registry.npmjs.org/etag
npm info attempt registry request try #1 at 12:39:01 PM
npm http request GET https://registry.npmjs.org/fresh
npm info attempt registry request try #1 at 12:39:01 PM
npm http request GET https://registry.npmjs.org/merge-descriptors
npm info attempt registry request try #1 at 12:39:01 PM
npm http request GET https://registry.npmjs.org/methods
npm info attempt registry request try #1 at 12:39:01 PM
npm http request GET https://registry.npmjs.org/on-finished
npm info attempt registry request try #1 at 12:39:01 PM
npm http request GET https://registry.npmjs.org/parseurl
npm info attempt registry request try #1 at 12:39:01 PM
npm http request GET https://registry.npmjs.org/path-to-regexp
npm info attempt registry request try #1 at 12:39:01 PM
npm http request GET https://registry.npmjs.org/proxy-addr
npm info attempt registry request try #1 at 12:39:01 PM
npm http request GET https://registry.npmjs.org/qs
npm info attempt registry request try #1 at 12:39:01 PM
npm http request GET https://registry.npmjs.org/range-parser
npm info attempt registry request try #1 at 12:39:01 PM
npm http request GET https://registry.npmjs.org/send
npm info attempt registry request try #1 at 12:39:01 PM
npm http request GET https://registry.npmjs.org/serve-static
npm info attempt registry request try #1 at 12:39:01 PM
npm http request GET https://registry.npmjs.org/setprototypeof
npm info attempt registry request try #1 at 12:39:01 PM
npm http request GET https://registry.npmjs.org/statuses
npm info attempt registry request try #1 at 12:39:01 PM
npm http request GET https://registry.npmjs.org/type-is
npm info attempt registry request try #1 at 12:39:01 PM
npm http request GET https://registry.npmjs.org/utils-merge
npm http 200 https://registry.npmjs.org/array-flatten
npm http 200 https://registry.npmjs.org/fresh
npm http 200 https://registry.npmjs.org/etag
npm http 200 https://registry.npmjs.org/content-disposition
npm http 200 https://registry.npmjs.org/escape-html
npm http 200 https://registry.npmjs.org/cookie-signature
npm http 200 https://registry.npmjs.org/encodeurl
npm http 200 https://registry.npmjs.org/content-type
npm http 200 https://registry.npmjs.org/proxy-addr
npm http 200 https://registry.npmjs.org/parseurl
npm http 200 https://registry.npmjs.org/methods
npm http 200 https://registry.npmjs.org/cookie
npm http 200 https://registry.npmjs.org/on-finished
npm http 200 https://registry.npmjs.org/range-parser
npm http 200 https://registry.npmjs.org/merge-descriptors
npm http 200 https://registry.npmjs.org/depd
npm http 200 https://registry.npmjs.org/send
npm http 200 https://registry.npmjs.org/serve-static
npm http 200 https://registry.npmjs.org/path-to-regexp
npm http 200 https://registry.npmjs.org/qs
npm http 200 https://registry.npmjs.org/body-parser
npm http 200 https://registry.npmjs.org/utils-merge
npm http 200 https://registry.npmjs.org/setprototypeof
npm http 200 https://registry.npmjs.org/statuses
npm http 200 https://registry.npmjs.org/type-is
npm info retry fetch attempt 1 at 12:39:01 PM
npm info attempt registry request try #1 at 12:39:01 PM
npm http fetch GET https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz
npm info retry fetch attempt 1 at 12:39:01 PM
npm info attempt registry request try #1 at 12:39:01 PM
npm http fetch GET https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz
npm info retry fetch attempt 1 at 12:39:01 PM
npm info attempt registry request try #1 at 12:39:01 PM
npm http fetch GET https://registry.npmjs.org/etag/-/etag-1.8.1.tgz
npm info retry fetch attempt 1 at 12:39:01 PM
npm info attempt registry request try #1 at 12:39:01 PM
npm http fetch GET https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.2.tgz
npm info retry fetch attempt 1 at 12:39:01 PM
npm info attempt registry request try #1 at 12:39:01 PM
npm http fetch GET https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz
npm info retry fetch attempt 1 at 12:39:01 PM
npm info attempt registry request try #1 at 12:39:01 PM
npm http fetch GET https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz
npm info retry fetch attempt 1 at 12:39:01 PM
npm info attempt registry request try #1 at 12:39:01 PM
npm http fetch GET https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz
npm info retry fetch attempt 1 at 12:39:01 PM
npm info attempt registry request try #1 at 12:39:01 PM
npm http fetch GET https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz
npm http fetch 200 https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz
npm http fetch 200 https://registry.npmjs.org/etag/-/etag-1.8.1.tgz
npm info retry fetch attempt 1 at 12:39:01 PM
npm info attempt registry request try #1 at 12:39:01 PM
npm http fetch GET https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.4.tgz
npm info retry fetch attempt 1 at 12:39:01 PM
npm info attempt registry request try #1 at 12:39:01 PM
npm http fetch GET https://registry.npmjs.org/parseurl/-/parseurl-1.3.2.tgz
npm info retry fetch attempt 1 at 12:39:01 PM
npm info attempt registry request try #1 at 12:39:01 PM
npm http fetch GET https://registry.npmjs.org/methods/-/methods-1.1.2.tgz
npm http fetch 200 https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz
npm info retry fetch attempt 1 at 12:39:01 PM
npm info attempt registry request try #1 at 12:39:01 PM
npm http fetch GET https://registry.npmjs.org/cookie/-/cookie-0.3.1.tgz
npm info retry fetch attempt 1 at 12:39:01 PM
npm info attempt registry request try #1 at 12:39:01 PM
npm http fetch GET https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz
npm info retry fetch attempt 1 at 12:39:01 PM
npm info attempt registry request try #1 at 12:39:01 PM
npm http fetch GET https://registry.npmjs.org/range-parser/-/range-parser-1.2.0.tgz
npm info retry fetch attempt 1 at 12:39:01 PM
npm info attempt registry request try #1 at 12:39:01 PM
npm http fetch GET https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz
npm http fetch 200 https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.2.tgz
npm http fetch 200 https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz
npm info retry fetch attempt 1 at 12:39:01 PM
npm info attempt registry request try #1 at 12:39:01 PM
npm http fetch GET https://registry.npmjs.org/depd/-/depd-1.1.2.tgz
npm http fetch 200 https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz
npm http fetch 200 https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz
npm http fetch 200 https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz
npm http fetch 200 https://registry.npmjs.org/cookie/-/cookie-0.3.1.tgz
npm http fetch 200 https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.4.tgz
npm http fetch 200 https://registry.npmjs.org/methods/-/methods-1.1.2.tgz
npm http fetch 200 https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz
npm http fetch 200 https://registry.npmjs.org/range-parser/-/range-parser-1.2.0.tgz
npm http fetch 200 https://registry.npmjs.org/parseurl/-/parseurl-1.3.2.tgz
npm http fetch 200 https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz
npm info retry fetch attempt 1 at 12:39:01 PM
npm info attempt registry request try #1 at 12:39:01 PM
npm http fetch GET https://registry.npmjs.org/send/-/send-0.16.2.tgz
npm info retry fetch attempt 1 at 12:39:01 PM
npm info attempt registry request try #1 at 12:39:01 PM
npm http fetch GET https://registry.npmjs.org/serve-static/-/serve-static-1.13.2.tgz
npm info retry fetch attempt 1 at 12:39:01 PM
npm info attempt registry request try #1 at 12:39:01 PM
npm http fetch GET https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz
npm info retry fetch attempt 1 at 12:39:01 PM
npm info attempt registry request try #1 at 12:39:01 PM
npm http fetch GET https://registry.npmjs.org/qs/-/qs-6.5.2.tgz
npm info retry fetch attempt 1 at 12:39:01 PM
npm info attempt registry request try #1 at 12:39:01 PM
npm http fetch GET https://registry.npmjs.org/body-parser/-/body-parser-1.18.3.tgz
npm http fetch 200 https://registry.npmjs.org/depd/-/depd-1.1.2.tgz
npm info retry fetch attempt 1 at 12:39:01 PM
npm info attempt registry request try #1 at 12:39:01 PM
npm http fetch GET https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz
npm info retry fetch attempt 1 at 12:39:01 PM
npm info attempt registry request try #1 at 12:39:01 PM
npm http fetch GET https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz
npm info retry fetch attempt 1 at 12:39:01 PM
npm info attempt registry request try #1 at 12:39:01 PM
npm http fetch GET https://registry.npmjs.org/statuses/-/statuses-1.4.0.tgz
npm info retry fetch attempt 1 at 12:39:01 PM
npm info attempt registry request try #1 at 12:39:01 PM
npm http fetch GET https://registry.npmjs.org/type-is/-/type-is-1.6.16.tgz
npm http fetch 200 https://registry.npmjs.org/send/-/send-0.16.2.tgz
npm http fetch 200 https://registry.npmjs.org/serve-static/-/serve-static-1.13.2.tgz
npm http fetch 200 https://registry.npmjs.org/qs/-/qs-6.5.2.tgz
npm http fetch 200 https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz
npm http fetch 200 https://registry.npmjs.org/body-parser/-/body-parser-1.18.3.tgz
npm http fetch 200 https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz
npm http fetch 200 https://registry.npmjs.org/type-is/-/type-is-1.6.16.tgz
npm http fetch 200 https://registry.npmjs.org/statuses/-/statuses-1.4.0.tgz
npm http fetch 200 https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz
npm info attempt registry request try #1 at 12:39:02 PM
npm http request GET https://registry.npmjs.org/http-errors
npm info attempt registry request try #1 at 12:39:02 PM
npm http request GET https://registry.npmjs.org/iconv-lite
npm info attempt registry request try #1 at 12:39:02 PM
npm http request GET https://registry.npmjs.org/raw-body
npm http 200 https://registry.npmjs.org/http-errors
npm http 200 https://registry.npmjs.org/raw-body
npm http 200 https://registry.npmjs.org/iconv-lite
npm info retry fetch attempt 1 at 12:39:02 PM
npm info attempt registry request try #1 at 12:39:02 PM
npm http fetch GET https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz
npm info retry fetch attempt 1 at 12:39:02 PM
npm info attempt registry request try #1 at 12:39:02 PM
npm http fetch GET https://registry.npmjs.org/raw-body/-/raw-body-2.3.3.tgz
npm info retry fetch attempt 1 at 12:39:02 PM
npm info attempt registry request try #1 at 12:39:02 PM
npm http fetch GET https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.23.tgz
npm http fetch 200 https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz
npm http fetch 200 https://registry.npmjs.org/raw-body/-/raw-body-2.3.3.tgz
npm http fetch 200 https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.23.tgz
npm info attempt registry request try #1 at 12:39:02 PM
npm http request GET https://registry.npmjs.org/inherits
npm http 200 https://registry.npmjs.org/inherits
npm info retry fetch attempt 1 at 12:39:02 PM
npm info attempt registry request try #1 at 12:39:02 PM
npm http fetch GET https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz
npm http fetch 200 https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz
npm info attempt registry request try #1 at 12:39:02 PM
npm http request GET https://registry.npmjs.org/safer-buffer
npm http 200 https://registry.npmjs.org/safer-buffer
npm info retry fetch attempt 1 at 12:39:02 PM
npm info attempt registry request try #1 at 12:39:02 PM
npm http fetch GET https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz
npm http fetch 200 https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz
npm info attempt registry request try #1 at 12:39:02 PM
npm http request GET https://registry.npmjs.org/ee-first
npm http 200 https://registry.npmjs.org/ee-first
npm info retry fetch attempt 1 at 12:39:02 PM
npm info attempt registry request try #1 at 12:39:02 PM
npm http fetch GET https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz
npm http fetch 200 https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz
npm info attempt registry request try #1 at 12:39:03 PM
npm http request GET https://registry.npmjs.org/unpipe
npm http 200 https://registry.npmjs.org/unpipe
npm info retry fetch attempt 1 at 12:39:03 PM
npm info attempt registry request try #1 at 12:39:03 PM
npm http fetch GET https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz
npm info attempt registry request try #1 at 12:39:03 PM
npm http request GET https://registry.npmjs.org/media-typer
npm http 200 https://registry.npmjs.org/media-typer
npm info retry fetch attempt 1 at 12:39:03 PM
npm info attempt registry request try #1 at 12:39:03 PM
npm http fetch GET https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz
npm http fetch 200 https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz
npm info attempt registry request try #1 at 12:39:03 PM
npm http request GET https://registry.npmjs.org/forwarded
npm info attempt registry request try #1 at 12:39:03 PM
npm http request GET https://registry.npmjs.org/ipaddr.js
npm http 200 https://registry.npmjs.org/forwarded
npm info retry fetch attempt 1 at 12:39:03 PM
npm info attempt registry request try #1 at 12:39:03 PM
npm http fetch GET https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz
npm http 200 https://registry.npmjs.org/ipaddr.js
npm info retry fetch attempt 1 at 12:39:03 PM
npm info attempt registry request try #1 at 12:39:03 PM
npm http fetch GET https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.8.0.tgz
npm http fetch 200 https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz
npm http fetch 200 https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.8.0.tgz
npm info attempt registry request try #1 at 12:39:03 PM
npm http request GET https://registry.npmjs.org/destroy
npm info attempt registry request try #1 at 12:39:03 PM
npm http request GET https://registry.npmjs.org/mime
npm http 200 https://registry.npmjs.org/destroy
npm http 200 https://registry.npmjs.org/mime
npm info retry fetch attempt 1 at 12:39:03 PM
npm info attempt registry request try #1 at 12:39:03 PM
npm http fetch GET https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz
npm info retry fetch attempt 1 at 12:39:03 PM
npm info attempt registry request try #1 at 12:39:03 PM
npm http fetch GET https://registry.npmjs.org/mime/-/mime-1.4.1.tgz
npm http fetch 200 https://registry.npmjs.org/mime/-/mime-1.4.1.tgz
npm http fetch 200 https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz
npm info attempt registry request try #1 at 12:39:03 PM
npm http request GET https://registry.npmjs.org/glob
npm info attempt registry request try #1 at 12:39:03 PM
npm http request GET https://registry.npmjs.org/graceful-fs
npm info attempt registry request try #1 at 12:39:03 PM
npm http request GET https://registry.npmjs.org/handlebars
npm info attempt registry request try #1 at 12:39:03 PM
npm http request GET https://registry.npmjs.org/object.assign
npm info attempt registry request try #1 at 12:39:03 PM
npm http request GET https://registry.npmjs.org/promise
npm http 200 https://registry.npmjs.org/object.assign
npm info retry fetch attempt 1 at 12:39:03 PM
npm info attempt registry request try #1 at 12:39:03 PM
npm http fetch GET https://registry.npmjs.org/object.assign/-/object.assign-4.1.0.tgz
npm http 200 https://registry.npmjs.org/graceful-fs
npm http 200 https://registry.npmjs.org/promise
npm http 200 https://registry.npmjs.org/handlebars
npm http 200 https://registry.npmjs.org/glob
npm info retry fetch attempt 1 at 12:39:03 PM
npm info attempt registry request try #1 at 12:39:03 PM
npm http fetch GET https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.15.tgz
npm info retry fetch attempt 1 at 12:39:03 PM
npm info attempt registry request try #1 at 12:39:03 PM
npm http fetch GET https://registry.npmjs.org/promise/-/promise-8.0.3.tgz
npm http fetch 200 https://registry.npmjs.org/object.assign/-/object.assign-4.1.0.tgz
npm info retry fetch attempt 1 at 12:39:03 PM
npm info attempt registry request try #1 at 12:39:03 PM
npm http fetch GET https://registry.npmjs.org/handlebars/-/handlebars-4.1.1.tgz
npm info retry fetch attempt 1 at 12:39:03 PM
npm info attempt registry request try #1 at 12:39:03 PM
npm http fetch GET https://registry.npmjs.org/glob/-/glob-7.1.3.tgz
npm http fetch 200 https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.15.tgz
npm http fetch 200 https://registry.npmjs.org/promise/-/promise-8.0.3.tgz
npm http fetch 200 https://registry.npmjs.org/handlebars/-/handlebars-4.1.1.tgz
npm http fetch 200 https://registry.npmjs.org/glob/-/glob-7.1.3.tgz
npm info attempt registry request try #1 at 12:39:04 PM
npm http request GET https://registry.npmjs.org/fs.realpath
npm info attempt registry request try #1 at 12:39:04 PM
npm http request GET https://registry.npmjs.org/inflight
npm info attempt registry request try #1 at 12:39:04 PM
npm http request GET https://registry.npmjs.org/minimatch
npm info attempt registry request try #1 at 12:39:04 PM
npm http request GET https://registry.npmjs.org/once
npm info attempt registry request try #1 at 12:39:04 PM
npm http request GET https://registry.npmjs.org/path-is-absolute
npm http 200 https://registry.npmjs.org/minimatch
npm http 200 https://registry.npmjs.org/once
npm http 200 https://registry.npmjs.org/inflight
npm http 200 https://registry.npmjs.org/path-is-absolute
npm http 200 https://registry.npmjs.org/fs.realpath
npm info retry fetch attempt 1 at 12:39:04 PM
npm info attempt registry request try #1 at 12:39:04 PM
npm http fetch GET https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz
npm info retry fetch attempt 1 at 12:39:04 PM
npm info attempt registry request try #1 at 12:39:04 PM
npm http fetch GET https://registry.npmjs.org/once/-/once-1.4.0.tgz
npm info retry fetch attempt 1 at 12:39:04 PM
npm info attempt registry request try #1 at 12:39:04 PM
npm http fetch GET https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz
npm info retry fetch attempt 1 at 12:39:04 PM
npm info attempt registry request try #1 at 12:39:04 PM
npm http fetch GET https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz
npm info retry fetch attempt 1 at 12:39:04 PM
npm info attempt registry request try #1 at 12:39:04 PM
npm http fetch GET https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz
npm http fetch 200 https://registry.npmjs.org/once/-/once-1.4.0.tgz
npm http fetch 200 https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz
npm http fetch 200 https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz
npm http fetch 200 https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz
npm info attempt registry request try #1 at 12:39:04 PM
npm http request GET https://registry.npmjs.org/wrappy
npm http 200 https://registry.npmjs.org/wrappy
npm info retry fetch attempt 1 at 12:39:04 PM
npm info attempt registry request try #1 at 12:39:04 PM
npm http fetch GET https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz
npm http fetch 200 https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz
npm info attempt registry request try #1 at 12:39:04 PM
npm http request GET https://registry.npmjs.org/brace-expansion
npm http 200 https://registry.npmjs.org/brace-expansion
npm info retry fetch attempt 1 at 12:39:04 PM
npm info attempt registry request try #1 at 12:39:04 PM
npm http fetch GET https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz
npm http fetch 200 https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz
npm info attempt registry request try #1 at 12:39:04 PM
npm http request GET https://registry.npmjs.org/balanced-match
npm info attempt registry request try #1 at 12:39:04 PM
npm http request GET https://registry.npmjs.org/concat-map
npm http 200 https://registry.npmjs.org/concat-map
npm info retry fetch attempt 1 at 12:39:04 PM
npm info attempt registry request try #1 at 12:39:04 PM
npm http fetch GET https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz
npm http 200 https://registry.npmjs.org/balanced-match
npm info retry fetch attempt 1 at 12:39:04 PM
npm info attempt registry request try #1 at 12:39:04 PM
npm http fetch GET https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz
npm http fetch 200 https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz
npm info attempt registry request try #1 at 12:39:04 PM
npm http request GET https://registry.npmjs.org/neo-async
npm info attempt registry request try #1 at 12:39:04 PM
npm http request GET https://registry.npmjs.org/optimist
npm info attempt registry request try #1 at 12:39:04 PM
npm http request GET https://registry.npmjs.org/source-map
npm info attempt registry request try #1 at 12:39:04 PM
npm http request GET https://registry.npmjs.org/uglify-js
npm http 200 https://registry.npmjs.org/optimist
npm http 200 https://registry.npmjs.org/neo-async
npm info retry fetch attempt 1 at 12:39:05 PM
npm info attempt registry request try #1 at 12:39:05 PM
npm http fetch GET https://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz
npm http 200 https://registry.npmjs.org/source-map
npm info retry fetch attempt 1 at 12:39:05 PM
npm info attempt registry request try #1 at 12:39:05 PM
npm http fetch GET https://registry.npmjs.org/neo-async/-/neo-async-2.6.0.tgz
npm info retry fetch attempt 1 at 12:39:05 PM
npm info attempt registry request try #1 at 12:39:05 PM
npm http fetch GET https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz
npm http 200 https://registry.npmjs.org/uglify-js
npm http fetch 200 https://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz
npm http fetch 200 https://registry.npmjs.org/neo-async/-/neo-async-2.6.0.tgz
npm info retry fetch attempt 1 at 12:39:05 PM
npm info attempt registry request try #1 at 12:39:05 PM
npm http fetch GET https://registry.npmjs.org/uglify-js/-/uglify-js-3.5.3.tgz
npm http fetch 200 https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz
npm http fetch 200 https://registry.npmjs.org/uglify-js/-/uglify-js-3.5.3.tgz
npm info attempt registry request try #1 at 12:39:05 PM
npm http request GET https://registry.npmjs.org/wordwrap
npm info attempt registry request try #1 at 12:39:05 PM
npm http request GET https://registry.npmjs.org/minimist
npm http 200 https://registry.npmjs.org/minimist
npm info retry fetch attempt 1 at 12:39:05 PM
npm info attempt registry request try #1 at 12:39:05 PM
npm http fetch GET https://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz
npm http 200 https://registry.npmjs.org/wordwrap
npm info retry fetch attempt 1 at 12:39:05 PM
npm info attempt registry request try #1 at 12:39:05 PM
npm http fetch GET https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz
npm http fetch 200 https://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz
npm http fetch 200 https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz
npm info attempt registry request try #1 at 12:39:05 PM
npm http request GET https://registry.npmjs.org/commander
npm http 200 https://registry.npmjs.org/commander
npm info retry fetch attempt 1 at 12:39:05 PM
npm info attempt registry request try #1 at 12:39:05 PM
npm http fetch GET https://registry.npmjs.org/commander/-/commander-2.19.0.tgz
npm http fetch 200 https://registry.npmjs.org/commander/-/commander-2.19.0.tgz
npm info attempt registry request try #1 at 12:39:05 PM
npm http request GET https://registry.npmjs.org/define-properties
npm info attempt registry request try #1 at 12:39:05 PM
npm http request GET https://registry.npmjs.org/function-bind
npm info attempt registry request try #1 at 12:39:05 PM
npm http request GET https://registry.npmjs.org/has-symbols
npm info attempt registry request try #1 at 12:39:05 PM
npm http request GET https://registry.npmjs.org/object-keys
npm http 200 https://registry.npmjs.org/function-bind
npm http 200 https://registry.npmjs.org/object-keys
npm http 200 https://registry.npmjs.org/define-properties
npm http 200 https://registry.npmjs.org/has-symbols
npm info retry fetch attempt 1 at 12:39:05 PM
npm info attempt registry request try #1 at 12:39:05 PM
npm http fetch GET https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz
npm info retry fetch attempt 1 at 12:39:05 PM
npm info attempt registry request try #1 at 12:39:05 PM
npm http fetch GET https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz
npm info retry fetch attempt 1 at 12:39:05 PM
npm info attempt registry request try #1 at 12:39:05 PM
npm http fetch GET https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz
npm info retry fetch attempt 1 at 12:39:05 PM
npm info attempt registry request try #1 at 12:39:05 PM
npm http fetch GET https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz
npm http fetch 200 https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz
npm http fetch 200 https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz
npm info attempt registry request try #1 at 12:39:05 PM
npm http request GET https://registry.npmjs.org/argparse
npm info attempt registry request try #1 at 12:39:05 PM
npm http request GET https://registry.npmjs.org/esprima
npm http 200 https://registry.npmjs.org/esprima
npm http 200 https://registry.npmjs.org/argparse
npm info retry fetch attempt 1 at 12:39:06 PM
npm info attempt registry request try #1 at 12:39:06 PM
npm http fetch GET https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz
npm info retry fetch attempt 1 at 12:39:06 PM
npm info attempt registry request try #1 at 12:39:06 PM
npm http fetch GET https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz
npm http fetch 200 https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz
npm http fetch 200 https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz
npm info attempt registry request try #1 at 12:39:06 PM
npm http request GET https://registry.npmjs.org/sprintf-js
npm http 200 https://registry.npmjs.org/sprintf-js
npm info retry fetch attempt 1 at 12:39:06 PM
npm info attempt registry request try #1 at 12:39:06 PM
npm http fetch GET https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz
npm http fetch 200 https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz
npm info attempt registry request try #1 at 12:39:06 PM
npm http request GET https://registry.npmjs.org/aws-sign2
npm info attempt registry request try #1 at 12:39:06 PM
npm http request GET https://registry.npmjs.org/aws4
npm info attempt registry request try #1 at 12:39:06 PM
npm http request GET https://registry.npmjs.org/caseless
npm info attempt registry request try #1 at 12:39:06 PM
npm http request GET https://registry.npmjs.org/combined-stream
npm info attempt registry request try #1 at 12:39:06 PM
npm http request GET https://registry.npmjs.org/extend
npm info attempt registry request try #1 at 12:39:06 PM
npm http request GET https://registry.npmjs.org/forever-agent
npm info attempt registry request try #1 at 12:39:06 PM
npm http request GET https://registry.npmjs.org/form-data
npm info attempt registry request try #1 at 12:39:06 PM
npm http request GET https://registry.npmjs.org/har-validator
npm info attempt registry request try #1 at 12:39:06 PM
npm http request GET https://registry.npmjs.org/http-signature
npm info attempt registry request try #1 at 12:39:06 PM
npm http request GET https://registry.npmjs.org/is-typedarray
npm info attempt registry request try #1 at 12:39:06 PM
npm http request GET https://registry.npmjs.org/isstream
npm info attempt registry request try #1 at 12:39:06 PM
npm http request GET https://registry.npmjs.org/json-stringify-safe
npm info attempt registry request try #1 at 12:39:06 PM
npm http request GET https://registry.npmjs.org/oauth-sign
npm info attempt registry request try #1 at 12:39:06 PM
npm http request GET https://registry.npmjs.org/performance-now
npm info attempt registry request try #1 at 12:39:06 PM
npm http request GET https://registry.npmjs.org/tough-cookie
npm info attempt registry request try #1 at 12:39:06 PM
npm http request GET https://registry.npmjs.org/tunnel-agent
npm http 200 https://registry.npmjs.org/caseless
npm http 200 https://registry.npmjs.org/extend
npm http 200 https://registry.npmjs.org/aws-sign2
npm http 200 https://registry.npmjs.org/isstream
npm http 200 https://registry.npmjs.org/performance-now
npm http 200 https://registry.npmjs.org/oauth-sign
npm http 200 https://registry.npmjs.org/forever-agent
npm http 200 https://registry.npmjs.org/json-stringify-safe
npm http 200 https://registry.npmjs.org/tunnel-agent
npm http 200 https://registry.npmjs.org/is-typedarray
npm http 200 https://registry.npmjs.org/http-signature
npm http 200 https://registry.npmjs.org/combined-stream
npm http 200 https://registry.npmjs.org/aws4
npm http 200 https://registry.npmjs.org/form-data
npm http 200 https://registry.npmjs.org/har-validator
npm http 200 https://registry.npmjs.org/tough-cookie
npm info retry fetch attempt 1 at 12:39:06 PM
npm info attempt registry request try #1 at 12:39:06 PM
npm http fetch GET https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz
npm info retry fetch attempt 1 at 12:39:06 PM
npm info attempt registry request try #1 at 12:39:06 PM
npm http fetch GET https://registry.npmjs.org/extend/-/extend-3.0.2.tgz
npm info retry fetch attempt 1 at 12:39:06 PM
npm info attempt registry request try #1 at 12:39:06 PM
npm http fetch GET https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz
npm info retry fetch attempt 1 at 12:39:06 PM
npm info attempt registry request try #1 at 12:39:06 PM
npm http fetch GET https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz
npm info retry fetch attempt 1 at 12:39:06 PM
npm info attempt registry request try #1 at 12:39:06 PM
npm http fetch GET https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz
npm info retry fetch attempt 1 at 12:39:06 PM
npm info attempt registry request try #1 at 12:39:06 PM
npm http fetch GET https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz
npm info retry fetch attempt 1 at 12:39:06 PM
npm info attempt registry request try #1 at 12:39:06 PM
npm http fetch GET https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz
npm info retry fetch attempt 1 at 12:39:06 PM
npm info attempt registry request try #1 at 12:39:06 PM
npm http fetch GET https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz
npm info retry fetch attempt 1 at 12:39:06 PM
npm info attempt registry request try #1 at 12:39:06 PM
npm http fetch GET https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz
npm info retry fetch attempt 1 at 12:39:06 PM
npm info attempt registry request try #1 at 12:39:06 PM
npm http fetch GET https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz
npm info retry fetch attempt 1 at 12:39:06 PM
npm info attempt registry request try #1 at 12:39:06 PM
npm http fetch GET https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz
npm http fetch 200 https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz
npm http fetch 200 https://registry.npmjs.org/extend/-/extend-3.0.2.tgz
npm info retry fetch attempt 1 at 12:39:06 PM
npm info attempt registry request try #1 at 12:39:06 PM
npm http fetch GET https://registry.npmjs.org/aws4/-/aws4-1.8.0.tgz
npm info retry fetch attempt 1 at 12:39:06 PM
npm info attempt registry request try #1 at 12:39:06 PM
npm http fetch GET https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.7.tgz
npm info retry fetch attempt 1 at 12:39:06 PM
npm info attempt registry request try #1 at 12:39:06 PM
npm http fetch GET https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz
npm info retry fetch attempt 1 at 12:39:06 PM
npm info attempt registry request try #1 at 12:39:06 PM
npm http fetch GET https://registry.npmjs.org/har-validator/-/har-validator-5.1.3.tgz
npm info retry fetch attempt 1 at 12:39:06 PM
npm info attempt registry request try #1 at 12:39:06 PM
npm http fetch GET https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.4.3.tgz
npm http fetch 200 https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz
npm http fetch 200 https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz
npm http fetch 200 https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz
npm http fetch 200 https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz
npm http fetch 200 https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz
npm http fetch 200 https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz
npm http fetch 200 https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz
npm http fetch 200 https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz
npm http fetch 200 https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.4.3.tgz
npm http fetch 200 https://registry.npmjs.org/aws4/-/aws4-1.8.0.tgz
npm http fetch 200 https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.7.tgz
npm http fetch 200 https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz
npm http fetch 200 https://registry.npmjs.org/har-validator/-/har-validator-5.1.3.tgz
npm info attempt registry request try #1 at 12:39:06 PM
npm http request GET https://registry.npmjs.org/delayed-stream
npm http 200 https://registry.npmjs.org/delayed-stream
npm info retry fetch attempt 1 at 12:39:06 PM
npm info attempt registry request try #1 at 12:39:06 PM
npm http fetch GET https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz
npm info attempt registry request try #1 at 12:39:07 PM
npm http request GET https://registry.npmjs.org/asynckit
npm http 200 https://registry.npmjs.org/asynckit
npm info retry fetch attempt 1 at 12:39:07 PM
npm info attempt registry request try #1 at 12:39:07 PM
npm http fetch GET https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz
npm http fetch 200 https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz
npm info attempt registry request try #1 at 12:39:07 PM
npm http request GET https://registry.npmjs.org/ajv
npm info attempt registry request try #1 at 12:39:07 PM
npm http request GET https://registry.npmjs.org/har-schema
npm http 200 https://registry.npmjs.org/har-schema
npm info retry fetch attempt 1 at 12:39:07 PM
npm info attempt registry request try #1 at 12:39:07 PM
npm http fetch GET https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz
npm http 200 https://registry.npmjs.org/ajv
npm http fetch 200 https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz
npm info retry fetch attempt 1 at 12:39:07 PM
npm info attempt registry request try #1 at 12:39:07 PM
npm http fetch GET https://registry.npmjs.org/ajv/-/ajv-6.10.0.tgz
npm http fetch 200 https://registry.npmjs.org/ajv/-/ajv-6.10.0.tgz
npm info attempt registry request try #1 at 12:39:07 PM
npm http request GET https://registry.npmjs.org/fast-deep-equal
npm info attempt registry request try #1 at 12:39:07 PM
npm http request GET https://registry.npmjs.org/fast-json-stable-stringify
npm info attempt registry request try #1 at 12:39:07 PM
npm http request GET https://registry.npmjs.org/json-schema-traverse
npm info attempt registry request try #1 at 12:39:07 PM
npm http request GET https://registry.npmjs.org/uri-js
npm http 200 https://registry.npmjs.org/json-schema-traverse
npm http 200 https://registry.npmjs.org/fast-deep-equal
npm info retry fetch attempt 1 at 12:39:07 PM
npm info attempt registry request try #1 at 12:39:07 PM
npm http fetch GET https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz
npm info retry fetch attempt 1 at 12:39:07 PM
npm info attempt registry request try #1 at 12:39:07 PM
npm http fetch GET https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz
npm http 200 https://registry.npmjs.org/fast-json-stable-stringify
npm http 200 https://registry.npmjs.org/uri-js
npm info retry fetch attempt 1 at 12:39:07 PM
npm info attempt registry request try #1 at 12:39:07 PM
npm http fetch GET https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz
npm info retry fetch attempt 1 at 12:39:07 PM
npm info attempt registry request try #1 at 12:39:07 PM
npm http fetch GET https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz
npm http fetch 200 https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz
npm http fetch 200 https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz
npm http fetch 200 https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz
npm info attempt registry request try #1 at 12:39:07 PM
npm http request GET https://registry.npmjs.org/punycode
npm http 200 https://registry.npmjs.org/punycode
npm info retry fetch attempt 1 at 12:39:07 PM
npm info attempt registry request try #1 at 12:39:07 PM
npm http fetch GET https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz
npm http fetch 200 https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz
npm info attempt registry request try #1 at 12:39:07 PM
npm http request GET https://registry.npmjs.org/assert-plus
npm info attempt registry request try #1 at 12:39:07 PM
npm http request GET https://registry.npmjs.org/jsprim
npm info attempt registry request try #1 at 12:39:07 PM
npm http request GET https://registry.npmjs.org/sshpk
npm http 200 https://registry.npmjs.org/assert-plus
npm info retry fetch attempt 1 at 12:39:08 PM
npm info attempt registry request try #1 at 12:39:08 PM
npm http fetch GET https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz
npm http 200 https://registry.npmjs.org/sshpk
npm http 200 https://registry.npmjs.org/jsprim
npm info retry fetch attempt 1 at 12:39:08 PM
npm info attempt registry request try #1 at 12:39:08 PM
npm http fetch GET https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz
npm info retry fetch attempt 1 at 12:39:08 PM
npm info attempt registry request try #1 at 12:39:08 PM
npm http fetch GET https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz
npm http fetch 200 https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz
npm http fetch 200 https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz
npm info attempt registry request try #1 at 12:39:08 PM
npm http request GET https://registry.npmjs.org/extsprintf
npm info attempt registry request try #1 at 12:39:08 PM
npm http request GET https://registry.npmjs.org/json-schema
npm info attempt registry request try #1 at 12:39:08 PM
npm http request GET https://registry.npmjs.org/verror
npm http 200 https://registry.npmjs.org/extsprintf
npm http 200 https://registry.npmjs.org/json-schema
npm info retry fetch attempt 1 at 12:39:08 PM
npm info attempt registry request try #1 at 12:39:08 PM
npm http fetch GET https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz
npm http 200 https://registry.npmjs.org/verror
npm info retry fetch attempt 1 at 12:39:08 PM
npm info attempt registry request try #1 at 12:39:08 PM
npm http fetch GET https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz
npm info retry fetch attempt 1 at 12:39:08 PM
npm info attempt registry request try #1 at 12:39:08 PM
npm http fetch GET https://registry.npmjs.org/verror/-/verror-1.10.0.tgz
npm http fetch 200 https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz
npm http fetch 200 https://registry.npmjs.org/verror/-/verror-1.10.0.tgz
npm http fetch 200 https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz
npm info attempt registry request try #1 at 12:39:08 PM
npm http request GET https://registry.npmjs.org/core-util-is
npm http 200 https://registry.npmjs.org/core-util-is
npm info retry fetch attempt 1 at 12:39:08 PM
npm info attempt registry request try #1 at 12:39:08 PM
npm http fetch GET https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz
npm http fetch 200 https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz
npm info attempt registry request try #1 at 12:39:08 PM
npm http request GET https://registry.npmjs.org/asn1
npm info attempt registry request try #1 at 12:39:08 PM
npm http request GET https://registry.npmjs.org/dashdash
npm info attempt registry request try #1 at 12:39:08 PM
npm http request GET https://registry.npmjs.org/getpass
npm info attempt registry request try #1 at 12:39:08 PM
npm http request GET https://registry.npmjs.org/jsbn
npm info attempt registry request try #1 at 12:39:08 PM
npm http request GET https://registry.npmjs.org/tweetnacl
npm info attempt registry request try #1 at 12:39:08 PM
npm http request GET https://registry.npmjs.org/ecc-jsbn
npm info attempt registry request try #1 at 12:39:08 PM
npm http request GET https://registry.npmjs.org/bcrypt-pbkdf
npm http 200 https://registry.npmjs.org/ecc-jsbn
npm http 200 https://registry.npmjs.org/jsbn
npm info retry fetch attempt 1 at 12:39:08 PM
npm info attempt registry request try #1 at 12:39:08 PM
npm http fetch GET https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz
npm http 200 https://registry.npmjs.org/dashdash
npm http 200 https://registry.npmjs.org/asn1
npm http 200 https://registry.npmjs.org/getpass
npm http 200 https://registry.npmjs.org/tweetnacl
npm info retry fetch attempt 1 at 12:39:08 PM
npm info attempt registry request try #1 at 12:39:08 PM
npm http fetch GET https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz
npm info retry fetch attempt 1 at 12:39:08 PM
npm info attempt registry request try #1 at 12:39:08 PM
npm http fetch GET https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz
npm info retry fetch attempt 1 at 12:39:08 PM
npm info attempt registry request try #1 at 12:39:08 PM
npm http fetch GET https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz
npm info retry fetch attempt 1 at 12:39:08 PM
npm info attempt registry request try #1 at 12:39:08 PM
npm http fetch GET https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz
npm info retry fetch attempt 1 at 12:39:08 PM
npm info attempt registry request try #1 at 12:39:08 PM
npm http fetch GET https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz
npm http fetch 200 https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz
npm http fetch 200 https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz
npm http 200 https://registry.npmjs.org/bcrypt-pbkdf
npm http fetch 200 https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz
npm http fetch 200 https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz
npm http fetch 200 https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz
npm http fetch 200 https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz
npm info retry fetch attempt 1 at 12:39:08 PM
npm info attempt registry request try #1 at 12:39:08 PM
npm http fetch GET https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz
npm http fetch 200 https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz
npm info attempt registry request try #1 at 12:39:08 PM
npm http request GET https://registry.npmjs.org/psl
npm info retry fetch attempt 1 at 12:39:08 PM
npm info attempt registry request try #1 at 12:39:08 PM
npm http fetch GET https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz
npm http fetch 200 https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz
npm http 200 https://registry.npmjs.org/psl
npm info retry fetch attempt 1 at 12:39:08 PM
npm info attempt registry request try #1 at 12:39:08 PM
npm http fetch GET https://registry.npmjs.org/psl/-/psl-1.1.31.tgz
npm http fetch 200 https://registry.npmjs.org/psl/-/psl-1.1.31.tgz
npm info retry fetch attempt 1 at 12:39:09 PM
npm info attempt registry request try #1 at 12:39:09 PM
npm http fetch GET https://registry.npmjs.org/ms/-/ms-2.1.1.tgz
npm info retry fetch attempt 1 at 12:39:09 PM
npm info attempt registry request try #1 at 12:39:09 PM
npm http fetch GET https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz
npm http fetch 200 https://registry.npmjs.org/ms/-/ms-2.1.1.tgz
npm http fetch 200 https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz
npm info attempt registry request try #1 at 12:39:09 PM
npm http request GET https://registry.npmjs.org/bluebird
npm info attempt registry request try #1 at 12:39:09 PM
npm http request GET https://registry.npmjs.org/bunyan
npm info attempt registry request try #1 at 12:39:09 PM
npm http request GET https://registry.npmjs.org/bunyan-syslog-udp
npm info attempt registry request try #1 at 12:39:09 PM
npm http request GET https://registry.npmjs.org/gelf-stream
npm info attempt registry request try #1 at 12:39:09 PM
npm http request GET https://registry.npmjs.org/hot-shots
npm info attempt registry request try #1 at 12:39:09 PM
npm http request GET https://registry.npmjs.org/limitation
npm info attempt registry request try #1 at 12:39:09 PM
npm http request GET https://registry.npmjs.org/dnscache
npm info attempt registry request try #1 at 12:39:09 PM
npm http request GET https://registry.npmjs.org/gc-stats
npm info attempt registry request try #1 at 12:39:09 PM
npm http request GET https://registry.npmjs.org/heapdump
npm info attempt registry request try #1 at 12:39:09 PM
npm http request GET https://registry.npmjs.org/yargs
npm http 304 https://registry.npmjs.org/yargs
npm info retry fetch attempt 1 at 12:39:09 PM
npm info attempt registry request try #1 at 12:39:09 PM
npm http fetch GET https://registry.npmjs.org/yargs/-/yargs-12.0.5.tgz
npm http 200 https://registry.npmjs.org/bunyan
npm http 200 https://registry.npmjs.org/bluebird
npm info retry fetch attempt 1 at 12:39:09 PM
npm info attempt registry request try #1 at 12:39:09 PM
npm http fetch GET https://registry.npmjs.org/bunyan/-/bunyan-1.8.12.tgz
npm http fetch 200 https://registry.npmjs.org/yargs/-/yargs-12.0.5.tgz
npm info retry fetch attempt 1 at 12:39:09 PM
npm info attempt registry request try #1 at 12:39:09 PM
npm http fetch GET https://registry.npmjs.org/bluebird/-/bluebird-3.5.4.tgz
npm http fetch 200 https://registry.npmjs.org/bunyan/-/bunyan-1.8.12.tgz
npm http fetch 200 https://registry.npmjs.org/bluebird/-/bluebird-3.5.4.tgz
npm http 200 https://registry.npmjs.org/gc-stats
npm info retry fetch attempt 1 at 12:39:10 PM
npm info attempt registry request try #1 at 12:39:10 PM
npm http fetch GET https://registry.npmjs.org/gc-stats/-/gc-stats-1.2.1.tgz
npm http 200 https://registry.npmjs.org/dnscache
npm http 200 https://registry.npmjs.org/bunyan-syslog-udp
npm http 200 https://registry.npmjs.org/heapdump
npm info retry fetch attempt 1 at 12:39:10 PM
npm info attempt registry request try #1 at 12:39:10 PM
npm http fetch GET https://registry.npmjs.org/dnscache/-/dnscache-1.0.1.tgz
npm http 200 https://registry.npmjs.org/limitation
npm info retry fetch attempt 1 at 12:39:10 PM
npm info attempt registry request try #1 at 12:39:10 PM
npm http fetch GET https://registry.npmjs.org/bunyan-syslog-udp/-/bunyan-syslog-udp-0.2.0.tgz
npm http fetch 200 https://registry.npmjs.org/gc-stats/-/gc-stats-1.2.1.tgz
npm http 200 https://registry.npmjs.org/gelf-stream
npm info retry fetch attempt 1 at 12:39:10 PM
npm info attempt registry request try #1 at 12:39:10 PM
npm http fetch GET https://registry.npmjs.org/heapdump/-/heapdump-0.3.12.tgz
npm info retry fetch attempt 1 at 12:39:10 PM
npm info attempt registry request try #1 at 12:39:10 PM
npm http fetch GET https://registry.npmjs.org/limitation/-/limitation-0.2.1.tgz
npm info retry fetch attempt 1 at 12:39:10 PM
npm info attempt registry request try #1 at 12:39:10 PM
npm http fetch GET https://registry.npmjs.org/gelf-stream/-/gelf-stream-1.1.1.tgz
npm http fetch 200 https://registry.npmjs.org/dnscache/-/dnscache-1.0.1.tgz
npm http fetch 200 https://registry.npmjs.org/heapdump/-/heapdump-0.3.12.tgz
npm http 200 https://registry.npmjs.org/hot-shots
npm info retry fetch attempt 1 at 12:39:10 PM
npm info attempt registry request try #1 at 12:39:10 PM
npm http fetch GET https://registry.npmjs.org/hot-shots/-/hot-shots-5.9.2.tgz
npm http fetch 200 https://registry.npmjs.org/limitation/-/limitation-0.2.1.tgz
npm http fetch 200 https://registry.npmjs.org/bunyan-syslog-udp/-/bunyan-syslog-udp-0.2.0.tgz
npm http fetch 200 https://registry.npmjs.org/gelf-stream/-/gelf-stream-1.1.1.tgz
npm http fetch 200 https://registry.npmjs.org/hot-shots/-/hot-shots-5.9.2.tgz
npm info attempt registry request try #1 at 12:39:12 PM
npm http request GET https://registry.npmjs.org/dtrace-provider
npm info attempt registry request try #1 at 12:39:12 PM
npm http request GET https://registry.npmjs.org/mv
npm info attempt registry request try #1 at 12:39:12 PM
npm http request GET https://registry.npmjs.org/safe-json-stringify
npm info attempt registry request try #1 at 12:39:12 PM
npm http request GET https://registry.npmjs.org/moment
npm http 200 https://registry.npmjs.org/safe-json-stringify
npm http 200 https://registry.npmjs.org/mv
npm http 200 https://registry.npmjs.org/moment
npm http 200 https://registry.npmjs.org/dtrace-provider
npm info retry fetch attempt 1 at 12:39:12 PM
npm info attempt registry request try #1 at 12:39:12 PM
npm http fetch GET https://registry.npmjs.org/safe-json-stringify/-/safe-json-stringify-1.2.0.tgz
npm info retry fetch attempt 1 at 12:39:12 PM
npm info attempt registry request try #1 at 12:39:12 PM
npm http fetch GET https://registry.npmjs.org/mv/-/mv-2.1.1.tgz
npm info retry fetch attempt 1 at 12:39:12 PM
npm info attempt registry request try #1 at 12:39:12 PM
npm http fetch GET https://registry.npmjs.org/moment/-/moment-2.24.0.tgz
npm info retry fetch attempt 1 at 12:39:12 PM
npm info attempt registry request try #1 at 12:39:12 PM
npm http fetch GET https://registry.npmjs.org/dtrace-provider/-/dtrace-provider-0.8.7.tgz
npm http fetch 200 https://registry.npmjs.org/mv/-/mv-2.1.1.tgz
npm http fetch 200 https://registry.npmjs.org/safe-json-stringify/-/safe-json-stringify-1.2.0.tgz
npm http fetch 200 https://registry.npmjs.org/dtrace-provider/-/dtrace-provider-0.8.7.tgz
npm http fetch 200 https://registry.npmjs.org/moment/-/moment-2.24.0.tgz
npm info attempt registry request try #1 at 12:39:12 PM
npm http request GET https://registry.npmjs.org/nan
npm http 200 https://registry.npmjs.org/nan
npm info retry fetch attempt 1 at 12:39:13 PM
npm info attempt registry request try #1 at 12:39:13 PM
npm http fetch GET https://registry.npmjs.org/nan/-/nan-2.13.2.tgz
npm http fetch 200 https://registry.npmjs.org/nan/-/nan-2.13.2.tgz
npm info attempt registry request try #1 at 12:39:13 PM
npm http request GET https://registry.npmjs.org/mkdirp
npm info attempt registry request try #1 at 12:39:13 PM
npm http request GET https://registry.npmjs.org/ncp
npm info attempt registry request try #1 at 12:39:13 PM
npm http request GET https://registry.npmjs.org/rimraf
npm http 200 https://registry.npmjs.org/ncp
npm http 200 https://registry.npmjs.org/rimraf
npm info retry fetch attempt 1 at 12:39:13 PM
npm info attempt registry request try #1 at 12:39:13 PM
npm http fetch GET https://registry.npmjs.org/ncp/-/ncp-2.0.0.tgz
npm info retry fetch attempt 1 at 12:39:13 PM
npm info attempt registry request try #1 at 12:39:13 PM
npm http fetch GET https://registry.npmjs.org/rimraf/-/rimraf-2.4.5.tgz
npm http 200 https://registry.npmjs.org/mkdirp
npm info retry fetch attempt 1 at 12:39:13 PM
npm info attempt registry request try #1 at 12:39:13 PM
npm http fetch GET https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz
npm http fetch 200 https://registry.npmjs.org/ncp/-/ncp-2.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/rimraf/-/rimraf-2.4.5.tgz
npm http fetch 200 https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz
npm info retry fetch attempt 1 at 12:39:13 PM
npm info attempt registry request try #1 at 12:39:13 PM
npm http fetch GET https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz
npm http fetch 200 https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz
npm info retry fetch attempt 1 at 12:39:13 PM
npm info attempt registry request try #1 at 12:39:13 PM
npm http fetch GET https://registry.npmjs.org/glob/-/glob-6.0.4.tgz
npm http fetch 200 https://registry.npmjs.org/glob/-/glob-6.0.4.tgz
npm info attempt registry request try #1 at 12:39:13 PM
npm http request GET https://registry.npmjs.org/lodash.clone
npm http 200 https://registry.npmjs.org/lodash.clone
npm info retry fetch attempt 1 at 12:39:13 PM
npm info attempt registry request try #1 at 12:39:13 PM
npm http fetch GET https://registry.npmjs.org/lodash.clone/-/lodash.clone-4.3.2.tgz
npm http fetch 200 https://registry.npmjs.org/lodash.clone/-/lodash.clone-4.3.2.tgz
npm info attempt registry request try #1 at 12:39:13 PM
npm http request GET https://registry.npmjs.org/lodash._baseclone
npm http 200 https://registry.npmjs.org/lodash._baseclone
npm info retry fetch attempt 1 at 12:39:13 PM
npm info attempt registry request try #1 at 12:39:13 PM
npm http fetch GET https://registry.npmjs.org/lodash._baseclone/-/lodash._baseclone-4.5.7.tgz
npm http fetch 200 https://registry.npmjs.org/lodash._baseclone/-/lodash._baseclone-4.5.7.tgz
npm info attempt registry request try #1 at 12:39:13 PM
npm http request GET https://registry.npmjs.org/gelfling
npm http 200 https://registry.npmjs.org/gelfling
npm info retry fetch attempt 1 at 12:39:14 PM
npm info attempt registry request try #1 at 12:39:14 PM
npm http fetch GET https://registry.npmjs.org/gelfling/-/gelfling-0.3.1.tgz
npm http fetch 200 https://registry.npmjs.org/gelfling/-/gelfling-0.3.1.tgz
npm info attempt registry request try #1 at 12:39:15 PM
npm http request GET https://registry.npmjs.org/readable-stream
npm info git [ 'clone',
npm info git '--template=/root/.npm/_git-remotes/_templates',
npm info git '--mirror',
npm info git 'https://github.com/wikimedia/kad.git',
npm info git '/root/.npm/_git-remotes/git-https-github-com-wikimedia-kad-git-master-2c5e4e77' ]
npm http 200 https://registry.npmjs.org/readable-stream
npm info retry fetch attempt 1 at 12:39:15 PM
npm info attempt registry request try #1 at 12:39:15 PM
npm http fetch GET https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz
npm http fetch 200 https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz
npm info git [ 'rev-list', '-n1', 'master' ]
npm info git [ 'clone',
npm info git '/root/.npm/_git-remotes/git-https-github-com-wikimedia-kad-git-master-2c5e4e77',
npm info git '/tmp/npm-7-39aa7ea7/git-cache-324bfa76/c2f76b1a55011db84778a408a89d4ddcfe4fe5bb' ]
npm info git [ 'checkout', 'c2f76b1a55011db84778a408a89d4ddcfe4fe5bb' ]
npm info git [ 'submodule', '-q', 'update', '--init', '--recursive' ]
npm info attempt registry request try #1 at 12:39:17 PM
npm http request GET https://registry.npmjs.org/async
npm info attempt registry request try #1 at 12:39:17 PM
npm http request GET https://registry.npmjs.org/clarinet
npm info attempt registry request try #1 at 12:39:17 PM
npm http request GET https://registry.npmjs.org/colors
npm info attempt registry request try #1 at 12:39:17 PM
npm http request GET https://registry.npmjs.org/hat
npm info attempt registry request try #1 at 12:39:17 PM
npm http request GET https://registry.npmjs.org/kad-fs
npm info attempt registry request try #1 at 12:39:17 PM
npm http request GET https://registry.npmjs.org/kad-localstorage
npm info attempt registry request try #1 at 12:39:17 PM
npm http request GET https://registry.npmjs.org/kad-memstore
npm info attempt registry request try #1 at 12:39:17 PM
npm http request GET https://registry.npmjs.org/lodash
npm info attempt registry request try #1 at 12:39:17 PM
npm http request GET https://registry.npmjs.org/merge
npm info attempt registry request try #1 at 12:39:17 PM
npm http request GET https://registry.npmjs.org/msgpack5
npm info attempt registry request try #1 at 12:39:17 PM
npm http request GET https://registry.npmjs.org/ms
npm http 200 https://registry.npmjs.org/merge
npm http 200 https://registry.npmjs.org/colors
npm http 200 https://registry.npmjs.org/hat
npm http 200 https://registry.npmjs.org/async
npm info retry fetch attempt 1 at 12:39:17 PM
npm info attempt registry request try #1 at 12:39:17 PM
npm http fetch GET https://registry.npmjs.org/merge/-/merge-1.2.1.tgz
npm http 200 https://registry.npmjs.org/lodash
npm info retry fetch attempt 1 at 12:39:17 PM
npm info attempt registry request try #1 at 12:39:17 PM
npm http fetch GET https://registry.npmjs.org/colors/-/colors-1.3.3.tgz
npm http 304 https://registry.npmjs.org/ms
npm info retry fetch attempt 1 at 12:39:17 PM
npm info attempt registry request try #1 at 12:39:17 PM
npm http fetch GET https://registry.npmjs.org/hat/-/hat-0.0.3.tgz
npm http fetch 200 https://registry.npmjs.org/merge/-/merge-1.2.1.tgz
npm info retry fetch attempt 1 at 12:39:18 PM
npm info attempt registry request try #1 at 12:39:18 PM
npm http fetch GET https://registry.npmjs.org/async/-/async-0.9.2.tgz
npm http fetch 200 https://registry.npmjs.org/colors/-/colors-1.3.3.tgz
npm info retry fetch attempt 1 at 12:39:18 PM
npm info attempt registry request try #1 at 12:39:18 PM
npm http fetch GET https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz
npm info retry fetch attempt 1 at 12:39:18 PM
npm info attempt registry request try #1 at 12:39:18 PM
npm http fetch GET https://registry.npmjs.org/ms/-/ms-0.7.3.tgz
npm http fetch 200 https://registry.npmjs.org/hat/-/hat-0.0.3.tgz
npm http fetch 200 https://registry.npmjs.org/async/-/async-0.9.2.tgz
npm http fetch 200 https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz
npm http fetch 200 https://registry.npmjs.org/ms/-/ms-0.7.3.tgz
npm http 200 https://registry.npmjs.org/kad-fs
npm WARN deprecated kad-fs@0.0.4: Please upgrade to @kadenceproject/kadence - See https://kadence.github.io
npm http 200 https://registry.npmjs.org/kad-localstorage
npm info retry fetch attempt 1 at 12:39:18 PM
npm info attempt registry request try #1 at 12:39:18 PM
npm http fetch GET https://registry.npmjs.org/kad-fs/-/kad-fs-0.0.4.tgz
npm info retry fetch attempt 1 at 12:39:18 PM
npm info attempt registry request try #1 at 12:39:18 PM
npm http fetch GET https://registry.npmjs.org/kad-localstorage/-/kad-localstorage-0.0.7.tgz
npm http 200 https://registry.npmjs.org/clarinet
npm http 200 https://registry.npmjs.org/kad-memstore
npm http fetch 200 https://registry.npmjs.org/kad-fs/-/kad-fs-0.0.4.tgz
npm WARN deprecated kad-memstore@0.0.1: Please upgrade to @kadenceproject/kadence - See https://kadence.github.io
npm info retry fetch attempt 1 at 12:39:18 PM
npm info attempt registry request try #1 at 12:39:18 PM
npm http fetch GET https://registry.npmjs.org/clarinet/-/clarinet-0.11.0.tgz
npm info retry fetch attempt 1 at 12:39:18 PM
npm info attempt registry request try #1 at 12:39:18 PM
npm http fetch GET https://registry.npmjs.org/kad-memstore/-/kad-memstore-0.0.1.tgz
npm http fetch 200 https://registry.npmjs.org/kad-localstorage/-/kad-localstorage-0.0.7.tgz
npm http 200 https://registry.npmjs.org/msgpack5
npm info retry fetch attempt 1 at 12:39:18 PM
npm info attempt registry request try #1 at 12:39:18 PM
npm http fetch GET https://registry.npmjs.org/msgpack5/-/msgpack5-3.6.0.tgz
npm http fetch 200 https://registry.npmjs.org/kad-memstore/-/kad-memstore-0.0.1.tgz
npm http fetch 200 https://registry.npmjs.org/clarinet/-/clarinet-0.11.0.tgz
npm http fetch 200 https://registry.npmjs.org/msgpack5/-/msgpack5-3.6.0.tgz
npm info attempt registry request try #1 at 12:39:21 PM
npm http request GET https://registry.npmjs.org/isarray
npm info attempt registry request try #1 at 12:39:21 PM
npm http request GET https://registry.npmjs.org/process-nextick-args
npm info attempt registry request try #1 at 12:39:21 PM
npm http request GET https://registry.npmjs.org/string_decoder
npm info attempt registry request try #1 at 12:39:21 PM
npm http request GET https://registry.npmjs.org/util-deprecate
npm http 200 https://registry.npmjs.org/process-nextick-args
npm http 200 https://registry.npmjs.org/isarray
npm http 200 https://registry.npmjs.org/util-deprecate
npm info retry fetch attempt 1 at 12:39:21 PM
npm info attempt registry request try #1 at 12:39:21 PM
npm http fetch GET https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz
npm info retry fetch attempt 1 at 12:39:21 PM
npm info attempt registry request try #1 at 12:39:21 PM
npm http fetch GET https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz
npm info retry fetch attempt 1 at 12:39:21 PM
npm info attempt registry request try #1 at 12:39:21 PM
npm http fetch GET https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz
npm http 200 https://registry.npmjs.org/string_decoder
npm info retry fetch attempt 1 at 12:39:21 PM
npm info attempt registry request try #1 at 12:39:21 PM
npm http fetch GET https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz
npm http fetch 200 https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz
npm http fetch 200 https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz
npm info attempt registry request try #1 at 12:39:21 PM
npm http request GET https://registry.npmjs.org/dom-storage
npm http 200 https://registry.npmjs.org/dom-storage
npm info retry fetch attempt 1 at 12:39:22 PM
npm info attempt registry request try #1 at 12:39:22 PM
npm http fetch GET https://registry.npmjs.org/dom-storage/-/dom-storage-2.1.0.tgz
npm http fetch 200 https://registry.npmjs.org/dom-storage/-/dom-storage-2.1.0.tgz
npm info attempt registry request try #1 at 12:39:22 PM
npm http request GET https://registry.npmjs.org/bl
npm http 200 https://registry.npmjs.org/bl
npm info retry fetch attempt 1 at 12:39:22 PM
npm info attempt registry request try #1 at 12:39:22 PM
npm http fetch GET https://registry.npmjs.org/bl/-/bl-1.2.2.tgz
npm http fetch 200 https://registry.npmjs.org/bl/-/bl-1.2.2.tgz
npm info attempt registry request try #1 at 12:39:23 PM
npm http request GET https://registry.npmjs.org/cliui
npm info attempt registry request try #1 at 12:39:23 PM
npm http request GET https://registry.npmjs.org/decamelize
npm info attempt registry request try #1 at 12:39:23 PM
npm http request GET https://registry.npmjs.org/find-up
npm info attempt registry request try #1 at 12:39:23 PM
npm http request GET https://registry.npmjs.org/get-caller-file
npm info attempt registry request try #1 at 12:39:23 PM
npm http request GET https://registry.npmjs.org/os-locale
npm info attempt registry request try #1 at 12:39:23 PM
npm http request GET https://registry.npmjs.org/require-directory
npm info attempt registry request try #1 at 12:39:23 PM
npm http request GET https://registry.npmjs.org/require-main-filename
npm info attempt registry request try #1 at 12:39:23 PM
npm http request GET https://registry.npmjs.org/set-blocking
npm info attempt registry request try #1 at 12:39:23 PM
npm http request GET https://registry.npmjs.org/string-width
npm info attempt registry request try #1 at 12:39:23 PM
npm http request GET https://registry.npmjs.org/which-module
npm info attempt registry request try #1 at 12:39:23 PM
npm http request GET https://registry.npmjs.org/y18n
npm info attempt registry request try #1 at 12:39:23 PM
npm http request GET https://registry.npmjs.org/yargs-parser
npm http 200 https://registry.npmjs.org/set-blocking
npm http 200 https://registry.npmjs.org/which-module
npm http 200 https://registry.npmjs.org/string-width
npm http 200 https://registry.npmjs.org/cliui
npm http 200 https://registry.npmjs.org/os-locale
npm http 200 https://registry.npmjs.org/find-up
npm http 200 https://registry.npmjs.org/y18n
npm http 200 https://registry.npmjs.org/require-directory
npm http 200 https://registry.npmjs.org/yargs-parser
npm http 200 https://registry.npmjs.org/get-caller-file
npm http 200 https://registry.npmjs.org/decamelize
npm http 200 https://registry.npmjs.org/require-main-filename
npm info retry fetch attempt 1 at 12:39:23 PM
npm info attempt registry request try #1 at 12:39:23 PM
npm http fetch GET https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz
npm info retry fetch attempt 1 at 12:39:23 PM
npm info attempt registry request try #1 at 12:39:23 PM
npm http fetch GET https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz
npm info retry fetch attempt 1 at 12:39:23 PM
npm info attempt registry request try #1 at 12:39:23 PM
npm http fetch GET https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz
npm info retry fetch attempt 1 at 12:39:23 PM
npm info attempt registry request try #1 at 12:39:23 PM
npm http fetch GET https://registry.npmjs.org/cliui/-/cliui-4.1.0.tgz
npm info retry fetch attempt 1 at 12:39:23 PM
npm info attempt registry request try #1 at 12:39:23 PM
npm http fetch GET https://registry.npmjs.org/os-locale/-/os-locale-3.1.0.tgz
npm info retry fetch attempt 1 at 12:39:23 PM
npm info attempt registry request try #1 at 12:39:23 PM
npm http fetch GET https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz
npm info retry fetch attempt 1 at 12:39:23 PM
npm info attempt registry request try #1 at 12:39:23 PM
npm http fetch GET https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz
npm info retry fetch attempt 1 at 12:39:23 PM
npm info attempt registry request try #1 at 12:39:23 PM
npm http fetch GET https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz
npm info retry fetch attempt 1 at 12:39:23 PM
npm info attempt registry request try #1 at 12:39:23 PM
npm http fetch GET https://registry.npmjs.org/yargs-parser/-/yargs-parser-11.1.1.tgz
npm info retry fetch attempt 1 at 12:39:23 PM
npm info attempt registry request try #1 at 12:39:23 PM
npm http fetch GET https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz
npm info retry fetch attempt 1 at 12:39:23 PM
npm info attempt registry request try #1 at 12:39:23 PM
npm http fetch GET https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz
npm info retry fetch attempt 1 at 12:39:23 PM
npm info attempt registry request try #1 at 12:39:23 PM
npm http fetch GET https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz
npm http fetch 200 https://registry.npmjs.org/cliui/-/cliui-4.1.0.tgz
npm http fetch 200 https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz
npm http fetch 200 https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/os-locale/-/os-locale-3.1.0.tgz
npm http fetch 200 https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz
npm http fetch 200 https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz
npm http fetch 200 https://registry.npmjs.org/yargs-parser/-/yargs-parser-11.1.1.tgz
npm http fetch 200 https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz
npm http fetch 200 https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz
npm info attempt registry request try #1 at 12:39:23 PM
npm http request GET https://registry.npmjs.org/strip-ansi
npm info attempt registry request try #1 at 12:39:23 PM
npm http request GET https://registry.npmjs.org/wrap-ansi
npm http 200 https://registry.npmjs.org/strip-ansi
npm http 200 https://registry.npmjs.org/wrap-ansi
npm info retry fetch attempt 1 at 12:39:23 PM
npm info attempt registry request try #1 at 12:39:23 PM
npm http fetch GET https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz
npm info retry fetch attempt 1 at 12:39:23 PM
npm info attempt registry request try #1 at 12:39:23 PM
npm http fetch GET https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz
npm http fetch 200 https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz
npm http fetch 200 https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz
npm info attempt registry request try #1 at 12:39:23 PM
npm http request GET https://registry.npmjs.org/is-fullwidth-code-point
npm http 200 https://registry.npmjs.org/is-fullwidth-code-point
npm info retry fetch attempt 1 at 12:39:23 PM
npm info attempt registry request try #1 at 12:39:23 PM
npm http fetch GET https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz
npm info attempt registry request try #1 at 12:39:23 PM
npm http request GET https://registry.npmjs.org/ansi-regex
npm http 200 https://registry.npmjs.org/ansi-regex
npm info retry fetch attempt 1 at 12:39:23 PM
npm info attempt registry request try #1 at 12:39:23 PM
npm http fetch GET https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz
npm info retry fetch attempt 1 at 12:39:24 PM
npm info attempt registry request try #1 at 12:39:24 PM
npm http fetch GET https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz
npm info retry fetch attempt 1 at 12:39:24 PM
npm info attempt registry request try #1 at 12:39:24 PM
npm http fetch GET https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz
npm http fetch 200 https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz
npm http fetch 200 https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz
npm info attempt registry request try #1 at 12:39:24 PM
npm http request GET https://registry.npmjs.org/code-point-at
npm info retry fetch attempt 1 at 12:39:24 PM
npm info attempt registry request try #1 at 12:39:24 PM
npm http fetch GET https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz
npm http 200 https://registry.npmjs.org/code-point-at
npm info retry fetch attempt 1 at 12:39:24 PM
npm info attempt registry request try #1 at 12:39:24 PM
npm http fetch GET https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz
npm http fetch 200 https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz
npm info attempt registry request try #1 at 12:39:24 PM
npm http request GET https://registry.npmjs.org/number-is-nan
npm http 200 https://registry.npmjs.org/number-is-nan
npm info retry fetch attempt 1 at 12:39:24 PM
npm info attempt registry request try #1 at 12:39:24 PM
npm http fetch GET https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz
npm http fetch 200 https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz
npm info retry fetch attempt 1 at 12:39:24 PM
npm info attempt registry request try #1 at 12:39:24 PM
npm http fetch GET https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz
npm http fetch 200 https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz
npm info attempt registry request try #1 at 12:39:24 PM
npm http request GET https://registry.npmjs.org/locate-path
npm http 200 https://registry.npmjs.org/locate-path
npm info retry fetch attempt 1 at 12:39:24 PM
npm info attempt registry request try #1 at 12:39:24 PM
npm http fetch GET https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz
npm info attempt registry request try #1 at 12:39:24 PM
npm http request GET https://registry.npmjs.org/p-locate
npm info attempt registry request try #1 at 12:39:24 PM
npm http request GET https://registry.npmjs.org/path-exists
npm http 200 https://registry.npmjs.org/p-locate
npm info retry fetch attempt 1 at 12:39:25 PM
npm info attempt registry request try #1 at 12:39:25 PM
npm http fetch GET https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz
npm http 200 https://registry.npmjs.org/path-exists
npm info retry fetch attempt 1 at 12:39:25 PM
npm info attempt registry request try #1 at 12:39:25 PM
npm http fetch GET https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz
npm info attempt registry request try #1 at 12:39:25 PM
npm http request GET https://registry.npmjs.org/p-limit
npm http 200 https://registry.npmjs.org/p-limit
npm info retry fetch attempt 1 at 12:39:25 PM
npm info attempt registry request try #1 at 12:39:25 PM
npm http fetch GET https://registry.npmjs.org/p-limit/-/p-limit-2.2.0.tgz
npm http fetch 200 https://registry.npmjs.org/p-limit/-/p-limit-2.2.0.tgz
npm info attempt registry request try #1 at 12:39:25 PM
npm http request GET https://registry.npmjs.org/p-try
npm http 200 https://registry.npmjs.org/p-try
npm info retry fetch attempt 1 at 12:39:25 PM
npm info attempt registry request try #1 at 12:39:25 PM
npm http fetch GET https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz
npm http fetch 200 https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz
npm info attempt registry request try #1 at 12:39:25 PM
npm http request GET https://registry.npmjs.org/execa
npm info attempt registry request try #1 at 12:39:25 PM
npm http request GET https://registry.npmjs.org/lcid
npm info attempt registry request try #1 at 12:39:25 PM
npm http request GET https://registry.npmjs.org/mem
npm http 200 https://registry.npmjs.org/execa
npm http 200 https://registry.npmjs.org/mem
npm info retry fetch attempt 1 at 12:39:25 PM
npm info attempt registry request try #1 at 12:39:25 PM
npm http fetch GET https://registry.npmjs.org/execa/-/execa-1.0.0.tgz
npm http 200 https://registry.npmjs.org/lcid
npm info retry fetch attempt 1 at 12:39:25 PM
npm info attempt registry request try #1 at 12:39:25 PM
npm http fetch GET https://registry.npmjs.org/mem/-/mem-4.3.0.tgz
npm info retry fetch attempt 1 at 12:39:25 PM
npm info attempt registry request try #1 at 12:39:25 PM
npm http fetch GET https://registry.npmjs.org/lcid/-/lcid-2.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/execa/-/execa-1.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/lcid/-/lcid-2.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/mem/-/mem-4.3.0.tgz
npm info attempt registry request try #1 at 12:39:25 PM
npm http request GET https://registry.npmjs.org/cross-spawn
npm info attempt registry request try #1 at 12:39:25 PM
npm http request GET https://registry.npmjs.org/get-stream
npm info attempt registry request try #1 at 12:39:25 PM
npm http request GET https://registry.npmjs.org/is-stream
npm info attempt registry request try #1 at 12:39:25 PM
npm http request GET https://registry.npmjs.org/npm-run-path
npm info attempt registry request try #1 at 12:39:25 PM
npm http request GET https://registry.npmjs.org/p-finally
npm info attempt registry request try #1 at 12:39:25 PM
npm http request GET https://registry.npmjs.org/signal-exit
npm info attempt registry request try #1 at 12:39:25 PM
npm http request GET https://registry.npmjs.org/strip-eof
npm http 200 https://registry.npmjs.org/strip-eof
npm http 200 https://registry.npmjs.org/npm-run-path
npm http 200 https://registry.npmjs.org/is-stream
npm http 200 https://registry.npmjs.org/p-finally
npm http 200 https://registry.npmjs.org/get-stream
npm http 200 https://registry.npmjs.org/signal-exit
npm http 200 https://registry.npmjs.org/cross-spawn
npm info retry fetch attempt 1 at 12:39:25 PM
npm info attempt registry request try #1 at 12:39:25 PM
npm http fetch GET https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz
npm info retry fetch attempt 1 at 12:39:25 PM
npm info attempt registry request try #1 at 12:39:25 PM
npm http fetch GET https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz
npm info retry fetch attempt 1 at 12:39:25 PM
npm info attempt registry request try #1 at 12:39:25 PM
npm http fetch GET https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz
npm info retry fetch attempt 1 at 12:39:25 PM
npm info attempt registry request try #1 at 12:39:25 PM
npm http fetch GET https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz
npm info retry fetch attempt 1 at 12:39:25 PM
npm info attempt registry request try #1 at 12:39:25 PM
npm http fetch GET https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz
npm info retry fetch attempt 1 at 12:39:25 PM
npm info attempt registry request try #1 at 12:39:25 PM
npm http fetch GET https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz
npm info retry fetch attempt 1 at 12:39:25 PM
npm info attempt registry request try #1 at 12:39:25 PM
npm http fetch GET https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz
npm http fetch 200 https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz
npm http fetch 200 https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz
npm http fetch 200 https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz
npm http fetch 200 https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz
npm http fetch 200 https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz
npm info attempt registry request try #1 at 12:39:26 PM
npm http request GET https://registry.npmjs.org/nice-try
npm info attempt registry request try #1 at 12:39:26 PM
npm http request GET https://registry.npmjs.org/path-key
npm info attempt registry request try #1 at 12:39:26 PM
npm http request GET https://registry.npmjs.org/shebang-command
npm info attempt registry request try #1 at 12:39:26 PM
npm http request GET https://registry.npmjs.org/which
npm http 200 https://registry.npmjs.org/nice-try
npm http 200 https://registry.npmjs.org/shebang-command
npm info retry fetch attempt 1 at 12:39:26 PM
npm info attempt registry request try #1 at 12:39:26 PM
npm http fetch GET https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz
npm http 200 https://registry.npmjs.org/path-key
npm http 200 https://registry.npmjs.org/which
npm info retry fetch attempt 1 at 12:39:26 PM
npm info attempt registry request try #1 at 12:39:26 PM
npm http fetch GET https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz
npm info retry fetch attempt 1 at 12:39:26 PM
npm info attempt registry request try #1 at 12:39:26 PM
npm http fetch GET https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz
npm info retry fetch attempt 1 at 12:39:26 PM
npm info attempt registry request try #1 at 12:39:26 PM
npm http fetch GET https://registry.npmjs.org/which/-/which-1.3.1.tgz
npm http fetch 200 https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz
npm http fetch 200 https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz
npm http fetch 200 https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz
npm http fetch 200 https://registry.npmjs.org/which/-/which-1.3.1.tgz
npm info attempt registry request try #1 at 12:39:26 PM
npm http request GET https://registry.npmjs.org/shebang-regex
npm http 200 https://registry.npmjs.org/shebang-regex
npm info retry fetch attempt 1 at 12:39:26 PM
npm info attempt registry request try #1 at 12:39:26 PM
npm http fetch GET https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz
npm info attempt registry request try #1 at 12:39:26 PM
npm http request GET https://registry.npmjs.org/isexe
npm http 200 https://registry.npmjs.org/isexe
npm info retry fetch attempt 1 at 12:39:26 PM
npm info attempt registry request try #1 at 12:39:26 PM
npm http fetch GET https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz
npm info attempt registry request try #1 at 12:39:26 PM
npm http request GET https://registry.npmjs.org/pump
npm http 200 https://registry.npmjs.org/pump
npm info retry fetch attempt 1 at 12:39:26 PM
npm info attempt registry request try #1 at 12:39:26 PM
npm http fetch GET https://registry.npmjs.org/pump/-/pump-3.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/pump/-/pump-3.0.0.tgz
npm info attempt registry request try #1 at 12:39:26 PM
npm http request GET https://registry.npmjs.org/end-of-stream
npm http 200 https://registry.npmjs.org/end-of-stream
npm info retry fetch attempt 1 at 12:39:26 PM
npm info attempt registry request try #1 at 12:39:26 PM
npm http fetch GET https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.1.tgz
npm http fetch 200 https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.1.tgz
npm info attempt registry request try #1 at 12:39:26 PM
npm http request GET https://registry.npmjs.org/invert-kv
npm http 200 https://registry.npmjs.org/invert-kv
npm info retry fetch attempt 1 at 12:39:26 PM
npm info attempt registry request try #1 at 12:39:26 PM
npm http fetch GET https://registry.npmjs.org/invert-kv/-/invert-kv-2.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/invert-kv/-/invert-kv-2.0.0.tgz
npm info attempt registry request try #1 at 12:39:26 PM
npm http request GET https://registry.npmjs.org/map-age-cleaner
npm info attempt registry request try #1 at 12:39:26 PM
npm http request GET https://registry.npmjs.org/mimic-fn
npm info attempt registry request try #1 at 12:39:26 PM
npm http request GET https://registry.npmjs.org/p-is-promise
npm http 200 https://registry.npmjs.org/mimic-fn
npm http 200 https://registry.npmjs.org/p-is-promise
npm http 200 https://registry.npmjs.org/map-age-cleaner
npm info retry fetch attempt 1 at 12:39:27 PM
npm info attempt registry request try #1 at 12:39:27 PM
npm http fetch GET https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz
npm info retry fetch attempt 1 at 12:39:27 PM
npm info attempt registry request try #1 at 12:39:27 PM
npm http fetch GET https://registry.npmjs.org/p-is-promise/-/p-is-promise-2.1.0.tgz
npm info retry fetch attempt 1 at 12:39:27 PM
npm info attempt registry request try #1 at 12:39:27 PM
npm http fetch GET https://registry.npmjs.org/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz
npm http fetch 200 https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz
npm http fetch 200 https://registry.npmjs.org/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz
npm http fetch 200 https://registry.npmjs.org/p-is-promise/-/p-is-promise-2.1.0.tgz
npm info attempt registry request try #1 at 12:39:27 PM
npm http request GET https://registry.npmjs.org/p-defer
npm http 200 https://registry.npmjs.org/p-defer
npm info retry fetch attempt 1 at 12:39:27 PM
npm info attempt registry request try #1 at 12:39:27 PM
npm http fetch GET https://registry.npmjs.org/p-defer/-/p-defer-1.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/p-defer/-/p-defer-1.0.0.tgz
npm info attempt registry request try #1 at 12:39:27 PM
npm http request GET https://registry.npmjs.org/camelcase
npm http 200 https://registry.npmjs.org/camelcase
npm info retry fetch attempt 1 at 12:39:27 PM
npm info attempt registry request try #1 at 12:39:27 PM
npm http fetch GET https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz
npm http fetch 200 https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz
npm info attempt registry request try #1 at 12:39:27 PM
npm http request GET https://registry.npmjs.org/errno
npm http 200 https://registry.npmjs.org/errno
npm info retry fetch attempt 1 at 12:39:27 PM
npm info attempt registry request try #1 at 12:39:27 PM
npm http fetch GET https://registry.npmjs.org/errno/-/errno-0.1.7.tgz
npm http fetch 200 https://registry.npmjs.org/errno/-/errno-0.1.7.tgz
npm info attempt registry request try #1 at 12:39:27 PM
npm http request GET https://registry.npmjs.org/prr
npm http 200 https://registry.npmjs.org/prr
npm info retry fetch attempt 1 at 12:39:27 PM
npm info attempt registry request try #1 at 12:39:27 PM
npm http fetch GET https://registry.npmjs.org/prr/-/prr-1.0.1.tgz
npm http fetch 200 https://registry.npmjs.org/prr/-/prr-1.0.1.tgz
npm info attempt registry request try #1 at 12:39:28 PM
npm http request GET https://registry.npmjs.org/read-pkg-up
npm info retry fetch attempt 1 at 12:39:28 PM
npm info attempt registry request try #1 at 12:39:28 PM
npm http fetch GET https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz
npm info retry fetch attempt 1 at 12:39:28 PM
npm info attempt registry request try #1 at 12:39:28 PM
npm http fetch GET https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz
npm info retry fetch attempt 1 at 12:39:28 PM
npm info attempt registry request try #1 at 12:39:28 PM
npm http fetch GET https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz
npm info retry fetch attempt 1 at 12:39:28 PM
npm info attempt registry request try #1 at 12:39:28 PM
npm http fetch GET https://registry.npmjs.org/y18n/-/y18n-3.2.1.tgz
npm info retry fetch attempt 1 at 12:39:28 PM
npm info attempt registry request try #1 at 12:39:28 PM
npm http fetch GET https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz
npm info retry fetch attempt 1 at 12:39:28 PM
npm info attempt registry request try #1 at 12:39:28 PM
npm http fetch GET https://registry.npmjs.org/yargs-parser/-/yargs-parser-5.0.0.tgz
npm http 200 https://registry.npmjs.org/read-pkg-up
npm info retry fetch attempt 1 at 12:39:28 PM
npm info attempt registry request try #1 at 12:39:28 PM
npm http fetch GET https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz
npm http fetch 200 https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz
npm http fetch 200 https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz
npm http fetch 200 https://registry.npmjs.org/y18n/-/y18n-3.2.1.tgz
npm http fetch 200 https://registry.npmjs.org/yargs-parser/-/yargs-parser-5.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz
npm info retry fetch attempt 1 at 12:39:28 PM
npm info attempt registry request try #1 at 12:39:28 PM
npm http fetch GET https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz
npm info retry fetch attempt 1 at 12:39:28 PM
npm info attempt registry request try #1 at 12:39:28 PM
npm http fetch GET https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz
npm info attempt registry request try #1 at 12:39:28 PM
npm http request GET https://registry.npmjs.org/read-pkg
npm info retry fetch attempt 1 at 12:39:28 PM
npm info attempt registry request try #1 at 12:39:28 PM
npm http fetch GET https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz
npm http 200 https://registry.npmjs.org/read-pkg
npm info retry fetch attempt 1 at 12:39:28 PM
npm info attempt registry request try #1 at 12:39:28 PM
npm http fetch GET https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz
npm http fetch 200 https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz
npm http fetch 200 https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz
npm info attempt registry request try #1 at 12:39:28 PM
npm http request GET https://registry.npmjs.org/pinkie-promise
npm info retry fetch attempt 1 at 12:39:28 PM
npm info attempt registry request try #1 at 12:39:28 PM
npm http fetch GET https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz
npm http 200 https://registry.npmjs.org/pinkie-promise
npm http fetch 200 https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz
npm info retry fetch attempt 1 at 12:39:28 PM
npm info attempt registry request try #1 at 12:39:28 PM
npm http fetch GET https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz
npm http fetch 200 https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz
npm info attempt registry request try #1 at 12:39:28 PM
npm http request GET https://registry.npmjs.org/pinkie
npm http 200 https://registry.npmjs.org/pinkie
npm info retry fetch attempt 1 at 12:39:28 PM
npm info attempt registry request try #1 at 12:39:28 PM
npm http fetch GET https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz
npm http fetch 200 https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz
npm info attempt registry request try #1 at 12:39:29 PM
npm http request GET https://registry.npmjs.org/load-json-file
npm info attempt registry request try #1 at 12:39:29 PM
npm http request GET https://registry.npmjs.org/normalize-package-data
npm info attempt registry request try #1 at 12:39:29 PM
npm http request GET https://registry.npmjs.org/path-type
npm http 200 https://registry.npmjs.org/load-json-file
npm http 200 https://registry.npmjs.org/path-type
npm http 200 https://registry.npmjs.org/normalize-package-data
npm info retry fetch attempt 1 at 12:39:29 PM
npm info attempt registry request try #1 at 12:39:29 PM
npm http fetch GET https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz
npm info retry fetch attempt 1 at 12:39:29 PM
npm info attempt registry request try #1 at 12:39:29 PM
npm http fetch GET https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz
npm info retry fetch attempt 1 at 12:39:29 PM
npm info attempt registry request try #1 at 12:39:29 PM
npm http fetch GET https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz
npm http fetch 200 https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz
npm http fetch 200 https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz
npm http fetch 200 https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz
npm info attempt registry request try #1 at 12:39:29 PM
npm http request GET https://registry.npmjs.org/parse-json
npm info attempt registry request try #1 at 12:39:29 PM
npm http request GET https://registry.npmjs.org/pify
npm info attempt registry request try #1 at 12:39:29 PM
npm http request GET https://registry.npmjs.org/strip-bom
npm http 200 https://registry.npmjs.org/parse-json
npm http 200 https://registry.npmjs.org/pify
npm http 200 https://registry.npmjs.org/strip-bom
npm info retry fetch attempt 1 at 12:39:29 PM
npm info attempt registry request try #1 at 12:39:29 PM
npm http fetch GET https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz
npm info retry fetch attempt 1 at 12:39:29 PM
npm info attempt registry request try #1 at 12:39:29 PM
npm http fetch GET https://registry.npmjs.org/pify/-/pify-2.3.0.tgz
npm info retry fetch attempt 1 at 12:39:29 PM
npm info attempt registry request try #1 at 12:39:29 PM
npm http fetch GET https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz
npm http fetch 200 https://registry.npmjs.org/pify/-/pify-2.3.0.tgz
npm http fetch 200 https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz
npm info attempt registry request try #1 at 12:39:29 PM
npm http request GET https://registry.npmjs.org/error-ex
npm http 200 https://registry.npmjs.org/error-ex
npm info retry fetch attempt 1 at 12:39:29 PM
npm info attempt registry request try #1 at 12:39:29 PM
npm http fetch GET https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz
npm http fetch 200 https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz
npm info attempt registry request try #1 at 12:39:29 PM
npm http request GET https://registry.npmjs.org/is-arrayish
npm http 200 https://registry.npmjs.org/is-arrayish
npm info retry fetch attempt 1 at 12:39:29 PM
npm info attempt registry request try #1 at 12:39:29 PM
npm http fetch GET https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz
npm http fetch 200 https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz
npm info attempt registry request try #1 at 12:39:29 PM
npm http request GET https://registry.npmjs.org/is-utf8
npm http 200 https://registry.npmjs.org/is-utf8
npm info retry fetch attempt 1 at 12:39:29 PM
npm info attempt registry request try #1 at 12:39:29 PM
npm http fetch GET https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz
npm http fetch 200 https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz
npm info attempt registry request try #1 at 12:39:30 PM
npm http request GET https://registry.npmjs.org/hosted-git-info
npm info attempt registry request try #1 at 12:39:30 PM
npm http request GET https://registry.npmjs.org/resolve
npm info attempt registry request try #1 at 12:39:30 PM
npm http request GET https://registry.npmjs.org/validate-npm-package-license
npm http 200 https://registry.npmjs.org/hosted-git-info
npm http 200 https://registry.npmjs.org/resolve
npm http 200 https://registry.npmjs.org/validate-npm-package-license
npm info retry fetch attempt 1 at 12:39:30 PM
npm info attempt registry request try #1 at 12:39:30 PM
npm http fetch GET https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.7.1.tgz
npm info retry fetch attempt 1 at 12:39:30 PM
npm info attempt registry request try #1 at 12:39:30 PM
npm http fetch GET https://registry.npmjs.org/resolve/-/resolve-1.10.0.tgz
npm info retry fetch attempt 1 at 12:39:30 PM
npm info attempt registry request try #1 at 12:39:30 PM
npm http fetch GET https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz
npm http fetch 200 https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.7.1.tgz
npm http fetch 200 https://registry.npmjs.org/resolve/-/resolve-1.10.0.tgz
npm http fetch 200 https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz
npm info attempt registry request try #1 at 12:39:30 PM
npm http request GET https://registry.npmjs.org/path-parse
npm http 200 https://registry.npmjs.org/path-parse
npm info retry fetch attempt 1 at 12:39:30 PM
npm info attempt registry request try #1 at 12:39:30 PM
npm http fetch GET https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz
npm http fetch 200 https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz
npm info attempt registry request try #1 at 12:39:30 PM
npm http request GET https://registry.npmjs.org/spdx-correct
npm info attempt registry request try #1 at 12:39:30 PM
npm http request GET https://registry.npmjs.org/spdx-expression-parse
npm http 200 https://registry.npmjs.org/spdx-correct
npm info retry fetch attempt 1 at 12:39:30 PM
npm info attempt registry request try #1 at 12:39:30 PM
npm http fetch GET https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.0.tgz
npm http 200 https://registry.npmjs.org/spdx-expression-parse
npm info retry fetch attempt 1 at 12:39:30 PM
npm info attempt registry request try #1 at 12:39:30 PM
npm http fetch GET https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.0.tgz
npm http fetch 200 https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz
npm info attempt registry request try #1 at 12:39:30 PM
npm http request GET https://registry.npmjs.org/spdx-license-ids
npm http 200 https://registry.npmjs.org/spdx-license-ids
npm info retry fetch attempt 1 at 12:39:30 PM
npm info attempt registry request try #1 at 12:39:30 PM
npm http fetch GET https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.4.tgz
npm http fetch 200 https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.4.tgz
npm info attempt registry request try #1 at 12:39:30 PM
npm http request GET https://registry.npmjs.org/spdx-exceptions
npm http 200 https://registry.npmjs.org/spdx-exceptions
npm info retry fetch attempt 1 at 12:39:31 PM
npm info attempt registry request try #1 at 12:39:31 PM
npm http fetch GET https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz
npm http fetch 200 https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz
npm info attempt registry request try #1 at 12:39:31 PM
npm http request GET https://registry.npmjs.org/alea
npm info attempt registry request try #1 at 12:39:31 PM
npm http request GET https://registry.npmjs.org/chai
npm info attempt registry request try #1 at 12:39:31 PM
npm http request GET https://registry.npmjs.org/coveralls
npm info attempt registry request try #1 at 12:39:31 PM
npm http request GET https://registry.npmjs.org/eslint
npm info attempt registry request try #1 at 12:39:31 PM
npm http request GET https://registry.npmjs.org/eslint-config-node-services
npm info attempt registry request try #1 at 12:39:31 PM
npm http request GET https://registry.npmjs.org/eslint-config-wikimedia
npm info attempt registry request try #1 at 12:39:31 PM
npm http request GET https://registry.npmjs.org/eslint-plugin-jsdoc
npm info attempt registry request try #1 at 12:39:31 PM
npm http request GET https://registry.npmjs.org/eslint-plugin-json
npm info attempt registry request try #1 at 12:39:31 PM
npm http request GET https://registry.npmjs.org/istanbul
npm info attempt registry request try #1 at 12:39:31 PM
npm http request GET https://registry.npmjs.org/jsdoc
npm info attempt registry request try #1 at 12:39:31 PM
npm http request GET https://registry.npmjs.org/jsdoc-wmf-theme
npm info attempt registry request try #1 at 12:39:31 PM
npm http request GET https://registry.npmjs.org/mocha
npm info attempt registry request try #1 at 12:39:31 PM
npm http request GET https://registry.npmjs.org/nock
npm info attempt registry request try #1 at 12:39:31 PM
npm http request GET https://registry.npmjs.org/nsp
npm info attempt registry request try #1 at 12:39:31 PM
npm http request GET https://registry.npmjs.org/supertest
npm info git [ 'clone',
npm info git '--template=/root/.npm/_git-remotes/_templates',
npm info git '--mirror',
npm info git 'https://github.com/cscott/js2php.git',
npm info git '/root/.npm/_git-remotes/git-https-github-com-cscott-js2php-git-34e5e0a06f67385e1a9a4935c62af79ee1f7d46e-1e630426' ]
npm http 200 https://registry.npmjs.org/jsdoc
npm http 200 https://registry.npmjs.org/coveralls
npm http 200 https://registry.npmjs.org/chai
npm http 200 https://registry.npmjs.org/nsp
npm info retry fetch attempt 1 at 12:39:31 PM
npm info attempt registry request try #1 at 12:39:31 PM
npm http fetch GET https://registry.npmjs.org/jsdoc/-/jsdoc-3.5.5.tgz
npm info retry fetch attempt 1 at 12:39:31 PM
npm info attempt registry request try #1 at 12:39:31 PM
npm http fetch GET https://registry.npmjs.org/coveralls/-/coveralls-3.0.3.tgz
npm info retry fetch attempt 1 at 12:39:31 PM
npm info attempt registry request try #1 at 12:39:31 PM
npm http fetch GET https://registry.npmjs.org/chai/-/chai-4.2.0.tgz
npm http fetch 200 https://registry.npmjs.org/jsdoc/-/jsdoc-3.5.5.tgz
npm WARN deprecated nsp@3.2.1: The Node Security Platform service is shutting down 9/30 - https://blog.npmjs.org/post/175511531085/the-node-security-platform-service-is-shutting
npm http 200 https://registry.npmjs.org/supertest
npm info retry fetch attempt 1 at 12:39:31 PM
npm info attempt registry request try #1 at 12:39:31 PM
npm http fetch GET https://registry.npmjs.org/nsp/-/nsp-3.2.1.tgz
npm http fetch 200 https://registry.npmjs.org/coveralls/-/coveralls-3.0.3.tgz
npm http fetch 200 https://registry.npmjs.org/chai/-/chai-4.2.0.tgz
npm info retry fetch attempt 1 at 12:39:31 PM
npm info attempt registry request try #1 at 12:39:31 PM
npm http fetch GET https://registry.npmjs.org/supertest/-/supertest-3.4.2.tgz
npm http fetch 200 https://registry.npmjs.org/nsp/-/nsp-3.2.1.tgz
npm http 200 https://registry.npmjs.org/eslint
npm http fetch 200 https://registry.npmjs.org/supertest/-/supertest-3.4.2.tgz
npm info retry fetch attempt 1 at 12:39:31 PM
npm info attempt registry request try #1 at 12:39:31 PM
npm http fetch GET https://registry.npmjs.org/eslint/-/eslint-4.19.1.tgz
npm http 200 https://registry.npmjs.org/nock
npm http 200 https://registry.npmjs.org/istanbul
npm http fetch 200 https://registry.npmjs.org/eslint/-/eslint-4.19.1.tgz
npm WARN deprecated istanbul@0.4.5: This module is no longer maintained, try this instead:
npm WARN deprecated npm i nyc
npm WARN deprecated Visit https://istanbul.js.org/integrations for other alternatives.
npm http 200 https://registry.npmjs.org/mocha
npm info retry fetch attempt 1 at 12:39:32 PM
npm info attempt registry request try #1 at 12:39:32 PM
npm http fetch GET https://registry.npmjs.org/istanbul/-/istanbul-0.4.5.tgz
npm info retry fetch attempt 1 at 12:39:32 PM
npm info attempt registry request try #1 at 12:39:32 PM
npm http fetch GET https://registry.npmjs.org/nock/-/nock-9.6.1.tgz
npm http 200 https://registry.npmjs.org/eslint-plugin-json
npm http fetch 200 https://registry.npmjs.org/nock/-/nock-9.6.1.tgz
npm http fetch 200 https://registry.npmjs.org/istanbul/-/istanbul-0.4.5.tgz
npm http 200 https://registry.npmjs.org/jsdoc-wmf-theme
npm info retry fetch attempt 1 at 12:39:32 PM
npm info attempt registry request try #1 at 12:39:32 PM
npm http fetch GET https://registry.npmjs.org/mocha/-/mocha-5.2.0.tgz
npm http 200 https://registry.npmjs.org/alea
npm info retry fetch attempt 1 at 12:39:32 PM
npm info attempt registry request try #1 at 12:39:32 PM
npm http fetch GET https://registry.npmjs.org/eslint-plugin-json/-/eslint-plugin-json-1.4.0.tgz
npm info retry fetch attempt 1 at 12:39:32 PM
npm info attempt registry request try #1 at 12:39:32 PM
npm http fetch GET https://registry.npmjs.org/jsdoc-wmf-theme/-/jsdoc-wmf-theme-0.0.2.tgz
npm info retry fetch attempt 1 at 12:39:32 PM
npm info attempt registry request try #1 at 12:39:32 PM
npm http fetch GET https://registry.npmjs.org/alea/-/alea-0.0.9.tgz
npm http fetch 200 https://registry.npmjs.org/mocha/-/mocha-5.2.0.tgz
npm http 200 https://registry.npmjs.org/eslint-config-node-services
npm http fetch 200 https://registry.npmjs.org/eslint-plugin-json/-/eslint-plugin-json-1.4.0.tgz
npm info retry fetch attempt 1 at 12:39:32 PM
npm info attempt registry request try #1 at 12:39:32 PM
npm http fetch GET https://registry.npmjs.org/eslint-config-node-services/-/eslint-config-node-services-2.2.5.tgz
npm http 200 https://registry.npmjs.org/eslint-config-wikimedia
npm info retry fetch attempt 1 at 12:39:32 PM
npm info attempt registry request try #1 at 12:39:32 PM
npm http fetch GET https://registry.npmjs.org/eslint-config-wikimedia/-/eslint-config-wikimedia-0.5.0.tgz
npm http 200 https://registry.npmjs.org/eslint-plugin-jsdoc
npm info retry fetch attempt 1 at 12:39:32 PM
npm info attempt registry request try #1 at 12:39:32 PM
npm http fetch GET https://registry.npmjs.org/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-3.15.1.tgz
npm http fetch 200 https://registry.npmjs.org/alea/-/alea-0.0.9.tgz
npm info git [ 'rev-list', '-n1', '34e5e0a06f67385e1a9a4935c62af79ee1f7d46e' ]
npm info git [ 'clone',
npm info git '/root/.npm/_git-remotes/git-https-github-com-cscott-js2php-git-34e5e0a06f67385e1a9a4935c62af79ee1f7d46e-1e630426',
npm info git '/tmp/npm-7-39aa7ea7/git-cache-91bb08de/34e5e0a06f67385e1a9a4935c62af79ee1f7d46e' ]
npm info git [ 'checkout', '34e5e0a06f67385e1a9a4935c62af79ee1f7d46e' ]
npm info git [ 'submodule', '-q', 'update', '--init', '--recursive' ]
npm http fetch 200 https://registry.npmjs.org/eslint-config-node-services/-/eslint-config-node-services-2.2.5.tgz
npm http fetch 200 https://registry.npmjs.org/eslint-config-wikimedia/-/eslint-config-wikimedia-0.5.0.tgz
npm http fetch 200 https://registry.npmjs.org/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-3.15.1.tgz
npm http fetch 200 https://registry.npmjs.org/jsdoc-wmf-theme/-/jsdoc-wmf-theme-0.0.2.tgz
npm info attempt registry request try #1 at 12:39:47 PM
npm http request GET https://registry.npmjs.org/assertion-error
npm info attempt registry request try #1 at 12:39:47 PM
npm http request GET https://registry.npmjs.org/check-error
npm info attempt registry request try #1 at 12:39:47 PM
npm http request GET https://registry.npmjs.org/deep-eql
npm info attempt registry request try #1 at 12:39:47 PM
npm http request GET https://registry.npmjs.org/get-func-name
npm info attempt registry request try #1 at 12:39:47 PM
npm http request GET https://registry.npmjs.org/pathval
npm info attempt registry request try #1 at 12:39:47 PM
npm http request GET https://registry.npmjs.org/type-detect
npm http 200 https://registry.npmjs.org/assertion-error
npm http 200 https://registry.npmjs.org/check-error
npm http 200 https://registry.npmjs.org/get-func-name
npm http 200 https://registry.npmjs.org/deep-eql
npm http 200 https://registry.npmjs.org/type-detect
npm http 200 https://registry.npmjs.org/pathval
npm info retry fetch attempt 1 at 12:39:47 PM
npm info attempt registry request try #1 at 12:39:47 PM
npm http fetch GET https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz
npm info retry fetch attempt 1 at 12:39:47 PM
npm info attempt registry request try #1 at 12:39:47 PM
npm http fetch GET https://registry.npmjs.org/check-error/-/check-error-1.0.2.tgz
npm info retry fetch attempt 1 at 12:39:47 PM
npm info attempt registry request try #1 at 12:39:47 PM
npm http fetch GET https://registry.npmjs.org/get-func-name/-/get-func-name-2.0.0.tgz
npm info retry fetch attempt 1 at 12:39:47 PM
npm info attempt registry request try #1 at 12:39:47 PM
npm http fetch GET https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz
npm info retry fetch attempt 1 at 12:39:47 PM
npm info attempt registry request try #1 at 12:39:47 PM
npm http fetch GET https://registry.npmjs.org/deep-eql/-/deep-eql-3.0.1.tgz
npm info retry fetch attempt 1 at 12:39:47 PM
npm info attempt registry request try #1 at 12:39:47 PM
npm http fetch GET https://registry.npmjs.org/pathval/-/pathval-1.1.0.tgz
npm http fetch 200 https://registry.npmjs.org/check-error/-/check-error-1.0.2.tgz
npm http fetch 200 https://registry.npmjs.org/get-func-name/-/get-func-name-2.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz
npm http fetch 200 https://registry.npmjs.org/pathval/-/pathval-1.1.0.tgz
npm http fetch 200 https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz
npm http fetch 200 https://registry.npmjs.org/deep-eql/-/deep-eql-3.0.1.tgz
npm info attempt registry request try #1 at 12:39:48 PM
npm http request GET https://registry.npmjs.org/growl
npm info attempt registry request try #1 at 12:39:48 PM
npm http request GET https://registry.npmjs.org/lcov-parse
npm info attempt registry request try #1 at 12:39:48 PM
npm http request GET https://registry.npmjs.org/log-driver
npm info attempt registry request try #1 at 12:39:48 PM
npm http request GET https://registry.npmjs.org/minimist
npm http 200 https://registry.npmjs.org/growl
npm info retry fetch attempt 1 at 12:39:48 PM
npm info attempt registry request try #1 at 12:39:48 PM
npm http fetch GET https://registry.npmjs.org/growl/-/growl-1.10.5.tgz
npm http 304 https://registry.npmjs.org/minimist
npm info retry fetch attempt 1 at 12:39:48 PM
npm info attempt registry request try #1 at 12:39:48 PM
npm http fetch GET https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz
npm http 200 https://registry.npmjs.org/lcov-parse
npm info retry fetch attempt 1 at 12:39:48 PM
npm info attempt registry request try #1 at 12:39:48 PM
npm http fetch GET https://registry.npmjs.org/lcov-parse/-/lcov-parse-0.0.10.tgz
npm http fetch 200 https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz
npm http fetch 200 https://registry.npmjs.org/growl/-/growl-1.10.5.tgz
npm http fetch 200 https://registry.npmjs.org/lcov-parse/-/lcov-parse-0.0.10.tgz
npm http 200 https://registry.npmjs.org/log-driver
npm info retry fetch attempt 1 at 12:39:48 PM
npm info attempt registry request try #1 at 12:39:48 PM
npm http fetch GET https://registry.npmjs.org/log-driver/-/log-driver-1.2.7.tgz
npm http fetch 200 https://registry.npmjs.org/log-driver/-/log-driver-1.2.7.tgz
npm info attempt registry request try #1 at 12:39:48 PM
npm http request GET https://registry.npmjs.org/babel-code-frame
npm info attempt registry request try #1 at 12:39:48 PM
npm http request GET https://registry.npmjs.org/chalk
npm info attempt registry request try #1 at 12:39:48 PM
npm http request GET https://registry.npmjs.org/concat-stream
npm info attempt registry request try #1 at 12:39:48 PM
npm http request GET https://registry.npmjs.org/doctrine
npm info attempt registry request try #1 at 12:39:48 PM
npm http request GET https://registry.npmjs.org/eslint-scope
npm info attempt registry request try #1 at 12:39:48 PM
npm http request GET https://registry.npmjs.org/eslint-visitor-keys
npm info attempt registry request try #1 at 12:39:48 PM
npm http request GET https://registry.npmjs.org/espree
npm info attempt registry request try #1 at 12:39:48 PM
npm http request GET https://registry.npmjs.org/esquery
npm info attempt registry request try #1 at 12:39:48 PM
npm http request GET https://registry.npmjs.org/esutils
npm info attempt registry request try #1 at 12:39:48 PM
npm http request GET https://registry.npmjs.org/file-entry-cache
npm info attempt registry request try #1 at 12:39:48 PM
npm http request GET https://registry.npmjs.org/functional-red-black-tree
npm info attempt registry request try #1 at 12:39:48 PM
npm http request GET https://registry.npmjs.org/globals
npm info attempt registry request try #1 at 12:39:48 PM
npm http request GET https://registry.npmjs.org/ignore
npm info attempt registry request try #1 at 12:39:48 PM
npm http request GET https://registry.npmjs.org/imurmurhash
npm info attempt registry request try #1 at 12:39:48 PM
npm http request GET https://registry.npmjs.org/inquirer
npm info attempt registry request try #1 at 12:39:48 PM
npm http request GET https://registry.npmjs.org/is-resolvable
npm info attempt registry request try #1 at 12:39:48 PM
npm http request GET https://registry.npmjs.org/json-stable-stringify-without-jsonify
npm info attempt registry request try #1 at 12:39:48 PM
npm http request GET https://registry.npmjs.org/levn
npm info attempt registry request try #1 at 12:39:48 PM
npm http request GET https://registry.npmjs.org/natural-compare
npm info attempt registry request try #1 at 12:39:48 PM
npm http request GET https://registry.npmjs.org/optionator
npm info attempt registry request try #1 at 12:39:48 PM
npm http request GET https://registry.npmjs.org/path-is-inside
npm info attempt registry request try #1 at 12:39:48 PM
npm http request GET https://registry.npmjs.org/pluralize
npm info attempt registry request try #1 at 12:39:48 PM
npm http request GET https://registry.npmjs.org/progress
npm info attempt registry request try #1 at 12:39:48 PM
npm http request GET https://registry.npmjs.org/regexpp
npm info attempt registry request try #1 at 12:39:48 PM
npm http request GET https://registry.npmjs.org/require-uncached
npm info attempt registry request try #1 at 12:39:48 PM
npm http request GET https://registry.npmjs.org/strip-json-comments
npm info attempt registry request try #1 at 12:39:48 PM
npm http request GET https://registry.npmjs.org/table
npm info attempt registry request try #1 at 12:39:48 PM
npm http request GET https://registry.npmjs.org/text-table
npm info attempt registry request try #1 at 12:39:48 PM
npm http request GET https://registry.npmjs.org/cross-spawn
npm info attempt registry request try #1 at 12:39:48 PM
npm http request GET https://registry.npmjs.org/ajv
npm info attempt registry request try #1 at 12:39:48 PM
npm http request GET https://registry.npmjs.org/debug
npm info attempt registry request try #1 at 12:39:48 PM
npm http request GET https://registry.npmjs.org/lodash
npm http 200 https://registry.npmjs.org/path-is-inside
npm http 200 https://registry.npmjs.org/optionator
npm http 200 https://registry.npmjs.org/regexpp
npm http 200 https://registry.npmjs.org/doctrine
npm http 200 https://registry.npmjs.org/esquery
npm http 200 https://registry.npmjs.org/eslint-visitor-keys
npm http 200 https://registry.npmjs.org/chalk
npm http 200 https://registry.npmjs.org/progress
npm http 200 https://registry.npmjs.org/esutils
npm http 200 https://registry.npmjs.org/natural-compare
npm http 200 https://registry.npmjs.org/is-resolvable
npm http 200 https://registry.npmjs.org/imurmurhash
npm http 200 https://registry.npmjs.org/file-entry-cache
npm http 200 https://registry.npmjs.org/eslint-scope
npm http 200 https://registry.npmjs.org/functional-red-black-tree
npm http 200 https://registry.npmjs.org/levn
npm http 200 https://registry.npmjs.org/pluralize
npm http 200 https://registry.npmjs.org/json-stable-stringify-without-jsonify
npm http 200 https://registry.npmjs.org/require-uncached
npm http 200 https://registry.npmjs.org/babel-code-frame
npm http 200 https://registry.npmjs.org/globals
npm http 200 https://registry.npmjs.org/concat-stream
npm http 200 https://registry.npmjs.org/espree
npm http 200 https://registry.npmjs.org/text-table
npm http 200 https://registry.npmjs.org/inquirer
npm http 304 https://registry.npmjs.org/ajv
npm http 304 https://registry.npmjs.org/debug
npm http 304 https://registry.npmjs.org/lodash
npm http 200 https://registry.npmjs.org/ignore
npm http 304 https://registry.npmjs.org/cross-spawn
npm http 200 https://registry.npmjs.org/strip-json-comments
npm info retry fetch attempt 1 at 12:39:49 PM
npm info attempt registry request try #1 at 12:39:49 PM
npm http fetch GET https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz
npm info retry fetch attempt 1 at 12:39:49 PM
npm info attempt registry request try #1 at 12:39:49 PM
npm http fetch GET https://registry.npmjs.org/optionator/-/optionator-0.8.2.tgz
npm info retry fetch attempt 1 at 12:39:49 PM
npm info attempt registry request try #1 at 12:39:49 PM
npm http fetch GET https://registry.npmjs.org/regexpp/-/regexpp-1.1.0.tgz
npm info retry fetch attempt 1 at 12:39:49 PM
npm info attempt registry request try #1 at 12:39:49 PM
npm http fetch GET https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz
npm info retry fetch attempt 1 at 12:39:49 PM
npm info attempt registry request try #1 at 12:39:49 PM
npm http fetch GET https://registry.npmjs.org/esquery/-/esquery-1.0.1.tgz
npm info retry fetch attempt 1 at 12:39:49 PM
npm info attempt registry request try #1 at 12:39:49 PM
npm http fetch GET https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz
npm http 200 https://registry.npmjs.org/table
npm info retry fetch attempt 1 at 12:39:49 PM
npm info attempt registry request try #1 at 12:39:49 PM
npm http fetch GET https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz
npm info retry fetch attempt 1 at 12:39:49 PM
npm info attempt registry request try #1 at 12:39:49 PM
npm http fetch GET https://registry.npmjs.org/progress/-/progress-2.0.3.tgz
npm info retry fetch attempt 1 at 12:39:49 PM
npm info attempt registry request try #1 at 12:39:49 PM
npm http fetch GET https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz
npm info retry fetch attempt 1 at 12:39:49 PM
npm info attempt registry request try #1 at 12:39:49 PM
npm http fetch GET https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz
npm info retry fetch attempt 1 at 12:39:49 PM
npm info attempt registry request try #1 at 12:39:49 PM
npm http fetch GET https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.1.0.tgz
npm info retry fetch attempt 1 at 12:39:49 PM
npm info attempt registry request try #1 at 12:39:49 PM
npm http fetch GET https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz
npm info retry fetch attempt 1 at 12:39:49 PM
npm info attempt registry request try #1 at 12:39:49 PM
npm http fetch GET https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-2.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz
npm http fetch 200 https://registry.npmjs.org/optionator/-/optionator-0.8.2.tgz
npm info retry fetch attempt 1 at 12:39:49 PM
npm info attempt registry request try #1 at 12:39:49 PM
npm http fetch GET https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz
npm info retry fetch attempt 1 at 12:39:49 PM
npm info attempt registry request try #1 at 12:39:49 PM
npm http fetch GET https://registry.npmjs.org/eslint-scope/-/eslint-scope-3.7.3.tgz
npm info retry fetch attempt 1 at 12:39:49 PM
npm info attempt registry request try #1 at 12:39:49 PM
npm http fetch GET https://registry.npmjs.org/levn/-/levn-0.3.0.tgz
npm http fetch 200 https://registry.npmjs.org/regexpp/-/regexpp-1.1.0.tgz
npm info retry fetch attempt 1 at 12:39:49 PM
npm info attempt registry request try #1 at 12:39:49 PM
npm http fetch GET https://registry.npmjs.org/pluralize/-/pluralize-7.0.0.tgz
npm info retry fetch attempt 1 at 12:39:49 PM
npm info attempt registry request try #1 at 12:39:49 PM
npm http fetch GET https://registry.npmjs.org/require-uncached/-/require-uncached-1.0.3.tgz
npm info retry fetch attempt 1 at 12:39:49 PM
npm info attempt registry request try #1 at 12:39:49 PM
npm http fetch GET https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz
npm http fetch 200 https://registry.npmjs.org/esquery/-/esquery-1.0.1.tgz
npm info retry fetch attempt 1 at 12:39:49 PM
npm info attempt registry request try #1 at 12:39:49 PM
npm http fetch GET https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz
npm info retry fetch attempt 1 at 12:39:49 PM
npm info attempt registry request try #1 at 12:39:49 PM
npm http fetch GET https://registry.npmjs.org/globals/-/globals-11.11.0.tgz
npm http fetch 200 https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz
npm http fetch 200 https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.1.0.tgz
npm http fetch 200 https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz
npm http fetch 200 https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz
npm http fetch 200 https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-2.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/progress/-/progress-2.0.3.tgz
npm http fetch 200 https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz
npm http fetch 200 https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz
npm http fetch 200 https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz
npm info retry fetch attempt 1 at 12:39:49 PM
npm info attempt registry request try #1 at 12:39:49 PM
npm http fetch GET https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz
npm http fetch 200 https://registry.npmjs.org/levn/-/levn-0.3.0.tgz
npm http fetch 200 https://registry.npmjs.org/eslint-scope/-/eslint-scope-3.7.3.tgz
npm http fetch 200 https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz
npm http fetch 200 https://registry.npmjs.org/require-uncached/-/require-uncached-1.0.3.tgz
npm info retry fetch attempt 1 at 12:39:49 PM
npm info attempt registry request try #1 at 12:39:49 PM
npm http fetch GET https://registry.npmjs.org/ajv/-/ajv-5.5.2.tgz
npm info retry fetch attempt 1 at 12:39:49 PM
npm info attempt registry request try #1 at 12:39:49 PM
npm http fetch GET https://registry.npmjs.org/debug/-/debug-3.2.6.tgz
npm http fetch 200 https://registry.npmjs.org/pluralize/-/pluralize-7.0.0.tgz
npm info retry fetch attempt 1 at 12:39:49 PM
npm info attempt registry request try #1 at 12:39:49 PM
npm http fetch GET https://registry.npmjs.org/lodash/-/lodash-4.17.11.tgz
npm info retry fetch attempt 1 at 12:39:49 PM
npm info attempt registry request try #1 at 12:39:49 PM
npm http fetch GET https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz
npm http fetch 200 https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz
npm http fetch 200 https://registry.npmjs.org/globals/-/globals-11.11.0.tgz
npm info retry fetch attempt 1 at 12:39:49 PM
npm info attempt registry request try #1 at 12:39:49 PM
npm http fetch GET https://registry.npmjs.org/espree/-/espree-3.5.4.tgz
npm http fetch 200 https://registry.npmjs.org/debug/-/debug-3.2.6.tgz
npm http fetch 200 https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz
npm info retry fetch attempt 1 at 12:39:49 PM
npm info attempt registry request try #1 at 12:39:49 PM
npm http fetch GET https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz
npm info retry fetch attempt 1 at 12:39:49 PM
npm info attempt registry request try #1 at 12:39:49 PM
npm http fetch GET https://registry.npmjs.org/inquirer/-/inquirer-3.3.0.tgz
npm info retry fetch attempt 1 at 12:39:49 PM
npm info attempt registry request try #1 at 12:39:49 PM
npm http fetch GET https://registry.npmjs.org/ignore/-/ignore-3.3.10.tgz
npm http fetch 200 https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz
npm info retry fetch attempt 1 at 12:39:49 PM
npm info attempt registry request try #1 at 12:39:49 PM
npm http fetch GET https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz
npm http fetch 200 https://registry.npmjs.org/lodash/-/lodash-4.17.11.tgz
npm http fetch 200 https://registry.npmjs.org/ajv/-/ajv-5.5.2.tgz
npm info retry fetch attempt 1 at 12:39:49 PM
npm info attempt registry request try #1 at 12:39:49 PM
npm http fetch GET https://registry.npmjs.org/table/-/table-4.0.2.tgz
npm http fetch 200 https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz
npm http fetch 200 https://registry.npmjs.org/ignore/-/ignore-3.3.10.tgz
npm http fetch 200 https://registry.npmjs.org/inquirer/-/inquirer-3.3.0.tgz
npm http fetch 200 https://registry.npmjs.org/table/-/table-4.0.2.tgz
npm http fetch 200 https://registry.npmjs.org/espree/-/espree-3.5.4.tgz
npm http fetch 200 https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz
npm info attempt registry request try #1 at 12:39:49 PM
npm http request GET https://registry.npmjs.org/co
npm info attempt registry request try #1 at 12:39:49 PM
npm http request GET https://registry.npmjs.org/fast-deep-equal
npm info attempt registry request try #1 at 12:39:49 PM
npm http request GET https://registry.npmjs.org/json-schema-traverse
npm http 304 https://registry.npmjs.org/json-schema-traverse
npm http 304 https://registry.npmjs.org/fast-deep-equal
npm info retry fetch attempt 1 at 12:39:49 PM
npm info attempt registry request try #1 at 12:39:49 PM
npm http fetch GET https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz
npm info retry fetch attempt 1 at 12:39:49 PM
npm info attempt registry request try #1 at 12:39:49 PM
npm http fetch GET https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz
npm http 200 https://registry.npmjs.org/co
npm info retry fetch attempt 1 at 12:39:49 PM
npm info attempt registry request try #1 at 12:39:49 PM
npm http fetch GET https://registry.npmjs.org/co/-/co-4.6.0.tgz
npm http fetch 200 https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz
npm http fetch 200 https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz
npm http fetch 200 https://registry.npmjs.org/co/-/co-4.6.0.tgz
npm info attempt registry request try #1 at 12:39:49 PM
npm http request GET https://registry.npmjs.org/js-tokens
npm info retry fetch attempt 1 at 12:39:49 PM
npm info attempt registry request try #1 at 12:39:49 PM
npm http fetch GET https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz
npm http 200 https://registry.npmjs.org/js-tokens
npm info retry fetch attempt 1 at 12:39:50 PM
npm info attempt registry request try #1 at 12:39:50 PM
npm http fetch GET https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz
npm http fetch 200 https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz
npm http fetch 200 https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz
npm info attempt registry request try #1 at 12:39:50 PM
npm http request GET https://registry.npmjs.org/ansi-styles
npm info attempt registry request try #1 at 12:39:50 PM
npm http request GET https://registry.npmjs.org/escape-string-regexp
npm info attempt registry request try #1 at 12:39:50 PM
npm http request GET https://registry.npmjs.org/has-ansi
npm info attempt registry request try #1 at 12:39:50 PM
npm http request GET https://registry.npmjs.org/supports-color
npm info attempt registry request try #1 at 12:39:50 PM
npm http request GET https://registry.npmjs.org/strip-ansi
npm http 200 https://registry.npmjs.org/escape-string-regexp
npm http 304 https://registry.npmjs.org/strip-ansi
npm http 200 https://registry.npmjs.org/has-ansi
npm info retry fetch attempt 1 at 12:39:50 PM
npm info attempt registry request try #1 at 12:39:50 PM
npm http fetch GET https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz
npm info retry fetch attempt 1 at 12:39:50 PM
npm info attempt registry request try #1 at 12:39:50 PM
npm http fetch GET https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz
npm http 200 https://registry.npmjs.org/ansi-styles
npm info retry fetch attempt 1 at 12:39:50 PM
npm info attempt registry request try #1 at 12:39:50 PM
npm http fetch GET https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz
npm http 200 https://registry.npmjs.org/supports-color
npm http fetch 200 https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz
npm http fetch 200 https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz
npm info retry fetch attempt 1 at 12:39:50 PM
npm info attempt registry request try #1 at 12:39:50 PM
npm http fetch GET https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz
npm http fetch 200 https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz
npm info attempt registry request try #1 at 12:39:50 PM
npm http request GET https://registry.npmjs.org/ansi-regex
npm http 304 https://registry.npmjs.org/ansi-regex
npm info retry fetch attempt 1 at 12:39:50 PM
npm info attempt registry request try #1 at 12:39:50 PM
npm http fetch GET https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz
npm info retry fetch attempt 1 at 12:39:50 PM
npm info attempt registry request try #1 at 12:39:50 PM
npm http fetch GET https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz
npm http fetch 200 https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz
npm http fetch 200 https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz
npm info attempt registry request try #1 at 12:39:50 PM
npm http request GET https://registry.npmjs.org/color-convert
npm http 200 https://registry.npmjs.org/color-convert
npm info retry fetch attempt 1 at 12:39:50 PM
npm info attempt registry request try #1 at 12:39:50 PM
npm http fetch GET https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz
npm http fetch 200 https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz
npm info attempt registry request try #1 at 12:39:50 PM
npm http request GET https://registry.npmjs.org/color-name
npm http 200 https://registry.npmjs.org/color-name
npm info retry fetch attempt 1 at 12:39:50 PM
npm info attempt registry request try #1 at 12:39:50 PM
npm http fetch GET https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz
npm http fetch 200 https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz
npm info attempt registry request try #1 at 12:39:50 PM
npm http request GET https://registry.npmjs.org/has-flag
npm http 200 https://registry.npmjs.org/has-flag
npm info retry fetch attempt 1 at 12:39:50 PM
npm info attempt registry request try #1 at 12:39:50 PM
npm http fetch GET https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz
npm info attempt registry request try #1 at 12:39:50 PM
npm http request GET https://registry.npmjs.org/buffer-from
npm info attempt registry request try #1 at 12:39:50 PM
npm http request GET https://registry.npmjs.org/typedarray
npm http 200 https://registry.npmjs.org/typedarray
npm http 200 https://registry.npmjs.org/buffer-from
npm info retry fetch attempt 1 at 12:39:51 PM
npm info attempt registry request try #1 at 12:39:51 PM
npm http fetch GET https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz
npm info retry fetch attempt 1 at 12:39:51 PM
npm info attempt registry request try #1 at 12:39:51 PM
npm http fetch GET https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz
npm http fetch 200 https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz
npm http fetch 200 https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz
npm info attempt registry request try #1 at 12:39:51 PM
npm http request GET https://registry.npmjs.org/lru-cache
npm http 200 https://registry.npmjs.org/lru-cache
npm info retry fetch attempt 1 at 12:39:51 PM
npm info attempt registry request try #1 at 12:39:51 PM
npm http fetch GET https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz
npm http fetch 200 https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz
npm info attempt registry request try #1 at 12:39:51 PM
npm http request GET https://registry.npmjs.org/pseudomap
npm info attempt registry request try #1 at 12:39:51 PM
npm http request GET https://registry.npmjs.org/yallist
npm http 200 https://registry.npmjs.org/pseudomap
npm http 200 https://registry.npmjs.org/yallist
npm info retry fetch attempt 1 at 12:39:51 PM
npm info attempt registry request try #1 at 12:39:51 PM
npm http fetch GET https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz
npm info retry fetch attempt 1 at 12:39:51 PM
npm info attempt registry request try #1 at 12:39:51 PM
npm http fetch GET https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz
npm http fetch 200 https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz
npm http fetch 200 https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz
npm info attempt registry request try #1 at 12:39:51 PM
npm http request GET https://registry.npmjs.org/ms
npm http 304 https://registry.npmjs.org/ms
npm info attempt registry request try #1 at 12:39:51 PM
npm http request GET https://registry.npmjs.org/esrecurse
npm info attempt registry request try #1 at 12:39:51 PM
npm http request GET https://registry.npmjs.org/estraverse
npm http 200 https://registry.npmjs.org/esrecurse
npm info retry fetch attempt 1 at 12:39:51 PM
npm info attempt registry request try #1 at 12:39:51 PM
npm http fetch GET https://registry.npmjs.org/esrecurse/-/esrecurse-4.2.1.tgz
npm http 200 https://registry.npmjs.org/estraverse
npm info retry fetch attempt 1 at 12:39:51 PM
npm info attempt registry request try #1 at 12:39:51 PM
npm http fetch GET https://registry.npmjs.org/estraverse/-/estraverse-4.2.0.tgz
npm http fetch 200 https://registry.npmjs.org/estraverse/-/estraverse-4.2.0.tgz
npm http fetch 200 https://registry.npmjs.org/esrecurse/-/esrecurse-4.2.1.tgz
npm info attempt registry request try #1 at 12:39:51 PM
npm http request GET https://registry.npmjs.org/acorn
npm info attempt registry request try #1 at 12:39:51 PM
npm http request GET https://registry.npmjs.org/acorn-jsx
npm http 200 https://registry.npmjs.org/acorn-jsx
npm info retry fetch attempt 1 at 12:39:51 PM
npm info attempt registry request try #1 at 12:39:51 PM
npm http fetch GET https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-3.0.1.tgz
npm http 200 https://registry.npmjs.org/acorn
npm info retry fetch attempt 1 at 12:39:51 PM
npm info attempt registry request try #1 at 12:39:51 PM
npm http fetch GET https://registry.npmjs.org/acorn/-/acorn-5.7.3.tgz
npm http fetch 200 https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-3.0.1.tgz
npm http fetch 200 https://registry.npmjs.org/acorn/-/acorn-5.7.3.tgz
npm info retry fetch attempt 1 at 12:39:51 PM
npm info attempt registry request try #1 at 12:39:51 PM
npm http fetch GET https://registry.npmjs.org/acorn/-/acorn-3.3.0.tgz
npm http fetch 200 https://registry.npmjs.org/acorn/-/acorn-3.3.0.tgz
npm info attempt registry request try #1 at 12:39:52 PM
npm http request GET https://registry.npmjs.org/flat-cache
npm info attempt registry request try #1 at 12:39:52 PM
npm http request GET https://registry.npmjs.org/object-assign
npm http 200 https://registry.npmjs.org/object-assign
npm info retry fetch attempt 1 at 12:39:52 PM
npm info attempt registry request try #1 at 12:39:52 PM
npm http fetch GET https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz
npm http 200 https://registry.npmjs.org/flat-cache
npm info retry fetch attempt 1 at 12:39:52 PM
npm info attempt registry request try #1 at 12:39:52 PM
npm http fetch GET https://registry.npmjs.org/flat-cache/-/flat-cache-1.3.4.tgz
npm http fetch 200 https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz
npm http fetch 200 https://registry.npmjs.org/flat-cache/-/flat-cache-1.3.4.tgz
npm info attempt registry request try #1 at 12:39:52 PM
npm http request GET https://registry.npmjs.org/circular-json
npm info attempt registry request try #1 at 12:39:52 PM
npm http request GET https://registry.npmjs.org/write
npm info attempt registry request try #1 at 12:39:52 PM
npm http request GET https://registry.npmjs.org/rimraf
npm http 200 https://registry.npmjs.org/write
npm http 304 https://registry.npmjs.org/rimraf
npm info retry fetch attempt 1 at 12:39:52 PM
npm info attempt registry request try #1 at 12:39:52 PM
npm http fetch GET https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz
npm http 200 https://registry.npmjs.org/circular-json
npm info retry fetch attempt 1 at 12:39:52 PM
npm info attempt registry request try #1 at 12:39:52 PM
npm http fetch GET https://registry.npmjs.org/write/-/write-0.2.1.tgz
npm WARN deprecated circular-json@0.3.3: CircularJSON is in maintenance only, flatted is its successor.
npm info retry fetch attempt 1 at 12:39:52 PM
npm info attempt registry request try #1 at 12:39:52 PM
npm http fetch GET https://registry.npmjs.org/circular-json/-/circular-json-0.3.3.tgz
npm http fetch 200 https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz
npm http fetch 200 https://registry.npmjs.org/write/-/write-0.2.1.tgz
npm http fetch 200 https://registry.npmjs.org/circular-json/-/circular-json-0.3.3.tgz
npm info attempt registry request try #1 at 12:39:52 PM
npm http request GET https://registry.npmjs.org/ansi-escapes
npm info attempt registry request try #1 at 12:39:52 PM
npm http request GET https://registry.npmjs.org/cli-cursor
npm info attempt registry request try #1 at 12:39:52 PM
npm http request GET https://registry.npmjs.org/cli-width
npm info attempt registry request try #1 at 12:39:52 PM
npm http request GET https://registry.npmjs.org/external-editor
npm info attempt registry request try #1 at 12:39:52 PM
npm http request GET https://registry.npmjs.org/figures
npm info attempt registry request try #1 at 12:39:52 PM
npm http request GET https://registry.npmjs.org/mute-stream
npm info attempt registry request try #1 at 12:39:52 PM
npm http request GET https://registry.npmjs.org/run-async
npm info attempt registry request try #1 at 12:39:52 PM
npm http request GET https://registry.npmjs.org/rx-lite
npm info attempt registry request try #1 at 12:39:52 PM
npm http request GET https://registry.npmjs.org/rx-lite-aggregates
npm info attempt registry request try #1 at 12:39:52 PM
npm http request GET https://registry.npmjs.org/through
npm http 200 https://registry.npmjs.org/ansi-escapes
npm http 200 https://registry.npmjs.org/cli-width
npm http 200 https://registry.npmjs.org/rx-lite-aggregates
npm http 200 https://registry.npmjs.org/cli-cursor
npm http 200 https://registry.npmjs.org/figures
npm http 200 https://registry.npmjs.org/through
npm http 200 https://registry.npmjs.org/run-async
npm http 200 https://registry.npmjs.org/external-editor
npm http 200 https://registry.npmjs.org/mute-stream
npm http 200 https://registry.npmjs.org/rx-lite
npm info retry fetch attempt 1 at 12:39:52 PM
npm info attempt registry request try #1 at 12:39:52 PM
npm http fetch GET https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz
npm info retry fetch attempt 1 at 12:39:52 PM
npm info attempt registry request try #1 at 12:39:52 PM
npm http fetch GET https://registry.npmjs.org/cli-width/-/cli-width-2.2.0.tgz
npm info retry fetch attempt 1 at 12:39:52 PM
npm info attempt registry request try #1 at 12:39:52 PM
npm http fetch GET https://registry.npmjs.org/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz
npm info retry fetch attempt 1 at 12:39:52 PM
npm info attempt registry request try #1 at 12:39:52 PM
npm http fetch GET https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz
npm info retry fetch attempt 1 at 12:39:52 PM
npm info attempt registry request try #1 at 12:39:52 PM
npm http fetch GET https://registry.npmjs.org/figures/-/figures-2.0.0.tgz
npm info retry fetch attempt 1 at 12:39:52 PM
npm info attempt registry request try #1 at 12:39:52 PM
npm http fetch GET https://registry.npmjs.org/through/-/through-2.3.8.tgz
npm info retry fetch attempt 1 at 12:39:52 PM
npm info attempt registry request try #1 at 12:39:52 PM
npm http fetch GET https://registry.npmjs.org/run-async/-/run-async-2.3.0.tgz
npm info retry fetch attempt 1 at 12:39:52 PM
npm info attempt registry request try #1 at 12:39:52 PM
npm http fetch GET https://registry.npmjs.org/external-editor/-/external-editor-2.2.0.tgz
npm info retry fetch attempt 1 at 12:39:52 PM
npm info attempt registry request try #1 at 12:39:52 PM
npm http fetch GET https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.7.tgz
npm info retry fetch attempt 1 at 12:39:52 PM
npm info attempt registry request try #1 at 12:39:52 PM
npm http fetch GET https://registry.npmjs.org/rx-lite/-/rx-lite-4.0.8.tgz
npm http fetch 200 https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz
npm http fetch 200 https://registry.npmjs.org/cli-width/-/cli-width-2.2.0.tgz
npm http fetch 200 https://registry.npmjs.org/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz
npm http fetch 200 https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz
npm http fetch 200 https://registry.npmjs.org/through/-/through-2.3.8.tgz
npm http fetch 200 https://registry.npmjs.org/run-async/-/run-async-2.3.0.tgz
npm http fetch 200 https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.7.tgz
npm http fetch 200 https://registry.npmjs.org/rx-lite/-/rx-lite-4.0.8.tgz
npm http fetch 200 https://registry.npmjs.org/figures/-/figures-2.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/external-editor/-/external-editor-2.2.0.tgz
npm info attempt registry request try #1 at 12:39:52 PM
npm http request GET https://registry.npmjs.org/restore-cursor
npm http 200 https://registry.npmjs.org/restore-cursor
npm info retry fetch attempt 1 at 12:39:52 PM
npm info attempt registry request try #1 at 12:39:52 PM
npm http fetch GET https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz
npm info attempt registry request try #1 at 12:39:52 PM
npm http request GET https://registry.npmjs.org/onetime
npm http 200 https://registry.npmjs.org/onetime
npm info retry fetch attempt 1 at 12:39:53 PM
npm info attempt registry request try #1 at 12:39:53 PM
npm http fetch GET https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz
npm http fetch 200 https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz
npm info attempt registry request try #1 at 12:39:53 PM
npm http request GET https://registry.npmjs.org/mimic-fn
npm http 304 https://registry.npmjs.org/mimic-fn
npm info retry fetch attempt 1 at 12:39:53 PM
npm info attempt registry request try #1 at 12:39:53 PM
npm http fetch GET https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz
npm http fetch 200 https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz
npm info attempt registry request try #1 at 12:39:53 PM
npm http request GET https://registry.npmjs.org/chardet
npm info attempt registry request try #1 at 12:39:53 PM
npm http request GET https://registry.npmjs.org/tmp
npm http 200 https://registry.npmjs.org/chardet
npm info retry fetch attempt 1 at 12:39:53 PM
npm info attempt registry request try #1 at 12:39:53 PM
npm http fetch GET https://registry.npmjs.org/chardet/-/chardet-0.4.2.tgz
npm http 200 https://registry.npmjs.org/tmp
npm info retry fetch attempt 1 at 12:39:53 PM
npm info attempt registry request try #1 at 12:39:53 PM
npm http fetch GET https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz
npm http fetch 200 https://registry.npmjs.org/chardet/-/chardet-0.4.2.tgz
npm http fetch 200 https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz
npm info attempt registry request try #1 at 12:39:53 PM
npm http request GET https://registry.npmjs.org/os-tmpdir
npm http 200 https://registry.npmjs.org/os-tmpdir
npm info retry fetch attempt 1 at 12:39:53 PM
npm info attempt registry request try #1 at 12:39:53 PM
npm http fetch GET https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz
npm http fetch 200 https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz
npm info attempt registry request try #1 at 12:39:53 PM
npm http request GET https://registry.npmjs.org/is-promise
npm http 200 https://registry.npmjs.org/is-promise
npm info retry fetch attempt 1 at 12:39:53 PM
npm info attempt registry request try #1 at 12:39:53 PM
npm http fetch GET https://registry.npmjs.org/is-promise/-/is-promise-2.1.0.tgz
npm http fetch 200 https://registry.npmjs.org/is-promise/-/is-promise-2.1.0.tgz
npm info attempt registry request try #1 at 12:39:53 PM
npm http request GET https://registry.npmjs.org/prelude-ls
npm info attempt registry request try #1 at 12:39:53 PM
npm http request GET https://registry.npmjs.org/type-check
npm http 200 https://registry.npmjs.org/prelude-ls
npm info retry fetch attempt 1 at 12:39:53 PM
npm info attempt registry request try #1 at 12:39:53 PM
npm http fetch GET https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz
npm http 200 https://registry.npmjs.org/type-check
npm info retry fetch attempt 1 at 12:39:53 PM
npm info attempt registry request try #1 at 12:39:53 PM
npm http fetch GET https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz
npm http fetch 200 https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz
npm http fetch 200 https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz
npm info attempt registry request try #1 at 12:39:53 PM
npm http request GET https://registry.npmjs.org/deep-is
npm info attempt registry request try #1 at 12:39:53 PM
npm http request GET https://registry.npmjs.org/fast-levenshtein
npm info attempt registry request try #1 at 12:39:53 PM
npm http request GET https://registry.npmjs.org/wordwrap
npm http 304 https://registry.npmjs.org/wordwrap
npm info retry fetch attempt 1 at 12:39:53 PM
npm info attempt registry request try #1 at 12:39:53 PM
npm http fetch GET https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz
npm http 200 https://registry.npmjs.org/deep-is
npm http 200 https://registry.npmjs.org/fast-levenshtein
npm info retry fetch attempt 1 at 12:39:53 PM
npm info attempt registry request try #1 at 12:39:53 PM
npm http fetch GET https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz
npm info retry fetch attempt 1 at 12:39:53 PM
npm info attempt registry request try #1 at 12:39:53 PM
npm http fetch GET https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz
npm http fetch 200 https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz
npm http fetch 200 https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz
npm info attempt registry request try #1 at 12:39:54 PM
npm http request GET https://registry.npmjs.org/caller-path
npm info attempt registry request try #1 at 12:39:54 PM
npm http request GET https://registry.npmjs.org/resolve-from
npm http 200 https://registry.npmjs.org/caller-path
npm info retry fetch attempt 1 at 12:39:54 PM
npm info attempt registry request try #1 at 12:39:54 PM
npm http fetch GET https://registry.npmjs.org/caller-path/-/caller-path-0.1.0.tgz
npm http 200 https://registry.npmjs.org/resolve-from
npm info retry fetch attempt 1 at 12:39:54 PM
npm info attempt registry request try #1 at 12:39:54 PM
npm http fetch GET https://registry.npmjs.org/resolve-from/-/resolve-from-1.0.1.tgz
npm http fetch 200 https://registry.npmjs.org/resolve-from/-/resolve-from-1.0.1.tgz
npm http fetch 200 https://registry.npmjs.org/caller-path/-/caller-path-0.1.0.tgz
npm info attempt registry request try #1 at 12:39:54 PM
npm http request GET https://registry.npmjs.org/callsites
npm http 200 https://registry.npmjs.org/callsites
npm info retry fetch attempt 1 at 12:39:54 PM
npm info attempt registry request try #1 at 12:39:54 PM
npm http fetch GET https://registry.npmjs.org/callsites/-/callsites-0.2.0.tgz
npm http fetch 200 https://registry.npmjs.org/callsites/-/callsites-0.2.0.tgz
npm info attempt registry request try #1 at 12:39:54 PM
npm http request GET https://registry.npmjs.org/ajv-keywords
npm info attempt registry request try #1 at 12:39:54 PM
npm http request GET https://registry.npmjs.org/slice-ansi
npm http 200 https://registry.npmjs.org/slice-ansi
npm http 200 https://registry.npmjs.org/ajv-keywords
npm info retry fetch attempt 1 at 12:39:54 PM
npm info attempt registry request try #1 at 12:39:54 PM
npm http fetch GET https://registry.npmjs.org/slice-ansi/-/slice-ansi-1.0.0.tgz
npm info retry fetch attempt 1 at 12:39:54 PM
npm info attempt registry request try #1 at 12:39:54 PM
npm http fetch GET https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-2.1.1.tgz
npm http fetch 200 https://registry.npmjs.org/slice-ansi/-/slice-ansi-1.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-2.1.1.tgz
npm info attempt registry request try #1 at 12:39:54 PM
npm http request GET https://registry.npmjs.org/comment-parser
npm info attempt registry request try #1 at 12:39:54 PM
npm http request GET https://registry.npmjs.org/jsdoctypeparser
npm http 200 https://registry.npmjs.org/jsdoctypeparser
npm http 200 https://registry.npmjs.org/comment-parser
npm info retry fetch attempt 1 at 12:39:54 PM
npm info attempt registry request try #1 at 12:39:54 PM
npm http fetch GET https://registry.npmjs.org/jsdoctypeparser/-/jsdoctypeparser-2.0.0-alpha-8.tgz
npm info retry fetch attempt 1 at 12:39:54 PM
npm info attempt registry request try #1 at 12:39:54 PM
npm http fetch GET https://registry.npmjs.org/comment-parser/-/comment-parser-0.5.4.tgz
npm http fetch 200 https://registry.npmjs.org/comment-parser/-/comment-parser-0.5.4.tgz
npm http fetch 200 https://registry.npmjs.org/jsdoctypeparser/-/jsdoctypeparser-2.0.0-alpha-8.tgz
npm info attempt registry request try #1 at 12:39:54 PM
npm http request GET https://registry.npmjs.org/vscode-json-languageservice
npm http 200 https://registry.npmjs.org/vscode-json-languageservice
npm info retry fetch attempt 1 at 12:39:55 PM
npm info attempt registry request try #1 at 12:39:55 PM
npm http fetch GET https://registry.npmjs.org/vscode-json-languageservice/-/vscode-json-languageservice-3.2.1.tgz
npm http fetch 200 https://registry.npmjs.org/vscode-json-languageservice/-/vscode-json-languageservice-3.2.1.tgz
npm info attempt registry request try #1 at 12:39:55 PM
npm http request GET https://registry.npmjs.org/jsonc-parser
npm info attempt registry request try #1 at 12:39:55 PM
npm http request GET https://registry.npmjs.org/vscode-languageserver-types
npm info attempt registry request try #1 at 12:39:55 PM
npm http request GET https://registry.npmjs.org/vscode-nls
npm info attempt registry request try #1 at 12:39:55 PM
npm http request GET https://registry.npmjs.org/vscode-uri
npm http 200 https://registry.npmjs.org/vscode-uri
npm http 200 https://registry.npmjs.org/vscode-nls
npm http 200 https://registry.npmjs.org/jsonc-parser
npm http 200 https://registry.npmjs.org/vscode-languageserver-types
npm info retry fetch attempt 1 at 12:39:55 PM
npm info attempt registry request try #1 at 12:39:55 PM
npm http fetch GET https://registry.npmjs.org/vscode-uri/-/vscode-uri-1.0.6.tgz
npm info retry fetch attempt 1 at 12:39:55 PM
npm info attempt registry request try #1 at 12:39:55 PM
npm http fetch GET https://registry.npmjs.org/vscode-nls/-/vscode-nls-4.1.0.tgz
npm info retry fetch attempt 1 at 12:39:55 PM
npm info attempt registry request try #1 at 12:39:55 PM
npm http fetch GET https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-2.1.0.tgz
npm info retry fetch attempt 1 at 12:39:55 PM
npm info attempt registry request try #1 at 12:39:55 PM
npm http fetch GET https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.14.0.tgz
npm http fetch 200 https://registry.npmjs.org/vscode-nls/-/vscode-nls-4.1.0.tgz
npm http fetch 200 https://registry.npmjs.org/vscode-uri/-/vscode-uri-1.0.6.tgz
npm http fetch 200 https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-2.1.0.tgz
npm http fetch 200 https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.14.0.tgz
npm info attempt registry request try #1 at 12:39:55 PM
npm http request GET https://registry.npmjs.org/abbrev
npm info attempt registry request try #1 at 12:39:55 PM
npm http request GET https://registry.npmjs.org/escodegen
npm info attempt registry request try #1 at 12:39:55 PM
npm http request GET https://registry.npmjs.org/nopt
npm info attempt registry request try #1 at 12:39:55 PM
npm http request GET https://registry.npmjs.org/async
npm info attempt registry request try #1 at 12:39:55 PM
npm http request GET https://registry.npmjs.org/esprima
npm info attempt registry request try #1 at 12:39:55 PM
npm http request GET https://registry.npmjs.org/glob
npm info attempt registry request try #1 at 12:39:55 PM
npm http request GET https://registry.npmjs.org/resolve
npm info retry fetch attempt 1 at 12:39:55 PM
npm info attempt registry request try #1 at 12:39:55 PM
npm http fetch GET https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz
npm http 200 https://registry.npmjs.org/abbrev
npm http 200 https://registry.npmjs.org/nopt
npm info retry fetch attempt 1 at 12:39:55 PM
npm info attempt registry request try #1 at 12:39:55 PM
npm http fetch GET https://registry.npmjs.org/abbrev/-/abbrev-1.0.9.tgz
npm http 200 https://registry.npmjs.org/escodegen
npm http 304 https://registry.npmjs.org/async
npm http 304 https://registry.npmjs.org/esprima
npm http 304 https://registry.npmjs.org/glob
npm info retry fetch attempt 1 at 12:39:55 PM
npm info attempt registry request try #1 at 12:39:55 PM
npm http fetch GET https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz
npm http 304 https://registry.npmjs.org/resolve
npm http fetch 200 https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz
npm info retry fetch attempt 1 at 12:39:55 PM
npm info attempt registry request try #1 at 12:39:55 PM
npm http fetch GET https://registry.npmjs.org/async/-/async-1.5.2.tgz
npm info retry fetch attempt 1 at 12:39:55 PM
npm info attempt registry request try #1 at 12:39:55 PM
npm http fetch GET https://registry.npmjs.org/esprima/-/esprima-2.7.3.tgz
npm info retry fetch attempt 1 at 12:39:55 PM
npm info attempt registry request try #1 at 12:39:55 PM
npm http fetch GET https://registry.npmjs.org/glob/-/glob-5.0.15.tgz
npm info retry fetch attempt 1 at 12:39:55 PM
npm info attempt registry request try #1 at 12:39:55 PM
npm http fetch GET https://registry.npmjs.org/escodegen/-/escodegen-1.8.1.tgz
npm info retry fetch attempt 1 at 12:39:55 PM
npm info attempt registry request try #1 at 12:39:55 PM
npm http fetch GET https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz
npm http fetch 200 https://registry.npmjs.org/abbrev/-/abbrev-1.0.9.tgz
npm http fetch 200 https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz
npm http fetch 200 https://registry.npmjs.org/async/-/async-1.5.2.tgz
npm http fetch 200 https://registry.npmjs.org/esprima/-/esprima-2.7.3.tgz
npm http fetch 200 https://registry.npmjs.org/glob/-/glob-5.0.15.tgz
npm http fetch 200 https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz
npm http fetch 200 https://registry.npmjs.org/escodegen/-/escodegen-1.8.1.tgz
npm info attempt registry request try #1 at 12:39:55 PM
npm http request GET https://registry.npmjs.org/source-map
npm info retry fetch attempt 1 at 12:39:55 PM
npm info attempt registry request try #1 at 12:39:55 PM
npm http fetch GET https://registry.npmjs.org/estraverse/-/estraverse-1.9.3.tgz
npm http 304 https://registry.npmjs.org/source-map
npm http fetch 200 https://registry.npmjs.org/estraverse/-/estraverse-1.9.3.tgz
npm info retry fetch attempt 1 at 12:39:55 PM
npm info attempt registry request try #1 at 12:39:55 PM
npm http fetch GET https://registry.npmjs.org/source-map/-/source-map-0.2.0.tgz
npm http fetch 200 https://registry.npmjs.org/source-map/-/source-map-0.2.0.tgz
npm info attempt registry request try #1 at 12:39:56 PM
npm http request GET https://registry.npmjs.org/amdefine
npm http 200 https://registry.npmjs.org/amdefine
npm info retry fetch attempt 1 at 12:39:56 PM
npm info attempt registry request try #1 at 12:39:56 PM
npm http fetch GET https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz
npm http fetch 200 https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz
npm info retry fetch attempt 1 at 12:39:56 PM
npm info attempt registry request try #1 at 12:39:56 PM
npm http fetch GET https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz
npm info retry fetch attempt 1 at 12:39:56 PM
npm info attempt registry request try #1 at 12:39:56 PM
npm http fetch GET https://registry.npmjs.org/espree/-/espree-2.2.5.tgz
npm http fetch 200 https://registry.npmjs.org/espree/-/espree-2.2.5.tgz
npm info attempt registry request try #1 at 12:39:56 PM
npm http request GET https://registry.npmjs.org/babylon
npm info attempt registry request try #1 at 12:39:56 PM
npm http request GET https://registry.npmjs.org/catharsis
npm info attempt registry request try #1 at 12:39:56 PM
npm http request GET https://registry.npmjs.org/js2xmlparser
npm info attempt registry request try #1 at 12:39:56 PM
npm http request GET https://registry.npmjs.org/klaw
npm info attempt registry request try #1 at 12:39:56 PM
npm http request GET https://registry.npmjs.org/marked
npm info attempt registry request try #1 at 12:39:56 PM
npm http request GET https://registry.npmjs.org/requizzle
npm info attempt registry request try #1 at 12:39:56 PM
npm http request GET https://registry.npmjs.org/taffydb
npm info attempt registry request try #1 at 12:39:56 PM
npm http request GET https://registry.npmjs.org/underscore
npm http 200 https://registry.npmjs.org/requizzle
npm http 200 https://registry.npmjs.org/js2xmlparser
npm http 200 https://registry.npmjs.org/underscore
npm http 200 https://registry.npmjs.org/klaw
npm http 200 https://registry.npmjs.org/taffydb
npm http 200 https://registry.npmjs.org/marked
npm info retry fetch attempt 1 at 12:39:56 PM
npm info attempt registry request try #1 at 12:39:56 PM
npm http fetch GET https://registry.npmjs.org/requizzle/-/requizzle-0.2.1.tgz
npm info retry fetch attempt 1 at 12:39:56 PM
npm info attempt registry request try #1 at 12:39:56 PM
npm http fetch GET https://registry.npmjs.org/js2xmlparser/-/js2xmlparser-3.0.0.tgz
npm info retry fetch attempt 1 at 12:39:56 PM
npm info attempt registry request try #1 at 12:39:56 PM
npm http fetch GET https://registry.npmjs.org/underscore/-/underscore-1.8.3.tgz
npm info retry fetch attempt 1 at 12:39:56 PM
npm info attempt registry request try #1 at 12:39:56 PM
npm http fetch GET https://registry.npmjs.org/klaw/-/klaw-2.0.0.tgz
npm info retry fetch attempt 1 at 12:39:56 PM
npm info attempt registry request try #1 at 12:39:56 PM
npm http fetch GET https://registry.npmjs.org/taffydb/-/taffydb-2.6.2.tgz
npm info retry fetch attempt 1 at 12:39:56 PM
npm info attempt registry request try #1 at 12:39:56 PM
npm http fetch GET https://registry.npmjs.org/marked/-/marked-0.3.19.tgz
npm http 200 https://registry.npmjs.org/babylon
npm http fetch 200 https://registry.npmjs.org/requizzle/-/requizzle-0.2.1.tgz
npm http fetch 200 https://registry.npmjs.org/js2xmlparser/-/js2xmlparser-3.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/taffydb/-/taffydb-2.6.2.tgz
npm http fetch 200 https://registry.npmjs.org/marked/-/marked-0.3.19.tgz
npm http fetch 200 https://registry.npmjs.org/underscore/-/underscore-1.8.3.tgz
npm info retry fetch attempt 1 at 12:39:56 PM
npm info attempt registry request try #1 at 12:39:56 PM
npm http fetch GET https://registry.npmjs.org/babylon/-/babylon-7.0.0-beta.19.tgz
npm http fetch 200 https://registry.npmjs.org/klaw/-/klaw-2.0.0.tgz
npm http 200 https://registry.npmjs.org/catharsis
npm http fetch 200 https://registry.npmjs.org/babylon/-/babylon-7.0.0-beta.19.tgz
npm info retry fetch attempt 1 at 12:39:56 PM
npm info attempt registry request try #1 at 12:39:56 PM
npm http fetch GET https://registry.npmjs.org/catharsis/-/catharsis-0.8.9.tgz
npm http fetch 200 https://registry.npmjs.org/catharsis/-/catharsis-0.8.9.tgz
npm info attempt registry request try #1 at 12:39:56 PM
npm http request GET https://registry.npmjs.org/underscore-contrib
npm http 200 https://registry.npmjs.org/underscore-contrib
npm info retry fetch attempt 1 at 12:39:56 PM
npm info attempt registry request try #1 at 12:39:56 PM
npm http fetch GET https://registry.npmjs.org/underscore-contrib/-/underscore-contrib-0.3.0.tgz
npm http fetch 200 https://registry.npmjs.org/underscore-contrib/-/underscore-contrib-0.3.0.tgz
npm info retry fetch attempt 1 at 12:39:57 PM
npm info attempt registry request try #1 at 12:39:57 PM
npm http fetch GET https://registry.npmjs.org/underscore/-/underscore-1.6.0.tgz
npm http fetch 200 https://registry.npmjs.org/underscore/-/underscore-1.6.0.tgz
npm info attempt registry request try #1 at 12:39:57 PM
npm http request GET https://registry.npmjs.org/xmlcreate
npm http 200 https://registry.npmjs.org/xmlcreate
npm info retry fetch attempt 1 at 12:39:57 PM
npm info attempt registry request try #1 at 12:39:57 PM
npm http fetch GET https://registry.npmjs.org/xmlcreate/-/xmlcreate-1.0.2.tgz
npm http fetch 200 https://registry.npmjs.org/xmlcreate/-/xmlcreate-1.0.2.tgz
npm info attempt registry request try #1 at 12:39:57 PM
npm http request GET https://registry.npmjs.org/browser-stdout
npm info attempt registry request try #1 at 12:39:57 PM
npm http request GET https://registry.npmjs.org/diff
npm info attempt registry request try #1 at 12:39:57 PM
npm http request GET https://registry.npmjs.org/he
npm info attempt registry request try #1 at 12:39:57 PM
npm http request GET https://registry.npmjs.org/commander
npm info retry fetch attempt 1 at 12:39:57 PM
npm info attempt registry request try #1 at 12:39:57 PM
npm http fetch GET https://registry.npmjs.org/glob/-/glob-7.1.2.tgz
npm info retry fetch attempt 1 at 12:39:57 PM
npm info attempt registry request try #1 at 12:39:57 PM
npm http fetch GET https://registry.npmjs.org/supports-color/-/supports-color-5.4.0.tgz
npm info retry fetch attempt 1 at 12:39:57 PM
npm info attempt registry request try #1 at 12:39:57 PM
npm http fetch GET https://registry.npmjs.org/debug/-/debug-3.1.0.tgz
npm http 200 https://registry.npmjs.org/browser-stdout
npm info retry fetch attempt 1 at 12:39:57 PM
npm info attempt registry request try #1 at 12:39:57 PM
npm http fetch GET https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz
npm http 200 https://registry.npmjs.org/he
npm http 304 https://registry.npmjs.org/commander
npm http fetch 200 https://registry.npmjs.org/supports-color/-/supports-color-5.4.0.tgz
npm http 200 https://registry.npmjs.org/diff
npm http fetch 200 https://registry.npmjs.org/glob/-/glob-7.1.2.tgz
npm info retry fetch attempt 1 at 12:39:57 PM
npm info attempt registry request try #1 at 12:39:57 PM
npm http fetch GET https://registry.npmjs.org/commander/-/commander-2.15.1.tgz
npm http fetch 200 https://registry.npmjs.org/debug/-/debug-3.1.0.tgz
npm info retry fetch attempt 1 at 12:39:57 PM
npm info attempt registry request try #1 at 12:39:57 PM
npm http fetch GET https://registry.npmjs.org/he/-/he-1.1.1.tgz
npm info retry fetch attempt 1 at 12:39:57 PM
npm info attempt registry request try #1 at 12:39:57 PM
npm http fetch GET https://registry.npmjs.org/diff/-/diff-3.5.0.tgz
npm http fetch 200 https://registry.npmjs.org/commander/-/commander-2.15.1.tgz
npm http fetch 200 https://registry.npmjs.org/he/-/he-1.1.1.tgz
npm http fetch 200 https://registry.npmjs.org/diff/-/diff-3.5.0.tgz
npm http fetch 200 https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz
npm info attempt registry request try #1 at 12:39:57 PM
npm http request GET https://registry.npmjs.org/deep-equal
npm info attempt registry request try #1 at 12:39:57 PM
npm http request GET https://registry.npmjs.org/propagate
npm http 200 https://registry.npmjs.org/propagate
npm http 200 https://registry.npmjs.org/deep-equal
npm info retry fetch attempt 1 at 12:39:57 PM
npm info attempt registry request try #1 at 12:39:57 PM
npm http fetch GET https://registry.npmjs.org/propagate/-/propagate-1.0.0.tgz
npm info retry fetch attempt 1 at 12:39:57 PM
npm info attempt registry request try #1 at 12:39:57 PM
npm http fetch GET https://registry.npmjs.org/deep-equal/-/deep-equal-1.0.1.tgz
npm http fetch 200 https://registry.npmjs.org/deep-equal/-/deep-equal-1.0.1.tgz
npm http fetch 200 https://registry.npmjs.org/propagate/-/propagate-1.0.0.tgz
npm info attempt registry request try #1 at 12:39:57 PM
npm http request GET https://registry.npmjs.org/cli-table2
npm info attempt registry request try #1 at 12:39:57 PM
npm http request GET https://registry.npmjs.org/cvss
npm info attempt registry request try #1 at 12:39:57 PM
npm http request GET https://registry.npmjs.org/https-proxy-agent
npm info attempt registry request try #1 at 12:39:57 PM
npm http request GET https://registry.npmjs.org/nodesecurity-npm-utils
npm info attempt registry request try #1 at 12:39:57 PM
npm http request GET https://registry.npmjs.org/wreck
npm info attempt registry request try #1 at 12:39:57 PM
npm http request GET https://registry.npmjs.org/yargs
npm http 304 https://registry.npmjs.org/yargs
npm info retry fetch attempt 1 at 12:39:58 PM
npm info attempt registry request try #1 at 12:39:58 PM
npm http fetch GET https://registry.npmjs.org/yargs/-/yargs-9.0.1.tgz
npm http 200 https://registry.npmjs.org/cli-table2
npm http 200 https://registry.npmjs.org/https-proxy-agent
npm info retry fetch attempt 1 at 12:39:58 PM
npm info attempt registry request try #1 at 12:39:58 PM
npm http fetch GET https://registry.npmjs.org/cli-table2/-/cli-table2-0.2.0.tgz
npm info retry fetch attempt 1 at 12:39:58 PM
npm info attempt registry request try #1 at 12:39:58 PM
npm http fetch GET https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-2.2.1.tgz
npm http fetch 200 https://registry.npmjs.org/yargs/-/yargs-9.0.1.tgz
npm http fetch 200 https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-2.2.1.tgz
npm http fetch 200 https://registry.npmjs.org/cli-table2/-/cli-table2-0.2.0.tgz
npm http 200 https://registry.npmjs.org/nodesecurity-npm-utils
npm info retry fetch attempt 1 at 12:39:58 PM
npm info attempt registry request try #1 at 12:39:58 PM
npm http fetch GET https://registry.npmjs.org/nodesecurity-npm-utils/-/nodesecurity-npm-utils-6.0.0.tgz
npm http 200 https://registry.npmjs.org/cvss
npm http 200 https://registry.npmjs.org/wreck
npm WARN deprecated wreck@12.5.1: This version has been deprecated in accordance with the hapi support policy (hapi.im/support). Please upgrade to the latest version to get the best features, bug fixes, and security patches. If you are unable to upgrade at this time, paid support is available for older versions (hapi.im/commercial).
npm info retry fetch attempt 1 at 12:39:58 PM
npm info attempt registry request try #1 at 12:39:58 PM
npm http fetch GET https://registry.npmjs.org/cvss/-/cvss-1.0.5.tgz
npm info retry fetch attempt 1 at 12:39:58 PM
npm info attempt registry request try #1 at 12:39:58 PM
npm http fetch GET https://registry.npmjs.org/wreck/-/wreck-12.5.1.tgz
npm http fetch 200 https://registry.npmjs.org/cvss/-/cvss-1.0.5.tgz
npm http fetch 200 https://registry.npmjs.org/wreck/-/wreck-12.5.1.tgz
npm http fetch 200 https://registry.npmjs.org/nodesecurity-npm-utils/-/nodesecurity-npm-utils-6.0.0.tgz
npm info attempt registry request try #1 at 12:39:59 PM
npm http request GET https://registry.npmjs.org/string-width
npm http 304 https://registry.npmjs.org/string-width
npm info attempt registry request try #1 at 12:39:59 PM
npm http request GET https://registry.npmjs.org/is-fullwidth-code-point
npm http 304 https://registry.npmjs.org/is-fullwidth-code-point
npm info attempt registry request try #1 at 12:39:59 PM
npm http request GET https://registry.npmjs.org/agent-base
npm info attempt registry request try #1 at 12:39:59 PM
npm http request GET https://registry.npmjs.org/debug
npm http 200 https://registry.npmjs.org/agent-base
npm http 304 https://registry.npmjs.org/debug
npm info retry fetch attempt 1 at 12:39:59 PM
npm info attempt registry request try #1 at 12:39:59 PM
npm http fetch GET https://registry.npmjs.org/agent-base/-/agent-base-4.2.1.tgz
npm http fetch 200 https://registry.npmjs.org/agent-base/-/agent-base-4.2.1.tgz
npm info attempt registry request try #1 at 12:39:59 PM
npm http request GET https://registry.npmjs.org/es6-promisify
npm http 200 https://registry.npmjs.org/es6-promisify
npm info retry fetch attempt 1 at 12:39:59 PM
npm info attempt registry request try #1 at 12:39:59 PM
npm http fetch GET https://registry.npmjs.org/es6-promisify/-/es6-promisify-5.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/es6-promisify/-/es6-promisify-5.0.0.tgz
npm info attempt registry request try #1 at 12:39:59 PM
npm http request GET https://registry.npmjs.org/es6-promise
npm http 200 https://registry.npmjs.org/es6-promise
npm info retry fetch attempt 1 at 12:39:59 PM
npm info attempt registry request try #1 at 12:39:59 PM
npm http fetch GET https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.6.tgz
npm http fetch 200 https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.6.tgz
npm info attempt registry request try #1 at 12:39:59 PM
npm http request GET https://registry.npmjs.org/boom
npm info attempt registry request try #1 at 12:39:59 PM
npm http request GET https://registry.npmjs.org/hoek
npm http 200 https://registry.npmjs.org/boom
npm WARN deprecated boom@5.2.0: This version has been deprecated in accordance with the hapi support policy (hapi.im/support). Please upgrade to the latest version to get the best features, bug fixes, and security patches. If you are unable to upgrade at this time, paid support is available for older versions (hapi.im/commercial).
npm info retry fetch attempt 1 at 12:39:59 PM
npm info attempt registry request try #1 at 12:39:59 PM
npm http fetch GET https://registry.npmjs.org/boom/-/boom-5.2.0.tgz
npm http 200 https://registry.npmjs.org/hoek
npm WARN deprecated hoek@4.2.1: This version has been deprecated in accordance with the hapi support policy (hapi.im/support). Please upgrade to the latest version to get the best features, bug fixes, and security patches. If you are unable to upgrade at this time, paid support is available for older versions (hapi.im/commercial).
npm info retry fetch attempt 1 at 12:39:59 PM
npm info attempt registry request try #1 at 12:39:59 PM
npm http fetch GET https://registry.npmjs.org/hoek/-/hoek-4.2.1.tgz
npm http fetch 200 https://registry.npmjs.org/boom/-/boom-5.2.0.tgz
npm http fetch 200 https://registry.npmjs.org/hoek/-/hoek-4.2.1.tgz
npm info attempt registry request try #1 at 12:39:59 PM
npm http request GET https://registry.npmjs.org/camelcase
npm info attempt registry request try #1 at 12:39:59 PM
npm http request GET https://registry.npmjs.org/cliui
npm info attempt registry request try #1 at 12:39:59 PM
npm http request GET https://registry.npmjs.org/read-pkg-up
npm info attempt registry request try #1 at 12:39:59 PM
npm http request GET https://registry.npmjs.org/os-locale
npm info attempt registry request try #1 at 12:39:59 PM
npm http request GET https://registry.npmjs.org/y18n
npm info attempt registry request try #1 at 12:39:59 PM
npm http request GET https://registry.npmjs.org/yargs-parser
npm http 304 https://registry.npmjs.org/y18n
npm http 304 https://registry.npmjs.org/os-locale
npm http 304 https://registry.npmjs.org/camelcase
npm http 304 https://registry.npmjs.org/yargs-parser
npm info retry fetch attempt 1 at 12:40:00 PM
npm info attempt registry request try #1 at 12:40:00 PM
npm http fetch GET https://registry.npmjs.org/os-locale/-/os-locale-2.1.0.tgz
npm http 304 https://registry.npmjs.org/cliui
npm http 304 https://registry.npmjs.org/read-pkg-up
npm info retry fetch attempt 1 at 12:40:00 PM
npm info attempt registry request try #1 at 12:40:00 PM
npm http fetch GET https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz
npm info retry fetch attempt 1 at 12:40:00 PM
npm info attempt registry request try #1 at 12:40:00 PM
npm http fetch GET https://registry.npmjs.org/yargs-parser/-/yargs-parser-7.0.0.tgz
npm info retry fetch attempt 1 at 12:40:00 PM
npm info attempt registry request try #1 at 12:40:00 PM
npm http fetch GET https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-2.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/os-locale/-/os-locale-2.1.0.tgz
npm http fetch 200 https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz
npm http fetch 200 https://registry.npmjs.org/yargs-parser/-/yargs-parser-7.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-2.0.0.tgz
npm info attempt registry request try #1 at 12:40:00 PM
npm http request GET https://registry.npmjs.org/execa
npm info attempt registry request try #1 at 12:40:00 PM
npm http request GET https://registry.npmjs.org/lcid
npm info attempt registry request try #1 at 12:40:00 PM
npm http request GET https://registry.npmjs.org/mem
npm http 304 https://registry.npmjs.org/mem
npm info retry fetch attempt 1 at 12:40:00 PM
npm info attempt registry request try #1 at 12:40:00 PM
npm http fetch GET https://registry.npmjs.org/mem/-/mem-1.1.0.tgz
npm http 304 https://registry.npmjs.org/execa
npm info retry fetch attempt 1 at 12:40:00 PM
npm info attempt registry request try #1 at 12:40:00 PM
npm http fetch GET https://registry.npmjs.org/execa/-/execa-0.7.0.tgz
npm http 304 https://registry.npmjs.org/lcid
npm http fetch 200 https://registry.npmjs.org/mem/-/mem-1.1.0.tgz
npm http fetch 200 https://registry.npmjs.org/execa/-/execa-0.7.0.tgz
npm info attempt registry request try #1 at 12:40:00 PM
npm http request GET https://registry.npmjs.org/cross-spawn
npm info attempt registry request try #1 at 12:40:00 PM
npm http request GET https://registry.npmjs.org/get-stream
npm http 304 https://registry.npmjs.org/get-stream
npm info retry fetch attempt 1 at 12:40:00 PM
npm info attempt registry request try #1 at 12:40:00 PM
npm http fetch GET https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz
npm http 304 https://registry.npmjs.org/cross-spawn
npm http fetch 200 https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz
npm info attempt registry request try #1 at 12:40:00 PM
npm http request GET https://registry.npmjs.org/invert-kv
npm http 304 https://registry.npmjs.org/invert-kv
npm info attempt registry request try #1 at 12:40:00 PM
npm http request GET https://registry.npmjs.org/find-up
npm info attempt registry request try #1 at 12:40:00 PM
npm http request GET https://registry.npmjs.org/read-pkg
npm http 304 https://registry.npmjs.org/find-up
npm info retry fetch attempt 1 at 12:40:00 PM
npm info attempt registry request try #1 at 12:40:00 PM
npm http fetch GET https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz
npm http 304 https://registry.npmjs.org/read-pkg
npm info retry fetch attempt 1 at 12:40:00 PM
npm info attempt registry request try #1 at 12:40:00 PM
npm http fetch GET https://registry.npmjs.org/read-pkg/-/read-pkg-2.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/read-pkg/-/read-pkg-2.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz
npm info attempt registry request try #1 at 12:40:00 PM
npm http request GET https://registry.npmjs.org/locate-path
npm http 304 https://registry.npmjs.org/locate-path
npm info retry fetch attempt 1 at 12:40:00 PM
npm info attempt registry request try #1 at 12:40:00 PM
npm http fetch GET https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz
npm info attempt registry request try #1 at 12:40:00 PM
npm http request GET https://registry.npmjs.org/p-locate
npm http 304 https://registry.npmjs.org/p-locate
npm info retry fetch attempt 1 at 12:40:01 PM
npm info attempt registry request try #1 at 12:40:01 PM
npm http fetch GET https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz
npm info attempt registry request try #1 at 12:40:01 PM
npm http request GET https://registry.npmjs.org/p-limit
npm http 304 https://registry.npmjs.org/p-limit
npm info retry fetch attempt 1 at 12:40:01 PM
npm info attempt registry request try #1 at 12:40:01 PM
npm http fetch GET https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz
npm http fetch 200 https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz
npm info attempt registry request try #1 at 12:40:01 PM
npm http request GET https://registry.npmjs.org/p-try
npm http 304 https://registry.npmjs.org/p-try
npm info retry fetch attempt 1 at 12:40:01 PM
npm info attempt registry request try #1 at 12:40:01 PM
npm http fetch GET https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz
npm info attempt registry request try #1 at 12:40:01 PM
npm http request GET https://registry.npmjs.org/load-json-file
npm info attempt registry request try #1 at 12:40:01 PM
npm http request GET https://registry.npmjs.org/path-type
npm http 304 https://registry.npmjs.org/load-json-file
npm info retry fetch attempt 1 at 12:40:01 PM
npm info attempt registry request try #1 at 12:40:01 PM
npm http fetch GET https://registry.npmjs.org/load-json-file/-/load-json-file-2.0.0.tgz
npm http 304 https://registry.npmjs.org/path-type
npm info retry fetch attempt 1 at 12:40:01 PM
npm info attempt registry request try #1 at 12:40:01 PM
npm http fetch GET https://registry.npmjs.org/path-type/-/path-type-2.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/load-json-file/-/load-json-file-2.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/path-type/-/path-type-2.0.0.tgz
npm info attempt registry request try #1 at 12:40:01 PM
npm http request GET https://registry.npmjs.org/strip-bom
npm http 304 https://registry.npmjs.org/strip-bom
npm info retry fetch attempt 1 at 12:40:01 PM
npm info attempt registry request try #1 at 12:40:01 PM
npm http fetch GET https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz
npm info attempt registry request try #1 at 12:40:01 PM
npm http request GET https://registry.npmjs.org/superagent
npm http 200 https://registry.npmjs.org/superagent
npm info retry fetch attempt 1 at 12:40:01 PM
npm info attempt registry request try #1 at 12:40:01 PM
npm http fetch GET https://registry.npmjs.org/superagent/-/superagent-3.8.3.tgz
npm http fetch 200 https://registry.npmjs.org/superagent/-/superagent-3.8.3.tgz
npm info attempt registry request try #1 at 12:40:01 PM
npm http request GET https://registry.npmjs.org/component-emitter
npm info attempt registry request try #1 at 12:40:01 PM
npm http request GET https://registry.npmjs.org/cookiejar
npm info attempt registry request try #1 at 12:40:01 PM
npm http request GET https://registry.npmjs.org/formidable
npm http 200 https://registry.npmjs.org/component-emitter
npm http 200 https://registry.npmjs.org/formidable
npm http 200 https://registry.npmjs.org/cookiejar
npm info retry fetch attempt 1 at 12:40:01 PM
npm info attempt registry request try #1 at 12:40:01 PM
npm http fetch GET https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz
npm info retry fetch attempt 1 at 12:40:01 PM
npm info attempt registry request try #1 at 12:40:01 PM
npm http fetch GET https://registry.npmjs.org/formidable/-/formidable-1.2.1.tgz
npm info retry fetch attempt 1 at 12:40:01 PM
npm info attempt registry request try #1 at 12:40:01 PM
npm http fetch GET https://registry.npmjs.org/cookiejar/-/cookiejar-2.1.2.tgz
npm http fetch 200 https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz
npm http fetch 200 https://registry.npmjs.org/cookiejar/-/cookiejar-2.1.2.tgz
npm http fetch 200 https://registry.npmjs.org/formidable/-/formidable-1.2.1.tgz
npm info attempt registry request try #1 at 12:40:02 PM
npm http request GET https://registry.npmjs.org/ms
npm http 304 https://registry.npmjs.org/ms
npm info lifecycle parsoid@0.10.0~preinstall: parsoid@0.10.0
npm info lifecycle abbrev@1.0.9~preinstall: abbrev@1.0.9
npm info lifecycle acorn@5.7.3~preinstall: acorn@5.7.3
npm info lifecycle acorn@3.3.0~preinstall: acorn@3.3.0
npm info lifecycle acorn-jsx@3.0.1~preinstall: acorn-jsx@3.0.1
npm info lifecycle ajv-keywords@2.1.1~preinstall: ajv-keywords@2.1.1
npm info lifecycle amdefine@1.0.1~preinstall: amdefine@1.0.1
npm info lifecycle ansi-escapes@3.2.0~preinstall: ansi-escapes@3.2.0
npm info lifecycle ansi-regex@3.0.0~preinstall: ansi-regex@3.0.0
npm info lifecycle ansi-styles@2.2.1~preinstall: ansi-styles@2.2.1
npm info lifecycle array-flatten@1.1.1~preinstall: array-flatten@1.1.1
npm info lifecycle asap@2.0.6~preinstall: asap@2.0.6
npm info lifecycle assert-plus@1.0.0~preinstall: assert-plus@1.0.0
npm info lifecycle assertion-error@1.1.0~preinstall: assertion-error@1.1.0
npm info lifecycle async@0.9.2~preinstall: async@0.9.2
npm info lifecycle asynckit@0.4.0~preinstall: asynckit@0.4.0
npm info lifecycle aws-sign2@0.7.0~preinstall: aws-sign2@0.7.0
npm info lifecycle aws4@1.8.0~preinstall: aws4@1.8.0
npm info lifecycle ansi-regex@2.1.1~preinstall: ansi-regex@2.1.1
npm info lifecycle strip-ansi@3.0.1~preinstall: strip-ansi@3.0.1
npm info lifecycle babylon@7.0.0-beta.19~preinstall: babylon@7.0.0-beta.19
npm info lifecycle balanced-match@1.0.0~preinstall: balanced-match@1.0.0
npm info lifecycle bluebird@3.5.4~preinstall: bluebird@3.5.4
npm info lifecycle content-type@1.0.4~preinstall: content-type@1.0.4
npm info lifecycle browser-stdout@1.3.1~preinstall: browser-stdout@1.3.1
npm info lifecycle buffer-from@1.1.1~preinstall: buffer-from@1.1.1
npm info lifecycle bunyan-syslog-udp@0.2.0~preinstall: bunyan-syslog-udp@0.2.0
npm info lifecycle bytes@3.0.0~preinstall: bytes@3.0.0
npm info lifecycle callsites@0.2.0~preinstall: callsites@0.2.0
npm info lifecycle caller-path@0.1.0~preinstall: caller-path@0.1.0
npm info lifecycle camelcase@5.3.1~preinstall: camelcase@5.3.1
npm info lifecycle caseless@0.12.0~preinstall: caseless@0.12.0
npm info lifecycle chardet@0.4.2~preinstall: chardet@0.4.2
npm info lifecycle check-error@1.0.2~preinstall: check-error@1.0.2
npm info lifecycle circular-json@0.3.3~preinstall: circular-json@0.3.3
npm info lifecycle clarinet@0.11.0~preinstall: clarinet@0.11.0
npm info lifecycle ansi-regex@2.1.1~preinstall: ansi-regex@2.1.1
npm info lifecycle strip-ansi@3.0.1~preinstall: strip-ansi@3.0.1
npm info lifecycle cli-width@2.2.0~preinstall: cli-width@2.2.0
npm info lifecycle co@4.6.0~preinstall: co@4.6.0
npm info lifecycle code-point-at@1.1.0~preinstall: code-point-at@1.1.0
npm info lifecycle color-name@1.1.3~preinstall: color-name@1.1.3
npm info lifecycle color-convert@1.9.3~preinstall: color-convert@1.9.3
npm info lifecycle ansi-styles@3.2.1~preinstall: ansi-styles@3.2.1
npm info lifecycle colors@1.3.3~preinstall: colors@1.3.3
npm info lifecycle commander@2.19.0~preinstall: commander@2.19.0
npm info lifecycle comment-parser@0.5.4~preinstall: comment-parser@0.5.4
npm info lifecycle component-emitter@1.2.1~preinstall: component-emitter@1.2.1
npm info lifecycle concat-map@0.0.1~preinstall: concat-map@0.0.1
npm info lifecycle brace-expansion@1.1.11~preinstall: brace-expansion@1.1.11
npm info lifecycle content-disposition@0.5.2~preinstall: content-disposition@0.5.2
npm info lifecycle cookie@0.3.1~preinstall: cookie@0.3.1
npm info lifecycle cookie-signature@1.0.6~preinstall: cookie-signature@1.0.6
npm info lifecycle cookiejar@2.1.2~preinstall: cookiejar@2.1.2
npm info lifecycle core-js@2.6.5~preinstall: core-js@2.6.5
npm info lifecycle core-util-is@1.0.2~preinstall: core-util-is@1.0.2
npm info lifecycle minimist@1.2.0~preinstall: minimist@1.2.0
npm info lifecycle cvss@1.0.5~preinstall: cvss@1.0.5
npm info lifecycle dashdash@1.14.1~preinstall: dashdash@1.14.1
npm info lifecycle decamelize@1.2.0~preinstall: decamelize@1.2.0
npm info lifecycle deep-equal@1.0.1~preinstall: deep-equal@1.0.1
npm info lifecycle deep-is@0.1.3~preinstall: deep-is@0.1.3
npm info lifecycle delayed-stream@1.0.0~preinstall: delayed-stream@1.0.0
npm info lifecycle combined-stream@1.0.7~preinstall: combined-stream@1.0.7
npm info lifecycle depd@1.1.2~preinstall: depd@1.1.2
npm info lifecycle destroy@1.0.4~preinstall: destroy@1.0.4
npm info lifecycle diff@3.5.0~preinstall: diff@3.5.0
npm info lifecycle dom-storage@2.1.0~preinstall: dom-storage@2.1.0
npm info lifecycle domino@2.1.3~preinstall: domino@2.1.3
npm info lifecycle ee-first@1.1.1~preinstall: ee-first@1.1.1
npm info lifecycle encodeurl@1.0.2~preinstall: encodeurl@1.0.2
npm info lifecycle es6-promise@4.2.6~preinstall: es6-promise@4.2.6
npm info lifecycle es6-promisify@5.0.0~preinstall: es6-promisify@5.0.0
npm info lifecycle agent-base@4.2.1~preinstall: agent-base@4.2.1
npm info lifecycle escape-html@1.0.3~preinstall: escape-html@1.0.3
npm info lifecycle escape-string-regexp@1.0.5~preinstall: escape-string-regexp@1.0.5
npm info lifecycle esprima@2.7.3~preinstall: esprima@2.7.3
npm info lifecycle estraverse@1.9.3~preinstall: estraverse@1.9.3
npm info lifecycle source-map@0.2.0~preinstall: source-map@0.2.0
npm info lifecycle lodash@4.17.11~preinstall: lodash@4.17.11
npm info lifecycle eslint-visitor-keys@1.0.0~preinstall: eslint-visitor-keys@1.0.0
npm info lifecycle fast-deep-equal@1.1.0~preinstall: fast-deep-equal@1.1.0
npm info lifecycle json-schema-traverse@0.3.1~preinstall: json-schema-traverse@0.3.1
npm info lifecycle lodash@4.17.11~preinstall: lodash@4.17.11
npm info lifecycle ms@2.1.1~preinstall: ms@2.1.1
npm info lifecycle debug@3.2.6~preinstall: debug@3.2.6
npm info lifecycle espree@3.5.4~preinstall: espree@3.5.4
npm info lifecycle esprima@4.0.1~preinstall: esprima@4.0.1
npm info lifecycle estraverse@4.2.0~preinstall: estraverse@4.2.0
npm info lifecycle esquery@1.0.1~preinstall: esquery@1.0.1
npm info lifecycle esrecurse@4.2.1~preinstall: esrecurse@4.2.1
npm info lifecycle eslint-scope@3.7.3~preinstall: eslint-scope@3.7.3
npm info lifecycle esutils@2.0.2~preinstall: esutils@2.0.2
npm info lifecycle doctrine@2.1.0~preinstall: doctrine@2.1.0
npm info lifecycle etag@1.8.1~preinstall: etag@1.8.1
npm info lifecycle content-type@1.0.4~preinstall: content-type@1.0.4
npm info lifecycle extend@3.0.2~preinstall: extend@3.0.2
npm info lifecycle extsprintf@1.3.0~preinstall: extsprintf@1.3.0
npm info lifecycle fast-deep-equal@2.0.1~preinstall: fast-deep-equal@2.0.1
npm info lifecycle fast-json-stable-stringify@2.0.0~preinstall: fast-json-stable-stringify@2.0.0
npm info lifecycle ajv@5.5.2~preinstall: ajv@5.5.2
npm info lifecycle fast-levenshtein@2.0.6~preinstall: fast-levenshtein@2.0.6
npm info lifecycle figures@2.0.0~preinstall: figures@2.0.0
npm info lifecycle forever-agent@0.6.1~preinstall: forever-agent@0.6.1
npm info lifecycle formidable@1.2.1~preinstall: formidable@1.2.1
npm info lifecycle forwarded@0.1.2~preinstall: forwarded@0.1.2
npm info lifecycle fresh@0.5.2~preinstall: fresh@0.5.2
npm info lifecycle fs.realpath@1.0.0~preinstall: fs.realpath@1.0.0
npm info lifecycle function-bind@1.1.1~preinstall: function-bind@1.1.1
npm info lifecycle functional-red-black-tree@1.0.1~preinstall: functional-red-black-tree@1.0.1
npm info lifecycle abbrev@1.1.1~preinstall: abbrev@1.1.1
npm info lifecycle ansi-regex@2.1.1~preinstall: ansi-regex@2.1.1
npm info lifecycle aproba@1.2.0~preinstall: aproba@1.2.0
npm info lifecycle balanced-match@1.0.0~preinstall: balanced-match@1.0.0
npm info lifecycle chownr@1.1.1~preinstall: chownr@1.1.1
npm info lifecycle code-point-at@1.1.0~preinstall: code-point-at@1.1.0
npm info lifecycle concat-map@0.0.1~preinstall: concat-map@0.0.1
npm info lifecycle brace-expansion@1.1.11~preinstall: brace-expansion@1.1.11
npm info lifecycle console-control-strings@1.1.0~preinstall: console-control-strings@1.1.0
npm info lifecycle core-util-is@1.0.2~preinstall: core-util-is@1.0.2
npm info lifecycle deep-extend@0.6.0~preinstall: deep-extend@0.6.0
npm info lifecycle delegates@1.0.0~preinstall: delegates@1.0.0
npm info lifecycle detect-libc@1.0.3~preinstall: detect-libc@1.0.3
npm info lifecycle fs.realpath@1.0.0~preinstall: fs.realpath@1.0.0
npm info lifecycle has-unicode@2.0.1~preinstall: has-unicode@2.0.1
npm info lifecycle inherits@2.0.3~preinstall: inherits@2.0.3
npm info lifecycle ini@1.3.5~preinstall: ini@1.3.5
npm info lifecycle isarray@1.0.0~preinstall: isarray@1.0.0
npm info lifecycle minimatch@3.0.4~preinstall: minimatch@3.0.4
npm info lifecycle ignore-walk@3.0.1~preinstall: ignore-walk@3.0.1
npm info lifecycle minimist@0.0.8~preinstall: minimist@0.0.8
npm info lifecycle mkdirp@0.5.1~preinstall: mkdirp@0.5.1
npm info lifecycle ms@2.0.0~preinstall: ms@2.0.0
npm info lifecycle debug@2.6.9~preinstall: debug@2.6.9
npm info lifecycle sax@1.2.4~preinstall: sax@1.2.4
npm info lifecycle npm-bundled@1.0.5~preinstall: npm-bundled@1.0.5
npm info lifecycle npm-packlist@1.1.12~preinstall: npm-packlist@1.1.12
npm info lifecycle number-is-nan@1.0.1~preinstall: number-is-nan@1.0.1
npm info lifecycle is-fullwidth-code-point@1.0.0~preinstall: is-fullwidth-code-point@1.0.0
npm info lifecycle object-assign@4.1.1~preinstall: object-assign@4.1.1
npm info lifecycle os-homedir@1.0.2~preinstall: os-homedir@1.0.2
npm info lifecycle os-tmpdir@1.0.2~preinstall: os-tmpdir@1.0.2
npm info lifecycle osenv@0.1.5~preinstall: osenv@0.1.5
npm info lifecycle nopt@4.0.1~preinstall: nopt@4.0.1
npm info lifecycle path-is-absolute@1.0.1~preinstall: path-is-absolute@1.0.1
npm info lifecycle process-nextick-args@2.0.0~preinstall: process-nextick-args@2.0.0
npm info lifecycle minimist@1.2.0~preinstall: minimist@1.2.0
npm info lifecycle safe-buffer@5.1.2~preinstall: safe-buffer@5.1.2
npm info lifecycle safer-buffer@2.1.2~preinstall: safer-buffer@2.1.2
npm info lifecycle iconv-lite@0.4.24~preinstall: iconv-lite@0.4.24
npm info lifecycle needle@2.2.4~preinstall: needle@2.2.4
npm info lifecycle semver@5.5.0~preinstall: semver@5.5.0
npm info lifecycle set-blocking@2.0.0~preinstall: set-blocking@2.0.0
npm info lifecycle signal-exit@3.0.2~preinstall: signal-exit@3.0.2
npm info lifecycle string_decoder@1.1.1~preinstall: string_decoder@1.1.1
npm info lifecycle strip-ansi@3.0.1~preinstall: strip-ansi@3.0.1
npm info lifecycle string-width@1.0.2~preinstall: string-width@1.0.2
npm info lifecycle strip-json-comments@2.0.1~preinstall: strip-json-comments@2.0.1
npm info lifecycle rc@1.2.8~preinstall: rc@1.2.8
npm info lifecycle util-deprecate@1.0.2~preinstall: util-deprecate@1.0.2
npm info lifecycle readable-stream@2.3.6~preinstall: readable-stream@2.3.6
npm info lifecycle are-we-there-yet@1.1.5~preinstall: are-we-there-yet@1.1.5
npm info lifecycle wide-align@1.1.3~preinstall: wide-align@1.1.3
npm info lifecycle gauge@2.7.4~preinstall: gauge@2.7.4
npm info lifecycle npmlog@4.1.2~preinstall: npmlog@4.1.2
npm info lifecycle wrappy@1.0.2~preinstall: wrappy@1.0.2
npm info lifecycle once@1.4.0~preinstall: once@1.4.0
npm info lifecycle inflight@1.0.6~preinstall: inflight@1.0.6
npm info lifecycle glob@7.1.2~preinstall: glob@7.1.2
npm info lifecycle rimraf@2.6.2~preinstall: rimraf@2.6.2
npm info lifecycle yallist@3.0.2~preinstall: yallist@3.0.2
npm info lifecycle minipass@2.3.5~preinstall: minipass@2.3.5
npm info lifecycle fs-minipass@1.2.5~preinstall: fs-minipass@1.2.5
npm info lifecycle minizlib@1.1.1~preinstall: minizlib@1.1.1
npm info lifecycle tar@4.4.6~preinstall: tar@4.4.6
npm info lifecycle node-pre-gyp@0.11.0~preinstall: node-pre-gyp@0.11.0
npm info lifecycle gelfling@0.3.1~preinstall: gelfling@0.3.1
npm info lifecycle gelf-stream@1.1.1~preinstall: gelf-stream@1.1.1
npm info lifecycle get-caller-file@1.0.3~preinstall: get-caller-file@1.0.3
npm info lifecycle get-func-name@2.0.0~preinstall: get-func-name@2.0.0
npm info lifecycle getpass@0.1.7~preinstall: getpass@0.1.7
npm info lifecycle globals@11.11.0~preinstall: globals@11.11.0
npm info lifecycle graceful-fs@4.1.15~preinstall: graceful-fs@4.1.15
npm info lifecycle growl@1.10.5~preinstall: growl@1.10.5
npm info lifecycle har-schema@2.0.0~preinstall: har-schema@2.0.0
npm info lifecycle ansi-regex@2.1.1~preinstall: ansi-regex@2.1.1
npm info lifecycle has-ansi@2.0.0~preinstall: has-ansi@2.0.0
npm info lifecycle has-flag@3.0.0~preinstall: has-flag@3.0.0
npm info lifecycle supports-color@5.5.0~preinstall: supports-color@5.5.0
npm info lifecycle chalk@2.4.2~preinstall: chalk@2.4.2
npm info lifecycle has-symbols@1.0.0~preinstall: has-symbols@1.0.0
npm info lifecycle hat@0.0.3~preinstall: hat@0.0.3
npm info lifecycle he@1.1.1~preinstall: he@1.1.1
npm info lifecycle hoek@4.2.1~preinstall: hoek@4.2.1
npm info lifecycle boom@5.2.0~preinstall: boom@5.2.0
npm info lifecycle hosted-git-info@2.7.1~preinstall: hosted-git-info@2.7.1
npm info lifecycle hot-shots@5.9.2~preinstall: hot-shots@5.9.2
npm info lifecycle ms@2.1.1~preinstall: ms@2.1.1
npm info lifecycle debug@3.2.6~preinstall: debug@3.2.6
npm info lifecycle https-proxy-agent@2.2.1~preinstall: https-proxy-agent@2.2.1
npm info lifecycle ignore@3.3.10~preinstall: ignore@3.3.10
npm info lifecycle imurmurhash@0.1.4~preinstall: imurmurhash@0.1.4
npm info lifecycle inherits@2.0.3~preinstall: inherits@2.0.3
npm info lifecycle lodash@4.17.11~preinstall: lodash@4.17.11
npm info lifecycle invert-kv@2.0.0~preinstall: invert-kv@2.0.0
npm info lifecycle ipaddr.js@1.8.0~preinstall: ipaddr.js@1.8.0
npm info lifecycle is-arguments@1.0.4~preinstall: is-arguments@1.0.4
npm info lifecycle is-arrayish@0.2.1~preinstall: is-arrayish@0.2.1
npm info lifecycle error-ex@1.3.2~preinstall: error-ex@1.3.2
npm info lifecycle is-fullwidth-code-point@2.0.0~preinstall: is-fullwidth-code-point@2.0.0
npm info lifecycle is-promise@2.1.0~preinstall: is-promise@2.1.0
npm info lifecycle is-resolvable@1.1.0~preinstall: is-resolvable@1.1.0
npm info lifecycle is-stream@1.1.0~preinstall: is-stream@1.1.0
npm info lifecycle is-typedarray@1.0.0~preinstall: is-typedarray@1.0.0
npm info lifecycle is-utf8@0.2.1~preinstall: is-utf8@0.2.1
npm info lifecycle isarray@1.0.0~preinstall: isarray@1.0.0
npm info lifecycle isexe@2.0.0~preinstall: isexe@2.0.0
npm info lifecycle isstream@0.1.2~preinstall: isstream@0.1.2
npm info lifecycle async@1.5.2~preinstall: async@1.5.2
npm info lifecycle esprima@2.7.3~preinstall: esprima@2.7.3
npm info lifecycle has-flag@1.0.0~preinstall: has-flag@1.0.0
npm info lifecycle resolve@1.1.7~preinstall: resolve@1.1.7
npm info lifecycle supports-color@3.2.3~preinstall: supports-color@3.2.3
npm info lifecycle wordwrap@1.0.0~preinstall: wordwrap@1.0.0
npm info lifecycle js-tokens@3.0.2~preinstall: js-tokens@3.0.2
npm info lifecycle espree@2.2.5~preinstall: espree@2.2.5
npm info lifecycle jsbn@0.1.1~preinstall: jsbn@0.1.1
npm info lifecycle jsdoctypeparser@2.0.0-alpha-8~preinstall: jsdoctypeparser@2.0.0-alpha-8
npm info lifecycle json-schema@0.2.3~preinstall: json-schema@0.2.3
npm info lifecycle json-schema-traverse@0.4.1~preinstall: json-schema-traverse@0.4.1
npm info lifecycle json-stable-stringify-without-jsonify@1.0.1~preinstall: json-stable-stringify-without-jsonify@1.0.1
npm info lifecycle json-stringify-safe@5.0.1~preinstall: json-stringify-safe@5.0.1
npm info lifecycle jsonc-parser@2.1.0~preinstall: jsonc-parser@2.1.0
npm info lifecycle kad-localstorage@0.0.7~preinstall: kad-localstorage@0.0.7
npm info lifecycle ms@0.7.3~preinstall: ms@0.7.3
npm info lifecycle klaw@2.0.0~preinstall: klaw@2.0.0
npm info lifecycle lcid@2.0.0~preinstall: lcid@2.0.0
npm info lifecycle lcov-parse@0.0.10~preinstall: lcov-parse@0.0.10
npm info lifecycle lodash@3.10.1~preinstall: lodash@3.10.1
npm info lifecycle lodash._baseclone@4.5.7~preinstall: lodash._baseclone@4.5.7
npm info lifecycle lodash.clone@4.3.2~preinstall: lodash.clone@4.3.2
npm info lifecycle dnscache@1.0.1~preinstall: dnscache@1.0.1
npm info lifecycle log-driver@1.2.7~preinstall: log-driver@1.2.7
npm info lifecycle marked@0.3.19~preinstall: marked@0.3.19
npm info lifecycle media-typer@0.3.0~preinstall: media-typer@0.3.0
npm info lifecycle merge@1.2.1~preinstall: merge@1.2.1
npm info lifecycle merge-descriptors@1.0.1~preinstall: merge-descriptors@1.0.1
npm info lifecycle methods@1.1.2~preinstall: methods@1.1.2
npm info lifecycle mime@1.4.1~preinstall: mime@1.4.1
npm info lifecycle mime-db@1.38.0~preinstall: mime-db@1.38.0
npm info lifecycle compressible@2.0.16~preinstall: compressible@2.0.16
npm info lifecycle mime-types@2.1.22~preinstall: mime-types@2.1.22
npm info lifecycle form-data@2.3.3~preinstall: form-data@2.3.3
npm info lifecycle mimic-fn@2.1.0~preinstall: mimic-fn@2.1.0
npm info lifecycle minimatch@3.0.4~preinstall: minimatch@3.0.4
npm info lifecycle minimist@0.0.10~preinstall: minimist@0.0.10
npm info lifecycle minimist@0.0.8~preinstall: minimist@0.0.8
npm info lifecycle mkdirp@0.5.1~preinstall: mkdirp@0.5.1
npm info lifecycle commander@2.15.1~preinstall: commander@2.15.1
npm info lifecycle supports-color@5.4.0~preinstall: supports-color@5.4.0
npm info lifecycle moment@2.24.0~preinstall: moment@2.24.0
npm info lifecycle ms@2.0.0~preinstall: ms@2.0.0
npm info lifecycle debug@2.6.9~preinstall: debug@2.6.9
npm info lifecycle debug@3.1.0~preinstall: debug@3.1.0
npm info lifecycle mute-stream@0.0.7~preinstall: mute-stream@0.0.7
npm info lifecycle nan@2.13.2~preinstall: nan@2.13.2
npm info lifecycle dtrace-provider@0.8.7~preinstall: dtrace-provider@0.8.7
npm info lifecycle gc-stats@1.2.1~preinstall: gc-stats@1.2.1
npm info lifecycle heapdump@0.3.12~preinstall: heapdump@0.3.12
npm info lifecycle natural-compare@1.4.0~preinstall: natural-compare@1.4.0
npm info lifecycle ncp@2.0.0~preinstall: ncp@2.0.0
npm info lifecycle negotiator@0.6.1~preinstall: negotiator@0.6.1
npm info lifecycle accepts@1.3.5~preinstall: accepts@1.3.5
npm info lifecycle neo-async@2.6.0~preinstall: neo-async@2.6.0
npm info lifecycle nice-try@1.0.5~preinstall: nice-try@1.0.5
npm info lifecycle lodash@4.17.11~preinstall: lodash@4.17.11
npm info lifecycle ms@2.1.1~preinstall: ms@2.1.1
npm info lifecycle debug@3.2.6~preinstall: debug@3.2.6
npm info lifecycle nodesecurity-npm-utils@6.0.0~preinstall: nodesecurity-npm-utils@6.0.0
npm info lifecycle nopt@3.0.6~preinstall: nopt@3.0.6
npm info lifecycle ansi-regex@2.1.1~preinstall: ansi-regex@2.1.1
npm info lifecycle camelcase@4.1.0~preinstall: camelcase@4.1.0
npm info lifecycle get-stream@3.0.0~preinstall: get-stream@3.0.0
npm info lifecycle invert-kv@1.0.0~preinstall: invert-kv@1.0.0
npm info lifecycle lcid@1.0.0~preinstall: lcid@1.0.0
npm info lifecycle mimic-fn@1.2.0~preinstall: mimic-fn@1.2.0
npm info lifecycle mem@1.1.0~preinstall: mem@1.1.0
npm info lifecycle p-try@1.0.0~preinstall: p-try@1.0.0
npm info lifecycle p-limit@1.3.0~preinstall: p-limit@1.3.0
npm info lifecycle p-locate@2.0.0~preinstall: p-locate@2.0.0
npm info lifecycle strip-ansi@3.0.1~preinstall: strip-ansi@3.0.1
npm info lifecycle strip-bom@3.0.0~preinstall: strip-bom@3.0.0
npm info lifecycle y18n@3.2.1~preinstall: y18n@3.2.1
npm info lifecycle yargs-parser@7.0.0~preinstall: yargs-parser@7.0.0
npm info lifecycle number-is-nan@1.0.1~preinstall: number-is-nan@1.0.1
npm info lifecycle is-fullwidth-code-point@1.0.0~preinstall: is-fullwidth-code-point@1.0.0
npm info lifecycle string-width@1.0.2~preinstall: string-width@1.0.2
npm info lifecycle cli-table2@0.2.0~preinstall: cli-table2@0.2.0
npm info lifecycle is-fullwidth-code-point@1.0.0~preinstall: is-fullwidth-code-point@1.0.0
npm info lifecycle string-width@1.0.2~preinstall: string-width@1.0.2
npm info lifecycle oauth-sign@0.9.0~preinstall: oauth-sign@0.9.0
npm info lifecycle object-assign@4.1.1~preinstall: object-assign@4.1.1
npm info lifecycle object-keys@1.1.1~preinstall: object-keys@1.1.1
npm info lifecycle define-properties@1.1.3~preinstall: define-properties@1.1.3
npm info lifecycle object.assign@4.1.0~preinstall: object.assign@4.1.0
npm info lifecycle on-finished@2.3.0~preinstall: on-finished@2.3.0
npm info lifecycle on-headers@1.0.2~preinstall: on-headers@1.0.2
npm info lifecycle mimic-fn@1.2.0~preinstall: mimic-fn@1.2.0
npm info lifecycle onetime@2.0.1~preinstall: onetime@2.0.1
npm info lifecycle wordwrap@1.0.0~preinstall: wordwrap@1.0.0
npm info lifecycle os-tmpdir@1.0.2~preinstall: os-tmpdir@1.0.2
npm info lifecycle p-defer@1.0.0~preinstall: p-defer@1.0.0
npm info lifecycle map-age-cleaner@0.1.3~preinstall: map-age-cleaner@0.1.3
npm info lifecycle p-finally@1.0.0~preinstall: p-finally@1.0.0
npm info lifecycle p-is-promise@2.1.0~preinstall: p-is-promise@2.1.0
npm info lifecycle mem@4.3.0~preinstall: mem@4.3.0
npm info lifecycle p-try@2.2.0~preinstall: p-try@2.2.0
npm info lifecycle p-limit@2.2.0~preinstall: p-limit@2.2.0
npm info lifecycle p-locate@3.0.0~preinstall: p-locate@3.0.0
npm info lifecycle parse-json@2.2.0~preinstall: parse-json@2.2.0
npm info lifecycle parseurl@1.3.2~preinstall: parseurl@1.3.2
npm info lifecycle path-exists@3.0.0~preinstall: path-exists@3.0.0
npm info lifecycle locate-path@3.0.0~preinstall: locate-path@3.0.0
npm info lifecycle find-up@3.0.0~preinstall: find-up@3.0.0
npm info lifecycle locate-path@2.0.0~preinstall: locate-path@2.0.0
npm info lifecycle find-up@2.1.0~preinstall: find-up@2.1.0
npm info lifecycle path-is-absolute@1.0.1~preinstall: path-is-absolute@1.0.1
npm info lifecycle path-is-inside@1.0.2~preinstall: path-is-inside@1.0.2
npm info lifecycle path-key@2.0.1~preinstall: path-key@2.0.1
npm info lifecycle npm-run-path@2.0.2~preinstall: npm-run-path@2.0.2
npm info lifecycle path-parse@1.0.6~preinstall: path-parse@1.0.6
npm info lifecycle path-to-regexp@0.1.7~preinstall: path-to-regexp@0.1.7
npm info lifecycle pathval@1.1.0~preinstall: pathval@1.1.0
npm info lifecycle performance-now@2.1.0~preinstall: performance-now@2.1.0
npm info lifecycle pify@2.3.0~preinstall: pify@2.3.0
npm info lifecycle load-json-file@2.0.0~preinstall: load-json-file@2.0.0
npm info lifecycle path-type@2.0.0~preinstall: path-type@2.0.0
npm info lifecycle pinkie@2.0.4~preinstall: pinkie@2.0.4
npm info lifecycle pinkie-promise@2.0.1~preinstall: pinkie-promise@2.0.1
npm info lifecycle path-type@1.1.0~preinstall: path-type@1.1.0
npm info lifecycle pluralize@7.0.0~preinstall: pluralize@7.0.0
npm info lifecycle prelude-ls@1.1.2~preinstall: prelude-ls@1.1.2
npm info lifecycle process-nextick-args@2.0.0~preinstall: process-nextick-args@2.0.0
npm info lifecycle progress@2.0.3~preinstall: progress@2.0.3
npm info lifecycle promise@8.0.3~preinstall: promise@8.0.3
npm info lifecycle propagate@1.0.0~preinstall: propagate@1.0.0
npm info lifecycle proxy-addr@2.0.4~preinstall: proxy-addr@2.0.4
npm info lifecycle prr@1.0.1~preinstall: prr@1.0.1
npm info lifecycle errno@0.1.7~preinstall: errno@0.1.7
npm info lifecycle pseudomap@1.0.2~preinstall: pseudomap@1.0.2
npm info lifecycle psl@1.1.31~preinstall: psl@1.1.31
npm info lifecycle punycode@2.1.1~preinstall: punycode@2.1.1
npm info lifecycle qs@6.5.2~preinstall: qs@6.5.2
npm info lifecycle range-parser@1.2.0~preinstall: range-parser@1.2.0
npm info lifecycle path-exists@2.1.0~preinstall: path-exists@2.1.0
npm info lifecycle find-up@1.1.2~preinstall: find-up@1.1.2
npm info lifecycle regexpp@1.1.0~preinstall: regexpp@1.1.0
npm info lifecycle require-directory@2.1.1~preinstall: require-directory@2.1.1
npm info lifecycle require-main-filename@1.0.1~preinstall: require-main-filename@1.0.1
npm info lifecycle underscore@1.6.0~preinstall: underscore@1.6.0
npm info lifecycle requizzle@0.2.1~preinstall: requizzle@0.2.1
npm info lifecycle resolve@1.10.0~preinstall: resolve@1.10.0
npm info lifecycle resolve-from@1.0.1~preinstall: resolve-from@1.0.1
npm info lifecycle require-uncached@1.0.3~preinstall: require-uncached@1.0.3
npm info lifecycle run-async@2.3.0~preinstall: run-async@2.3.0
npm info lifecycle rx-lite@4.0.8~preinstall: rx-lite@4.0.8
npm info lifecycle rx-lite-aggregates@4.0.8~preinstall: rx-lite-aggregates@4.0.8
npm info lifecycle safe-buffer@5.1.2~preinstall: safe-buffer@5.1.2
npm info lifecycle safe-json-stringify@1.2.0~preinstall: safe-json-stringify@1.2.0
npm info lifecycle safer-buffer@2.1.2~preinstall: safer-buffer@2.1.2
npm info lifecycle asn1@0.2.4~preinstall: asn1@0.2.4
npm info lifecycle ecc-jsbn@0.1.2~preinstall: ecc-jsbn@0.1.2
npm info lifecycle iconv-lite@0.4.23~preinstall: iconv-lite@0.4.23
npm info lifecycle semver@5.7.0~preinstall: semver@5.7.0
npm info lifecycle ms@2.1.1~preinstall: ms@2.1.1
npm info lifecycle safe-buffer@5.1.1~preinstall: safe-buffer@5.1.1
npm info lifecycle set-blocking@2.0.0~preinstall: set-blocking@2.0.0
npm info lifecycle setprototypeof@1.1.0~preinstall: setprototypeof@1.1.0
npm info lifecycle shebang-regex@1.0.0~preinstall: shebang-regex@1.0.0
npm info lifecycle shebang-command@1.2.0~preinstall: shebang-command@1.2.0
npm info lifecycle signal-exit@3.0.2~preinstall: signal-exit@3.0.2
npm info lifecycle restore-cursor@2.0.0~preinstall: restore-cursor@2.0.0
npm info lifecycle cli-cursor@2.1.0~preinstall: cli-cursor@2.1.0
npm info lifecycle slice-ansi@1.0.0~preinstall: slice-ansi@1.0.0
npm info lifecycle source-map@0.6.1~preinstall: source-map@0.6.1
npm info lifecycle spdx-exceptions@2.2.0~preinstall: spdx-exceptions@2.2.0
npm info lifecycle spdx-license-ids@3.0.4~preinstall: spdx-license-ids@3.0.4
npm info lifecycle spdx-expression-parse@3.0.0~preinstall: spdx-expression-parse@3.0.0
npm info lifecycle spdx-correct@3.1.0~preinstall: spdx-correct@3.1.0
npm info lifecycle sprintf-js@1.0.3~preinstall: sprintf-js@1.0.3
npm info lifecycle argparse@1.0.10~preinstall: argparse@1.0.10
npm info lifecycle js-yaml@3.13.1~preinstall: js-yaml@3.13.1
npm info lifecycle statuses@1.4.0~preinstall: statuses@1.4.0
npm info lifecycle http-errors@1.6.3~preinstall: http-errors@1.6.3
npm info lifecycle send@0.16.2~preinstall: send@0.16.2
npm info lifecycle serve-static@1.13.2~preinstall: serve-static@1.13.2
npm info lifecycle streamsearch@0.1.2~preinstall: streamsearch@0.1.2
npm info lifecycle dicer@0.3.0~preinstall: dicer@0.3.0
npm info lifecycle busboy@0.3.1~preinstall: busboy@0.3.1
npm info lifecycle string_decoder@1.1.1~preinstall: string_decoder@1.1.1
npm info lifecycle strip-ansi@4.0.0~preinstall: strip-ansi@4.0.0
npm info lifecycle string-width@2.1.1~preinstall: string-width@2.1.1
npm info lifecycle strip-bom@2.0.0~preinstall: strip-bom@2.0.0
npm info lifecycle load-json-file@1.1.0~preinstall: load-json-file@1.1.0
npm info lifecycle strip-eof@1.0.0~preinstall: strip-eof@1.0.0
npm info lifecycle strip-json-comments@2.0.1~preinstall: strip-json-comments@2.0.1
npm info lifecycle ms@2.1.1~preinstall: ms@2.1.1
npm info lifecycle debug@3.2.6~preinstall: debug@3.2.6
npm info lifecycle supports-color@2.0.0~preinstall: supports-color@2.0.0
npm info lifecycle chalk@1.1.3~preinstall: chalk@1.1.3
npm info lifecycle babel-code-frame@6.26.0~preinstall: babel-code-frame@6.26.0
npm info lifecycle fast-deep-equal@1.1.0~preinstall: fast-deep-equal@1.1.0
npm info lifecycle json-schema-traverse@0.3.1~preinstall: json-schema-traverse@0.3.1
npm info lifecycle ajv@5.5.2~preinstall: ajv@5.5.2
npm info lifecycle lodash@4.17.11~preinstall: lodash@4.17.11
npm info lifecycle table@4.0.2~preinstall: table@4.0.2
npm info lifecycle taffydb@2.6.2~preinstall: taffydb@2.6.2
npm info lifecycle text-table@0.2.0~preinstall: text-table@0.2.0
npm info lifecycle through@2.3.8~preinstall: through@2.3.8
npm info lifecycle tmp@0.0.33~preinstall: tmp@0.0.33
npm info lifecycle external-editor@2.2.0~preinstall: external-editor@2.2.0
npm info lifecycle inquirer@3.3.0~preinstall: inquirer@3.3.0
npm info lifecycle punycode@1.4.1~preinstall: punycode@1.4.1
npm info lifecycle tough-cookie@2.4.3~preinstall: tough-cookie@2.4.3
npm info lifecycle tunnel-agent@0.6.0~preinstall: tunnel-agent@0.6.0
npm info lifecycle tweetnacl@0.14.5~preinstall: tweetnacl@0.14.5
npm info lifecycle bcrypt-pbkdf@1.0.2~preinstall: bcrypt-pbkdf@1.0.2
npm info lifecycle sshpk@1.16.1~preinstall: sshpk@1.16.1
npm info lifecycle type-check@0.3.2~preinstall: type-check@0.3.2
npm info lifecycle levn@0.3.0~preinstall: levn@0.3.0
npm info lifecycle optionator@0.8.2~preinstall: optionator@0.8.2
npm info lifecycle escodegen@1.8.1~preinstall: escodegen@1.8.1
npm info lifecycle type-detect@4.0.8~preinstall: type-detect@4.0.8
npm info lifecycle deep-eql@3.0.1~preinstall: deep-eql@3.0.1
npm info lifecycle chai@4.2.0~preinstall: chai@4.2.0
npm info lifecycle type-is@1.6.16~preinstall: type-is@1.6.16
npm info lifecycle typedarray@0.0.6~preinstall: typedarray@0.0.6
npm info lifecycle uglify-js@3.5.3~preinstall: uglify-js@3.5.3
npm info lifecycle underscore@1.8.3~preinstall: underscore@1.8.3
npm info lifecycle underscore@1.6.0~preinstall: underscore@1.6.0
npm info lifecycle underscore-contrib@0.3.0~preinstall: underscore-contrib@0.3.0
npm info lifecycle catharsis@0.8.9~preinstall: catharsis@0.8.9
npm info lifecycle unpipe@1.0.0~preinstall: unpipe@1.0.0
npm info lifecycle finalhandler@1.1.1~preinstall: finalhandler@1.1.1
npm info lifecycle raw-body@2.3.3~preinstall: raw-body@2.3.3
npm info lifecycle body-parser@1.18.3~preinstall: body-parser@1.18.3
npm info lifecycle uri-js@4.2.2~preinstall: uri-js@4.2.2
npm info lifecycle ajv@6.10.0~preinstall: ajv@6.10.0
npm info lifecycle har-validator@5.1.3~preinstall: har-validator@5.1.3
npm info lifecycle util-deprecate@1.0.2~preinstall: util-deprecate@1.0.2
npm info lifecycle readable-stream@2.3.6~preinstall: readable-stream@2.3.6
npm info lifecycle bl@1.2.2~preinstall: bl@1.2.2
npm info lifecycle concat-stream@1.6.2~preinstall: concat-stream@1.6.2
npm info lifecycle kad-fs@0.0.4~preinstall: kad-fs@0.0.4
npm info lifecycle kad-memstore@0.0.1~preinstall: kad-memstore@0.0.1
npm info lifecycle msgpack5@3.6.0~preinstall: msgpack5@3.6.0
npm info lifecycle kad@1.3.6~preinstall: kad@1.3.6
npm info lifecycle limitation@0.2.1~preinstall: limitation@0.2.1
npm info lifecycle superagent@3.8.3~preinstall: superagent@3.8.3
npm info lifecycle utils-merge@1.0.1~preinstall: utils-merge@1.0.1
npm info lifecycle uuid@3.3.2~preinstall: uuid@3.3.2
npm info lifecycle validate-npm-package-license@3.0.4~preinstall: validate-npm-package-license@3.0.4
npm info lifecycle normalize-package-data@2.5.0~preinstall: normalize-package-data@2.5.0
npm info lifecycle read-pkg@2.0.0~preinstall: read-pkg@2.0.0
npm info lifecycle read-pkg-up@2.0.0~preinstall: read-pkg-up@2.0.0
npm info lifecycle read-pkg@1.1.0~preinstall: read-pkg@1.1.0
npm info lifecycle read-pkg-up@1.0.1~preinstall: read-pkg-up@1.0.1
npm info lifecycle vary@1.1.2~preinstall: vary@1.1.2
npm info lifecycle verror@1.10.0~preinstall: verror@1.10.0
npm info lifecycle jsprim@1.4.1~preinstall: jsprim@1.4.1
npm info lifecycle http-signature@1.2.0~preinstall: http-signature@1.2.0
npm info lifecycle request@2.88.0~preinstall: request@2.88.0
npm info lifecycle vscode-languageserver-types@3.14.0~preinstall: vscode-languageserver-types@3.14.0
npm info lifecycle vscode-nls@4.1.0~preinstall: vscode-nls@4.1.0
npm info lifecycle vscode-uri@1.0.6~preinstall: vscode-uri@1.0.6
npm info lifecycle vscode-json-languageservice@3.2.1~preinstall: vscode-json-languageservice@3.2.1
npm info lifecycle which@1.3.1~preinstall: which@1.3.1
npm info lifecycle cross-spawn@6.0.5~preinstall: cross-spawn@6.0.5
npm info lifecycle which-module@2.0.0~preinstall: which-module@2.0.0
npm info lifecycle wordwrap@0.0.3~preinstall: wordwrap@0.0.3
npm info lifecycle optimist@0.6.1~preinstall: optimist@0.6.1
npm info lifecycle handlebars@4.1.1~preinstall: handlebars@4.1.1
npm info lifecycle ansi-regex@2.1.1~preinstall: ansi-regex@2.1.1
npm info lifecycle is-fullwidth-code-point@1.0.0~preinstall: is-fullwidth-code-point@1.0.0
npm info lifecycle strip-ansi@3.0.1~preinstall: strip-ansi@3.0.1
npm info lifecycle string-width@1.0.2~preinstall: string-width@1.0.2
npm info lifecycle wrap-ansi@2.1.0~preinstall: wrap-ansi@2.1.0
npm info lifecycle cliui@4.1.0~preinstall: cliui@4.1.0
npm info lifecycle cliui@3.2.0~preinstall: cliui@3.2.0
npm info lifecycle wrappy@1.0.2~preinstall: wrappy@1.0.2
npm info lifecycle once@1.4.0~preinstall: once@1.4.0
npm info lifecycle end-of-stream@1.4.1~preinstall: end-of-stream@1.4.1
npm info lifecycle inflight@1.0.6~preinstall: inflight@1.0.6
npm info lifecycle glob@7.1.3~preinstall: glob@7.1.3
npm info lifecycle rimraf@2.6.3~preinstall: rimraf@2.6.3
npm info lifecycle glob@5.0.15~preinstall: glob@5.0.15
npm info lifecycle glob@7.1.2~preinstall: glob@7.1.2
npm info lifecycle pump@3.0.0~preinstall: pump@3.0.0
npm info lifecycle get-stream@4.1.0~preinstall: get-stream@4.1.0
npm info lifecycle execa@1.0.0~preinstall: execa@1.0.0
npm info lifecycle os-locale@3.1.0~preinstall: os-locale@3.1.0
npm info lifecycle glob@6.0.4~preinstall: glob@6.0.4
npm info lifecycle rimraf@2.4.5~preinstall: rimraf@2.4.5
npm info lifecycle mv@2.1.1~preinstall: mv@2.1.1
npm info lifecycle bunyan@1.8.12~preinstall: bunyan@1.8.12
npm info lifecycle wreck@12.5.1~preinstall: wreck@12.5.1
npm info lifecycle write@0.2.1~preinstall: write@0.2.1
npm info lifecycle flat-cache@1.3.4~preinstall: flat-cache@1.3.4
npm info lifecycle file-entry-cache@2.0.0~preinstall: file-entry-cache@2.0.0
npm info lifecycle xmlcreate@1.0.2~preinstall: xmlcreate@1.0.2
npm info lifecycle js2xmlparser@3.0.0~preinstall: js2xmlparser@3.0.0
npm info lifecycle y18n@4.0.0~preinstall: y18n@4.0.0
npm info lifecycle yallist@2.1.2~preinstall: yallist@2.1.2
npm info lifecycle lru-cache@4.1.5~preinstall: lru-cache@4.1.5
npm info lifecycle cross-spawn@5.1.0~preinstall: cross-spawn@5.1.0
npm info lifecycle cross-spawn@5.1.0~preinstall: cross-spawn@5.1.0
npm info lifecycle execa@0.7.0~preinstall: execa@0.7.0
npm info lifecycle os-locale@2.1.0~preinstall: os-locale@2.1.0
npm info lifecycle yargs@9.0.1~preinstall: yargs@9.0.1
npm info lifecycle yargs-parser@11.1.1~preinstall: yargs-parser@11.1.1
npm info lifecycle yargs@12.0.5~preinstall: yargs@12.0.5
npm info lifecycle ansi-regex@2.1.1~preinstall: ansi-regex@2.1.1
npm info lifecycle camelcase@3.0.0~preinstall: camelcase@3.0.0
npm info lifecycle invert-kv@1.0.0~preinstall: invert-kv@1.0.0
npm info lifecycle is-fullwidth-code-point@1.0.0~preinstall: is-fullwidth-code-point@1.0.0
npm info lifecycle lcid@1.0.0~preinstall: lcid@1.0.0
npm info lifecycle os-locale@1.4.0~preinstall: os-locale@1.4.0
npm info lifecycle strip-ansi@3.0.1~preinstall: strip-ansi@3.0.1
npm info lifecycle string-width@1.0.2~preinstall: string-width@1.0.2
npm info lifecycle cliui@3.2.0~preinstall: cliui@3.2.0
npm info lifecycle which-module@1.0.0~preinstall: which-module@1.0.0
npm info lifecycle y18n@3.2.1~preinstall: y18n@3.2.1
npm info lifecycle yargs-parser@5.0.0~preinstall: yargs-parser@5.0.0
npm info lifecycle alea@0.0.9~preinstall: alea@0.0.9
npm info lifecycle babybird@0.0.1~preinstall: babybird@0.0.1
npm info lifecycle compression@1.7.4~preinstall: compression@1.7.4
npm info lifecycle connect-busboy@0.0.2~preinstall: connect-busboy@0.0.2
npm info lifecycle content-type@1.0.1~preinstall: content-type@1.0.1
npm info lifecycle coveralls@3.0.3~preinstall: coveralls@3.0.3
npm info lifecycle entities@1.1.2~preinstall: entities@1.1.2
npm info lifecycle eslint@4.19.1~preinstall: eslint@4.19.1
npm info lifecycle eslint-config-node-services@2.2.5~preinstall: eslint-config-node-services@2.2.5
npm info lifecycle eslint-config-wikimedia@0.5.0~preinstall: eslint-config-wikimedia@0.5.0
npm info lifecycle eslint-plugin-jsdoc@3.15.1~preinstall: eslint-plugin-jsdoc@3.15.1
npm info lifecycle eslint-plugin-json@1.4.0~preinstall: eslint-plugin-json@1.4.0
npm info lifecycle express@4.16.4~preinstall: express@4.16.4
npm info lifecycle express-handlebars@3.0.2~preinstall: express-handlebars@3.0.2
npm info lifecycle istanbul@0.4.5~preinstall: istanbul@0.4.5
npm info lifecycle js2php@0.1.7~preinstall: js2php@0.1.7
npm info lifecycle jsdoc@3.5.5~preinstall: jsdoc@3.5.5
npm info lifecycle jsdoc-wmf-theme@0.0.2~preinstall: jsdoc-wmf-theme@0.0.2
npm info lifecycle mediawiki-title@0.6.5~preinstall: mediawiki-title@0.6.5
npm info lifecycle mocha@5.2.0~preinstall: mocha@5.2.0
npm info lifecycle nock@9.6.1~preinstall: nock@9.6.1
npm info lifecycle nsp@3.2.1~preinstall: nsp@3.2.1
npm info lifecycle pn@1.1.0~preinstall: pn@1.1.0
npm info lifecycle prfun@2.1.5~preinstall: prfun@2.1.5
npm info lifecycle serve-favicon@2.5.0~preinstall: serve-favicon@2.5.0
npm info lifecycle service-runner@2.6.17~preinstall: service-runner@2.6.17
npm info lifecycle simplediff@0.1.1~preinstall: simplediff@0.1.1
npm info lifecycle supertest@3.4.2~preinstall: supertest@3.4.2
npm info lifecycle wikimedia-langconv@0.0.0~preinstall: wikimedia-langconv@0.0.0
npm info lifecycle wikipeg@2.0.1~preinstall: wikipeg@2.0.1
npm info lifecycle worker-farm@1.6.0~preinstall: worker-farm@1.6.0
npm info lifecycle yargs@7.1.0~preinstall: yargs@7.1.0
npm info linkStuff abbrev@1.0.9
npm info linkStuff acorn@5.7.3
npm info linkStuff acorn@3.3.0
npm info linkStuff acorn-jsx@3.0.1
npm info linkStuff ajv-keywords@2.1.1
npm info linkStuff amdefine@1.0.1
npm info linkStuff ansi-escapes@3.2.0
npm info linkStuff ansi-regex@3.0.0
npm info linkStuff ansi-styles@2.2.1
npm info linkStuff array-flatten@1.1.1
npm info linkStuff asap@2.0.6
npm info linkStuff assert-plus@1.0.0
npm info linkStuff assertion-error@1.1.0
npm info linkStuff async@0.9.2
npm info linkStuff asynckit@0.4.0
npm info linkStuff aws-sign2@0.7.0
npm info linkStuff aws4@1.8.0
npm info linkStuff ansi-regex@2.1.1
npm info linkStuff strip-ansi@3.0.1
npm info linkStuff babylon@7.0.0-beta.19
npm info linkStuff balanced-match@1.0.0
npm info linkStuff bluebird@3.5.4
npm info linkStuff content-type@1.0.4
npm info linkStuff browser-stdout@1.3.1
npm info linkStuff buffer-from@1.1.1
npm info linkStuff bunyan-syslog-udp@0.2.0
npm info linkStuff bytes@3.0.0
npm info linkStuff callsites@0.2.0
npm info linkStuff caller-path@0.1.0
npm info linkStuff camelcase@5.3.1
npm info linkStuff caseless@0.12.0
npm info linkStuff chardet@0.4.2
npm info linkStuff check-error@1.0.2
npm info linkStuff circular-json@0.3.3
npm info linkStuff clarinet@0.11.0
npm info linkStuff ansi-regex@2.1.1
npm info linkStuff strip-ansi@3.0.1
npm info linkStuff cli-width@2.2.0
npm info linkStuff co@4.6.0
npm info linkStuff code-point-at@1.1.0
npm info linkStuff color-name@1.1.3
npm info linkStuff color-convert@1.9.3
npm info linkStuff ansi-styles@3.2.1
npm info linkStuff colors@1.3.3
npm info linkStuff commander@2.19.0
npm info linkStuff comment-parser@0.5.4
npm info linkStuff component-emitter@1.2.1
npm info linkStuff concat-map@0.0.1
npm info linkStuff brace-expansion@1.1.11
npm info linkStuff content-disposition@0.5.2
npm info linkStuff cookie@0.3.1
npm info linkStuff cookie-signature@1.0.6
npm info linkStuff cookiejar@2.1.2
npm info linkStuff core-js@2.6.5
npm info linkStuff core-util-is@1.0.2
npm info linkStuff minimist@1.2.0
npm info linkStuff cvss@1.0.5
npm info linkStuff dashdash@1.14.1
npm info linkStuff decamelize@1.2.0
npm info linkStuff deep-equal@1.0.1
npm info linkStuff deep-is@0.1.3
npm info linkStuff delayed-stream@1.0.0
npm info linkStuff combined-stream@1.0.7
npm info linkStuff depd@1.1.2
npm info linkStuff destroy@1.0.4
npm info linkStuff diff@3.5.0
npm info linkStuff dom-storage@2.1.0
npm info linkStuff domino@2.1.3
npm info linkStuff ee-first@1.1.1
npm info linkStuff encodeurl@1.0.2
npm info linkStuff es6-promise@4.2.6
npm info linkStuff es6-promisify@5.0.0
npm info linkStuff agent-base@4.2.1
npm info linkStuff escape-html@1.0.3
npm info linkStuff escape-string-regexp@1.0.5
npm info linkStuff esprima@2.7.3
npm info linkStuff estraverse@1.9.3
npm info linkStuff source-map@0.2.0
npm info linkStuff lodash@4.17.11
npm info linkStuff eslint-visitor-keys@1.0.0
npm info linkStuff fast-deep-equal@1.1.0
npm info linkStuff json-schema-traverse@0.3.1
npm info linkStuff lodash@4.17.11
npm info linkStuff ms@2.1.1
npm info linkStuff debug@3.2.6
npm info linkStuff espree@3.5.4
npm info linkStuff esprima@4.0.1
npm info linkStuff estraverse@4.2.0
npm info linkStuff esquery@1.0.1
npm info linkStuff esrecurse@4.2.1
npm info linkStuff eslint-scope@3.7.3
npm info linkStuff esutils@2.0.2
npm info linkStuff doctrine@2.1.0
npm info linkStuff etag@1.8.1
npm info linkStuff content-type@1.0.4
npm info linkStuff extend@3.0.2
npm info linkStuff extsprintf@1.3.0
npm info linkStuff fast-deep-equal@2.0.1
npm info linkStuff fast-json-stable-stringify@2.0.0
npm info linkStuff ajv@5.5.2
npm info linkStuff fast-levenshtein@2.0.6
npm info linkStuff figures@2.0.0
npm info linkStuff forever-agent@0.6.1
npm info linkStuff formidable@1.2.1
npm info linkStuff forwarded@0.1.2
npm info linkStuff fresh@0.5.2
npm info linkStuff fs.realpath@1.0.0
npm info linkStuff function-bind@1.1.1
npm info linkStuff functional-red-black-tree@1.0.1
npm info linkStuff abbrev@1.1.1
npm info linkStuff ansi-regex@2.1.1
npm info linkStuff aproba@1.2.0
npm info linkStuff balanced-match@1.0.0
npm info linkStuff chownr@1.1.1
npm info linkStuff code-point-at@1.1.0
npm info linkStuff concat-map@0.0.1
npm info linkStuff brace-expansion@1.1.11
npm info linkStuff console-control-strings@1.1.0
npm info linkStuff core-util-is@1.0.2
npm info linkStuff deep-extend@0.6.0
npm info linkStuff delegates@1.0.0
npm info linkStuff detect-libc@1.0.3
npm info linkStuff fs.realpath@1.0.0
npm info linkStuff has-unicode@2.0.1
npm info linkStuff inherits@2.0.3
npm info linkStuff ini@1.3.5
npm info linkStuff isarray@1.0.0
npm info linkStuff minimatch@3.0.4
npm info linkStuff ignore-walk@3.0.1
npm info linkStuff minimist@0.0.8
npm info linkStuff mkdirp@0.5.1
npm info linkStuff ms@2.0.0
npm info linkStuff debug@2.6.9
npm info linkStuff sax@1.2.4
npm info linkStuff npm-bundled@1.0.5
npm info linkStuff npm-packlist@1.1.12
npm info linkStuff number-is-nan@1.0.1
npm info linkStuff is-fullwidth-code-point@1.0.0
npm info linkStuff object-assign@4.1.1
npm info linkStuff os-homedir@1.0.2
npm info linkStuff os-tmpdir@1.0.2
npm info linkStuff osenv@0.1.5
npm info linkStuff nopt@4.0.1
npm info linkStuff path-is-absolute@1.0.1
npm info linkStuff process-nextick-args@2.0.0
npm info linkStuff minimist@1.2.0
npm info linkStuff safe-buffer@5.1.2
npm info linkStuff safer-buffer@2.1.2
npm info linkStuff iconv-lite@0.4.24
npm info linkStuff needle@2.2.4
npm info linkStuff semver@5.5.0
npm info linkStuff set-blocking@2.0.0
npm info linkStuff signal-exit@3.0.2
npm info linkStuff string_decoder@1.1.1
npm info linkStuff strip-ansi@3.0.1
npm info linkStuff string-width@1.0.2
npm info linkStuff strip-json-comments@2.0.1
npm info linkStuff rc@1.2.8
npm info linkStuff util-deprecate@1.0.2
npm info linkStuff readable-stream@2.3.6
npm info linkStuff are-we-there-yet@1.1.5
npm info linkStuff wide-align@1.1.3
npm info linkStuff gauge@2.7.4
npm info linkStuff npmlog@4.1.2
npm info linkStuff wrappy@1.0.2
npm info linkStuff once@1.4.0
npm info linkStuff inflight@1.0.6
npm info linkStuff glob@7.1.2
npm info linkStuff rimraf@2.6.2
npm info linkStuff yallist@3.0.2
npm info linkStuff minipass@2.3.5
npm info linkStuff fs-minipass@1.2.5
npm info linkStuff minizlib@1.1.1
npm info linkStuff tar@4.4.6
npm info linkStuff node-pre-gyp@0.11.0
npm info linkStuff gelfling@0.3.1
npm info linkStuff gelf-stream@1.1.1
npm info linkStuff get-caller-file@1.0.3
npm info linkStuff get-func-name@2.0.0
npm info linkStuff getpass@0.1.7
npm info linkStuff globals@11.11.0
npm info linkStuff graceful-fs@4.1.15
npm info linkStuff growl@1.10.5
npm info linkStuff har-schema@2.0.0
npm info linkStuff ansi-regex@2.1.1
npm info linkStuff has-ansi@2.0.0
npm info linkStuff has-flag@3.0.0
npm info linkStuff supports-color@5.5.0
npm info linkStuff chalk@2.4.2
npm info linkStuff has-symbols@1.0.0
npm info linkStuff hat@0.0.3
npm info linkStuff he@1.1.1
npm info linkStuff hoek@4.2.1
npm info linkStuff boom@5.2.0
npm info linkStuff hosted-git-info@2.7.1
npm info linkStuff hot-shots@5.9.2
npm info linkStuff ms@2.1.1
npm info linkStuff debug@3.2.6
npm info linkStuff https-proxy-agent@2.2.1
npm info linkStuff ignore@3.3.10
npm info linkStuff imurmurhash@0.1.4
npm info linkStuff inherits@2.0.3
npm info linkStuff lodash@4.17.11
npm info linkStuff invert-kv@2.0.0
npm info linkStuff ipaddr.js@1.8.0
npm info linkStuff is-arguments@1.0.4
npm info linkStuff is-arrayish@0.2.1
npm info linkStuff error-ex@1.3.2
npm info linkStuff is-fullwidth-code-point@2.0.0
npm info linkStuff is-promise@2.1.0
npm info linkStuff is-resolvable@1.1.0
npm info linkStuff is-stream@1.1.0
npm info linkStuff is-typedarray@1.0.0
npm info linkStuff is-utf8@0.2.1
npm info linkStuff isarray@1.0.0
npm info linkStuff isexe@2.0.0
npm info linkStuff isstream@0.1.2
npm info linkStuff async@1.5.2
npm info linkStuff esprima@2.7.3
npm info linkStuff has-flag@1.0.0
npm info linkStuff resolve@1.1.7
npm info linkStuff supports-color@3.2.3
npm info linkStuff wordwrap@1.0.0
npm info linkStuff js-tokens@3.0.2
npm info linkStuff espree@2.2.5
npm info linkStuff jsbn@0.1.1
npm info linkStuff jsdoctypeparser@2.0.0-alpha-8
npm info linkStuff json-schema@0.2.3
npm info linkStuff json-schema-traverse@0.4.1
npm info linkStuff json-stable-stringify-without-jsonify@1.0.1
npm info linkStuff json-stringify-safe@5.0.1
npm info linkStuff jsonc-parser@2.1.0
npm info linkStuff kad-localstorage@0.0.7
npm info linkStuff ms@0.7.3
npm info linkStuff klaw@2.0.0
npm info linkStuff lcid@2.0.0
npm info linkStuff lcov-parse@0.0.10
npm info linkStuff lodash@3.10.1
npm info linkStuff lodash._baseclone@4.5.7
npm info linkStuff lodash.clone@4.3.2
npm info linkStuff dnscache@1.0.1
npm info linkStuff log-driver@1.2.7
npm info linkStuff marked@0.3.19
npm info linkStuff media-typer@0.3.0
npm info linkStuff merge@1.2.1
npm info linkStuff merge-descriptors@1.0.1
npm info linkStuff methods@1.1.2
npm info linkStuff mime@1.4.1
npm info linkStuff mime-db@1.38.0
npm info linkStuff compressible@2.0.16
npm info linkStuff mime-types@2.1.22
npm info linkStuff form-data@2.3.3
npm info linkStuff mimic-fn@2.1.0
npm info linkStuff minimatch@3.0.4
npm info linkStuff minimist@0.0.10
npm info linkStuff minimist@0.0.8
npm info linkStuff mkdirp@0.5.1
npm info linkStuff commander@2.15.1
npm info linkStuff supports-color@5.4.0
npm info linkStuff moment@2.24.0
npm info linkStuff ms@2.0.0
npm info linkStuff debug@2.6.9
npm info linkStuff debug@3.1.0
npm info linkStuff mute-stream@0.0.7
npm info linkStuff nan@2.13.2
npm info linkStuff dtrace-provider@0.8.7
npm info linkStuff gc-stats@1.2.1
npm info linkStuff heapdump@0.3.12
npm info linkStuff natural-compare@1.4.0
npm info linkStuff ncp@2.0.0
npm info linkStuff negotiator@0.6.1
npm info linkStuff accepts@1.3.5
npm info linkStuff neo-async@2.6.0
npm info linkStuff nice-try@1.0.5
npm info linkStuff lodash@4.17.11
npm info linkStuff ms@2.1.1
npm info linkStuff debug@3.2.6
npm info linkStuff nodesecurity-npm-utils@6.0.0
npm info linkStuff nopt@3.0.6
npm info linkStuff ansi-regex@2.1.1
npm info linkStuff camelcase@4.1.0
npm info linkStuff get-stream@3.0.0
npm info linkStuff invert-kv@1.0.0
npm info linkStuff lcid@1.0.0
npm info linkStuff mimic-fn@1.2.0
npm info linkStuff mem@1.1.0
npm info linkStuff p-try@1.0.0
npm info linkStuff p-limit@1.3.0
npm info linkStuff p-locate@2.0.0
npm info linkStuff strip-ansi@3.0.1
npm info linkStuff strip-bom@3.0.0
npm info linkStuff y18n@3.2.1
npm info linkStuff yargs-parser@7.0.0
npm info linkStuff number-is-nan@1.0.1
npm info linkStuff is-fullwidth-code-point@1.0.0
npm info linkStuff string-width@1.0.2
npm info linkStuff cli-table2@0.2.0
npm info linkStuff is-fullwidth-code-point@1.0.0
npm info linkStuff string-width@1.0.2
npm info linkStuff oauth-sign@0.9.0
npm info linkStuff object-assign@4.1.1
npm info linkStuff object-keys@1.1.1
npm info linkStuff define-properties@1.1.3
npm info linkStuff object.assign@4.1.0
npm info linkStuff on-finished@2.3.0
npm info linkStuff on-headers@1.0.2
npm info linkStuff mimic-fn@1.2.0
npm info linkStuff onetime@2.0.1
npm info linkStuff wordwrap@1.0.0
npm info linkStuff os-tmpdir@1.0.2
npm info linkStuff p-defer@1.0.0
npm info linkStuff map-age-cleaner@0.1.3
npm info linkStuff p-finally@1.0.0
npm info linkStuff p-is-promise@2.1.0
npm info linkStuff mem@4.3.0
npm info linkStuff p-try@2.2.0
npm info linkStuff p-limit@2.2.0
npm info linkStuff p-locate@3.0.0
npm info linkStuff parse-json@2.2.0
npm info linkStuff parseurl@1.3.2
npm info linkStuff path-exists@3.0.0
npm info linkStuff locate-path@3.0.0
npm info linkStuff find-up@3.0.0
npm info linkStuff locate-path@2.0.0
npm info linkStuff find-up@2.1.0
npm info linkStuff path-is-absolute@1.0.1
npm info linkStuff path-is-inside@1.0.2
npm info linkStuff path-key@2.0.1
npm info linkStuff npm-run-path@2.0.2
npm info linkStuff path-parse@1.0.6
npm info linkStuff path-to-regexp@0.1.7
npm info linkStuff pathval@1.1.0
npm info linkStuff performance-now@2.1.0
npm info linkStuff pify@2.3.0
npm info linkStuff load-json-file@2.0.0
npm info linkStuff path-type@2.0.0
npm info linkStuff pinkie@2.0.4
npm info linkStuff pinkie-promise@2.0.1
npm info linkStuff path-type@1.1.0
npm info linkStuff pluralize@7.0.0
npm info linkStuff prelude-ls@1.1.2
npm info linkStuff process-nextick-args@2.0.0
npm info linkStuff progress@2.0.3
npm info linkStuff promise@8.0.3
npm info linkStuff propagate@1.0.0
npm info linkStuff proxy-addr@2.0.4
npm info linkStuff prr@1.0.1
npm info linkStuff errno@0.1.7
npm info linkStuff pseudomap@1.0.2
npm info linkStuff psl@1.1.31
npm info linkStuff punycode@2.1.1
npm info linkStuff qs@6.5.2
npm info linkStuff range-parser@1.2.0
npm info linkStuff path-exists@2.1.0
npm info linkStuff find-up@1.1.2
npm info linkStuff regexpp@1.1.0
npm info linkStuff require-directory@2.1.1
npm info linkStuff require-main-filename@1.0.1
npm info linkStuff underscore@1.6.0
npm info linkStuff requizzle@0.2.1
npm info linkStuff resolve@1.10.0
npm info linkStuff resolve-from@1.0.1
npm info linkStuff require-uncached@1.0.3
npm info linkStuff run-async@2.3.0
npm info linkStuff rx-lite@4.0.8
npm info linkStuff rx-lite-aggregates@4.0.8
npm info linkStuff safe-buffer@5.1.2
npm info linkStuff safe-json-stringify@1.2.0
npm info linkStuff safer-buffer@2.1.2
npm info linkStuff asn1@0.2.4
npm info linkStuff ecc-jsbn@0.1.2
npm info linkStuff iconv-lite@0.4.23
npm info linkStuff semver@5.7.0
npm info linkStuff ms@2.1.1
npm info linkStuff safe-buffer@5.1.1
npm info linkStuff set-blocking@2.0.0
npm info linkStuff setprototypeof@1.1.0
npm info linkStuff shebang-regex@1.0.0
npm info linkStuff shebang-command@1.2.0
npm info linkStuff signal-exit@3.0.2
npm info linkStuff restore-cursor@2.0.0
npm info linkStuff cli-cursor@2.1.0
npm info linkStuff slice-ansi@1.0.0
npm info linkStuff source-map@0.6.1
npm info linkStuff spdx-exceptions@2.2.0
npm info linkStuff spdx-license-ids@3.0.4
npm info linkStuff spdx-expression-parse@3.0.0
npm info linkStuff spdx-correct@3.1.0
npm info linkStuff sprintf-js@1.0.3
npm info linkStuff argparse@1.0.10
npm info linkStuff js-yaml@3.13.1
npm info linkStuff statuses@1.4.0
npm info linkStuff http-errors@1.6.3
npm info linkStuff send@0.16.2
npm info linkStuff serve-static@1.13.2
npm info linkStuff streamsearch@0.1.2
npm info linkStuff dicer@0.3.0
npm info linkStuff busboy@0.3.1
npm info linkStuff string_decoder@1.1.1
npm info linkStuff strip-ansi@4.0.0
npm info linkStuff string-width@2.1.1
npm info linkStuff strip-bom@2.0.0
npm info linkStuff load-json-file@1.1.0
npm info linkStuff strip-eof@1.0.0
npm info linkStuff strip-json-comments@2.0.1
npm info linkStuff ms@2.1.1
npm info linkStuff debug@3.2.6
npm info linkStuff supports-color@2.0.0
npm info linkStuff chalk@1.1.3
npm info linkStuff babel-code-frame@6.26.0
npm info linkStuff fast-deep-equal@1.1.0
npm info linkStuff json-schema-traverse@0.3.1
npm info linkStuff ajv@5.5.2
npm info linkStuff lodash@4.17.11
npm info linkStuff table@4.0.2
npm info linkStuff taffydb@2.6.2
npm info linkStuff text-table@0.2.0
npm info linkStuff through@2.3.8
npm info linkStuff tmp@0.0.33
npm info linkStuff external-editor@2.2.0
npm info linkStuff inquirer@3.3.0
npm info linkStuff punycode@1.4.1
npm info linkStuff tough-cookie@2.4.3
npm info linkStuff tunnel-agent@0.6.0
npm info linkStuff tweetnacl@0.14.5
npm info linkStuff bcrypt-pbkdf@1.0.2
npm info linkStuff sshpk@1.16.1
npm info linkStuff type-check@0.3.2
npm info linkStuff levn@0.3.0
npm info linkStuff optionator@0.8.2
npm info linkStuff escodegen@1.8.1
npm info linkStuff type-detect@4.0.8
npm info linkStuff deep-eql@3.0.1
npm info linkStuff chai@4.2.0
npm info linkStuff type-is@1.6.16
npm info linkStuff typedarray@0.0.6
npm info linkStuff uglify-js@3.5.3
npm info linkStuff underscore@1.8.3
npm info linkStuff underscore@1.6.0
npm info linkStuff underscore-contrib@0.3.0
npm info linkStuff catharsis@0.8.9
npm info linkStuff unpipe@1.0.0
npm info linkStuff finalhandler@1.1.1
npm info linkStuff raw-body@2.3.3
npm info linkStuff body-parser@1.18.3
npm info linkStuff uri-js@4.2.2
npm info linkStuff ajv@6.10.0
npm info linkStuff har-validator@5.1.3
npm info linkStuff util-deprecate@1.0.2
npm info linkStuff readable-stream@2.3.6
npm info linkStuff bl@1.2.2
npm info linkStuff concat-stream@1.6.2
npm info linkStuff kad-fs@0.0.4
npm info linkStuff kad-memstore@0.0.1
npm info linkStuff msgpack5@3.6.0
npm info linkStuff kad@1.3.6
npm info linkStuff limitation@0.2.1
npm info linkStuff superagent@3.8.3
npm info linkStuff utils-merge@1.0.1
npm info linkStuff uuid@3.3.2
npm info linkStuff validate-npm-package-license@3.0.4
npm info linkStuff normalize-package-data@2.5.0
npm info linkStuff read-pkg@2.0.0
npm info linkStuff read-pkg-up@2.0.0
npm info linkStuff read-pkg@1.1.0
npm info linkStuff read-pkg-up@1.0.1
npm info linkStuff vary@1.1.2
npm info linkStuff verror@1.10.0
npm info linkStuff jsprim@1.4.1
npm info linkStuff http-signature@1.2.0
npm info linkStuff request@2.88.0
npm info linkStuff vscode-languageserver-types@3.14.0
npm info linkStuff vscode-nls@4.1.0
npm info linkStuff vscode-uri@1.0.6
npm info linkStuff vscode-json-languageservice@3.2.1
npm info linkStuff which@1.3.1
npm info linkStuff cross-spawn@6.0.5
npm info linkStuff which-module@2.0.0
npm info linkStuff wordwrap@0.0.3
npm info linkStuff optimist@0.6.1
npm info linkStuff handlebars@4.1.1
npm info linkStuff ansi-regex@2.1.1
npm info linkStuff is-fullwidth-code-point@1.0.0
npm info linkStuff strip-ansi@3.0.1
npm info linkStuff string-width@1.0.2
npm info linkStuff wrap-ansi@2.1.0
npm info linkStuff cliui@4.1.0
npm info linkStuff cliui@3.2.0
npm info linkStuff wrappy@1.0.2
npm info linkStuff once@1.4.0
npm info linkStuff end-of-stream@1.4.1
npm info linkStuff inflight@1.0.6
npm info linkStuff glob@7.1.3
npm info linkStuff rimraf@2.6.3
npm info linkStuff glob@5.0.15
npm info linkStuff glob@7.1.2
npm info linkStuff pump@3.0.0
npm info linkStuff get-stream@4.1.0
npm info linkStuff execa@1.0.0
npm info linkStuff os-locale@3.1.0
npm info linkStuff glob@6.0.4
npm info linkStuff rimraf@2.4.5
npm info linkStuff mv@2.1.1
npm info linkStuff bunyan@1.8.12
npm info linkStuff wreck@12.5.1
npm info linkStuff write@0.2.1
npm info linkStuff flat-cache@1.3.4
npm info linkStuff file-entry-cache@2.0.0
npm info linkStuff xmlcreate@1.0.2
npm info linkStuff js2xmlparser@3.0.0
npm info linkStuff y18n@4.0.0
npm info linkStuff yallist@2.1.2
npm info linkStuff lru-cache@4.1.5
npm info linkStuff cross-spawn@5.1.0
npm info linkStuff cross-spawn@5.1.0
npm info linkStuff execa@0.7.0
npm info linkStuff os-locale@2.1.0
npm info linkStuff yargs@9.0.1
npm info linkStuff yargs-parser@11.1.1
npm info linkStuff yargs@12.0.5
npm info linkStuff ansi-regex@2.1.1
npm info linkStuff camelcase@3.0.0
npm info linkStuff invert-kv@1.0.0
npm info linkStuff is-fullwidth-code-point@1.0.0
npm info linkStuff lcid@1.0.0
npm info linkStuff os-locale@1.4.0
npm info linkStuff strip-ansi@3.0.1
npm info linkStuff string-width@1.0.2
npm info linkStuff cliui@3.2.0
npm info linkStuff which-module@1.0.0
npm info linkStuff y18n@3.2.1
npm info linkStuff yargs-parser@5.0.0
npm info linkStuff alea@0.0.9
npm info linkStuff babybird@0.0.1
npm info linkStuff compression@1.7.4
npm info linkStuff connect-busboy@0.0.2
npm info linkStuff content-type@1.0.1
npm info linkStuff coveralls@3.0.3
npm info linkStuff entities@1.1.2
npm info linkStuff eslint@4.19.1
npm info linkStuff eslint-config-node-services@2.2.5
npm info linkStuff eslint-config-wikimedia@0.5.0
npm info linkStuff eslint-plugin-jsdoc@3.15.1
npm info linkStuff eslint-plugin-json@1.4.0
npm info linkStuff express@4.16.4
npm info linkStuff express-handlebars@3.0.2
npm info linkStuff istanbul@0.4.5
npm info linkStuff js2php@0.1.7
npm info linkStuff jsdoc@3.5.5
npm info linkStuff jsdoc-wmf-theme@0.0.2
npm info linkStuff mediawiki-title@0.6.5
npm info linkStuff mocha@5.2.0
npm info linkStuff nock@9.6.1
npm info linkStuff nsp@3.2.1
npm info linkStuff pn@1.1.0
npm info linkStuff prfun@2.1.5
npm info linkStuff serve-favicon@2.5.0
npm info linkStuff service-runner@2.6.17
npm info linkStuff simplediff@0.1.1
npm info linkStuff supertest@3.4.2
npm info linkStuff wikimedia-langconv@0.0.0
npm info linkStuff wikipeg@2.0.1
npm info linkStuff worker-farm@1.6.0
npm info linkStuff yargs@7.1.0
npm info lifecycle abbrev@1.0.9~install: abbrev@1.0.9
npm info lifecycle acorn@5.7.3~install: acorn@5.7.3
npm info lifecycle acorn@3.3.0~install: acorn@3.3.0
npm info lifecycle acorn-jsx@3.0.1~install: acorn-jsx@3.0.1
npm info lifecycle ajv-keywords@2.1.1~install: ajv-keywords@2.1.1
npm info lifecycle amdefine@1.0.1~install: amdefine@1.0.1
npm info lifecycle ansi-escapes@3.2.0~install: ansi-escapes@3.2.0
npm info lifecycle ansi-regex@3.0.0~install: ansi-regex@3.0.0
npm info lifecycle ansi-styles@2.2.1~install: ansi-styles@2.2.1
npm info lifecycle array-flatten@1.1.1~install: array-flatten@1.1.1
npm info lifecycle asap@2.0.6~install: asap@2.0.6
npm info lifecycle assert-plus@1.0.0~install: assert-plus@1.0.0
npm info lifecycle assertion-error@1.1.0~install: assertion-error@1.1.0
npm info lifecycle async@0.9.2~install: async@0.9.2
npm info lifecycle asynckit@0.4.0~install: asynckit@0.4.0
npm info lifecycle aws-sign2@0.7.0~install: aws-sign2@0.7.0
npm info lifecycle aws4@1.8.0~install: aws4@1.8.0
npm info lifecycle ansi-regex@2.1.1~install: ansi-regex@2.1.1
npm info lifecycle strip-ansi@3.0.1~install: strip-ansi@3.0.1
npm info lifecycle babylon@7.0.0-beta.19~install: babylon@7.0.0-beta.19
npm info lifecycle balanced-match@1.0.0~install: balanced-match@1.0.0
npm info lifecycle bluebird@3.5.4~install: bluebird@3.5.4
npm info lifecycle content-type@1.0.4~install: content-type@1.0.4
npm info lifecycle browser-stdout@1.3.1~install: browser-stdout@1.3.1
npm info lifecycle buffer-from@1.1.1~install: buffer-from@1.1.1
npm info lifecycle bunyan-syslog-udp@0.2.0~install: bunyan-syslog-udp@0.2.0
npm info lifecycle bytes@3.0.0~install: bytes@3.0.0
npm info lifecycle callsites@0.2.0~install: callsites@0.2.0
npm info lifecycle caller-path@0.1.0~install: caller-path@0.1.0
npm info lifecycle camelcase@5.3.1~install: camelcase@5.3.1
npm info lifecycle caseless@0.12.0~install: caseless@0.12.0
npm info lifecycle chardet@0.4.2~install: chardet@0.4.2
npm info lifecycle check-error@1.0.2~install: check-error@1.0.2
npm info lifecycle circular-json@0.3.3~install: circular-json@0.3.3
npm info lifecycle clarinet@0.11.0~install: clarinet@0.11.0
npm info lifecycle ansi-regex@2.1.1~install: ansi-regex@2.1.1
npm info lifecycle strip-ansi@3.0.1~install: strip-ansi@3.0.1
npm info lifecycle cli-width@2.2.0~install: cli-width@2.2.0
npm info lifecycle co@4.6.0~install: co@4.6.0
npm info lifecycle code-point-at@1.1.0~install: code-point-at@1.1.0
npm info lifecycle color-name@1.1.3~install: color-name@1.1.3
npm info lifecycle color-convert@1.9.3~install: color-convert@1.9.3
npm info lifecycle ansi-styles@3.2.1~install: ansi-styles@3.2.1
npm info lifecycle colors@1.3.3~install: colors@1.3.3
npm info lifecycle commander@2.19.0~install: commander@2.19.0
npm info lifecycle comment-parser@0.5.4~install: comment-parser@0.5.4
npm info lifecycle component-emitter@1.2.1~install: component-emitter@1.2.1
npm info lifecycle concat-map@0.0.1~install: concat-map@0.0.1
npm info lifecycle brace-expansion@1.1.11~install: brace-expansion@1.1.11
npm info lifecycle content-disposition@0.5.2~install: content-disposition@0.5.2
npm info lifecycle cookie@0.3.1~install: cookie@0.3.1
npm info lifecycle cookie-signature@1.0.6~install: cookie-signature@1.0.6
npm info lifecycle cookiejar@2.1.2~install: cookiejar@2.1.2
npm info lifecycle core-js@2.6.5~install: core-js@2.6.5
npm info lifecycle core-util-is@1.0.2~install: core-util-is@1.0.2
npm info lifecycle minimist@1.2.0~install: minimist@1.2.0
npm info lifecycle cvss@1.0.5~install: cvss@1.0.5
npm info lifecycle dashdash@1.14.1~install: dashdash@1.14.1
npm info lifecycle decamelize@1.2.0~install: decamelize@1.2.0
npm info lifecycle deep-equal@1.0.1~install: deep-equal@1.0.1
npm info lifecycle deep-is@0.1.3~install: deep-is@0.1.3
npm info lifecycle delayed-stream@1.0.0~install: delayed-stream@1.0.0
npm info lifecycle combined-stream@1.0.7~install: combined-stream@1.0.7
npm info lifecycle depd@1.1.2~install: depd@1.1.2
npm info lifecycle destroy@1.0.4~install: destroy@1.0.4
npm info lifecycle diff@3.5.0~install: diff@3.5.0
npm info lifecycle dom-storage@2.1.0~install: dom-storage@2.1.0
npm info lifecycle domino@2.1.3~install: domino@2.1.3
npm info lifecycle ee-first@1.1.1~install: ee-first@1.1.1
npm info lifecycle encodeurl@1.0.2~install: encodeurl@1.0.2
npm info lifecycle es6-promise@4.2.6~install: es6-promise@4.2.6
npm info lifecycle es6-promisify@5.0.0~install: es6-promisify@5.0.0
npm info lifecycle agent-base@4.2.1~install: agent-base@4.2.1
npm info lifecycle escape-html@1.0.3~install: escape-html@1.0.3
npm info lifecycle escape-string-regexp@1.0.5~install: escape-string-regexp@1.0.5
npm info lifecycle esprima@2.7.3~install: esprima@2.7.3
npm info lifecycle estraverse@1.9.3~install: estraverse@1.9.3
npm info lifecycle source-map@0.2.0~install: source-map@0.2.0
npm info lifecycle lodash@4.17.11~install: lodash@4.17.11
npm info lifecycle eslint-visitor-keys@1.0.0~install: eslint-visitor-keys@1.0.0
npm info lifecycle fast-deep-equal@1.1.0~install: fast-deep-equal@1.1.0
npm info lifecycle json-schema-traverse@0.3.1~install: json-schema-traverse@0.3.1
npm info lifecycle lodash@4.17.11~install: lodash@4.17.11
npm info lifecycle ms@2.1.1~install: ms@2.1.1
npm info lifecycle debug@3.2.6~install: debug@3.2.6
npm info lifecycle espree@3.5.4~install: espree@3.5.4
npm info lifecycle esprima@4.0.1~install: esprima@4.0.1
npm info lifecycle estraverse@4.2.0~install: estraverse@4.2.0
npm info lifecycle esquery@1.0.1~install: esquery@1.0.1
npm info lifecycle esrecurse@4.2.1~install: esrecurse@4.2.1
npm info lifecycle eslint-scope@3.7.3~install: eslint-scope@3.7.3
npm info lifecycle esutils@2.0.2~install: esutils@2.0.2
npm info lifecycle doctrine@2.1.0~install: doctrine@2.1.0
npm info lifecycle etag@1.8.1~install: etag@1.8.1
npm info lifecycle content-type@1.0.4~install: content-type@1.0.4
npm info lifecycle extend@3.0.2~install: extend@3.0.2
npm info lifecycle extsprintf@1.3.0~install: extsprintf@1.3.0
npm info lifecycle fast-deep-equal@2.0.1~install: fast-deep-equal@2.0.1
npm info lifecycle fast-json-stable-stringify@2.0.0~install: fast-json-stable-stringify@2.0.0
npm info lifecycle ajv@5.5.2~install: ajv@5.5.2
npm info lifecycle fast-levenshtein@2.0.6~install: fast-levenshtein@2.0.6
npm info lifecycle figures@2.0.0~install: figures@2.0.0
npm info lifecycle forever-agent@0.6.1~install: forever-agent@0.6.1
npm info lifecycle formidable@1.2.1~install: formidable@1.2.1
npm info lifecycle forwarded@0.1.2~install: forwarded@0.1.2
npm info lifecycle fresh@0.5.2~install: fresh@0.5.2
npm info lifecycle fs.realpath@1.0.0~install: fs.realpath@1.0.0
npm info lifecycle function-bind@1.1.1~install: function-bind@1.1.1
npm info lifecycle functional-red-black-tree@1.0.1~install: functional-red-black-tree@1.0.1
npm info lifecycle abbrev@1.1.1~install: abbrev@1.1.1
npm info lifecycle ansi-regex@2.1.1~install: ansi-regex@2.1.1
npm info lifecycle aproba@1.2.0~install: aproba@1.2.0
npm info lifecycle balanced-match@1.0.0~install: balanced-match@1.0.0
npm info lifecycle chownr@1.1.1~install: chownr@1.1.1
npm info lifecycle code-point-at@1.1.0~install: code-point-at@1.1.0
npm info lifecycle concat-map@0.0.1~install: concat-map@0.0.1
npm info lifecycle brace-expansion@1.1.11~install: brace-expansion@1.1.11
npm info lifecycle console-control-strings@1.1.0~install: console-control-strings@1.1.0
npm info lifecycle core-util-is@1.0.2~install: core-util-is@1.0.2
npm info lifecycle deep-extend@0.6.0~install: deep-extend@0.6.0
npm info lifecycle delegates@1.0.0~install: delegates@1.0.0
npm info lifecycle detect-libc@1.0.3~install: detect-libc@1.0.3
npm info lifecycle fs.realpath@1.0.0~install: fs.realpath@1.0.0
npm info lifecycle has-unicode@2.0.1~install: has-unicode@2.0.1
npm info lifecycle inherits@2.0.3~install: inherits@2.0.3
npm info lifecycle ini@1.3.5~install: ini@1.3.5
npm info lifecycle isarray@1.0.0~install: isarray@1.0.0
npm info lifecycle minimatch@3.0.4~install: minimatch@3.0.4
npm info lifecycle ignore-walk@3.0.1~install: ignore-walk@3.0.1
npm info lifecycle minimist@0.0.8~install: minimist@0.0.8
npm info lifecycle mkdirp@0.5.1~install: mkdirp@0.5.1
npm info lifecycle ms@2.0.0~install: ms@2.0.0
npm info lifecycle debug@2.6.9~install: debug@2.6.9
npm info lifecycle sax@1.2.4~install: sax@1.2.4
npm info lifecycle npm-bundled@1.0.5~install: npm-bundled@1.0.5
npm info lifecycle npm-packlist@1.1.12~install: npm-packlist@1.1.12
npm info lifecycle number-is-nan@1.0.1~install: number-is-nan@1.0.1
npm info lifecycle is-fullwidth-code-point@1.0.0~install: is-fullwidth-code-point@1.0.0
npm info lifecycle object-assign@4.1.1~install: object-assign@4.1.1
npm info lifecycle os-homedir@1.0.2~install: os-homedir@1.0.2
npm info lifecycle os-tmpdir@1.0.2~install: os-tmpdir@1.0.2
npm info lifecycle osenv@0.1.5~install: osenv@0.1.5
npm info lifecycle nopt@4.0.1~install: nopt@4.0.1
npm info lifecycle path-is-absolute@1.0.1~install: path-is-absolute@1.0.1
npm info lifecycle process-nextick-args@2.0.0~install: process-nextick-args@2.0.0
npm info lifecycle minimist@1.2.0~install: minimist@1.2.0
npm info lifecycle safe-buffer@5.1.2~install: safe-buffer@5.1.2
npm info lifecycle safer-buffer@2.1.2~install: safer-buffer@2.1.2
npm info lifecycle iconv-lite@0.4.24~install: iconv-lite@0.4.24
npm info lifecycle needle@2.2.4~install: needle@2.2.4
npm info lifecycle semver@5.5.0~install: semver@5.5.0
npm info lifecycle set-blocking@2.0.0~install: set-blocking@2.0.0
npm info lifecycle signal-exit@3.0.2~install: signal-exit@3.0.2
npm info lifecycle string_decoder@1.1.1~install: string_decoder@1.1.1
npm info lifecycle strip-ansi@3.0.1~install: strip-ansi@3.0.1
npm info lifecycle string-width@1.0.2~install: string-width@1.0.2
npm info lifecycle strip-json-comments@2.0.1~install: strip-json-comments@2.0.1
npm info lifecycle rc@1.2.8~install: rc@1.2.8
npm info lifecycle util-deprecate@1.0.2~install: util-deprecate@1.0.2
npm info lifecycle readable-stream@2.3.6~install: readable-stream@2.3.6
npm info lifecycle are-we-there-yet@1.1.5~install: are-we-there-yet@1.1.5
npm info lifecycle wide-align@1.1.3~install: wide-align@1.1.3
npm info lifecycle gauge@2.7.4~install: gauge@2.7.4
npm info lifecycle npmlog@4.1.2~install: npmlog@4.1.2
npm info lifecycle wrappy@1.0.2~install: wrappy@1.0.2
npm info lifecycle once@1.4.0~install: once@1.4.0
npm info lifecycle inflight@1.0.6~install: inflight@1.0.6
npm info lifecycle glob@7.1.2~install: glob@7.1.2
npm info lifecycle rimraf@2.6.2~install: rimraf@2.6.2
npm info lifecycle yallist@3.0.2~install: yallist@3.0.2
npm info lifecycle minipass@2.3.5~install: minipass@2.3.5
npm info lifecycle fs-minipass@1.2.5~install: fs-minipass@1.2.5
npm info lifecycle minizlib@1.1.1~install: minizlib@1.1.1
npm info lifecycle tar@4.4.6~install: tar@4.4.6
npm info lifecycle node-pre-gyp@0.11.0~install: node-pre-gyp@0.11.0
npm info lifecycle gelfling@0.3.1~install: gelfling@0.3.1
npm info lifecycle gelf-stream@1.1.1~install: gelf-stream@1.1.1
npm info lifecycle get-caller-file@1.0.3~install: get-caller-file@1.0.3
npm info lifecycle get-func-name@2.0.0~install: get-func-name@2.0.0
npm info lifecycle getpass@0.1.7~install: getpass@0.1.7
npm info lifecycle globals@11.11.0~install: globals@11.11.0
npm info lifecycle graceful-fs@4.1.15~install: graceful-fs@4.1.15
npm info lifecycle growl@1.10.5~install: growl@1.10.5
npm info lifecycle har-schema@2.0.0~install: har-schema@2.0.0
npm info lifecycle ansi-regex@2.1.1~install: ansi-regex@2.1.1
npm info lifecycle has-ansi@2.0.0~install: has-ansi@2.0.0
npm info lifecycle has-flag@3.0.0~install: has-flag@3.0.0
npm info lifecycle supports-color@5.5.0~install: supports-color@5.5.0
npm info lifecycle chalk@2.4.2~install: chalk@2.4.2
npm info lifecycle has-symbols@1.0.0~install: has-symbols@1.0.0
npm info lifecycle hat@0.0.3~install: hat@0.0.3
npm info lifecycle he@1.1.1~install: he@1.1.1
npm info lifecycle hoek@4.2.1~install: hoek@4.2.1
npm info lifecycle boom@5.2.0~install: boom@5.2.0
npm info lifecycle hosted-git-info@2.7.1~install: hosted-git-info@2.7.1
npm info lifecycle hot-shots@5.9.2~install: hot-shots@5.9.2
npm info lifecycle ms@2.1.1~install: ms@2.1.1
npm info lifecycle debug@3.2.6~install: debug@3.2.6
npm info lifecycle https-proxy-agent@2.2.1~install: https-proxy-agent@2.2.1
npm info lifecycle ignore@3.3.10~install: ignore@3.3.10
npm info lifecycle imurmurhash@0.1.4~install: imurmurhash@0.1.4
npm info lifecycle inherits@2.0.3~install: inherits@2.0.3
npm info lifecycle lodash@4.17.11~install: lodash@4.17.11
npm info lifecycle invert-kv@2.0.0~install: invert-kv@2.0.0
npm info lifecycle ipaddr.js@1.8.0~install: ipaddr.js@1.8.0
npm info lifecycle is-arguments@1.0.4~install: is-arguments@1.0.4
npm info lifecycle is-arrayish@0.2.1~install: is-arrayish@0.2.1
npm info lifecycle error-ex@1.3.2~install: error-ex@1.3.2
npm info lifecycle is-fullwidth-code-point@2.0.0~install: is-fullwidth-code-point@2.0.0
npm info lifecycle is-promise@2.1.0~install: is-promise@2.1.0
npm info lifecycle is-resolvable@1.1.0~install: is-resolvable@1.1.0
npm info lifecycle is-stream@1.1.0~install: is-stream@1.1.0
npm info lifecycle is-typedarray@1.0.0~install: is-typedarray@1.0.0
npm info lifecycle is-utf8@0.2.1~install: is-utf8@0.2.1
npm info lifecycle isarray@1.0.0~install: isarray@1.0.0
npm info lifecycle isexe@2.0.0~install: isexe@2.0.0
npm info lifecycle isstream@0.1.2~install: isstream@0.1.2
npm info lifecycle async@1.5.2~install: async@1.5.2
npm info lifecycle esprima@2.7.3~install: esprima@2.7.3
npm info lifecycle has-flag@1.0.0~install: has-flag@1.0.0
npm info lifecycle resolve@1.1.7~install: resolve@1.1.7
npm info lifecycle supports-color@3.2.3~install: supports-color@3.2.3
npm info lifecycle wordwrap@1.0.0~install: wordwrap@1.0.0
npm info lifecycle js-tokens@3.0.2~install: js-tokens@3.0.2
npm info lifecycle espree@2.2.5~install: espree@2.2.5
npm info lifecycle jsbn@0.1.1~install: jsbn@0.1.1
npm info lifecycle jsdoctypeparser@2.0.0-alpha-8~install: jsdoctypeparser@2.0.0-alpha-8
npm info lifecycle json-schema@0.2.3~install: json-schema@0.2.3
npm info lifecycle json-schema-traverse@0.4.1~install: json-schema-traverse@0.4.1
npm info lifecycle json-stable-stringify-without-jsonify@1.0.1~install: json-stable-stringify-without-jsonify@1.0.1
npm info lifecycle json-stringify-safe@5.0.1~install: json-stringify-safe@5.0.1
npm info lifecycle jsonc-parser@2.1.0~install: jsonc-parser@2.1.0
npm info lifecycle kad-localstorage@0.0.7~install: kad-localstorage@0.0.7
npm info lifecycle ms@0.7.3~install: ms@0.7.3
npm info lifecycle klaw@2.0.0~install: klaw@2.0.0
npm info lifecycle lcid@2.0.0~install: lcid@2.0.0
npm info lifecycle lcov-parse@0.0.10~install: lcov-parse@0.0.10
npm info lifecycle lodash@3.10.1~install: lodash@3.10.1
npm info lifecycle lodash._baseclone@4.5.7~install: lodash._baseclone@4.5.7
npm info lifecycle lodash.clone@4.3.2~install: lodash.clone@4.3.2
npm info lifecycle dnscache@1.0.1~install: dnscache@1.0.1
npm info lifecycle log-driver@1.2.7~install: log-driver@1.2.7
npm info lifecycle marked@0.3.19~install: marked@0.3.19
npm info lifecycle media-typer@0.3.0~install: media-typer@0.3.0
npm info lifecycle merge@1.2.1~install: merge@1.2.1
npm info lifecycle merge-descriptors@1.0.1~install: merge-descriptors@1.0.1
npm info lifecycle methods@1.1.2~install: methods@1.1.2
npm info lifecycle mime@1.4.1~install: mime@1.4.1
npm info lifecycle mime-db@1.38.0~install: mime-db@1.38.0
npm info lifecycle compressible@2.0.16~install: compressible@2.0.16
npm info lifecycle mime-types@2.1.22~install: mime-types@2.1.22
npm info lifecycle form-data@2.3.3~install: form-data@2.3.3
npm info lifecycle mimic-fn@2.1.0~install: mimic-fn@2.1.0
npm info lifecycle minimatch@3.0.4~install: minimatch@3.0.4
npm info lifecycle minimist@0.0.10~install: minimist@0.0.10
npm info lifecycle minimist@0.0.8~install: minimist@0.0.8
npm info lifecycle mkdirp@0.5.1~install: mkdirp@0.5.1
npm info lifecycle commander@2.15.1~install: commander@2.15.1
npm info lifecycle supports-color@5.4.0~install: supports-color@5.4.0
npm info lifecycle moment@2.24.0~install: moment@2.24.0
npm info lifecycle ms@2.0.0~install: ms@2.0.0
npm info lifecycle debug@2.6.9~install: debug@2.6.9
npm info lifecycle debug@3.1.0~install: debug@3.1.0
npm info lifecycle mute-stream@0.0.7~install: mute-stream@0.0.7
npm info lifecycle nan@2.13.2~install: nan@2.13.2
npm info lifecycle dtrace-provider@0.8.7~install: dtrace-provider@0.8.7
> dtrace-provider@0.8.7 install /usr/src/app/node_modules/dtrace-provider
> node-gyp rebuild || node suppress-error.js
gyp info it worked if it ends with ok
gyp info using node-gyp@3.4.0
gyp info using node@6.11.0 | linux | x64
gyp http GET https://nodejs.org/download/release/v6.11.0/node-v6.11.0-headers.tar.gz
gyp http 200 https://nodejs.org/download/release/v6.11.0/node-v6.11.0-headers.tar.gz
gyp http GET https://nodejs.org/download/release/v6.11.0/SHASUMS256.txt
gyp http 200 https://nodejs.org/download/release/v6.11.0/SHASUMS256.txt
gyp info spawn /usr/bin/python2
gyp info spawn args [ '/usr/local/lib/node_modules/npm/node_modules/node-gyp/gyp/gyp_main.py',
gyp info spawn args 'binding.gyp',
gyp info spawn args '-f',
gyp info spawn args 'make',
gyp info spawn args '-I',
gyp info spawn args '/usr/src/app/node_modules/dtrace-provider/build/config.gypi',
gyp info spawn args '-I',
gyp info spawn args '/usr/local/lib/node_modules/npm/node_modules/node-gyp/addon.gypi',
gyp info spawn args '-I',
gyp info spawn args '/root/.node-gyp/6.11.0/include/node/common.gypi',
gyp info spawn args '-Dlibrary=shared_library',
gyp info spawn args '-Dvisibility=default',
gyp info spawn args '-Dnode_root_dir=/root/.node-gyp/6.11.0',
gyp info spawn args '-Dnode_gyp_dir=/usr/local/lib/node_modules/npm/node_modules/node-gyp',
gyp info spawn args '-Dnode_lib_file=node.lib',
gyp info spawn args '-Dmodule_root_dir=/usr/src/app/node_modules/dtrace-provider',
gyp info spawn args '--depth=.',
gyp info spawn args '--no-parallel',
gyp info spawn args '--generator-output',
gyp info spawn args 'build',
gyp info spawn args '-Goutput_dir=.' ]
gyp info spawn make
gyp infomake: Entering directory '/usr/src/app/node_modules/dtrace-provider/build'
spawn args [ 'BUILDTYPE=Release', '-C', 'build' ]
TOUCH Release/obj.target/DTraceProviderStub.stamp
make: Leaving directory '/usr/src/app/node_modules/dtrace-provider/build'
gyp info ok
npm info lifecycle gc-stats@1.2.1~install: gc-stats@1.2.1
> gc-stats@1.2.1 install /usr/src/app/node_modules/gc-stats
> node-pre-gyp install --fallback-to-build
node-pre-gyp info it worked if it ends with ok
node-pre-gyp info using node-pre-gyp@0.11.0
node-pre-gyp info using node@6.11.0 | linux | x64
node-pre-gyp WARN Using request for node-pre-gyp https download
node-pre-gyp info check checked for "/usr/src/app/node_modules/gc-stats/build/gcstats/v1.2.1/Release/node-v48-linux-x64/gcstats.node" (not found)
node-pre-gyp http GET https://node-binaries.s3.amazonaws.com/gcstats/v1.2.1/Release/node-v48-linux-x64.tar.gz
node-pre-gyp http 200 https://node-binaries.s3.amazonaws.com/gcstats/v1.2.1/Release/node-v48-linux-x64.tar.gz
node-pre-gyp info install unpacking node-v48-linux-x64/gcstats.node
node-pre-gyp info tarball done parsing tarball
[gc-stats] Success: "/usr/src/app/node_modules/gc-stats/build/gcstats/v1.2.1/Release/node-v48-linux-x64/gcstats.node" is installed via remote
node-pre-gyp info ok
npm info lifecycle heapdump@0.3.12~install: heapdump@0.3.12
> heapdump@0.3.12 install /usr/src/app/node_modules/heapdump
> node-gyp rebuild
gyp info it worked if it ends with ok
gyp info using node-gyp@3.4.0
gyp info using node@6.11.0 | linux | x64
gyp info spawn /usr/bin/python2
gyp info spawn args [ '/usr/local/lib/node_modules/npm/node_modules/node-gyp/gyp/gyp_main.py',
gyp info spawn args 'binding.gyp',
gyp info spawn args '-f',
gyp info spawn args 'make',
gyp info spawn args '-I',
gyp info spawn args '/usr/src/app/node_modules/heapdump/build/config.gypi',
gyp info spawn args '-I',
gyp info spawn args '/usr/local/lib/node_modules/npm/node_modules/node-gyp/addon.gypi',
gyp info spawn args '-I',
gyp info spawn args '/root/.node-gyp/6.11.0/include/node/common.gypi',
gyp info spawn args '-Dlibrary=shared_library',
gyp info spawn args '-Dvisibility=default',
gyp info spawn args '-Dnode_root_dir=/root/.node-gyp/6.11.0',
gyp info spawn args '-Dnode_gyp_dir=/usr/local/lib/node_modules/npm/node_modules/node-gyp',
gyp info spawn args '-Dnode_lib_file=node.lib',
gyp info spawn args '-Dmodule_root_dir=/usr/src/app/node_modules/heapdump',
gyp info spawn args '--depth=.',
gyp info spawn args '--no-parallel',
gyp info spawn args '--generator-output',
gyp info spawn args 'build',
gyp info spawn args '-Goutput_dir=.' ]
gyp info spawn make
gyp info spawn args [ 'BUILDTYPE=Release', '-C', 'build' ]
make: Entering directory '/usr/src/app/node_modules/heapdump/build'
CXX(target) Release/obj.target/addon/src/heapdump.o
SOLINK_MODULE(target) Release/obj.target/addon.node
COPY Release/addon.node
make: Leaving directory '/usr/src/app/node_modules/heapdump/build'
gyp info ok
npm info lifecycle natural-compare@1.4.0~install: natural-compare@1.4.0
npm info lifecycle ncp@2.0.0~install: ncp@2.0.0
npm info lifecycle negotiator@0.6.1~install: negotiator@0.6.1
npm info lifecycle accepts@1.3.5~install: accepts@1.3.5
npm info lifecycle neo-async@2.6.0~install: neo-async@2.6.0
npm info lifecycle nice-try@1.0.5~install: nice-try@1.0.5
npm info lifecycle lodash@4.17.11~install: lodash@4.17.11
npm info lifecycle ms@2.1.1~install: ms@2.1.1
npm info lifecycle debug@3.2.6~install: debug@3.2.6
npm info lifecycle nodesecurity-npm-utils@6.0.0~install: nodesecurity-npm-utils@6.0.0
npm info lifecycle nopt@3.0.6~install: nopt@3.0.6
npm info lifecycle ansi-regex@2.1.1~install: ansi-regex@2.1.1
npm info lifecycle camelcase@4.1.0~install: camelcase@4.1.0
npm info lifecycle get-stream@3.0.0~install: get-stream@3.0.0
npm info lifecycle invert-kv@1.0.0~install: invert-kv@1.0.0
npm info lifecycle lcid@1.0.0~install: lcid@1.0.0
npm info lifecycle mimic-fn@1.2.0~install: mimic-fn@1.2.0
npm info lifecycle mem@1.1.0~install: mem@1.1.0
npm info lifecycle p-try@1.0.0~install: p-try@1.0.0
npm info lifecycle p-limit@1.3.0~install: p-limit@1.3.0
npm info lifecycle p-locate@2.0.0~install: p-locate@2.0.0
npm info lifecycle strip-ansi@3.0.1~install: strip-ansi@3.0.1
npm info lifecycle strip-bom@3.0.0~install: strip-bom@3.0.0
npm info lifecycle y18n@3.2.1~install: y18n@3.2.1
npm info lifecycle yargs-parser@7.0.0~install: yargs-parser@7.0.0
npm info lifecycle number-is-nan@1.0.1~install: number-is-nan@1.0.1
npm info lifecycle is-fullwidth-code-point@1.0.0~install: is-fullwidth-code-point@1.0.0
npm info lifecycle string-width@1.0.2~install: string-width@1.0.2
npm info lifecycle cli-table2@0.2.0~install: cli-table2@0.2.0
npm info lifecycle is-fullwidth-code-point@1.0.0~install: is-fullwidth-code-point@1.0.0
npm info lifecycle string-width@1.0.2~install: string-width@1.0.2
npm info lifecycle oauth-sign@0.9.0~install: oauth-sign@0.9.0
npm info lifecycle object-assign@4.1.1~install: object-assign@4.1.1
npm info lifecycle object-keys@1.1.1~install: object-keys@1.1.1
npm info lifecycle define-properties@1.1.3~install: define-properties@1.1.3
npm info lifecycle object.assign@4.1.0~install: object.assign@4.1.0
npm info lifecycle on-finished@2.3.0~install: on-finished@2.3.0
npm info lifecycle on-headers@1.0.2~install: on-headers@1.0.2
npm info lifecycle mimic-fn@1.2.0~install: mimic-fn@1.2.0
npm info lifecycle onetime@2.0.1~install: onetime@2.0.1
npm info lifecycle wordwrap@1.0.0~install: wordwrap@1.0.0
npm info lifecycle os-tmpdir@1.0.2~install: os-tmpdir@1.0.2
npm info lifecycle p-defer@1.0.0~install: p-defer@1.0.0
npm info lifecycle map-age-cleaner@0.1.3~install: map-age-cleaner@0.1.3
npm info lifecycle p-finally@1.0.0~install: p-finally@1.0.0
npm info lifecycle p-is-promise@2.1.0~install: p-is-promise@2.1.0
npm info lifecycle mem@4.3.0~install: mem@4.3.0
npm info lifecycle p-try@2.2.0~install: p-try@2.2.0
npm info lifecycle p-limit@2.2.0~install: p-limit@2.2.0
npm info lifecycle p-locate@3.0.0~install: p-locate@3.0.0
npm info lifecycle parse-json@2.2.0~install: parse-json@2.2.0
npm info lifecycle parseurl@1.3.2~install: parseurl@1.3.2
npm info lifecycle path-exists@3.0.0~install: path-exists@3.0.0
npm info lifecycle locate-path@3.0.0~install: locate-path@3.0.0
npm info lifecycle find-up@3.0.0~install: find-up@3.0.0
npm info lifecycle locate-path@2.0.0~install: locate-path@2.0.0
npm info lifecycle find-up@2.1.0~install: find-up@2.1.0
npm info lifecycle path-is-absolute@1.0.1~install: path-is-absolute@1.0.1
npm info lifecycle path-is-inside@1.0.2~install: path-is-inside@1.0.2
npm info lifecycle path-key@2.0.1~install: path-key@2.0.1
npm info lifecycle npm-run-path@2.0.2~install: npm-run-path@2.0.2
npm info lifecycle path-parse@1.0.6~install: path-parse@1.0.6
npm info lifecycle path-to-regexp@0.1.7~install: path-to-regexp@0.1.7
npm info lifecycle pathval@1.1.0~install: pathval@1.1.0
npm info lifecycle performance-now@2.1.0~install: performance-now@2.1.0
npm info lifecycle pify@2.3.0~install: pify@2.3.0
npm info lifecycle load-json-file@2.0.0~install: load-json-file@2.0.0
npm info lifecycle path-type@2.0.0~install: path-type@2.0.0
npm info lifecycle pinkie@2.0.4~install: pinkie@2.0.4
npm info lifecycle pinkie-promise@2.0.1~install: pinkie-promise@2.0.1
npm info lifecycle path-type@1.1.0~install: path-type@1.1.0
npm info lifecycle pluralize@7.0.0~install: pluralize@7.0.0
npm info lifecycle prelude-ls@1.1.2~install: prelude-ls@1.1.2
npm info lifecycle process-nextick-args@2.0.0~install: process-nextick-args@2.0.0
npm info lifecycle progress@2.0.3~install: progress@2.0.3
npm info lifecycle promise@8.0.3~install: promise@8.0.3
npm info lifecycle propagate@1.0.0~install: propagate@1.0.0
npm info lifecycle proxy-addr@2.0.4~install: proxy-addr@2.0.4
npm info lifecycle prr@1.0.1~install: prr@1.0.1
npm info lifecycle errno@0.1.7~install: errno@0.1.7
npm info lifecycle pseudomap@1.0.2~install: pseudomap@1.0.2
npm info lifecycle psl@1.1.31~install: psl@1.1.31
npm info lifecycle punycode@2.1.1~install: punycode@2.1.1
npm info lifecycle qs@6.5.2~install: qs@6.5.2
npm info lifecycle range-parser@1.2.0~install: range-parser@1.2.0
npm info lifecycle path-exists@2.1.0~install: path-exists@2.1.0
npm info lifecycle find-up@1.1.2~install: find-up@1.1.2
npm info lifecycle regexpp@1.1.0~install: regexpp@1.1.0
npm info lifecycle require-directory@2.1.1~install: require-directory@2.1.1
npm info lifecycle require-main-filename@1.0.1~install: require-main-filename@1.0.1
npm info lifecycle underscore@1.6.0~install: underscore@1.6.0
npm info lifecycle requizzle@0.2.1~install: requizzle@0.2.1
npm info lifecycle resolve@1.10.0~install: resolve@1.10.0
npm info lifecycle resolve-from@1.0.1~install: resolve-from@1.0.1
npm info lifecycle require-uncached@1.0.3~install: require-uncached@1.0.3
npm info lifecycle run-async@2.3.0~install: run-async@2.3.0
npm info lifecycle rx-lite@4.0.8~install: rx-lite@4.0.8
npm info lifecycle rx-lite-aggregates@4.0.8~install: rx-lite-aggregates@4.0.8
npm info lifecycle safe-buffer@5.1.2~install: safe-buffer@5.1.2
npm info lifecycle safe-json-stringify@1.2.0~install: safe-json-stringify@1.2.0
npm info lifecycle safer-buffer@2.1.2~install: safer-buffer@2.1.2
npm info lifecycle asn1@0.2.4~install: asn1@0.2.4
npm info lifecycle ecc-jsbn@0.1.2~install: ecc-jsbn@0.1.2
npm info lifecycle iconv-lite@0.4.23~install: iconv-lite@0.4.23
npm info lifecycle semver@5.7.0~install: semver@5.7.0
npm info lifecycle ms@2.1.1~install: ms@2.1.1
npm info lifecycle safe-buffer@5.1.1~install: safe-buffer@5.1.1
npm info lifecycle set-blocking@2.0.0~install: set-blocking@2.0.0
npm info lifecycle setprototypeof@1.1.0~install: setprototypeof@1.1.0
npm info lifecycle shebang-regex@1.0.0~install: shebang-regex@1.0.0
npm info lifecycle shebang-command@1.2.0~install: shebang-command@1.2.0
npm info lifecycle signal-exit@3.0.2~install: signal-exit@3.0.2
npm info lifecycle restore-cursor@2.0.0~install: restore-cursor@2.0.0
npm info lifecycle cli-cursor@2.1.0~install: cli-cursor@2.1.0
npm info lifecycle slice-ansi@1.0.0~install: slice-ansi@1.0.0
npm info lifecycle source-map@0.6.1~install: source-map@0.6.1
npm info lifecycle spdx-exceptions@2.2.0~install: spdx-exceptions@2.2.0
npm info lifecycle spdx-license-ids@3.0.4~install: spdx-license-ids@3.0.4
npm info lifecycle spdx-expression-parse@3.0.0~install: spdx-expression-parse@3.0.0
npm info lifecycle spdx-correct@3.1.0~install: spdx-correct@3.1.0
npm info lifecycle sprintf-js@1.0.3~install: sprintf-js@1.0.3
npm info lifecycle argparse@1.0.10~install: argparse@1.0.10
npm info lifecycle js-yaml@3.13.1~install: js-yaml@3.13.1
npm info lifecycle statuses@1.4.0~install: statuses@1.4.0
npm info lifecycle http-errors@1.6.3~install: http-errors@1.6.3
npm info lifecycle send@0.16.2~install: send@0.16.2
npm info lifecycle serve-static@1.13.2~install: serve-static@1.13.2
npm info lifecycle streamsearch@0.1.2~install: streamsearch@0.1.2
npm info lifecycle dicer@0.3.0~install: dicer@0.3.0
npm info lifecycle busboy@0.3.1~install: busboy@0.3.1
npm info lifecycle string_decoder@1.1.1~install: string_decoder@1.1.1
npm info lifecycle strip-ansi@4.0.0~install: strip-ansi@4.0.0
npm info lifecycle string-width@2.1.1~install: string-width@2.1.1
npm info lifecycle strip-bom@2.0.0~install: strip-bom@2.0.0
npm info lifecycle load-json-file@1.1.0~install: load-json-file@1.1.0
npm info lifecycle strip-eof@1.0.0~install: strip-eof@1.0.0
npm info lifecycle strip-json-comments@2.0.1~install: strip-json-comments@2.0.1
npm info lifecycle ms@2.1.1~install: ms@2.1.1
npm info lifecycle debug@3.2.6~install: debug@3.2.6
npm info lifecycle supports-color@2.0.0~install: supports-color@2.0.0
npm info lifecycle chalk@1.1.3~install: chalk@1.1.3
npm info lifecycle babel-code-frame@6.26.0~install: babel-code-frame@6.26.0
npm info lifecycle fast-deep-equal@1.1.0~install: fast-deep-equal@1.1.0
npm info lifecycle json-schema-traverse@0.3.1~install: json-schema-traverse@0.3.1
npm info lifecycle ajv@5.5.2~install: ajv@5.5.2
npm info lifecycle lodash@4.17.11~install: lodash@4.17.11
npm info lifecycle table@4.0.2~install: table@4.0.2
npm info lifecycle taffydb@2.6.2~install: taffydb@2.6.2
npm info lifecycle text-table@0.2.0~install: text-table@0.2.0
npm info lifecycle through@2.3.8~install: through@2.3.8
npm info lifecycle tmp@0.0.33~install: tmp@0.0.33
npm info lifecycle external-editor@2.2.0~install: external-editor@2.2.0
npm info lifecycle inquirer@3.3.0~install: inquirer@3.3.0
npm info lifecycle punycode@1.4.1~install: punycode@1.4.1
npm info lifecycle tough-cookie@2.4.3~install: tough-cookie@2.4.3
npm info lifecycle tunnel-agent@0.6.0~install: tunnel-agent@0.6.0
npm info lifecycle tweetnacl@0.14.5~install: tweetnacl@0.14.5
npm info lifecycle bcrypt-pbkdf@1.0.2~install: bcrypt-pbkdf@1.0.2
npm info lifecycle sshpk@1.16.1~install: sshpk@1.16.1
npm info lifecycle type-check@0.3.2~install: type-check@0.3.2
npm info lifecycle levn@0.3.0~install: levn@0.3.0
npm info lifecycle optionator@0.8.2~install: optionator@0.8.2
npm info lifecycle escodegen@1.8.1~install: escodegen@1.8.1
npm info lifecycle type-detect@4.0.8~install: type-detect@4.0.8
npm info lifecycle deep-eql@3.0.1~install: deep-eql@3.0.1
npm info lifecycle chai@4.2.0~install: chai@4.2.0
npm info lifecycle type-is@1.6.16~install: type-is@1.6.16
npm info lifecycle typedarray@0.0.6~install: typedarray@0.0.6
npm info lifecycle uglify-js@3.5.3~install: uglify-js@3.5.3
npm info lifecycle underscore@1.8.3~install: underscore@1.8.3
npm info lifecycle underscore@1.6.0~install: underscore@1.6.0
npm info lifecycle underscore-contrib@0.3.0~install: underscore-contrib@0.3.0
npm info lifecycle catharsis@0.8.9~install: catharsis@0.8.9
npm info lifecycle unpipe@1.0.0~install: unpipe@1.0.0
npm info lifecycle finalhandler@1.1.1~install: finalhandler@1.1.1
npm info lifecycle raw-body@2.3.3~install: raw-body@2.3.3
npm info lifecycle body-parser@1.18.3~install: body-parser@1.18.3
npm info lifecycle uri-js@4.2.2~install: uri-js@4.2.2
npm info lifecycle ajv@6.10.0~install: ajv@6.10.0
npm info lifecycle har-validator@5.1.3~install: har-validator@5.1.3
npm info lifecycle util-deprecate@1.0.2~install: util-deprecate@1.0.2
npm info lifecycle readable-stream@2.3.6~install: readable-stream@2.3.6
npm info lifecycle bl@1.2.2~install: bl@1.2.2
npm info lifecycle concat-stream@1.6.2~install: concat-stream@1.6.2
npm info lifecycle kad-fs@0.0.4~install: kad-fs@0.0.4
npm info lifecycle kad-memstore@0.0.1~install: kad-memstore@0.0.1
npm info lifecycle msgpack5@3.6.0~install: msgpack5@3.6.0
npm info lifecycle kad@1.3.6~install: kad@1.3.6
npm info lifecycle limitation@0.2.1~install: limitation@0.2.1
npm info lifecycle superagent@3.8.3~install: superagent@3.8.3
npm info lifecycle utils-merge@1.0.1~install: utils-merge@1.0.1
npm info lifecycle uuid@3.3.2~install: uuid@3.3.2
npm info lifecycle validate-npm-package-license@3.0.4~install: validate-npm-package-license@3.0.4
npm info lifecycle normalize-package-data@2.5.0~install: normalize-package-data@2.5.0
npm info lifecycle read-pkg@2.0.0~install: read-pkg@2.0.0
npm info lifecycle read-pkg-up@2.0.0~install: read-pkg-up@2.0.0
npm info lifecycle read-pkg@1.1.0~install: read-pkg@1.1.0
npm info lifecycle read-pkg-up@1.0.1~install: read-pkg-up@1.0.1
npm info lifecycle vary@1.1.2~install: vary@1.1.2
npm info lifecycle verror@1.10.0~install: verror@1.10.0
npm info lifecycle jsprim@1.4.1~install: jsprim@1.4.1
npm info lifecycle http-signature@1.2.0~install: http-signature@1.2.0
npm info lifecycle request@2.88.0~install: request@2.88.0
npm info lifecycle vscode-languageserver-types@3.14.0~install: vscode-languageserver-types@3.14.0
npm info lifecycle vscode-nls@4.1.0~install: vscode-nls@4.1.0
npm info lifecycle vscode-uri@1.0.6~install: vscode-uri@1.0.6
npm info lifecycle vscode-json-languageservice@3.2.1~install: vscode-json-languageservice@3.2.1
npm info lifecycle which@1.3.1~install: which@1.3.1
npm info lifecycle cross-spawn@6.0.5~install: cross-spawn@6.0.5
npm info lifecycle which-module@2.0.0~install: which-module@2.0.0
npm info lifecycle wordwrap@0.0.3~install: wordwrap@0.0.3
npm info lifecycle optimist@0.6.1~install: optimist@0.6.1
npm info lifecycle handlebars@4.1.1~install: handlebars@4.1.1
npm info lifecycle ansi-regex@2.1.1~install: ansi-regex@2.1.1
npm info lifecycle is-fullwidth-code-point@1.0.0~install: is-fullwidth-code-point@1.0.0
npm info lifecycle strip-ansi@3.0.1~install: strip-ansi@3.0.1
npm info lifecycle string-width@1.0.2~install: string-width@1.0.2
npm info lifecycle wrap-ansi@2.1.0~install: wrap-ansi@2.1.0
npm info lifecycle cliui@4.1.0~install: cliui@4.1.0
npm info lifecycle cliui@3.2.0~install: cliui@3.2.0
npm info lifecycle wrappy@1.0.2~install: wrappy@1.0.2
npm info lifecycle once@1.4.0~install: once@1.4.0
npm info lifecycle end-of-stream@1.4.1~install: end-of-stream@1.4.1
npm info lifecycle inflight@1.0.6~install: inflight@1.0.6
npm info lifecycle glob@7.1.3~install: glob@7.1.3
npm info lifecycle rimraf@2.6.3~install: rimraf@2.6.3
npm info lifecycle glob@5.0.15~install: glob@5.0.15
npm info lifecycle glob@7.1.2~install: glob@7.1.2
npm info lifecycle pump@3.0.0~install: pump@3.0.0
npm info lifecycle get-stream@4.1.0~install: get-stream@4.1.0
npm info lifecycle execa@1.0.0~install: execa@1.0.0
npm info lifecycle os-locale@3.1.0~install: os-locale@3.1.0
npm info lifecycle glob@6.0.4~install: glob@6.0.4
npm info lifecycle rimraf@2.4.5~install: rimraf@2.4.5
npm info lifecycle mv@2.1.1~install: mv@2.1.1
npm info lifecycle bunyan@1.8.12~install: bunyan@1.8.12
npm info lifecycle wreck@12.5.1~install: wreck@12.5.1
npm info lifecycle write@0.2.1~install: write@0.2.1
npm info lifecycle flat-cache@1.3.4~install: flat-cache@1.3.4
npm info lifecycle file-entry-cache@2.0.0~install: file-entry-cache@2.0.0
npm info lifecycle xmlcreate@1.0.2~install: xmlcreate@1.0.2
npm info lifecycle js2xmlparser@3.0.0~install: js2xmlparser@3.0.0
npm info lifecycle y18n@4.0.0~install: y18n@4.0.0
npm info lifecycle yallist@2.1.2~install: yallist@2.1.2
npm info lifecycle lru-cache@4.1.5~install: lru-cache@4.1.5
npm info lifecycle cross-spawn@5.1.0~install: cross-spawn@5.1.0
npm info lifecycle cross-spawn@5.1.0~install: cross-spawn@5.1.0
npm info lifecycle execa@0.7.0~install: execa@0.7.0
npm info lifecycle os-locale@2.1.0~install: os-locale@2.1.0
npm info lifecycle yargs@9.0.1~install: yargs@9.0.1
npm info lifecycle yargs-parser@11.1.1~install: yargs-parser@11.1.1
npm info lifecycle yargs@12.0.5~install: yargs@12.0.5
npm info lifecycle ansi-regex@2.1.1~install: ansi-regex@2.1.1
npm info lifecycle camelcase@3.0.0~install: camelcase@3.0.0
npm info lifecycle invert-kv@1.0.0~install: invert-kv@1.0.0
npm info lifecycle is-fullwidth-code-point@1.0.0~install: is-fullwidth-code-point@1.0.0
npm info lifecycle lcid@1.0.0~install: lcid@1.0.0
npm info lifecycle os-locale@1.4.0~install: os-locale@1.4.0
npm info lifecycle strip-ansi@3.0.1~install: strip-ansi@3.0.1
npm info lifecycle string-width@1.0.2~install: string-width@1.0.2
npm info lifecycle cliui@3.2.0~install: cliui@3.2.0
npm info lifecycle which-module@1.0.0~install: which-module@1.0.0
npm info lifecycle y18n@3.2.1~install: y18n@3.2.1
npm info lifecycle yargs-parser@5.0.0~install: yargs-parser@5.0.0
npm info lifecycle alea@0.0.9~install: alea@0.0.9
npm info lifecycle babybird@0.0.1~install: babybird@0.0.1
npm info lifecycle compression@1.7.4~install: compression@1.7.4
npm info lifecycle connect-busboy@0.0.2~install: connect-busboy@0.0.2
npm info lifecycle content-type@1.0.1~install: content-type@1.0.1
npm info lifecycle coveralls@3.0.3~install: coveralls@3.0.3
npm info lifecycle entities@1.1.2~install: entities@1.1.2
npm info lifecycle eslint@4.19.1~install: eslint@4.19.1
npm info lifecycle eslint-config-node-services@2.2.5~install: eslint-config-node-services@2.2.5
npm info lifecycle eslint-config-wikimedia@0.5.0~install: eslint-config-wikimedia@0.5.0
npm info lifecycle eslint-plugin-jsdoc@3.15.1~install: eslint-plugin-jsdoc@3.15.1
npm info lifecycle eslint-plugin-json@1.4.0~install: eslint-plugin-json@1.4.0
npm info lifecycle express@4.16.4~install: express@4.16.4
npm info lifecycle express-handlebars@3.0.2~install: express-handlebars@3.0.2
npm info lifecycle istanbul@0.4.5~install: istanbul@0.4.5
npm info lifecycle js2php@0.1.7~install: js2php@0.1.7
npm info lifecycle jsdoc@3.5.5~install: jsdoc@3.5.5
npm info lifecycle jsdoc-wmf-theme@0.0.2~install: jsdoc-wmf-theme@0.0.2
npm info lifecycle mediawiki-title@0.6.5~install: mediawiki-title@0.6.5
npm info lifecycle mocha@5.2.0~install: mocha@5.2.0
npm info lifecycle nock@9.6.1~install: nock@9.6.1
npm info lifecycle nsp@3.2.1~install: nsp@3.2.1
npm info lifecycle pn@1.1.0~install: pn@1.1.0
npm info lifecycle prfun@2.1.5~install: prfun@2.1.5
npm info lifecycle serve-favicon@2.5.0~install: serve-favicon@2.5.0
npm info lifecycle service-runner@2.6.17~install: service-runner@2.6.17
npm info lifecycle simplediff@0.1.1~install: simplediff@0.1.1
npm info lifecycle supertest@3.4.2~install: supertest@3.4.2
npm info lifecycle wikimedia-langconv@0.0.0~install: wikimedia-langconv@0.0.0
npm info lifecycle wikipeg@2.0.1~install: wikipeg@2.0.1
npm info lifecycle worker-farm@1.6.0~install: worker-farm@1.6.0
npm info lifecycle yargs@7.1.0~install: yargs@7.1.0
npm info lifecycle abbrev@1.0.9~postinstall: abbrev@1.0.9
npm info lifecycle acorn@5.7.3~postinstall: acorn@5.7.3
npm info lifecycle acorn@3.3.0~postinstall: acorn@3.3.0
npm info lifecycle acorn-jsx@3.0.1~postinstall: acorn-jsx@3.0.1
npm info lifecycle ajv-keywords@2.1.1~postinstall: ajv-keywords@2.1.1
npm info lifecycle amdefine@1.0.1~postinstall: amdefine@1.0.1
npm info lifecycle ansi-escapes@3.2.0~postinstall: ansi-escapes@3.2.0
npm info lifecycle ansi-regex@3.0.0~postinstall: ansi-regex@3.0.0
npm info lifecycle ansi-styles@2.2.1~postinstall: ansi-styles@2.2.1
npm info lifecycle array-flatten@1.1.1~postinstall: array-flatten@1.1.1
npm info lifecycle asap@2.0.6~postinstall: asap@2.0.6
npm info lifecycle assert-plus@1.0.0~postinstall: assert-plus@1.0.0
npm info lifecycle assertion-error@1.1.0~postinstall: assertion-error@1.1.0
npm info lifecycle async@0.9.2~postinstall: async@0.9.2
npm info lifecycle asynckit@0.4.0~postinstall: asynckit@0.4.0
npm info lifecycle aws-sign2@0.7.0~postinstall: aws-sign2@0.7.0
npm info lifecycle aws4@1.8.0~postinstall: aws4@1.8.0
npm info lifecycle ansi-regex@2.1.1~postinstall: ansi-regex@2.1.1
npm info lifecycle strip-ansi@3.0.1~postinstall: strip-ansi@3.0.1
npm info lifecycle babylon@7.0.0-beta.19~postinstall: babylon@7.0.0-beta.19
npm info lifecycle balanced-match@1.0.0~postinstall: balanced-match@1.0.0
npm info lifecycle bluebird@3.5.4~postinstall: bluebird@3.5.4
npm info lifecycle content-type@1.0.4~postinstall: content-type@1.0.4
npm info lifecycle browser-stdout@1.3.1~postinstall: browser-stdout@1.3.1
npm info lifecycle buffer-from@1.1.1~postinstall: buffer-from@1.1.1
npm info lifecycle bunyan-syslog-udp@0.2.0~postinstall: bunyan-syslog-udp@0.2.0
npm info lifecycle bytes@3.0.0~postinstall: bytes@3.0.0
npm info lifecycle callsites@0.2.0~postinstall: callsites@0.2.0
npm info lifecycle caller-path@0.1.0~postinstall: caller-path@0.1.0
npm info lifecycle camelcase@5.3.1~postinstall: camelcase@5.3.1
npm info lifecycle caseless@0.12.0~postinstall: caseless@0.12.0
npm info lifecycle chardet@0.4.2~postinstall: chardet@0.4.2
npm info lifecycle check-error@1.0.2~postinstall: check-error@1.0.2
npm info lifecycle circular-json@0.3.3~postinstall: circular-json@0.3.3
npm info lifecycle clarinet@0.11.0~postinstall: clarinet@0.11.0
npm info lifecycle ansi-regex@2.1.1~postinstall: ansi-regex@2.1.1
npm info lifecycle strip-ansi@3.0.1~postinstall: strip-ansi@3.0.1
npm info lifecycle cli-width@2.2.0~postinstall: cli-width@2.2.0
npm info lifecycle co@4.6.0~postinstall: co@4.6.0
npm info lifecycle code-point-at@1.1.0~postinstall: code-point-at@1.1.0
npm info lifecycle color-name@1.1.3~postinstall: color-name@1.1.3
npm info lifecycle color-convert@1.9.3~postinstall: color-convert@1.9.3
npm info lifecycle ansi-styles@3.2.1~postinstall: ansi-styles@3.2.1
npm info lifecycle colors@1.3.3~postinstall: colors@1.3.3
npm info lifecycle commander@2.19.0~postinstall: commander@2.19.0
npm info lifecycle comment-parser@0.5.4~postinstall: comment-parser@0.5.4
npm info lifecycle component-emitter@1.2.1~postinstall: component-emitter@1.2.1
npm info lifecycle concat-map@0.0.1~postinstall: concat-map@0.0.1
npm info lifecycle brace-expansion@1.1.11~postinstall: brace-expansion@1.1.11
npm info lifecycle content-disposition@0.5.2~postinstall: content-disposition@0.5.2
npm info lifecycle cookie@0.3.1~postinstall: cookie@0.3.1
npm info lifecycle cookie-signature@1.0.6~postinstall: cookie-signature@1.0.6
npm info lifecycle cookiejar@2.1.2~postinstall: cookiejar@2.1.2
npm info lifecycle core-js@2.6.5~postinstall: core-js@2.6.5
npm info lifecycle core-util-is@1.0.2~postinstall: core-util-is@1.0.2
npm info lifecycle minimist@1.2.0~postinstall: minimist@1.2.0
npm info lifecycle cvss@1.0.5~postinstall: cvss@1.0.5
npm info lifecycle dashdash@1.14.1~postinstall: dashdash@1.14.1
npm info lifecycle decamelize@1.2.0~postinstall: decamelize@1.2.0
npm info lifecycle deep-equal@1.0.1~postinstall: deep-equal@1.0.1
npm info lifecycle deep-is@0.1.3~postinstall: deep-is@0.1.3
npm info lifecycle delayed-stream@1.0.0~postinstall: delayed-stream@1.0.0
npm info lifecycle combined-stream@1.0.7~postinstall: combined-stream@1.0.7
npm info lifecycle depd@1.1.2~postinstall: depd@1.1.2
npm info lifecycle destroy@1.0.4~postinstall: destroy@1.0.4
npm info lifecycle diff@3.5.0~postinstall: diff@3.5.0
npm info lifecycle dom-storage@2.1.0~postinstall: dom-storage@2.1.0
npm info lifecycle domino@2.1.3~postinstall: domino@2.1.3
npm info lifecycle ee-first@1.1.1~postinstall: ee-first@1.1.1
npm info lifecycle encodeurl@1.0.2~postinstall: encodeurl@1.0.2
npm info lifecycle es6-promise@4.2.6~postinstall: es6-promise@4.2.6
npm info lifecycle es6-promisify@5.0.0~postinstall: es6-promisify@5.0.0
npm info lifecycle agent-base@4.2.1~postinstall: agent-base@4.2.1
npm info lifecycle escape-html@1.0.3~postinstall: escape-html@1.0.3
npm info lifecycle escape-string-regexp@1.0.5~postinstall: escape-string-regexp@1.0.5
npm info lifecycle esprima@2.7.3~postinstall: esprima@2.7.3
npm info lifecycle estraverse@1.9.3~postinstall: estraverse@1.9.3
npm info lifecycle source-map@0.2.0~postinstall: source-map@0.2.0
npm info lifecycle lodash@4.17.11~postinstall: lodash@4.17.11
npm info lifecycle eslint-visitor-keys@1.0.0~postinstall: eslint-visitor-keys@1.0.0
npm info lifecycle fast-deep-equal@1.1.0~postinstall: fast-deep-equal@1.1.0
npm info lifecycle json-schema-traverse@0.3.1~postinstall: json-schema-traverse@0.3.1
npm info lifecycle lodash@4.17.11~postinstall: lodash@4.17.11
npm info lifecycle ms@2.1.1~postinstall: ms@2.1.1
npm info lifecycle debug@3.2.6~postinstall: debug@3.2.6
npm info lifecycle espree@3.5.4~postinstall: espree@3.5.4
npm info lifecycle esprima@4.0.1~postinstall: esprima@4.0.1
npm info lifecycle estraverse@4.2.0~postinstall: estraverse@4.2.0
npm info lifecycle esquery@1.0.1~postinstall: esquery@1.0.1
npm info lifecycle esrecurse@4.2.1~postinstall: esrecurse@4.2.1
npm info lifecycle eslint-scope@3.7.3~postinstall: eslint-scope@3.7.3
npm info lifecycle esutils@2.0.2~postinstall: esutils@2.0.2
npm info lifecycle doctrine@2.1.0~postinstall: doctrine@2.1.0
npm info lifecycle etag@1.8.1~postinstall: etag@1.8.1
npm info lifecycle content-type@1.0.4~postinstall: content-type@1.0.4
npm info lifecycle extend@3.0.2~postinstall: extend@3.0.2
npm info lifecycle extsprintf@1.3.0~postinstall: extsprintf@1.3.0
npm info lifecycle fast-deep-equal@2.0.1~postinstall: fast-deep-equal@2.0.1
npm info lifecycle fast-json-stable-stringify@2.0.0~postinstall: fast-json-stable-stringify@2.0.0
npm info lifecycle ajv@5.5.2~postinstall: ajv@5.5.2
npm info lifecycle fast-levenshtein@2.0.6~postinstall: fast-levenshtein@2.0.6
npm info lifecycle figures@2.0.0~postinstall: figures@2.0.0
npm info lifecycle forever-agent@0.6.1~postinstall: forever-agent@0.6.1
npm info lifecycle formidable@1.2.1~postinstall: formidable@1.2.1
npm info lifecycle forwarded@0.1.2~postinstall: forwarded@0.1.2
npm info lifecycle fresh@0.5.2~postinstall: fresh@0.5.2
npm info lifecycle fs.realpath@1.0.0~postinstall: fs.realpath@1.0.0
npm info lifecycle function-bind@1.1.1~postinstall: function-bind@1.1.1
npm info lifecycle functional-red-black-tree@1.0.1~postinstall: functional-red-black-tree@1.0.1
npm info lifecycle abbrev@1.1.1~postinstall: abbrev@1.1.1
npm info lifecycle ansi-regex@2.1.1~postinstall: ansi-regex@2.1.1
npm info lifecycle aproba@1.2.0~postinstall: aproba@1.2.0
npm info lifecycle balanced-match@1.0.0~postinstall: balanced-match@1.0.0
npm info lifecycle chownr@1.1.1~postinstall: chownr@1.1.1
npm info lifecycle code-point-at@1.1.0~postinstall: code-point-at@1.1.0
npm info lifecycle concat-map@0.0.1~postinstall: concat-map@0.0.1
npm info lifecycle brace-expansion@1.1.11~postinstall: brace-expansion@1.1.11
npm info lifecycle console-control-strings@1.1.0~postinstall: console-control-strings@1.1.0
npm info lifecycle core-util-is@1.0.2~postinstall: core-util-is@1.0.2
npm info lifecycle deep-extend@0.6.0~postinstall: deep-extend@0.6.0
npm info lifecycle delegates@1.0.0~postinstall: delegates@1.0.0
npm info lifecycle detect-libc@1.0.3~postinstall: detect-libc@1.0.3
npm info lifecycle fs.realpath@1.0.0~postinstall: fs.realpath@1.0.0
npm info lifecycle has-unicode@2.0.1~postinstall: has-unicode@2.0.1
npm info lifecycle inherits@2.0.3~postinstall: inherits@2.0.3
npm info lifecycle ini@1.3.5~postinstall: ini@1.3.5
npm info lifecycle isarray@1.0.0~postinstall: isarray@1.0.0
npm info lifecycle minimatch@3.0.4~postinstall: minimatch@3.0.4
npm info lifecycle ignore-walk@3.0.1~postinstall: ignore-walk@3.0.1
npm info lifecycle minimist@0.0.8~postinstall: minimist@0.0.8
npm info lifecycle mkdirp@0.5.1~postinstall: mkdirp@0.5.1
npm info lifecycle ms@2.0.0~postinstall: ms@2.0.0
npm info lifecycle debug@2.6.9~postinstall: debug@2.6.9
npm info lifecycle sax@1.2.4~postinstall: sax@1.2.4
npm info lifecycle npm-bundled@1.0.5~postinstall: npm-bundled@1.0.5
npm info lifecycle npm-packlist@1.1.12~postinstall: npm-packlist@1.1.12
npm info lifecycle number-is-nan@1.0.1~postinstall: number-is-nan@1.0.1
npm info lifecycle is-fullwidth-code-point@1.0.0~postinstall: is-fullwidth-code-point@1.0.0
npm info lifecycle object-assign@4.1.1~postinstall: object-assign@4.1.1
npm info lifecycle os-homedir@1.0.2~postinstall: os-homedir@1.0.2
npm info lifecycle os-tmpdir@1.0.2~postinstall: os-tmpdir@1.0.2
npm info lifecycle osenv@0.1.5~postinstall: osenv@0.1.5
npm info lifecycle nopt@4.0.1~postinstall: nopt@4.0.1
npm info lifecycle path-is-absolute@1.0.1~postinstall: path-is-absolute@1.0.1
npm info lifecycle process-nextick-args@2.0.0~postinstall: process-nextick-args@2.0.0
npm info lifecycle minimist@1.2.0~postinstall: minimist@1.2.0
npm info lifecycle safe-buffer@5.1.2~postinstall: safe-buffer@5.1.2
npm info lifecycle safer-buffer@2.1.2~postinstall: safer-buffer@2.1.2
npm info lifecycle iconv-lite@0.4.24~postinstall: iconv-lite@0.4.24
npm info lifecycle needle@2.2.4~postinstall: needle@2.2.4
npm info lifecycle semver@5.5.0~postinstall: semver@5.5.0
npm info lifecycle set-blocking@2.0.0~postinstall: set-blocking@2.0.0
npm info lifecycle signal-exit@3.0.2~postinstall: signal-exit@3.0.2
npm info lifecycle string_decoder@1.1.1~postinstall: string_decoder@1.1.1
npm info lifecycle strip-ansi@3.0.1~postinstall: strip-ansi@3.0.1
npm info lifecycle string-width@1.0.2~postinstall: string-width@1.0.2
npm info lifecycle strip-json-comments@2.0.1~postinstall: strip-json-comments@2.0.1
npm info lifecycle rc@1.2.8~postinstall: rc@1.2.8
npm info lifecycle util-deprecate@1.0.2~postinstall: util-deprecate@1.0.2
npm info lifecycle readable-stream@2.3.6~postinstall: readable-stream@2.3.6
npm info lifecycle are-we-there-yet@1.1.5~postinstall: are-we-there-yet@1.1.5
npm info lifecycle wide-align@1.1.3~postinstall: wide-align@1.1.3
npm info lifecycle gauge@2.7.4~postinstall: gauge@2.7.4
npm info lifecycle npmlog@4.1.2~postinstall: npmlog@4.1.2
npm info lifecycle wrappy@1.0.2~postinstall: wrappy@1.0.2
npm info lifecycle once@1.4.0~postinstall: once@1.4.0
npm info lifecycle inflight@1.0.6~postinstall: inflight@1.0.6
npm info lifecycle glob@7.1.2~postinstall: glob@7.1.2
npm info lifecycle rimraf@2.6.2~postinstall: rimraf@2.6.2
npm info lifecycle yallist@3.0.2~postinstall: yallist@3.0.2
npm info lifecycle minipass@2.3.5~postinstall: minipass@2.3.5
npm info lifecycle fs-minipass@1.2.5~postinstall: fs-minipass@1.2.5
npm info lifecycle minizlib@1.1.1~postinstall: minizlib@1.1.1
npm info lifecycle tar@4.4.6~postinstall: tar@4.4.6
npm info lifecycle node-pre-gyp@0.11.0~postinstall: node-pre-gyp@0.11.0
npm info lifecycle gelfling@0.3.1~postinstall: gelfling@0.3.1
npm info lifecycle gelf-stream@1.1.1~postinstall: gelf-stream@1.1.1
npm info lifecycle get-caller-file@1.0.3~postinstall: get-caller-file@1.0.3
npm info lifecycle get-func-name@2.0.0~postinstall: get-func-name@2.0.0
npm info lifecycle getpass@0.1.7~postinstall: getpass@0.1.7
npm info lifecycle globals@11.11.0~postinstall: globals@11.11.0
npm info lifecycle graceful-fs@4.1.15~postinstall: graceful-fs@4.1.15
npm info lifecycle growl@1.10.5~postinstall: growl@1.10.5
npm info lifecycle har-schema@2.0.0~postinstall: har-schema@2.0.0
npm info lifecycle ansi-regex@2.1.1~postinstall: ansi-regex@2.1.1
npm info lifecycle has-ansi@2.0.0~postinstall: has-ansi@2.0.0
npm info lifecycle has-flag@3.0.0~postinstall: has-flag@3.0.0
npm info lifecycle supports-color@5.5.0~postinstall: supports-color@5.5.0
npm info lifecycle chalk@2.4.2~postinstall: chalk@2.4.2
npm info lifecycle has-symbols@1.0.0~postinstall: has-symbols@1.0.0
npm info lifecycle hat@0.0.3~postinstall: hat@0.0.3
npm info lifecycle he@1.1.1~postinstall: he@1.1.1
npm info lifecycle hoek@4.2.1~postinstall: hoek@4.2.1
npm info lifecycle boom@5.2.0~postinstall: boom@5.2.0
npm info lifecycle hosted-git-info@2.7.1~postinstall: hosted-git-info@2.7.1
npm info lifecycle hot-shots@5.9.2~postinstall: hot-shots@5.9.2
npm info lifecycle ms@2.1.1~postinstall: ms@2.1.1
npm info lifecycle debug@3.2.6~postinstall: debug@3.2.6
npm info lifecycle https-proxy-agent@2.2.1~postinstall: https-proxy-agent@2.2.1
npm info lifecycle ignore@3.3.10~postinstall: ignore@3.3.10
npm info lifecycle imurmurhash@0.1.4~postinstall: imurmurhash@0.1.4
npm info lifecycle inherits@2.0.3~postinstall: inherits@2.0.3
npm info lifecycle lodash@4.17.11~postinstall: lodash@4.17.11
npm info lifecycle invert-kv@2.0.0~postinstall: invert-kv@2.0.0
npm info lifecycle ipaddr.js@1.8.0~postinstall: ipaddr.js@1.8.0
npm info lifecycle is-arguments@1.0.4~postinstall: is-arguments@1.0.4
npm info lifecycle is-arrayish@0.2.1~postinstall: is-arrayish@0.2.1
npm info lifecycle error-ex@1.3.2~postinstall: error-ex@1.3.2
npm info lifecycle is-fullwidth-code-point@2.0.0~postinstall: is-fullwidth-code-point@2.0.0
npm info lifecycle is-promise@2.1.0~postinstall: is-promise@2.1.0
npm info lifecycle is-resolvable@1.1.0~postinstall: is-resolvable@1.1.0
npm info lifecycle is-stream@1.1.0~postinstall: is-stream@1.1.0
npm info lifecycle is-typedarray@1.0.0~postinstall: is-typedarray@1.0.0
npm info lifecycle is-utf8@0.2.1~postinstall: is-utf8@0.2.1
npm info lifecycle isarray@1.0.0~postinstall: isarray@1.0.0
npm info lifecycle isexe@2.0.0~postinstall: isexe@2.0.0
npm info lifecycle isstream@0.1.2~postinstall: isstream@0.1.2
npm info lifecycle async@1.5.2~postinstall: async@1.5.2
npm info lifecycle esprima@2.7.3~postinstall: esprima@2.7.3
npm info lifecycle has-flag@1.0.0~postinstall: has-flag@1.0.0
npm info lifecycle resolve@1.1.7~postinstall: resolve@1.1.7
npm info lifecycle supports-color@3.2.3~postinstall: supports-color@3.2.3
npm info lifecycle wordwrap@1.0.0~postinstall: wordwrap@1.0.0
npm info lifecycle js-tokens@3.0.2~postinstall: js-tokens@3.0.2
npm info lifecycle espree@2.2.5~postinstall: espree@2.2.5
npm info lifecycle jsbn@0.1.1~postinstall: jsbn@0.1.1
npm info lifecycle jsdoctypeparser@2.0.0-alpha-8~postinstall: jsdoctypeparser@2.0.0-alpha-8
npm info lifecycle json-schema@0.2.3~postinstall: json-schema@0.2.3
npm info lifecycle json-schema-traverse@0.4.1~postinstall: json-schema-traverse@0.4.1
npm info lifecycle json-stable-stringify-without-jsonify@1.0.1~postinstall: json-stable-stringify-without-jsonify@1.0.1
npm info lifecycle json-stringify-safe@5.0.1~postinstall: json-stringify-safe@5.0.1
npm info lifecycle jsonc-parser@2.1.0~postinstall: jsonc-parser@2.1.0
npm info lifecycle kad-localstorage@0.0.7~postinstall: kad-localstorage@0.0.7
npm info lifecycle ms@0.7.3~postinstall: ms@0.7.3
npm info lifecycle klaw@2.0.0~postinstall: klaw@2.0.0
npm info lifecycle lcid@2.0.0~postinstall: lcid@2.0.0
npm info lifecycle lcov-parse@0.0.10~postinstall: lcov-parse@0.0.10
npm info lifecycle lodash@3.10.1~postinstall: lodash@3.10.1
npm info lifecycle lodash._baseclone@4.5.7~postinstall: lodash._baseclone@4.5.7
npm info lifecycle lodash.clone@4.3.2~postinstall: lodash.clone@4.3.2
npm info lifecycle dnscache@1.0.1~postinstall: dnscache@1.0.1
npm info lifecycle log-driver@1.2.7~postinstall: log-driver@1.2.7
npm info lifecycle marked@0.3.19~postinstall: marked@0.3.19
npm info lifecycle media-typer@0.3.0~postinstall: media-typer@0.3.0
npm info lifecycle merge@1.2.1~postinstall: merge@1.2.1
npm info lifecycle merge-descriptors@1.0.1~postinstall: merge-descriptors@1.0.1
npm info lifecycle methods@1.1.2~postinstall: methods@1.1.2
npm info lifecycle mime@1.4.1~postinstall: mime@1.4.1
npm info lifecycle mime-db@1.38.0~postinstall: mime-db@1.38.0
npm info lifecycle compressible@2.0.16~postinstall: compressible@2.0.16
npm info lifecycle mime-types@2.1.22~postinstall: mime-types@2.1.22
npm info lifecycle form-data@2.3.3~postinstall: form-data@2.3.3
npm info lifecycle mimic-fn@2.1.0~postinstall: mimic-fn@2.1.0
npm info lifecycle minimatch@3.0.4~postinstall: minimatch@3.0.4
npm info lifecycle minimist@0.0.10~postinstall: minimist@0.0.10
npm info lifecycle minimist@0.0.8~postinstall: minimist@0.0.8
npm info lifecycle mkdirp@0.5.1~postinstall: mkdirp@0.5.1
npm info lifecycle commander@2.15.1~postinstall: commander@2.15.1
npm info lifecycle supports-color@5.4.0~postinstall: supports-color@5.4.0
npm info lifecycle moment@2.24.0~postinstall: moment@2.24.0
npm info lifecycle ms@2.0.0~postinstall: ms@2.0.0
npm info lifecycle debug@2.6.9~postinstall: debug@2.6.9
npm info lifecycle debug@3.1.0~postinstall: debug@3.1.0
npm info lifecycle mute-stream@0.0.7~postinstall: mute-stream@0.0.7
npm info lifecycle nan@2.13.2~postinstall: nan@2.13.2
npm info lifecycle dtrace-provider@0.8.7~postinstall: dtrace-provider@0.8.7
npm info lifecycle gc-stats@1.2.1~postinstall: gc-stats@1.2.1
npm info lifecycle heapdump@0.3.12~postinstall: heapdump@0.3.12
npm info lifecycle natural-compare@1.4.0~postinstall: natural-compare@1.4.0
npm info lifecycle ncp@2.0.0~postinstall: ncp@2.0.0
npm info lifecycle negotiator@0.6.1~postinstall: negotiator@0.6.1
npm info lifecycle accepts@1.3.5~postinstall: accepts@1.3.5
npm info lifecycle neo-async@2.6.0~postinstall: neo-async@2.6.0
npm info lifecycle nice-try@1.0.5~postinstall: nice-try@1.0.5
npm info lifecycle lodash@4.17.11~postinstall: lodash@4.17.11
npm info lifecycle ms@2.1.1~postinstall: ms@2.1.1
npm info lifecycle debug@3.2.6~postinstall: debug@3.2.6
npm info lifecycle nodesecurity-npm-utils@6.0.0~postinstall: nodesecurity-npm-utils@6.0.0
npm info lifecycle nopt@3.0.6~postinstall: nopt@3.0.6
npm info lifecycle ansi-regex@2.1.1~postinstall: ansi-regex@2.1.1
npm info lifecycle camelcase@4.1.0~postinstall: camelcase@4.1.0
npm info lifecycle get-stream@3.0.0~postinstall: get-stream@3.0.0
npm info lifecycle invert-kv@1.0.0~postinstall: invert-kv@1.0.0
npm info lifecycle lcid@1.0.0~postinstall: lcid@1.0.0
npm info lifecycle mimic-fn@1.2.0~postinstall: mimic-fn@1.2.0
npm info lifecycle mem@1.1.0~postinstall: mem@1.1.0
npm info lifecycle p-try@1.0.0~postinstall: p-try@1.0.0
npm info lifecycle p-limit@1.3.0~postinstall: p-limit@1.3.0
npm info lifecycle p-locate@2.0.0~postinstall: p-locate@2.0.0
npm info lifecycle strip-ansi@3.0.1~postinstall: strip-ansi@3.0.1
npm info lifecycle strip-bom@3.0.0~postinstall: strip-bom@3.0.0
npm info lifecycle y18n@3.2.1~postinstall: y18n@3.2.1
npm info lifecycle yargs-parser@7.0.0~postinstall: yargs-parser@7.0.0
npm info lifecycle number-is-nan@1.0.1~postinstall: number-is-nan@1.0.1
npm info lifecycle is-fullwidth-code-point@1.0.0~postinstall: is-fullwidth-code-point@1.0.0
npm info lifecycle string-width@1.0.2~postinstall: string-width@1.0.2
npm info lifecycle cli-table2@0.2.0~postinstall: cli-table2@0.2.0
npm info lifecycle is-fullwidth-code-point@1.0.0~postinstall: is-fullwidth-code-point@1.0.0
npm info lifecycle string-width@1.0.2~postinstall: string-width@1.0.2
npm info lifecycle oauth-sign@0.9.0~postinstall: oauth-sign@0.9.0
npm info lifecycle object-assign@4.1.1~postinstall: object-assign@4.1.1
npm info lifecycle object-keys@1.1.1~postinstall: object-keys@1.1.1
npm info lifecycle define-properties@1.1.3~postinstall: define-properties@1.1.3
npm info lifecycle object.assign@4.1.0~postinstall: object.assign@4.1.0
npm info lifecycle on-finished@2.3.0~postinstall: on-finished@2.3.0
npm info lifecycle on-headers@1.0.2~postinstall: on-headers@1.0.2
npm info lifecycle mimic-fn@1.2.0~postinstall: mimic-fn@1.2.0
npm info lifecycle onetime@2.0.1~postinstall: onetime@2.0.1
npm info lifecycle wordwrap@1.0.0~postinstall: wordwrap@1.0.0
npm info lifecycle os-tmpdir@1.0.2~postinstall: os-tmpdir@1.0.2
npm info lifecycle p-defer@1.0.0~postinstall: p-defer@1.0.0
npm info lifecycle map-age-cleaner@0.1.3~postinstall: map-age-cleaner@0.1.3
npm info lifecycle p-finally@1.0.0~postinstall: p-finally@1.0.0
npm info lifecycle p-is-promise@2.1.0~postinstall: p-is-promise@2.1.0
npm info lifecycle mem@4.3.0~postinstall: mem@4.3.0
npm info lifecycle p-try@2.2.0~postinstall: p-try@2.2.0
npm info lifecycle p-limit@2.2.0~postinstall: p-limit@2.2.0
npm info lifecycle p-locate@3.0.0~postinstall: p-locate@3.0.0
npm info lifecycle parse-json@2.2.0~postinstall: parse-json@2.2.0
npm info lifecycle parseurl@1.3.2~postinstall: parseurl@1.3.2
npm info lifecycle path-exists@3.0.0~postinstall: path-exists@3.0.0
npm info lifecycle locate-path@3.0.0~postinstall: locate-path@3.0.0
npm info lifecycle find-up@3.0.0~postinstall: find-up@3.0.0
npm info lifecycle locate-path@2.0.0~postinstall: locate-path@2.0.0
npm info lifecycle find-up@2.1.0~postinstall: find-up@2.1.0
npm info lifecycle path-is-absolute@1.0.1~postinstall: path-is-absolute@1.0.1
npm info lifecycle path-is-inside@1.0.2~postinstall: path-is-inside@1.0.2
npm info lifecycle path-key@2.0.1~postinstall: path-key@2.0.1
npm info lifecycle npm-run-path@2.0.2~postinstall: npm-run-path@2.0.2
npm info lifecycle path-parse@1.0.6~postinstall: path-parse@1.0.6
npm info lifecycle path-to-regexp@0.1.7~postinstall: path-to-regexp@0.1.7
npm info lifecycle pathval@1.1.0~postinstall: pathval@1.1.0
npm info lifecycle performance-now@2.1.0~postinstall: performance-now@2.1.0
npm info lifecycle pify@2.3.0~postinstall: pify@2.3.0
npm info lifecycle load-json-file@2.0.0~postinstall: load-json-file@2.0.0
npm info lifecycle path-type@2.0.0~postinstall: path-type@2.0.0
npm info lifecycle pinkie@2.0.4~postinstall: pinkie@2.0.4
npm info lifecycle pinkie-promise@2.0.1~postinstall: pinkie-promise@2.0.1
npm info lifecycle path-type@1.1.0~postinstall: path-type@1.1.0
npm info lifecycle pluralize@7.0.0~postinstall: pluralize@7.0.0
npm info lifecycle prelude-ls@1.1.2~postinstall: prelude-ls@1.1.2
npm info lifecycle process-nextick-args@2.0.0~postinstall: process-nextick-args@2.0.0
npm info lifecycle progress@2.0.3~postinstall: progress@2.0.3
npm info lifecycle promise@8.0.3~postinstall: promise@8.0.3
npm info lifecycle propagate@1.0.0~postinstall: propagate@1.0.0
npm info lifecycle proxy-addr@2.0.4~postinstall: proxy-addr@2.0.4
npm info lifecycle prr@1.0.1~postinstall: prr@1.0.1
npm info lifecycle errno@0.1.7~postinstall: errno@0.1.7
npm info lifecycle pseudomap@1.0.2~postinstall: pseudomap@1.0.2
npm info lifecycle psl@1.1.31~postinstall: psl@1.1.31
npm info lifecycle punycode@2.1.1~postinstall: punycode@2.1.1
npm info lifecycle qs@6.5.2~postinstall: qs@6.5.2
npm info lifecycle range-parser@1.2.0~postinstall: range-parser@1.2.0
npm info lifecycle path-exists@2.1.0~postinstall: path-exists@2.1.0
npm info lifecycle find-up@1.1.2~postinstall: find-up@1.1.2
npm info lifecycle regexpp@1.1.0~postinstall: regexpp@1.1.0
npm info lifecycle require-directory@2.1.1~postinstall: require-directory@2.1.1
npm info lifecycle require-main-filename@1.0.1~postinstall: require-main-filename@1.0.1
npm info lifecycle underscore@1.6.0~postinstall: underscore@1.6.0
npm info lifecycle requizzle@0.2.1~postinstall: requizzle@0.2.1
npm info lifecycle resolve@1.10.0~postinstall: resolve@1.10.0
npm info lifecycle resolve-from@1.0.1~postinstall: resolve-from@1.0.1
npm info lifecycle require-uncached@1.0.3~postinstall: require-uncached@1.0.3
npm info lifecycle run-async@2.3.0~postinstall: run-async@2.3.0
npm info lifecycle rx-lite@4.0.8~postinstall: rx-lite@4.0.8
npm info lifecycle rx-lite-aggregates@4.0.8~postinstall: rx-lite-aggregates@4.0.8
npm info lifecycle safe-buffer@5.1.2~postinstall: safe-buffer@5.1.2
npm info lifecycle safe-json-stringify@1.2.0~postinstall: safe-json-stringify@1.2.0
npm info lifecycle safer-buffer@2.1.2~postinstall: safer-buffer@2.1.2
npm info lifecycle asn1@0.2.4~postinstall: asn1@0.2.4
npm info lifecycle ecc-jsbn@0.1.2~postinstall: ecc-jsbn@0.1.2
npm info lifecycle iconv-lite@0.4.23~postinstall: iconv-lite@0.4.23
npm info lifecycle semver@5.7.0~postinstall: semver@5.7.0
npm info lifecycle ms@2.1.1~postinstall: ms@2.1.1
npm info lifecycle safe-buffer@5.1.1~postinstall: safe-buffer@5.1.1
npm info lifecycle set-blocking@2.0.0~postinstall: set-blocking@2.0.0
npm info lifecycle setprototypeof@1.1.0~postinstall: setprototypeof@1.1.0
npm info lifecycle shebang-regex@1.0.0~postinstall: shebang-regex@1.0.0
npm info lifecycle shebang-command@1.2.0~postinstall: shebang-command@1.2.0
npm info lifecycle signal-exit@3.0.2~postinstall: signal-exit@3.0.2
npm info lifecycle restore-cursor@2.0.0~postinstall: restore-cursor@2.0.0
npm info lifecycle cli-cursor@2.1.0~postinstall: cli-cursor@2.1.0
npm info lifecycle slice-ansi@1.0.0~postinstall: slice-ansi@1.0.0
npm info lifecycle source-map@0.6.1~postinstall: source-map@0.6.1
npm info lifecycle spdx-exceptions@2.2.0~postinstall: spdx-exceptions@2.2.0
npm info lifecycle spdx-license-ids@3.0.4~postinstall: spdx-license-ids@3.0.4
npm info lifecycle spdx-expression-parse@3.0.0~postinstall: spdx-expression-parse@3.0.0
npm info lifecycle spdx-correct@3.1.0~postinstall: spdx-correct@3.1.0
npm info lifecycle sprintf-js@1.0.3~postinstall: sprintf-js@1.0.3
npm info lifecycle argparse@1.0.10~postinstall: argparse@1.0.10
npm info lifecycle js-yaml@3.13.1~postinstall: js-yaml@3.13.1
npm info lifecycle statuses@1.4.0~postinstall: statuses@1.4.0
npm info lifecycle http-errors@1.6.3~postinstall: http-errors@1.6.3
npm info lifecycle send@0.16.2~postinstall: send@0.16.2
npm info lifecycle serve-static@1.13.2~postinstall: serve-static@1.13.2
npm info lifecycle streamsearch@0.1.2~postinstall: streamsearch@0.1.2
npm info lifecycle dicer@0.3.0~postinstall: dicer@0.3.0
npm info lifecycle busboy@0.3.1~postinstall: busboy@0.3.1
npm info lifecycle string_decoder@1.1.1~postinstall: string_decoder@1.1.1
npm info lifecycle strip-ansi@4.0.0~postinstall: strip-ansi@4.0.0
npm info lifecycle string-width@2.1.1~postinstall: string-width@2.1.1
npm info lifecycle strip-bom@2.0.0~postinstall: strip-bom@2.0.0
npm info lifecycle load-json-file@1.1.0~postinstall: load-json-file@1.1.0
npm info lifecycle strip-eof@1.0.0~postinstall: strip-eof@1.0.0
npm info lifecycle strip-json-comments@2.0.1~postinstall: strip-json-comments@2.0.1
npm info lifecycle ms@2.1.1~postinstall: ms@2.1.1
npm info lifecycle debug@3.2.6~postinstall: debug@3.2.6
npm info lifecycle supports-color@2.0.0~postinstall: supports-color@2.0.0
npm info lifecycle chalk@1.1.3~postinstall: chalk@1.1.3
npm info lifecycle babel-code-frame@6.26.0~postinstall: babel-code-frame@6.26.0
npm info lifecycle fast-deep-equal@1.1.0~postinstall: fast-deep-equal@1.1.0
npm info lifecycle json-schema-traverse@0.3.1~postinstall: json-schema-traverse@0.3.1
npm info lifecycle ajv@5.5.2~postinstall: ajv@5.5.2
npm info lifecycle lodash@4.17.11~postinstall: lodash@4.17.11
npm info lifecycle table@4.0.2~postinstall: table@4.0.2
npm info lifecycle taffydb@2.6.2~postinstall: taffydb@2.6.2
npm info lifecycle text-table@0.2.0~postinstall: text-table@0.2.0
npm info lifecycle through@2.3.8~postinstall: through@2.3.8
npm info lifecycle tmp@0.0.33~postinstall: tmp@0.0.33
npm info lifecycle external-editor@2.2.0~postinstall: external-editor@2.2.0
npm info lifecycle inquirer@3.3.0~postinstall: inquirer@3.3.0
npm info lifecycle punycode@1.4.1~postinstall: punycode@1.4.1
npm info lifecycle tough-cookie@2.4.3~postinstall: tough-cookie@2.4.3
npm info lifecycle tunnel-agent@0.6.0~postinstall: tunnel-agent@0.6.0
npm info lifecycle tweetnacl@0.14.5~postinstall: tweetnacl@0.14.5
npm info lifecycle bcrypt-pbkdf@1.0.2~postinstall: bcrypt-pbkdf@1.0.2
npm info lifecycle sshpk@1.16.1~postinstall: sshpk@1.16.1
npm info lifecycle type-check@0.3.2~postinstall: type-check@0.3.2
npm info lifecycle levn@0.3.0~postinstall: levn@0.3.0
npm info lifecycle optionator@0.8.2~postinstall: optionator@0.8.2
npm info lifecycle escodegen@1.8.1~postinstall: escodegen@1.8.1
npm info lifecycle type-detect@4.0.8~postinstall: type-detect@4.0.8
npm info lifecycle deep-eql@3.0.1~postinstall: deep-eql@3.0.1
npm info lifecycle chai@4.2.0~postinstall: chai@4.2.0
npm info lifecycle type-is@1.6.16~postinstall: type-is@1.6.16
npm info lifecycle typedarray@0.0.6~postinstall: typedarray@0.0.6
npm info lifecycle uglify-js@3.5.3~postinstall: uglify-js@3.5.3
npm info lifecycle underscore@1.8.3~postinstall: underscore@1.8.3
npm info lifecycle underscore@1.6.0~postinstall: underscore@1.6.0
npm info lifecycle underscore-contrib@0.3.0~postinstall: underscore-contrib@0.3.0
npm info lifecycle catharsis@0.8.9~postinstall: catharsis@0.8.9
npm info lifecycle unpipe@1.0.0~postinstall: unpipe@1.0.0
npm info lifecycle finalhandler@1.1.1~postinstall: finalhandler@1.1.1
npm info lifecycle raw-body@2.3.3~postinstall: raw-body@2.3.3
npm info lifecycle body-parser@1.18.3~postinstall: body-parser@1.18.3
npm info lifecycle uri-js@4.2.2~postinstall: uri-js@4.2.2
npm info lifecycle ajv@6.10.0~postinstall: ajv@6.10.0
npm info lifecycle har-validator@5.1.3~postinstall: har-validator@5.1.3
npm info lifecycle util-deprecate@1.0.2~postinstall: util-deprecate@1.0.2
npm info lifecycle readable-stream@2.3.6~postinstall: readable-stream@2.3.6
npm info lifecycle bl@1.2.2~postinstall: bl@1.2.2
npm info lifecycle concat-stream@1.6.2~postinstall: concat-stream@1.6.2
npm info lifecycle kad-fs@0.0.4~postinstall: kad-fs@0.0.4
npm info lifecycle kad-memstore@0.0.1~postinstall: kad-memstore@0.0.1
npm info lifecycle msgpack5@3.6.0~postinstall: msgpack5@3.6.0
npm info lifecycle kad@1.3.6~postinstall: kad@1.3.6
npm info lifecycle limitation@0.2.1~postinstall: limitation@0.2.1
npm info lifecycle superagent@3.8.3~postinstall: superagent@3.8.3
npm info lifecycle utils-merge@1.0.1~postinstall: utils-merge@1.0.1
npm info lifecycle uuid@3.3.2~postinstall: uuid@3.3.2
npm info lifecycle validate-npm-package-license@3.0.4~postinstall: validate-npm-package-license@3.0.4
npm info lifecycle normalize-package-data@2.5.0~postinstall: normalize-package-data@2.5.0
npm info lifecycle read-pkg@2.0.0~postinstall: read-pkg@2.0.0
npm info lifecycle read-pkg-up@2.0.0~postinstall: read-pkg-up@2.0.0
npm info lifecycle read-pkg@1.1.0~postinstall: read-pkg@1.1.0
npm info lifecycle read-pkg-up@1.0.1~postinstall: read-pkg-up@1.0.1
npm info lifecycle vary@1.1.2~postinstall: vary@1.1.2
npm info lifecycle verror@1.10.0~postinstall: verror@1.10.0
npm info lifecycle jsprim@1.4.1~postinstall: jsprim@1.4.1
npm info lifecycle http-signature@1.2.0~postinstall: http-signature@1.2.0
npm info lifecycle request@2.88.0~postinstall: request@2.88.0
npm info lifecycle vscode-languageserver-types@3.14.0~postinstall: vscode-languageserver-types@3.14.0
npm info lifecycle vscode-nls@4.1.0~postinstall: vscode-nls@4.1.0
npm info lifecycle vscode-uri@1.0.6~postinstall: vscode-uri@1.0.6
npm info lifecycle vscode-json-languageservice@3.2.1~postinstall: vscode-json-languageservice@3.2.1
npm info lifecycle which@1.3.1~postinstall: which@1.3.1
npm info lifecycle cross-spawn@6.0.5~postinstall: cross-spawn@6.0.5
npm info lifecycle which-module@2.0.0~postinstall: which-module@2.0.0
npm info lifecycle wordwrap@0.0.3~postinstall: wordwrap@0.0.3
npm info lifecycle optimist@0.6.1~postinstall: optimist@0.6.1
npm info lifecycle handlebars@4.1.1~postinstall: handlebars@4.1.1
npm info lifecycle ansi-regex@2.1.1~postinstall: ansi-regex@2.1.1
npm info lifecycle is-fullwidth-code-point@1.0.0~postinstall: is-fullwidth-code-point@1.0.0
npm info lifecycle strip-ansi@3.0.1~postinstall: strip-ansi@3.0.1
npm info lifecycle string-width@1.0.2~postinstall: string-width@1.0.2
npm info lifecycle wrap-ansi@2.1.0~postinstall: wrap-ansi@2.1.0
npm info lifecycle cliui@4.1.0~postinstall: cliui@4.1.0
npm info lifecycle cliui@3.2.0~postinstall: cliui@3.2.0
npm info lifecycle wrappy@1.0.2~postinstall: wrappy@1.0.2
npm info lifecycle once@1.4.0~postinstall: once@1.4.0
npm info lifecycle end-of-stream@1.4.1~postinstall: end-of-stream@1.4.1
npm info lifecycle inflight@1.0.6~postinstall: inflight@1.0.6
npm info lifecycle glob@7.1.3~postinstall: glob@7.1.3
npm info lifecycle rimraf@2.6.3~postinstall: rimraf@2.6.3
npm info lifecycle glob@5.0.15~postinstall: glob@5.0.15
npm info lifecycle glob@7.1.2~postinstall: glob@7.1.2
npm info lifecycle pump@3.0.0~postinstall: pump@3.0.0
npm info lifecycle get-stream@4.1.0~postinstall: get-stream@4.1.0
npm info lifecycle execa@1.0.0~postinstall: execa@1.0.0
npm info lifecycle os-locale@3.1.0~postinstall: os-locale@3.1.0
npm info lifecycle glob@6.0.4~postinstall: glob@6.0.4
npm info lifecycle rimraf@2.4.5~postinstall: rimraf@2.4.5
npm info lifecycle mv@2.1.1~postinstall: mv@2.1.1
npm info lifecycle bunyan@1.8.12~postinstall: bunyan@1.8.12
npm info lifecycle wreck@12.5.1~postinstall: wreck@12.5.1
npm info lifecycle write@0.2.1~postinstall: write@0.2.1
npm info lifecycle flat-cache@1.3.4~postinstall: flat-cache@1.3.4
npm info lifecycle file-entry-cache@2.0.0~postinstall: file-entry-cache@2.0.0
npm info lifecycle xmlcreate@1.0.2~postinstall: xmlcreate@1.0.2
npm info lifecycle js2xmlparser@3.0.0~postinstall: js2xmlparser@3.0.0
npm info lifecycle y18n@4.0.0~postinstall: y18n@4.0.0
npm info lifecycle yallist@2.1.2~postinstall: yallist@2.1.2
npm info lifecycle lru-cache@4.1.5~postinstall: lru-cache@4.1.5
npm info lifecycle cross-spawn@5.1.0~postinstall: cross-spawn@5.1.0
npm info lifecycle cross-spawn@5.1.0~postinstall: cross-spawn@5.1.0
npm info lifecycle execa@0.7.0~postinstall: execa@0.7.0
npm info lifecycle os-locale@2.1.0~postinstall: os-locale@2.1.0
npm info lifecycle yargs@9.0.1~postinstall: yargs@9.0.1
npm info lifecycle yargs-parser@11.1.1~postinstall: yargs-parser@11.1.1
npm info lifecycle yargs@12.0.5~postinstall: yargs@12.0.5
npm info lifecycle ansi-regex@2.1.1~postinstall: ansi-regex@2.1.1
npm info lifecycle camelcase@3.0.0~postinstall: camelcase@3.0.0
npm info lifecycle invert-kv@1.0.0~postinstall: invert-kv@1.0.0
npm info lifecycle is-fullwidth-code-point@1.0.0~postinstall: is-fullwidth-code-point@1.0.0
npm info lifecycle lcid@1.0.0~postinstall: lcid@1.0.0
npm info lifecycle os-locale@1.4.0~postinstall: os-locale@1.4.0
npm info lifecycle strip-ansi@3.0.1~postinstall: strip-ansi@3.0.1
npm info lifecycle string-width@1.0.2~postinstall: string-width@1.0.2
npm info lifecycle cliui@3.2.0~postinstall: cliui@3.2.0
npm info lifecycle which-module@1.0.0~postinstall: which-module@1.0.0
npm info lifecycle y18n@3.2.1~postinstall: y18n@3.2.1
npm info lifecycle yargs-parser@5.0.0~postinstall: yargs-parser@5.0.0
npm info lifecycle alea@0.0.9~postinstall: alea@0.0.9
npm info lifecycle babybird@0.0.1~postinstall: babybird@0.0.1
npm info lifecycle compression@1.7.4~postinstall: compression@1.7.4
npm info lifecycle connect-busboy@0.0.2~postinstall: connect-busboy@0.0.2
npm info lifecycle content-type@1.0.1~postinstall: content-type@1.0.1
npm info lifecycle coveralls@3.0.3~postinstall: coveralls@3.0.3
npm info lifecycle entities@1.1.2~postinstall: entities@1.1.2
npm info lifecycle eslint@4.19.1~postinstall: eslint@4.19.1
npm info lifecycle eslint-config-node-services@2.2.5~postinstall: eslint-config-node-services@2.2.5
npm info lifecycle eslint-config-wikimedia@0.5.0~postinstall: eslint-config-wikimedia@0.5.0
npm info lifecycle eslint-plugin-jsdoc@3.15.1~postinstall: eslint-plugin-jsdoc@3.15.1
npm info lifecycle eslint-plugin-json@1.4.0~postinstall: eslint-plugin-json@1.4.0
npm info lifecycle express@4.16.4~postinstall: express@4.16.4
npm info lifecycle express-handlebars@3.0.2~postinstall: express-handlebars@3.0.2
npm info lifecycle istanbul@0.4.5~postinstall: istanbul@0.4.5
npm info lifecycle js2php@0.1.7~postinstall: js2php@0.1.7
npm info lifecycle jsdoc@3.5.5~postinstall: jsdoc@3.5.5
npm info lifecycle jsdoc-wmf-theme@0.0.2~postinstall: jsdoc-wmf-theme@0.0.2
npm info lifecycle mediawiki-title@0.6.5~postinstall: mediawiki-title@0.6.5
npm info lifecycle mocha@5.2.0~postinstall: mocha@5.2.0
npm info lifecycle nock@9.6.1~postinstall: nock@9.6.1
npm info lifecycle nsp@3.2.1~postinstall: nsp@3.2.1
npm info lifecycle pn@1.1.0~postinstall: pn@1.1.0
npm info lifecycle prfun@2.1.5~postinstall: prfun@2.1.5
npm info lifecycle serve-favicon@2.5.0~postinstall: serve-favicon@2.5.0
npm info lifecycle service-runner@2.6.17~postinstall: service-runner@2.6.17
npm info lifecycle simplediff@0.1.1~postinstall: simplediff@0.1.1
npm info lifecycle supertest@3.4.2~postinstall: supertest@3.4.2
npm info lifecycle wikimedia-langconv@0.0.0~postinstall: wikimedia-langconv@0.0.0
npm info lifecycle wikipeg@2.0.1~postinstall: wikipeg@2.0.1
npm info lifecycle worker-farm@1.6.0~postinstall: worker-farm@1.6.0
npm info lifecycle yargs@7.1.0~postinstall: yargs@7.1.0
npm info linkStuff parsoid@0.10.0
npm info lifecycle parsoid@0.10.0~install: parsoid@0.10.0
npm info lifecycle parsoid@0.10.0~postinstall: parsoid@0.10.0
npm info lifecycle parsoid@0.10.0~prepublish: parsoid@0.10.0
parsoid@0.10.0 /usr/src/app
+-- alea@0.0.9
+-- babybird@0.0.1
| +-- asap@2.0.6
| `-- is-arguments@1.0.4
+-- chai@4.2.0
| +-- assertion-error@1.1.0
| +-- check-error@1.0.2
| +-- deep-eql@3.0.1
| +-- get-func-name@2.0.0
| +-- pathval@1.1.0
| `-- type-detect@4.0.8
+-- colors@1.3.3
+-- compression@1.7.4
| +-- accepts@1.3.5
| +-- bytes@3.0.0
| +-- compressible@2.0.16
| | `-- mime-db@1.38.0
| +-- debug@2.6.9
| | `-- ms@2.0.0
| +-- on-headers@1.0.2
| +-- safe-buffer@5.1.2
| `-- vary@1.1.2
+-- connect-busboy@0.0.2
| `-- busboy@0.3.1
| `-- dicer@0.3.0
| `-- streamsearch@0.1.2
+-- content-type@1.0.1 (git+https://github.com/wikimedia/content-type.git#47b2632d0a2ee79a7d67268e2f6621becd95d05b)
+-- core-js@2.6.5
+-- coveralls@3.0.3
| +-- growl@1.10.5
| +-- lcov-parse@0.0.10
| +-- log-driver@1.2.7
| `-- minimist@1.2.0
+-- domino@2.1.3
+-- entities@1.1.2
+-- eslint@4.19.1
| +-- ajv@5.5.2
| | +-- co@4.6.0
| | +-- fast-deep-equal@1.1.0
| | +-- fast-json-stable-stringify@2.0.0
| | `-- json-schema-traverse@0.3.1
| +-- babel-code-frame@6.26.0
| | +-- chalk@1.1.3
| | | +-- ansi-styles@2.2.1
| | | +-- has-ansi@2.0.0
| | | | `-- ansi-regex@2.1.1
| | | +-- strip-ansi@3.0.1
| | | | `-- ansi-regex@2.1.1
| | | `-- supports-color@2.0.0
| | `-- js-tokens@3.0.2
| +-- chalk@2.4.2
| | +-- ansi-styles@3.2.1
| | | `-- color-convert@1.9.3
| | | `-- color-name@1.1.3
| | `-- supports-color@5.5.0
| +-- concat-stream@1.6.2
| | +-- buffer-from@1.1.1
| | +-- inherits@2.0.3
| | +-- readable-stream@2.3.6
| | | +-- core-util-is@1.0.2
| | | +-- isarray@1.0.0
| | | +-- process-nextick-args@2.0.0
| | | +-- string_decoder@1.1.1
| | | `-- util-deprecate@1.0.2
| | `-- typedarray@0.0.6
| +-- cross-spawn@5.1.0
| | +-- lru-cache@4.1.5
| | | +-- pseudomap@1.0.2
| | | `-- yallist@2.1.2
| | `-- shebang-command@1.2.0
| | `-- shebang-regex@1.0.0
| +-- debug@3.2.6
| | `-- ms@2.1.1
| +-- doctrine@2.1.0
| +-- eslint-scope@3.7.3
| | +-- esrecurse@4.2.1
| | `-- estraverse@4.2.0
| +-- eslint-visitor-keys@1.0.0
| +-- espree@3.5.4
| | +-- acorn@5.7.3
| | `-- acorn-jsx@3.0.1
| | `-- acorn@3.3.0
| +-- esquery@1.0.1
| +-- esutils@2.0.2
| +-- file-entry-cache@2.0.0
| | +-- flat-cache@1.3.4
| | | +-- circular-json@0.3.3
| | | +-- rimraf@2.6.3
| | | `-- write@0.2.1
| | `-- object-assign@4.1.1
| +-- functional-red-black-tree@1.0.1
| +-- glob@7.1.3
| | +-- fs.realpath@1.0.0
| | +-- inflight@1.0.6
| | `-- path-is-absolute@1.0.1
| +-- globals@11.11.0
| +-- ignore@3.3.10
| +-- imurmurhash@0.1.4
| +-- inquirer@3.3.0
| | +-- ansi-escapes@3.2.0
| | +-- cli-cursor@2.1.0
| | | `-- restore-cursor@2.0.0
| | | +-- onetime@2.0.1
| | | | `-- mimic-fn@1.2.0
| | | `-- signal-exit@3.0.2
| | +-- cli-width@2.2.0
| | +-- external-editor@2.2.0
| | | +-- chardet@0.4.2
| | | `-- tmp@0.0.33
| | | `-- os-tmpdir@1.0.2
| | +-- figures@2.0.0
| | +-- lodash@4.17.11
| | +-- mute-stream@0.0.7
| | +-- run-async@2.3.0
| | | `-- is-promise@2.1.0
| | +-- rx-lite@4.0.8
| | +-- rx-lite-aggregates@4.0.8
| | +-- string-width@2.1.1
| | | `-- is-fullwidth-code-point@2.0.0
| | `-- through@2.3.8
| +-- is-resolvable@1.1.0
| +-- json-stable-stringify-without-jsonify@1.0.1
| +-- levn@0.3.0
| | +-- prelude-ls@1.1.2
| | `-- type-check@0.3.2
| +-- lodash@4.17.11
| +-- minimatch@3.0.4
| | `-- brace-expansion@1.1.11
| | +-- balanced-match@1.0.0
| | `-- concat-map@0.0.1
| +-- mkdirp@0.5.1
| | `-- minimist@0.0.8
| +-- natural-compare@1.4.0
| +-- optionator@0.8.2
| | +-- deep-is@0.1.3
| | +-- fast-levenshtein@2.0.6
| | `-- wordwrap@1.0.0
| +-- path-is-inside@1.0.2
| +-- pluralize@7.0.0
| +-- progress@2.0.3
| +-- regexpp@1.1.0
| +-- require-uncached@1.0.3
| | +-- caller-path@0.1.0
| | | `-- callsites@0.2.0
| | `-- resolve-from@1.0.1
| +-- strip-ansi@4.0.0
| | `-- ansi-regex@3.0.0
| +-- strip-json-comments@2.0.1
| +-- table@4.0.2
| | +-- UNMET PEER DEPENDENCY ajv@5.5.2
| | | +-- fast-deep-equal@1.1.0
| | | `-- json-schema-traverse@0.3.1
| | +-- ajv-keywords@2.1.1
| | +-- lodash@4.17.11
| | `-- slice-ansi@1.0.0
| `-- text-table@0.2.0
+-- eslint-config-node-services@2.2.5
+-- eslint-config-wikimedia@0.5.0
+-- eslint-plugin-jsdoc@3.15.1
| +-- comment-parser@0.5.4
| +-- jsdoctypeparser@2.0.0-alpha-8
| `-- lodash@4.17.11
+-- eslint-plugin-json@1.4.0
| `-- vscode-json-languageservice@3.2.1
| +-- jsonc-parser@2.1.0
| +-- vscode-languageserver-types@3.14.0
| +-- vscode-nls@4.1.0
| `-- vscode-uri@1.0.6
+-- express@4.16.4
| +-- array-flatten@1.1.1
| +-- body-parser@1.18.3
| | +-- content-type@1.0.4
| | +-- http-errors@1.6.3
| | +-- iconv-lite@0.4.23
| | | `-- safer-buffer@2.1.2
| | `-- raw-body@2.3.3
| +-- content-disposition@0.5.2
| +-- content-type@1.0.4
| +-- cookie@0.3.1
| +-- cookie-signature@1.0.6
| +-- depd@1.1.2
| +-- encodeurl@1.0.2
| +-- escape-html@1.0.3
| +-- etag@1.8.1
| +-- fresh@0.5.2
| +-- merge-descriptors@1.0.1
| +-- methods@1.1.2
| +-- on-finished@2.3.0
| | `-- ee-first@1.1.1
| +-- parseurl@1.3.2
| +-- path-to-regexp@0.1.7
| +-- proxy-addr@2.0.4
| | +-- forwarded@0.1.2
| | `-- ipaddr.js@1.8.0
| +-- qs@6.5.2
| +-- range-parser@1.2.0
| +-- send@0.16.2
| | +-- destroy@1.0.4
| | `-- mime@1.4.1
| +-- serve-static@1.13.2
| +-- setprototypeof@1.1.0
| +-- statuses@1.4.0
| +-- type-is@1.6.16
| | `-- media-typer@0.3.0
| `-- utils-merge@1.0.1
+-- express-handlebars@3.0.2
| +-- graceful-fs@4.1.15
| +-- handlebars@4.1.1
| | +-- neo-async@2.6.0
| | +-- optimist@0.6.1
| | | +-- minimist@0.0.10
| | | `-- wordwrap@0.0.3
| | +-- source-map@0.6.1
| | `-- uglify-js@3.5.3
| | `-- commander@2.19.0
| +-- object.assign@4.1.0
| | +-- define-properties@1.1.3
| | +-- function-bind@1.1.1
| | +-- has-symbols@1.0.0
| | `-- object-keys@1.1.1
| `-- promise@8.0.3
+-- finalhandler@1.1.1
| `-- unpipe@1.0.0
+-- istanbul@0.4.5
| +-- abbrev@1.0.9
| +-- async@1.5.2
| +-- escodegen@1.8.1
| | +-- esprima@2.7.3
| | +-- estraverse@1.9.3
| | `-- source-map@0.2.0
| | `-- amdefine@1.0.1
| +-- esprima@2.7.3
| +-- glob@5.0.15
| +-- nopt@3.0.6
| +-- once@1.4.0
| | `-- wrappy@1.0.2
| +-- resolve@1.1.7
| +-- supports-color@3.2.3
| | `-- has-flag@1.0.0
| +-- which@1.3.1
| | `-- isexe@2.0.0
| `-- wordwrap@1.0.0
+-- js-yaml@3.13.1
| +-- argparse@1.0.10
| | `-- sprintf-js@1.0.3
| `-- esprima@4.0.1
+-- js2php@0.1.7 (git+https://github.com/cscott/js2php.git#34e5e0a06f67385e1a9a4935c62af79ee1f7d46e)
| `-- espree@2.2.5
+-- jsdoc@3.5.5
| +-- babylon@7.0.0-beta.19
| +-- bluebird@3.5.4
| +-- catharsis@0.8.9
| | `-- underscore-contrib@0.3.0
| | `-- underscore@1.6.0
| +-- escape-string-regexp@1.0.5
| +-- js2xmlparser@3.0.0
| | `-- xmlcreate@1.0.2
| +-- klaw@2.0.0
| +-- marked@0.3.19
| +-- requizzle@0.2.1
| | `-- underscore@1.6.0
| +-- taffydb@2.6.2
| `-- underscore@1.8.3
+-- jsdoc-wmf-theme@0.0.2
+-- mediawiki-title@0.6.5
+-- mocha@5.2.0
| +-- browser-stdout@1.3.1
| +-- commander@2.15.1
| +-- debug@3.1.0
| +-- diff@3.5.0
| +-- glob@7.1.2
| +-- he@1.1.1
| `-- supports-color@5.4.0
| `-- has-flag@3.0.0
+-- negotiator@0.6.1 (git+https://github.com/arlolra/negotiator.git#0418ab4e9a665772b7e233564a4525c9d9a8ec3a)
+-- nock@9.6.1
| +-- debug@3.2.6
| | `-- ms@2.1.1
| +-- deep-equal@1.0.1
| +-- json-stringify-safe@5.0.1
| +-- lodash@4.17.11
| `-- propagate@1.0.0
+-- nsp@3.2.1
| +-- cli-table2@0.2.0
| | +-- lodash@3.10.1
| | `-- string-width@1.0.2
| | +-- is-fullwidth-code-point@1.0.0
| | `-- strip-ansi@3.0.1
| | `-- ansi-regex@2.1.1
| +-- cvss@1.0.5
| +-- https-proxy-agent@2.2.1
| | +-- agent-base@4.2.1
| | | `-- es6-promisify@5.0.0
| | | `-- es6-promise@4.2.6
| | `-- debug@3.2.6
| | `-- ms@2.1.1
| +-- nodesecurity-npm-utils@6.0.0
| +-- wreck@12.5.1
| | +-- boom@5.2.0
| | `-- hoek@4.2.1
| `-- yargs@9.0.1
| +-- camelcase@4.1.0
| +-- cliui@3.2.0
| | +-- string-width@1.0.2
| | | `-- is-fullwidth-code-point@1.0.0
| | `-- strip-ansi@3.0.1
| | `-- ansi-regex@2.1.1
| +-- os-locale@2.1.0
| | +-- execa@0.7.0
| | | +-- cross-spawn@5.1.0
| | | +-- get-stream@3.0.0
| | | +-- is-stream@1.1.0
| | | +-- npm-run-path@2.0.2
| | | | `-- path-key@2.0.1
| | | +-- p-finally@1.0.0
| | | `-- strip-eof@1.0.0
| | +-- lcid@1.0.0
| | | `-- invert-kv@1.0.0
| | `-- mem@1.1.0
| | `-- mimic-fn@1.2.0
| +-- read-pkg-up@2.0.0
| | +-- find-up@2.1.0
| | | `-- locate-path@2.0.0
| | | `-- p-locate@2.0.0
| | | `-- p-limit@1.3.0
| | | `-- p-try@1.0.0
| | `-- read-pkg@2.0.0
| | +-- load-json-file@2.0.0
| | | `-- strip-bom@3.0.0
| | `-- path-type@2.0.0
| +-- which-module@2.0.0
| +-- y18n@3.2.1
| `-- yargs-parser@7.0.0
+-- pn@1.1.0
+-- prfun@2.1.5
+-- request@2.88.0
| +-- aws-sign2@0.7.0
| +-- aws4@1.8.0
| +-- caseless@0.12.0
| +-- combined-stream@1.0.7
| | `-- delayed-stream@1.0.0
| +-- extend@3.0.2
| +-- forever-agent@0.6.1
| +-- form-data@2.3.3
| | `-- asynckit@0.4.0
| +-- har-validator@5.1.3
| | +-- ajv@6.10.0
| | | +-- fast-deep-equal@2.0.1
| | | +-- json-schema-traverse@0.4.1
| | | `-- uri-js@4.2.2
| | | `-- punycode@2.1.1
| | `-- har-schema@2.0.0
| +-- http-signature@1.2.0
| | +-- assert-plus@1.0.0
| | +-- jsprim@1.4.1
| | | +-- extsprintf@1.3.0
| | | +-- json-schema@0.2.3
| | | `-- verror@1.10.0
| | `-- sshpk@1.16.1
| | +-- asn1@0.2.4
| | +-- bcrypt-pbkdf@1.0.2
| | +-- dashdash@1.14.1
| | +-- ecc-jsbn@0.1.2
| | +-- getpass@0.1.7
| | +-- jsbn@0.1.1
| | `-- tweetnacl@0.14.5
| +-- is-typedarray@1.0.0
| +-- isstream@0.1.2
| +-- mime-types@2.1.22
| +-- oauth-sign@0.9.0
| +-- performance-now@2.1.0
| +-- tough-cookie@2.4.3
| | +-- psl@1.1.31
| | `-- punycode@1.4.1
| `-- tunnel-agent@0.6.0
+-- semver@5.7.0
+-- serve-favicon@2.5.0
| +-- ms@2.1.1
| `-- safe-buffer@5.1.1
+-- service-runner@2.6.17
| +-- bunyan@1.8.12
| | +-- dtrace-provider@0.8.7
| | +-- moment@2.24.0
| | +-- mv@2.1.1
| | | +-- ncp@2.0.0
| | | `-- rimraf@2.4.5
| | | `-- glob@6.0.4
| | `-- safe-json-stringify@1.2.0
| +-- bunyan-syslog-udp@0.2.0
| +-- dnscache@1.0.1
| | `-- lodash.clone@4.3.2
| | `-- lodash._baseclone@4.5.7
| +-- gc-stats@1.2.1
| | +-- nan@2.13.2
| | `-- node-pre-gyp@0.11.0
| | +-- detect-libc@1.0.3
| | +-- mkdirp@0.5.1
| | | `-- minimist@0.0.8
| | +-- needle@2.2.4
| | | +-- debug@2.6.9
| | | | `-- ms@2.0.0
| | | +-- iconv-lite@0.4.24
| | | | `-- safer-buffer@2.1.2
| | | `-- sax@1.2.4
| | +-- nopt@4.0.1
| | | +-- abbrev@1.1.1
| | | `-- osenv@0.1.5
| | | +-- os-homedir@1.0.2
| | | `-- os-tmpdir@1.0.2
| | +-- npm-packlist@1.1.12
| | | +-- ignore-walk@3.0.1
| | | | `-- minimatch@3.0.4
| | | | `-- brace-expansion@1.1.11
| | | | +-- balanced-match@1.0.0
| | | | `-- concat-map@0.0.1
| | | `-- npm-bundled@1.0.5
| | +-- npmlog@4.1.2
| | | +-- are-we-there-yet@1.1.5
| | | | +-- delegates@1.0.0
| | | | `-- readable-stream@2.3.6
| | | | +-- core-util-is@1.0.2
| | | | +-- isarray@1.0.0
| | | | +-- process-nextick-args@2.0.0
| | | | +-- string_decoder@1.1.1
| | | | `-- util-deprecate@1.0.2
| | | +-- console-control-strings@1.1.0
| | | +-- gauge@2.7.4
| | | | +-- aproba@1.2.0
| | | | +-- has-unicode@2.0.1
| | | | +-- object-assign@4.1.1
| | | | +-- signal-exit@3.0.2
| | | | +-- string-width@1.0.2
| | | | | +-- code-point-at@1.1.0
| | | | | `-- is-fullwidth-code-point@1.0.0
| | | | | `-- number-is-nan@1.0.1
| | | | +-- strip-ansi@3.0.1
| | | | | `-- ansi-regex@2.1.1
| | | | `-- wide-align@1.1.3
| | | `-- set-blocking@2.0.0
| | +-- rc@1.2.8
| | | +-- deep-extend@0.6.0
| | | +-- ini@1.3.5
| | | +-- minimist@1.2.0
| | | `-- strip-json-comments@2.0.1
| | +-- rimraf@2.6.2
| | | `-- glob@7.1.2
| | | +-- fs.realpath@1.0.0
| | | +-- inflight@1.0.6
| | | | `-- wrappy@1.0.2
| | | +-- inherits@2.0.3
| | | +-- once@1.4.0
| | | `-- path-is-absolute@1.0.1
| | +-- semver@5.5.0
| | `-- tar@4.4.6
| | +-- chownr@1.1.1
| | +-- fs-minipass@1.2.5
| | +-- minipass@2.3.5
| | +-- minizlib@1.1.1
| | +-- safe-buffer@5.1.2
| | `-- yallist@3.0.2
| +-- gelf-stream@1.1.1
| | `-- gelfling@0.3.1
| +-- heapdump@0.3.12
| +-- hot-shots@5.9.2
| +-- limitation@0.2.1
| | `-- kad@1.3.6 (git+https://github.com/wikimedia/kad.git#c2f76b1a55011db84778a408a89d4ddcfe4fe5bb)
| | +-- async@0.9.2
| | +-- clarinet@0.11.0
| | +-- hat@0.0.3
| | +-- kad-fs@0.0.4
| | +-- kad-localstorage@0.0.7
| | | `-- dom-storage@2.1.0
| | +-- kad-memstore@0.0.1
| | +-- merge@1.2.1
| | +-- ms@0.7.3
| | `-- msgpack5@3.6.0
| | `-- bl@1.2.2
| `-- yargs@12.0.5
| +-- cliui@4.1.0
| +-- find-up@3.0.0
| | `-- locate-path@3.0.0
| | +-- p-locate@3.0.0
| | | `-- p-limit@2.2.0
| | | `-- p-try@2.2.0
| | `-- path-exists@3.0.0
| +-- os-locale@3.1.0
| | +-- execa@1.0.0
| | | +-- cross-spawn@6.0.5
| | | | `-- nice-try@1.0.5
| | | `-- get-stream@4.1.0
| | | `-- pump@3.0.0
| | | `-- end-of-stream@1.4.1
| | +-- lcid@2.0.0
| | | `-- invert-kv@2.0.0
| | `-- mem@4.3.0
| | +-- map-age-cleaner@0.1.3
| | | `-- p-defer@1.0.0
| | +-- mimic-fn@2.1.0
| | `-- p-is-promise@2.1.0
| +-- y18n@4.0.0
| `-- yargs-parser@11.1.1
| `-- camelcase@5.3.1
+-- simplediff@0.1.1
+-- supertest@3.4.2
| `-- superagent@3.8.3
| +-- component-emitter@1.2.1
| +-- cookiejar@2.1.2
| +-- debug@3.2.6
| | `-- ms@2.1.1
| `-- formidable@1.2.1
+-- uuid@3.3.2
+-- wikimedia-langconv@0.0.0 (git+https://github.com/wikimedia/mediawiki-libs-LangConv.git#19084f38081a84a0018af46ec8b139cd4e66070c)
+-- wikipeg@2.0.1
+-- worker-farm@1.6.0 (git+https://github.com/arlolra/node-worker-farm.git#8e7b2b40bdcff0d106372cf95acdf52557b741a0)
| `-- errno@0.1.7
| `-- prr@1.0.1
`-- yargs@7.1.0
+-- camelcase@3.0.0
+-- cliui@3.2.0
| +-- strip-ansi@3.0.1
| | `-- ansi-regex@2.1.1
| `-- wrap-ansi@2.1.0
| +-- string-width@1.0.2
| | `-- is-fullwidth-code-point@1.0.0
| `-- strip-ansi@3.0.1
| `-- ansi-regex@2.1.1
+-- decamelize@1.2.0
+-- get-caller-file@1.0.3
+-- os-locale@1.4.0
| `-- lcid@1.0.0
| `-- invert-kv@1.0.0
+-- read-pkg-up@1.0.1
| +-- find-up@1.1.2
| | +-- path-exists@2.1.0
| | `-- pinkie-promise@2.0.1
| | `-- pinkie@2.0.4
| `-- read-pkg@1.1.0
| +-- load-json-file@1.1.0
| | +-- parse-json@2.2.0
| | | `-- error-ex@1.3.2
| | | `-- is-arrayish@0.2.1
| | +-- pify@2.3.0
| | `-- strip-bom@2.0.0
| | `-- is-utf8@0.2.1
| +-- normalize-package-data@2.5.0
| | +-- hosted-git-info@2.7.1
| | +-- resolve@1.10.0
| | | `-- path-parse@1.0.6
| | `-- validate-npm-package-license@3.0.4
| | +-- spdx-correct@3.1.0
| | | `-- spdx-license-ids@3.0.4
| | `-- spdx-expression-parse@3.0.0
| | `-- spdx-exceptions@2.2.0
| `-- path-type@1.1.0
+-- require-directory@2.1.1
+-- require-main-filename@1.0.1
+-- set-blocking@2.0.0
+-- string-width@1.0.2
| +-- code-point-at@1.1.0
| `-- is-fullwidth-code-point@1.0.0
| `-- number-is-nan@1.0.1
+-- which-module@1.0.0
+-- y18n@3.2.1
`-- yargs-parser@5.0.0
npm WARN ajv-keywords@2.1.1 requires a peer of ajv@^5.0.0 but none was installed.
npm info ok
Removing intermediate container 591ed0e2b3fc
---> d8fd6c627df4
Step 5/7 : COPY . .
---> 174a0e245e08
Step 6/7 : EXPOSE 8142
---> Running in 2e7a7ee709ca
Removing intermediate container 2e7a7ee709ca
---> ffce426a21a8
Step 7/7 : EXPOSE 5858
---> Running in 400f119ea78b
Removing intermediate container 400f119ea78b
---> caf14b93c862
Successfully built caf14b93c862
Successfully tagged parsoid:latest
~/Documents/gerrit/mediawiki/core/services/parsoid$ cd ../restbase/
~/Documents/gerrit/mediawiki/core/services/restbase$ cat Dockerfile
FROM node:6.11.0
# Create app directory
WORKDIR /usr/src/app
# Install app dependencies
# A wildcard is used to ensure both package.json AND package-lock.json are copied
# where available (npm@5+)
COPY package*.json ./
# If you are building your code for production
# RUN npm install --only=production
RUN npm install
# Bundle app source
COPY . .
EXPOSE 7231
EXPOSE 5858
~/Documents/gerrit/mediawiki/core/services/restbase$ docker build -t restbase .
Sending build context to Docker daemon 1.563MB
Step 1/7 : FROM node:6.11.0
---> 867601d9565a
Step 2/7 : WORKDIR /usr/src/app
---> Using cache
---> 64e4ea14cfa1
Step 3/7 : COPY package*.json ./
---> 71b93c3f775b
Step 4/7 : RUN npm install
---> Running in f393aa0022e7
npm info it worked if it ends with ok
npm info using npm@3.10.10
npm info using node@v6.11.0
npm info attempt registry request try #1 at 12:41:26 PM
npm http request GET https://registry.npmjs.org/bluebird
npm info attempt registry request try #1 at 12:41:26 PM
npm http request GET https://registry.npmjs.org/cassandra-uuid
npm info attempt registry request try #1 at 12:41:26 PM
npm http request GET https://registry.npmjs.org/entities
npm info attempt registry request try #1 at 12:41:26 PM
npm http request GET https://registry.npmjs.org/fast-json-stable-stringify
npm info attempt registry request try #1 at 12:41:26 PM
npm http request GET https://registry.npmjs.org/hyperswitch
npm info attempt registry request try #1 at 12:41:26 PM
npm http request GET https://registry.npmjs.org/jsonwebtoken
npm info attempt registry request try #1 at 12:41:26 PM
npm http request GET https://registry.npmjs.org/mediawiki-title
npm info attempt registry request try #1 at 12:41:26 PM
npm http request GET https://registry.npmjs.org/restbase-mod-table-cassandra
npm info attempt registry request try #1 at 12:41:26 PM
npm http request GET https://registry.npmjs.org/semver
npm info attempt registry request try #1 at 12:41:26 PM
npm http request GET https://registry.npmjs.org/service-runner
npm info git [ 'clone',
npm info git '--template=/root/.npm/_git-remotes/_templates',
npm info git '--mirror',
npm info git 'https://github.com/wikimedia/content-type.git',
npm info git '/root/.npm/_git-remotes/git-https-github-com-wikimedia-content-type-git-master-0dff22de' ]
npm http 200 https://registry.npmjs.org/entities
npm http 200 https://registry.npmjs.org/fast-json-stable-stringify
npm http 200 https://registry.npmjs.org/mediawiki-title
npm http 200 https://registry.npmjs.org/semver
npm info retry fetch attempt 1 at 12:41:26 PM
npm info attempt registry request try #1 at 12:41:26 PM
npm http fetch GET https://registry.npmjs.org/entities/-/entities-1.1.2.tgz
npm http 200 https://registry.npmjs.org/jsonwebtoken
npm http 200 https://registry.npmjs.org/service-runner
npm info addNameTag [ 'semver', 'latest' ]
npm info retry fetch attempt 1 at 12:41:26 PM
npm info attempt registry request try #1 at 12:41:26 PM
npm http fetch GET https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/entities/-/entities-1.1.2.tgz
npm info retry fetch attempt 1 at 12:41:26 PM
npm info attempt registry request try #1 at 12:41:26 PM
npm http fetch GET https://registry.npmjs.org/mediawiki-title/-/mediawiki-title-0.6.5.tgz
npm info retry fetch attempt 1 at 12:41:26 PM
npm info attempt registry request try #1 at 12:41:26 PM
npm http fetch GET https://registry.npmjs.org/semver/-/semver-6.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz
npm http 200 https://registry.npmjs.org/bluebird
npm info retry fetch attempt 1 at 12:41:26 PM
npm info attempt registry request try #1 at 12:41:26 PM
npm http fetch GET https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-8.5.1.tgz
npm http fetch 200 https://registry.npmjs.org/mediawiki-title/-/mediawiki-title-0.6.5.tgz
npm info retry fetch attempt 1 at 12:41:26 PM
npm info attempt registry request try #1 at 12:41:26 PM
npm http fetch GET https://registry.npmjs.org/service-runner/-/service-runner-2.6.17.tgz
npm http fetch 200 https://registry.npmjs.org/semver/-/semver-6.0.0.tgz
npm info retry fetch attempt 1 at 12:41:26 PM
npm info attempt registry request try #1 at 12:41:26 PM
npm http fetch GET https://registry.npmjs.org/bluebird/-/bluebird-3.5.4.tgz
npm http fetch 200 https://registry.npmjs.org/service-runner/-/service-runner-2.6.17.tgz
npm http fetch 200 https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-8.5.1.tgz
npm http fetch 200 https://registry.npmjs.org/bluebird/-/bluebird-3.5.4.tgz
npm http 200 https://registry.npmjs.org/cassandra-uuid
npm info retry fetch attempt 1 at 12:41:27 PM
npm info attempt registry request try #1 at 12:41:27 PM
npm http fetch GET https://registry.npmjs.org/cassandra-uuid/-/cassandra-uuid-0.1.0.tgz
npm info git [ 'rev-list', '-n1', 'master' ]
npm info git [ 'clone',
npm info git '/root/.npm/_git-remotes/git-https-github-com-wikimedia-content-type-git-master-0dff22de',
npm info git '/tmp/npm-6-bdf5def1/git-cache-524ff0bb/47b2632d0a2ee79a7d67268e2f6621becd95d05b' ]
npm info git [ 'checkout', '47b2632d0a2ee79a7d67268e2f6621becd95d05b' ]
npm info git [ 'submodule', '-q', 'update', '--init', '--recursive' ]
npm http 200 https://registry.npmjs.org/hyperswitch
npm info retry fetch attempt 1 at 12:41:27 PM
npm info attempt registry request try #1 at 12:41:27 PM
npm http fetch GET https://registry.npmjs.org/hyperswitch/-/hyperswitch-0.11.1.tgz
npm http 200 https://registry.npmjs.org/restbase-mod-table-cassandra
npm info retry fetch attempt 1 at 12:41:27 PM
npm info attempt registry request try #1 at 12:41:27 PM
npm http fetch GET https://registry.npmjs.org/restbase-mod-table-cassandra/-/restbase-mod-table-cassandra-1.1.3.tgz
npm http fetch 200 https://registry.npmjs.org/restbase-mod-table-cassandra/-/restbase-mod-table-cassandra-1.1.3.tgz
npm http fetch 200 https://registry.npmjs.org/cassandra-uuid/-/cassandra-uuid-0.1.0.tgz
npm http fetch 200 https://registry.npmjs.org/hyperswitch/-/hyperswitch-0.11.1.tgz
npm info attempt registry request try #1 at 12:41:29 PM
npm http request GET https://registry.npmjs.org/long
npm http 200 https://registry.npmjs.org/long
npm info retry fetch attempt 1 at 12:41:29 PM
npm info attempt registry request try #1 at 12:41:29 PM
npm http fetch GET https://registry.npmjs.org/long/-/long-4.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/long/-/long-4.0.0.tgz
npm info attempt registry request try #1 at 12:41:29 PM
npm http request GET https://registry.npmjs.org/ajv
npm info attempt registry request try #1 at 12:41:29 PM
npm http request GET https://registry.npmjs.org/busboy
npm info attempt registry request try #1 at 12:41:29 PM
npm http request GET https://registry.npmjs.org/js-yaml
npm info attempt registry request try #1 at 12:41:29 PM
npm http request GET https://registry.npmjs.org/preq
npm info attempt registry request try #1 at 12:41:29 PM
npm http request GET https://registry.npmjs.org/regexp-utils
npm info attempt registry request try #1 at 12:41:29 PM
npm http request GET https://registry.npmjs.org/swagger-router
npm info attempt registry request try #1 at 12:41:29 PM
npm http request GET https://registry.npmjs.org/swagger-ui-dist
npm http 200 https://registry.npmjs.org/busboy
npm http 200 https://registry.npmjs.org/swagger-ui-dist
npm http 200 https://registry.npmjs.org/js-yaml
npm info retry fetch attempt 1 at 12:41:29 PM
npm info attempt registry request try #1 at 12:41:29 PM
npm http fetch GET https://registry.npmjs.org/busboy/-/busboy-0.2.14.tgz
npm info retry fetch attempt 1 at 12:41:29 PM
npm info attempt registry request try #1 at 12:41:29 PM
npm http fetch GET https://registry.npmjs.org/swagger-ui-dist/-/swagger-ui-dist-3.22.0.tgz
npm info retry fetch attempt 1 at 12:41:29 PM
npm info attempt registry request try #1 at 12:41:29 PM
npm http fetch GET https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz
npm http 200 https://registry.npmjs.org/ajv
npm http fetch 200 https://registry.npmjs.org/busboy/-/busboy-0.2.14.tgz
npm http fetch 200 https://registry.npmjs.org/swagger-ui-dist/-/swagger-ui-dist-3.22.0.tgz
npm http fetch 200 https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz
npm info retry fetch attempt 1 at 12:41:29 PM
npm info attempt registry request try #1 at 12:41:29 PM
npm http fetch GET https://registry.npmjs.org/ajv/-/ajv-6.10.0.tgz
npm http fetch 200 https://registry.npmjs.org/ajv/-/ajv-6.10.0.tgz
npm http 200 https://registry.npmjs.org/regexp-utils
npm info retry fetch attempt 1 at 12:41:30 PM
npm info attempt registry request try #1 at 12:41:30 PM
npm http fetch GET https://registry.npmjs.org/regexp-utils/-/regexp-utils-0.3.2.tgz
npm http 200 https://registry.npmjs.org/swagger-router
npm info retry fetch attempt 1 at 12:41:30 PM
npm info attempt registry request try #1 at 12:41:30 PM
npm http fetch GET https://registry.npmjs.org/swagger-router/-/swagger-router-0.7.2.tgz
npm http 200 https://registry.npmjs.org/preq
npm info retry fetch attempt 1 at 12:41:30 PM
npm info attempt registry request try #1 at 12:41:30 PM
npm http fetch GET https://registry.npmjs.org/preq/-/preq-0.5.7.tgz
npm http fetch 200 https://registry.npmjs.org/regexp-utils/-/regexp-utils-0.3.2.tgz
npm http fetch 200 https://registry.npmjs.org/swagger-router/-/swagger-router-0.7.2.tgz
npm http fetch 200 https://registry.npmjs.org/preq/-/preq-0.5.7.tgz
npm info attempt registry request try #1 at 12:41:31 PM
npm http request GET https://registry.npmjs.org/fast-deep-equal
npm info attempt registry request try #1 at 12:41:31 PM
npm http request GET https://registry.npmjs.org/json-schema-traverse
npm info attempt registry request try #1 at 12:41:31 PM
npm http request GET https://registry.npmjs.org/uri-js
npm http 200 https://registry.npmjs.org/fast-deep-equal
npm http 200 https://registry.npmjs.org/uri-js
npm info retry fetch attempt 1 at 12:41:31 PM
npm info attempt registry request try #1 at 12:41:31 PM
npm http fetch GET https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz
npm info retry fetch attempt 1 at 12:41:31 PM
npm info attempt registry request try #1 at 12:41:31 PM
npm http fetch GET https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz
npm http 200 https://registry.npmjs.org/json-schema-traverse
npm info retry fetch attempt 1 at 12:41:31 PM
npm info attempt registry request try #1 at 12:41:31 PM
npm http fetch GET https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz
npm http fetch 200 https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz
npm http fetch 200 https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz
npm http fetch 200 https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz
npm info attempt registry request try #1 at 12:41:31 PM
npm http request GET https://registry.npmjs.org/punycode
npm http 200 https://registry.npmjs.org/punycode
npm info retry fetch attempt 1 at 12:41:31 PM
npm info attempt registry request try #1 at 12:41:31 PM
npm http fetch GET https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz
npm http fetch 200 https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz
npm info attempt registry request try #1 at 12:41:31 PM
npm http request GET https://registry.npmjs.org/dicer
npm info attempt registry request try #1 at 12:41:31 PM
npm http request GET https://registry.npmjs.org/readable-stream
npm http 200 https://registry.npmjs.org/dicer
npm http 200 https://registry.npmjs.org/readable-stream
npm info retry fetch attempt 1 at 12:41:31 PM
npm info attempt registry request try #1 at 12:41:31 PM
npm http fetch GET https://registry.npmjs.org/dicer/-/dicer-0.2.5.tgz
npm info retry fetch attempt 1 at 12:41:31 PM
npm info attempt registry request try #1 at 12:41:31 PM
npm http fetch GET https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz
npm http fetch 200 https://registry.npmjs.org/dicer/-/dicer-0.2.5.tgz
npm http fetch 200 https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz
npm info attempt registry request try #1 at 12:41:32 PM
npm http request GET https://registry.npmjs.org/streamsearch
npm http 200 https://registry.npmjs.org/streamsearch
npm info retry fetch attempt 1 at 12:41:32 PM
npm info attempt registry request try #1 at 12:41:32 PM
npm http fetch GET https://registry.npmjs.org/streamsearch/-/streamsearch-0.1.2.tgz
npm http fetch 200 https://registry.npmjs.org/streamsearch/-/streamsearch-0.1.2.tgz
npm info attempt registry request try #1 at 12:41:32 PM
npm http request GET https://registry.npmjs.org/core-util-is
npm info attempt registry request try #1 at 12:41:32 PM
npm http request GET https://registry.npmjs.org/isarray
npm info attempt registry request try #1 at 12:41:32 PM
npm http request GET https://registry.npmjs.org/string_decoder
npm info attempt registry request try #1 at 12:41:32 PM
npm http request GET https://registry.npmjs.org/inherits
npm http 200 https://registry.npmjs.org/isarray
npm http 200 https://registry.npmjs.org/core-util-is
npm http 200 https://registry.npmjs.org/string_decoder
npm http 200 https://registry.npmjs.org/inherits
npm info retry fetch attempt 1 at 12:41:32 PM
npm info attempt registry request try #1 at 12:41:32 PM
npm http fetch GET https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz
npm info retry fetch attempt 1 at 12:41:32 PM
npm info attempt registry request try #1 at 12:41:32 PM
npm http fetch GET https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz
npm info retry fetch attempt 1 at 12:41:32 PM
npm info attempt registry request try #1 at 12:41:32 PM
npm http fetch GET https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz
npm info retry fetch attempt 1 at 12:41:32 PM
npm info attempt registry request try #1 at 12:41:32 PM
npm http fetch GET https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz
npm http fetch 200 https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz
npm http fetch 200 https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz
npm http fetch 200 https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz
npm http fetch 200 https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz
npm info attempt registry request try #1 at 12:41:32 PM
npm http request GET https://registry.npmjs.org/argparse
npm info attempt registry request try #1 at 12:41:32 PM
npm http request GET https://registry.npmjs.org/esprima
npm http 200 https://registry.npmjs.org/esprima
npm http 200 https://registry.npmjs.org/argparse
npm info retry fetch attempt 1 at 12:41:32 PM
npm info attempt registry request try #1 at 12:41:32 PM
npm http fetch GET https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz
npm info retry fetch attempt 1 at 12:41:32 PM
npm info attempt registry request try #1 at 12:41:32 PM
npm http fetch GET https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz
npm http fetch 200 https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz
npm http fetch 200 https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz
npm info attempt registry request try #1 at 12:41:32 PM
npm http request GET https://registry.npmjs.org/sprintf-js
npm http 200 https://registry.npmjs.org/sprintf-js
npm info retry fetch attempt 1 at 12:41:32 PM
npm info attempt registry request try #1 at 12:41:32 PM
npm http fetch GET https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz
npm http fetch 200 https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz
npm info attempt registry request try #1 at 12:41:32 PM
npm http request GET https://registry.npmjs.org/request
npm info attempt registry request try #1 at 12:41:32 PM
npm http request GET https://registry.npmjs.org/requestretry
npm http 200 https://registry.npmjs.org/requestretry
npm info retry fetch attempt 1 at 12:41:32 PM
npm info attempt registry request try #1 at 12:41:32 PM
npm http fetch GET https://registry.npmjs.org/requestretry/-/requestretry-3.1.0.tgz
npm http 200 https://registry.npmjs.org/request
npm info retry fetch attempt 1 at 12:41:33 PM
npm info attempt registry request try #1 at 12:41:33 PM
npm http fetch GET https://registry.npmjs.org/request/-/request-2.88.0.tgz
npm http fetch 200 https://registry.npmjs.org/requestretry/-/requestretry-3.1.0.tgz
npm http fetch 200 https://registry.npmjs.org/request/-/request-2.88.0.tgz
npm info attempt registry request try #1 at 12:41:33 PM
npm http request GET https://registry.npmjs.org/aws-sign2
npm info attempt registry request try #1 at 12:41:33 PM
npm http request GET https://registry.npmjs.org/aws4
npm info attempt registry request try #1 at 12:41:33 PM
npm http request GET https://registry.npmjs.org/caseless
npm info attempt registry request try #1 at 12:41:33 PM
npm http request GET https://registry.npmjs.org/combined-stream
npm info attempt registry request try #1 at 12:41:33 PM
npm http request GET https://registry.npmjs.org/extend
npm info attempt registry request try #1 at 12:41:33 PM
npm http request GET https://registry.npmjs.org/forever-agent
npm info attempt registry request try #1 at 12:41:33 PM
npm http request GET https://registry.npmjs.org/form-data
npm info attempt registry request try #1 at 12:41:33 PM
npm http request GET https://registry.npmjs.org/har-validator
npm info attempt registry request try #1 at 12:41:33 PM
npm http request GET https://registry.npmjs.org/http-signature
npm info attempt registry request try #1 at 12:41:33 PM
npm http request GET https://registry.npmjs.org/is-typedarray
npm info attempt registry request try #1 at 12:41:33 PM
npm http request GET https://registry.npmjs.org/isstream
npm info attempt registry request try #1 at 12:41:33 PM
npm http request GET https://registry.npmjs.org/json-stringify-safe
npm info attempt registry request try #1 at 12:41:33 PM
npm http request GET https://registry.npmjs.org/mime-types
npm info attempt registry request try #1 at 12:41:33 PM
npm http request GET https://registry.npmjs.org/oauth-sign
npm info attempt registry request try #1 at 12:41:33 PM
npm http request GET https://registry.npmjs.org/performance-now
npm info attempt registry request try #1 at 12:41:33 PM
npm http request GET https://registry.npmjs.org/qs
npm info attempt registry request try #1 at 12:41:33 PM
npm http request GET https://registry.npmjs.org/safe-buffer
npm info attempt registry request try #1 at 12:41:33 PM
npm http request GET https://registry.npmjs.org/tough-cookie
npm info attempt registry request try #1 at 12:41:33 PM
npm http request GET https://registry.npmjs.org/tunnel-agent
npm info attempt registry request try #1 at 12:41:33 PM
npm http request GET https://registry.npmjs.org/uuid
npm http 200 https://registry.npmjs.org/aws-sign2
npm http 200 https://registry.npmjs.org/caseless
npm http 200 https://registry.npmjs.org/extend
npm http 200 https://registry.npmjs.org/forever-agent
npm http 200 https://registry.npmjs.org/aws4
npm http 200 https://registry.npmjs.org/http-signature
npm http 200 https://registry.npmjs.org/form-data
npm http 200 https://registry.npmjs.org/combined-stream
npm info retry fetch attempt 1 at 12:41:33 PM
npm info attempt registry request try #1 at 12:41:33 PM
npm http fetch GET https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz
npm info retry fetch attempt 1 at 12:41:33 PM
npm info attempt registry request try #1 at 12:41:33 PM
npm http fetch GET https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz
npm info retry fetch attempt 1 at 12:41:33 PM
npm info attempt registry request try #1 at 12:41:33 PM
npm http fetch GET https://registry.npmjs.org/extend/-/extend-3.0.2.tgz
npm info retry fetch attempt 1 at 12:41:33 PM
npm info attempt registry request try #1 at 12:41:33 PM
npm http fetch GET https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz
npm http fetch 200 https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz
npm info retry fetch attempt 1 at 12:41:33 PM
npm info attempt registry request try #1 at 12:41:33 PM
npm http fetch GET https://registry.npmjs.org/aws4/-/aws4-1.8.0.tgz
npm info retry fetch attempt 1 at 12:41:33 PM
npm info attempt registry request try #1 at 12:41:33 PM
npm http fetch GET https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz
npm info retry fetch attempt 1 at 12:41:33 PM
npm info attempt registry request try #1 at 12:41:33 PM
npm http fetch GET https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz
npm http 200 https://registry.npmjs.org/tunnel-agent
npm info retry fetch attempt 1 at 12:41:33 PM
npm info attempt registry request try #1 at 12:41:33 PM
npm http fetch GET https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.7.tgz
npm http 200 https://registry.npmjs.org/safe-buffer
npm http 200 https://registry.npmjs.org/oauth-sign
npm http 200 https://registry.npmjs.org/json-stringify-safe
npm http 200 https://registry.npmjs.org/performance-now
npm http 200 https://registry.npmjs.org/uuid
npm http fetch 200 https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz
npm http fetch 200 https://registry.npmjs.org/extend/-/extend-3.0.2.tgz
npm http fetch 200 https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz
npm http 200 https://registry.npmjs.org/mime-types
npm http 200 https://registry.npmjs.org/qs
npm http 200 https://registry.npmjs.org/tough-cookie
npm http fetch 200 https://registry.npmjs.org/aws4/-/aws4-1.8.0.tgz
npm http fetch 200 https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz
npm http fetch 200 https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz
npm http fetch 200 https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.7.tgz
npm info retry fetch attempt 1 at 12:41:33 PM
npm info attempt registry request try #1 at 12:41:33 PM
npm http fetch GET https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz
npm info retry fetch attempt 1 at 12:41:33 PM
npm info attempt registry request try #1 at 12:41:33 PM
npm http fetch GET https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz
npm info retry fetch attempt 1 at 12:41:33 PM
npm info attempt registry request try #1 at 12:41:33 PM
npm http fetch GET https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz
npm info retry fetch attempt 1 at 12:41:33 PM
npm info attempt registry request try #1 at 12:41:33 PM
npm http fetch GET https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz
npm info retry fetch attempt 1 at 12:41:33 PM
npm info attempt registry request try #1 at 12:41:33 PM
npm http fetch GET https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz
npm info retry fetch attempt 1 at 12:41:33 PM
npm info attempt registry request try #1 at 12:41:33 PM
npm http fetch GET https://registry.npmjs.org/uuid/-/uuid-3.3.2.tgz
npm info retry fetch attempt 1 at 12:41:33 PM
npm info attempt registry request try #1 at 12:41:33 PM
npm http fetch GET https://registry.npmjs.org/mime-types/-/mime-types-2.1.22.tgz
npm http fetch 200 https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz
npm info retry fetch attempt 1 at 12:41:33 PM
npm info attempt registry request try #1 at 12:41:33 PM
npm http fetch GET https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.4.3.tgz
npm info retry fetch attempt 1 at 12:41:33 PM
npm info attempt registry request try #1 at 12:41:33 PM
npm http fetch GET https://registry.npmjs.org/qs/-/qs-6.5.2.tgz
npm http fetch 200 https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz
npm http fetch 200 https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz
npm http fetch 200 https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz
npm http fetch 200 https://registry.npmjs.org/uuid/-/uuid-3.3.2.tgz
npm http fetch 200 https://registry.npmjs.org/mime-types/-/mime-types-2.1.22.tgz
npm http fetch 200 https://registry.npmjs.org/qs/-/qs-6.5.2.tgz
npm http fetch 200 https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.4.3.tgz
npm http fetch 200 https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz
npm http 200 https://registry.npmjs.org/is-typedarray
npm http 200 https://registry.npmjs.org/har-validator
npm info retry fetch attempt 1 at 12:41:34 PM
npm info attempt registry request try #1 at 12:41:34 PM
npm http fetch GET https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz
npm info retry fetch attempt 1 at 12:41:34 PM
npm info attempt registry request try #1 at 12:41:34 PM
npm http fetch GET https://registry.npmjs.org/har-validator/-/har-validator-5.1.3.tgz
npm http fetch 200 https://registry.npmjs.org/har-validator/-/har-validator-5.1.3.tgz
npm http fetch 200 https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz
npm http 200 https://registry.npmjs.org/isstream
npm info retry fetch attempt 1 at 12:41:34 PM
npm info attempt registry request try #1 at 12:41:34 PM
npm http fetch GET https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz
npm http fetch 200 https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz
npm info attempt registry request try #1 at 12:41:34 PM
npm http request GET https://registry.npmjs.org/delayed-stream
npm http 200 https://registry.npmjs.org/delayed-stream
npm info retry fetch attempt 1 at 12:41:34 PM
npm info attempt registry request try #1 at 12:41:34 PM
npm http fetch GET https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz
npm info attempt registry request try #1 at 12:41:34 PM
npm http request GET https://registry.npmjs.org/asynckit
npm http 200 https://registry.npmjs.org/asynckit
npm info retry fetch attempt 1 at 12:41:34 PM
npm info attempt registry request try #1 at 12:41:34 PM
npm http fetch GET https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz
npm http fetch 200 https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz
npm info attempt registry request try #1 at 12:41:34 PM
npm http request GET https://registry.npmjs.org/mime-db
npm http 200 https://registry.npmjs.org/mime-db
npm info retry fetch attempt 1 at 12:41:34 PM
npm info attempt registry request try #1 at 12:41:34 PM
npm http fetch GET https://registry.npmjs.org/mime-db/-/mime-db-1.38.0.tgz
npm http fetch 200 https://registry.npmjs.org/mime-db/-/mime-db-1.38.0.tgz
npm info attempt registry request try #1 at 12:41:34 PM
npm http request GET https://registry.npmjs.org/har-schema
npm http 200 https://registry.npmjs.org/har-schema
npm info retry fetch attempt 1 at 12:41:34 PM
npm info attempt registry request try #1 at 12:41:34 PM
npm http fetch GET https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz
npm info attempt registry request try #1 at 12:41:34 PM
npm http request GET https://registry.npmjs.org/assert-plus
npm info attempt registry request try #1 at 12:41:34 PM
npm http request GET https://registry.npmjs.org/jsprim
npm info attempt registry request try #1 at 12:41:34 PM
npm http request GET https://registry.npmjs.org/sshpk
npm http 200 https://registry.npmjs.org/assert-plus
npm http 200 https://registry.npmjs.org/jsprim
npm info retry fetch attempt 1 at 12:41:34 PM
npm info attempt registry request try #1 at 12:41:34 PM
npm http fetch GET https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz
npm info retry fetch attempt 1 at 12:41:34 PM
npm info attempt registry request try #1 at 12:41:34 PM
npm http fetch GET https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz
npm http fetch 200 https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz
npm http 200 https://registry.npmjs.org/sshpk
npm info retry fetch attempt 1 at 12:41:35 PM
npm info attempt registry request try #1 at 12:41:35 PM
npm http fetch GET https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz
npm http fetch 200 https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz
npm info attempt registry request try #1 at 12:41:35 PM
npm http request GET https://registry.npmjs.org/extsprintf
npm info attempt registry request try #1 at 12:41:35 PM
npm http request GET https://registry.npmjs.org/json-schema
npm info attempt registry request try #1 at 12:41:35 PM
npm http request GET https://registry.npmjs.org/verror
npm http 200 https://registry.npmjs.org/json-schema
npm http 200 https://registry.npmjs.org/verror
npm info retry fetch attempt 1 at 12:41:35 PM
npm info attempt registry request try #1 at 12:41:35 PM
npm http fetch GET https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz
npm info retry fetch attempt 1 at 12:41:35 PM
npm info attempt registry request try #1 at 12:41:35 PM
npm http fetch GET https://registry.npmjs.org/verror/-/verror-1.10.0.tgz
npm http 200 https://registry.npmjs.org/extsprintf
npm info retry fetch attempt 1 at 12:41:35 PM
npm info attempt registry request try #1 at 12:41:35 PM
npm http fetch GET https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz
npm http fetch 200 https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz
npm http fetch 200 https://registry.npmjs.org/verror/-/verror-1.10.0.tgz
npm http fetch 200 https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz
npm info attempt registry request try #1 at 12:41:35 PM
npm http request GET https://registry.npmjs.org/asn1
npm info attempt registry request try #1 at 12:41:35 PM
npm http request GET https://registry.npmjs.org/dashdash
npm info attempt registry request try #1 at 12:41:35 PM
npm http request GET https://registry.npmjs.org/getpass
npm info attempt registry request try #1 at 12:41:35 PM
npm http request GET https://registry.npmjs.org/safer-buffer
npm info attempt registry request try #1 at 12:41:35 PM
npm http request GET https://registry.npmjs.org/jsbn
npm info attempt registry request try #1 at 12:41:35 PM
npm http request GET https://registry.npmjs.org/tweetnacl
npm info attempt registry request try #1 at 12:41:35 PM
npm http request GET https://registry.npmjs.org/ecc-jsbn
npm info attempt registry request try #1 at 12:41:35 PM
npm http request GET https://registry.npmjs.org/bcrypt-pbkdf
npm http 200 https://registry.npmjs.org/asn1
npm info retry fetch attempt 1 at 12:41:35 PM
npm info attempt registry request try #1 at 12:41:35 PM
npm http fetch GET https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz
npm http 200 https://registry.npmjs.org/dashdash
npm http 200 https://registry.npmjs.org/jsbn
npm http 200 https://registry.npmjs.org/getpass
npm http 200 https://registry.npmjs.org/bcrypt-pbkdf
npm http 200 https://registry.npmjs.org/ecc-jsbn
npm http 200 https://registry.npmjs.org/safer-buffer
npm http 200 https://registry.npmjs.org/tweetnacl
npm info retry fetch attempt 1 at 12:41:35 PM
npm info attempt registry request try #1 at 12:41:35 PM
npm http fetch GET https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz
npm http fetch 200 https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz
npm info retry fetch attempt 1 at 12:41:35 PM
npm info attempt registry request try #1 at 12:41:35 PM
npm http fetch GET https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz
npm info retry fetch attempt 1 at 12:41:35 PM
npm info attempt registry request try #1 at 12:41:35 PM
npm http fetch GET https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz
npm info retry fetch attempt 1 at 12:41:35 PM
npm info attempt registry request try #1 at 12:41:35 PM
npm http fetch GET https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz
npm info retry fetch attempt 1 at 12:41:35 PM
npm info attempt registry request try #1 at 12:41:35 PM
npm http fetch GET https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz
npm info retry fetch attempt 1 at 12:41:35 PM
npm info attempt registry request try #1 at 12:41:35 PM
npm http fetch GET https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz
npm info retry fetch attempt 1 at 12:41:35 PM
npm info attempt registry request try #1 at 12:41:35 PM
npm http fetch GET https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz
npm http fetch 200 https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz
npm http fetch 200 https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz
npm http fetch 200 https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz
npm http fetch 200 https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz
npm http fetch 200 https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz
npm http fetch 200 https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz
npm http fetch 200 https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz
npm info attempt registry request try #1 at 12:41:35 PM
npm http request GET https://registry.npmjs.org/psl
npm info retry fetch attempt 1 at 12:41:35 PM
npm info attempt registry request try #1 at 12:41:35 PM
npm http fetch GET https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz
npm http fetch 200 https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz
npm http 200 https://registry.npmjs.org/psl
npm info retry fetch attempt 1 at 12:41:35 PM
npm info attempt registry request try #1 at 12:41:35 PM
npm http fetch GET https://registry.npmjs.org/psl/-/psl-1.1.31.tgz
npm http fetch 200 https://registry.npmjs.org/psl/-/psl-1.1.31.tgz
npm info attempt registry request try #1 at 12:41:36 PM
npm http request GET https://registry.npmjs.org/lodash
npm info attempt registry request try #1 at 12:41:36 PM
npm http request GET https://registry.npmjs.org/when
npm http 200 https://registry.npmjs.org/when
npm info retry fetch attempt 1 at 12:41:36 PM
npm info attempt registry request try #1 at 12:41:36 PM
npm http fetch GET https://registry.npmjs.org/when/-/when-3.7.8.tgz
npm http 200 https://registry.npmjs.org/lodash
npm info retry fetch attempt 1 at 12:41:36 PM
npm info attempt registry request try #1 at 12:41:36 PM
npm http fetch GET https://registry.npmjs.org/lodash/-/lodash-4.17.11.tgz
npm http fetch 200 https://registry.npmjs.org/when/-/when-3.7.8.tgz
npm http fetch 200 https://registry.npmjs.org/lodash/-/lodash-4.17.11.tgz
npm info attempt registry request try #1 at 12:41:36 PM
npm http request GET https://registry.npmjs.org/tassembly
npm info attempt registry request try #1 at 12:41:36 PM
npm http request GET https://registry.npmjs.org/template-expression-compiler
npm http 200 https://registry.npmjs.org/template-expression-compiler
npm info retry fetch attempt 1 at 12:41:37 PM
npm info attempt registry request try #1 at 12:41:37 PM
npm http fetch GET https://registry.npmjs.org/template-expression-compiler/-/template-expression-compiler-0.1.10.tgz
npm http 200 https://registry.npmjs.org/tassembly
npm info retry fetch attempt 1 at 12:41:37 PM
npm info attempt registry request try #1 at 12:41:37 PM
npm http fetch GET https://registry.npmjs.org/tassembly/-/tassembly-0.2.3.tgz
npm http fetch 200 https://registry.npmjs.org/template-expression-compiler/-/template-expression-compiler-0.1.10.tgz
npm http fetch 200 https://registry.npmjs.org/tassembly/-/tassembly-0.2.3.tgz
npm info attempt registry request try #1 at 12:41:38 PM
npm http request GET https://registry.npmjs.org/jws
npm info attempt registry request try #1 at 12:41:38 PM
npm http request GET https://registry.npmjs.org/lodash.includes
npm info attempt registry request try #1 at 12:41:38 PM
npm http request GET https://registry.npmjs.org/lodash.isboolean
npm info attempt registry request try #1 at 12:41:38 PM
npm http request GET https://registry.npmjs.org/lodash.isinteger
npm info attempt registry request try #1 at 12:41:38 PM
npm http request GET https://registry.npmjs.org/lodash.isnumber
npm info attempt registry request try #1 at 12:41:38 PM
npm http request GET https://registry.npmjs.org/lodash.isplainobject
npm info attempt registry request try #1 at 12:41:38 PM
npm http request GET https://registry.npmjs.org/lodash.isstring
npm info attempt registry request try #1 at 12:41:38 PM
npm http request GET https://registry.npmjs.org/lodash.once
npm info attempt registry request try #1 at 12:41:38 PM
npm http request GET https://registry.npmjs.org/ms
npm info attempt registry request try #1 at 12:41:38 PM
npm http request GET https://registry.npmjs.org/semver
npm http 200 https://registry.npmjs.org/lodash.isinteger
npm http 200 https://registry.npmjs.org/lodash.isstring
npm http 200 https://registry.npmjs.org/jws
npm http 304 https://registry.npmjs.org/semver
npm http 200 https://registry.npmjs.org/lodash.isboolean
npm http 200 https://registry.npmjs.org/lodash.once
npm http 200 https://registry.npmjs.org/ms
npm http 200 https://registry.npmjs.org/lodash.isplainobject
npm http 200 https://registry.npmjs.org/lodash.includes
npm http 200 https://registry.npmjs.org/lodash.isnumber
npm info retry fetch attempt 1 at 12:41:38 PM
npm info attempt registry request try #1 at 12:41:38 PM
npm http fetch GET https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz
npm info retry fetch attempt 1 at 12:41:38 PM
npm info attempt registry request try #1 at 12:41:38 PM
npm http fetch GET https://registry.npmjs.org/lodash.isinteger/-/lodash.isinteger-4.0.4.tgz
npm info retry fetch attempt 1 at 12:41:38 PM
npm info attempt registry request try #1 at 12:41:38 PM
npm http fetch GET https://registry.npmjs.org/semver/-/semver-5.7.0.tgz
npm info retry fetch attempt 1 at 12:41:38 PM
npm info attempt registry request try #1 at 12:41:38 PM
npm http fetch GET https://registry.npmjs.org/jws/-/jws-3.2.2.tgz
npm info retry fetch attempt 1 at 12:41:38 PM
npm info attempt registry request try #1 at 12:41:38 PM
npm http fetch GET https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz
npm info retry fetch attempt 1 at 12:41:38 PM
npm info attempt registry request try #1 at 12:41:38 PM
npm http fetch GET https://registry.npmjs.org/lodash.once/-/lodash.once-4.1.1.tgz
npm info retry fetch attempt 1 at 12:41:38 PM
npm info attempt registry request try #1 at 12:41:38 PM
npm http fetch GET https://registry.npmjs.org/ms/-/ms-2.1.1.tgz
npm info retry fetch attempt 1 at 12:41:38 PM
npm info attempt registry request try #1 at 12:41:38 PM
npm http fetch GET https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz
npm info retry fetch attempt 1 at 12:41:38 PM
npm info attempt registry request try #1 at 12:41:38 PM
npm http fetch GET https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz
npm info retry fetch attempt 1 at 12:41:38 PM
npm info attempt registry request try #1 at 12:41:38 PM
npm http fetch GET https://registry.npmjs.org/lodash.includes/-/lodash.includes-4.3.0.tgz
npm http fetch 200 https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz
npm http fetch 200 https://registry.npmjs.org/semver/-/semver-5.7.0.tgz
npm http fetch 200 https://registry.npmjs.org/lodash.isinteger/-/lodash.isinteger-4.0.4.tgz
npm http fetch 200 https://registry.npmjs.org/jws/-/jws-3.2.2.tgz
npm http fetch 200 https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz
npm http fetch 200 https://registry.npmjs.org/lodash.once/-/lodash.once-4.1.1.tgz
npm http fetch 200 https://registry.npmjs.org/ms/-/ms-2.1.1.tgz
npm http fetch 200 https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz
npm http fetch 200 https://registry.npmjs.org/lodash.includes/-/lodash.includes-4.3.0.tgz
npm http fetch 200 https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz
npm info attempt registry request try #1 at 12:41:38 PM
npm http request GET https://registry.npmjs.org/jwa
npm http 200 https://registry.npmjs.org/jwa
npm info retry fetch attempt 1 at 12:41:38 PM
npm info attempt registry request try #1 at 12:41:38 PM
npm http fetch GET https://registry.npmjs.org/jwa/-/jwa-1.4.1.tgz
npm http fetch 200 https://registry.npmjs.org/jwa/-/jwa-1.4.1.tgz
npm info attempt registry request try #1 at 12:41:39 PM
npm http request GET https://registry.npmjs.org/buffer-equal-constant-time
npm info attempt registry request try #1 at 12:41:39 PM
npm http request GET https://registry.npmjs.org/ecdsa-sig-formatter
npm http 200 https://registry.npmjs.org/buffer-equal-constant-time
npm http 200 https://registry.npmjs.org/ecdsa-sig-formatter
npm info retry fetch attempt 1 at 12:41:39 PM
npm info attempt registry request try #1 at 12:41:39 PM
npm http fetch GET https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz
npm info retry fetch attempt 1 at 12:41:39 PM
npm info attempt registry request try #1 at 12:41:39 PM
npm http fetch GET https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz
npm http fetch 200 https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz
npm http fetch 200 https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz
npm info attempt registry request try #1 at 12:41:39 PM
npm http request GET https://registry.npmjs.org/cassandra-driver
npm info attempt registry request try #1 at 12:41:39 PM
npm http request GET https://registry.npmjs.org/core-js
npm info attempt registry request try #1 at 12:41:39 PM
npm http request GET https://registry.npmjs.org/restbase-mod-table-spec
npm info attempt registry request try #1 at 12:41:39 PM
npm http request GET https://registry.npmjs.org/string-align
npm info attempt registry request try #1 at 12:41:39 PM
npm http request GET https://registry.npmjs.org/yargs
npm http 200 https://registry.npmjs.org/yargs
npm info retry fetch attempt 1 at 12:41:39 PM
npm info attempt registry request try #1 at 12:41:39 PM
npm http fetch GET https://registry.npmjs.org/yargs/-/yargs-12.0.5.tgz
npm http 200 https://registry.npmjs.org/core-js
npm http fetch 200 https://registry.npmjs.org/yargs/-/yargs-12.0.5.tgz
npm info retry fetch attempt 1 at 12:41:39 PM
npm info attempt registry request try #1 at 12:41:39 PM
npm http fetch GET https://registry.npmjs.org/core-js/-/core-js-2.6.5.tgz
npm http fetch 200 https://registry.npmjs.org/core-js/-/core-js-2.6.5.tgz
npm http 200 https://registry.npmjs.org/cassandra-driver
npm info retry fetch attempt 1 at 12:41:40 PM
npm info attempt registry request try #1 at 12:41:40 PM
npm http fetch GET https://registry.npmjs.org/cassandra-driver/-/cassandra-driver-3.5.0.tgz
npm http 200 https://registry.npmjs.org/string-align
npm info retry fetch attempt 1 at 12:41:40 PM
npm info attempt registry request try #1 at 12:41:40 PM
npm http fetch GET https://registry.npmjs.org/string-align/-/string-align-0.2.0.tgz
npm http fetch 200 https://registry.npmjs.org/cassandra-driver/-/cassandra-driver-3.5.0.tgz
npm http fetch 200 https://registry.npmjs.org/string-align/-/string-align-0.2.0.tgz
npm http 200 https://registry.npmjs.org/restbase-mod-table-spec
npm info retry fetch attempt 1 at 12:41:40 PM
npm info attempt registry request try #1 at 12:41:40 PM
npm http fetch GET https://registry.npmjs.org/restbase-mod-table-spec/-/restbase-mod-table-spec-1.1.2.tgz
npm http fetch 200 https://registry.npmjs.org/restbase-mod-table-spec/-/restbase-mod-table-spec-1.1.2.tgz
npm info attempt registry request try #1 at 12:41:40 PM
npm http request GET https://registry.npmjs.org/long
npm http 304 https://registry.npmjs.org/long
npm info retry fetch attempt 1 at 12:41:40 PM
npm info attempt registry request try #1 at 12:41:40 PM
npm http fetch GET https://registry.npmjs.org/long/-/long-2.4.0.tgz
npm http fetch 200 https://registry.npmjs.org/long/-/long-2.4.0.tgz
npm info attempt registry request try #1 at 12:41:40 PM
npm http request GET https://registry.npmjs.org/routeswitch
npm http 200 https://registry.npmjs.org/routeswitch
npm info retry fetch attempt 1 at 12:41:41 PM
npm info attempt registry request try #1 at 12:41:41 PM
npm http fetch GET https://registry.npmjs.org/routeswitch/-/routeswitch-0.6.3.tgz
npm http fetch 200 https://registry.npmjs.org/routeswitch/-/routeswitch-0.6.3.tgz
npm info attempt registry request try #1 at 12:41:42 PM
npm http request GET https://registry.npmjs.org/async
npm info attempt registry request try #1 at 12:41:42 PM
npm http request GET https://registry.npmjs.org/bluebird
npm http 304 https://registry.npmjs.org/bluebird
npm info retry fetch attempt 1 at 12:41:42 PM
npm info attempt registry request try #1 at 12:41:42 PM
npm http fetch GET https://registry.npmjs.org/bluebird/-/bluebird-2.3.11.tgz
npm http 200 https://registry.npmjs.org/async
npm info retry fetch attempt 1 at 12:41:42 PM
npm info attempt registry request try #1 at 12:41:42 PM
npm http fetch GET https://registry.npmjs.org/async/-/async-0.9.2.tgz
npm http fetch 200 https://registry.npmjs.org/bluebird/-/bluebird-2.3.11.tgz
npm http fetch 200 https://registry.npmjs.org/async/-/async-0.9.2.tgz
npm info attempt registry request try #1 at 12:41:43 PM
npm http request GET https://registry.npmjs.org/repeat-string
npm http 200 https://registry.npmjs.org/repeat-string
npm info retry fetch attempt 1 at 12:41:43 PM
npm info attempt registry request try #1 at 12:41:43 PM
npm http fetch GET https://registry.npmjs.org/repeat-string/-/repeat-string-0.2.2.tgz
npm http fetch 200 https://registry.npmjs.org/repeat-string/-/repeat-string-0.2.2.tgz
npm info attempt registry request try #1 at 12:41:43 PM
npm http request GET https://registry.npmjs.org/cliui
npm info attempt registry request try #1 at 12:41:43 PM
npm http request GET https://registry.npmjs.org/decamelize
npm info attempt registry request try #1 at 12:41:43 PM
npm http request GET https://registry.npmjs.org/find-up
npm info attempt registry request try #1 at 12:41:43 PM
npm http request GET https://registry.npmjs.org/get-caller-file
npm info attempt registry request try #1 at 12:41:43 PM
npm http request GET https://registry.npmjs.org/os-locale
npm info attempt registry request try #1 at 12:41:43 PM
npm http request GET https://registry.npmjs.org/require-directory
npm info attempt registry request try #1 at 12:41:43 PM
npm http request GET https://registry.npmjs.org/require-main-filename
npm info attempt registry request try #1 at 12:41:43 PM
npm http request GET https://registry.npmjs.org/set-blocking
npm info attempt registry request try #1 at 12:41:43 PM
npm http request GET https://registry.npmjs.org/string-width
npm info attempt registry request try #1 at 12:41:43 PM
npm http request GET https://registry.npmjs.org/which-module
npm info attempt registry request try #1 at 12:41:43 PM
npm http request GET https://registry.npmjs.org/y18n
npm info attempt registry request try #1 at 12:41:43 PM
npm http request GET https://registry.npmjs.org/yargs-parser
npm http 200 https://registry.npmjs.org/get-caller-file
npm http 200 https://registry.npmjs.org/which-module
npm http 200 https://registry.npmjs.org/y18n
npm http 200 https://registry.npmjs.org/set-blocking
npm http 200 https://registry.npmjs.org/os-locale
npm http 200 https://registry.npmjs.org/decamelize
npm http 200 https://registry.npmjs.org/require-directory
npm http 200 https://registry.npmjs.org/require-main-filename
npm http 200 https://registry.npmjs.org/cliui
npm http 200 https://registry.npmjs.org/find-up
npm http 200 https://registry.npmjs.org/string-width
npm http 200 https://registry.npmjs.org/yargs-parser
npm info retry fetch attempt 1 at 12:41:43 PM
npm info attempt registry request try #1 at 12:41:43 PM
npm http fetch GET https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz
npm info retry fetch attempt 1 at 12:41:43 PM
npm info attempt registry request try #1 at 12:41:43 PM
npm http fetch GET https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz
npm info retry fetch attempt 1 at 12:41:43 PM
npm info attempt registry request try #1 at 12:41:43 PM
npm http fetch GET https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz
npm info retry fetch attempt 1 at 12:41:43 PM
npm info attempt registry request try #1 at 12:41:43 PM
npm http fetch GET https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz
npm info retry fetch attempt 1 at 12:41:43 PM
npm info attempt registry request try #1 at 12:41:43 PM
npm http fetch GET https://registry.npmjs.org/os-locale/-/os-locale-3.1.0.tgz
npm info retry fetch attempt 1 at 12:41:43 PM
npm info attempt registry request try #1 at 12:41:43 PM
npm http fetch GET https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz
npm info retry fetch attempt 1 at 12:41:43 PM
npm info attempt registry request try #1 at 12:41:43 PM
npm http fetch GET https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz
npm info retry fetch attempt 1 at 12:41:43 PM
npm info attempt registry request try #1 at 12:41:43 PM
npm http fetch GET https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz
npm http fetch 200 https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz
npm info retry fetch attempt 1 at 12:41:43 PM
npm info attempt registry request try #1 at 12:41:43 PM
npm http fetch GET https://registry.npmjs.org/cliui/-/cliui-4.1.0.tgz
npm info retry fetch attempt 1 at 12:41:43 PM
npm info attempt registry request try #1 at 12:41:43 PM
npm http fetch GET https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz
npm info retry fetch attempt 1 at 12:41:43 PM
npm info attempt registry request try #1 at 12:41:43 PM
npm http fetch GET https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz
npm http fetch 200 https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz
npm info retry fetch attempt 1 at 12:41:43 PM
npm info attempt registry request try #1 at 12:41:43 PM
npm http fetch GET https://registry.npmjs.org/yargs-parser/-/yargs-parser-11.1.1.tgz
npm http fetch 200 https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz
npm http fetch 200 https://registry.npmjs.org/os-locale/-/os-locale-3.1.0.tgz
npm http fetch 200 https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz
npm http fetch 200 https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz
npm http fetch 200 https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/cliui/-/cliui-4.1.0.tgz
npm http fetch 200 https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz
npm http fetch 200 https://registry.npmjs.org/yargs-parser/-/yargs-parser-11.1.1.tgz
npm info attempt registry request try #1 at 12:41:43 PM
npm http request GET https://registry.npmjs.org/strip-ansi
npm info attempt registry request try #1 at 12:41:43 PM
npm http request GET https://registry.npmjs.org/wrap-ansi
npm http 200 https://registry.npmjs.org/wrap-ansi
npm info retry fetch attempt 1 at 12:41:43 PM
npm info attempt registry request try #1 at 12:41:43 PM
npm http fetch GET https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz
npm http 200 https://registry.npmjs.org/strip-ansi
npm info retry fetch attempt 1 at 12:41:43 PM
npm info attempt registry request try #1 at 12:41:43 PM
npm http fetch GET https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz
npm http fetch 200 https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz
npm info attempt registry request try #1 at 12:41:43 PM
npm http request GET https://registry.npmjs.org/is-fullwidth-code-point
npm http 200 https://registry.npmjs.org/is-fullwidth-code-point
npm info retry fetch attempt 1 at 12:41:43 PM
npm info attempt registry request try #1 at 12:41:43 PM
npm http fetch GET https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz
npm info attempt registry request try #1 at 12:41:44 PM
npm http request GET https://registry.npmjs.org/ansi-regex
npm http 200 https://registry.npmjs.org/ansi-regex
npm info retry fetch attempt 1 at 12:41:44 PM
npm info attempt registry request try #1 at 12:41:44 PM
npm http fetch GET https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz
npm info retry fetch attempt 1 at 12:41:44 PM
npm info attempt registry request try #1 at 12:41:44 PM
npm http fetch GET https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz
npm info retry fetch attempt 1 at 12:41:44 PM
npm info attempt registry request try #1 at 12:41:44 PM
npm http fetch GET https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz
npm http fetch 200 https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz
npm http fetch 200 https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz
npm info attempt registry request try #1 at 12:41:44 PM
npm http request GET https://registry.npmjs.org/code-point-at
npm info retry fetch attempt 1 at 12:41:44 PM
npm info attempt registry request try #1 at 12:41:44 PM
npm http fetch GET https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz
npm http 200 https://registry.npmjs.org/code-point-at
npm info retry fetch attempt 1 at 12:41:44 PM
npm info attempt registry request try #1 at 12:41:44 PM
npm http fetch GET https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz
npm http fetch 200 https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz
npm info attempt registry request try #1 at 12:41:44 PM
npm http request GET https://registry.npmjs.org/number-is-nan
npm http 200 https://registry.npmjs.org/number-is-nan
npm info retry fetch attempt 1 at 12:41:44 PM
npm info attempt registry request try #1 at 12:41:44 PM
npm http fetch GET https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz
npm http fetch 200 https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz
npm info retry fetch attempt 1 at 12:41:44 PM
npm info attempt registry request try #1 at 12:41:44 PM
npm http fetch GET https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz
npm http fetch 200 https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz
npm info attempt registry request try #1 at 12:41:44 PM
npm http request GET https://registry.npmjs.org/locate-path
npm http 200 https://registry.npmjs.org/locate-path
npm info retry fetch attempt 1 at 12:41:44 PM
npm info attempt registry request try #1 at 12:41:44 PM
npm http fetch GET https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz
npm info attempt registry request try #1 at 12:41:44 PM
npm http request GET https://registry.npmjs.org/p-locate
npm info attempt registry request try #1 at 12:41:44 PM
npm http request GET https://registry.npmjs.org/path-exists
npm http 200 https://registry.npmjs.org/p-locate
npm http 200 https://registry.npmjs.org/path-exists
npm info retry fetch attempt 1 at 12:41:44 PM
npm info attempt registry request try #1 at 12:41:44 PM
npm http fetch GET https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz
npm info retry fetch attempt 1 at 12:41:44 PM
npm info attempt registry request try #1 at 12:41:44 PM
npm http fetch GET https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz
npm info attempt registry request try #1 at 12:41:44 PM
npm http request GET https://registry.npmjs.org/p-limit
npm http 200 https://registry.npmjs.org/p-limit
npm info retry fetch attempt 1 at 12:41:45 PM
npm info attempt registry request try #1 at 12:41:45 PM
npm http fetch GET https://registry.npmjs.org/p-limit/-/p-limit-2.2.0.tgz
npm http fetch 200 https://registry.npmjs.org/p-limit/-/p-limit-2.2.0.tgz
npm info attempt registry request try #1 at 12:41:45 PM
npm http request GET https://registry.npmjs.org/p-try
npm http 200 https://registry.npmjs.org/p-try
npm info retry fetch attempt 1 at 12:41:45 PM
npm info attempt registry request try #1 at 12:41:45 PM
npm http fetch GET https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz
npm http fetch 200 https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz
npm info attempt registry request try #1 at 12:41:45 PM
npm http request GET https://registry.npmjs.org/execa
npm info attempt registry request try #1 at 12:41:45 PM
npm http request GET https://registry.npmjs.org/lcid
npm info attempt registry request try #1 at 12:41:45 PM
npm http request GET https://registry.npmjs.org/mem
npm http 200 https://registry.npmjs.org/lcid
npm http 200 https://registry.npmjs.org/mem
npm info retry fetch attempt 1 at 12:41:45 PM
npm info attempt registry request try #1 at 12:41:45 PM
npm http fetch GET https://registry.npmjs.org/lcid/-/lcid-2.0.0.tgz
npm http 200 https://registry.npmjs.org/execa
npm info retry fetch attempt 1 at 12:41:45 PM
npm info attempt registry request try #1 at 12:41:45 PM
npm http fetch GET https://registry.npmjs.org/mem/-/mem-4.3.0.tgz
npm info retry fetch attempt 1 at 12:41:45 PM
npm info attempt registry request try #1 at 12:41:45 PM
npm http fetch GET https://registry.npmjs.org/execa/-/execa-1.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/lcid/-/lcid-2.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/mem/-/mem-4.3.0.tgz
npm http fetch 200 https://registry.npmjs.org/execa/-/execa-1.0.0.tgz
npm info attempt registry request try #1 at 12:41:45 PM
npm http request GET https://registry.npmjs.org/cross-spawn
npm info attempt registry request try #1 at 12:41:45 PM
npm http request GET https://registry.npmjs.org/get-stream
npm info attempt registry request try #1 at 12:41:45 PM
npm http request GET https://registry.npmjs.org/is-stream
npm info attempt registry request try #1 at 12:41:45 PM
npm http request GET https://registry.npmjs.org/npm-run-path
npm info attempt registry request try #1 at 12:41:45 PM
npm http request GET https://registry.npmjs.org/p-finally
npm info attempt registry request try #1 at 12:41:45 PM
npm http request GET https://registry.npmjs.org/signal-exit
npm info attempt registry request try #1 at 12:41:45 PM
npm http request GET https://registry.npmjs.org/strip-eof
npm http 200 https://registry.npmjs.org/is-stream
npm http 200 https://registry.npmjs.org/cross-spawn
npm http 200 https://registry.npmjs.org/npm-run-path
npm http 200 https://registry.npmjs.org/signal-exit
npm http 200 https://registry.npmjs.org/get-stream
npm http 200 https://registry.npmjs.org/p-finally
npm info retry fetch attempt 1 at 12:41:45 PM
npm info attempt registry request try #1 at 12:41:45 PM
npm http fetch GET https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz
npm info retry fetch attempt 1 at 12:41:45 PM
npm info attempt registry request try #1 at 12:41:45 PM
npm http fetch GET https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz
npm info retry fetch attempt 1 at 12:41:45 PM
npm info attempt registry request try #1 at 12:41:45 PM
npm http fetch GET https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz
npm info retry fetch attempt 1 at 12:41:45 PM
npm info attempt registry request try #1 at 12:41:45 PM
npm http fetch GET https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz
npm info retry fetch attempt 1 at 12:41:45 PM
npm info attempt registry request try #1 at 12:41:45 PM
npm http fetch GET https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz
npm info retry fetch attempt 1 at 12:41:45 PM
npm info attempt registry request try #1 at 12:41:45 PM
npm http fetch GET https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz
npm http fetch 200 https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz
npm http fetch 200 https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz
npm http fetch 200 https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz
npm http 200 https://registry.npmjs.org/strip-eof
npm http fetch 200 https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz
npm info retry fetch attempt 1 at 12:41:45 PM
npm info attempt registry request try #1 at 12:41:45 PM
npm http fetch GET https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz
npm info attempt registry request try #1 at 12:41:45 PM
npm http request GET https://registry.npmjs.org/nice-try
npm info attempt registry request try #1 at 12:41:45 PM
npm http request GET https://registry.npmjs.org/path-key
npm info attempt registry request try #1 at 12:41:45 PM
npm http request GET https://registry.npmjs.org/shebang-command
npm info attempt registry request try #1 at 12:41:45 PM
npm http request GET https://registry.npmjs.org/which
npm http 200 https://registry.npmjs.org/path-key
npm http 200 https://registry.npmjs.org/nice-try
npm http 200 https://registry.npmjs.org/which
npm info retry fetch attempt 1 at 12:41:45 PM
npm info attempt registry request try #1 at 12:41:45 PM
npm http fetch GET https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz
npm info retry fetch attempt 1 at 12:41:45 PM
npm info attempt registry request try #1 at 12:41:46 PM
npm http fetch GET https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz
npm info retry fetch attempt 1 at 12:41:46 PM
npm info attempt registry request try #1 at 12:41:46 PM
npm http fetch GET https://registry.npmjs.org/which/-/which-1.3.1.tgz
npm http fetch 200 https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz
npm http fetch 200 https://registry.npmjs.org/which/-/which-1.3.1.tgz
npm http fetch 200 https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz
npm http 200 https://registry.npmjs.org/shebang-command
npm info retry fetch attempt 1 at 12:41:46 PM
npm info attempt registry request try #1 at 12:41:46 PM
npm http fetch GET https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz
npm http fetch 200 https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz
npm info attempt registry request try #1 at 12:41:46 PM
npm http request GET https://registry.npmjs.org/shebang-regex
npm http 200 https://registry.npmjs.org/shebang-regex
npm info retry fetch attempt 1 at 12:41:46 PM
npm info attempt registry request try #1 at 12:41:46 PM
npm http fetch GET https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz
npm info attempt registry request try #1 at 12:41:46 PM
npm http request GET https://registry.npmjs.org/isexe
npm http 200 https://registry.npmjs.org/isexe
npm info retry fetch attempt 1 at 12:41:46 PM
npm info attempt registry request try #1 at 12:41:46 PM
npm http fetch GET https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz
npm info attempt registry request try #1 at 12:41:46 PM
npm http request GET https://registry.npmjs.org/pump
npm http 200 https://registry.npmjs.org/pump
npm info retry fetch attempt 1 at 12:41:46 PM
npm info attempt registry request try #1 at 12:41:46 PM
npm http fetch GET https://registry.npmjs.org/pump/-/pump-3.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/pump/-/pump-3.0.0.tgz
npm info attempt registry request try #1 at 12:41:46 PM
npm http request GET https://registry.npmjs.org/end-of-stream
npm info attempt registry request try #1 at 12:41:46 PM
npm http request GET https://registry.npmjs.org/once
npm http 200 https://registry.npmjs.org/end-of-stream
npm info retry fetch attempt 1 at 12:41:46 PM
npm info attempt registry request try #1 at 12:41:46 PM
npm http fetch GET https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.1.tgz
npm http 200 https://registry.npmjs.org/once
npm info retry fetch attempt 1 at 12:41:46 PM
npm info attempt registry request try #1 at 12:41:46 PM
npm http fetch GET https://registry.npmjs.org/once/-/once-1.4.0.tgz
npm http fetch 200 https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.1.tgz
npm http fetch 200 https://registry.npmjs.org/once/-/once-1.4.0.tgz
npm info attempt registry request try #1 at 12:41:46 PM
npm http request GET https://registry.npmjs.org/wrappy
npm http 200 https://registry.npmjs.org/wrappy
npm info retry fetch attempt 1 at 12:41:46 PM
npm info attempt registry request try #1 at 12:41:46 PM
npm http fetch GET https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz
npm http fetch 200 https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz
npm info attempt registry request try #1 at 12:41:46 PM
npm http request GET https://registry.npmjs.org/invert-kv
npm http 200 https://registry.npmjs.org/invert-kv
npm info retry fetch attempt 1 at 12:41:47 PM
npm info attempt registry request try #1 at 12:41:47 PM
npm http fetch GET https://registry.npmjs.org/invert-kv/-/invert-kv-2.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/invert-kv/-/invert-kv-2.0.0.tgz
npm info attempt registry request try #1 at 12:41:47 PM
npm http request GET https://registry.npmjs.org/map-age-cleaner
npm info attempt registry request try #1 at 12:41:47 PM
npm http request GET https://registry.npmjs.org/mimic-fn
npm info attempt registry request try #1 at 12:41:47 PM
npm http request GET https://registry.npmjs.org/p-is-promise
npm http 200 https://registry.npmjs.org/map-age-cleaner
npm http 200 https://registry.npmjs.org/mimic-fn
npm info retry fetch attempt 1 at 12:41:47 PM
npm info attempt registry request try #1 at 12:41:47 PM
npm http fetch GET https://registry.npmjs.org/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz
npm http 200 https://registry.npmjs.org/p-is-promise
npm info retry fetch attempt 1 at 12:41:47 PM
npm info attempt registry request try #1 at 12:41:47 PM
npm http fetch GET https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz
npm info retry fetch attempt 1 at 12:41:47 PM
npm info attempt registry request try #1 at 12:41:47 PM
npm http fetch GET https://registry.npmjs.org/p-is-promise/-/p-is-promise-2.1.0.tgz
npm http fetch 200 https://registry.npmjs.org/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz
npm http fetch 200 https://registry.npmjs.org/p-is-promise/-/p-is-promise-2.1.0.tgz
npm http fetch 200 https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz
npm info attempt registry request try #1 at 12:41:47 PM
npm http request GET https://registry.npmjs.org/p-defer
npm http 200 https://registry.npmjs.org/p-defer
npm info retry fetch attempt 1 at 12:41:47 PM
npm info attempt registry request try #1 at 12:41:47 PM
npm http fetch GET https://registry.npmjs.org/p-defer/-/p-defer-1.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/p-defer/-/p-defer-1.0.0.tgz
npm info attempt registry request try #1 at 12:41:47 PM
npm http request GET https://registry.npmjs.org/camelcase
npm http 200 https://registry.npmjs.org/camelcase
npm info retry fetch attempt 1 at 12:41:47 PM
npm info attempt registry request try #1 at 12:41:47 PM
npm http fetch GET https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz
npm http fetch 200 https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz
npm info attempt registry request try #1 at 12:41:47 PM
npm http request GET https://registry.npmjs.org/bunyan
npm info attempt registry request try #1 at 12:41:47 PM
npm http request GET https://registry.npmjs.org/bunyan-syslog-udp
npm info attempt registry request try #1 at 12:41:47 PM
npm http request GET https://registry.npmjs.org/gelf-stream
npm info attempt registry request try #1 at 12:41:47 PM
npm http request GET https://registry.npmjs.org/hot-shots
npm info attempt registry request try #1 at 12:41:47 PM
npm http request GET https://registry.npmjs.org/limitation
npm info attempt registry request try #1 at 12:41:47 PM
npm http request GET https://registry.npmjs.org/dnscache
npm info attempt registry request try #1 at 12:41:47 PM
npm http request GET https://registry.npmjs.org/gc-stats
npm info attempt registry request try #1 at 12:41:47 PM
npm http request GET https://registry.npmjs.org/heapdump
npm http 200 https://registry.npmjs.org/dnscache
npm http 200 https://registry.npmjs.org/bunyan-syslog-udp
npm http 200 https://registry.npmjs.org/limitation
npm http 200 https://registry.npmjs.org/gelf-stream
npm http 200 https://registry.npmjs.org/gc-stats
npm info retry fetch attempt 1 at 12:41:47 PM
npm info attempt registry request try #1 at 12:41:47 PM
npm http fetch GET https://registry.npmjs.org/dnscache/-/dnscache-1.0.1.tgz
npm http 200 https://registry.npmjs.org/hot-shots
npm http 200 https://registry.npmjs.org/heapdump
npm info retry fetch attempt 1 at 12:41:47 PM
npm info attempt registry request try #1 at 12:41:47 PM
npm http fetch GET https://registry.npmjs.org/bunyan-syslog-udp/-/bunyan-syslog-udp-0.2.0.tgz
npm info retry fetch attempt 1 at 12:41:47 PM
npm info attempt registry request try #1 at 12:41:47 PM
npm http fetch GET https://registry.npmjs.org/limitation/-/limitation-0.2.1.tgz
npm info retry fetch attempt 1 at 12:41:47 PM
npm info attempt registry request try #1 at 12:41:47 PM
npm http fetch GET https://registry.npmjs.org/gelf-stream/-/gelf-stream-1.1.1.tgz
npm info retry fetch attempt 1 at 12:41:47 PM
npm info attempt registry request try #1 at 12:41:47 PM
npm http fetch GET https://registry.npmjs.org/gc-stats/-/gc-stats-1.2.1.tgz
npm http 200 https://registry.npmjs.org/bunyan
npm info retry fetch attempt 1 at 12:41:47 PM
npm info attempt registry request try #1 at 12:41:47 PM
npm http fetch GET https://registry.npmjs.org/hot-shots/-/hot-shots-5.9.2.tgz
npm http fetch 200 https://registry.npmjs.org/dnscache/-/dnscache-1.0.1.tgz
npm info retry fetch attempt 1 at 12:41:47 PM
npm info attempt registry request try #1 at 12:41:47 PM
npm http fetch GET https://registry.npmjs.org/heapdump/-/heapdump-0.3.12.tgz
npm http fetch 200 https://registry.npmjs.org/limitation/-/limitation-0.2.1.tgz
npm http fetch 200 https://registry.npmjs.org/gc-stats/-/gc-stats-1.2.1.tgz
npm http fetch 200 https://registry.npmjs.org/bunyan-syslog-udp/-/bunyan-syslog-udp-0.2.0.tgz
npm info retry fetch attempt 1 at 12:41:47 PM
npm info attempt registry request try #1 at 12:41:47 PM
npm http fetch GET https://registry.npmjs.org/bunyan/-/bunyan-1.8.12.tgz
npm http fetch 200 https://registry.npmjs.org/gelf-stream/-/gelf-stream-1.1.1.tgz
npm http fetch 200 https://registry.npmjs.org/hot-shots/-/hot-shots-5.9.2.tgz
npm http fetch 200 https://registry.npmjs.org/heapdump/-/heapdump-0.3.12.tgz
npm http fetch 200 https://registry.npmjs.org/bunyan/-/bunyan-1.8.12.tgz
npm info attempt registry request try #1 at 12:41:49 PM
npm http request GET https://registry.npmjs.org/dtrace-provider
npm info attempt registry request try #1 at 12:41:49 PM
npm http request GET https://registry.npmjs.org/mv
npm info attempt registry request try #1 at 12:41:49 PM
npm http request GET https://registry.npmjs.org/safe-json-stringify
npm info attempt registry request try #1 at 12:41:49 PM
npm http request GET https://registry.npmjs.org/moment
npm http 200 https://registry.npmjs.org/safe-json-stringify
npm http 200 https://registry.npmjs.org/mv
npm http 200 https://registry.npmjs.org/dtrace-provider
npm http 200 https://registry.npmjs.org/moment
npm info retry fetch attempt 1 at 12:41:49 PM
npm info attempt registry request try #1 at 12:41:49 PM
npm http fetch GET https://registry.npmjs.org/safe-json-stringify/-/safe-json-stringify-1.2.0.tgz
npm info retry fetch attempt 1 at 12:41:49 PM
npm info attempt registry request try #1 at 12:41:49 PM
npm http fetch GET https://registry.npmjs.org/mv/-/mv-2.1.1.tgz
npm info retry fetch attempt 1 at 12:41:49 PM
npm info attempt registry request try #1 at 12:41:49 PM
npm http fetch GET https://registry.npmjs.org/dtrace-provider/-/dtrace-provider-0.8.7.tgz
npm info retry fetch attempt 1 at 12:41:49 PM
npm info attempt registry request try #1 at 12:41:49 PM
npm http fetch GET https://registry.npmjs.org/moment/-/moment-2.24.0.tgz
npm http fetch 200 https://registry.npmjs.org/safe-json-stringify/-/safe-json-stringify-1.2.0.tgz
npm http fetch 200 https://registry.npmjs.org/dtrace-provider/-/dtrace-provider-0.8.7.tgz
npm http fetch 200 https://registry.npmjs.org/moment/-/moment-2.24.0.tgz
npm http fetch 200 https://registry.npmjs.org/mv/-/mv-2.1.1.tgz
npm info attempt registry request try #1 at 12:41:50 PM
npm http request GET https://registry.npmjs.org/nan
npm http 200 https://registry.npmjs.org/nan
npm info retry fetch attempt 1 at 12:41:50 PM
npm info attempt registry request try #1 at 12:41:50 PM
npm http fetch GET https://registry.npmjs.org/nan/-/nan-2.13.2.tgz
npm http fetch 200 https://registry.npmjs.org/nan/-/nan-2.13.2.tgz
npm info attempt registry request try #1 at 12:41:50 PM
npm http request GET https://registry.npmjs.org/mkdirp
npm info attempt registry request try #1 at 12:41:50 PM
npm http request GET https://registry.npmjs.org/ncp
npm info attempt registry request try #1 at 12:41:50 PM
npm http request GET https://registry.npmjs.org/rimraf
npm http 200 https://registry.npmjs.org/mkdirp
npm info retry fetch attempt 1 at 12:41:50 PM
npm info attempt registry request try #1 at 12:41:50 PM
npm http fetch GET https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz
npm http 200 https://registry.npmjs.org/rimraf
npm info retry fetch attempt 1 at 12:41:50 PM
npm info attempt registry request try #1 at 12:41:50 PM
npm http fetch GET https://registry.npmjs.org/rimraf/-/rimraf-2.4.5.tgz
npm http 200 https://registry.npmjs.org/ncp
npm info retry fetch attempt 1 at 12:41:50 PM
npm info attempt registry request try #1 at 12:41:50 PM
npm http fetch GET https://registry.npmjs.org/ncp/-/ncp-2.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz
npm http fetch 200 https://registry.npmjs.org/rimraf/-/rimraf-2.4.5.tgz
npm http fetch 200 https://registry.npmjs.org/ncp/-/ncp-2.0.0.tgz
npm info attempt registry request try #1 at 12:41:50 PM
npm http request GET https://registry.npmjs.org/minimist
npm http 200 https://registry.npmjs.org/minimist
npm info retry fetch attempt 1 at 12:41:50 PM
npm info attempt registry request try #1 at 12:41:50 PM
npm http fetch GET https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz
npm http fetch 200 https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz
npm info attempt registry request try #1 at 12:41:50 PM
npm http request GET https://registry.npmjs.org/glob
npm http 200 https://registry.npmjs.org/glob
npm info retry fetch attempt 1 at 12:41:50 PM
npm info attempt registry request try #1 at 12:41:50 PM
npm http fetch GET https://registry.npmjs.org/glob/-/glob-6.0.4.tgz
npm http fetch 200 https://registry.npmjs.org/glob/-/glob-6.0.4.tgz
npm info attempt registry request try #1 at 12:41:50 PM
npm http request GET https://registry.npmjs.org/inflight
npm info attempt registry request try #1 at 12:41:50 PM
npm http request GET https://registry.npmjs.org/minimatch
npm info attempt registry request try #1 at 12:41:50 PM
npm http request GET https://registry.npmjs.org/path-is-absolute
npm http 200 https://registry.npmjs.org/inflight
npm info retry fetch attempt 1 at 12:41:51 PM
npm info attempt registry request try #1 at 12:41:51 PM
npm http fetch GET https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz
npm http fetch 200 https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz
npm http 200 https://registry.npmjs.org/path-is-absolute
npm http 200 https://registry.npmjs.org/minimatch
npm info retry fetch attempt 1 at 12:41:51 PM
npm info attempt registry request try #1 at 12:41:51 PM
npm http fetch GET https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz
npm info retry fetch attempt 1 at 12:41:51 PM
npm info attempt registry request try #1 at 12:41:51 PM
npm http fetch GET https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz
npm http fetch 200 https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz
npm http fetch 200 https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz
npm info attempt registry request try #1 at 12:41:51 PM
npm http request GET https://registry.npmjs.org/brace-expansion
npm http 200 https://registry.npmjs.org/brace-expansion
npm info retry fetch attempt 1 at 12:41:51 PM
npm info attempt registry request try #1 at 12:41:51 PM
npm http fetch GET https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz
npm http fetch 200 https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz
npm info attempt registry request try #1 at 12:41:51 PM
npm http request GET https://registry.npmjs.org/balanced-match
npm info attempt registry request try #1 at 12:41:51 PM
npm http request GET https://registry.npmjs.org/concat-map
npm http 200 https://registry.npmjs.org/balanced-match
npm info retry fetch attempt 1 at 12:41:51 PM
npm info attempt registry request try #1 at 12:41:51 PM
npm http fetch GET https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz
npm http 200 https://registry.npmjs.org/concat-map
npm info retry fetch attempt 1 at 12:41:51 PM
npm info attempt registry request try #1 at 12:41:51 PM
npm http fetch GET https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz
npm http fetch 200 https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz
npm info attempt registry request try #1 at 12:41:51 PM
npm http request GET https://registry.npmjs.org/asap
npm info attempt registry request try #1 at 12:41:51 PM
npm http request GET https://registry.npmjs.org/lodash.clone
npm http 200 https://registry.npmjs.org/asap
npm info retry fetch attempt 1 at 12:41:51 PM
npm info attempt registry request try #1 at 12:41:51 PM
npm http fetch GET https://registry.npmjs.org/asap/-/asap-2.0.6.tgz
npm http 200 https://registry.npmjs.org/lodash.clone
npm info retry fetch attempt 1 at 12:41:51 PM
npm info attempt registry request try #1 at 12:41:51 PM
npm http fetch GET https://registry.npmjs.org/lodash.clone/-/lodash.clone-4.3.2.tgz
npm http fetch 200 https://registry.npmjs.org/lodash.clone/-/lodash.clone-4.3.2.tgz
npm http fetch 200 https://registry.npmjs.org/asap/-/asap-2.0.6.tgz
npm info attempt registry request try #1 at 12:41:51 PM
npm http request GET https://registry.npmjs.org/lodash._baseclone
npm http 200 https://registry.npmjs.org/lodash._baseclone
npm info retry fetch attempt 1 at 12:41:51 PM
npm info attempt registry request try #1 at 12:41:51 PM
npm http fetch GET https://registry.npmjs.org/lodash._baseclone/-/lodash._baseclone-4.5.7.tgz
npm http fetch 200 https://registry.npmjs.org/lodash._baseclone/-/lodash._baseclone-4.5.7.tgz
npm info attempt registry request try #1 at 12:41:51 PM
npm http request GET https://registry.npmjs.org/gelfling
npm http 200 https://registry.npmjs.org/gelfling
npm info retry fetch attempt 1 at 12:41:52 PM
npm info attempt registry request try #1 at 12:41:52 PM
npm http fetch GET https://registry.npmjs.org/gelfling/-/gelfling-0.3.1.tgz
npm http fetch 200 https://registry.npmjs.org/gelfling/-/gelfling-0.3.1.tgz
npm info attempt registry request try #1 at 12:41:52 PM
npm http request GET https://registry.npmjs.org/readable-stream
npm info git [ 'clone',
npm info git '--template=/root/.npm/_git-remotes/_templates',
npm info git '--mirror',
npm info git 'https://github.com/wikimedia/kad.git',
npm info git '/root/.npm/_git-remotes/git-https-github-com-wikimedia-kad-git-master-2c5e4e77' ]
npm http 304 https://registry.npmjs.org/readable-stream
npm info retry fetch attempt 1 at 12:41:52 PM
npm info attempt registry request try #1 at 12:41:52 PM
npm http fetch GET https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz
npm http fetch 200 https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz
npm info git [ 'rev-list', '-n1', 'master' ]
npm info git [ 'clone',
npm info git '/root/.npm/_git-remotes/git-https-github-com-wikimedia-kad-git-master-2c5e4e77',
npm info git '/tmp/npm-6-bdf5def1/git-cache-538d7820/c2f76b1a55011db84778a408a89d4ddcfe4fe5bb' ]
npm info git [ 'checkout', 'c2f76b1a55011db84778a408a89d4ddcfe4fe5bb' ]
npm info git [ 'submodule', '-q', 'update', '--init', '--recursive' ]
npm info attempt registry request try #1 at 12:41:54 PM
npm http request GET https://registry.npmjs.org/clarinet
npm info attempt registry request try #1 at 12:41:54 PM
npm http request GET https://registry.npmjs.org/colors
npm info attempt registry request try #1 at 12:41:54 PM
npm http request GET https://registry.npmjs.org/hat
npm info attempt registry request try #1 at 12:41:54 PM
npm http request GET https://registry.npmjs.org/kad-fs
npm info attempt registry request try #1 at 12:41:54 PM
npm http request GET https://registry.npmjs.org/kad-localstorage
npm info attempt registry request try #1 at 12:41:54 PM
npm http request GET https://registry.npmjs.org/kad-memstore
npm info attempt registry request try #1 at 12:41:54 PM
npm http request GET https://registry.npmjs.org/merge
npm info attempt registry request try #1 at 12:41:54 PM
npm http request GET https://registry.npmjs.org/msgpack5
npm info attempt registry request try #1 at 12:41:54 PM
npm http request GET https://registry.npmjs.org/lodash
npm info attempt registry request try #1 at 12:41:54 PM
npm http request GET https://registry.npmjs.org/ms
npm http 200 https://registry.npmjs.org/kad-localstorage
npm http 304 https://registry.npmjs.org/ms
npm http 200 https://registry.npmjs.org/hat
npm http 200 https://registry.npmjs.org/kad-fs
npm http 200 https://registry.npmjs.org/kad-memstore
npm http 200 https://registry.npmjs.org/merge
npm http 200 https://registry.npmjs.org/colors
npm http 304 https://registry.npmjs.org/lodash
npm info retry fetch attempt 1 at 12:41:54 PM
npm info attempt registry request try #1 at 12:41:54 PM
npm http fetch GET https://registry.npmjs.org/kad-localstorage/-/kad-localstorage-0.0.7.tgz
npm info retry fetch attempt 1 at 12:41:54 PM
npm info attempt registry request try #1 at 12:41:54 PM
npm http fetch GET https://registry.npmjs.org/ms/-/ms-0.7.3.tgz
npm http 200 https://registry.npmjs.org/msgpack5
npm WARN deprecated kad-fs@0.0.4: Please upgrade to @kadenceproject/kadence - See https://kadence.github.io
npm WARN deprecated kad-memstore@0.0.1: Please upgrade to @kadenceproject/kadence - See https://kadence.github.io
npm http 200 https://registry.npmjs.org/clarinet
npm info retry fetch attempt 1 at 12:41:54 PM
npm info attempt registry request try #1 at 12:41:54 PM
npm http fetch GET https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz
npm info retry fetch attempt 1 at 12:41:54 PM
npm info attempt registry request try #1 at 12:41:54 PM
npm http fetch GET https://registry.npmjs.org/kad-fs/-/kad-fs-0.0.4.tgz
npm http fetch 200 https://registry.npmjs.org/ms/-/ms-0.7.3.tgz
npm info retry fetch attempt 1 at 12:41:54 PM
npm info attempt registry request try #1 at 12:41:54 PM
npm http fetch GET https://registry.npmjs.org/hat/-/hat-0.0.3.tgz
npm info retry fetch attempt 1 at 12:41:54 PM
npm info attempt registry request try #1 at 12:41:54 PM
npm http fetch GET https://registry.npmjs.org/kad-memstore/-/kad-memstore-0.0.1.tgz
npm info retry fetch attempt 1 at 12:41:54 PM
npm info attempt registry request try #1 at 12:41:54 PM
npm http fetch GET https://registry.npmjs.org/merge/-/merge-1.2.1.tgz
npm info retry fetch attempt 1 at 12:41:54 PM
npm info attempt registry request try #1 at 12:41:54 PM
npm http fetch GET https://registry.npmjs.org/colors/-/colors-1.3.3.tgz
npm http fetch 200 https://registry.npmjs.org/kad-localstorage/-/kad-localstorage-0.0.7.tgz
npm info retry fetch attempt 1 at 12:41:54 PM
npm info attempt registry request try #1 at 12:41:54 PM
npm http fetch GET https://registry.npmjs.org/msgpack5/-/msgpack5-3.6.0.tgz
npm info retry fetch attempt 1 at 12:41:54 PM
npm info attempt registry request try #1 at 12:41:54 PM
npm http fetch GET https://registry.npmjs.org/clarinet/-/clarinet-0.11.0.tgz
npm http fetch 200 https://registry.npmjs.org/kad-fs/-/kad-fs-0.0.4.tgz
npm http fetch 200 https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz
npm http fetch 200 https://registry.npmjs.org/colors/-/colors-1.3.3.tgz
npm http fetch 200 https://registry.npmjs.org/kad-memstore/-/kad-memstore-0.0.1.tgz
npm http fetch 200 https://registry.npmjs.org/hat/-/hat-0.0.3.tgz
npm http fetch 200 https://registry.npmjs.org/merge/-/merge-1.2.1.tgz
npm http fetch 200 https://registry.npmjs.org/msgpack5/-/msgpack5-3.6.0.tgz
npm http fetch 200 https://registry.npmjs.org/clarinet/-/clarinet-0.11.0.tgz
npm info attempt registry request try #1 at 12:41:58 PM
npm http request GET https://registry.npmjs.org/process-nextick-args
npm info attempt registry request try #1 at 12:41:58 PM
npm http request GET https://registry.npmjs.org/util-deprecate
npm info attempt registry request try #1 at 12:41:58 PM
npm http request GET https://registry.npmjs.org/isarray
npm info attempt registry request try #1 at 12:41:58 PM
npm http request GET https://registry.npmjs.org/string_decoder
npm http 200 https://registry.npmjs.org/process-nextick-args
npm http 200 https://registry.npmjs.org/util-deprecate
npm http 304 https://registry.npmjs.org/isarray
npm info retry fetch attempt 1 at 12:41:58 PM
npm info attempt registry request try #1 at 12:41:58 PM
npm http fetch GET https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz
npm info retry fetch attempt 1 at 12:41:58 PM
npm info attempt registry request try #1 at 12:41:58 PM
npm http fetch GET https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz
npm info retry fetch attempt 1 at 12:41:58 PM
npm info attempt registry request try #1 at 12:41:58 PM
npm http fetch GET https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz
npm http 304 https://registry.npmjs.org/string_decoder
npm http fetch 200 https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz
npm info retry fetch attempt 1 at 12:41:58 PM
npm info attempt registry request try #1 at 12:41:58 PM
npm http fetch GET https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz
npm http fetch 200 https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz
npm http fetch 200 https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz
npm info attempt registry request try #1 at 12:41:58 PM
npm http request GET https://registry.npmjs.org/dom-storage
npm http 200 https://registry.npmjs.org/dom-storage
npm info retry fetch attempt 1 at 12:41:59 PM
npm info attempt registry request try #1 at 12:41:59 PM
npm http fetch GET https://registry.npmjs.org/dom-storage/-/dom-storage-2.1.0.tgz
npm http fetch 200 https://registry.npmjs.org/dom-storage/-/dom-storage-2.1.0.tgz
npm info attempt registry request try #1 at 12:41:59 PM
npm http request GET https://registry.npmjs.org/bl
npm http 200 https://registry.npmjs.org/bl
npm info retry fetch attempt 1 at 12:41:59 PM
npm info attempt registry request try #1 at 12:41:59 PM
npm http fetch GET https://registry.npmjs.org/bl/-/bl-1.2.2.tgz
npm http fetch 200 https://registry.npmjs.org/bl/-/bl-1.2.2.tgz
npm info attempt registry request try #1 at 12:41:59 PM
npm http request GET https://registry.npmjs.org/coveralls
npm info attempt registry request try #1 at 12:41:59 PM
npm http request GET https://registry.npmjs.org/eslint-config-wikimedia
npm info attempt registry request try #1 at 12:41:59 PM
npm http request GET https://registry.npmjs.org/eslint-plugin-jsdoc
npm info attempt registry request try #1 at 12:41:59 PM
npm http request GET https://registry.npmjs.org/eslint-plugin-json
npm info attempt registry request try #1 at 12:41:59 PM
npm http request GET https://registry.npmjs.org/eslint
npm info attempt registry request try #1 at 12:41:59 PM
npm http request GET https://registry.npmjs.org/mocha
npm info attempt registry request try #1 at 12:41:59 PM
npm http request GET https://registry.npmjs.org/mocha-lcov-reporter
npm info attempt registry request try #1 at 12:41:59 PM
npm http request GET https://registry.npmjs.org/mocha.parallel
npm info attempt registry request try #1 at 12:41:59 PM
npm http request GET https://registry.npmjs.org/nock
npm info attempt registry request try #1 at 12:41:59 PM
npm http request GET https://registry.npmjs.org/nyc
npm info attempt registry request try #1 at 12:41:59 PM
npm http request GET https://registry.npmjs.org/restbase-mod-table-sqlite
npm http 200 https://registry.npmjs.org/coveralls
npm info retry fetch attempt 1 at 12:41:59 PM
npm info attempt registry request try #1 at 12:41:59 PM
npm http fetch GET https://registry.npmjs.org/coveralls/-/coveralls-3.0.3.tgz
npm http 200 https://registry.npmjs.org/eslint-plugin-json
npm http 200 https://registry.npmjs.org/eslint-config-wikimedia
npm info retry fetch attempt 1 at 12:41:59 PM
npm info attempt registry request try #1 at 12:41:59 PM
npm http fetch GET https://registry.npmjs.org/eslint-plugin-json/-/eslint-plugin-json-1.4.0.tgz
npm http 200 https://registry.npmjs.org/eslint-plugin-jsdoc
npm info retry fetch attempt 1 at 12:41:59 PM
npm info attempt registry request try #1 at 12:41:59 PM
npm http fetch GET https://registry.npmjs.org/eslint-config-wikimedia/-/eslint-config-wikimedia-0.11.0.tgz
npm http fetch 200 https://registry.npmjs.org/coveralls/-/coveralls-3.0.3.tgz
npm info retry fetch attempt 1 at 12:41:59 PM
npm info attempt registry request try #1 at 12:41:59 PM
npm http fetch GET https://registry.npmjs.org/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-4.8.2.tgz
npm http 200 https://registry.npmjs.org/mocha
npm http fetch 200 https://registry.npmjs.org/eslint-plugin-json/-/eslint-plugin-json-1.4.0.tgz
npm info retry fetch attempt 1 at 12:41:59 PM
npm info attempt registry request try #1 at 12:41:59 PM
npm http fetch GET https://registry.npmjs.org/mocha/-/mocha-6.1.1.tgz
npm http 200 https://registry.npmjs.org/nyc
npm http fetch 200 https://registry.npmjs.org/mocha/-/mocha-6.1.1.tgz
npm http 200 https://registry.npmjs.org/eslint
npm info retry fetch attempt 1 at 12:42:00 PM
npm info attempt registry request try #1 at 12:42:00 PM
npm http fetch GET https://registry.npmjs.org/nyc/-/nyc-13.3.0.tgz
npm http 200 https://registry.npmjs.org/nock
npm info retry fetch attempt 1 at 12:42:00 PM
npm info attempt registry request try #1 at 12:42:00 PM
npm http fetch GET https://registry.npmjs.org/eslint/-/eslint-5.16.0.tgz
npm http fetch 200 https://registry.npmjs.org/nyc/-/nyc-13.3.0.tgz
npm info retry fetch attempt 1 at 12:42:00 PM
npm info attempt registry request try #1 at 12:42:00 PM
npm http fetch GET https://registry.npmjs.org/nock/-/nock-10.0.6.tgz
npm http fetch 200 https://registry.npmjs.org/eslint/-/eslint-5.16.0.tgz
npm http 200 https://registry.npmjs.org/mocha-lcov-reporter
npm info retry fetch attempt 1 at 12:42:00 PM
npm info attempt registry request try #1 at 12:42:00 PM
npm http fetch GET https://registry.npmjs.org/mocha-lcov-reporter/-/mocha-lcov-reporter-1.3.0.tgz
npm http fetch 200 https://registry.npmjs.org/nock/-/nock-10.0.6.tgz
npm http fetch 200 https://registry.npmjs.org/mocha-lcov-reporter/-/mocha-lcov-reporter-1.3.0.tgz
npm http fetch 200 https://registry.npmjs.org/eslint-config-wikimedia/-/eslint-config-wikimedia-0.11.0.tgz
npm http 200 https://registry.npmjs.org/restbase-mod-table-sqlite
npm http 200 https://registry.npmjs.org/mocha.parallel
npm info retry fetch attempt 1 at 12:42:00 PM
npm info attempt registry request try #1 at 12:42:00 PM
npm http fetch GET https://registry.npmjs.org/restbase-mod-table-sqlite/-/restbase-mod-table-sqlite-1.1.2.tgz
npm info retry fetch attempt 1 at 12:42:00 PM
npm info attempt registry request try #1 at 12:42:00 PM
npm http fetch GET https://registry.npmjs.org/mocha.parallel/-/mocha.parallel-0.15.6.tgz
npm http fetch 200 https://registry.npmjs.org/mocha.parallel/-/mocha.parallel-0.15.6.tgz
npm http fetch 200 https://registry.npmjs.org/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-4.8.2.tgz
npm http fetch 200 https://registry.npmjs.org/restbase-mod-table-sqlite/-/restbase-mod-table-sqlite-1.1.2.tgz
npm info attempt registry request try #1 at 12:42:07 PM
npm http request GET https://registry.npmjs.org/growl
npm info attempt registry request try #1 at 12:42:07 PM
npm http request GET https://registry.npmjs.org/lcov-parse
npm info attempt registry request try #1 at 12:42:07 PM
npm http request GET https://registry.npmjs.org/log-driver
npm info attempt registry request try #1 at 12:42:07 PM
npm http request GET https://registry.npmjs.org/minimist
npm http 200 https://registry.npmjs.org/log-driver
npm info retry fetch attempt 1 at 12:42:07 PM
npm info attempt registry request try #1 at 12:42:07 PM
npm http fetch GET https://registry.npmjs.org/log-driver/-/log-driver-1.2.7.tgz
npm http 304 https://registry.npmjs.org/minimist
npm http 200 https://registry.npmjs.org/lcov-parse
npm http 200 https://registry.npmjs.org/growl
npm info retry fetch attempt 1 at 12:42:07 PM
npm info attempt registry request try #1 at 12:42:07 PM
npm http fetch GET https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz
npm info retry fetch attempt 1 at 12:42:07 PM
npm info attempt registry request try #1 at 12:42:07 PM
npm http fetch GET https://registry.npmjs.org/lcov-parse/-/lcov-parse-0.0.10.tgz
npm info retry fetch attempt 1 at 12:42:07 PM
npm info attempt registry request try #1 at 12:42:07 PM
npm http fetch GET https://registry.npmjs.org/growl/-/growl-1.10.5.tgz
npm http fetch 200 https://registry.npmjs.org/growl/-/growl-1.10.5.tgz
npm http fetch 200 https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz
npm http fetch 200 https://registry.npmjs.org/lcov-parse/-/lcov-parse-0.0.10.tgz
npm http fetch 200 https://registry.npmjs.org/log-driver/-/log-driver-1.2.7.tgz
npm info attempt registry request try #1 at 12:42:07 PM
npm http request GET https://registry.npmjs.org/@babel%2fcode-frame
npm info attempt registry request try #1 at 12:42:07 PM
npm http request GET https://registry.npmjs.org/chalk
npm info attempt registry request try #1 at 12:42:07 PM
npm http request GET https://registry.npmjs.org/debug
npm info attempt registry request try #1 at 12:42:07 PM
npm http request GET https://registry.npmjs.org/doctrine
npm info attempt registry request try #1 at 12:42:07 PM
npm http request GET https://registry.npmjs.org/eslint-scope
npm info attempt registry request try #1 at 12:42:07 PM
npm http request GET https://registry.npmjs.org/eslint-utils
npm info attempt registry request try #1 at 12:42:07 PM
npm http request GET https://registry.npmjs.org/eslint-visitor-keys
npm info attempt registry request try #1 at 12:42:07 PM
npm http request GET https://registry.npmjs.org/espree
npm info attempt registry request try #1 at 12:42:07 PM
npm http request GET https://registry.npmjs.org/esquery
npm info attempt registry request try #1 at 12:42:07 PM
npm http request GET https://registry.npmjs.org/esutils
npm info attempt registry request try #1 at 12:42:07 PM
npm http request GET https://registry.npmjs.org/file-entry-cache
npm info attempt registry request try #1 at 12:42:07 PM
npm http request GET https://registry.npmjs.org/functional-red-black-tree
npm info attempt registry request try #1 at 12:42:07 PM
npm http request GET https://registry.npmjs.org/globals
npm info attempt registry request try #1 at 12:42:07 PM
npm http request GET https://registry.npmjs.org/ignore
npm info attempt registry request try #1 at 12:42:07 PM
npm http request GET https://registry.npmjs.org/import-fresh
npm info attempt registry request try #1 at 12:42:07 PM
npm http request GET https://registry.npmjs.org/imurmurhash
npm info attempt registry request try #1 at 12:42:07 PM
npm http request GET https://registry.npmjs.org/inquirer
npm info attempt registry request try #1 at 12:42:07 PM
npm http request GET https://registry.npmjs.org/json-stable-stringify-without-jsonify
npm info attempt registry request try #1 at 12:42:07 PM
npm http request GET https://registry.npmjs.org/levn
npm info attempt registry request try #1 at 12:42:07 PM
npm http request GET https://registry.npmjs.org/natural-compare
npm info attempt registry request try #1 at 12:42:07 PM
npm http request GET https://registry.npmjs.org/optionator
npm info attempt registry request try #1 at 12:42:07 PM
npm http request GET https://registry.npmjs.org/path-is-inside
npm info attempt registry request try #1 at 12:42:07 PM
npm http request GET https://registry.npmjs.org/progress
npm info attempt registry request try #1 at 12:42:07 PM
npm http request GET https://registry.npmjs.org/regexpp
npm info attempt registry request try #1 at 12:42:07 PM
npm http request GET https://registry.npmjs.org/strip-json-comments
npm info attempt registry request try #1 at 12:42:07 PM
npm http request GET https://registry.npmjs.org/table
npm info attempt registry request try #1 at 12:42:07 PM
npm http request GET https://registry.npmjs.org/text-table
npm info attempt registry request try #1 at 12:42:07 PM
npm http request GET https://registry.npmjs.org/glob
npm info attempt registry request try #1 at 12:42:07 PM
npm http request GET https://registry.npmjs.org/semver
npm http 200 https://registry.npmjs.org/esquery
npm http 200 https://registry.npmjs.org/doctrine
npm http 200 https://registry.npmjs.org/functional-red-black-tree
npm http 200 https://registry.npmjs.org/eslint-visitor-keys
npm http 200 https://registry.npmjs.org/eslint-utils
npm http 200 https://registry.npmjs.org/levn
npm http 200 https://registry.npmjs.org/eslint-scope
npm http 200 https://registry.npmjs.org/esutils
npm http 200 https://registry.npmjs.org/globals
npm http 200 https://registry.npmjs.org/import-fresh
npm http 200 https://registry.npmjs.org/file-entry-cache
npm http 200 https://registry.npmjs.org/imurmurhash
npm http 200 https://registry.npmjs.org/natural-compare
npm http 200 https://registry.npmjs.org/chalk
npm http 200 https://registry.npmjs.org/inquirer
npm info retry fetch attempt 1 at 12:42:07 PM
npm info attempt registry request try #1 at 12:42:07 PM
npm http fetch GET https://registry.npmjs.org/esquery/-/esquery-1.0.1.tgz
npm info retry fetch attempt 1 at 12:42:07 PM
npm info attempt registry request try #1 at 12:42:07 PM
npm http fetch GET https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz
npm info retry fetch attempt 1 at 12:42:07 PM
npm info attempt registry request try #1 at 12:42:07 PM
npm http fetch GET https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz
npm info retry fetch attempt 1 at 12:42:07 PM
npm info attempt registry request try #1 at 12:42:07 PM
npm http fetch GET https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz
npm info retry fetch attempt 1 at 12:42:07 PM
npm info attempt registry request try #1 at 12:42:07 PM
npm http fetch GET https://registry.npmjs.org/eslint-utils/-/eslint-utils-1.3.1.tgz
npm info retry fetch attempt 1 at 12:42:07 PM
npm info attempt registry request try #1 at 12:42:07 PM
npm http fetch GET https://registry.npmjs.org/levn/-/levn-0.3.0.tgz
npm info retry fetch attempt 1 at 12:42:07 PM
npm info attempt registry request try #1 at 12:42:07 PM
npm http fetch GET https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.3.tgz
npm info retry fetch attempt 1 at 12:42:07 PM
npm info attempt registry request try #1 at 12:42:07 PM
npm http fetch GET https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz
npm info retry fetch attempt 1 at 12:42:07 PM
npm info attempt registry request try #1 at 12:42:07 PM
npm http fetch GET https://registry.npmjs.org/globals/-/globals-11.11.0.tgz
npm http fetch 200 https://registry.npmjs.org/esquery/-/esquery-1.0.1.tgz
npm http 304 https://registry.npmjs.org/glob
npm info retry fetch attempt 1 at 12:42:07 PM
npm info attempt registry request try #1 at 12:42:07 PM
npm http fetch GET https://registry.npmjs.org/import-fresh/-/import-fresh-3.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz
npm http 304 https://registry.npmjs.org/semver
npm info retry fetch attempt 1 at 12:42:07 PM
npm info attempt registry request try #1 at 12:42:07 PM
npm http fetch GET https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-5.0.1.tgz
npm http fetch 200 https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz
npm info retry fetch attempt 1 at 12:42:07 PM
npm info attempt registry request try #1 at 12:42:07 PM
npm http fetch GET https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz
npm info retry fetch attempt 1 at 12:42:07 PM
npm info attempt registry request try #1 at 12:42:07 PM
npm http fetch GET https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz
npm http 200 https://registry.npmjs.org/progress
npm http 200 https://registry.npmjs.org/path-is-inside
npm http fetch 200 https://registry.npmjs.org/eslint-utils/-/eslint-utils-1.3.1.tgz
npm http 200 https://registry.npmjs.org/text-table
npm http 200 https://registry.npmjs.org/strip-json-comments
npm http fetch 200 https://registry.npmjs.org/levn/-/levn-0.3.0.tgz
npm info retry fetch attempt 1 at 12:42:07 PM
npm info attempt registry request try #1 at 12:42:07 PM
npm http fetch GET https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz
npm http 200 https://registry.npmjs.org/optionator
npm info retry fetch attempt 1 at 12:42:07 PM
npm info attempt registry request try #1 at 12:42:07 PM
npm http fetch GET https://registry.npmjs.org/inquirer/-/inquirer-6.2.2.tgz
npm http 200 https://registry.npmjs.org/table
npm http fetch 200 https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.3.tgz
npm http 200 https://registry.npmjs.org/ignore
npm http fetch 200 https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz
npm http 200 https://registry.npmjs.org/espree
npm http fetch 200 https://registry.npmjs.org/globals/-/globals-11.11.0.tgz
npm http fetch 200 https://registry.npmjs.org/import-fresh/-/import-fresh-3.0.0.tgz
npm http 200 https://registry.npmjs.org/debug
npm http fetch 200 https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-5.0.1.tgz
npm http fetch 200 https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz
npm http fetch 200 https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz
npm info retry fetch attempt 1 at 12:42:07 PM
npm info attempt registry request try #1 at 12:42:07 PM
npm http fetch GET https://registry.npmjs.org/glob/-/glob-7.1.3.tgz
npm http fetch 200 https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz
npm info retry fetch attempt 1 at 12:42:07 PM
npm info attempt registry request try #1 at 12:42:07 PM
npm http fetch GET https://registry.npmjs.org/progress/-/progress-2.0.3.tgz
npm info retry fetch attempt 1 at 12:42:07 PM
npm info attempt registry request try #1 at 12:42:07 PM
npm http fetch GET https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz
npm info retry fetch attempt 1 at 12:42:07 PM
npm info attempt registry request try #1 at 12:42:07 PM
npm http fetch GET https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz
npm info retry fetch attempt 1 at 12:42:07 PM
npm info attempt registry request try #1 at 12:42:07 PM
npm http fetch GET https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz
npm http fetch 200 https://registry.npmjs.org/glob/-/glob-7.1.3.tgz
npm info retry fetch attempt 1 at 12:42:07 PM
npm info attempt registry request try #1 at 12:42:07 PM
npm http fetch GET https://registry.npmjs.org/optionator/-/optionator-0.8.2.tgz
npm http 200 https://registry.npmjs.org/json-stable-stringify-without-jsonify
npm info retry fetch attempt 1 at 12:42:07 PM
npm info attempt registry request try #1 at 12:42:07 PM
npm http fetch GET https://registry.npmjs.org/table/-/table-5.2.3.tgz
npm info retry fetch attempt 1 at 12:42:07 PM
npm info attempt registry request try #1 at 12:42:07 PM
npm http fetch GET https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz
npm info retry fetch attempt 1 at 12:42:07 PM
npm info attempt registry request try #1 at 12:42:07 PM
npm http fetch GET https://registry.npmjs.org/espree/-/espree-5.0.1.tgz
npm http fetch 200 https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz
npm info retry fetch attempt 1 at 12:42:07 PM
npm info attempt registry request try #1 at 12:42:07 PM
npm http fetch GET https://registry.npmjs.org/debug/-/debug-4.1.1.tgz
npm http fetch 200 https://registry.npmjs.org/progress/-/progress-2.0.3.tgz
npm http fetch 200 https://registry.npmjs.org/inquirer/-/inquirer-6.2.2.tgz
npm http fetch 200 https://registry.npmjs.org/optionator/-/optionator-0.8.2.tgz
npm http fetch 200 https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz
npm http fetch 200 https://registry.npmjs.org/table/-/table-5.2.3.tgz
npm info retry fetch attempt 1 at 12:42:07 PM
npm info attempt registry request try #1 at 12:42:07 PM
npm http fetch GET https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz
npm http fetch 200 https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz
npm http fetch 200 https://registry.npmjs.org/espree/-/espree-5.0.1.tgz
npm http fetch 200 https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz
npm http fetch 200 https://registry.npmjs.org/debug/-/debug-4.1.1.tgz
npm http fetch 200 https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz
npm http 200 https://registry.npmjs.org/@babel%2fcode-frame
npm info retry fetch attempt 1 at 12:42:08 PM
npm info attempt registry request try #1 at 12:42:08 PM
npm http fetch GET https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.0.0.tgz
npm http 200 https://registry.npmjs.org/regexpp
npm info retry fetch attempt 1 at 12:42:08 PM
npm info attempt registry request try #1 at 12:42:08 PM
npm http fetch GET https://registry.npmjs.org/regexpp/-/regexpp-2.0.1.tgz
npm http fetch 200 https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/regexpp/-/regexpp-2.0.1.tgz
npm info attempt registry request try #1 at 12:42:08 PM
npm http request GET https://registry.npmjs.org/@babel%2fhighlight
npm http 200 https://registry.npmjs.org/@babel%2fhighlight
npm info retry fetch attempt 1 at 12:42:09 PM
npm info attempt registry request try #1 at 12:42:09 PM
npm http fetch GET https://registry.npmjs.org/@babel/highlight/-/highlight-7.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/@babel/highlight/-/highlight-7.0.0.tgz
npm info attempt registry request try #1 at 12:42:09 PM
npm http request GET https://registry.npmjs.org/js-tokens
npm http 200 https://registry.npmjs.org/js-tokens
npm info retry fetch attempt 1 at 12:42:09 PM
npm info attempt registry request try #1 at 12:42:09 PM
npm http fetch GET https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz
npm info attempt registry request try #1 at 12:42:09 PM
npm http request GET https://registry.npmjs.org/ansi-styles
npm info attempt registry request try #1 at 12:42:09 PM
npm http request GET https://registry.npmjs.org/escape-string-regexp
npm info attempt registry request try #1 at 12:42:09 PM
npm http request GET https://registry.npmjs.org/supports-color
npm http 200 https://registry.npmjs.org/ansi-styles
npm http 200 https://registry.npmjs.org/escape-string-regexp
npm info retry fetch attempt 1 at 12:42:09 PM
npm info attempt registry request try #1 at 12:42:09 PM
npm http fetch GET https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz
npm http 200 https://registry.npmjs.org/supports-color
npm info retry fetch attempt 1 at 12:42:09 PM
npm info attempt registry request try #1 at 12:42:09 PM
npm http fetch GET https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz
npm info retry fetch attempt 1 at 12:42:09 PM
npm info attempt registry request try #1 at 12:42:09 PM
npm http fetch GET https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz
npm http fetch 200 https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz
npm http fetch 200 https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz
npm http fetch 200 https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz
npm info attempt registry request try #1 at 12:42:09 PM
npm http request GET https://registry.npmjs.org/color-convert
npm http 200 https://registry.npmjs.org/color-convert
npm info retry fetch attempt 1 at 12:42:10 PM
npm info attempt registry request try #1 at 12:42:10 PM
npm http fetch GET https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz
npm http fetch 200 https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz
npm info attempt registry request try #1 at 12:42:10 PM
npm http request GET https://registry.npmjs.org/color-name
npm http 200 https://registry.npmjs.org/color-name
npm info retry fetch attempt 1 at 12:42:10 PM
npm info attempt registry request try #1 at 12:42:10 PM
npm http fetch GET https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz
npm http fetch 200 https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz
npm info attempt registry request try #1 at 12:42:10 PM
npm http request GET https://registry.npmjs.org/has-flag
npm http 200 https://registry.npmjs.org/has-flag
npm info retry fetch attempt 1 at 12:42:10 PM
npm info attempt registry request try #1 at 12:42:10 PM
npm http fetch GET https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz
npm info attempt registry request try #1 at 12:42:10 PM
npm http request GET https://registry.npmjs.org/esrecurse
npm info attempt registry request try #1 at 12:42:10 PM
npm http request GET https://registry.npmjs.org/estraverse
npm http 200 https://registry.npmjs.org/esrecurse
npm info retry fetch attempt 1 at 12:42:10 PM
npm info attempt registry request try #1 at 12:42:10 PM
npm http fetch GET https://registry.npmjs.org/esrecurse/-/esrecurse-4.2.1.tgz
npm http fetch 200 https://registry.npmjs.org/esrecurse/-/esrecurse-4.2.1.tgz
npm http 200 https://registry.npmjs.org/estraverse
npm info retry fetch attempt 1 at 12:42:10 PM
npm info attempt registry request try #1 at 12:42:10 PM
npm http fetch GET https://registry.npmjs.org/estraverse/-/estraverse-4.2.0.tgz
npm http fetch 200 https://registry.npmjs.org/estraverse/-/estraverse-4.2.0.tgz
npm info attempt registry request try #1 at 12:42:10 PM
npm http request GET https://registry.npmjs.org/acorn
npm info attempt registry request try #1 at 12:42:10 PM
npm http request GET https://registry.npmjs.org/acorn-jsx
npm http 200 https://registry.npmjs.org/acorn-jsx
npm http 200 https://registry.npmjs.org/acorn
npm info retry fetch attempt 1 at 12:42:10 PM
npm info attempt registry request try #1 at 12:42:10 PM
npm http fetch GET https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.0.1.tgz
npm info retry fetch attempt 1 at 12:42:10 PM
npm info attempt registry request try #1 at 12:42:10 PM
npm http fetch GET https://registry.npmjs.org/acorn/-/acorn-6.1.1.tgz
npm http fetch 200 https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.0.1.tgz
npm http fetch 200 https://registry.npmjs.org/acorn/-/acorn-6.1.1.tgz
npm info attempt registry request try #1 at 12:42:10 PM
npm http request GET https://registry.npmjs.org/flat-cache
npm http 200 https://registry.npmjs.org/flat-cache
npm info retry fetch attempt 1 at 12:42:11 PM
npm info attempt registry request try #1 at 12:42:11 PM
npm http fetch GET https://registry.npmjs.org/flat-cache/-/flat-cache-2.0.1.tgz
npm http fetch 200 https://registry.npmjs.org/flat-cache/-/flat-cache-2.0.1.tgz
npm info attempt registry request try #1 at 12:42:11 PM
npm http request GET https://registry.npmjs.org/flatted
npm info attempt registry request try #1 at 12:42:11 PM
npm http request GET https://registry.npmjs.org/write
npm info attempt registry request try #1 at 12:42:11 PM
npm http request GET https://registry.npmjs.org/rimraf
npm http 200 https://registry.npmjs.org/write
npm http 200 https://registry.npmjs.org/flatted
npm info retry fetch attempt 1 at 12:42:11 PM
npm info attempt registry request try #1 at 12:42:11 PM
npm http fetch GET https://registry.npmjs.org/write/-/write-1.0.3.tgz
npm info retry fetch attempt 1 at 12:42:11 PM
npm info attempt registry request try #1 at 12:42:11 PM
npm http fetch GET https://registry.npmjs.org/flatted/-/flatted-2.0.0.tgz
npm http 304 https://registry.npmjs.org/rimraf
npm info retry fetch attempt 1 at 12:42:11 PM
npm info attempt registry request try #1 at 12:42:11 PM
npm http fetch GET https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz
npm http fetch 200 https://registry.npmjs.org/flatted/-/flatted-2.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/write/-/write-1.0.3.tgz
npm http fetch 200 https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz
npm info attempt registry request try #1 at 12:42:11 PM
npm http request GET https://registry.npmjs.org/fs.realpath
npm http 200 https://registry.npmjs.org/fs.realpath
npm info retry fetch attempt 1 at 12:42:11 PM
npm info attempt registry request try #1 at 12:42:11 PM
npm http fetch GET https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz
npm info attempt registry request try #1 at 12:42:11 PM
npm http request GET https://registry.npmjs.org/parent-module
npm info attempt registry request try #1 at 12:42:11 PM
npm http request GET https://registry.npmjs.org/resolve-from
npm http 200 https://registry.npmjs.org/parent-module
npm http 200 https://registry.npmjs.org/resolve-from
npm info retry fetch attempt 1 at 12:42:11 PM
npm info attempt registry request try #1 at 12:42:11 PM
npm http fetch GET https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz
npm info retry fetch attempt 1 at 12:42:11 PM
npm info attempt registry request try #1 at 12:42:11 PM
npm http fetch GET https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz
npm http fetch 200 https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz
npm info attempt registry request try #1 at 12:42:11 PM
npm http request GET https://registry.npmjs.org/callsites
npm http 200 https://registry.npmjs.org/callsites
npm info retry fetch attempt 1 at 12:42:11 PM
npm info attempt registry request try #1 at 12:42:11 PM
npm http fetch GET https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz
npm http fetch 200 https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz
npm info attempt registry request try #1 at 12:42:11 PM
npm http request GET https://registry.npmjs.org/ansi-escapes
npm info attempt registry request try #1 at 12:42:11 PM
npm http request GET https://registry.npmjs.org/cli-cursor
npm info attempt registry request try #1 at 12:42:11 PM
npm http request GET https://registry.npmjs.org/cli-width
npm info attempt registry request try #1 at 12:42:11 PM
npm http request GET https://registry.npmjs.org/external-editor
npm info attempt registry request try #1 at 12:42:11 PM
npm http request GET https://registry.npmjs.org/figures
npm info attempt registry request try #1 at 12:42:11 PM
npm http request GET https://registry.npmjs.org/mute-stream
npm info attempt registry request try #1 at 12:42:11 PM
npm http request GET https://registry.npmjs.org/run-async
npm info attempt registry request try #1 at 12:42:11 PM
npm http request GET https://registry.npmjs.org/rxjs
npm info attempt registry request try #1 at 12:42:11 PM
npm http request GET https://registry.npmjs.org/through
npm info attempt registry request try #1 at 12:42:11 PM
npm http request GET https://registry.npmjs.org/strip-ansi
npm http 200 https://registry.npmjs.org/through
npm http 304 https://registry.npmjs.org/strip-ansi
npm http 200 https://registry.npmjs.org/ansi-escapes
npm http 200 https://registry.npmjs.org/run-async
npm http 200 https://registry.npmjs.org/cli-cursor
npm http 200 https://registry.npmjs.org/cli-width
npm http 200 https://registry.npmjs.org/mute-stream
npm http 200 https://registry.npmjs.org/figures
npm info retry fetch attempt 1 at 12:42:11 PM
npm info attempt registry request try #1 at 12:42:11 PM
npm http fetch GET https://registry.npmjs.org/through/-/through-2.3.8.tgz
npm http 200 https://registry.npmjs.org/external-editor
npm info retry fetch attempt 1 at 12:42:11 PM
npm info attempt registry request try #1 at 12:42:11 PM
npm http fetch GET https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz
npm info retry fetch attempt 1 at 12:42:11 PM
npm info attempt registry request try #1 at 12:42:11 PM
npm http fetch GET https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz
npm info retry fetch attempt 1 at 12:42:11 PM
npm info attempt registry request try #1 at 12:42:11 PM
npm http fetch GET https://registry.npmjs.org/run-async/-/run-async-2.3.0.tgz
npm http fetch 200 https://registry.npmjs.org/through/-/through-2.3.8.tgz
npm info retry fetch attempt 1 at 12:42:11 PM
npm info attempt registry request try #1 at 12:42:11 PM
npm http fetch GET https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz
npm info retry fetch attempt 1 at 12:42:11 PM
npm info attempt registry request try #1 at 12:42:11 PM
npm http fetch GET https://registry.npmjs.org/cli-width/-/cli-width-2.2.0.tgz
npm info retry fetch attempt 1 at 12:42:11 PM
npm info attempt registry request try #1 at 12:42:11 PM
npm http fetch GET https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.7.tgz
npm info retry fetch attempt 1 at 12:42:11 PM
npm info attempt registry request try #1 at 12:42:11 PM
npm http fetch GET https://registry.npmjs.org/figures/-/figures-2.0.0.tgz
npm info retry fetch attempt 1 at 12:42:11 PM
npm info attempt registry request try #1 at 12:42:11 PM
npm http fetch GET https://registry.npmjs.org/external-editor/-/external-editor-3.0.3.tgz
npm http fetch 200 https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz
npm http 200 https://registry.npmjs.org/rxjs
npm http fetch 200 https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz
npm http fetch 200 https://registry.npmjs.org/external-editor/-/external-editor-3.0.3.tgz
npm info retry fetch attempt 1 at 12:42:12 PM
npm info attempt registry request try #1 at 12:42:12 PM
npm http fetch GET https://registry.npmjs.org/rxjs/-/rxjs-6.4.0.tgz
npm http fetch 200 https://registry.npmjs.org/cli-width/-/cli-width-2.2.0.tgz
npm http fetch 200 https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.7.tgz
npm http fetch 200 https://registry.npmjs.org/run-async/-/run-async-2.3.0.tgz
npm http fetch 200 https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz
npm http fetch 200 https://registry.npmjs.org/figures/-/figures-2.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/rxjs/-/rxjs-6.4.0.tgz
npm info attempt registry request try #1 at 12:42:12 PM
npm http request GET https://registry.npmjs.org/restore-cursor
npm http 200 https://registry.npmjs.org/restore-cursor
npm info retry fetch attempt 1 at 12:42:12 PM
npm info attempt registry request try #1 at 12:42:12 PM
npm http fetch GET https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz
npm info attempt registry request try #1 at 12:42:12 PM
npm http request GET https://registry.npmjs.org/onetime
npm http 200 https://registry.npmjs.org/onetime
npm info retry fetch attempt 1 at 12:42:12 PM
npm info attempt registry request try #1 at 12:42:12 PM
npm http fetch GET https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz
npm http fetch 200 https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz
npm info attempt registry request try #1 at 12:42:13 PM
npm http request GET https://registry.npmjs.org/mimic-fn
npm http 304 https://registry.npmjs.org/mimic-fn
npm info retry fetch attempt 1 at 12:42:13 PM
npm info attempt registry request try #1 at 12:42:13 PM
npm http fetch GET https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz
npm http fetch 200 https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz
npm info attempt registry request try #1 at 12:42:13 PM
npm http request GET https://registry.npmjs.org/chardet
npm info attempt registry request try #1 at 12:42:13 PM
npm http request GET https://registry.npmjs.org/iconv-lite
npm info attempt registry request try #1 at 12:42:13 PM
npm http request GET https://registry.npmjs.org/tmp
npm http 200 https://registry.npmjs.org/chardet
npm info retry fetch attempt 1 at 12:42:13 PM
npm info attempt registry request try #1 at 12:42:13 PM
npm http fetch GET https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz
npm http 200 https://registry.npmjs.org/iconv-lite
npm info retry fetch attempt 1 at 12:42:13 PM
npm info attempt registry request try #1 at 12:42:13 PM
npm http fetch GET https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz
npm http 200 https://registry.npmjs.org/tmp
npm info retry fetch attempt 1 at 12:42:13 PM
npm info attempt registry request try #1 at 12:42:13 PM
npm http fetch GET https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz
npm http fetch 200 https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz
npm http fetch 200 https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz
npm http fetch 200 https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz
npm info attempt registry request try #1 at 12:42:13 PM
npm http request GET https://registry.npmjs.org/os-tmpdir
npm http 200 https://registry.npmjs.org/os-tmpdir
npm info retry fetch attempt 1 at 12:42:13 PM
npm info attempt registry request try #1 at 12:42:13 PM
npm http fetch GET https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz
npm http fetch 200 https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz
npm info attempt registry request try #1 at 12:42:13 PM
npm http request GET https://registry.npmjs.org/is-promise
npm http 200 https://registry.npmjs.org/is-promise
npm info retry fetch attempt 1 at 12:42:13 PM
npm info attempt registry request try #1 at 12:42:13 PM
npm http fetch GET https://registry.npmjs.org/is-promise/-/is-promise-2.1.0.tgz
npm http fetch 200 https://registry.npmjs.org/is-promise/-/is-promise-2.1.0.tgz
npm info attempt registry request try #1 at 12:42:13 PM
npm http request GET https://registry.npmjs.org/tslib
npm http 200 https://registry.npmjs.org/tslib
npm info retry fetch attempt 1 at 12:42:13 PM
npm info attempt registry request try #1 at 12:42:13 PM
npm http fetch GET https://registry.npmjs.org/tslib/-/tslib-1.9.3.tgz
npm http fetch 200 https://registry.npmjs.org/tslib/-/tslib-1.9.3.tgz
npm info attempt registry request try #1 at 12:42:13 PM
npm http request GET https://registry.npmjs.org/ansi-regex
npm http 304 https://registry.npmjs.org/ansi-regex
npm info retry fetch attempt 1 at 12:42:14 PM
npm info attempt registry request try #1 at 12:42:14 PM
npm http fetch GET https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz
npm http fetch 200 https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz
npm info attempt registry request try #1 at 12:42:14 PM
npm http request GET https://registry.npmjs.org/prelude-ls
npm info attempt registry request try #1 at 12:42:14 PM
npm http request GET https://registry.npmjs.org/type-check
npm http 200 https://registry.npmjs.org/prelude-ls
npm http 200 https://registry.npmjs.org/type-check
npm info retry fetch attempt 1 at 12:42:14 PM
npm info attempt registry request try #1 at 12:42:14 PM
npm http fetch GET https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz
npm info retry fetch attempt 1 at 12:42:14 PM
npm info attempt registry request try #1 at 12:42:14 PM
npm http fetch GET https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz
npm http fetch 200 https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz
npm http fetch 200 https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz
npm info attempt registry request try #1 at 12:42:14 PM
npm http request GET https://registry.npmjs.org/deep-is
npm info attempt registry request try #1 at 12:42:14 PM
npm http request GET https://registry.npmjs.org/wordwrap
npm info attempt registry request try #1 at 12:42:14 PM
npm http request GET https://registry.npmjs.org/fast-levenshtein
npm http 200 https://registry.npmjs.org/deep-is
npm info retry fetch attempt 1 at 12:42:14 PM
npm info attempt registry request try #1 at 12:42:14 PM
npm http fetch GET https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz
npm http 200 https://registry.npmjs.org/wordwrap
npm http 200 https://registry.npmjs.org/fast-levenshtein
npm info retry fetch attempt 1 at 12:42:14 PM
npm info attempt registry request try #1 at 12:42:14 PM
npm http fetch GET https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz
npm info retry fetch attempt 1 at 12:42:14 PM
npm info attempt registry request try #1 at 12:42:14 PM
npm http fetch GET https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz
npm http fetch 200 https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz
npm http fetch 200 https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz
npm info attempt registry request try #1 at 12:42:14 PM
npm http request GET https://registry.npmjs.org/slice-ansi
npm info attempt registry request try #1 at 12:42:14 PM
npm http request GET https://registry.npmjs.org/string-width
npm http 304 https://registry.npmjs.org/string-width
npm info retry fetch attempt 1 at 12:42:14 PM
npm info attempt registry request try #1 at 12:42:14 PM
npm http fetch GET https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz
npm http 200 https://registry.npmjs.org/slice-ansi
npm info retry fetch attempt 1 at 12:42:14 PM
npm info attempt registry request try #1 at 12:42:14 PM
npm http fetch GET https://registry.npmjs.org/slice-ansi/-/slice-ansi-2.1.0.tgz
npm http fetch 200 https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz
npm http fetch 200 https://registry.npmjs.org/slice-ansi/-/slice-ansi-2.1.0.tgz
npm info attempt registry request try #1 at 12:42:14 PM
npm http request GET https://registry.npmjs.org/astral-regex
npm http 200 https://registry.npmjs.org/astral-regex
npm info retry fetch attempt 1 at 12:42:14 PM
npm info attempt registry request try #1 at 12:42:14 PM
npm http fetch GET https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz
npm info attempt registry request try #1 at 12:42:14 PM
npm http request GET https://registry.npmjs.org/emoji-regex
npm http 200 https://registry.npmjs.org/emoji-regex
npm info retry fetch attempt 1 at 12:42:14 PM
npm info attempt registry request try #1 at 12:42:14 PM
npm http fetch GET https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz
npm http fetch 200 https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz
npm info attempt registry request try #1 at 12:42:15 PM
npm http request GET https://registry.npmjs.org/eslint-plugin-no-jquery
npm info attempt registry request try #1 at 12:42:15 PM
npm http request GET https://registry.npmjs.org/eslint-plugin-qunit
npm http 200 https://registry.npmjs.org/eslint-plugin-qunit
npm info retry fetch attempt 1 at 12:42:15 PM
npm info attempt registry request try #1 at 12:42:15 PM
npm http fetch GET https://registry.npmjs.org/eslint-plugin-qunit/-/eslint-plugin-qunit-4.0.0.tgz
npm http 200 https://registry.npmjs.org/eslint-plugin-no-jquery
npm info retry fetch attempt 1 at 12:42:15 PM
npm info attempt registry request try #1 at 12:42:15 PM
npm http fetch GET https://registry.npmjs.org/eslint-plugin-no-jquery/-/eslint-plugin-no-jquery-2.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/eslint-plugin-qunit/-/eslint-plugin-qunit-4.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/eslint-plugin-no-jquery/-/eslint-plugin-no-jquery-2.0.0.tgz
npm info attempt registry request try #1 at 12:42:17 PM
npm http request GET https://registry.npmjs.org/comment-parser
npm info attempt registry request try #1 at 12:42:17 PM
npm http request GET https://registry.npmjs.org/jsdoctypeparser
npm http 200 https://registry.npmjs.org/comment-parser
npm http 200 https://registry.npmjs.org/jsdoctypeparser
npm info retry fetch attempt 1 at 12:42:17 PM
npm info attempt registry request try #1 at 12:42:17 PM
npm http fetch GET https://registry.npmjs.org/comment-parser/-/comment-parser-0.5.4.tgz
npm info retry fetch attempt 1 at 12:42:17 PM
npm info attempt registry request try #1 at 12:42:17 PM
npm http fetch GET https://registry.npmjs.org/jsdoctypeparser/-/jsdoctypeparser-3.1.0.tgz
npm http fetch 200 https://registry.npmjs.org/comment-parser/-/comment-parser-0.5.4.tgz
npm http fetch 200 https://registry.npmjs.org/jsdoctypeparser/-/jsdoctypeparser-3.1.0.tgz
npm info attempt registry request try #1 at 12:42:19 PM
npm http request GET https://registry.npmjs.org/vscode-json-languageservice
npm http 200 https://registry.npmjs.org/vscode-json-languageservice
npm info retry fetch attempt 1 at 12:42:20 PM
npm info attempt registry request try #1 at 12:42:20 PM
npm http fetch GET https://registry.npmjs.org/vscode-json-languageservice/-/vscode-json-languageservice-3.2.1.tgz
npm http fetch 200 https://registry.npmjs.org/vscode-json-languageservice/-/vscode-json-languageservice-3.2.1.tgz
npm info attempt registry request try #1 at 12:42:20 PM
npm http request GET https://registry.npmjs.org/jsonc-parser
npm info attempt registry request try #1 at 12:42:20 PM
npm http request GET https://registry.npmjs.org/vscode-languageserver-types
npm info attempt registry request try #1 at 12:42:20 PM
npm http request GET https://registry.npmjs.org/vscode-nls
npm info attempt registry request try #1 at 12:42:20 PM
npm http request GET https://registry.npmjs.org/vscode-uri
npm http 200 https://registry.npmjs.org/vscode-languageserver-types
npm info retry fetch attempt 1 at 12:42:20 PM
npm info attempt registry request try #1 at 12:42:20 PM
npm http fetch GET https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.14.0.tgz
npm http fetch 200 https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.14.0.tgz
npm http 200 https://registry.npmjs.org/jsonc-parser
npm info retry fetch attempt 1 at 12:42:21 PM
npm info attempt registry request try #1 at 12:42:21 PM
npm http fetch GET https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-2.1.0.tgz
npm http 200 https://registry.npmjs.org/vscode-nls
npm http 200 https://registry.npmjs.org/vscode-uri
npm info retry fetch attempt 1 at 12:42:21 PM
npm info attempt registry request try #1 at 12:42:21 PM
npm http fetch GET https://registry.npmjs.org/vscode-nls/-/vscode-nls-4.1.0.tgz
npm info retry fetch attempt 1 at 12:42:21 PM
npm info attempt registry request try #1 at 12:42:21 PM
npm http fetch GET https://registry.npmjs.org/vscode-uri/-/vscode-uri-1.0.6.tgz
npm http fetch 200 https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-2.1.0.tgz
npm http fetch 200 https://registry.npmjs.org/vscode-nls/-/vscode-nls-4.1.0.tgz
npm http fetch 200 https://registry.npmjs.org/vscode-uri/-/vscode-uri-1.0.6.tgz
npm info attempt registry request try #1 at 12:42:22 PM
npm http request GET https://registry.npmjs.org/ansi-colors
npm info attempt registry request try #1 at 12:42:22 PM
npm http request GET https://registry.npmjs.org/browser-stdout
npm info attempt registry request try #1 at 12:42:22 PM
npm http request GET https://registry.npmjs.org/diff
npm info attempt registry request try #1 at 12:42:22 PM
npm http request GET https://registry.npmjs.org/he
npm info attempt registry request try #1 at 12:42:22 PM
npm http request GET https://registry.npmjs.org/log-symbols
npm info attempt registry request try #1 at 12:42:22 PM
npm http request GET https://registry.npmjs.org/node-environment-flags
npm info attempt registry request try #1 at 12:42:22 PM
npm http request GET https://registry.npmjs.org/object.assign
npm info attempt registry request try #1 at 12:42:22 PM
npm http request GET https://registry.npmjs.org/wide-align
npm info attempt registry request try #1 at 12:42:22 PM
npm http request GET https://registry.npmjs.org/yargs-unparser
npm info attempt registry request try #1 at 12:42:22 PM
npm http request GET https://registry.npmjs.org/debug
npm info attempt registry request try #1 at 12:42:22 PM
npm http request GET https://registry.npmjs.org/glob
npm info attempt registry request try #1 at 12:42:22 PM
npm http request GET https://registry.npmjs.org/js-yaml
npm info attempt registry request try #1 at 12:42:22 PM
npm http request GET https://registry.npmjs.org/supports-color
npm info attempt registry request try #1 at 12:42:22 PM
npm http request GET https://registry.npmjs.org/yargs-parser
npm info attempt registry request try #1 at 12:42:22 PM
npm http request GET https://registry.npmjs.org/yargs
npm http 200 https://registry.npmjs.org/log-symbols
npm http 200 https://registry.npmjs.org/he
npm http 200 https://registry.npmjs.org/diff
npm http 200 https://registry.npmjs.org/wide-align
npm http 200 https://registry.npmjs.org/browser-stdout
npm http 304 https://registry.npmjs.org/supports-color
npm http 304 https://registry.npmjs.org/debug
npm http 304 https://registry.npmjs.org/glob
npm http 304 https://registry.npmjs.org/js-yaml
npm http 304 https://registry.npmjs.org/yargs-parser
npm http 304 https://registry.npmjs.org/yargs
npm http 200 https://registry.npmjs.org/ansi-colors
npm info retry fetch attempt 1 at 12:42:22 PM
npm info attempt registry request try #1 at 12:42:22 PM
npm http fetch GET https://registry.npmjs.org/log-symbols/-/log-symbols-2.2.0.tgz
npm info retry fetch attempt 1 at 12:42:22 PM
npm info attempt registry request try #1 at 12:42:22 PM
npm http fetch GET https://registry.npmjs.org/he/-/he-1.2.0.tgz
npm info retry fetch attempt 1 at 12:42:22 PM
npm info attempt registry request try #1 at 12:42:22 PM
npm http fetch GET https://registry.npmjs.org/supports-color/-/supports-color-6.0.0.tgz
npm info retry fetch attempt 1 at 12:42:22 PM
npm info attempt registry request try #1 at 12:42:22 PM
npm http fetch GET https://registry.npmjs.org/debug/-/debug-3.2.6.tgz
npm info retry fetch attempt 1 at 12:42:22 PM
npm info attempt registry request try #1 at 12:42:22 PM
npm http fetch GET https://registry.npmjs.org/diff/-/diff-3.5.0.tgz
npm info retry fetch attempt 1 at 12:42:22 PM
npm info attempt registry request try #1 at 12:42:22 PM
npm http fetch GET https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.0.tgz
npm info retry fetch attempt 1 at 12:42:22 PM
npm info attempt registry request try #1 at 12:42:22 PM
npm http fetch GET https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.0.0.tgz
npm info retry fetch attempt 1 at 12:42:22 PM
npm info attempt registry request try #1 at 12:42:22 PM
npm http fetch GET https://registry.npmjs.org/yargs/-/yargs-13.2.2.tgz
npm info retry fetch attempt 1 at 12:42:22 PM
npm info attempt registry request try #1 at 12:42:22 PM
npm http fetch GET https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz
npm info retry fetch attempt 1 at 12:42:22 PM
npm info attempt registry request try #1 at 12:42:22 PM
npm http fetch GET https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz
npm http fetch 200 https://registry.npmjs.org/log-symbols/-/log-symbols-2.2.0.tgz
npm info retry fetch attempt 1 at 12:42:22 PM
npm info attempt registry request try #1 at 12:42:22 PM
npm http fetch GET https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.3.tgz
npm http fetch 200 https://registry.npmjs.org/supports-color/-/supports-color-6.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/diff/-/diff-3.5.0.tgz
npm http fetch 200 https://registry.npmjs.org/debug/-/debug-3.2.6.tgz
npm http 200 https://registry.npmjs.org/object.assign
npm http fetch 200 https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz
npm http fetch 200 https://registry.npmjs.org/yargs/-/yargs-13.2.2.tgz
npm http fetch 200 https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz
npm http fetch 200 https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.0.tgz
npm http fetch 200 https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.3.tgz
npm info retry fetch attempt 1 at 12:42:22 PM
npm info attempt registry request try #1 at 12:42:22 PM
npm http fetch GET https://registry.npmjs.org/object.assign/-/object.assign-4.1.0.tgz
npm http fetch 200 https://registry.npmjs.org/he/-/he-1.2.0.tgz
npm http fetch 200 https://registry.npmjs.org/object.assign/-/object.assign-4.1.0.tgz
npm http 200 https://registry.npmjs.org/node-environment-flags
npm info retry fetch attempt 1 at 12:42:22 PM
npm info attempt registry request try #1 at 12:42:22 PM
npm http fetch GET https://registry.npmjs.org/node-environment-flags/-/node-environment-flags-1.0.4.tgz
npm http 200 https://registry.npmjs.org/yargs-unparser
npm info retry fetch attempt 1 at 12:42:22 PM
npm info attempt registry request try #1 at 12:42:22 PM
npm http fetch GET https://registry.npmjs.org/yargs-unparser/-/yargs-unparser-1.5.0.tgz
npm http fetch 200 https://registry.npmjs.org/node-environment-flags/-/node-environment-flags-1.0.4.tgz
npm http fetch 200 https://registry.npmjs.org/yargs-unparser/-/yargs-unparser-1.5.0.tgz
npm info attempt registry request try #1 at 12:42:23 PM
npm http request GET https://registry.npmjs.org/object.getownpropertydescriptors
npm http 200 https://registry.npmjs.org/object.getownpropertydescriptors
npm info retry fetch attempt 1 at 12:42:23 PM
npm info attempt registry request try #1 at 12:42:23 PM
npm http fetch GET https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz
npm http fetch 200 https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz
npm info attempt registry request try #1 at 12:42:23 PM
npm http request GET https://registry.npmjs.org/define-properties
npm info attempt registry request try #1 at 12:42:23 PM
npm http request GET https://registry.npmjs.org/es-abstract
npm http 200 https://registry.npmjs.org/define-properties
npm info retry fetch attempt 1 at 12:42:24 PM
npm info attempt registry request try #1 at 12:42:24 PM
npm http fetch GET https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz
npm http fetch 200 https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz
npm http 200 https://registry.npmjs.org/es-abstract
npm info retry fetch attempt 1 at 12:42:24 PM
npm info attempt registry request try #1 at 12:42:24 PM
npm http fetch GET https://registry.npmjs.org/es-abstract/-/es-abstract-1.13.0.tgz
npm http fetch 200 https://registry.npmjs.org/es-abstract/-/es-abstract-1.13.0.tgz
npm info attempt registry request try #1 at 12:42:24 PM
npm http request GET https://registry.npmjs.org/object-keys
npm http 200 https://registry.npmjs.org/object-keys
npm info retry fetch attempt 1 at 12:42:24 PM
npm info attempt registry request try #1 at 12:42:24 PM
npm http fetch GET https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz
npm http fetch 200 https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz
npm info attempt registry request try #1 at 12:42:25 PM
npm http request GET https://registry.npmjs.org/es-to-primitive
npm info attempt registry request try #1 at 12:42:25 PM
npm http request GET https://registry.npmjs.org/function-bind
npm info attempt registry request try #1 at 12:42:25 PM
npm http request GET https://registry.npmjs.org/has
npm info attempt registry request try #1 at 12:42:25 PM
npm http request GET https://registry.npmjs.org/is-callable
npm info attempt registry request try #1 at 12:42:25 PM
npm http request GET https://registry.npmjs.org/is-regex
npm http 200 https://registry.npmjs.org/is-regex
npm http 200 https://registry.npmjs.org/function-bind
npm info retry fetch attempt 1 at 12:42:25 PM
npm info attempt registry request try #1 at 12:42:25 PM
npm http fetch GET https://registry.npmjs.org/is-regex/-/is-regex-1.0.4.tgz
npm info retry fetch attempt 1 at 12:42:25 PM
npm info attempt registry request try #1 at 12:42:25 PM
npm http fetch GET https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz
npm http fetch 200 https://registry.npmjs.org/is-regex/-/is-regex-1.0.4.tgz
npm http fetch 200 https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz
npm http 200 https://registry.npmjs.org/has
npm info retry fetch attempt 1 at 12:42:25 PM
npm info attempt registry request try #1 at 12:42:25 PM
npm http fetch GET https://registry.npmjs.org/has/-/has-1.0.3.tgz
npm http fetch 200 https://registry.npmjs.org/has/-/has-1.0.3.tgz
npm http 200 https://registry.npmjs.org/es-to-primitive
npm info retry fetch attempt 1 at 12:42:25 PM
npm info attempt registry request try #1 at 12:42:25 PM
npm http fetch GET https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.0.tgz
npm http fetch 200 https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.0.tgz
npm http 200 https://registry.npmjs.org/is-callable
npm info retry fetch attempt 1 at 12:42:26 PM
npm info attempt registry request try #1 at 12:42:26 PM
npm http fetch GET https://registry.npmjs.org/is-callable/-/is-callable-1.1.4.tgz
npm http fetch 200 https://registry.npmjs.org/is-callable/-/is-callable-1.1.4.tgz
npm info attempt registry request try #1 at 12:42:26 PM
npm http request GET https://registry.npmjs.org/is-date-object
npm info attempt registry request try #1 at 12:42:26 PM
npm http request GET https://registry.npmjs.org/is-symbol
npm http 200 https://registry.npmjs.org/is-date-object
npm info retry fetch attempt 1 at 12:42:26 PM
npm info attempt registry request try #1 at 12:42:26 PM
npm http fetch GET https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.1.tgz
npm http fetch 200 https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.1.tgz
npm http 200 https://registry.npmjs.org/is-symbol
npm info retry fetch attempt 1 at 12:42:26 PM
npm info attempt registry request try #1 at 12:42:26 PM
npm http fetch GET https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.2.tgz
npm http fetch 200 https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.2.tgz
npm info attempt registry request try #1 at 12:42:27 PM
npm http request GET https://registry.npmjs.org/has-symbols
npm http 200 https://registry.npmjs.org/has-symbols
npm info retry fetch attempt 1 at 12:42:27 PM
npm info attempt registry request try #1 at 12:42:27 PM
npm http fetch GET https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.0.tgz
npm info attempt registry request try #1 at 12:42:27 PM
npm http request GET https://registry.npmjs.org/get-caller-file
npm info attempt registry request try #1 at 12:42:27 PM
npm http request GET https://registry.npmjs.org/require-main-filename
npm info attempt registry request try #1 at 12:42:27 PM
npm http request GET https://registry.npmjs.org/string-width
npm http 304 https://registry.npmjs.org/get-caller-file
npm info retry fetch attempt 1 at 12:42:27 PM
npm info attempt registry request try #1 at 12:42:27 PM
npm http fetch GET https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz
npm http 304 https://registry.npmjs.org/require-main-filename
npm info retry fetch attempt 1 at 12:42:27 PM
npm info attempt registry request try #1 at 12:42:27 PM
npm http fetch GET https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz
npm http 304 https://registry.npmjs.org/string-width
npm http fetch 200 https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz
npm info attempt registry request try #1 at 12:42:27 PM
npm http request GET https://registry.npmjs.org/strip-ansi
npm http 304 https://registry.npmjs.org/strip-ansi
npm info attempt registry request try #1 at 12:42:27 PM
npm http request GET https://registry.npmjs.org/ansi-regex
npm http 304 https://registry.npmjs.org/ansi-regex
npm info attempt registry request try #1 at 12:42:27 PM
npm http request GET https://registry.npmjs.org/flat
npm http 200 https://registry.npmjs.org/flat
npm info retry fetch attempt 1 at 12:42:28 PM
npm info attempt registry request try #1 at 12:42:28 PM
npm http fetch GET https://registry.npmjs.org/flat/-/flat-4.1.0.tgz
npm http fetch 200 https://registry.npmjs.org/flat/-/flat-4.1.0.tgz
npm info attempt registry request try #1 at 12:42:28 PM
npm http request GET https://registry.npmjs.org/is-buffer
npm http 200 https://registry.npmjs.org/is-buffer
npm info retry fetch attempt 1 at 12:42:28 PM
npm info attempt registry request try #1 at 12:42:28 PM
npm http fetch GET https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.3.tgz
npm http fetch 200 https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.3.tgz
npm info attempt registry request try #1 at 12:42:28 PM
npm http request GET https://registry.npmjs.org/semaphore
npm info attempt registry request try #1 at 12:42:28 PM
npm http request GET https://registry.npmjs.org/bluebird
npm http 304 https://registry.npmjs.org/bluebird
npm info retry fetch attempt 1 at 12:42:28 PM
npm info attempt registry request try #1 at 12:42:28 PM
npm http fetch GET https://registry.npmjs.org/bluebird/-/bluebird-2.11.0.tgz
npm http fetch 200 https://registry.npmjs.org/bluebird/-/bluebird-2.11.0.tgz
npm http 200 https://registry.npmjs.org/semaphore
npm info retry fetch attempt 1 at 12:42:29 PM
npm info attempt registry request try #1 at 12:42:29 PM
npm http fetch GET https://registry.npmjs.org/semaphore/-/semaphore-1.1.0.tgz
npm http fetch 200 https://registry.npmjs.org/semaphore/-/semaphore-1.1.0.tgz
npm info attempt registry request try #1 at 12:42:29 PM
npm http request GET https://registry.npmjs.org/chai
npm info attempt registry request try #1 at 12:42:29 PM
npm http request GET https://registry.npmjs.org/deep-equal
npm info attempt registry request try #1 at 12:42:29 PM
npm http request GET https://registry.npmjs.org/propagate
npm info attempt registry request try #1 at 12:42:29 PM
npm http request GET https://registry.npmjs.org/semver
npm http 200 https://registry.npmjs.org/propagate
npm http 304 https://registry.npmjs.org/semver
npm http 200 https://registry.npmjs.org/chai
npm http 200 https://registry.npmjs.org/deep-equal
npm info retry fetch attempt 1 at 12:42:29 PM
npm info attempt registry request try #1 at 12:42:29 PM
npm http fetch GET https://registry.npmjs.org/propagate/-/propagate-1.0.0.tgz
npm info retry fetch attempt 1 at 12:42:29 PM
npm info attempt registry request try #1 at 12:42:29 PM
npm http fetch GET https://registry.npmjs.org/chai/-/chai-4.2.0.tgz
npm info retry fetch attempt 1 at 12:42:29 PM
npm info attempt registry request try #1 at 12:42:29 PM
npm http fetch GET https://registry.npmjs.org/deep-equal/-/deep-equal-1.0.1.tgz
npm http fetch 200 https://registry.npmjs.org/propagate/-/propagate-1.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/chai/-/chai-4.2.0.tgz
npm http fetch 200 https://registry.npmjs.org/deep-equal/-/deep-equal-1.0.1.tgz
npm info attempt registry request try #1 at 12:42:29 PM
npm http request GET https://registry.npmjs.org/assertion-error
npm info attempt registry request try #1 at 12:42:29 PM
npm http request GET https://registry.npmjs.org/check-error
npm info attempt registry request try #1 at 12:42:29 PM
npm http request GET https://registry.npmjs.org/deep-eql
npm info attempt registry request try #1 at 12:42:29 PM
npm http request GET https://registry.npmjs.org/get-func-name
npm info attempt registry request try #1 at 12:42:29 PM
npm http request GET https://registry.npmjs.org/pathval
npm info attempt registry request try #1 at 12:42:29 PM
npm http request GET https://registry.npmjs.org/type-detect
npm http 200 https://registry.npmjs.org/get-func-name
npm http 200 https://registry.npmjs.org/pathval
npm http 200 https://registry.npmjs.org/check-error
npm http 200 https://registry.npmjs.org/assertion-error
npm info retry fetch attempt 1 at 12:42:29 PM
npm info attempt registry request try #1 at 12:42:29 PM
npm http fetch GET https://registry.npmjs.org/get-func-name/-/get-func-name-2.0.0.tgz
npm info retry fetch attempt 1 at 12:42:29 PM
npm info attempt registry request try #1 at 12:42:29 PM
npm http fetch GET https://registry.npmjs.org/pathval/-/pathval-1.1.0.tgz
npm http 200 https://registry.npmjs.org/type-detect
npm info retry fetch attempt 1 at 12:42:29 PM
npm info attempt registry request try #1 at 12:42:29 PM
npm http fetch GET https://registry.npmjs.org/check-error/-/check-error-1.0.2.tgz
npm info retry fetch attempt 1 at 12:42:29 PM
npm info attempt registry request try #1 at 12:42:29 PM
npm http fetch GET https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz
npm http 200 https://registry.npmjs.org/deep-eql
npm info retry fetch attempt 1 at 12:42:29 PM
npm info attempt registry request try #1 at 12:42:29 PM
npm http fetch GET https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz
npm info retry fetch attempt 1 at 12:42:29 PM
npm info attempt registry request try #1 at 12:42:29 PM
npm http fetch GET https://registry.npmjs.org/deep-eql/-/deep-eql-3.0.1.tgz
npm http fetch 200 https://registry.npmjs.org/get-func-name/-/get-func-name-2.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/pathval/-/pathval-1.1.0.tgz
npm http fetch 200 https://registry.npmjs.org/check-error/-/check-error-1.0.2.tgz
npm http fetch 200 https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz
npm http fetch 200 https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz
npm http fetch 200 https://registry.npmjs.org/deep-eql/-/deep-eql-3.0.1.tgz
npm info attempt registry request try #1 at 12:42:29 PM
npm http request GET https://registry.npmjs.org/istanbul-lib-instrument
npm http 200 https://registry.npmjs.org/istanbul-lib-instrument
npm info retry fetch attempt 1 at 12:42:29 PM
npm info attempt registry request try #1 at 12:42:29 PM
npm http fetch GET https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-3.1.0.tgz
npm http fetch 200 https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-3.1.0.tgz
npm info attempt registry request try #1 at 12:42:29 PM
npm http request GET https://registry.npmjs.org/@babel%2fgenerator
npm info attempt registry request try #1 at 12:42:29 PM
npm http request GET https://registry.npmjs.org/@babel%2fparser
npm info attempt registry request try #1 at 12:42:29 PM
npm http request GET https://registry.npmjs.org/@babel%2ftemplate
npm info attempt registry request try #1 at 12:42:29 PM
npm http request GET https://registry.npmjs.org/@babel%2ftraverse
npm info attempt registry request try #1 at 12:42:29 PM
npm http request GET https://registry.npmjs.org/@babel%2ftypes
npm info attempt registry request try #1 at 12:42:29 PM
npm http request GET https://registry.npmjs.org/istanbul-lib-coverage
npm http 200 https://registry.npmjs.org/istanbul-lib-coverage
npm info retry fetch attempt 1 at 12:42:29 PM
npm info attempt registry request try #1 at 12:42:29 PM
npm http fetch GET https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz
npm http 200 https://registry.npmjs.org/@babel%2ftemplate
npm info retry fetch attempt 1 at 12:42:29 PM
npm info attempt registry request try #1 at 12:42:29 PM
npm http fetch GET https://registry.npmjs.org/@babel/template/-/template-7.4.0.tgz
npm http 200 https://registry.npmjs.org/@babel%2ftraverse
npm http 200 https://registry.npmjs.org/@babel%2fgenerator
npm info retry fetch attempt 1 at 12:42:30 PM
npm info attempt registry request try #1 at 12:42:30 PM
npm http fetch GET https://registry.npmjs.org/@babel/traverse/-/traverse-7.4.3.tgz
npm http 200 https://registry.npmjs.org/@babel%2ftypes
npm info retry fetch attempt 1 at 12:42:30 PM
npm info attempt registry request try #1 at 12:42:30 PM
npm http fetch GET https://registry.npmjs.org/@babel/generator/-/generator-7.4.0.tgz
npm http fetch 200 https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz
npm http fetch 200 https://registry.npmjs.org/@babel/template/-/template-7.4.0.tgz
npm info retry fetch attempt 1 at 12:42:30 PM
npm info attempt registry request try #1 at 12:42:30 PM
npm http fetch GET https://registry.npmjs.org/@babel/types/-/types-7.4.0.tgz
npm http fetch 200 https://registry.npmjs.org/@babel/traverse/-/traverse-7.4.3.tgz
npm http fetch 200 https://registry.npmjs.org/@babel/generator/-/generator-7.4.0.tgz
npm http fetch 200 https://registry.npmjs.org/@babel/types/-/types-7.4.0.tgz
npm http 200 https://registry.npmjs.org/@babel%2fparser
npm info retry fetch attempt 1 at 12:42:30 PM
npm info attempt registry request try #1 at 12:42:30 PM
npm http fetch GET https://registry.npmjs.org/@babel/parser/-/parser-7.4.3.tgz
npm http fetch 200 https://registry.npmjs.org/@babel/parser/-/parser-7.4.3.tgz
npm info attempt registry request try #1 at 12:42:30 PM
npm http request GET https://registry.npmjs.org/jsesc
npm info attempt registry request try #1 at 12:42:30 PM
npm http request GET https://registry.npmjs.org/source-map
npm info attempt registry request try #1 at 12:42:30 PM
npm http request GET https://registry.npmjs.org/trim-right
npm http 200 https://registry.npmjs.org/trim-right
npm http 200 https://registry.npmjs.org/jsesc
npm info retry fetch attempt 1 at 12:42:30 PM
npm info attempt registry request try #1 at 12:42:30 PM
npm http fetch GET https://registry.npmjs.org/trim-right/-/trim-right-1.0.1.tgz
npm info retry fetch attempt 1 at 12:42:30 PM
npm info attempt registry request try #1 at 12:42:30 PM
npm http fetch GET https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz
npm http 200 https://registry.npmjs.org/source-map
npm http fetch 200 https://registry.npmjs.org/trim-right/-/trim-right-1.0.1.tgz
npm info retry fetch attempt 1 at 12:42:31 PM
npm info attempt registry request try #1 at 12:42:31 PM
npm http fetch GET https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz
npm http fetch 200 https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz
npm http fetch 200 https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz
npm info attempt registry request try #1 at 12:42:31 PM
npm http request GET https://registry.npmjs.org/to-fast-properties
npm http 200 https://registry.npmjs.org/to-fast-properties
npm info retry fetch attempt 1 at 12:42:31 PM
npm info attempt registry request try #1 at 12:42:31 PM
npm http fetch GET https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz
npm info attempt registry request try #1 at 12:42:31 PM
npm http request GET https://registry.npmjs.org/@babel%2fhelper-function-name
npm info attempt registry request try #1 at 12:42:31 PM
npm http request GET https://registry.npmjs.org/@babel%2fhelper-split-export-declaration
npm http 200 https://registry.npmjs.org/@babel%2fhelper-split-export-declaration
npm http 200 https://registry.npmjs.org/@babel%2fhelper-function-name
npm info retry fetch attempt 1 at 12:42:31 PM
npm info attempt registry request try #1 at 12:42:31 PM
npm http fetch GET https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.4.0.tgz
npm info retry fetch attempt 1 at 12:42:31 PM
npm info attempt registry request try #1 at 12:42:31 PM
npm http fetch GET https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.1.0.tgz
npm http fetch 200 https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.1.0.tgz
npm http fetch 200 https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.4.0.tgz
npm info attempt registry request try #1 at 12:42:31 PM
npm http request GET https://registry.npmjs.org/@babel%2fhelper-get-function-arity
npm http 200 https://registry.npmjs.org/@babel%2fhelper-get-function-arity
npm info retry fetch attempt 1 at 12:42:31 PM
npm info attempt registry request try #1 at 12:42:31 PM
npm http fetch GET https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0.tgz
npm info attempt registry request try #1 at 12:42:31 PM
npm http request GET https://registry.npmjs.org/generic-pool
npm info attempt registry request try #1 at 12:42:31 PM
npm http request GET https://registry.npmjs.org/lru-cache
npm info attempt registry request try #1 at 12:42:31 PM
npm http request GET https://registry.npmjs.org/sqlite3
npm http 200 https://registry.npmjs.org/generic-pool
npm http 200 https://registry.npmjs.org/sqlite3
npm info retry fetch attempt 1 at 12:42:31 PM
npm info attempt registry request try #1 at 12:42:31 PM
npm http fetch GET https://registry.npmjs.org/generic-pool/-/generic-pool-3.7.1.tgz
npm info retry fetch attempt 1 at 12:42:31 PM
npm info attempt registry request try #1 at 12:42:31 PM
npm http fetch GET https://registry.npmjs.org/sqlite3/-/sqlite3-4.0.6.tgz
npm http 200 https://registry.npmjs.org/lru-cache
npm info retry fetch attempt 1 at 12:42:31 PM
npm info attempt registry request try #1 at 12:42:31 PM
npm http fetch GET https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz
npm http fetch 200 https://registry.npmjs.org/generic-pool/-/generic-pool-3.7.1.tgz
npm http fetch 200 https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz
npm http fetch 200 https://registry.npmjs.org/sqlite3/-/sqlite3-4.0.6.tgz
npm info attempt registry request try #1 at 12:42:32 PM
npm http request GET https://registry.npmjs.org/pseudomap
npm info attempt registry request try #1 at 12:42:32 PM
npm http request GET https://registry.npmjs.org/yallist
npm http 200 https://registry.npmjs.org/pseudomap
npm info retry fetch attempt 1 at 12:42:33 PM
npm info attempt registry request try #1 at 12:42:33 PM
npm http fetch GET https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz
npm http 200 https://registry.npmjs.org/yallist
npm info retry fetch attempt 1 at 12:42:33 PM
npm info attempt registry request try #1 at 12:42:33 PM
npm http fetch GET https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz
npm http fetch 200 https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz
npm http fetch 200 https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz
npm info attempt registry request try #1 at 12:42:33 PM
npm http request GET https://registry.npmjs.org/node-pre-gyp
npm info attempt registry request try #1 at 12:42:33 PM
npm http request GET https://registry.npmjs.org/nan
npm http 200 https://registry.npmjs.org/node-pre-gyp
npm http 304 https://registry.npmjs.org/nan
npm info retry fetch attempt 1 at 12:42:33 PM
npm info attempt registry request try #1 at 12:42:33 PM
npm http fetch GET https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.11.0.tgz
npm info retry fetch attempt 1 at 12:42:33 PM
npm info attempt registry request try #1 at 12:42:33 PM
npm http fetch GET https://registry.npmjs.org/nan/-/nan-2.10.0.tgz
npm http fetch 200 https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.11.0.tgz
npm http fetch 200 https://registry.npmjs.org/nan/-/nan-2.10.0.tgz
npm info attempt registry request try #1 at 12:42:33 PM
npm http request GET https://registry.npmjs.org/detect-libc
npm info attempt registry request try #1 at 12:42:33 PM
npm http request GET https://registry.npmjs.org/needle
npm info attempt registry request try #1 at 12:42:33 PM
npm http request GET https://registry.npmjs.org/nopt
npm info attempt registry request try #1 at 12:42:33 PM
npm http request GET https://registry.npmjs.org/npm-packlist
npm info attempt registry request try #1 at 12:42:33 PM
npm http request GET https://registry.npmjs.org/npmlog
npm info attempt registry request try #1 at 12:42:33 PM
npm http request GET https://registry.npmjs.org/rc
npm info attempt registry request try #1 at 12:42:33 PM
npm http request GET https://registry.npmjs.org/tar
npm info attempt registry request try #1 at 12:42:33 PM
npm http request GET https://registry.npmjs.org/rimraf
npm http 304 https://registry.npmjs.org/rimraf
npm http 200 https://registry.npmjs.org/npmlog
npm http 200 https://registry.npmjs.org/rc
npm http 200 https://registry.npmjs.org/detect-libc
npm http 200 https://registry.npmjs.org/nopt
npm http 200 https://registry.npmjs.org/needle
npm http 200 https://registry.npmjs.org/npm-packlist
npm http 200 https://registry.npmjs.org/tar
npm info retry fetch attempt 1 at 12:42:33 PM
npm info attempt registry request try #1 at 12:42:33 PM
npm http fetch GET https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz
npm info retry fetch attempt 1 at 12:42:33 PM
npm info attempt registry request try #1 at 12:42:33 PM
npm http fetch GET https://registry.npmjs.org/rc/-/rc-1.2.8.tgz
npm info retry fetch attempt 1 at 12:42:33 PM
npm info attempt registry request try #1 at 12:42:33 PM
npm http fetch GET https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz
npm info retry fetch attempt 1 at 12:42:33 PM
npm info attempt registry request try #1 at 12:42:33 PM
npm http fetch GET https://registry.npmjs.org/nopt/-/nopt-4.0.1.tgz
npm info retry fetch attempt 1 at 12:42:33 PM
npm info attempt registry request try #1 at 12:42:33 PM
npm http fetch GET https://registry.npmjs.org/needle/-/needle-2.2.4.tgz
npm info retry fetch attempt 1 at 12:42:33 PM
npm info attempt registry request try #1 at 12:42:33 PM
npm http fetch GET https://registry.npmjs.org/npm-packlist/-/npm-packlist-1.4.1.tgz
npm info retry fetch attempt 1 at 12:42:33 PM
npm info attempt registry request try #1 at 12:42:33 PM
npm http fetch GET https://registry.npmjs.org/tar/-/tar-4.4.8.tgz
npm http fetch 200 https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz
npm http fetch 200 https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz
npm http fetch 200 https://registry.npmjs.org/rc/-/rc-1.2.8.tgz
npm http fetch 200 https://registry.npmjs.org/nopt/-/nopt-4.0.1.tgz
npm http fetch 200 https://registry.npmjs.org/needle/-/needle-2.2.4.tgz
npm http fetch 200 https://registry.npmjs.org/npm-packlist/-/npm-packlist-1.4.1.tgz
npm http fetch 200 https://registry.npmjs.org/tar/-/tar-4.4.8.tgz
npm info attempt registry request try #1 at 12:42:33 PM
npm http request GET https://registry.npmjs.org/sax
npm info attempt registry request try #1 at 12:42:33 PM
npm http request GET https://registry.npmjs.org/debug
npm http 200 https://registry.npmjs.org/sax
npm http 304 https://registry.npmjs.org/debug
npm info retry fetch attempt 1 at 12:42:33 PM
npm info attempt registry request try #1 at 12:42:33 PM
npm http fetch GET https://registry.npmjs.org/sax/-/sax-1.2.4.tgz
npm info retry fetch attempt 1 at 12:42:33 PM
npm info attempt registry request try #1 at 12:42:33 PM
npm http fetch GET https://registry.npmjs.org/debug/-/debug-2.6.9.tgz
npm http fetch 200 https://registry.npmjs.org/sax/-/sax-1.2.4.tgz
npm http fetch 200 https://registry.npmjs.org/debug/-/debug-2.6.9.tgz
npm info attempt registry request try #1 at 12:42:33 PM
npm http request GET https://registry.npmjs.org/ms
npm http 304 https://registry.npmjs.org/ms
npm info retry fetch attempt 1 at 12:42:33 PM
npm info attempt registry request try #1 at 12:42:33 PM
npm http fetch GET https://registry.npmjs.org/ms/-/ms-2.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/ms/-/ms-2.0.0.tgz
npm info attempt registry request try #1 at 12:42:34 PM
npm http request GET https://registry.npmjs.org/abbrev
npm info attempt registry request try #1 at 12:42:34 PM
npm http request GET https://registry.npmjs.org/osenv
npm http 200 https://registry.npmjs.org/abbrev
npm info retry fetch attempt 1 at 12:42:34 PM
npm info attempt registry request try #1 at 12:42:34 PM
npm http fetch GET https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz
npm http 200 https://registry.npmjs.org/osenv
npm info retry fetch attempt 1 at 12:42:34 PM
npm info attempt registry request try #1 at 12:42:34 PM
npm http fetch GET https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz
npm http fetch 200 https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz
npm http fetch 200 https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz
npm info attempt registry request try #1 at 12:42:34 PM
npm http request GET https://registry.npmjs.org/os-homedir
npm http 200 https://registry.npmjs.org/os-homedir
npm info retry fetch attempt 1 at 12:42:34 PM
npm info attempt registry request try #1 at 12:42:34 PM
npm http fetch GET https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz
npm http fetch 200 https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz
npm info attempt registry request try #1 at 12:42:34 PM
npm http request GET https://registry.npmjs.org/ignore-walk
npm info attempt registry request try #1 at 12:42:34 PM
npm http request GET https://registry.npmjs.org/npm-bundled
npm http 200 https://registry.npmjs.org/npm-bundled
npm http 200 https://registry.npmjs.org/ignore-walk
npm info retry fetch attempt 1 at 12:42:34 PM
npm info attempt registry request try #1 at 12:42:34 PM
npm http fetch GET https://registry.npmjs.org/npm-bundled/-/npm-bundled-1.0.6.tgz
npm info retry fetch attempt 1 at 12:42:34 PM
npm info attempt registry request try #1 at 12:42:34 PM
npm http fetch GET https://registry.npmjs.org/ignore-walk/-/ignore-walk-3.0.1.tgz
npm http fetch 200 https://registry.npmjs.org/ignore-walk/-/ignore-walk-3.0.1.tgz
npm http fetch 200 https://registry.npmjs.org/npm-bundled/-/npm-bundled-1.0.6.tgz
npm info attempt registry request try #1 at 12:42:34 PM
npm http request GET https://registry.npmjs.org/are-we-there-yet
npm info attempt registry request try #1 at 12:42:34 PM
npm http request GET https://registry.npmjs.org/console-control-strings
npm info attempt registry request try #1 at 12:42:34 PM
npm http request GET https://registry.npmjs.org/gauge
npm http 200 https://registry.npmjs.org/gauge
npm info retry fetch attempt 1 at 12:42:34 PM
npm info attempt registry request try #1 at 12:42:34 PM
npm http fetch GET https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz
npm http 200 https://registry.npmjs.org/are-we-there-yet
npm info retry fetch attempt 1 at 12:42:34 PM
npm info attempt registry request try #1 at 12:42:34 PM
npm http fetch GET https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz
npm http 200 https://registry.npmjs.org/console-control-strings
npm info retry fetch attempt 1 at 12:42:34 PM
npm info attempt registry request try #1 at 12:42:34 PM
npm http fetch GET https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz
npm http fetch 200 https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz
npm http fetch 200 https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz
npm http fetch 200 https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz
npm info attempt registry request try #1 at 12:42:34 PM
npm http request GET https://registry.npmjs.org/delegates
npm info attempt registry request try #1 at 12:42:34 PM
npm http request GET https://registry.npmjs.org/readable-stream
npm http 304 https://registry.npmjs.org/readable-stream
npm http 200 https://registry.npmjs.org/delegates
npm info retry fetch attempt 1 at 12:42:34 PM
npm info attempt registry request try #1 at 12:42:34 PM
npm http fetch GET https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz
npm http fetch 200 https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz
npm info attempt registry request try #1 at 12:42:34 PM
npm http request GET https://registry.npmjs.org/isarray
npm info attempt registry request try #1 at 12:42:34 PM
npm http request GET https://registry.npmjs.org/string_decoder
npm http 304 https://registry.npmjs.org/isarray
npm http 304 https://registry.npmjs.org/string_decoder
npm info attempt registry request try #1 at 12:42:34 PM
npm http request GET https://registry.npmjs.org/aproba
npm info attempt registry request try #1 at 12:42:34 PM
npm http request GET https://registry.npmjs.org/has-unicode
npm info attempt registry request try #1 at 12:42:34 PM
npm http request GET https://registry.npmjs.org/object-assign
npm http 200 https://registry.npmjs.org/aproba
npm http 200 https://registry.npmjs.org/has-unicode
npm http 200 https://registry.npmjs.org/object-assign
npm info retry fetch attempt 1 at 12:42:35 PM
npm info attempt registry request try #1 at 12:42:35 PM
npm http fetch GET https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz
npm info retry fetch attempt 1 at 12:42:35 PM
npm info attempt registry request try #1 at 12:42:35 PM
npm http fetch GET https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz
npm info retry fetch attempt 1 at 12:42:35 PM
npm info attempt registry request try #1 at 12:42:35 PM
npm http fetch GET https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz
npm http fetch 200 https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz
npm http fetch 200 https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz
npm http fetch 200 https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz
npm info attempt registry request try #1 at 12:42:35 PM
npm http request GET https://registry.npmjs.org/is-fullwidth-code-point
npm http 304 https://registry.npmjs.org/is-fullwidth-code-point
npm info attempt registry request try #1 at 12:42:35 PM
npm http request GET https://registry.npmjs.org/deep-extend
npm info attempt registry request try #1 at 12:42:35 PM
npm http request GET https://registry.npmjs.org/ini
npm info attempt registry request try #1 at 12:42:35 PM
npm http request GET https://registry.npmjs.org/minimist
npm http 304 https://registry.npmjs.org/minimist
npm http 200 https://registry.npmjs.org/ini
npm info retry fetch attempt 1 at 12:42:35 PM
npm info attempt registry request try #1 at 12:42:35 PM
npm http fetch GET https://registry.npmjs.org/ini/-/ini-1.3.5.tgz
npm http 200 https://registry.npmjs.org/deep-extend
npm info retry fetch attempt 1 at 12:42:35 PM
npm info attempt registry request try #1 at 12:42:35 PM
npm http fetch GET https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz
npm http fetch 200 https://registry.npmjs.org/ini/-/ini-1.3.5.tgz
npm http fetch 200 https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz
npm info attempt registry request try #1 at 12:42:35 PM
npm http request GET https://registry.npmjs.org/glob
npm http 304 https://registry.npmjs.org/glob
npm info attempt registry request try #1 at 12:42:35 PM
npm http request GET https://registry.npmjs.org/chownr
npm info attempt registry request try #1 at 12:42:35 PM
npm http request GET https://registry.npmjs.org/fs-minipass
npm info attempt registry request try #1 at 12:42:35 PM
npm http request GET https://registry.npmjs.org/minipass
npm info attempt registry request try #1 at 12:42:35 PM
npm http request GET https://registry.npmjs.org/minizlib
npm info retry fetch attempt 1 at 12:42:35 PM
npm info attempt registry request try #1 at 12:42:35 PM
npm http fetch GET https://registry.npmjs.org/yallist/-/yallist-3.0.3.tgz
npm http 200 https://registry.npmjs.org/fs-minipass
npm info retry fetch attempt 1 at 12:42:35 PM
npm info attempt registry request try #1 at 12:42:35 PM
npm http fetch GET https://registry.npmjs.org/fs-minipass/-/fs-minipass-1.2.5.tgz
npm http 200 https://registry.npmjs.org/chownr
npm http 200 https://registry.npmjs.org/minipass
npm http 200 https://registry.npmjs.org/minizlib
npm info retry fetch attempt 1 at 12:42:35 PM
npm info attempt registry request try #1 at 12:42:35 PM
npm http fetch GET https://registry.npmjs.org/chownr/-/chownr-1.1.1.tgz
npm http fetch 200 https://registry.npmjs.org/yallist/-/yallist-3.0.3.tgz
npm info retry fetch attempt 1 at 12:42:35 PM
npm info attempt registry request try #1 at 12:42:35 PM
npm http fetch GET https://registry.npmjs.org/minipass/-/minipass-2.3.5.tgz
npm info retry fetch attempt 1 at 12:42:35 PM
npm info attempt registry request try #1 at 12:42:35 PM
npm http fetch GET https://registry.npmjs.org/minizlib/-/minizlib-1.2.1.tgz
npm http fetch 200 https://registry.npmjs.org/fs-minipass/-/fs-minipass-1.2.5.tgz
npm http fetch 200 https://registry.npmjs.org/chownr/-/chownr-1.1.1.tgz
npm http fetch 200 https://registry.npmjs.org/minizlib/-/minizlib-1.2.1.tgz
npm http fetch 200 https://registry.npmjs.org/minipass/-/minipass-2.3.5.tgz
npm info lifecycle restbase@0.19.4~preinstall: restbase@0.19.4
npm info lifecycle @babel/parser@7.4.3~preinstall: @babel/parser@7.4.3
npm info lifecycle abbrev@1.1.1~preinstall: abbrev@1.1.1
npm info lifecycle acorn@6.1.1~preinstall: acorn@6.1.1
npm info lifecycle acorn-jsx@5.0.1~preinstall: acorn-jsx@5.0.1
npm info lifecycle ansi-colors@3.2.3~preinstall: ansi-colors@3.2.3
npm info lifecycle ansi-escapes@3.2.0~preinstall: ansi-escapes@3.2.0
npm info lifecycle ansi-regex@3.0.0~preinstall: ansi-regex@3.0.0
npm info lifecycle aproba@1.2.0~preinstall: aproba@1.2.0
npm info lifecycle isarray@1.0.0~preinstall: isarray@1.0.0
npm info lifecycle asap@2.0.6~preinstall: asap@2.0.6
npm info lifecycle assert-plus@1.0.0~preinstall: assert-plus@1.0.0
npm info lifecycle assertion-error@1.1.0~preinstall: assertion-error@1.1.0
npm info lifecycle astral-regex@1.0.0~preinstall: astral-regex@1.0.0
npm info lifecycle async@0.9.2~preinstall: async@0.9.2
npm info lifecycle asynckit@0.4.0~preinstall: asynckit@0.4.0
npm info lifecycle aws-sign2@0.7.0~preinstall: aws-sign2@0.7.0
npm info lifecycle aws4@1.8.0~preinstall: aws4@1.8.0
npm info lifecycle balanced-match@1.0.0~preinstall: balanced-match@1.0.0
npm info lifecycle isarray@1.0.0~preinstall: isarray@1.0.0
npm info lifecycle bluebird@3.5.4~preinstall: bluebird@3.5.4
npm info lifecycle browser-stdout@1.3.1~preinstall: browser-stdout@1.3.1
npm info lifecycle buffer-equal-constant-time@1.0.1~preinstall: buffer-equal-constant-time@1.0.1
npm info lifecycle bunyan-syslog-udp@0.2.0~preinstall: bunyan-syslog-udp@0.2.0
npm info lifecycle callsites@3.1.0~preinstall: callsites@3.1.0
npm info lifecycle camelcase@5.3.1~preinstall: camelcase@5.3.1
npm info lifecycle caseless@0.12.0~preinstall: caseless@0.12.0
npm info lifecycle long@2.4.0~preinstall: long@2.4.0
npm info lifecycle cassandra-driver@3.5.0~preinstall: cassandra-driver@3.5.0
npm info lifecycle chardet@0.7.0~preinstall: chardet@0.7.0
npm info lifecycle check-error@1.0.2~preinstall: check-error@1.0.2
npm info lifecycle chownr@1.1.1~preinstall: chownr@1.1.1
npm info lifecycle clarinet@0.11.0~preinstall: clarinet@0.11.0
npm info lifecycle cli-width@2.2.0~preinstall: cli-width@2.2.0
npm info lifecycle code-point-at@1.1.0~preinstall: code-point-at@1.1.0
npm info lifecycle color-name@1.1.3~preinstall: color-name@1.1.3
npm info lifecycle color-convert@1.9.3~preinstall: color-convert@1.9.3
npm info lifecycle ansi-styles@3.2.1~preinstall: ansi-styles@3.2.1
npm info lifecycle colors@1.3.3~preinstall: colors@1.3.3
npm info lifecycle comment-parser@0.5.4~preinstall: comment-parser@0.5.4
npm info lifecycle concat-map@0.0.1~preinstall: concat-map@0.0.1
npm info lifecycle brace-expansion@1.1.11~preinstall: brace-expansion@1.1.11
npm info lifecycle console-control-strings@1.1.0~preinstall: console-control-strings@1.1.0
npm info lifecycle core-js@2.6.5~preinstall: core-js@2.6.5
npm info lifecycle core-util-is@1.0.2~preinstall: core-util-is@1.0.2
npm info lifecycle minimist@1.2.0~preinstall: minimist@1.2.0
npm info lifecycle semver@5.7.0~preinstall: semver@5.7.0
npm info lifecycle dashdash@1.14.1~preinstall: dashdash@1.14.1
npm info lifecycle decamelize@1.2.0~preinstall: decamelize@1.2.0
npm info lifecycle deep-equal@1.0.1~preinstall: deep-equal@1.0.1
npm info lifecycle deep-extend@0.6.0~preinstall: deep-extend@0.6.0
npm info lifecycle deep-is@0.1.3~preinstall: deep-is@0.1.3
npm info lifecycle delayed-stream@1.0.0~preinstall: delayed-stream@1.0.0
npm info lifecycle combined-stream@1.0.7~preinstall: combined-stream@1.0.7
npm info lifecycle delegates@1.0.0~preinstall: delegates@1.0.0
npm info lifecycle detect-libc@1.0.3~preinstall: detect-libc@1.0.3
npm info lifecycle diff@3.5.0~preinstall: diff@3.5.0
npm info lifecycle dom-storage@2.1.0~preinstall: dom-storage@2.1.0
npm info lifecycle emoji-regex@7.0.3~preinstall: emoji-regex@7.0.3
npm info lifecycle escape-string-regexp@1.0.5~preinstall: escape-string-regexp@1.0.5
npm info lifecycle eslint-plugin-no-jquery@2.0.0~preinstall: eslint-plugin-no-jquery@2.0.0
npm info lifecycle eslint-plugin-qunit@4.0.0~preinstall: eslint-plugin-qunit@4.0.0
npm info lifecycle eslint-utils@1.3.1~preinstall: eslint-utils@1.3.1
npm info lifecycle eslint-visitor-keys@1.0.0~preinstall: eslint-visitor-keys@1.0.0
npm info lifecycle semver@5.7.0~preinstall: semver@5.7.0
npm info lifecycle espree@5.0.1~preinstall: espree@5.0.1
npm info lifecycle esprima@4.0.1~preinstall: esprima@4.0.1
npm info lifecycle estraverse@4.2.0~preinstall: estraverse@4.2.0
npm info lifecycle esquery@1.0.1~preinstall: esquery@1.0.1
npm info lifecycle esrecurse@4.2.1~preinstall: esrecurse@4.2.1
npm info lifecycle eslint-scope@4.0.3~preinstall: eslint-scope@4.0.3
npm info lifecycle esutils@2.0.2~preinstall: esutils@2.0.2
npm info lifecycle doctrine@3.0.0~preinstall: doctrine@3.0.0
npm info lifecycle extend@3.0.2~preinstall: extend@3.0.2
npm info lifecycle extsprintf@1.3.0~preinstall: extsprintf@1.3.0
npm info lifecycle fast-deep-equal@2.0.1~preinstall: fast-deep-equal@2.0.1
npm info lifecycle fast-json-stable-stringify@2.0.0~preinstall: fast-json-stable-stringify@2.0.0
npm info lifecycle fast-levenshtein@2.0.6~preinstall: fast-levenshtein@2.0.6
npm info lifecycle figures@2.0.0~preinstall: figures@2.0.0
npm info lifecycle flatted@2.0.0~preinstall: flatted@2.0.0
npm info lifecycle forever-agent@0.6.1~preinstall: forever-agent@0.6.1
npm info lifecycle fs.realpath@1.0.0~preinstall: fs.realpath@1.0.0
npm info lifecycle function-bind@1.1.1~preinstall: function-bind@1.1.1
npm info lifecycle functional-red-black-tree@1.0.1~preinstall: functional-red-black-tree@1.0.1
npm info lifecycle ansi-regex@2.1.1~preinstall: ansi-regex@2.1.1
npm info lifecycle strip-ansi@3.0.1~preinstall: strip-ansi@3.0.1
npm info lifecycle abbrev@1.1.1~preinstall: abbrev@1.1.1
npm info lifecycle ansi-regex@2.1.1~preinstall: ansi-regex@2.1.1
npm info lifecycle aproba@1.2.0~preinstall: aproba@1.2.0
npm info lifecycle balanced-match@1.0.0~preinstall: balanced-match@1.0.0
npm info lifecycle chownr@1.1.1~preinstall: chownr@1.1.1
npm info lifecycle code-point-at@1.1.0~preinstall: code-point-at@1.1.0
npm info lifecycle concat-map@0.0.1~preinstall: concat-map@0.0.1
npm info lifecycle brace-expansion@1.1.11~preinstall: brace-expansion@1.1.11
npm info lifecycle console-control-strings@1.1.0~preinstall: console-control-strings@1.1.0
npm info lifecycle core-util-is@1.0.2~preinstall: core-util-is@1.0.2
npm info lifecycle deep-extend@0.6.0~preinstall: deep-extend@0.6.0
npm info lifecycle delegates@1.0.0~preinstall: delegates@1.0.0
npm info lifecycle detect-libc@1.0.3~preinstall: detect-libc@1.0.3
npm info lifecycle fs.realpath@1.0.0~preinstall: fs.realpath@1.0.0
npm info lifecycle has-unicode@2.0.1~preinstall: has-unicode@2.0.1
npm info lifecycle inherits@2.0.3~preinstall: inherits@2.0.3
npm info lifecycle ini@1.3.5~preinstall: ini@1.3.5
npm info lifecycle isarray@1.0.0~preinstall: isarray@1.0.0
npm info lifecycle minimatch@3.0.4~preinstall: minimatch@3.0.4
npm info lifecycle ignore-walk@3.0.1~preinstall: ignore-walk@3.0.1
npm info lifecycle minimist@0.0.8~preinstall: minimist@0.0.8
npm info lifecycle mkdirp@0.5.1~preinstall: mkdirp@0.5.1
npm info lifecycle ms@2.0.0~preinstall: ms@2.0.0
npm info lifecycle debug@2.6.9~preinstall: debug@2.6.9
npm info lifecycle sax@1.2.4~preinstall: sax@1.2.4
npm info lifecycle npm-bundled@1.0.5~preinstall: npm-bundled@1.0.5
npm info lifecycle npm-packlist@1.1.12~preinstall: npm-packlist@1.1.12
npm info lifecycle number-is-nan@1.0.1~preinstall: number-is-nan@1.0.1
npm info lifecycle is-fullwidth-code-point@1.0.0~preinstall: is-fullwidth-code-point@1.0.0
npm info lifecycle object-assign@4.1.1~preinstall: object-assign@4.1.1
npm info lifecycle os-homedir@1.0.2~preinstall: os-homedir@1.0.2
npm info lifecycle os-tmpdir@1.0.2~preinstall: os-tmpdir@1.0.2
npm info lifecycle osenv@0.1.5~preinstall: osenv@0.1.5
npm info lifecycle nopt@4.0.1~preinstall: nopt@4.0.1
npm info lifecycle path-is-absolute@1.0.1~preinstall: path-is-absolute@1.0.1
npm info lifecycle process-nextick-args@2.0.0~preinstall: process-nextick-args@2.0.0
npm info lifecycle minimist@1.2.0~preinstall: minimist@1.2.0
npm info lifecycle safe-buffer@5.1.2~preinstall: safe-buffer@5.1.2
npm info lifecycle safer-buffer@2.1.2~preinstall: safer-buffer@2.1.2
npm info lifecycle iconv-lite@0.4.24~preinstall: iconv-lite@0.4.24
npm info lifecycle needle@2.2.4~preinstall: needle@2.2.4
npm info lifecycle semver@5.5.0~preinstall: semver@5.5.0
npm info lifecycle set-blocking@2.0.0~preinstall: set-blocking@2.0.0
npm info lifecycle signal-exit@3.0.2~preinstall: signal-exit@3.0.2
npm info lifecycle string_decoder@1.1.1~preinstall: string_decoder@1.1.1
npm info lifecycle strip-ansi@3.0.1~preinstall: strip-ansi@3.0.1
npm info lifecycle string-width@1.0.2~preinstall: string-width@1.0.2
npm info lifecycle strip-json-comments@2.0.1~preinstall: strip-json-comments@2.0.1
npm info lifecycle rc@1.2.8~preinstall: rc@1.2.8
npm info lifecycle util-deprecate@1.0.2~preinstall: util-deprecate@1.0.2
npm info lifecycle readable-stream@2.3.6~preinstall: readable-stream@2.3.6
npm info lifecycle are-we-there-yet@1.1.5~preinstall: are-we-there-yet@1.1.5
npm info lifecycle wide-align@1.1.3~preinstall: wide-align@1.1.3
npm info lifecycle gauge@2.7.4~preinstall: gauge@2.7.4
npm info lifecycle npmlog@4.1.2~preinstall: npmlog@4.1.2
npm info lifecycle wrappy@1.0.2~preinstall: wrappy@1.0.2
npm info lifecycle once@1.4.0~preinstall: once@1.4.0
npm info lifecycle inflight@1.0.6~preinstall: inflight@1.0.6
npm info lifecycle glob@7.1.2~preinstall: glob@7.1.2
npm info lifecycle rimraf@2.6.2~preinstall: rimraf@2.6.2
npm info lifecycle yallist@3.0.2~preinstall: yallist@3.0.2
npm info lifecycle minipass@2.3.5~preinstall: minipass@2.3.5
npm info lifecycle fs-minipass@1.2.5~preinstall: fs-minipass@1.2.5
npm info lifecycle minizlib@1.1.1~preinstall: minizlib@1.1.1
npm info lifecycle tar@4.4.6~preinstall: tar@4.4.6
npm info lifecycle node-pre-gyp@0.11.0~preinstall: node-pre-gyp@0.11.0
npm info lifecycle gelfling@0.3.1~preinstall: gelfling@0.3.1
npm info lifecycle gelf-stream@1.1.1~preinstall: gelf-stream@1.1.1
npm info lifecycle generic-pool@3.7.1~preinstall: generic-pool@3.7.1
npm info lifecycle get-caller-file@1.0.3~preinstall: get-caller-file@1.0.3
npm info lifecycle get-func-name@2.0.0~preinstall: get-func-name@2.0.0
npm info lifecycle getpass@0.1.7~preinstall: getpass@0.1.7
npm info lifecycle globals@11.11.0~preinstall: globals@11.11.0
npm info lifecycle growl@1.10.5~preinstall: growl@1.10.5
npm info lifecycle har-schema@2.0.0~preinstall: har-schema@2.0.0
npm info lifecycle has@1.0.3~preinstall: has@1.0.3
npm info lifecycle has-flag@3.0.0~preinstall: has-flag@3.0.0
npm info lifecycle has-symbols@1.0.0~preinstall: has-symbols@1.0.0
npm info lifecycle has-unicode@2.0.1~preinstall: has-unicode@2.0.1
npm info lifecycle hat@0.0.3~preinstall: hat@0.0.3
npm info lifecycle he@1.2.0~preinstall: he@1.2.0
npm info lifecycle hot-shots@5.9.2~preinstall: hot-shots@5.9.2
npm info lifecycle ignore@4.0.6~preinstall: ignore@4.0.6
npm info lifecycle imurmurhash@0.1.4~preinstall: imurmurhash@0.1.4
npm info lifecycle inherits@2.0.3~preinstall: inherits@2.0.3
npm info lifecycle ini@1.3.5~preinstall: ini@1.3.5
npm info lifecycle ansi-regex@4.1.0~preinstall: ansi-regex@4.1.0
npm info lifecycle strip-ansi@5.2.0~preinstall: strip-ansi@5.2.0
npm info lifecycle invert-kv@2.0.0~preinstall: invert-kv@2.0.0
npm info lifecycle is-buffer@2.0.3~preinstall: is-buffer@2.0.3
npm info lifecycle flat@4.1.0~preinstall: flat@4.1.0
npm info lifecycle is-callable@1.1.4~preinstall: is-callable@1.1.4
npm info lifecycle is-date-object@1.0.1~preinstall: is-date-object@1.0.1
npm info lifecycle is-fullwidth-code-point@2.0.0~preinstall: is-fullwidth-code-point@2.0.0
npm info lifecycle is-promise@2.1.0~preinstall: is-promise@2.1.0
npm info lifecycle is-regex@1.0.4~preinstall: is-regex@1.0.4
npm info lifecycle is-stream@1.1.0~preinstall: is-stream@1.1.0
npm info lifecycle is-symbol@1.0.2~preinstall: is-symbol@1.0.2
npm info lifecycle es-to-primitive@1.2.0~preinstall: es-to-primitive@1.2.0
npm info lifecycle is-typedarray@1.0.0~preinstall: is-typedarray@1.0.0
npm info lifecycle isarray@0.0.1~preinstall: isarray@0.0.1
npm info lifecycle isexe@2.0.0~preinstall: isexe@2.0.0
npm info lifecycle isstream@0.1.2~preinstall: isstream@0.1.2
npm info lifecycle istanbul-lib-coverage@2.0.3~preinstall: istanbul-lib-coverage@2.0.3
npm info lifecycle semver@5.7.0~preinstall: semver@5.7.0
npm info lifecycle js-tokens@4.0.0~preinstall: js-tokens@4.0.0
npm info lifecycle jsbn@0.1.1~preinstall: jsbn@0.1.1
npm info lifecycle jsdoctypeparser@3.1.0~preinstall: jsdoctypeparser@3.1.0
npm info lifecycle jsesc@2.5.2~preinstall: jsesc@2.5.2
npm info lifecycle json-schema@0.2.3~preinstall: json-schema@0.2.3
npm info lifecycle json-schema-traverse@0.4.1~preinstall: json-schema-traverse@0.4.1
npm info lifecycle json-stable-stringify-without-jsonify@1.0.1~preinstall: json-stable-stringify-without-jsonify@1.0.1
npm info lifecycle json-stringify-safe@5.0.1~preinstall: json-stringify-safe@5.0.1
npm info lifecycle jsonc-parser@2.1.0~preinstall: jsonc-parser@2.1.0
npm info lifecycle semver@5.7.0~preinstall: semver@5.7.0
npm info lifecycle isarray@1.0.0~preinstall: isarray@1.0.0
npm info lifecycle kad-localstorage@0.0.7~preinstall: kad-localstorage@0.0.7
npm info lifecycle isarray@1.0.0~preinstall: isarray@1.0.0
npm info lifecycle lodash@3.10.1~preinstall: lodash@3.10.1
npm info lifecycle ms@0.7.3~preinstall: ms@0.7.3
npm info lifecycle lcid@2.0.0~preinstall: lcid@2.0.0
npm info lifecycle lcov-parse@0.0.10~preinstall: lcov-parse@0.0.10
npm info lifecycle isarray@1.0.0~preinstall: isarray@1.0.0
npm info lifecycle lodash@4.17.11~preinstall: lodash@4.17.11
npm info lifecycle lodash._baseclone@4.5.7~preinstall: lodash._baseclone@4.5.7
npm info lifecycle lodash.clone@4.3.2~preinstall: lodash.clone@4.3.2
npm info lifecycle dnscache@1.0.1~preinstall: dnscache@1.0.1
npm info lifecycle lodash.includes@4.3.0~preinstall: lodash.includes@4.3.0
npm info lifecycle lodash.isboolean@3.0.3~preinstall: lodash.isboolean@3.0.3
npm info lifecycle lodash.isinteger@4.0.4~preinstall: lodash.isinteger@4.0.4
npm info lifecycle lodash.isnumber@3.0.3~preinstall: lodash.isnumber@3.0.3
npm info lifecycle lodash.isplainobject@4.0.6~preinstall: lodash.isplainobject@4.0.6
npm info lifecycle lodash.isstring@4.0.1~preinstall: lodash.isstring@4.0.1
npm info lifecycle lodash.once@4.1.1~preinstall: lodash.once@4.1.1
npm info lifecycle log-driver@1.2.7~preinstall: log-driver@1.2.7
npm info lifecycle long@4.0.0~preinstall: long@4.0.0
npm info lifecycle cassandra-uuid@0.1.0~preinstall: cassandra-uuid@0.1.0
npm info lifecycle merge@1.2.1~preinstall: merge@1.2.1
npm info lifecycle mime-db@1.38.0~preinstall: mime-db@1.38.0
npm info lifecycle mime-types@2.1.22~preinstall: mime-types@2.1.22
npm info lifecycle form-data@2.3.3~preinstall: form-data@2.3.3
npm info lifecycle mimic-fn@2.1.0~preinstall: mimic-fn@2.1.0
npm info lifecycle minimatch@3.0.4~preinstall: minimatch@3.0.4
npm info lifecycle ignore-walk@3.0.1~preinstall: ignore-walk@3.0.1
npm info lifecycle minimist@0.0.8~preinstall: minimist@0.0.8
npm info lifecycle yallist@3.0.3~preinstall: yallist@3.0.3
npm info lifecycle mkdirp@0.5.1~preinstall: mkdirp@0.5.1
npm info lifecycle bluebird@2.11.0~preinstall: bluebird@2.11.0
npm info lifecycle ansi-regex@4.1.0~preinstall: ansi-regex@4.1.0
npm info lifecycle get-caller-file@2.0.5~preinstall: get-caller-file@2.0.5
npm info lifecycle require-main-filename@2.0.0~preinstall: require-main-filename@2.0.0
npm info lifecycle strip-ansi@5.2.0~preinstall: strip-ansi@5.2.0
npm info lifecycle string-width@3.1.0~preinstall: string-width@3.1.0
npm info lifecycle supports-color@6.0.0~preinstall: supports-color@6.0.0
npm info lifecycle yargs-parser@13.0.0~preinstall: yargs-parser@13.0.0
npm info lifecycle moment@2.24.0~preinstall: moment@2.24.0
npm info lifecycle ms@2.1.1~preinstall: ms@2.1.1
npm info lifecycle debug@4.1.1~preinstall: debug@4.1.1
npm info lifecycle debug@3.2.6~preinstall: debug@3.2.6
npm info lifecycle isarray@1.0.0~preinstall: isarray@1.0.0
npm info lifecycle mute-stream@0.0.7~preinstall: mute-stream@0.0.7
npm info lifecycle nan@2.13.2~preinstall: nan@2.13.2
npm info lifecycle dtrace-provider@0.8.7~preinstall: dtrace-provider@0.8.7
npm info lifecycle gc-stats@1.2.1~preinstall: gc-stats@1.2.1
npm info lifecycle heapdump@0.3.12~preinstall: heapdump@0.3.12
npm info lifecycle natural-compare@1.4.0~preinstall: natural-compare@1.4.0
npm info lifecycle ncp@2.0.0~preinstall: ncp@2.0.0
npm info lifecycle ms@2.0.0~preinstall: ms@2.0.0
npm info lifecycle debug@2.6.9~preinstall: debug@2.6.9
npm info lifecycle nice-try@1.0.5~preinstall: nice-try@1.0.5
npm info lifecycle semver@5.7.0~preinstall: semver@5.7.0
npm info lifecycle semver@5.7.0~preinstall: semver@5.7.0
npm info lifecycle npm-bundled@1.0.6~preinstall: npm-bundled@1.0.6
npm info lifecycle npm-packlist@1.4.1~preinstall: npm-packlist@1.4.1
npm info lifecycle number-is-nan@1.0.1~preinstall: number-is-nan@1.0.1
npm info lifecycle is-fullwidth-code-point@1.0.0~preinstall: is-fullwidth-code-point@1.0.0
npm info lifecycle string-width@1.0.2~preinstall: string-width@1.0.2
npm info lifecycle ansi-regex@3.0.0~preinstall: ansi-regex@3.0.0
npm info lifecycle archy@1.0.0~preinstall: archy@1.0.0
npm info lifecycle arrify@1.0.1~preinstall: arrify@1.0.1
npm info lifecycle balanced-match@1.0.0~preinstall: balanced-match@1.0.0
npm info lifecycle camelcase@5.0.0~preinstall: camelcase@5.0.0
npm info lifecycle code-point-at@1.1.0~preinstall: code-point-at@1.1.0
npm info lifecycle commander@2.17.1~preinstall: commander@2.17.1
npm info lifecycle commondir@1.0.1~preinstall: commondir@1.0.1
npm info lifecycle concat-map@0.0.1~preinstall: concat-map@0.0.1
npm info lifecycle brace-expansion@1.1.11~preinstall: brace-expansion@1.1.11
npm info lifecycle decamelize@1.2.0~preinstall: decamelize@1.2.0
npm info lifecycle es6-error@4.1.1~preinstall: es6-error@4.1.1
npm info lifecycle fs.realpath@1.0.0~preinstall: fs.realpath@1.0.0
npm info lifecycle get-caller-file@1.0.3~preinstall: get-caller-file@1.0.3
npm info lifecycle graceful-fs@4.1.15~preinstall: graceful-fs@4.1.15
npm info lifecycle source-map@0.6.1~preinstall: source-map@0.6.1
npm info lifecycle has-flag@3.0.0~preinstall: has-flag@3.0.0
npm info lifecycle hosted-git-info@2.7.1~preinstall: hosted-git-info@2.7.1
npm info lifecycle imurmurhash@0.1.4~preinstall: imurmurhash@0.1.4
npm info lifecycle inherits@2.0.3~preinstall: inherits@2.0.3
npm info lifecycle invert-kv@2.0.0~preinstall: invert-kv@2.0.0
npm info lifecycle is-arrayish@0.2.1~preinstall: is-arrayish@0.2.1
npm info lifecycle error-ex@1.3.2~preinstall: error-ex@1.3.2
npm info lifecycle is-fullwidth-code-point@2.0.0~preinstall: is-fullwidth-code-point@2.0.0
npm info lifecycle is-stream@1.1.0~preinstall: is-stream@1.1.0
npm info lifecycle hasha@3.0.0~preinstall: hasha@3.0.0
npm info lifecycle isexe@2.0.0~preinstall: isexe@2.0.0
npm info lifecycle istanbul-lib-coverage@2.0.3~preinstall: istanbul-lib-coverage@2.0.3
npm info lifecycle supports-color@6.1.0~preinstall: supports-color@6.1.0
npm info lifecycle source-map@0.6.1~preinstall: source-map@0.6.1
npm info lifecycle json-parse-better-errors@1.0.2~preinstall: json-parse-better-errors@1.0.2
npm info lifecycle lcid@2.0.0~preinstall: lcid@2.0.0
npm info lifecycle lodash@4.17.11~preinstall: lodash@4.17.11
npm info lifecycle async@2.6.2~preinstall: async@2.6.2
npm info lifecycle lodash.flattendeep@4.4.0~preinstall: lodash.flattendeep@4.4.0
npm info lifecycle source-map@0.6.1~preinstall: source-map@0.6.1
npm info lifecycle merge-source-map@1.1.0~preinstall: merge-source-map@1.1.0
npm info lifecycle mimic-fn@1.2.0~preinstall: mimic-fn@1.2.0
npm info lifecycle minimatch@3.0.4~preinstall: minimatch@3.0.4
npm info lifecycle minimist@0.0.10~preinstall: minimist@0.0.10
npm info lifecycle minimist@0.0.8~preinstall: minimist@0.0.8
npm info lifecycle mkdirp@0.5.1~preinstall: mkdirp@0.5.1
npm info lifecycle ms@2.1.1~preinstall: ms@2.1.1
npm info lifecycle debug@4.1.1~preinstall: debug@4.1.1
npm info lifecycle nice-try@1.0.5~preinstall: nice-try@1.0.5
npm info lifecycle number-is-nan@1.0.1~preinstall: number-is-nan@1.0.1
npm info lifecycle os-homedir@1.0.2~preinstall: os-homedir@1.0.2
npm info lifecycle p-defer@1.0.0~preinstall: p-defer@1.0.0
npm info lifecycle map-age-cleaner@0.1.3~preinstall: map-age-cleaner@0.1.3
npm info lifecycle p-finally@1.0.0~preinstall: p-finally@1.0.0
npm info lifecycle p-is-promise@2.0.0~preinstall: p-is-promise@2.0.0
npm info lifecycle mem@4.1.0~preinstall: mem@4.1.0
npm info lifecycle p-try@2.0.0~preinstall: p-try@2.0.0
npm info lifecycle p-limit@2.1.0~preinstall: p-limit@2.1.0
npm info lifecycle p-locate@3.0.0~preinstall: p-locate@3.0.0
npm info lifecycle parse-json@4.0.0~preinstall: parse-json@4.0.0
npm info lifecycle path-exists@3.0.0~preinstall: path-exists@3.0.0
npm info lifecycle locate-path@3.0.0~preinstall: locate-path@3.0.0
npm info lifecycle find-up@3.0.0~preinstall: find-up@3.0.0
npm info lifecycle path-is-absolute@1.0.1~preinstall: path-is-absolute@1.0.1
npm info lifecycle path-key@2.0.1~preinstall: path-key@2.0.1
npm info lifecycle npm-run-path@2.0.2~preinstall: npm-run-path@2.0.2
npm info lifecycle path-parse@1.0.6~preinstall: path-parse@1.0.6
npm info lifecycle pify@3.0.0~preinstall: pify@3.0.0
npm info lifecycle make-dir@1.3.0~preinstall: make-dir@1.3.0
npm info lifecycle istanbul-lib-report@2.0.4~preinstall: istanbul-lib-report@2.0.4
npm info lifecycle path-type@3.0.0~preinstall: path-type@3.0.0
npm info lifecycle pkg-dir@3.0.0~preinstall: pkg-dir@3.0.0
npm info lifecycle find-cache-dir@2.0.0~preinstall: find-cache-dir@2.0.0
npm info lifecycle pseudomap@1.0.2~preinstall: pseudomap@1.0.2
npm info lifecycle release-zalgo@1.0.0~preinstall: release-zalgo@1.0.0
npm info lifecycle package-hash@3.0.0~preinstall: package-hash@3.0.0
npm info lifecycle require-directory@2.1.1~preinstall: require-directory@2.1.1
npm info lifecycle require-main-filename@1.0.1~preinstall: require-main-filename@1.0.1
npm info lifecycle resolve@1.10.0~preinstall: resolve@1.10.0
npm info lifecycle resolve-from@4.0.0~preinstall: resolve-from@4.0.0
npm info lifecycle safe-buffer@5.1.2~preinstall: safe-buffer@5.1.2
npm info lifecycle convert-source-map@1.6.0~preinstall: convert-source-map@1.6.0
npm info lifecycle semver@5.6.0~preinstall: semver@5.6.0
npm info lifecycle set-blocking@2.0.0~preinstall: set-blocking@2.0.0
npm info lifecycle shebang-regex@1.0.0~preinstall: shebang-regex@1.0.0
npm info lifecycle shebang-command@1.2.0~preinstall: shebang-command@1.2.0
npm info lifecycle signal-exit@3.0.2~preinstall: signal-exit@3.0.2
npm info lifecycle spdx-exceptions@2.2.0~preinstall: spdx-exceptions@2.2.0
npm info lifecycle spdx-license-ids@3.0.3~preinstall: spdx-license-ids@3.0.3
npm info lifecycle spdx-expression-parse@3.0.0~preinstall: spdx-expression-parse@3.0.0
npm info lifecycle spdx-correct@3.1.0~preinstall: spdx-correct@3.1.0
npm info lifecycle strip-ansi@4.0.0~preinstall: strip-ansi@4.0.0
npm info lifecycle string-width@2.1.1~preinstall: string-width@2.1.1
npm info lifecycle strip-bom@3.0.0~preinstall: strip-bom@3.0.0
npm info lifecycle default-require-extensions@2.0.0~preinstall: default-require-extensions@2.0.0
npm info lifecycle append-transform@1.0.0~preinstall: append-transform@1.0.0
npm info lifecycle istanbul-lib-hook@2.0.3~preinstall: istanbul-lib-hook@2.0.3
npm info lifecycle load-json-file@4.0.0~preinstall: load-json-file@4.0.0
npm info lifecycle strip-eof@1.0.0~preinstall: strip-eof@1.0.0
npm info lifecycle source-map@0.6.1~preinstall: source-map@0.6.1
npm info lifecycle uglify-js@3.4.9~preinstall: uglify-js@3.4.9
npm info lifecycle uuid@3.3.2~preinstall: uuid@3.3.2
npm info lifecycle validate-npm-package-license@3.0.4~preinstall: validate-npm-package-license@3.0.4
npm info lifecycle normalize-package-data@2.5.0~preinstall: normalize-package-data@2.5.0
npm info lifecycle read-pkg@3.0.0~preinstall: read-pkg@3.0.0
npm info lifecycle read-pkg-up@4.0.0~preinstall: read-pkg-up@4.0.0
npm info lifecycle test-exclude@5.1.0~preinstall: test-exclude@5.1.0
npm info lifecycle which@1.3.1~preinstall: which@1.3.1
npm info lifecycle cross-spawn@6.0.5~preinstall: cross-spawn@6.0.5
npm info lifecycle which-module@2.0.0~preinstall: which-module@2.0.0
npm info lifecycle wordwrap@0.0.3~preinstall: wordwrap@0.0.3
npm info lifecycle optimist@0.6.1~preinstall: optimist@0.6.1
npm info lifecycle handlebars@4.1.0~preinstall: handlebars@4.1.0
npm info lifecycle istanbul-reports@2.1.1~preinstall: istanbul-reports@2.1.1
npm info lifecycle ansi-regex@2.1.1~preinstall: ansi-regex@2.1.1
npm info lifecycle is-fullwidth-code-point@1.0.0~preinstall: is-fullwidth-code-point@1.0.0
npm info lifecycle strip-ansi@3.0.1~preinstall: strip-ansi@3.0.1
npm info lifecycle string-width@1.0.2~preinstall: string-width@1.0.2
npm info lifecycle wrap-ansi@2.1.0~preinstall: wrap-ansi@2.1.0
npm info lifecycle cliui@4.1.0~preinstall: cliui@4.1.0
npm info lifecycle wrappy@1.0.2~preinstall: wrappy@1.0.2
npm info lifecycle once@1.4.0~preinstall: once@1.4.0
npm info lifecycle end-of-stream@1.4.1~preinstall: end-of-stream@1.4.1
npm info lifecycle inflight@1.0.6~preinstall: inflight@1.0.6
npm info lifecycle glob@7.1.3~preinstall: glob@7.1.3
npm info lifecycle rimraf@2.6.3~preinstall: rimraf@2.6.3
npm info lifecycle istanbul-lib-source-maps@3.0.2~preinstall: istanbul-lib-source-maps@3.0.2
npm info lifecycle pump@3.0.0~preinstall: pump@3.0.0
npm info lifecycle get-stream@4.1.0~preinstall: get-stream@4.1.0
npm info lifecycle execa@1.0.0~preinstall: execa@1.0.0
npm info lifecycle os-locale@3.1.0~preinstall: os-locale@3.1.0
npm info lifecycle write-file-atomic@2.4.2~preinstall: write-file-atomic@2.4.2
npm info lifecycle caching-transform@3.0.1~preinstall: caching-transform@3.0.1
npm info lifecycle y18n@4.0.0~preinstall: y18n@4.0.0
npm info lifecycle yallist@2.1.2~preinstall: yallist@2.1.2
npm info lifecycle lru-cache@4.1.5~preinstall: lru-cache@4.1.5
npm info lifecycle cross-spawn@4.0.2~preinstall: cross-spawn@4.0.2
npm info lifecycle foreground-child@1.5.6~preinstall: foreground-child@1.5.6
npm info lifecycle spawn-wrap@1.4.2~preinstall: spawn-wrap@1.4.2
npm info lifecycle yargs-parser@11.1.1~preinstall: yargs-parser@11.1.1
npm info lifecycle yargs@12.0.5~preinstall: yargs@12.0.5
npm info lifecycle oauth-sign@0.9.0~preinstall: oauth-sign@0.9.0
npm info lifecycle object-assign@4.1.1~preinstall: object-assign@4.1.1
npm info lifecycle object-keys@1.1.1~preinstall: object-keys@1.1.1
npm info lifecycle define-properties@1.1.3~preinstall: define-properties@1.1.3
npm info lifecycle es-abstract@1.13.0~preinstall: es-abstract@1.13.0
npm info lifecycle object.assign@4.1.0~preinstall: object.assign@4.1.0
npm info lifecycle object.getownpropertydescriptors@2.0.3~preinstall: object.getownpropertydescriptors@2.0.3
npm info lifecycle node-environment-flags@1.0.4~preinstall: node-environment-flags@1.0.4
npm info lifecycle mimic-fn@1.2.0~preinstall: mimic-fn@1.2.0
npm info lifecycle onetime@2.0.1~preinstall: onetime@2.0.1
npm info lifecycle os-homedir@1.0.2~preinstall: os-homedir@1.0.2
npm info lifecycle os-tmpdir@1.0.2~preinstall: os-tmpdir@1.0.2
npm info lifecycle osenv@0.1.5~preinstall: osenv@0.1.5
npm info lifecycle nopt@4.0.1~preinstall: nopt@4.0.1
npm info lifecycle p-defer@1.0.0~preinstall: p-defer@1.0.0
npm info lifecycle map-age-cleaner@0.1.3~preinstall: map-age-cleaner@0.1.3
npm info lifecycle p-finally@1.0.0~preinstall: p-finally@1.0.0
npm info lifecycle p-is-promise@2.1.0~preinstall: p-is-promise@2.1.0
npm info lifecycle mem@4.3.0~preinstall: mem@4.3.0
npm info lifecycle p-try@2.2.0~preinstall: p-try@2.2.0
npm info lifecycle p-limit@2.2.0~preinstall: p-limit@2.2.0
npm info lifecycle p-locate@3.0.0~preinstall: p-locate@3.0.0
npm info lifecycle parent-module@1.0.1~preinstall: parent-module@1.0.1
npm info lifecycle path-exists@3.0.0~preinstall: path-exists@3.0.0
npm info lifecycle locate-path@3.0.0~preinstall: locate-path@3.0.0
npm info lifecycle find-up@3.0.0~preinstall: find-up@3.0.0
npm info lifecycle path-is-absolute@1.0.1~preinstall: path-is-absolute@1.0.1
npm info lifecycle path-is-inside@1.0.2~preinstall: path-is-inside@1.0.2
npm info lifecycle path-key@2.0.1~preinstall: path-key@2.0.1
npm info lifecycle npm-run-path@2.0.2~preinstall: npm-run-path@2.0.2
npm info lifecycle pathval@1.1.0~preinstall: pathval@1.1.0
npm info lifecycle performance-now@2.1.0~preinstall: performance-now@2.1.0
npm info lifecycle prelude-ls@1.1.2~preinstall: prelude-ls@1.1.2
npm info lifecycle process-nextick-args@2.0.0~preinstall: process-nextick-args@2.0.0
npm info lifecycle progress@2.0.3~preinstall: progress@2.0.3
npm info lifecycle propagate@1.0.0~preinstall: propagate@1.0.0
npm info lifecycle pseudomap@1.0.2~preinstall: pseudomap@1.0.2
npm info lifecycle psl@1.1.31~preinstall: psl@1.1.31
npm info lifecycle punycode@2.1.1~preinstall: punycode@2.1.1
npm info lifecycle qs@6.5.2~preinstall: qs@6.5.2
npm info lifecycle minimist@1.2.0~preinstall: minimist@1.2.0
npm info lifecycle regexp-utils@0.3.2~preinstall: regexp-utils@0.3.2
npm info lifecycle regexpp@2.0.1~preinstall: regexpp@2.0.1
npm info lifecycle repeat-string@0.2.2~preinstall: repeat-string@0.2.2
npm info lifecycle require-directory@2.1.1~preinstall: require-directory@2.1.1
npm info lifecycle require-main-filename@1.0.1~preinstall: require-main-filename@1.0.1
npm info lifecycle resolve-from@4.0.0~preinstall: resolve-from@4.0.0
npm info lifecycle import-fresh@3.0.0~preinstall: import-fresh@3.0.0
npm info lifecycle bluebird@2.3.11~preinstall: bluebird@2.3.11
npm info lifecycle routeswitch@0.6.3~preinstall: routeswitch@0.6.3
npm info lifecycle run-async@2.3.0~preinstall: run-async@2.3.0
npm info lifecycle safe-buffer@5.1.2~preinstall: safe-buffer@5.1.2
npm info lifecycle string_decoder@1.1.1~preinstall: string_decoder@1.1.1
npm info lifecycle string_decoder@1.1.1~preinstall: string_decoder@1.1.1
npm info lifecycle ecdsa-sig-formatter@1.0.11~preinstall: ecdsa-sig-formatter@1.0.11
npm info lifecycle jwa@1.4.1~preinstall: jwa@1.4.1
npm info lifecycle jws@3.2.2~preinstall: jws@3.2.2
npm info lifecycle string_decoder@1.1.1~preinstall: string_decoder@1.1.1
npm info lifecycle string_decoder@1.1.1~preinstall: string_decoder@1.1.1
npm info lifecycle string_decoder@1.1.1~preinstall: string_decoder@1.1.1
npm info lifecycle minipass@2.3.5~preinstall: minipass@2.3.5
npm info lifecycle fs-minipass@1.2.5~preinstall: fs-minipass@1.2.5
npm info lifecycle minizlib@1.2.1~preinstall: minizlib@1.2.1
npm info lifecycle string_decoder@1.1.1~preinstall: string_decoder@1.1.1
npm info lifecycle safe-json-stringify@1.2.0~preinstall: safe-json-stringify@1.2.0
npm info lifecycle safer-buffer@2.1.2~preinstall: safer-buffer@2.1.2
npm info lifecycle asn1@0.2.4~preinstall: asn1@0.2.4
npm info lifecycle ecc-jsbn@0.1.2~preinstall: ecc-jsbn@0.1.2
npm info lifecycle iconv-lite@0.4.24~preinstall: iconv-lite@0.4.24
npm info lifecycle sax@1.2.4~preinstall: sax@1.2.4
npm info lifecycle needle@2.2.4~preinstall: needle@2.2.4
npm info lifecycle semaphore@1.1.0~preinstall: semaphore@1.1.0
npm info lifecycle semver@5.7.0~preinstall: semver@5.7.0
npm info lifecycle set-blocking@2.0.0~preinstall: set-blocking@2.0.0
npm info lifecycle shebang-regex@1.0.0~preinstall: shebang-regex@1.0.0
npm info lifecycle shebang-command@1.2.0~preinstall: shebang-command@1.2.0
npm info lifecycle signal-exit@3.0.2~preinstall: signal-exit@3.0.2
npm info lifecycle restore-cursor@2.0.0~preinstall: restore-cursor@2.0.0
npm info lifecycle cli-cursor@2.1.0~preinstall: cli-cursor@2.1.0
npm info lifecycle slice-ansi@2.1.0~preinstall: slice-ansi@2.1.0
npm info lifecycle source-map@0.5.7~preinstall: source-map@0.5.7
npm info lifecycle sprintf-js@1.0.3~preinstall: sprintf-js@1.0.3
npm info lifecycle argparse@1.0.10~preinstall: argparse@1.0.10
npm info lifecycle js-yaml@3.13.1~preinstall: js-yaml@3.13.1
npm info lifecycle restbase-mod-table-spec@1.1.2~preinstall: restbase-mod-table-spec@1.1.2
npm info lifecycle js-yaml@3.13.0~preinstall: js-yaml@3.13.0
npm info lifecycle nan@2.10.0~preinstall: nan@2.10.0
npm info lifecycle streamsearch@0.1.2~preinstall: streamsearch@0.1.2
npm info lifecycle string_decoder@0.10.31~preinstall: string_decoder@0.10.31
npm info lifecycle readable-stream@1.1.14~preinstall: readable-stream@1.1.14
npm info lifecycle dicer@0.2.5~preinstall: dicer@0.2.5
npm info lifecycle busboy@0.2.14~preinstall: busboy@0.2.14
npm info lifecycle string-align@0.2.0~preinstall: string-align@0.2.0
npm info lifecycle strip-ansi@4.0.0~preinstall: strip-ansi@4.0.0
npm info lifecycle string-width@2.1.1~preinstall: string-width@2.1.1
npm info lifecycle strip-eof@1.0.0~preinstall: strip-eof@1.0.0
npm info lifecycle strip-json-comments@2.0.1~preinstall: strip-json-comments@2.0.1
npm info lifecycle rc@1.2.8~preinstall: rc@1.2.8
npm info lifecycle supports-color@5.5.0~preinstall: supports-color@5.5.0
npm info lifecycle chalk@2.4.2~preinstall: chalk@2.4.2
npm info lifecycle @babel/highlight@7.0.0~preinstall: @babel/highlight@7.0.0
npm info lifecycle @babel/code-frame@7.0.0~preinstall: @babel/code-frame@7.0.0
npm info lifecycle log-symbols@2.2.0~preinstall: log-symbols@2.2.0
npm info lifecycle swagger-ui-dist@3.22.0~preinstall: swagger-ui-dist@3.22.0
npm info lifecycle ansi-regex@4.1.0~preinstall: ansi-regex@4.1.0
npm info lifecycle strip-ansi@5.2.0~preinstall: strip-ansi@5.2.0
npm info lifecycle string-width@3.1.0~preinstall: string-width@3.1.0
npm info lifecycle yallist@3.0.3~preinstall: yallist@3.0.3
npm info lifecycle tar@4.4.8~preinstall: tar@4.4.8
npm info lifecycle tassembly@0.2.3~preinstall: tassembly@0.2.3
npm info lifecycle template-expression-compiler@0.1.10~preinstall: template-expression-compiler@0.1.10
npm info lifecycle swagger-router@0.7.2~preinstall: swagger-router@0.7.2
npm info lifecycle text-table@0.2.0~preinstall: text-table@0.2.0
npm info lifecycle through@2.3.8~preinstall: through@2.3.8
npm info lifecycle tmp@0.0.33~preinstall: tmp@0.0.33
npm info lifecycle external-editor@3.0.3~preinstall: external-editor@3.0.3
npm info lifecycle to-fast-properties@2.0.0~preinstall: to-fast-properties@2.0.0
npm info lifecycle @babel/types@7.4.0~preinstall: @babel/types@7.4.0
npm info lifecycle @babel/helper-get-function-arity@7.0.0~preinstall: @babel/helper-get-function-arity@7.0.0
npm info lifecycle @babel/helper-split-export-declaration@7.4.0~preinstall: @babel/helper-split-export-declaration@7.4.0
npm info lifecycle @babel/template@7.4.0~preinstall: @babel/template@7.4.0
npm info lifecycle @babel/helper-function-name@7.1.0~preinstall: @babel/helper-function-name@7.1.0
npm info lifecycle punycode@1.4.1~preinstall: punycode@1.4.1
npm info lifecycle tough-cookie@2.4.3~preinstall: tough-cookie@2.4.3
npm info lifecycle trim-right@1.0.1~preinstall: trim-right@1.0.1
npm info lifecycle @babel/generator@7.4.0~preinstall: @babel/generator@7.4.0
npm info lifecycle @babel/traverse@7.4.3~preinstall: @babel/traverse@7.4.3
npm info lifecycle istanbul-lib-instrument@3.1.0~preinstall: istanbul-lib-instrument@3.1.0
npm info lifecycle tslib@1.9.3~preinstall: tslib@1.9.3
npm info lifecycle rxjs@6.4.0~preinstall: rxjs@6.4.0
npm info lifecycle inquirer@6.2.2~preinstall: inquirer@6.2.2
npm info lifecycle tunnel-agent@0.6.0~preinstall: tunnel-agent@0.6.0
npm info lifecycle tweetnacl@0.14.5~preinstall: tweetnacl@0.14.5
npm info lifecycle bcrypt-pbkdf@1.0.2~preinstall: bcrypt-pbkdf@1.0.2
npm info lifecycle sshpk@1.16.1~preinstall: sshpk@1.16.1
npm info lifecycle type-check@0.3.2~preinstall: type-check@0.3.2
npm info lifecycle levn@0.3.0~preinstall: levn@0.3.0
npm info lifecycle type-detect@4.0.8~preinstall: type-detect@4.0.8
npm info lifecycle deep-eql@3.0.1~preinstall: deep-eql@3.0.1
npm info lifecycle chai@4.2.0~preinstall: chai@4.2.0
npm info lifecycle uri-js@4.2.2~preinstall: uri-js@4.2.2
npm info lifecycle ajv@6.10.0~preinstall: ajv@6.10.0
npm info lifecycle har-validator@5.1.3~preinstall: har-validator@5.1.3
npm info lifecycle table@5.2.3~preinstall: table@5.2.3
npm info lifecycle util-deprecate@1.0.2~preinstall: util-deprecate@1.0.2
npm info lifecycle readable-stream@2.3.6~preinstall: readable-stream@2.3.6
npm info lifecycle are-we-there-yet@1.1.5~preinstall: are-we-there-yet@1.1.5
npm info lifecycle readable-stream@2.3.6~preinstall: readable-stream@2.3.6
npm info lifecycle bl@1.2.2~preinstall: bl@1.2.2
npm info lifecycle readable-stream@2.3.6~preinstall: readable-stream@2.3.6
npm info lifecycle kad-fs@0.0.4~preinstall: kad-fs@0.0.4
npm info lifecycle readable-stream@2.3.6~preinstall: readable-stream@2.3.6
npm info lifecycle kad-memstore@0.0.1~preinstall: kad-memstore@0.0.1
npm info lifecycle readable-stream@2.3.6~preinstall: readable-stream@2.3.6
npm info lifecycle readable-stream@2.3.6~preinstall: readable-stream@2.3.6
npm info lifecycle msgpack5@3.6.0~preinstall: msgpack5@3.6.0
npm info lifecycle kad@1.3.6~preinstall: kad@1.3.6
npm info lifecycle limitation@0.2.1~preinstall: limitation@0.2.1
npm info lifecycle uuid@3.3.2~preinstall: uuid@3.3.2
npm info lifecycle verror@1.10.0~preinstall: verror@1.10.0
npm info lifecycle jsprim@1.4.1~preinstall: jsprim@1.4.1
npm info lifecycle http-signature@1.2.0~preinstall: http-signature@1.2.0
npm info lifecycle request@2.88.0~preinstall: request@2.88.0
npm info lifecycle vscode-languageserver-types@3.14.0~preinstall: vscode-languageserver-types@3.14.0
npm info lifecycle vscode-nls@4.1.0~preinstall: vscode-nls@4.1.0
npm info lifecycle vscode-uri@1.0.6~preinstall: vscode-uri@1.0.6
npm info lifecycle vscode-json-languageservice@3.2.1~preinstall: vscode-json-languageservice@3.2.1
npm info lifecycle when@3.7.8~preinstall: when@3.7.8
npm info lifecycle requestretry@3.1.0~preinstall: requestretry@3.1.0
npm info lifecycle preq@0.5.7~preinstall: preq@0.5.7
npm info lifecycle which@1.3.1~preinstall: which@1.3.1
npm info lifecycle cross-spawn@6.0.5~preinstall: cross-spawn@6.0.5
npm info lifecycle which-module@2.0.0~preinstall: which-module@2.0.0
npm info lifecycle wide-align@1.1.3~preinstall: wide-align@1.1.3
npm info lifecycle gauge@2.7.4~preinstall: gauge@2.7.4
npm info lifecycle npmlog@4.1.2~preinstall: npmlog@4.1.2
npm info lifecycle wordwrap@1.0.0~preinstall: wordwrap@1.0.0
npm info lifecycle optionator@0.8.2~preinstall: optionator@0.8.2
npm info lifecycle ansi-regex@2.1.1~preinstall: ansi-regex@2.1.1
npm info lifecycle is-fullwidth-code-point@1.0.0~preinstall: is-fullwidth-code-point@1.0.0
npm info lifecycle strip-ansi@3.0.1~preinstall: strip-ansi@3.0.1
npm info lifecycle string-width@1.0.2~preinstall: string-width@1.0.2
npm info lifecycle wrap-ansi@2.1.0~preinstall: wrap-ansi@2.1.0
npm info lifecycle cliui@4.1.0~preinstall: cliui@4.1.0
npm info lifecycle wrappy@1.0.2~preinstall: wrappy@1.0.2
npm info lifecycle once@1.4.0~preinstall: once@1.4.0
npm info lifecycle end-of-stream@1.4.1~preinstall: end-of-stream@1.4.1
npm info lifecycle inflight@1.0.6~preinstall: inflight@1.0.6
npm info lifecycle glob@7.1.3~preinstall: glob@7.1.3
npm info lifecycle glob@7.1.3~preinstall: glob@7.1.3
npm info lifecycle rimraf@2.6.3~preinstall: rimraf@2.6.3
npm info lifecycle glob@6.0.4~preinstall: glob@6.0.4
npm info lifecycle rimraf@2.4.5~preinstall: rimraf@2.4.5
npm info lifecycle mv@2.1.1~preinstall: mv@2.1.1
npm info lifecycle bunyan@1.8.12~preinstall: bunyan@1.8.12
npm info lifecycle glob@7.1.3~preinstall: glob@7.1.3
npm info lifecycle glob@7.1.3~preinstall: glob@7.1.3
npm info lifecycle rimraf@2.6.3~preinstall: rimraf@2.6.3
npm info lifecycle node-pre-gyp@0.11.0~preinstall: node-pre-gyp@0.11.0
npm info lifecycle sqlite3@4.0.6~preinstall: sqlite3@4.0.6
npm info lifecycle pump@3.0.0~preinstall: pump@3.0.0
npm info lifecycle get-stream@4.1.0~preinstall: get-stream@4.1.0
npm info lifecycle execa@1.0.0~preinstall: execa@1.0.0
npm info lifecycle os-locale@3.1.0~preinstall: os-locale@3.1.0
npm info lifecycle write@1.0.3~preinstall: write@1.0.3
npm info lifecycle flat-cache@2.0.1~preinstall: flat-cache@2.0.1
npm info lifecycle file-entry-cache@5.0.1~preinstall: file-entry-cache@5.0.1
npm info lifecycle eslint@5.16.0~preinstall: eslint@5.16.0
npm info lifecycle y18n@4.0.0~preinstall: y18n@4.0.0
npm info lifecycle yargs@13.2.2~preinstall: yargs@13.2.2
npm info lifecycle yallist@2.1.2~preinstall: yallist@2.1.2
npm info lifecycle lru-cache@4.1.5~preinstall: lru-cache@4.1.5
npm info lifecycle yargs-parser@11.1.1~preinstall: yargs-parser@11.1.1
npm info lifecycle yargs@12.0.5~preinstall: yargs@12.0.5
npm info lifecycle yargs-unparser@1.5.0~preinstall: yargs-unparser@1.5.0
npm info lifecycle content-type@1.0.1~preinstall: content-type@1.0.1
npm info lifecycle coveralls@3.0.3~preinstall: coveralls@3.0.3
npm info lifecycle entities@1.1.2~preinstall: entities@1.1.2
npm info lifecycle eslint-config-wikimedia@0.11.0~preinstall: eslint-config-wikimedia@0.11.0
npm info lifecycle eslint-plugin-jsdoc@4.8.2~preinstall: eslint-plugin-jsdoc@4.8.2
npm info lifecycle eslint-plugin-json@1.4.0~preinstall: eslint-plugin-json@1.4.0
npm info lifecycle hyperswitch@0.11.1~preinstall: hyperswitch@0.11.1
npm info lifecycle jsonwebtoken@8.5.1~preinstall: jsonwebtoken@8.5.1
npm info lifecycle mediawiki-title@0.6.5~preinstall: mediawiki-title@0.6.5
npm info lifecycle mocha@6.1.1~preinstall: mocha@6.1.1
npm info lifecycle mocha-lcov-reporter@1.3.0~preinstall: mocha-lcov-reporter@1.3.0
npm info lifecycle mocha.parallel@0.15.6~preinstall: mocha.parallel@0.15.6
npm info lifecycle nock@10.0.6~preinstall: nock@10.0.6
npm info lifecycle nyc@13.3.0~preinstall: nyc@13.3.0
npm info lifecycle restbase-mod-table-cassandra@1.1.3~preinstall: restbase-mod-table-cassandra@1.1.3
npm info lifecycle restbase-mod-table-sqlite@1.1.2~preinstall: restbase-mod-table-sqlite@1.1.2
npm info lifecycle semver@6.0.0~preinstall: semver@6.0.0
npm info lifecycle service-runner@2.6.17~preinstall: service-runner@2.6.17
npm info linkStuff @babel/parser@7.4.3
npm info linkStuff abbrev@1.1.1
npm info linkStuff acorn@6.1.1
npm info linkStuff acorn-jsx@5.0.1
npm info linkStuff ansi-colors@3.2.3
npm info linkStuff ansi-escapes@3.2.0
npm info linkStuff ansi-regex@3.0.0
npm info linkStuff aproba@1.2.0
npm info linkStuff isarray@1.0.0
npm info linkStuff asap@2.0.6
npm info linkStuff assert-plus@1.0.0
npm info linkStuff assertion-error@1.1.0
npm info linkStuff astral-regex@1.0.0
npm info linkStuff async@0.9.2
npm info linkStuff asynckit@0.4.0
npm info linkStuff aws-sign2@0.7.0
npm info linkStuff aws4@1.8.0
npm info linkStuff balanced-match@1.0.0
npm info linkStuff isarray@1.0.0
npm info linkStuff bluebird@3.5.4
npm info linkStuff browser-stdout@1.3.1
npm info linkStuff buffer-equal-constant-time@1.0.1
npm info linkStuff bunyan-syslog-udp@0.2.0
npm info linkStuff callsites@3.1.0
npm info linkStuff camelcase@5.3.1
npm info linkStuff caseless@0.12.0
npm info linkStuff long@2.4.0
npm info linkStuff cassandra-driver@3.5.0
npm info linkStuff chardet@0.7.0
npm info linkStuff check-error@1.0.2
npm info linkStuff chownr@1.1.1
npm info linkStuff clarinet@0.11.0
npm info linkStuff cli-width@2.2.0
npm info linkStuff code-point-at@1.1.0
npm info linkStuff color-name@1.1.3
npm info linkStuff color-convert@1.9.3
npm info linkStuff ansi-styles@3.2.1
npm info linkStuff colors@1.3.3
npm info linkStuff comment-parser@0.5.4
npm info linkStuff concat-map@0.0.1
npm info linkStuff brace-expansion@1.1.11
npm info linkStuff console-control-strings@1.1.0
npm info linkStuff core-js@2.6.5
npm info linkStuff core-util-is@1.0.2
npm info linkStuff minimist@1.2.0
npm info linkStuff semver@5.7.0
npm info linkStuff dashdash@1.14.1
npm info linkStuff decamelize@1.2.0
npm info linkStuff deep-equal@1.0.1
npm info linkStuff deep-extend@0.6.0
npm info linkStuff deep-is@0.1.3
npm info linkStuff delayed-stream@1.0.0
npm info linkStuff combined-stream@1.0.7
npm info linkStuff delegates@1.0.0
npm info linkStuff detect-libc@1.0.3
npm info linkStuff diff@3.5.0
npm info linkStuff dom-storage@2.1.0
npm info linkStuff emoji-regex@7.0.3
npm info linkStuff escape-string-regexp@1.0.5
npm info linkStuff eslint-plugin-no-jquery@2.0.0
npm info linkStuff eslint-plugin-qunit@4.0.0
npm info linkStuff eslint-utils@1.3.1
npm info linkStuff eslint-visitor-keys@1.0.0
npm info linkStuff semver@5.7.0
npm info linkStuff espree@5.0.1
npm info linkStuff esprima@4.0.1
npm info linkStuff estraverse@4.2.0
npm info linkStuff esquery@1.0.1
npm info linkStuff esrecurse@4.2.1
npm info linkStuff eslint-scope@4.0.3
npm info linkStuff esutils@2.0.2
npm info linkStuff doctrine@3.0.0
npm info linkStuff extend@3.0.2
npm info linkStuff extsprintf@1.3.0
npm info linkStuff fast-deep-equal@2.0.1
npm info linkStuff fast-json-stable-stringify@2.0.0
npm info linkStuff fast-levenshtein@2.0.6
npm info linkStuff figures@2.0.0
npm info linkStuff flatted@2.0.0
npm info linkStuff forever-agent@0.6.1
npm info linkStuff fs.realpath@1.0.0
npm info linkStuff function-bind@1.1.1
npm info linkStuff functional-red-black-tree@1.0.1
npm info linkStuff ansi-regex@2.1.1
npm info linkStuff strip-ansi@3.0.1
npm info linkStuff abbrev@1.1.1
npm info linkStuff ansi-regex@2.1.1
npm info linkStuff aproba@1.2.0
npm info linkStuff balanced-match@1.0.0
npm info linkStuff chownr@1.1.1
npm info linkStuff code-point-at@1.1.0
npm info linkStuff concat-map@0.0.1
npm info linkStuff brace-expansion@1.1.11
npm info linkStuff console-control-strings@1.1.0
npm info linkStuff core-util-is@1.0.2
npm info linkStuff deep-extend@0.6.0
npm info linkStuff delegates@1.0.0
npm info linkStuff detect-libc@1.0.3
npm info linkStuff fs.realpath@1.0.0
npm info linkStuff has-unicode@2.0.1
npm info linkStuff inherits@2.0.3
npm info linkStuff ini@1.3.5
npm info linkStuff isarray@1.0.0
npm info linkStuff minimatch@3.0.4
npm info linkStuff ignore-walk@3.0.1
npm info linkStuff minimist@0.0.8
npm info linkStuff mkdirp@0.5.1
npm info linkStuff ms@2.0.0
npm info linkStuff debug@2.6.9
npm info linkStuff sax@1.2.4
npm info linkStuff npm-bundled@1.0.5
npm info linkStuff npm-packlist@1.1.12
npm info linkStuff number-is-nan@1.0.1
npm info linkStuff is-fullwidth-code-point@1.0.0
npm info linkStuff object-assign@4.1.1
npm info linkStuff os-homedir@1.0.2
npm info linkStuff os-tmpdir@1.0.2
npm info linkStuff osenv@0.1.5
npm info linkStuff nopt@4.0.1
npm info linkStuff path-is-absolute@1.0.1
npm info linkStuff process-nextick-args@2.0.0
npm info linkStuff minimist@1.2.0
npm info linkStuff safe-buffer@5.1.2
npm info linkStuff safer-buffer@2.1.2
npm info linkStuff iconv-lite@0.4.24
npm info linkStuff needle@2.2.4
npm info linkStuff semver@5.5.0
npm info linkStuff set-blocking@2.0.0
npm info linkStuff signal-exit@3.0.2
npm info linkStuff string_decoder@1.1.1
npm info linkStuff strip-ansi@3.0.1
npm info linkStuff string-width@1.0.2
npm info linkStuff strip-json-comments@2.0.1
npm info linkStuff rc@1.2.8
npm info linkStuff util-deprecate@1.0.2
npm info linkStuff readable-stream@2.3.6
npm info linkStuff are-we-there-yet@1.1.5
npm info linkStuff wide-align@1.1.3
npm info linkStuff gauge@2.7.4
npm info linkStuff npmlog@4.1.2
npm info linkStuff wrappy@1.0.2
npm info linkStuff once@1.4.0
npm info linkStuff inflight@1.0.6
npm info linkStuff glob@7.1.2
npm info linkStuff rimraf@2.6.2
npm info linkStuff yallist@3.0.2
npm info linkStuff minipass@2.3.5
npm info linkStuff fs-minipass@1.2.5
npm info linkStuff minizlib@1.1.1
npm info linkStuff tar@4.4.6
npm info linkStuff node-pre-gyp@0.11.0
npm info linkStuff gelfling@0.3.1
npm info linkStuff gelf-stream@1.1.1
npm info linkStuff generic-pool@3.7.1
npm info linkStuff get-caller-file@1.0.3
npm info linkStuff get-func-name@2.0.0
npm info linkStuff getpass@0.1.7
npm info linkStuff globals@11.11.0
npm info linkStuff growl@1.10.5
npm info linkStuff har-schema@2.0.0
npm info linkStuff has@1.0.3
npm info linkStuff has-flag@3.0.0
npm info linkStuff has-symbols@1.0.0
npm info linkStuff has-unicode@2.0.1
npm info linkStuff hat@0.0.3
npm info linkStuff he@1.2.0
npm info linkStuff hot-shots@5.9.2
npm info linkStuff ignore@4.0.6
npm info linkStuff imurmurhash@0.1.4
npm info linkStuff inherits@2.0.3
npm info linkStuff ini@1.3.5
npm info linkStuff ansi-regex@4.1.0
npm info linkStuff strip-ansi@5.2.0
npm info linkStuff invert-kv@2.0.0
npm info linkStuff is-buffer@2.0.3
npm info linkStuff flat@4.1.0
npm info linkStuff is-callable@1.1.4
npm info linkStuff is-date-object@1.0.1
npm info linkStuff is-fullwidth-code-point@2.0.0
npm info linkStuff is-promise@2.1.0
npm info linkStuff is-regex@1.0.4
npm info linkStuff is-stream@1.1.0
npm info linkStuff is-symbol@1.0.2
npm info linkStuff es-to-primitive@1.2.0
npm info linkStuff is-typedarray@1.0.0
npm info linkStuff isarray@0.0.1
npm info linkStuff isexe@2.0.0
npm info linkStuff isstream@0.1.2
npm info linkStuff istanbul-lib-coverage@2.0.3
npm info linkStuff semver@5.7.0
npm info linkStuff js-tokens@4.0.0
npm info linkStuff jsbn@0.1.1
npm info linkStuff jsdoctypeparser@3.1.0
npm info linkStuff jsesc@2.5.2
npm info linkStuff json-schema@0.2.3
npm info linkStuff json-schema-traverse@0.4.1
npm info linkStuff json-stable-stringify-without-jsonify@1.0.1
npm info linkStuff json-stringify-safe@5.0.1
npm info linkStuff jsonc-parser@2.1.0
npm info linkStuff semver@5.7.0
npm info linkStuff isarray@1.0.0
npm info linkStuff kad-localstorage@0.0.7
npm info linkStuff isarray@1.0.0
npm info linkStuff lodash@3.10.1
npm info linkStuff ms@0.7.3
npm info linkStuff lcid@2.0.0
npm info linkStuff lcov-parse@0.0.10
npm info linkStuff isarray@1.0.0
npm info linkStuff lodash@4.17.11
npm info linkStuff lodash._baseclone@4.5.7
npm info linkStuff lodash.clone@4.3.2
npm info linkStuff dnscache@1.0.1
npm info linkStuff lodash.includes@4.3.0
npm info linkStuff lodash.isboolean@3.0.3
npm info linkStuff lodash.isinteger@4.0.4
npm info linkStuff lodash.isnumber@3.0.3
npm info linkStuff lodash.isplainobject@4.0.6
npm info linkStuff lodash.isstring@4.0.1
npm info linkStuff lodash.once@4.1.1
npm info linkStuff log-driver@1.2.7
npm info linkStuff long@4.0.0
npm info linkStuff cassandra-uuid@0.1.0
npm info linkStuff merge@1.2.1
npm info linkStuff mime-db@1.38.0
npm info linkStuff mime-types@2.1.22
npm info linkStuff form-data@2.3.3
npm info linkStuff mimic-fn@2.1.0
npm info linkStuff minimatch@3.0.4
npm info linkStuff ignore-walk@3.0.1
npm info linkStuff minimist@0.0.8
npm info linkStuff yallist@3.0.3
npm info linkStuff mkdirp@0.5.1
npm info linkStuff bluebird@2.11.0
npm info linkStuff ansi-regex@4.1.0
npm info linkStuff get-caller-file@2.0.5
npm info linkStuff require-main-filename@2.0.0
npm info linkStuff strip-ansi@5.2.0
npm info linkStuff string-width@3.1.0
npm info linkStuff supports-color@6.0.0
npm info linkStuff yargs-parser@13.0.0
npm info linkStuff moment@2.24.0
npm info linkStuff ms@2.1.1
npm info linkStuff debug@4.1.1
npm info linkStuff debug@3.2.6
npm info linkStuff isarray@1.0.0
npm info linkStuff mute-stream@0.0.7
npm info linkStuff nan@2.13.2
npm info linkStuff dtrace-provider@0.8.7
npm info linkStuff gc-stats@1.2.1
npm info linkStuff heapdump@0.3.12
npm info linkStuff natural-compare@1.4.0
npm info linkStuff ncp@2.0.0
npm info linkStuff ms@2.0.0
npm info linkStuff debug@2.6.9
npm info linkStuff nice-try@1.0.5
npm info linkStuff semver@5.7.0
npm info linkStuff semver@5.7.0
npm info linkStuff npm-bundled@1.0.6
npm info linkStuff npm-packlist@1.4.1
npm info linkStuff number-is-nan@1.0.1
npm info linkStuff is-fullwidth-code-point@1.0.0
npm info linkStuff string-width@1.0.2
npm info linkStuff ansi-regex@3.0.0
npm info linkStuff archy@1.0.0
npm info linkStuff arrify@1.0.1
npm info linkStuff balanced-match@1.0.0
npm info linkStuff camelcase@5.0.0
npm info linkStuff code-point-at@1.1.0
npm info linkStuff commander@2.17.1
npm info linkStuff commondir@1.0.1
npm info linkStuff concat-map@0.0.1
npm info linkStuff brace-expansion@1.1.11
npm info linkStuff decamelize@1.2.0
npm info linkStuff es6-error@4.1.1
npm info linkStuff fs.realpath@1.0.0
npm info linkStuff get-caller-file@1.0.3
npm info linkStuff graceful-fs@4.1.15
npm info linkStuff source-map@0.6.1
npm info linkStuff has-flag@3.0.0
npm info linkStuff hosted-git-info@2.7.1
npm info linkStuff imurmurhash@0.1.4
npm info linkStuff inherits@2.0.3
npm info linkStuff invert-kv@2.0.0
npm info linkStuff is-arrayish@0.2.1
npm info linkStuff error-ex@1.3.2
npm info linkStuff is-fullwidth-code-point@2.0.0
npm info linkStuff is-stream@1.1.0
npm info linkStuff hasha@3.0.0
npm info linkStuff isexe@2.0.0
npm info linkStuff istanbul-lib-coverage@2.0.3
npm info linkStuff supports-color@6.1.0
npm info linkStuff source-map@0.6.1
npm info linkStuff json-parse-better-errors@1.0.2
npm info linkStuff lcid@2.0.0
npm info linkStuff lodash@4.17.11
npm info linkStuff async@2.6.2
npm info linkStuff lodash.flattendeep@4.4.0
npm info linkStuff source-map@0.6.1
npm info linkStuff merge-source-map@1.1.0
npm info linkStuff mimic-fn@1.2.0
npm info linkStuff minimatch@3.0.4
npm info linkStuff minimist@0.0.10
npm info linkStuff minimist@0.0.8
npm info linkStuff mkdirp@0.5.1
npm info linkStuff ms@2.1.1
npm info linkStuff debug@4.1.1
npm info linkStuff nice-try@1.0.5
npm info linkStuff number-is-nan@1.0.1
npm info linkStuff os-homedir@1.0.2
npm info linkStuff p-defer@1.0.0
npm info linkStuff map-age-cleaner@0.1.3
npm info linkStuff p-finally@1.0.0
npm info linkStuff p-is-promise@2.0.0
npm info linkStuff mem@4.1.0
npm info linkStuff p-try@2.0.0
npm info linkStuff p-limit@2.1.0
npm info linkStuff p-locate@3.0.0
npm info linkStuff parse-json@4.0.0
npm info linkStuff path-exists@3.0.0
npm info linkStuff locate-path@3.0.0
npm info linkStuff find-up@3.0.0
npm info linkStuff path-is-absolute@1.0.1
npm info linkStuff path-key@2.0.1
npm info linkStuff npm-run-path@2.0.2
npm info linkStuff path-parse@1.0.6
npm info linkStuff pify@3.0.0
npm info linkStuff make-dir@1.3.0
npm info linkStuff istanbul-lib-report@2.0.4
npm info linkStuff path-type@3.0.0
npm info linkStuff pkg-dir@3.0.0
npm info linkStuff find-cache-dir@2.0.0
npm info linkStuff pseudomap@1.0.2
npm info linkStuff release-zalgo@1.0.0
npm info linkStuff package-hash@3.0.0
npm info linkStuff require-directory@2.1.1
npm info linkStuff require-main-filename@1.0.1
npm info linkStuff resolve@1.10.0
npm info linkStuff resolve-from@4.0.0
npm info linkStuff safe-buffer@5.1.2
npm info linkStuff convert-source-map@1.6.0
npm info linkStuff semver@5.6.0
npm info linkStuff set-blocking@2.0.0
npm info linkStuff shebang-regex@1.0.0
npm info linkStuff shebang-command@1.2.0
npm info linkStuff signal-exit@3.0.2
npm info linkStuff spdx-exceptions@2.2.0
npm info linkStuff spdx-license-ids@3.0.3
npm info linkStuff spdx-expression-parse@3.0.0
npm info linkStuff spdx-correct@3.1.0
npm info linkStuff strip-ansi@4.0.0
npm info linkStuff string-width@2.1.1
npm info linkStuff strip-bom@3.0.0
npm info linkStuff default-require-extensions@2.0.0
npm info linkStuff append-transform@1.0.0
npm info linkStuff istanbul-lib-hook@2.0.3
npm info linkStuff load-json-file@4.0.0
npm info linkStuff strip-eof@1.0.0
npm info linkStuff source-map@0.6.1
npm info linkStuff uglify-js@3.4.9
npm info linkStuff uuid@3.3.2
npm info linkStuff validate-npm-package-license@3.0.4
npm info linkStuff normalize-package-data@2.5.0
npm info linkStuff read-pkg@3.0.0
npm info linkStuff read-pkg-up@4.0.0
npm info linkStuff test-exclude@5.1.0
npm info linkStuff which@1.3.1
npm info linkStuff cross-spawn@6.0.5
npm info linkStuff which-module@2.0.0
npm info linkStuff wordwrap@0.0.3
npm info linkStuff optimist@0.6.1
npm info linkStuff handlebars@4.1.0
npm info linkStuff istanbul-reports@2.1.1
npm info linkStuff ansi-regex@2.1.1
npm info linkStuff is-fullwidth-code-point@1.0.0
npm info linkStuff strip-ansi@3.0.1
npm info linkStuff string-width@1.0.2
npm info linkStuff wrap-ansi@2.1.0
npm info linkStuff cliui@4.1.0
npm info linkStuff wrappy@1.0.2
npm info linkStuff once@1.4.0
npm info linkStuff end-of-stream@1.4.1
npm info linkStuff inflight@1.0.6
npm info linkStuff glob@7.1.3
npm info linkStuff rimraf@2.6.3
npm info linkStuff istanbul-lib-source-maps@3.0.2
npm info linkStuff pump@3.0.0
npm info linkStuff get-stream@4.1.0
npm info linkStuff execa@1.0.0
npm info linkStuff os-locale@3.1.0
npm info linkStuff write-file-atomic@2.4.2
npm info linkStuff caching-transform@3.0.1
npm info linkStuff y18n@4.0.0
npm info linkStuff yallist@2.1.2
npm info linkStuff lru-cache@4.1.5
npm info linkStuff cross-spawn@4.0.2
npm info linkStuff foreground-child@1.5.6
npm info linkStuff spawn-wrap@1.4.2
npm info linkStuff yargs-parser@11.1.1
npm info linkStuff yargs@12.0.5
npm info linkStuff oauth-sign@0.9.0
npm info linkStuff object-assign@4.1.1
npm info linkStuff object-keys@1.1.1
npm info linkStuff define-properties@1.1.3
npm info linkStuff es-abstract@1.13.0
npm info linkStuff object.assign@4.1.0
npm info linkStuff object.getownpropertydescriptors@2.0.3
npm info linkStuff node-environment-flags@1.0.4
npm info linkStuff mimic-fn@1.2.0
npm info linkStuff onetime@2.0.1
npm info linkStuff os-homedir@1.0.2
npm info linkStuff os-tmpdir@1.0.2
npm info linkStuff osenv@0.1.5
npm info linkStuff nopt@4.0.1
npm info linkStuff p-defer@1.0.0
npm info linkStuff map-age-cleaner@0.1.3
npm info linkStuff p-finally@1.0.0
npm info linkStuff p-is-promise@2.1.0
npm info linkStuff mem@4.3.0
npm info linkStuff p-try@2.2.0
npm info linkStuff p-limit@2.2.0
npm info linkStuff p-locate@3.0.0
npm info linkStuff parent-module@1.0.1
npm info linkStuff path-exists@3.0.0
npm info linkStuff locate-path@3.0.0
npm info linkStuff find-up@3.0.0
npm info linkStuff path-is-absolute@1.0.1
npm info linkStuff path-is-inside@1.0.2
npm info linkStuff path-key@2.0.1
npm info linkStuff npm-run-path@2.0.2
npm info linkStuff pathval@1.1.0
npm info linkStuff performance-now@2.1.0
npm info linkStuff prelude-ls@1.1.2
npm info linkStuff process-nextick-args@2.0.0
npm info linkStuff progress@2.0.3
npm info linkStuff propagate@1.0.0
npm info linkStuff pseudomap@1.0.2
npm info linkStuff psl@1.1.31
npm info linkStuff punycode@2.1.1
npm info linkStuff qs@6.5.2
npm info linkStuff minimist@1.2.0
npm info linkStuff regexp-utils@0.3.2
npm info linkStuff regexpp@2.0.1
npm info linkStuff repeat-string@0.2.2
npm info linkStuff require-directory@2.1.1
npm info linkStuff require-main-filename@1.0.1
npm info linkStuff resolve-from@4.0.0
npm info linkStuff import-fresh@3.0.0
npm info linkStuff bluebird@2.3.11
npm info linkStuff routeswitch@0.6.3
npm info linkStuff run-async@2.3.0
npm info linkStuff safe-buffer@5.1.2
npm info linkStuff string_decoder@1.1.1
npm info linkStuff string_decoder@1.1.1
npm info linkStuff ecdsa-sig-formatter@1.0.11
npm info linkStuff jwa@1.4.1
npm info linkStuff jws@3.2.2
npm info linkStuff string_decoder@1.1.1
npm info linkStuff string_decoder@1.1.1
npm info linkStuff string_decoder@1.1.1
npm info linkStuff minipass@2.3.5
npm info linkStuff fs-minipass@1.2.5
npm info linkStuff minizlib@1.2.1
npm info linkStuff string_decoder@1.1.1
npm info linkStuff safe-json-stringify@1.2.0
npm info linkStuff safer-buffer@2.1.2
npm info linkStuff asn1@0.2.4
npm info linkStuff ecc-jsbn@0.1.2
npm info linkStuff iconv-lite@0.4.24
npm info linkStuff sax@1.2.4
npm info linkStuff needle@2.2.4
npm info linkStuff semaphore@1.1.0
npm info linkStuff semver@5.7.0
npm info linkStuff set-blocking@2.0.0
npm info linkStuff shebang-regex@1.0.0
npm info linkStuff shebang-command@1.2.0
npm info linkStuff signal-exit@3.0.2
npm info linkStuff restore-cursor@2.0.0
npm info linkStuff cli-cursor@2.1.0
npm info linkStuff slice-ansi@2.1.0
npm info linkStuff source-map@0.5.7
npm info linkStuff sprintf-js@1.0.3
npm info linkStuff argparse@1.0.10
npm info linkStuff js-yaml@3.13.1
npm info linkStuff restbase-mod-table-spec@1.1.2
npm info linkStuff js-yaml@3.13.0
npm info linkStuff nan@2.10.0
npm info linkStuff streamsearch@0.1.2
npm info linkStuff string_decoder@0.10.31
npm info linkStuff readable-stream@1.1.14
npm info linkStuff dicer@0.2.5
npm info linkStuff busboy@0.2.14
npm info linkStuff string-align@0.2.0
npm info linkStuff strip-ansi@4.0.0
npm info linkStuff string-width@2.1.1
npm info linkStuff strip-eof@1.0.0
npm info linkStuff strip-json-comments@2.0.1
npm info linkStuff rc@1.2.8
npm info linkStuff supports-color@5.5.0
npm info linkStuff chalk@2.4.2
npm info linkStuff @babel/highlight@7.0.0
npm info linkStuff @babel/code-frame@7.0.0
npm info linkStuff log-symbols@2.2.0
npm info linkStuff swagger-ui-dist@3.22.0
npm info linkStuff ansi-regex@4.1.0
npm info linkStuff strip-ansi@5.2.0
npm info linkStuff string-width@3.1.0
npm info linkStuff yallist@3.0.3
npm info linkStuff tar@4.4.8
npm info linkStuff tassembly@0.2.3
npm info linkStuff template-expression-compiler@0.1.10
npm info linkStuff swagger-router@0.7.2
npm info linkStuff text-table@0.2.0
npm info linkStuff through@2.3.8
npm info linkStuff tmp@0.0.33
npm info linkStuff external-editor@3.0.3
npm info linkStuff to-fast-properties@2.0.0
npm info linkStuff @babel/types@7.4.0
npm info linkStuff @babel/helper-get-function-arity@7.0.0
npm info linkStuff @babel/helper-split-export-declaration@7.4.0
npm info linkStuff @babel/template@7.4.0
npm info linkStuff @babel/helper-function-name@7.1.0
npm info linkStuff punycode@1.4.1
npm info linkStuff tough-cookie@2.4.3
npm info linkStuff trim-right@1.0.1
npm info linkStuff @babel/generator@7.4.0
npm info linkStuff @babel/traverse@7.4.3
npm info linkStuff istanbul-lib-instrument@3.1.0
npm info linkStuff tslib@1.9.3
npm info linkStuff rxjs@6.4.0
npm info linkStuff inquirer@6.2.2
npm info linkStuff tunnel-agent@0.6.0
npm info linkStuff tweetnacl@0.14.5
npm info linkStuff bcrypt-pbkdf@1.0.2
npm info linkStuff sshpk@1.16.1
npm info linkStuff type-check@0.3.2
npm info linkStuff levn@0.3.0
npm info linkStuff type-detect@4.0.8
npm info linkStuff deep-eql@3.0.1
npm info linkStuff chai@4.2.0
npm info linkStuff uri-js@4.2.2
npm info linkStuff ajv@6.10.0
npm info linkStuff har-validator@5.1.3
npm info linkStuff table@5.2.3
npm info linkStuff util-deprecate@1.0.2
npm info linkStuff readable-stream@2.3.6
npm info linkStuff are-we-there-yet@1.1.5
npm info linkStuff readable-stream@2.3.6
npm info linkStuff bl@1.2.2
npm info linkStuff readable-stream@2.3.6
npm info linkStuff kad-fs@0.0.4
npm info linkStuff readable-stream@2.3.6
npm info linkStuff kad-memstore@0.0.1
npm info linkStuff readable-stream@2.3.6
npm info linkStuff readable-stream@2.3.6
npm info linkStuff msgpack5@3.6.0
npm info linkStuff kad@1.3.6
npm info linkStuff limitation@0.2.1
npm info linkStuff uuid@3.3.2
npm info linkStuff verror@1.10.0
npm info linkStuff jsprim@1.4.1
npm info linkStuff http-signature@1.2.0
npm info linkStuff request@2.88.0
npm info linkStuff vscode-languageserver-types@3.14.0
npm info linkStuff vscode-nls@4.1.0
npm info linkStuff vscode-uri@1.0.6
npm info linkStuff vscode-json-languageservice@3.2.1
npm info linkStuff when@3.7.8
npm info linkStuff requestretry@3.1.0
npm info linkStuff preq@0.5.7
npm info linkStuff which@1.3.1
npm info linkStuff cross-spawn@6.0.5
npm info linkStuff which-module@2.0.0
npm info linkStuff wide-align@1.1.3
npm info linkStuff gauge@2.7.4
npm info linkStuff npmlog@4.1.2
npm info linkStuff wordwrap@1.0.0
npm info linkStuff optionator@0.8.2
npm info linkStuff ansi-regex@2.1.1
npm info linkStuff is-fullwidth-code-point@1.0.0
npm info linkStuff strip-ansi@3.0.1
npm info linkStuff string-width@1.0.2
npm info linkStuff wrap-ansi@2.1.0
npm info linkStuff cliui@4.1.0
npm info linkStuff wrappy@1.0.2
npm info linkStuff once@1.4.0
npm info linkStuff end-of-stream@1.4.1
npm info linkStuff inflight@1.0.6
npm info linkStuff glob@7.1.3
npm info linkStuff glob@7.1.3
npm info linkStuff rimraf@2.6.3
npm info linkStuff glob@6.0.4
npm info linkStuff rimraf@2.4.5
npm info linkStuff mv@2.1.1
npm info linkStuff bunyan@1.8.12
npm info linkStuff glob@7.1.3
npm info linkStuff glob@7.1.3
npm info linkStuff rimraf@2.6.3
npm info linkStuff node-pre-gyp@0.11.0
npm info linkStuff sqlite3@4.0.6
npm info linkStuff pump@3.0.0
npm info linkStuff get-stream@4.1.0
npm info linkStuff execa@1.0.0
npm info linkStuff os-locale@3.1.0
npm info linkStuff write@1.0.3
npm info linkStuff flat-cache@2.0.1
npm info linkStuff file-entry-cache@5.0.1
npm info linkStuff eslint@5.16.0
npm info linkStuff y18n@4.0.0
npm info linkStuff yargs@13.2.2
npm info linkStuff yallist@2.1.2
npm info linkStuff lru-cache@4.1.5
npm info linkStuff yargs-parser@11.1.1
npm info linkStuff yargs@12.0.5
npm info linkStuff yargs-unparser@1.5.0
npm info linkStuff content-type@1.0.1
npm info linkStuff coveralls@3.0.3
npm info linkStuff entities@1.1.2
npm info linkStuff eslint-config-wikimedia@0.11.0
npm info linkStuff eslint-plugin-jsdoc@4.8.2
npm info linkStuff eslint-plugin-json@1.4.0
npm info linkStuff hyperswitch@0.11.1
npm info linkStuff jsonwebtoken@8.5.1
npm info linkStuff mediawiki-title@0.6.5
npm info linkStuff mocha@6.1.1
npm info linkStuff mocha-lcov-reporter@1.3.0
npm info linkStuff mocha.parallel@0.15.6
npm info linkStuff nock@10.0.6
npm info linkStuff nyc@13.3.0
npm info linkStuff restbase-mod-table-cassandra@1.1.3
npm info linkStuff restbase-mod-table-sqlite@1.1.2
npm info linkStuff semver@6.0.0
npm info linkStuff service-runner@2.6.17
npm info lifecycle @babel/parser@7.4.3~install: @babel/parser@7.4.3
npm info lifecycle abbrev@1.1.1~install: abbrev@1.1.1
npm info lifecycle acorn@6.1.1~install: acorn@6.1.1
npm info lifecycle acorn-jsx@5.0.1~install: acorn-jsx@5.0.1
npm info lifecycle ansi-colors@3.2.3~install: ansi-colors@3.2.3
npm info lifecycle ansi-escapes@3.2.0~install: ansi-escapes@3.2.0
npm info lifecycle ansi-regex@3.0.0~install: ansi-regex@3.0.0
npm info lifecycle aproba@1.2.0~install: aproba@1.2.0
npm info lifecycle isarray@1.0.0~install: isarray@1.0.0
npm info lifecycle asap@2.0.6~install: asap@2.0.6
npm info lifecycle assert-plus@1.0.0~install: assert-plus@1.0.0
npm info lifecycle assertion-error@1.1.0~install: assertion-error@1.1.0
npm info lifecycle astral-regex@1.0.0~install: astral-regex@1.0.0
npm info lifecycle async@0.9.2~install: async@0.9.2
npm info lifecycle asynckit@0.4.0~install: asynckit@0.4.0
npm info lifecycle aws-sign2@0.7.0~install: aws-sign2@0.7.0
npm info lifecycle aws4@1.8.0~install: aws4@1.8.0
npm info lifecycle balanced-match@1.0.0~install: balanced-match@1.0.0
npm info lifecycle isarray@1.0.0~install: isarray@1.0.0
npm info lifecycle bluebird@3.5.4~install: bluebird@3.5.4
npm info lifecycle browser-stdout@1.3.1~install: browser-stdout@1.3.1
npm info lifecycle buffer-equal-constant-time@1.0.1~install: buffer-equal-constant-time@1.0.1
npm info lifecycle bunyan-syslog-udp@0.2.0~install: bunyan-syslog-udp@0.2.0
npm info lifecycle callsites@3.1.0~install: callsites@3.1.0
npm info lifecycle camelcase@5.3.1~install: camelcase@5.3.1
npm info lifecycle caseless@0.12.0~install: caseless@0.12.0
npm info lifecycle long@2.4.0~install: long@2.4.0
npm info lifecycle cassandra-driver@3.5.0~install: cassandra-driver@3.5.0
npm info lifecycle chardet@0.7.0~install: chardet@0.7.0
npm info lifecycle check-error@1.0.2~install: check-error@1.0.2
npm info lifecycle chownr@1.1.1~install: chownr@1.1.1
npm info lifecycle clarinet@0.11.0~install: clarinet@0.11.0
npm info lifecycle cli-width@2.2.0~install: cli-width@2.2.0
npm info lifecycle code-point-at@1.1.0~install: code-point-at@1.1.0
npm info lifecycle color-name@1.1.3~install: color-name@1.1.3
npm info lifecycle color-convert@1.9.3~install: color-convert@1.9.3
npm info lifecycle ansi-styles@3.2.1~install: ansi-styles@3.2.1
npm info lifecycle colors@1.3.3~install: colors@1.3.3
npm info lifecycle comment-parser@0.5.4~install: comment-parser@0.5.4
npm info lifecycle concat-map@0.0.1~install: concat-map@0.0.1
npm info lifecycle brace-expansion@1.1.11~install: brace-expansion@1.1.11
npm info lifecycle console-control-strings@1.1.0~install: console-control-strings@1.1.0
npm info lifecycle core-js@2.6.5~install: core-js@2.6.5
npm info lifecycle core-util-is@1.0.2~install: core-util-is@1.0.2
npm info lifecycle minimist@1.2.0~install: minimist@1.2.0
npm info lifecycle semver@5.7.0~install: semver@5.7.0
npm info lifecycle dashdash@1.14.1~install: dashdash@1.14.1
npm info lifecycle decamelize@1.2.0~install: decamelize@1.2.0
npm info lifecycle deep-equal@1.0.1~install: deep-equal@1.0.1
npm info lifecycle deep-extend@0.6.0~install: deep-extend@0.6.0
npm info lifecycle deep-is@0.1.3~install: deep-is@0.1.3
npm info lifecycle delayed-stream@1.0.0~install: delayed-stream@1.0.0
npm info lifecycle combined-stream@1.0.7~install: combined-stream@1.0.7
npm info lifecycle delegates@1.0.0~install: delegates@1.0.0
npm info lifecycle detect-libc@1.0.3~install: detect-libc@1.0.3
npm info lifecycle diff@3.5.0~install: diff@3.5.0
npm info lifecycle dom-storage@2.1.0~install: dom-storage@2.1.0
npm info lifecycle emoji-regex@7.0.3~install: emoji-regex@7.0.3
npm info lifecycle escape-string-regexp@1.0.5~install: escape-string-regexp@1.0.5
npm info lifecycle eslint-plugin-no-jquery@2.0.0~install: eslint-plugin-no-jquery@2.0.0
npm info lifecycle eslint-plugin-qunit@4.0.0~install: eslint-plugin-qunit@4.0.0
npm info lifecycle eslint-utils@1.3.1~install: eslint-utils@1.3.1
npm info lifecycle eslint-visitor-keys@1.0.0~install: eslint-visitor-keys@1.0.0
npm info lifecycle semver@5.7.0~install: semver@5.7.0
npm info lifecycle espree@5.0.1~install: espree@5.0.1
npm info lifecycle esprima@4.0.1~install: esprima@4.0.1
npm info lifecycle estraverse@4.2.0~install: estraverse@4.2.0
npm info lifecycle esquery@1.0.1~install: esquery@1.0.1
npm info lifecycle esrecurse@4.2.1~install: esrecurse@4.2.1
npm info lifecycle eslint-scope@4.0.3~install: eslint-scope@4.0.3
npm info lifecycle esutils@2.0.2~install: esutils@2.0.2
npm info lifecycle doctrine@3.0.0~install: doctrine@3.0.0
npm info lifecycle extend@3.0.2~install: extend@3.0.2
npm info lifecycle extsprintf@1.3.0~install: extsprintf@1.3.0
npm info lifecycle fast-deep-equal@2.0.1~install: fast-deep-equal@2.0.1
npm info lifecycle fast-json-stable-stringify@2.0.0~install: fast-json-stable-stringify@2.0.0
npm info lifecycle fast-levenshtein@2.0.6~install: fast-levenshtein@2.0.6
npm info lifecycle figures@2.0.0~install: figures@2.0.0
npm info lifecycle flatted@2.0.0~install: flatted@2.0.0
npm info lifecycle forever-agent@0.6.1~install: forever-agent@0.6.1
npm info lifecycle fs.realpath@1.0.0~install: fs.realpath@1.0.0
npm info lifecycle function-bind@1.1.1~install: function-bind@1.1.1
npm info lifecycle functional-red-black-tree@1.0.1~install: functional-red-black-tree@1.0.1
npm info lifecycle ansi-regex@2.1.1~install: ansi-regex@2.1.1
npm info lifecycle strip-ansi@3.0.1~install: strip-ansi@3.0.1
npm info lifecycle abbrev@1.1.1~install: abbrev@1.1.1
npm info lifecycle ansi-regex@2.1.1~install: ansi-regex@2.1.1
npm info lifecycle aproba@1.2.0~install: aproba@1.2.0
npm info lifecycle balanced-match@1.0.0~install: balanced-match@1.0.0
npm info lifecycle chownr@1.1.1~install: chownr@1.1.1
npm info lifecycle code-point-at@1.1.0~install: code-point-at@1.1.0
npm info lifecycle concat-map@0.0.1~install: concat-map@0.0.1
npm info lifecycle brace-expansion@1.1.11~install: brace-expansion@1.1.11
npm info lifecycle console-control-strings@1.1.0~install: console-control-strings@1.1.0
npm info lifecycle core-util-is@1.0.2~install: core-util-is@1.0.2
npm info lifecycle deep-extend@0.6.0~install: deep-extend@0.6.0
npm info lifecycle delegates@1.0.0~install: delegates@1.0.0
npm info lifecycle detect-libc@1.0.3~install: detect-libc@1.0.3
npm info lifecycle fs.realpath@1.0.0~install: fs.realpath@1.0.0
npm info lifecycle has-unicode@2.0.1~install: has-unicode@2.0.1
npm info lifecycle inherits@2.0.3~install: inherits@2.0.3
npm info lifecycle ini@1.3.5~install: ini@1.3.5
npm info lifecycle isarray@1.0.0~install: isarray@1.0.0
npm info lifecycle minimatch@3.0.4~install: minimatch@3.0.4
npm info lifecycle ignore-walk@3.0.1~install: ignore-walk@3.0.1
npm info lifecycle minimist@0.0.8~install: minimist@0.0.8
npm info lifecycle mkdirp@0.5.1~install: mkdirp@0.5.1
npm info lifecycle ms@2.0.0~install: ms@2.0.0
npm info lifecycle debug@2.6.9~install: debug@2.6.9
npm info lifecycle sax@1.2.4~install: sax@1.2.4
npm info lifecycle npm-bundled@1.0.5~install: npm-bundled@1.0.5
npm info lifecycle npm-packlist@1.1.12~install: npm-packlist@1.1.12
npm info lifecycle number-is-nan@1.0.1~install: number-is-nan@1.0.1
npm info lifecycle is-fullwidth-code-point@1.0.0~install: is-fullwidth-code-point@1.0.0
npm info lifecycle object-assign@4.1.1~install: object-assign@4.1.1
npm info lifecycle os-homedir@1.0.2~install: os-homedir@1.0.2
npm info lifecycle os-tmpdir@1.0.2~install: os-tmpdir@1.0.2
npm info lifecycle osenv@0.1.5~install: osenv@0.1.5
npm info lifecycle nopt@4.0.1~install: nopt@4.0.1
npm info lifecycle path-is-absolute@1.0.1~install: path-is-absolute@1.0.1
npm info lifecycle process-nextick-args@2.0.0~install: process-nextick-args@2.0.0
npm info lifecycle minimist@1.2.0~install: minimist@1.2.0
npm info lifecycle safe-buffer@5.1.2~install: safe-buffer@5.1.2
npm info lifecycle safer-buffer@2.1.2~install: safer-buffer@2.1.2
npm info lifecycle iconv-lite@0.4.24~install: iconv-lite@0.4.24
npm info lifecycle needle@2.2.4~install: needle@2.2.4
npm info lifecycle semver@5.5.0~install: semver@5.5.0
npm info lifecycle set-blocking@2.0.0~install: set-blocking@2.0.0
npm info lifecycle signal-exit@3.0.2~install: signal-exit@3.0.2
npm info lifecycle string_decoder@1.1.1~install: string_decoder@1.1.1
npm info lifecycle strip-ansi@3.0.1~install: strip-ansi@3.0.1
npm info lifecycle string-width@1.0.2~install: string-width@1.0.2
npm info lifecycle strip-json-comments@2.0.1~install: strip-json-comments@2.0.1
npm info lifecycle rc@1.2.8~install: rc@1.2.8
npm info lifecycle util-deprecate@1.0.2~install: util-deprecate@1.0.2
npm info lifecycle readable-stream@2.3.6~install: readable-stream@2.3.6
npm info lifecycle are-we-there-yet@1.1.5~install: are-we-there-yet@1.1.5
npm info lifecycle wide-align@1.1.3~install: wide-align@1.1.3
npm info lifecycle gauge@2.7.4~install: gauge@2.7.4
npm info lifecycle npmlog@4.1.2~install: npmlog@4.1.2
npm info lifecycle wrappy@1.0.2~install: wrappy@1.0.2
npm info lifecycle once@1.4.0~install: once@1.4.0
npm info lifecycle inflight@1.0.6~install: inflight@1.0.6
npm info lifecycle glob@7.1.2~install: glob@7.1.2
npm info lifecycle rimraf@2.6.2~install: rimraf@2.6.2
npm info lifecycle yallist@3.0.2~install: yallist@3.0.2
npm info lifecycle minipass@2.3.5~install: minipass@2.3.5
npm info lifecycle fs-minipass@1.2.5~install: fs-minipass@1.2.5
npm info lifecycle minizlib@1.1.1~install: minizlib@1.1.1
npm info lifecycle tar@4.4.6~install: tar@4.4.6
npm info lifecycle node-pre-gyp@0.11.0~install: node-pre-gyp@0.11.0
npm info lifecycle gelfling@0.3.1~install: gelfling@0.3.1
npm info lifecycle gelf-stream@1.1.1~install: gelf-stream@1.1.1
npm info lifecycle generic-pool@3.7.1~install: generic-pool@3.7.1
npm info lifecycle get-caller-file@1.0.3~install: get-caller-file@1.0.3
npm info lifecycle get-func-name@2.0.0~install: get-func-name@2.0.0
npm info lifecycle getpass@0.1.7~install: getpass@0.1.7
npm info lifecycle globals@11.11.0~install: globals@11.11.0
npm info lifecycle growl@1.10.5~install: growl@1.10.5
npm info lifecycle har-schema@2.0.0~install: har-schema@2.0.0
npm info lifecycle has@1.0.3~install: has@1.0.3
npm info lifecycle has-flag@3.0.0~install: has-flag@3.0.0
npm info lifecycle has-symbols@1.0.0~install: has-symbols@1.0.0
npm info lifecycle has-unicode@2.0.1~install: has-unicode@2.0.1
npm info lifecycle hat@0.0.3~install: hat@0.0.3
npm info lifecycle he@1.2.0~install: he@1.2.0
npm info lifecycle hot-shots@5.9.2~install: hot-shots@5.9.2
npm info lifecycle ignore@4.0.6~install: ignore@4.0.6
npm info lifecycle imurmurhash@0.1.4~install: imurmurhash@0.1.4
npm info lifecycle inherits@2.0.3~install: inherits@2.0.3
npm info lifecycle ini@1.3.5~install: ini@1.3.5
npm info lifecycle ansi-regex@4.1.0~install: ansi-regex@4.1.0
npm info lifecycle strip-ansi@5.2.0~install: strip-ansi@5.2.0
npm info lifecycle invert-kv@2.0.0~install: invert-kv@2.0.0
npm info lifecycle is-buffer@2.0.3~install: is-buffer@2.0.3
npm info lifecycle flat@4.1.0~install: flat@4.1.0
npm info lifecycle is-callable@1.1.4~install: is-callable@1.1.4
npm info lifecycle is-date-object@1.0.1~install: is-date-object@1.0.1
npm info lifecycle is-fullwidth-code-point@2.0.0~install: is-fullwidth-code-point@2.0.0
npm info lifecycle is-promise@2.1.0~install: is-promise@2.1.0
npm info lifecycle is-regex@1.0.4~install: is-regex@1.0.4
npm info lifecycle is-stream@1.1.0~install: is-stream@1.1.0
npm info lifecycle is-symbol@1.0.2~install: is-symbol@1.0.2
npm info lifecycle es-to-primitive@1.2.0~install: es-to-primitive@1.2.0
npm info lifecycle is-typedarray@1.0.0~install: is-typedarray@1.0.0
npm info lifecycle isarray@0.0.1~install: isarray@0.0.1
npm info lifecycle isexe@2.0.0~install: isexe@2.0.0
npm info lifecycle isstream@0.1.2~install: isstream@0.1.2
npm info lifecycle istanbul-lib-coverage@2.0.3~install: istanbul-lib-coverage@2.0.3
npm info lifecycle semver@5.7.0~install: semver@5.7.0
npm info lifecycle js-tokens@4.0.0~install: js-tokens@4.0.0
npm info lifecycle jsbn@0.1.1~install: jsbn@0.1.1
npm info lifecycle jsdoctypeparser@3.1.0~install: jsdoctypeparser@3.1.0
npm info lifecycle jsesc@2.5.2~install: jsesc@2.5.2
npm info lifecycle json-schema@0.2.3~install: json-schema@0.2.3
npm info lifecycle json-schema-traverse@0.4.1~install: json-schema-traverse@0.4.1
npm info lifecycle json-stable-stringify-without-jsonify@1.0.1~install: json-stable-stringify-without-jsonify@1.0.1
npm info lifecycle json-stringify-safe@5.0.1~install: json-stringify-safe@5.0.1
npm info lifecycle jsonc-parser@2.1.0~install: jsonc-parser@2.1.0
npm info lifecycle semver@5.7.0~install: semver@5.7.0
npm info lifecycle isarray@1.0.0~install: isarray@1.0.0
npm info lifecycle kad-localstorage@0.0.7~install: kad-localstorage@0.0.7
npm info lifecycle isarray@1.0.0~install: isarray@1.0.0
npm info lifecycle lodash@3.10.1~install: lodash@3.10.1
npm info lifecycle ms@0.7.3~install: ms@0.7.3
npm info lifecycle lcid@2.0.0~install: lcid@2.0.0
npm info lifecycle lcov-parse@0.0.10~install: lcov-parse@0.0.10
npm info lifecycle isarray@1.0.0~install: isarray@1.0.0
npm info lifecycle lodash@4.17.11~install: lodash@4.17.11
npm info lifecycle lodash._baseclone@4.5.7~install: lodash._baseclone@4.5.7
npm info lifecycle lodash.clone@4.3.2~install: lodash.clone@4.3.2
npm info lifecycle dnscache@1.0.1~install: dnscache@1.0.1
npm info lifecycle lodash.includes@4.3.0~install: lodash.includes@4.3.0
npm info lifecycle lodash.isboolean@3.0.3~install: lodash.isboolean@3.0.3
npm info lifecycle lodash.isinteger@4.0.4~install: lodash.isinteger@4.0.4
npm info lifecycle lodash.isnumber@3.0.3~install: lodash.isnumber@3.0.3
npm info lifecycle lodash.isplainobject@4.0.6~install: lodash.isplainobject@4.0.6
npm info lifecycle lodash.isstring@4.0.1~install: lodash.isstring@4.0.1
npm info lifecycle lodash.once@4.1.1~install: lodash.once@4.1.1
npm info lifecycle log-driver@1.2.7~install: log-driver@1.2.7
npm info lifecycle long@4.0.0~install: long@4.0.0
npm info lifecycle cassandra-uuid@0.1.0~install: cassandra-uuid@0.1.0
npm info lifecycle merge@1.2.1~install: merge@1.2.1
npm info lifecycle mime-db@1.38.0~install: mime-db@1.38.0
npm info lifecycle mime-types@2.1.22~install: mime-types@2.1.22
npm info lifecycle form-data@2.3.3~install: form-data@2.3.3
npm info lifecycle mimic-fn@2.1.0~install: mimic-fn@2.1.0
npm info lifecycle minimatch@3.0.4~install: minimatch@3.0.4
npm info lifecycle ignore-walk@3.0.1~install: ignore-walk@3.0.1
npm info lifecycle minimist@0.0.8~install: minimist@0.0.8
npm info lifecycle yallist@3.0.3~install: yallist@3.0.3
npm info lifecycle mkdirp@0.5.1~install: mkdirp@0.5.1
npm info lifecycle bluebird@2.11.0~install: bluebird@2.11.0
npm info lifecycle ansi-regex@4.1.0~install: ansi-regex@4.1.0
npm info lifecycle get-caller-file@2.0.5~install: get-caller-file@2.0.5
npm info lifecycle require-main-filename@2.0.0~install: require-main-filename@2.0.0
npm info lifecycle strip-ansi@5.2.0~install: strip-ansi@5.2.0
npm info lifecycle string-width@3.1.0~install: string-width@3.1.0
npm info lifecycle supports-color@6.0.0~install: supports-color@6.0.0
npm info lifecycle yargs-parser@13.0.0~install: yargs-parser@13.0.0
npm info lifecycle moment@2.24.0~install: moment@2.24.0
npm info lifecycle ms@2.1.1~install: ms@2.1.1
npm info lifecycle debug@4.1.1~install: debug@4.1.1
npm info lifecycle debug@3.2.6~install: debug@3.2.6
npm info lifecycle isarray@1.0.0~install: isarray@1.0.0
npm info lifecycle mute-stream@0.0.7~install: mute-stream@0.0.7
npm info lifecycle nan@2.13.2~install: nan@2.13.2
npm info lifecycle dtrace-provider@0.8.7~install: dtrace-provider@0.8.7
> dtrace-provider@0.8.7 install /usr/src/app/node_modules/dtrace-provider
> node-gyp rebuild || node suppress-error.js
gyp info it worked if it ends with ok
gyp info using node-gyp@3.4.0
gyp info using node@6.11.0 | linux | x64
gyp http GET https://nodejs.org/download/release/v6.11.0/node-v6.11.0-headers.tar.gz
gyp http 200 https://nodejs.org/download/release/v6.11.0/node-v6.11.0-headers.tar.gz
gyp http GET https://nodejs.org/download/release/v6.11.0/SHASUMS256.txt
gyp http 200 https://nodejs.org/download/release/v6.11.0/SHASUMS256.txt
gyp info spawn /usr/bin/python2
gyp info spawn args [ '/usr/local/lib/node_modules/npm/node_modules/node-gyp/gyp/gyp_main.py',
gyp info spawn args 'binding.gyp',
gyp info spawn args '-f',
gyp info spawn args 'make',
gyp info spawn args '-I',
gyp info spawn args '/usr/src/app/node_modules/dtrace-provider/build/config.gypi',
gyp info spawn args '-I',
gyp info spawn args '/usr/local/lib/node_modules/npm/node_modules/node-gyp/addon.gypi',
gyp info spawn args '-I',
gyp info spawn args '/root/.node-gyp/6.11.0/include/node/common.gypi',
gyp info spawn args '-Dlibrary=shared_library',
gyp info spawn args '-Dvisibility=default',
gyp info spawn args '-Dnode_root_dir=/root/.node-gyp/6.11.0',
gyp info spawn args '-Dnode_gyp_dir=/usr/local/lib/node_modules/npm/node_modules/node-gyp',
gyp info spawn args '-Dnode_lib_file=node.lib',
gyp info spawn args '-Dmodule_root_dir=/usr/src/app/node_modules/dtrace-provider',
gyp info spawn args '--depth=.',
gyp info spawn args '--no-parallel',
gyp info spawn args '--generator-output',
gyp info spawn args 'build',
gyp info spawn args '-Goutput_dir=.' ]
gyp info spawn make
gyp info spawn args [ 'BUILDTYPE=Release', '-C', 'build' ]
make: Entering directory '/usr/src/app/node_modules/dtrace-provider/build'
TOUCH Release/obj.target/DTraceProviderStub.stamp
make: Leaving directory '/usr/src/app/node_modules/dtrace-provider/build'
gyp info ok
npm info lifecycle gc-stats@1.2.1~install: gc-stats@1.2.1
> gc-stats@1.2.1 install /usr/src/app/node_modules/gc-stats
> node-pre-gyp install --fallback-to-build
node-pre-gyp info it worked if it ends with ok
node-pre-gyp info using node-pre-gyp@0.11.0
node-pre-gyp info using node@6.11.0 | linux | x64
node-pre-gyp WARN Using request for node-pre-gyp https download
node-pre-gyp info check checked for "/usr/src/app/node_modules/gc-stats/build/gcstats/v1.2.1/Release/node-v48-linux-x64/gcstats.node" (not found)
node-pre-gyp http GET https://node-binaries.s3.amazonaws.com/gcstats/v1.2.1/Release/node-v48-linux-x64.tar.gz
node-pre-gyp http 200 https://node-binaries.s3.amazonaws.com/gcstats/v1.2.1/Release/node-v48-linux-x64.tar.gz
node-pre-gyp info install unpacking node-v48-linux-x64/gcstats.node
node-pre-gyp info tarball done parsing tarball
[gc-stats] Success: "/usr/src/app/node_modules/gc-stats/build/gcstats/v1.2.1/Release/node-v48-linux-x64/gcstats.node" is installed via remote
node-pre-gyp info ok
npm info lifecycle heapdump@0.3.12~install: heapdump@0.3.12
> heapdump@0.3.12 install /usr/src/app/node_modules/heapdump
> node-gyp rebuild
gyp info it worked if it ends with ok
gyp info using node-gyp@3.4.0
gyp info using node@6.11.0 | linux | x64
gyp info spawn /usr/bin/python2
gyp info spawn args [ '/usr/local/lib/node_modules/npm/node_modules/node-gyp/gyp/gyp_main.py',
gyp info spawn args 'binding.gyp',
gyp info spawn args '-f',
gyp info spawn args 'make',
gyp info spawn args '-I',
gyp info spawn args '/usr/src/app/node_modules/heapdump/build/config.gypi',
gyp info spawn args '-I',
gyp info spawn args '/usr/local/lib/node_modules/npm/node_modules/node-gyp/addon.gypi',
gyp info spawn args '-I',
gyp info spawn args '/root/.node-gyp/6.11.0/include/node/common.gypi',
gyp info spawn args '-Dlibrary=shared_library',
gyp info spawn args '-Dvisibility=default',
gyp info spawn args '-Dnode_root_dir=/root/.node-gyp/6.11.0',
gyp info spawn args '-Dnode_gyp_dir=/usr/local/lib/node_modules/npm/node_modules/node-gyp',
gyp info spawn args '-Dnode_lib_file=node.lib',
gyp info spawn args '-Dmodule_root_dir=/usr/src/app/node_modules/heapdump',
gyp info spawn args '--depth=.',
gyp info spawn args '--no-parallel',
gyp info spawn args '--generator-output',
gyp info spawn args 'build',
gyp info spawn args '-Goutput_dir=.' ]
gyp info spawnmake: Entering directory '/usr/src/app/node_modules/heapdump/build'
make
gyp CXX(target) Release/obj.target/addon/src/heapdump.o
info spawn args [ 'BUILDTYPE=Release', '-C', 'build' ]
SOLINK_MODULE(target) Release/obj.target/addon.node
COPY Release/addon.node
make: Leaving directory '/usr/src/app/node_modules/heapdump/build'
gyp info ok
npm info lifecycle natural-compare@1.4.0~install: natural-compare@1.4.0
npm info lifecycle ncp@2.0.0~install: ncp@2.0.0
npm info lifecycle ms@2.0.0~install: ms@2.0.0
npm info lifecycle debug@2.6.9~install: debug@2.6.9
npm info lifecycle nice-try@1.0.5~install: nice-try@1.0.5
npm info lifecycle semver@5.7.0~install: semver@5.7.0
npm info lifecycle semver@5.7.0~install: semver@5.7.0
npm info lifecycle npm-bundled@1.0.6~install: npm-bundled@1.0.6
npm info lifecycle npm-packlist@1.4.1~install: npm-packlist@1.4.1
npm info lifecycle number-is-nan@1.0.1~install: number-is-nan@1.0.1
npm info lifecycle is-fullwidth-code-point@1.0.0~install: is-fullwidth-code-point@1.0.0
npm info lifecycle string-width@1.0.2~install: string-width@1.0.2
npm info lifecycle ansi-regex@3.0.0~install: ansi-regex@3.0.0
npm info lifecycle archy@1.0.0~install: archy@1.0.0
npm info lifecycle arrify@1.0.1~install: arrify@1.0.1
npm info lifecycle balanced-match@1.0.0~install: balanced-match@1.0.0
npm info lifecycle camelcase@5.0.0~install: camelcase@5.0.0
npm info lifecycle code-point-at@1.1.0~install: code-point-at@1.1.0
npm info lifecycle commander@2.17.1~install: commander@2.17.1
npm info lifecycle commondir@1.0.1~install: commondir@1.0.1
npm info lifecycle concat-map@0.0.1~install: concat-map@0.0.1
npm info lifecycle brace-expansion@1.1.11~install: brace-expansion@1.1.11
npm info lifecycle decamelize@1.2.0~install: decamelize@1.2.0
npm info lifecycle es6-error@4.1.1~install: es6-error@4.1.1
npm info lifecycle fs.realpath@1.0.0~install: fs.realpath@1.0.0
npm info lifecycle get-caller-file@1.0.3~install: get-caller-file@1.0.3
npm info lifecycle graceful-fs@4.1.15~install: graceful-fs@4.1.15
npm info lifecycle source-map@0.6.1~install: source-map@0.6.1
npm info lifecycle has-flag@3.0.0~install: has-flag@3.0.0
npm info lifecycle hosted-git-info@2.7.1~install: hosted-git-info@2.7.1
npm info lifecycle imurmurhash@0.1.4~install: imurmurhash@0.1.4
npm info lifecycle inherits@2.0.3~install: inherits@2.0.3
npm info lifecycle invert-kv@2.0.0~install: invert-kv@2.0.0
npm info lifecycle is-arrayish@0.2.1~install: is-arrayish@0.2.1
npm info lifecycle error-ex@1.3.2~install: error-ex@1.3.2
npm info lifecycle is-fullwidth-code-point@2.0.0~install: is-fullwidth-code-point@2.0.0
npm info lifecycle is-stream@1.1.0~install: is-stream@1.1.0
npm info lifecycle hasha@3.0.0~install: hasha@3.0.0
npm info lifecycle isexe@2.0.0~install: isexe@2.0.0
npm info lifecycle istanbul-lib-coverage@2.0.3~install: istanbul-lib-coverage@2.0.3
npm info lifecycle supports-color@6.1.0~install: supports-color@6.1.0
npm info lifecycle source-map@0.6.1~install: source-map@0.6.1
npm info lifecycle json-parse-better-errors@1.0.2~install: json-parse-better-errors@1.0.2
npm info lifecycle lcid@2.0.0~install: lcid@2.0.0
npm info lifecycle lodash@4.17.11~install: lodash@4.17.11
npm info lifecycle async@2.6.2~install: async@2.6.2
npm info lifecycle lodash.flattendeep@4.4.0~install: lodash.flattendeep@4.4.0
npm info lifecycle source-map@0.6.1~install: source-map@0.6.1
npm info lifecycle merge-source-map@1.1.0~install: merge-source-map@1.1.0
npm info lifecycle mimic-fn@1.2.0~install: mimic-fn@1.2.0
npm info lifecycle minimatch@3.0.4~install: minimatch@3.0.4
npm info lifecycle minimist@0.0.10~install: minimist@0.0.10
npm info lifecycle minimist@0.0.8~install: minimist@0.0.8
npm info lifecycle mkdirp@0.5.1~install: mkdirp@0.5.1
npm info lifecycle ms@2.1.1~install: ms@2.1.1
npm info lifecycle debug@4.1.1~install: debug@4.1.1
npm info lifecycle nice-try@1.0.5~install: nice-try@1.0.5
npm info lifecycle number-is-nan@1.0.1~install: number-is-nan@1.0.1
npm info lifecycle os-homedir@1.0.2~install: os-homedir@1.0.2
npm info lifecycle p-defer@1.0.0~install: p-defer@1.0.0
npm info lifecycle map-age-cleaner@0.1.3~install: map-age-cleaner@0.1.3
npm info lifecycle p-finally@1.0.0~install: p-finally@1.0.0
npm info lifecycle p-is-promise@2.0.0~install: p-is-promise@2.0.0
npm info lifecycle mem@4.1.0~install: mem@4.1.0
npm info lifecycle p-try@2.0.0~install: p-try@2.0.0
npm info lifecycle p-limit@2.1.0~install: p-limit@2.1.0
npm info lifecycle p-locate@3.0.0~install: p-locate@3.0.0
npm info lifecycle parse-json@4.0.0~install: parse-json@4.0.0
npm info lifecycle path-exists@3.0.0~install: path-exists@3.0.0
npm info lifecycle locate-path@3.0.0~install: locate-path@3.0.0
npm info lifecycle find-up@3.0.0~install: find-up@3.0.0
npm info lifecycle path-is-absolute@1.0.1~install: path-is-absolute@1.0.1
npm info lifecycle path-key@2.0.1~install: path-key@2.0.1
npm info lifecycle npm-run-path@2.0.2~install: npm-run-path@2.0.2
npm info lifecycle path-parse@1.0.6~install: path-parse@1.0.6
npm info lifecycle pify@3.0.0~install: pify@3.0.0
npm info lifecycle make-dir@1.3.0~install: make-dir@1.3.0
npm info lifecycle istanbul-lib-report@2.0.4~install: istanbul-lib-report@2.0.4
npm info lifecycle path-type@3.0.0~install: path-type@3.0.0
npm info lifecycle pkg-dir@3.0.0~install: pkg-dir@3.0.0
npm info lifecycle find-cache-dir@2.0.0~install: find-cache-dir@2.0.0
npm info lifecycle pseudomap@1.0.2~install: pseudomap@1.0.2
npm info lifecycle release-zalgo@1.0.0~install: release-zalgo@1.0.0
npm info lifecycle package-hash@3.0.0~install: package-hash@3.0.0
npm info lifecycle require-directory@2.1.1~install: require-directory@2.1.1
npm info lifecycle require-main-filename@1.0.1~install: require-main-filename@1.0.1
npm info lifecycle resolve@1.10.0~install: resolve@1.10.0
npm info lifecycle resolve-from@4.0.0~install: resolve-from@4.0.0
npm info lifecycle safe-buffer@5.1.2~install: safe-buffer@5.1.2
npm info lifecycle convert-source-map@1.6.0~install: convert-source-map@1.6.0
npm info lifecycle semver@5.6.0~install: semver@5.6.0
npm info lifecycle set-blocking@2.0.0~install: set-blocking@2.0.0
npm info lifecycle shebang-regex@1.0.0~install: shebang-regex@1.0.0
npm info lifecycle shebang-command@1.2.0~install: shebang-command@1.2.0
npm info lifecycle signal-exit@3.0.2~install: signal-exit@3.0.2
npm info lifecycle spdx-exceptions@2.2.0~install: spdx-exceptions@2.2.0
npm info lifecycle spdx-license-ids@3.0.3~install: spdx-license-ids@3.0.3
npm info lifecycle spdx-expression-parse@3.0.0~install: spdx-expression-parse@3.0.0
npm info lifecycle spdx-correct@3.1.0~install: spdx-correct@3.1.0
npm info lifecycle strip-ansi@4.0.0~install: strip-ansi@4.0.0
npm info lifecycle string-width@2.1.1~install: string-width@2.1.1
npm info lifecycle strip-bom@3.0.0~install: strip-bom@3.0.0
npm info lifecycle default-require-extensions@2.0.0~install: default-require-extensions@2.0.0
npm info lifecycle append-transform@1.0.0~install: append-transform@1.0.0
npm info lifecycle istanbul-lib-hook@2.0.3~install: istanbul-lib-hook@2.0.3
npm info lifecycle load-json-file@4.0.0~install: load-json-file@4.0.0
npm info lifecycle strip-eof@1.0.0~install: strip-eof@1.0.0
npm info lifecycle source-map@0.6.1~install: source-map@0.6.1
npm info lifecycle uglify-js@3.4.9~install: uglify-js@3.4.9
npm info lifecycle uuid@3.3.2~install: uuid@3.3.2
npm info lifecycle validate-npm-package-license@3.0.4~install: validate-npm-package-license@3.0.4
npm info lifecycle normalize-package-data@2.5.0~install: normalize-package-data@2.5.0
npm info lifecycle read-pkg@3.0.0~install: read-pkg@3.0.0
npm info lifecycle read-pkg-up@4.0.0~install: read-pkg-up@4.0.0
npm info lifecycle test-exclude@5.1.0~install: test-exclude@5.1.0
npm info lifecycle which@1.3.1~install: which@1.3.1
npm info lifecycle cross-spawn@6.0.5~install: cross-spawn@6.0.5
npm info lifecycle which-module@2.0.0~install: which-module@2.0.0
npm info lifecycle wordwrap@0.0.3~install: wordwrap@0.0.3
npm info lifecycle optimist@0.6.1~install: optimist@0.6.1
npm info lifecycle handlebars@4.1.0~install: handlebars@4.1.0
npm info lifecycle istanbul-reports@2.1.1~install: istanbul-reports@2.1.1
npm info lifecycle ansi-regex@2.1.1~install: ansi-regex@2.1.1
npm info lifecycle is-fullwidth-code-point@1.0.0~install: is-fullwidth-code-point@1.0.0
npm info lifecycle strip-ansi@3.0.1~install: strip-ansi@3.0.1
npm info lifecycle string-width@1.0.2~install: string-width@1.0.2
npm info lifecycle wrap-ansi@2.1.0~install: wrap-ansi@2.1.0
npm info lifecycle cliui@4.1.0~install: cliui@4.1.0
npm info lifecycle wrappy@1.0.2~install: wrappy@1.0.2
npm info lifecycle once@1.4.0~install: once@1.4.0
npm info lifecycle end-of-stream@1.4.1~install: end-of-stream@1.4.1
npm info lifecycle inflight@1.0.6~install: inflight@1.0.6
npm info lifecycle glob@7.1.3~install: glob@7.1.3
npm info lifecycle rimraf@2.6.3~install: rimraf@2.6.3
npm info lifecycle istanbul-lib-source-maps@3.0.2~install: istanbul-lib-source-maps@3.0.2
npm info lifecycle pump@3.0.0~install: pump@3.0.0
npm info lifecycle get-stream@4.1.0~install: get-stream@4.1.0
npm info lifecycle execa@1.0.0~install: execa@1.0.0
npm info lifecycle os-locale@3.1.0~install: os-locale@3.1.0
npm info lifecycle write-file-atomic@2.4.2~install: write-file-atomic@2.4.2
npm info lifecycle caching-transform@3.0.1~install: caching-transform@3.0.1
npm info lifecycle y18n@4.0.0~install: y18n@4.0.0
npm info lifecycle yallist@2.1.2~install: yallist@2.1.2
npm info lifecycle lru-cache@4.1.5~install: lru-cache@4.1.5
npm info lifecycle cross-spawn@4.0.2~install: cross-spawn@4.0.2
npm info lifecycle foreground-child@1.5.6~install: foreground-child@1.5.6
npm info lifecycle spawn-wrap@1.4.2~install: spawn-wrap@1.4.2
npm info lifecycle yargs-parser@11.1.1~install: yargs-parser@11.1.1
npm info lifecycle yargs@12.0.5~install: yargs@12.0.5
npm info lifecycle oauth-sign@0.9.0~install: oauth-sign@0.9.0
npm info lifecycle object-assign@4.1.1~install: object-assign@4.1.1
npm info lifecycle object-keys@1.1.1~install: object-keys@1.1.1
npm info lifecycle define-properties@1.1.3~install: define-properties@1.1.3
npm info lifecycle es-abstract@1.13.0~install: es-abstract@1.13.0
npm info lifecycle object.assign@4.1.0~install: object.assign@4.1.0
npm info lifecycle object.getownpropertydescriptors@2.0.3~install: object.getownpropertydescriptors@2.0.3
npm info lifecycle node-environment-flags@1.0.4~install: node-environment-flags@1.0.4
npm info lifecycle mimic-fn@1.2.0~install: mimic-fn@1.2.0
npm info lifecycle onetime@2.0.1~install: onetime@2.0.1
npm info lifecycle os-homedir@1.0.2~install: os-homedir@1.0.2
npm info lifecycle os-tmpdir@1.0.2~install: os-tmpdir@1.0.2
npm info lifecycle osenv@0.1.5~install: osenv@0.1.5
npm info lifecycle nopt@4.0.1~install: nopt@4.0.1
npm info lifecycle p-defer@1.0.0~install: p-defer@1.0.0
npm info lifecycle map-age-cleaner@0.1.3~install: map-age-cleaner@0.1.3
npm info lifecycle p-finally@1.0.0~install: p-finally@1.0.0
npm info lifecycle p-is-promise@2.1.0~install: p-is-promise@2.1.0
npm info lifecycle mem@4.3.0~install: mem@4.3.0
npm info lifecycle p-try@2.2.0~install: p-try@2.2.0
npm info lifecycle p-limit@2.2.0~install: p-limit@2.2.0
npm info lifecycle p-locate@3.0.0~install: p-locate@3.0.0
npm info lifecycle parent-module@1.0.1~install: parent-module@1.0.1
npm info lifecycle path-exists@3.0.0~install: path-exists@3.0.0
npm info lifecycle locate-path@3.0.0~install: locate-path@3.0.0
npm info lifecycle find-up@3.0.0~install: find-up@3.0.0
npm info lifecycle path-is-absolute@1.0.1~install: path-is-absolute@1.0.1
npm info lifecycle path-is-inside@1.0.2~install: path-is-inside@1.0.2
npm info lifecycle path-key@2.0.1~install: path-key@2.0.1
npm info lifecycle npm-run-path@2.0.2~install: npm-run-path@2.0.2
npm info lifecycle pathval@1.1.0~install: pathval@1.1.0
npm info lifecycle performance-now@2.1.0~install: performance-now@2.1.0
npm info lifecycle prelude-ls@1.1.2~install: prelude-ls@1.1.2
npm info lifecycle process-nextick-args@2.0.0~install: process-nextick-args@2.0.0
npm info lifecycle progress@2.0.3~install: progress@2.0.3
npm info lifecycle propagate@1.0.0~install: propagate@1.0.0
npm info lifecycle pseudomap@1.0.2~install: pseudomap@1.0.2
npm info lifecycle psl@1.1.31~install: psl@1.1.31
npm info lifecycle punycode@2.1.1~install: punycode@2.1.1
npm info lifecycle qs@6.5.2~install: qs@6.5.2
npm info lifecycle minimist@1.2.0~install: minimist@1.2.0
npm info lifecycle regexp-utils@0.3.2~install: regexp-utils@0.3.2
npm info lifecycle regexpp@2.0.1~install: regexpp@2.0.1
npm info lifecycle repeat-string@0.2.2~install: repeat-string@0.2.2
npm info lifecycle require-directory@2.1.1~install: require-directory@2.1.1
npm info lifecycle require-main-filename@1.0.1~install: require-main-filename@1.0.1
npm info lifecycle resolve-from@4.0.0~install: resolve-from@4.0.0
npm info lifecycle import-fresh@3.0.0~install: import-fresh@3.0.0
npm info lifecycle bluebird@2.3.11~install: bluebird@2.3.11
npm info lifecycle routeswitch@0.6.3~install: routeswitch@0.6.3
npm info lifecycle run-async@2.3.0~install: run-async@2.3.0
npm info lifecycle safe-buffer@5.1.2~install: safe-buffer@5.1.2
npm info lifecycle string_decoder@1.1.1~install: string_decoder@1.1.1
npm info lifecycle string_decoder@1.1.1~install: string_decoder@1.1.1
npm info lifecycle ecdsa-sig-formatter@1.0.11~install: ecdsa-sig-formatter@1.0.11
npm info lifecycle jwa@1.4.1~install: jwa@1.4.1
npm info lifecycle jws@3.2.2~install: jws@3.2.2
npm info lifecycle string_decoder@1.1.1~install: string_decoder@1.1.1
npm info lifecycle string_decoder@1.1.1~install: string_decoder@1.1.1
npm info lifecycle string_decoder@1.1.1~install: string_decoder@1.1.1
npm info lifecycle minipass@2.3.5~install: minipass@2.3.5
npm info lifecycle fs-minipass@1.2.5~install: fs-minipass@1.2.5
npm info lifecycle minizlib@1.2.1~install: minizlib@1.2.1
npm info lifecycle string_decoder@1.1.1~install: string_decoder@1.1.1
npm info lifecycle safe-json-stringify@1.2.0~install: safe-json-stringify@1.2.0
npm info lifecycle safer-buffer@2.1.2~install: safer-buffer@2.1.2
npm info lifecycle asn1@0.2.4~install: asn1@0.2.4
npm info lifecycle ecc-jsbn@0.1.2~install: ecc-jsbn@0.1.2
npm info lifecycle iconv-lite@0.4.24~install: iconv-lite@0.4.24
npm info lifecycle sax@1.2.4~install: sax@1.2.4
npm info lifecycle needle@2.2.4~install: needle@2.2.4
npm info lifecycle semaphore@1.1.0~install: semaphore@1.1.0
npm info lifecycle semver@5.7.0~install: semver@5.7.0
npm info lifecycle set-blocking@2.0.0~install: set-blocking@2.0.0
npm info lifecycle shebang-regex@1.0.0~install: shebang-regex@1.0.0
npm info lifecycle shebang-command@1.2.0~install: shebang-command@1.2.0
npm info lifecycle signal-exit@3.0.2~install: signal-exit@3.0.2
npm info lifecycle restore-cursor@2.0.0~install: restore-cursor@2.0.0
npm info lifecycle cli-cursor@2.1.0~install: cli-cursor@2.1.0
npm info lifecycle slice-ansi@2.1.0~install: slice-ansi@2.1.0
npm info lifecycle source-map@0.5.7~install: source-map@0.5.7
npm info lifecycle sprintf-js@1.0.3~install: sprintf-js@1.0.3
npm info lifecycle argparse@1.0.10~install: argparse@1.0.10
npm info lifecycle js-yaml@3.13.1~install: js-yaml@3.13.1
npm info lifecycle restbase-mod-table-spec@1.1.2~install: restbase-mod-table-spec@1.1.2
npm info lifecycle js-yaml@3.13.0~install: js-yaml@3.13.0
npm info lifecycle nan@2.10.0~install: nan@2.10.0
npm info lifecycle streamsearch@0.1.2~install: streamsearch@0.1.2
npm info lifecycle string_decoder@0.10.31~install: string_decoder@0.10.31
npm info lifecycle readable-stream@1.1.14~install: readable-stream@1.1.14
npm info lifecycle dicer@0.2.5~install: dicer@0.2.5
npm info lifecycle busboy@0.2.14~install: busboy@0.2.14
npm info lifecycle string-align@0.2.0~install: string-align@0.2.0
npm info lifecycle strip-ansi@4.0.0~install: strip-ansi@4.0.0
npm info lifecycle string-width@2.1.1~install: string-width@2.1.1
npm info lifecycle strip-eof@1.0.0~install: strip-eof@1.0.0
npm info lifecycle strip-json-comments@2.0.1~install: strip-json-comments@2.0.1
npm info lifecycle rc@1.2.8~install: rc@1.2.8
npm info lifecycle supports-color@5.5.0~install: supports-color@5.5.0
npm info lifecycle chalk@2.4.2~install: chalk@2.4.2
npm info lifecycle @babel/highlight@7.0.0~install: @babel/highlight@7.0.0
npm info lifecycle @babel/code-frame@7.0.0~install: @babel/code-frame@7.0.0
npm info lifecycle log-symbols@2.2.0~install: log-symbols@2.2.0
npm info lifecycle swagger-ui-dist@3.22.0~install: swagger-ui-dist@3.22.0
npm info lifecycle ansi-regex@4.1.0~install: ansi-regex@4.1.0
npm info lifecycle strip-ansi@5.2.0~install: strip-ansi@5.2.0
npm info lifecycle string-width@3.1.0~install: string-width@3.1.0
npm info lifecycle yallist@3.0.3~install: yallist@3.0.3
npm info lifecycle tar@4.4.8~install: tar@4.4.8
npm info lifecycle tassembly@0.2.3~install: tassembly@0.2.3
npm info lifecycle template-expression-compiler@0.1.10~install: template-expression-compiler@0.1.10
npm info lifecycle swagger-router@0.7.2~install: swagger-router@0.7.2
npm info lifecycle text-table@0.2.0~install: text-table@0.2.0
npm info lifecycle through@2.3.8~install: through@2.3.8
npm info lifecycle tmp@0.0.33~install: tmp@0.0.33
npm info lifecycle external-editor@3.0.3~install: external-editor@3.0.3
npm info lifecycle to-fast-properties@2.0.0~install: to-fast-properties@2.0.0
npm info lifecycle @babel/types@7.4.0~install: @babel/types@7.4.0
npm info lifecycle @babel/helper-get-function-arity@7.0.0~install: @babel/helper-get-function-arity@7.0.0
npm info lifecycle @babel/helper-split-export-declaration@7.4.0~install: @babel/helper-split-export-declaration@7.4.0
npm info lifecycle @babel/template@7.4.0~install: @babel/template@7.4.0
npm info lifecycle @babel/helper-function-name@7.1.0~install: @babel/helper-function-name@7.1.0
npm info lifecycle punycode@1.4.1~install: punycode@1.4.1
npm info lifecycle tough-cookie@2.4.3~install: tough-cookie@2.4.3
npm info lifecycle trim-right@1.0.1~install: trim-right@1.0.1
npm info lifecycle @babel/generator@7.4.0~install: @babel/generator@7.4.0
npm info lifecycle @babel/traverse@7.4.3~install: @babel/traverse@7.4.3
npm info lifecycle istanbul-lib-instrument@3.1.0~install: istanbul-lib-instrument@3.1.0
npm info lifecycle tslib@1.9.3~install: tslib@1.9.3
npm info lifecycle rxjs@6.4.0~install: rxjs@6.4.0
npm info lifecycle inquirer@6.2.2~install: inquirer@6.2.2
npm info lifecycle tunnel-agent@0.6.0~install: tunnel-agent@0.6.0
npm info lifecycle tweetnacl@0.14.5~install: tweetnacl@0.14.5
npm info lifecycle bcrypt-pbkdf@1.0.2~install: bcrypt-pbkdf@1.0.2
npm info lifecycle sshpk@1.16.1~install: sshpk@1.16.1
npm info lifecycle type-check@0.3.2~install: type-check@0.3.2
npm info lifecycle levn@0.3.0~install: levn@0.3.0
npm info lifecycle type-detect@4.0.8~install: type-detect@4.0.8
npm info lifecycle deep-eql@3.0.1~install: deep-eql@3.0.1
npm info lifecycle chai@4.2.0~install: chai@4.2.0
npm info lifecycle uri-js@4.2.2~install: uri-js@4.2.2
npm info lifecycle ajv@6.10.0~install: ajv@6.10.0
npm info lifecycle har-validator@5.1.3~install: har-validator@5.1.3
npm info lifecycle table@5.2.3~install: table@5.2.3
npm info lifecycle util-deprecate@1.0.2~install: util-deprecate@1.0.2
npm info lifecycle readable-stream@2.3.6~install: readable-stream@2.3.6
npm info lifecycle are-we-there-yet@1.1.5~install: are-we-there-yet@1.1.5
npm info lifecycle readable-stream@2.3.6~install: readable-stream@2.3.6
npm info lifecycle bl@1.2.2~install: bl@1.2.2
npm info lifecycle readable-stream@2.3.6~install: readable-stream@2.3.6
npm info lifecycle kad-fs@0.0.4~install: kad-fs@0.0.4
npm info lifecycle readable-stream@2.3.6~install: readable-stream@2.3.6
npm info lifecycle kad-memstore@0.0.1~install: kad-memstore@0.0.1
npm info lifecycle readable-stream@2.3.6~install: readable-stream@2.3.6
npm info lifecycle readable-stream@2.3.6~install: readable-stream@2.3.6
npm info lifecycle msgpack5@3.6.0~install: msgpack5@3.6.0
npm info lifecycle kad@1.3.6~install: kad@1.3.6
npm info lifecycle limitation@0.2.1~install: limitation@0.2.1
npm info lifecycle uuid@3.3.2~install: uuid@3.3.2
npm info lifecycle verror@1.10.0~install: verror@1.10.0
npm info lifecycle jsprim@1.4.1~install: jsprim@1.4.1
npm info lifecycle http-signature@1.2.0~install: http-signature@1.2.0
npm info lifecycle request@2.88.0~install: request@2.88.0
npm info lifecycle vscode-languageserver-types@3.14.0~install: vscode-languageserver-types@3.14.0
npm info lifecycle vscode-nls@4.1.0~install: vscode-nls@4.1.0
npm info lifecycle vscode-uri@1.0.6~install: vscode-uri@1.0.6
npm info lifecycle vscode-json-languageservice@3.2.1~install: vscode-json-languageservice@3.2.1
npm info lifecycle when@3.7.8~install: when@3.7.8
npm info lifecycle requestretry@3.1.0~install: requestretry@3.1.0
npm info lifecycle preq@0.5.7~install: preq@0.5.7
npm info lifecycle which@1.3.1~install: which@1.3.1
npm info lifecycle cross-spawn@6.0.5~install: cross-spawn@6.0.5
npm info lifecycle which-module@2.0.0~install: which-module@2.0.0
npm info lifecycle wide-align@1.1.3~install: wide-align@1.1.3
npm info lifecycle gauge@2.7.4~install: gauge@2.7.4
npm info lifecycle npmlog@4.1.2~install: npmlog@4.1.2
npm info lifecycle wordwrap@1.0.0~install: wordwrap@1.0.0
npm info lifecycle optionator@0.8.2~install: optionator@0.8.2
npm info lifecycle ansi-regex@2.1.1~install: ansi-regex@2.1.1
npm info lifecycle is-fullwidth-code-point@1.0.0~install: is-fullwidth-code-point@1.0.0
npm info lifecycle strip-ansi@3.0.1~install: strip-ansi@3.0.1
npm info lifecycle string-width@1.0.2~install: string-width@1.0.2
npm info lifecycle wrap-ansi@2.1.0~install: wrap-ansi@2.1.0
npm info lifecycle cliui@4.1.0~install: cliui@4.1.0
npm info lifecycle wrappy@1.0.2~install: wrappy@1.0.2
npm info lifecycle once@1.4.0~install: once@1.4.0
npm info lifecycle end-of-stream@1.4.1~install: end-of-stream@1.4.1
npm info lifecycle inflight@1.0.6~install: inflight@1.0.6
npm info lifecycle glob@7.1.3~install: glob@7.1.3
npm info lifecycle glob@7.1.3~install: glob@7.1.3
npm info lifecycle rimraf@2.6.3~install: rimraf@2.6.3
npm info lifecycle glob@6.0.4~install: glob@6.0.4
npm info lifecycle rimraf@2.4.5~install: rimraf@2.4.5
npm info lifecycle mv@2.1.1~install: mv@2.1.1
npm info lifecycle bunyan@1.8.12~install: bunyan@1.8.12
npm info lifecycle glob@7.1.3~install: glob@7.1.3
npm info lifecycle glob@7.1.3~install: glob@7.1.3
npm info lifecycle rimraf@2.6.3~install: rimraf@2.6.3
npm info lifecycle node-pre-gyp@0.11.0~install: node-pre-gyp@0.11.0
npm info lifecycle sqlite3@4.0.6~install: sqlite3@4.0.6
> sqlite3@4.0.6 install /usr/src/app/node_modules/sqlite3
> node-pre-gyp install --fallback-to-build
node-pre-gyp info it worked if it ends with ok
node-pre-gyp info using node-pre-gyp@0.11.0
node-pre-gyp info using node@6.11.0 | linux | x64
node-pre-gyp WARN Using request for node-pre-gyp https download
node-pre-gyp info check checked for "/usr/src/app/node_modules/sqlite3/lib/binding/node-v48-linux-x64/node_sqlite3.node" (not found)
node-pre-gyp http GET https://mapbox-node-binary.s3.amazonaws.com/sqlite3/v4.0.6/node-v48-linux-x64.tar.gz
node-pre-gyp http 200 https://mapbox-node-binary.s3.amazonaws.com/sqlite3/v4.0.6/node-v48-linux-x64.tar.gz
node-pre-gyp info install unpacking node-v48-linux-x64/node_sqlite3.node
node-pre-gyp info tarball done parsing tarball
[sqlite3] Success: "/usr/src/app/node_modules/sqlite3/lib/binding/node-v48-linux-x64/node_sqlite3.node" is installed via remote
node-pre-gyp info ok
npm info lifecycle pump@3.0.0~install: pump@3.0.0
npm info lifecycle get-stream@4.1.0~install: get-stream@4.1.0
npm info lifecycle execa@1.0.0~install: execa@1.0.0
npm info lifecycle os-locale@3.1.0~install: os-locale@3.1.0
npm info lifecycle write@1.0.3~install: write@1.0.3
npm info lifecycle flat-cache@2.0.1~install: flat-cache@2.0.1
npm info lifecycle file-entry-cache@5.0.1~install: file-entry-cache@5.0.1
npm info lifecycle eslint@5.16.0~install: eslint@5.16.0
npm info lifecycle y18n@4.0.0~install: y18n@4.0.0
npm info lifecycle yargs@13.2.2~install: yargs@13.2.2
npm info lifecycle yallist@2.1.2~install: yallist@2.1.2
npm info lifecycle lru-cache@4.1.5~install: lru-cache@4.1.5
npm info lifecycle yargs-parser@11.1.1~install: yargs-parser@11.1.1
npm info lifecycle yargs@12.0.5~install: yargs@12.0.5
npm info lifecycle yargs-unparser@1.5.0~install: yargs-unparser@1.5.0
npm info lifecycle content-type@1.0.1~install: content-type@1.0.1
npm info lifecycle coveralls@3.0.3~install: coveralls@3.0.3
npm info lifecycle entities@1.1.2~install: entities@1.1.2
npm info lifecycle eslint-config-wikimedia@0.11.0~install: eslint-config-wikimedia@0.11.0
npm info lifecycle eslint-plugin-jsdoc@4.8.2~install: eslint-plugin-jsdoc@4.8.2
npm info lifecycle eslint-plugin-json@1.4.0~install: eslint-plugin-json@1.4.0
npm info lifecycle hyperswitch@0.11.1~install: hyperswitch@0.11.1
npm info lifecycle jsonwebtoken@8.5.1~install: jsonwebtoken@8.5.1
npm info lifecycle mediawiki-title@0.6.5~install: mediawiki-title@0.6.5
npm info lifecycle mocha@6.1.1~install: mocha@6.1.1
npm info lifecycle mocha-lcov-reporter@1.3.0~install: mocha-lcov-reporter@1.3.0
npm info lifecycle mocha.parallel@0.15.6~install: mocha.parallel@0.15.6
npm info lifecycle nock@10.0.6~install: nock@10.0.6
npm info lifecycle nyc@13.3.0~install: nyc@13.3.0
npm info lifecycle restbase-mod-table-cassandra@1.1.3~install: restbase-mod-table-cassandra@1.1.3
npm info lifecycle restbase-mod-table-sqlite@1.1.2~install: restbase-mod-table-sqlite@1.1.2
npm info lifecycle semver@6.0.0~install: semver@6.0.0
npm info lifecycle service-runner@2.6.17~install: service-runner@2.6.17
npm info lifecycle @babel/parser@7.4.3~postinstall: @babel/parser@7.4.3
npm info lifecycle abbrev@1.1.1~postinstall: abbrev@1.1.1
npm info lifecycle acorn@6.1.1~postinstall: acorn@6.1.1
npm info lifecycle acorn-jsx@5.0.1~postinstall: acorn-jsx@5.0.1
npm info lifecycle ansi-colors@3.2.3~postinstall: ansi-colors@3.2.3
npm info lifecycle ansi-escapes@3.2.0~postinstall: ansi-escapes@3.2.0
npm info lifecycle ansi-regex@3.0.0~postinstall: ansi-regex@3.0.0
npm info lifecycle aproba@1.2.0~postinstall: aproba@1.2.0
npm info lifecycle isarray@1.0.0~postinstall: isarray@1.0.0
npm info lifecycle asap@2.0.6~postinstall: asap@2.0.6
npm info lifecycle assert-plus@1.0.0~postinstall: assert-plus@1.0.0
npm info lifecycle assertion-error@1.1.0~postinstall: assertion-error@1.1.0
npm info lifecycle astral-regex@1.0.0~postinstall: astral-regex@1.0.0
npm info lifecycle async@0.9.2~postinstall: async@0.9.2
npm info lifecycle asynckit@0.4.0~postinstall: asynckit@0.4.0
npm info lifecycle aws-sign2@0.7.0~postinstall: aws-sign2@0.7.0
npm info lifecycle aws4@1.8.0~postinstall: aws4@1.8.0
npm info lifecycle balanced-match@1.0.0~postinstall: balanced-match@1.0.0
npm info lifecycle isarray@1.0.0~postinstall: isarray@1.0.0
npm info lifecycle bluebird@3.5.4~postinstall: bluebird@3.5.4
npm info lifecycle browser-stdout@1.3.1~postinstall: browser-stdout@1.3.1
npm info lifecycle buffer-equal-constant-time@1.0.1~postinstall: buffer-equal-constant-time@1.0.1
npm info lifecycle bunyan-syslog-udp@0.2.0~postinstall: bunyan-syslog-udp@0.2.0
npm info lifecycle callsites@3.1.0~postinstall: callsites@3.1.0
npm info lifecycle camelcase@5.3.1~postinstall: camelcase@5.3.1
npm info lifecycle caseless@0.12.0~postinstall: caseless@0.12.0
npm info lifecycle long@2.4.0~postinstall: long@2.4.0
npm info lifecycle cassandra-driver@3.5.0~postinstall: cassandra-driver@3.5.0
npm info lifecycle chardet@0.7.0~postinstall: chardet@0.7.0
npm info lifecycle check-error@1.0.2~postinstall: check-error@1.0.2
npm info lifecycle chownr@1.1.1~postinstall: chownr@1.1.1
npm info lifecycle clarinet@0.11.0~postinstall: clarinet@0.11.0
npm info lifecycle cli-width@2.2.0~postinstall: cli-width@2.2.0
npm info lifecycle code-point-at@1.1.0~postinstall: code-point-at@1.1.0
npm info lifecycle color-name@1.1.3~postinstall: color-name@1.1.3
npm info lifecycle color-convert@1.9.3~postinstall: color-convert@1.9.3
npm info lifecycle ansi-styles@3.2.1~postinstall: ansi-styles@3.2.1
npm info lifecycle colors@1.3.3~postinstall: colors@1.3.3
npm info lifecycle comment-parser@0.5.4~postinstall: comment-parser@0.5.4
npm info lifecycle concat-map@0.0.1~postinstall: concat-map@0.0.1
npm info lifecycle brace-expansion@1.1.11~postinstall: brace-expansion@1.1.11
npm info lifecycle console-control-strings@1.1.0~postinstall: console-control-strings@1.1.0
npm info lifecycle core-js@2.6.5~postinstall: core-js@2.6.5
npm info lifecycle core-util-is@1.0.2~postinstall: core-util-is@1.0.2
npm info lifecycle minimist@1.2.0~postinstall: minimist@1.2.0
npm info lifecycle semver@5.7.0~postinstall: semver@5.7.0
npm info lifecycle dashdash@1.14.1~postinstall: dashdash@1.14.1
npm info lifecycle decamelize@1.2.0~postinstall: decamelize@1.2.0
npm info lifecycle deep-equal@1.0.1~postinstall: deep-equal@1.0.1
npm info lifecycle deep-extend@0.6.0~postinstall: deep-extend@0.6.0
npm info lifecycle deep-is@0.1.3~postinstall: deep-is@0.1.3
npm info lifecycle delayed-stream@1.0.0~postinstall: delayed-stream@1.0.0
npm info lifecycle combined-stream@1.0.7~postinstall: combined-stream@1.0.7
npm info lifecycle delegates@1.0.0~postinstall: delegates@1.0.0
npm info lifecycle detect-libc@1.0.3~postinstall: detect-libc@1.0.3
npm info lifecycle diff@3.5.0~postinstall: diff@3.5.0
npm info lifecycle dom-storage@2.1.0~postinstall: dom-storage@2.1.0
npm info lifecycle emoji-regex@7.0.3~postinstall: emoji-regex@7.0.3
npm info lifecycle escape-string-regexp@1.0.5~postinstall: escape-string-regexp@1.0.5
npm info lifecycle eslint-plugin-no-jquery@2.0.0~postinstall: eslint-plugin-no-jquery@2.0.0
npm info lifecycle eslint-plugin-qunit@4.0.0~postinstall: eslint-plugin-qunit@4.0.0
npm info lifecycle eslint-utils@1.3.1~postinstall: eslint-utils@1.3.1
npm info lifecycle eslint-visitor-keys@1.0.0~postinstall: eslint-visitor-keys@1.0.0
npm info lifecycle semver@5.7.0~postinstall: semver@5.7.0
npm info lifecycle espree@5.0.1~postinstall: espree@5.0.1
npm info lifecycle esprima@4.0.1~postinstall: esprima@4.0.1
npm info lifecycle estraverse@4.2.0~postinstall: estraverse@4.2.0
npm info lifecycle esquery@1.0.1~postinstall: esquery@1.0.1
npm info lifecycle esrecurse@4.2.1~postinstall: esrecurse@4.2.1
npm info lifecycle eslint-scope@4.0.3~postinstall: eslint-scope@4.0.3
npm info lifecycle esutils@2.0.2~postinstall: esutils@2.0.2
npm info lifecycle doctrine@3.0.0~postinstall: doctrine@3.0.0
npm info lifecycle extend@3.0.2~postinstall: extend@3.0.2
npm info lifecycle extsprintf@1.3.0~postinstall: extsprintf@1.3.0
npm info lifecycle fast-deep-equal@2.0.1~postinstall: fast-deep-equal@2.0.1
npm info lifecycle fast-json-stable-stringify@2.0.0~postinstall: fast-json-stable-stringify@2.0.0
npm info lifecycle fast-levenshtein@2.0.6~postinstall: fast-levenshtein@2.0.6
npm info lifecycle figures@2.0.0~postinstall: figures@2.0.0
npm info lifecycle flatted@2.0.0~postinstall: flatted@2.0.0
npm info lifecycle forever-agent@0.6.1~postinstall: forever-agent@0.6.1
npm info lifecycle fs.realpath@1.0.0~postinstall: fs.realpath@1.0.0
npm info lifecycle function-bind@1.1.1~postinstall: function-bind@1.1.1
npm info lifecycle functional-red-black-tree@1.0.1~postinstall: functional-red-black-tree@1.0.1
npm info lifecycle ansi-regex@2.1.1~postinstall: ansi-regex@2.1.1
npm info lifecycle strip-ansi@3.0.1~postinstall: strip-ansi@3.0.1
npm info lifecycle abbrev@1.1.1~postinstall: abbrev@1.1.1
npm info lifecycle ansi-regex@2.1.1~postinstall: ansi-regex@2.1.1
npm info lifecycle aproba@1.2.0~postinstall: aproba@1.2.0
npm info lifecycle balanced-match@1.0.0~postinstall: balanced-match@1.0.0
npm info lifecycle chownr@1.1.1~postinstall: chownr@1.1.1
npm info lifecycle code-point-at@1.1.0~postinstall: code-point-at@1.1.0
npm info lifecycle concat-map@0.0.1~postinstall: concat-map@0.0.1
npm info lifecycle brace-expansion@1.1.11~postinstall: brace-expansion@1.1.11
npm info lifecycle console-control-strings@1.1.0~postinstall: console-control-strings@1.1.0
npm info lifecycle core-util-is@1.0.2~postinstall: core-util-is@1.0.2
npm info lifecycle deep-extend@0.6.0~postinstall: deep-extend@0.6.0
npm info lifecycle delegates@1.0.0~postinstall: delegates@1.0.0
npm info lifecycle detect-libc@1.0.3~postinstall: detect-libc@1.0.3
npm info lifecycle fs.realpath@1.0.0~postinstall: fs.realpath@1.0.0
npm info lifecycle has-unicode@2.0.1~postinstall: has-unicode@2.0.1
npm info lifecycle inherits@2.0.3~postinstall: inherits@2.0.3
npm info lifecycle ini@1.3.5~postinstall: ini@1.3.5
npm info lifecycle isarray@1.0.0~postinstall: isarray@1.0.0
npm info lifecycle minimatch@3.0.4~postinstall: minimatch@3.0.4
npm info lifecycle ignore-walk@3.0.1~postinstall: ignore-walk@3.0.1
npm info lifecycle minimist@0.0.8~postinstall: minimist@0.0.8
npm info lifecycle mkdirp@0.5.1~postinstall: mkdirp@0.5.1
npm info lifecycle ms@2.0.0~postinstall: ms@2.0.0
npm info lifecycle debug@2.6.9~postinstall: debug@2.6.9
npm info lifecycle sax@1.2.4~postinstall: sax@1.2.4
npm info lifecycle npm-bundled@1.0.5~postinstall: npm-bundled@1.0.5
npm info lifecycle npm-packlist@1.1.12~postinstall: npm-packlist@1.1.12
npm info lifecycle number-is-nan@1.0.1~postinstall: number-is-nan@1.0.1
npm info lifecycle is-fullwidth-code-point@1.0.0~postinstall: is-fullwidth-code-point@1.0.0
npm info lifecycle object-assign@4.1.1~postinstall: object-assign@4.1.1
npm info lifecycle os-homedir@1.0.2~postinstall: os-homedir@1.0.2
npm info lifecycle os-tmpdir@1.0.2~postinstall: os-tmpdir@1.0.2
npm info lifecycle osenv@0.1.5~postinstall: osenv@0.1.5
npm info lifecycle nopt@4.0.1~postinstall: nopt@4.0.1
npm info lifecycle path-is-absolute@1.0.1~postinstall: path-is-absolute@1.0.1
npm info lifecycle process-nextick-args@2.0.0~postinstall: process-nextick-args@2.0.0
npm info lifecycle minimist@1.2.0~postinstall: minimist@1.2.0
npm info lifecycle safe-buffer@5.1.2~postinstall: safe-buffer@5.1.2
npm info lifecycle safer-buffer@2.1.2~postinstall: safer-buffer@2.1.2
npm info lifecycle iconv-lite@0.4.24~postinstall: iconv-lite@0.4.24
npm info lifecycle needle@2.2.4~postinstall: needle@2.2.4
npm info lifecycle semver@5.5.0~postinstall: semver@5.5.0
npm info lifecycle set-blocking@2.0.0~postinstall: set-blocking@2.0.0
npm info lifecycle signal-exit@3.0.2~postinstall: signal-exit@3.0.2
npm info lifecycle string_decoder@1.1.1~postinstall: string_decoder@1.1.1
npm info lifecycle strip-ansi@3.0.1~postinstall: strip-ansi@3.0.1
npm info lifecycle string-width@1.0.2~postinstall: string-width@1.0.2
npm info lifecycle strip-json-comments@2.0.1~postinstall: strip-json-comments@2.0.1
npm info lifecycle rc@1.2.8~postinstall: rc@1.2.8
npm info lifecycle util-deprecate@1.0.2~postinstall: util-deprecate@1.0.2
npm info lifecycle readable-stream@2.3.6~postinstall: readable-stream@2.3.6
npm info lifecycle are-we-there-yet@1.1.5~postinstall: are-we-there-yet@1.1.5
npm info lifecycle wide-align@1.1.3~postinstall: wide-align@1.1.3
npm info lifecycle gauge@2.7.4~postinstall: gauge@2.7.4
npm info lifecycle npmlog@4.1.2~postinstall: npmlog@4.1.2
npm info lifecycle wrappy@1.0.2~postinstall: wrappy@1.0.2
npm info lifecycle once@1.4.0~postinstall: once@1.4.0
npm info lifecycle inflight@1.0.6~postinstall: inflight@1.0.6
npm info lifecycle glob@7.1.2~postinstall: glob@7.1.2
npm info lifecycle rimraf@2.6.2~postinstall: rimraf@2.6.2
npm info lifecycle yallist@3.0.2~postinstall: yallist@3.0.2
npm info lifecycle minipass@2.3.5~postinstall: minipass@2.3.5
npm info lifecycle fs-minipass@1.2.5~postinstall: fs-minipass@1.2.5
npm info lifecycle minizlib@1.1.1~postinstall: minizlib@1.1.1
npm info lifecycle tar@4.4.6~postinstall: tar@4.4.6
npm info lifecycle node-pre-gyp@0.11.0~postinstall: node-pre-gyp@0.11.0
npm info lifecycle gelfling@0.3.1~postinstall: gelfling@0.3.1
npm info lifecycle gelf-stream@1.1.1~postinstall: gelf-stream@1.1.1
npm info lifecycle generic-pool@3.7.1~postinstall: generic-pool@3.7.1
npm info lifecycle get-caller-file@1.0.3~postinstall: get-caller-file@1.0.3
npm info lifecycle get-func-name@2.0.0~postinstall: get-func-name@2.0.0
npm info lifecycle getpass@0.1.7~postinstall: getpass@0.1.7
npm info lifecycle globals@11.11.0~postinstall: globals@11.11.0
npm info lifecycle growl@1.10.5~postinstall: growl@1.10.5
npm info lifecycle har-schema@2.0.0~postinstall: har-schema@2.0.0
npm info lifecycle has@1.0.3~postinstall: has@1.0.3
npm info lifecycle has-flag@3.0.0~postinstall: has-flag@3.0.0
npm info lifecycle has-symbols@1.0.0~postinstall: has-symbols@1.0.0
npm info lifecycle has-unicode@2.0.1~postinstall: has-unicode@2.0.1
npm info lifecycle hat@0.0.3~postinstall: hat@0.0.3
npm info lifecycle he@1.2.0~postinstall: he@1.2.0
npm info lifecycle hot-shots@5.9.2~postinstall: hot-shots@5.9.2
npm info lifecycle ignore@4.0.6~postinstall: ignore@4.0.6
npm info lifecycle imurmurhash@0.1.4~postinstall: imurmurhash@0.1.4
npm info lifecycle inherits@2.0.3~postinstall: inherits@2.0.3
npm info lifecycle ini@1.3.5~postinstall: ini@1.3.5
npm info lifecycle ansi-regex@4.1.0~postinstall: ansi-regex@4.1.0
npm info lifecycle strip-ansi@5.2.0~postinstall: strip-ansi@5.2.0
npm info lifecycle invert-kv@2.0.0~postinstall: invert-kv@2.0.0
npm info lifecycle is-buffer@2.0.3~postinstall: is-buffer@2.0.3
npm info lifecycle flat@4.1.0~postinstall: flat@4.1.0
npm info lifecycle is-callable@1.1.4~postinstall: is-callable@1.1.4
npm info lifecycle is-date-object@1.0.1~postinstall: is-date-object@1.0.1
npm info lifecycle is-fullwidth-code-point@2.0.0~postinstall: is-fullwidth-code-point@2.0.0
npm info lifecycle is-promise@2.1.0~postinstall: is-promise@2.1.0
npm info lifecycle is-regex@1.0.4~postinstall: is-regex@1.0.4
npm info lifecycle is-stream@1.1.0~postinstall: is-stream@1.1.0
npm info lifecycle is-symbol@1.0.2~postinstall: is-symbol@1.0.2
npm info lifecycle es-to-primitive@1.2.0~postinstall: es-to-primitive@1.2.0
npm info lifecycle is-typedarray@1.0.0~postinstall: is-typedarray@1.0.0
npm info lifecycle isarray@0.0.1~postinstall: isarray@0.0.1
npm info lifecycle isexe@2.0.0~postinstall: isexe@2.0.0
npm info lifecycle isstream@0.1.2~postinstall: isstream@0.1.2
npm info lifecycle istanbul-lib-coverage@2.0.3~postinstall: istanbul-lib-coverage@2.0.3
npm info lifecycle semver@5.7.0~postinstall: semver@5.7.0
npm info lifecycle js-tokens@4.0.0~postinstall: js-tokens@4.0.0
npm info lifecycle jsbn@0.1.1~postinstall: jsbn@0.1.1
npm info lifecycle jsdoctypeparser@3.1.0~postinstall: jsdoctypeparser@3.1.0
npm info lifecycle jsesc@2.5.2~postinstall: jsesc@2.5.2
npm info lifecycle json-schema@0.2.3~postinstall: json-schema@0.2.3
npm info lifecycle json-schema-traverse@0.4.1~postinstall: json-schema-traverse@0.4.1
npm info lifecycle json-stable-stringify-without-jsonify@1.0.1~postinstall: json-stable-stringify-without-jsonify@1.0.1
npm info lifecycle json-stringify-safe@5.0.1~postinstall: json-stringify-safe@5.0.1
npm info lifecycle jsonc-parser@2.1.0~postinstall: jsonc-parser@2.1.0
npm info lifecycle semver@5.7.0~postinstall: semver@5.7.0
npm info lifecycle isarray@1.0.0~postinstall: isarray@1.0.0
npm info lifecycle kad-localstorage@0.0.7~postinstall: kad-localstorage@0.0.7
npm info lifecycle isarray@1.0.0~postinstall: isarray@1.0.0
npm info lifecycle lodash@3.10.1~postinstall: lodash@3.10.1
npm info lifecycle ms@0.7.3~postinstall: ms@0.7.3
npm info lifecycle lcid@2.0.0~postinstall: lcid@2.0.0
npm info lifecycle lcov-parse@0.0.10~postinstall: lcov-parse@0.0.10
npm info lifecycle isarray@1.0.0~postinstall: isarray@1.0.0
npm info lifecycle lodash@4.17.11~postinstall: lodash@4.17.11
npm info lifecycle lodash._baseclone@4.5.7~postinstall: lodash._baseclone@4.5.7
npm info lifecycle lodash.clone@4.3.2~postinstall: lodash.clone@4.3.2
npm info lifecycle dnscache@1.0.1~postinstall: dnscache@1.0.1
npm info lifecycle lodash.includes@4.3.0~postinstall: lodash.includes@4.3.0
npm info lifecycle lodash.isboolean@3.0.3~postinstall: lodash.isboolean@3.0.3
npm info lifecycle lodash.isinteger@4.0.4~postinstall: lodash.isinteger@4.0.4
npm info lifecycle lodash.isnumber@3.0.3~postinstall: lodash.isnumber@3.0.3
npm info lifecycle lodash.isplainobject@4.0.6~postinstall: lodash.isplainobject@4.0.6
npm info lifecycle lodash.isstring@4.0.1~postinstall: lodash.isstring@4.0.1
npm info lifecycle lodash.once@4.1.1~postinstall: lodash.once@4.1.1
npm info lifecycle log-driver@1.2.7~postinstall: log-driver@1.2.7
npm info lifecycle long@4.0.0~postinstall: long@4.0.0
npm info lifecycle cassandra-uuid@0.1.0~postinstall: cassandra-uuid@0.1.0
npm info lifecycle merge@1.2.1~postinstall: merge@1.2.1
npm info lifecycle mime-db@1.38.0~postinstall: mime-db@1.38.0
npm info lifecycle mime-types@2.1.22~postinstall: mime-types@2.1.22
npm info lifecycle form-data@2.3.3~postinstall: form-data@2.3.3
npm info lifecycle mimic-fn@2.1.0~postinstall: mimic-fn@2.1.0
npm info lifecycle minimatch@3.0.4~postinstall: minimatch@3.0.4
npm info lifecycle ignore-walk@3.0.1~postinstall: ignore-walk@3.0.1
npm info lifecycle minimist@0.0.8~postinstall: minimist@0.0.8
npm info lifecycle yallist@3.0.3~postinstall: yallist@3.0.3
npm info lifecycle mkdirp@0.5.1~postinstall: mkdirp@0.5.1
npm info lifecycle bluebird@2.11.0~postinstall: bluebird@2.11.0
npm info lifecycle ansi-regex@4.1.0~postinstall: ansi-regex@4.1.0
npm info lifecycle get-caller-file@2.0.5~postinstall: get-caller-file@2.0.5
npm info lifecycle require-main-filename@2.0.0~postinstall: require-main-filename@2.0.0
npm info lifecycle strip-ansi@5.2.0~postinstall: strip-ansi@5.2.0
npm info lifecycle string-width@3.1.0~postinstall: string-width@3.1.0
npm info lifecycle supports-color@6.0.0~postinstall: supports-color@6.0.0
npm info lifecycle yargs-parser@13.0.0~postinstall: yargs-parser@13.0.0
npm info lifecycle moment@2.24.0~postinstall: moment@2.24.0
npm info lifecycle ms@2.1.1~postinstall: ms@2.1.1
npm info lifecycle debug@4.1.1~postinstall: debug@4.1.1
npm info lifecycle debug@3.2.6~postinstall: debug@3.2.6
npm info lifecycle isarray@1.0.0~postinstall: isarray@1.0.0
npm info lifecycle mute-stream@0.0.7~postinstall: mute-stream@0.0.7
npm info lifecycle nan@2.13.2~postinstall: nan@2.13.2
npm info lifecycle dtrace-provider@0.8.7~postinstall: dtrace-provider@0.8.7
npm info lifecycle gc-stats@1.2.1~postinstall: gc-stats@1.2.1
npm info lifecycle heapdump@0.3.12~postinstall: heapdump@0.3.12
npm info lifecycle natural-compare@1.4.0~postinstall: natural-compare@1.4.0
npm info lifecycle ncp@2.0.0~postinstall: ncp@2.0.0
npm info lifecycle ms@2.0.0~postinstall: ms@2.0.0
npm info lifecycle debug@2.6.9~postinstall: debug@2.6.9
npm info lifecycle nice-try@1.0.5~postinstall: nice-try@1.0.5
npm info lifecycle semver@5.7.0~postinstall: semver@5.7.0
npm info lifecycle semver@5.7.0~postinstall: semver@5.7.0
npm info lifecycle npm-bundled@1.0.6~postinstall: npm-bundled@1.0.6
npm info lifecycle npm-packlist@1.4.1~postinstall: npm-packlist@1.4.1
npm info lifecycle number-is-nan@1.0.1~postinstall: number-is-nan@1.0.1
npm info lifecycle is-fullwidth-code-point@1.0.0~postinstall: is-fullwidth-code-point@1.0.0
npm info lifecycle string-width@1.0.2~postinstall: string-width@1.0.2
npm info lifecycle ansi-regex@3.0.0~postinstall: ansi-regex@3.0.0
npm info lifecycle archy@1.0.0~postinstall: archy@1.0.0
npm info lifecycle arrify@1.0.1~postinstall: arrify@1.0.1
npm info lifecycle balanced-match@1.0.0~postinstall: balanced-match@1.0.0
npm info lifecycle camelcase@5.0.0~postinstall: camelcase@5.0.0
npm info lifecycle code-point-at@1.1.0~postinstall: code-point-at@1.1.0
npm info lifecycle commander@2.17.1~postinstall: commander@2.17.1
npm info lifecycle commondir@1.0.1~postinstall: commondir@1.0.1
npm info lifecycle concat-map@0.0.1~postinstall: concat-map@0.0.1
npm info lifecycle brace-expansion@1.1.11~postinstall: brace-expansion@1.1.11
npm info lifecycle decamelize@1.2.0~postinstall: decamelize@1.2.0
npm info lifecycle es6-error@4.1.1~postinstall: es6-error@4.1.1
npm info lifecycle fs.realpath@1.0.0~postinstall: fs.realpath@1.0.0
npm info lifecycle get-caller-file@1.0.3~postinstall: get-caller-file@1.0.3
npm info lifecycle graceful-fs@4.1.15~postinstall: graceful-fs@4.1.15
npm info lifecycle source-map@0.6.1~postinstall: source-map@0.6.1
npm info lifecycle has-flag@3.0.0~postinstall: has-flag@3.0.0
npm info lifecycle hosted-git-info@2.7.1~postinstall: hosted-git-info@2.7.1
npm info lifecycle imurmurhash@0.1.4~postinstall: imurmurhash@0.1.4
npm info lifecycle inherits@2.0.3~postinstall: inherits@2.0.3
npm info lifecycle invert-kv@2.0.0~postinstall: invert-kv@2.0.0
npm info lifecycle is-arrayish@0.2.1~postinstall: is-arrayish@0.2.1
npm info lifecycle error-ex@1.3.2~postinstall: error-ex@1.3.2
npm info lifecycle is-fullwidth-code-point@2.0.0~postinstall: is-fullwidth-code-point@2.0.0
npm info lifecycle is-stream@1.1.0~postinstall: is-stream@1.1.0
npm info lifecycle hasha@3.0.0~postinstall: hasha@3.0.0
npm info lifecycle isexe@2.0.0~postinstall: isexe@2.0.0
npm info lifecycle istanbul-lib-coverage@2.0.3~postinstall: istanbul-lib-coverage@2.0.3
npm info lifecycle supports-color@6.1.0~postinstall: supports-color@6.1.0
npm info lifecycle source-map@0.6.1~postinstall: source-map@0.6.1
npm info lifecycle json-parse-better-errors@1.0.2~postinstall: json-parse-better-errors@1.0.2
npm info lifecycle lcid@2.0.0~postinstall: lcid@2.0.0
npm info lifecycle lodash@4.17.11~postinstall: lodash@4.17.11
npm info lifecycle async@2.6.2~postinstall: async@2.6.2
npm info lifecycle lodash.flattendeep@4.4.0~postinstall: lodash.flattendeep@4.4.0
npm info lifecycle source-map@0.6.1~postinstall: source-map@0.6.1
npm info lifecycle merge-source-map@1.1.0~postinstall: merge-source-map@1.1.0
npm info lifecycle mimic-fn@1.2.0~postinstall: mimic-fn@1.2.0
npm info lifecycle minimatch@3.0.4~postinstall: minimatch@3.0.4
npm info lifecycle minimist@0.0.10~postinstall: minimist@0.0.10
npm info lifecycle minimist@0.0.8~postinstall: minimist@0.0.8
npm info lifecycle mkdirp@0.5.1~postinstall: mkdirp@0.5.1
npm info lifecycle ms@2.1.1~postinstall: ms@2.1.1
npm info lifecycle debug@4.1.1~postinstall: debug@4.1.1
npm info lifecycle nice-try@1.0.5~postinstall: nice-try@1.0.5
npm info lifecycle number-is-nan@1.0.1~postinstall: number-is-nan@1.0.1
npm info lifecycle os-homedir@1.0.2~postinstall: os-homedir@1.0.2
npm info lifecycle p-defer@1.0.0~postinstall: p-defer@1.0.0
npm info lifecycle map-age-cleaner@0.1.3~postinstall: map-age-cleaner@0.1.3
npm info lifecycle p-finally@1.0.0~postinstall: p-finally@1.0.0
npm info lifecycle p-is-promise@2.0.0~postinstall: p-is-promise@2.0.0
npm info lifecycle mem@4.1.0~postinstall: mem@4.1.0
npm info lifecycle p-try@2.0.0~postinstall: p-try@2.0.0
npm info lifecycle p-limit@2.1.0~postinstall: p-limit@2.1.0
npm info lifecycle p-locate@3.0.0~postinstall: p-locate@3.0.0
npm info lifecycle parse-json@4.0.0~postinstall: parse-json@4.0.0
npm info lifecycle path-exists@3.0.0~postinstall: path-exists@3.0.0
npm info lifecycle locate-path@3.0.0~postinstall: locate-path@3.0.0
npm info lifecycle find-up@3.0.0~postinstall: find-up@3.0.0
npm info lifecycle path-is-absolute@1.0.1~postinstall: path-is-absolute@1.0.1
npm info lifecycle path-key@2.0.1~postinstall: path-key@2.0.1
npm info lifecycle npm-run-path@2.0.2~postinstall: npm-run-path@2.0.2
npm info lifecycle path-parse@1.0.6~postinstall: path-parse@1.0.6
npm info lifecycle pify@3.0.0~postinstall: pify@3.0.0
npm info lifecycle make-dir@1.3.0~postinstall: make-dir@1.3.0
npm info lifecycle istanbul-lib-report@2.0.4~postinstall: istanbul-lib-report@2.0.4
npm info lifecycle path-type@3.0.0~postinstall: path-type@3.0.0
npm info lifecycle pkg-dir@3.0.0~postinstall: pkg-dir@3.0.0
npm info lifecycle find-cache-dir@2.0.0~postinstall: find-cache-dir@2.0.0
npm info lifecycle pseudomap@1.0.2~postinstall: pseudomap@1.0.2
npm info lifecycle release-zalgo@1.0.0~postinstall: release-zalgo@1.0.0
npm info lifecycle package-hash@3.0.0~postinstall: package-hash@3.0.0
npm info lifecycle require-directory@2.1.1~postinstall: require-directory@2.1.1
npm info lifecycle require-main-filename@1.0.1~postinstall: require-main-filename@1.0.1
npm info lifecycle resolve@1.10.0~postinstall: resolve@1.10.0
npm info lifecycle resolve-from@4.0.0~postinstall: resolve-from@4.0.0
npm info lifecycle safe-buffer@5.1.2~postinstall: safe-buffer@5.1.2
npm info lifecycle convert-source-map@1.6.0~postinstall: convert-source-map@1.6.0
npm info lifecycle semver@5.6.0~postinstall: semver@5.6.0
npm info lifecycle set-blocking@2.0.0~postinstall: set-blocking@2.0.0
npm info lifecycle shebang-regex@1.0.0~postinstall: shebang-regex@1.0.0
npm info lifecycle shebang-command@1.2.0~postinstall: shebang-command@1.2.0
npm info lifecycle signal-exit@3.0.2~postinstall: signal-exit@3.0.2
npm info lifecycle spdx-exceptions@2.2.0~postinstall: spdx-exceptions@2.2.0
npm info lifecycle spdx-license-ids@3.0.3~postinstall: spdx-license-ids@3.0.3
npm info lifecycle spdx-expression-parse@3.0.0~postinstall: spdx-expression-parse@3.0.0
npm info lifecycle spdx-correct@3.1.0~postinstall: spdx-correct@3.1.0
npm info lifecycle strip-ansi@4.0.0~postinstall: strip-ansi@4.0.0
npm info lifecycle string-width@2.1.1~postinstall: string-width@2.1.1
npm info lifecycle strip-bom@3.0.0~postinstall: strip-bom@3.0.0
npm info lifecycle default-require-extensions@2.0.0~postinstall: default-require-extensions@2.0.0
npm info lifecycle append-transform@1.0.0~postinstall: append-transform@1.0.0
npm info lifecycle istanbul-lib-hook@2.0.3~postinstall: istanbul-lib-hook@2.0.3
npm info lifecycle load-json-file@4.0.0~postinstall: load-json-file@4.0.0
npm info lifecycle strip-eof@1.0.0~postinstall: strip-eof@1.0.0
npm info lifecycle source-map@0.6.1~postinstall: source-map@0.6.1
npm info lifecycle uglify-js@3.4.9~postinstall: uglify-js@3.4.9
npm info lifecycle uuid@3.3.2~postinstall: uuid@3.3.2
npm info lifecycle validate-npm-package-license@3.0.4~postinstall: validate-npm-package-license@3.0.4
npm info lifecycle normalize-package-data@2.5.0~postinstall: normalize-package-data@2.5.0
npm info lifecycle read-pkg@3.0.0~postinstall: read-pkg@3.0.0
npm info lifecycle read-pkg-up@4.0.0~postinstall: read-pkg-up@4.0.0
npm info lifecycle test-exclude@5.1.0~postinstall: test-exclude@5.1.0
npm info lifecycle which@1.3.1~postinstall: which@1.3.1
npm info lifecycle cross-spawn@6.0.5~postinstall: cross-spawn@6.0.5
npm info lifecycle which-module@2.0.0~postinstall: which-module@2.0.0
npm info lifecycle wordwrap@0.0.3~postinstall: wordwrap@0.0.3
npm info lifecycle optimist@0.6.1~postinstall: optimist@0.6.1
npm info lifecycle handlebars@4.1.0~postinstall: handlebars@4.1.0
npm info lifecycle istanbul-reports@2.1.1~postinstall: istanbul-reports@2.1.1
npm info lifecycle ansi-regex@2.1.1~postinstall: ansi-regex@2.1.1
npm info lifecycle is-fullwidth-code-point@1.0.0~postinstall: is-fullwidth-code-point@1.0.0
npm info lifecycle strip-ansi@3.0.1~postinstall: strip-ansi@3.0.1
npm info lifecycle string-width@1.0.2~postinstall: string-width@1.0.2
npm info lifecycle wrap-ansi@2.1.0~postinstall: wrap-ansi@2.1.0
npm info lifecycle cliui@4.1.0~postinstall: cliui@4.1.0
npm info lifecycle wrappy@1.0.2~postinstall: wrappy@1.0.2
npm info lifecycle once@1.4.0~postinstall: once@1.4.0
npm info lifecycle end-of-stream@1.4.1~postinstall: end-of-stream@1.4.1
npm info lifecycle inflight@1.0.6~postinstall: inflight@1.0.6
npm info lifecycle glob@7.1.3~postinstall: glob@7.1.3
npm info lifecycle rimraf@2.6.3~postinstall: rimraf@2.6.3
npm info lifecycle istanbul-lib-source-maps@3.0.2~postinstall: istanbul-lib-source-maps@3.0.2
npm info lifecycle pump@3.0.0~postinstall: pump@3.0.0
npm info lifecycle get-stream@4.1.0~postinstall: get-stream@4.1.0
npm info lifecycle execa@1.0.0~postinstall: execa@1.0.0
npm info lifecycle os-locale@3.1.0~postinstall: os-locale@3.1.0
npm info lifecycle write-file-atomic@2.4.2~postinstall: write-file-atomic@2.4.2
npm info lifecycle caching-transform@3.0.1~postinstall: caching-transform@3.0.1
npm info lifecycle y18n@4.0.0~postinstall: y18n@4.0.0
npm info lifecycle yallist@2.1.2~postinstall: yallist@2.1.2
npm info lifecycle lru-cache@4.1.5~postinstall: lru-cache@4.1.5
npm info lifecycle cross-spawn@4.0.2~postinstall: cross-spawn@4.0.2
npm info lifecycle foreground-child@1.5.6~postinstall: foreground-child@1.5.6
npm info lifecycle spawn-wrap@1.4.2~postinstall: spawn-wrap@1.4.2
npm info lifecycle yargs-parser@11.1.1~postinstall: yargs-parser@11.1.1
npm info lifecycle yargs@12.0.5~postinstall: yargs@12.0.5
npm info lifecycle oauth-sign@0.9.0~postinstall: oauth-sign@0.9.0
npm info lifecycle object-assign@4.1.1~postinstall: object-assign@4.1.1
npm info lifecycle object-keys@1.1.1~postinstall: object-keys@1.1.1
npm info lifecycle define-properties@1.1.3~postinstall: define-properties@1.1.3
npm info lifecycle es-abstract@1.13.0~postinstall: es-abstract@1.13.0
npm info lifecycle object.assign@4.1.0~postinstall: object.assign@4.1.0
npm info lifecycle object.getownpropertydescriptors@2.0.3~postinstall: object.getownpropertydescriptors@2.0.3
npm info lifecycle node-environment-flags@1.0.4~postinstall: node-environment-flags@1.0.4
npm info lifecycle mimic-fn@1.2.0~postinstall: mimic-fn@1.2.0
npm info lifecycle onetime@2.0.1~postinstall: onetime@2.0.1
npm info lifecycle os-homedir@1.0.2~postinstall: os-homedir@1.0.2
npm info lifecycle os-tmpdir@1.0.2~postinstall: os-tmpdir@1.0.2
npm info lifecycle osenv@0.1.5~postinstall: osenv@0.1.5
npm info lifecycle nopt@4.0.1~postinstall: nopt@4.0.1
npm info lifecycle p-defer@1.0.0~postinstall: p-defer@1.0.0
npm info lifecycle map-age-cleaner@0.1.3~postinstall: map-age-cleaner@0.1.3
npm info lifecycle p-finally@1.0.0~postinstall: p-finally@1.0.0
npm info lifecycle p-is-promise@2.1.0~postinstall: p-is-promise@2.1.0
npm info lifecycle mem@4.3.0~postinstall: mem@4.3.0
npm info lifecycle p-try@2.2.0~postinstall: p-try@2.2.0
npm info lifecycle p-limit@2.2.0~postinstall: p-limit@2.2.0
npm info lifecycle p-locate@3.0.0~postinstall: p-locate@3.0.0
npm info lifecycle parent-module@1.0.1~postinstall: parent-module@1.0.1
npm info lifecycle path-exists@3.0.0~postinstall: path-exists@3.0.0
npm info lifecycle locate-path@3.0.0~postinstall: locate-path@3.0.0
npm info lifecycle find-up@3.0.0~postinstall: find-up@3.0.0
npm info lifecycle path-is-absolute@1.0.1~postinstall: path-is-absolute@1.0.1
npm info lifecycle path-is-inside@1.0.2~postinstall: path-is-inside@1.0.2
npm info lifecycle path-key@2.0.1~postinstall: path-key@2.0.1
npm info lifecycle npm-run-path@2.0.2~postinstall: npm-run-path@2.0.2
npm info lifecycle pathval@1.1.0~postinstall: pathval@1.1.0
npm info lifecycle performance-now@2.1.0~postinstall: performance-now@2.1.0
npm info lifecycle prelude-ls@1.1.2~postinstall: prelude-ls@1.1.2
npm info lifecycle process-nextick-args@2.0.0~postinstall: process-nextick-args@2.0.0
npm info lifecycle progress@2.0.3~postinstall: progress@2.0.3
npm info lifecycle propagate@1.0.0~postinstall: propagate@1.0.0
npm info lifecycle pseudomap@1.0.2~postinstall: pseudomap@1.0.2
npm info lifecycle psl@1.1.31~postinstall: psl@1.1.31
npm info lifecycle punycode@2.1.1~postinstall: punycode@2.1.1
npm info lifecycle qs@6.5.2~postinstall: qs@6.5.2
npm info lifecycle minimist@1.2.0~postinstall: minimist@1.2.0
npm info lifecycle regexp-utils@0.3.2~postinstall: regexp-utils@0.3.2
npm info lifecycle regexpp@2.0.1~postinstall: regexpp@2.0.1
npm info lifecycle repeat-string@0.2.2~postinstall: repeat-string@0.2.2
npm info lifecycle require-directory@2.1.1~postinstall: require-directory@2.1.1
npm info lifecycle require-main-filename@1.0.1~postinstall: require-main-filename@1.0.1
npm info lifecycle resolve-from@4.0.0~postinstall: resolve-from@4.0.0
npm info lifecycle import-fresh@3.0.0~postinstall: import-fresh@3.0.0
npm info lifecycle bluebird@2.3.11~postinstall: bluebird@2.3.11
npm info lifecycle routeswitch@0.6.3~postinstall: routeswitch@0.6.3
npm info lifecycle run-async@2.3.0~postinstall: run-async@2.3.0
npm info lifecycle safe-buffer@5.1.2~postinstall: safe-buffer@5.1.2
npm info lifecycle string_decoder@1.1.1~postinstall: string_decoder@1.1.1
npm info lifecycle string_decoder@1.1.1~postinstall: string_decoder@1.1.1
npm info lifecycle ecdsa-sig-formatter@1.0.11~postinstall: ecdsa-sig-formatter@1.0.11
npm info lifecycle jwa@1.4.1~postinstall: jwa@1.4.1
npm info lifecycle jws@3.2.2~postinstall: jws@3.2.2
npm info lifecycle string_decoder@1.1.1~postinstall: string_decoder@1.1.1
npm info lifecycle string_decoder@1.1.1~postinstall: string_decoder@1.1.1
npm info lifecycle string_decoder@1.1.1~postinstall: string_decoder@1.1.1
npm info lifecycle minipass@2.3.5~postinstall: minipass@2.3.5
npm info lifecycle fs-minipass@1.2.5~postinstall: fs-minipass@1.2.5
npm info lifecycle minizlib@1.2.1~postinstall: minizlib@1.2.1
npm info lifecycle string_decoder@1.1.1~postinstall: string_decoder@1.1.1
npm info lifecycle safe-json-stringify@1.2.0~postinstall: safe-json-stringify@1.2.0
npm info lifecycle safer-buffer@2.1.2~postinstall: safer-buffer@2.1.2
npm info lifecycle asn1@0.2.4~postinstall: asn1@0.2.4
npm info lifecycle ecc-jsbn@0.1.2~postinstall: ecc-jsbn@0.1.2
npm info lifecycle iconv-lite@0.4.24~postinstall: iconv-lite@0.4.24
npm info lifecycle sax@1.2.4~postinstall: sax@1.2.4
npm info lifecycle needle@2.2.4~postinstall: needle@2.2.4
npm info lifecycle semaphore@1.1.0~postinstall: semaphore@1.1.0
npm info lifecycle semver@5.7.0~postinstall: semver@5.7.0
npm info lifecycle set-blocking@2.0.0~postinstall: set-blocking@2.0.0
npm info lifecycle shebang-regex@1.0.0~postinstall: shebang-regex@1.0.0
npm info lifecycle shebang-command@1.2.0~postinstall: shebang-command@1.2.0
npm info lifecycle signal-exit@3.0.2~postinstall: signal-exit@3.0.2
npm info lifecycle restore-cursor@2.0.0~postinstall: restore-cursor@2.0.0
npm info lifecycle cli-cursor@2.1.0~postinstall: cli-cursor@2.1.0
npm info lifecycle slice-ansi@2.1.0~postinstall: slice-ansi@2.1.0
npm info lifecycle source-map@0.5.7~postinstall: source-map@0.5.7
npm info lifecycle sprintf-js@1.0.3~postinstall: sprintf-js@1.0.3
npm info lifecycle argparse@1.0.10~postinstall: argparse@1.0.10
npm info lifecycle js-yaml@3.13.1~postinstall: js-yaml@3.13.1
npm info lifecycle restbase-mod-table-spec@1.1.2~postinstall: restbase-mod-table-spec@1.1.2
npm info lifecycle js-yaml@3.13.0~postinstall: js-yaml@3.13.0
npm info lifecycle nan@2.10.0~postinstall: nan@2.10.0
npm info lifecycle streamsearch@0.1.2~postinstall: streamsearch@0.1.2
npm info lifecycle string_decoder@0.10.31~postinstall: string_decoder@0.10.31
npm info lifecycle readable-stream@1.1.14~postinstall: readable-stream@1.1.14
npm info lifecycle dicer@0.2.5~postinstall: dicer@0.2.5
npm info lifecycle busboy@0.2.14~postinstall: busboy@0.2.14
npm info lifecycle string-align@0.2.0~postinstall: string-align@0.2.0
npm info lifecycle strip-ansi@4.0.0~postinstall: strip-ansi@4.0.0
npm info lifecycle string-width@2.1.1~postinstall: string-width@2.1.1
npm info lifecycle strip-eof@1.0.0~postinstall: strip-eof@1.0.0
npm info lifecycle strip-json-comments@2.0.1~postinstall: strip-json-comments@2.0.1
npm info lifecycle rc@1.2.8~postinstall: rc@1.2.8
npm info lifecycle supports-color@5.5.0~postinstall: supports-color@5.5.0
npm info lifecycle chalk@2.4.2~postinstall: chalk@2.4.2
npm info lifecycle @babel/highlight@7.0.0~postinstall: @babel/highlight@7.0.0
npm info lifecycle @babel/code-frame@7.0.0~postinstall: @babel/code-frame@7.0.0
npm info lifecycle log-symbols@2.2.0~postinstall: log-symbols@2.2.0
npm info lifecycle swagger-ui-dist@3.22.0~postinstall: swagger-ui-dist@3.22.0
npm info lifecycle ansi-regex@4.1.0~postinstall: ansi-regex@4.1.0
npm info lifecycle strip-ansi@5.2.0~postinstall: strip-ansi@5.2.0
npm info lifecycle string-width@3.1.0~postinstall: string-width@3.1.0
npm info lifecycle yallist@3.0.3~postinstall: yallist@3.0.3
npm info lifecycle tar@4.4.8~postinstall: tar@4.4.8
npm info lifecycle tassembly@0.2.3~postinstall: tassembly@0.2.3
npm info lifecycle template-expression-compiler@0.1.10~postinstall: template-expression-compiler@0.1.10
npm info lifecycle swagger-router@0.7.2~postinstall: swagger-router@0.7.2
npm info lifecycle text-table@0.2.0~postinstall: text-table@0.2.0
npm info lifecycle through@2.3.8~postinstall: through@2.3.8
npm info lifecycle tmp@0.0.33~postinstall: tmp@0.0.33
npm info lifecycle external-editor@3.0.3~postinstall: external-editor@3.0.3
npm info lifecycle to-fast-properties@2.0.0~postinstall: to-fast-properties@2.0.0
npm info lifecycle @babel/types@7.4.0~postinstall: @babel/types@7.4.0
npm info lifecycle @babel/helper-get-function-arity@7.0.0~postinstall: @babel/helper-get-function-arity@7.0.0
npm info lifecycle @babel/helper-split-export-declaration@7.4.0~postinstall: @babel/helper-split-export-declaration@7.4.0
npm info lifecycle @babel/template@7.4.0~postinstall: @babel/template@7.4.0
npm info lifecycle @babel/helper-function-name@7.1.0~postinstall: @babel/helper-function-name@7.1.0
npm info lifecycle punycode@1.4.1~postinstall: punycode@1.4.1
npm info lifecycle tough-cookie@2.4.3~postinstall: tough-cookie@2.4.3
npm info lifecycle trim-right@1.0.1~postinstall: trim-right@1.0.1
npm info lifecycle @babel/generator@7.4.0~postinstall: @babel/generator@7.4.0
npm info lifecycle @babel/traverse@7.4.3~postinstall: @babel/traverse@7.4.3
npm info lifecycle istanbul-lib-instrument@3.1.0~postinstall: istanbul-lib-instrument@3.1.0
npm info lifecycle tslib@1.9.3~postinstall: tslib@1.9.3
npm info lifecycle rxjs@6.4.0~postinstall: rxjs@6.4.0
npm info lifecycle inquirer@6.2.2~postinstall: inquirer@6.2.2
npm info lifecycle tunnel-agent@0.6.0~postinstall: tunnel-agent@0.6.0
npm info lifecycle tweetnacl@0.14.5~postinstall: tweetnacl@0.14.5
npm info lifecycle bcrypt-pbkdf@1.0.2~postinstall: bcrypt-pbkdf@1.0.2
npm info lifecycle sshpk@1.16.1~postinstall: sshpk@1.16.1
npm info lifecycle type-check@0.3.2~postinstall: type-check@0.3.2
npm info lifecycle levn@0.3.0~postinstall: levn@0.3.0
npm info lifecycle type-detect@4.0.8~postinstall: type-detect@4.0.8
npm info lifecycle deep-eql@3.0.1~postinstall: deep-eql@3.0.1
npm info lifecycle chai@4.2.0~postinstall: chai@4.2.0
npm info lifecycle uri-js@4.2.2~postinstall: uri-js@4.2.2
npm info lifecycle ajv@6.10.0~postinstall: ajv@6.10.0
npm info lifecycle har-validator@5.1.3~postinstall: har-validator@5.1.3
npm info lifecycle table@5.2.3~postinstall: table@5.2.3
npm info lifecycle util-deprecate@1.0.2~postinstall: util-deprecate@1.0.2
npm info lifecycle readable-stream@2.3.6~postinstall: readable-stream@2.3.6
npm info lifecycle are-we-there-yet@1.1.5~postinstall: are-we-there-yet@1.1.5
npm info lifecycle readable-stream@2.3.6~postinstall: readable-stream@2.3.6
npm info lifecycle bl@1.2.2~postinstall: bl@1.2.2
npm info lifecycle readable-stream@2.3.6~postinstall: readable-stream@2.3.6
npm info lifecycle kad-fs@0.0.4~postinstall: kad-fs@0.0.4
npm info lifecycle readable-stream@2.3.6~postinstall: readable-stream@2.3.6
npm info lifecycle kad-memstore@0.0.1~postinstall: kad-memstore@0.0.1
npm info lifecycle readable-stream@2.3.6~postinstall: readable-stream@2.3.6
npm info lifecycle readable-stream@2.3.6~postinstall: readable-stream@2.3.6
npm info lifecycle msgpack5@3.6.0~postinstall: msgpack5@3.6.0
npm info lifecycle kad@1.3.6~postinstall: kad@1.3.6
npm info lifecycle limitation@0.2.1~postinstall: limitation@0.2.1
npm info lifecycle uuid@3.3.2~postinstall: uuid@3.3.2
npm info lifecycle verror@1.10.0~postinstall: verror@1.10.0
npm info lifecycle jsprim@1.4.1~postinstall: jsprim@1.4.1
npm info lifecycle http-signature@1.2.0~postinstall: http-signature@1.2.0
npm info lifecycle request@2.88.0~postinstall: request@2.88.0
npm info lifecycle vscode-languageserver-types@3.14.0~postinstall: vscode-languageserver-types@3.14.0
npm info lifecycle vscode-nls@4.1.0~postinstall: vscode-nls@4.1.0
npm info lifecycle vscode-uri@1.0.6~postinstall: vscode-uri@1.0.6
npm info lifecycle vscode-json-languageservice@3.2.1~postinstall: vscode-json-languageservice@3.2.1
npm info lifecycle when@3.7.8~postinstall: when@3.7.8
npm info lifecycle requestretry@3.1.0~postinstall: requestretry@3.1.0
npm info lifecycle preq@0.5.7~postinstall: preq@0.5.7
npm info lifecycle which@1.3.1~postinstall: which@1.3.1
npm info lifecycle cross-spawn@6.0.5~postinstall: cross-spawn@6.0.5
npm info lifecycle which-module@2.0.0~postinstall: which-module@2.0.0
npm info lifecycle wide-align@1.1.3~postinstall: wide-align@1.1.3
npm info lifecycle gauge@2.7.4~postinstall: gauge@2.7.4
npm info lifecycle npmlog@4.1.2~postinstall: npmlog@4.1.2
npm info lifecycle wordwrap@1.0.0~postinstall: wordwrap@1.0.0
npm info lifecycle optionator@0.8.2~postinstall: optionator@0.8.2
npm info lifecycle ansi-regex@2.1.1~postinstall: ansi-regex@2.1.1
npm info lifecycle is-fullwidth-code-point@1.0.0~postinstall: is-fullwidth-code-point@1.0.0
npm info lifecycle strip-ansi@3.0.1~postinstall: strip-ansi@3.0.1
npm info lifecycle string-width@1.0.2~postinstall: string-width@1.0.2
npm info lifecycle wrap-ansi@2.1.0~postinstall: wrap-ansi@2.1.0
npm info lifecycle cliui@4.1.0~postinstall: cliui@4.1.0
npm info lifecycle wrappy@1.0.2~postinstall: wrappy@1.0.2
npm info lifecycle once@1.4.0~postinstall: once@1.4.0
npm info lifecycle end-of-stream@1.4.1~postinstall: end-of-stream@1.4.1
npm info lifecycle inflight@1.0.6~postinstall: inflight@1.0.6
npm info lifecycle glob@7.1.3~postinstall: glob@7.1.3
npm info lifecycle glob@7.1.3~postinstall: glob@7.1.3
npm info lifecycle rimraf@2.6.3~postinstall: rimraf@2.6.3
npm info lifecycle glob@6.0.4~postinstall: glob@6.0.4
npm info lifecycle rimraf@2.4.5~postinstall: rimraf@2.4.5
npm info lifecycle mv@2.1.1~postinstall: mv@2.1.1
npm info lifecycle bunyan@1.8.12~postinstall: bunyan@1.8.12
npm info lifecycle glob@7.1.3~postinstall: glob@7.1.3
npm info lifecycle glob@7.1.3~postinstall: glob@7.1.3
npm info lifecycle rimraf@2.6.3~postinstall: rimraf@2.6.3
npm info lifecycle node-pre-gyp@0.11.0~postinstall: node-pre-gyp@0.11.0
npm info lifecycle sqlite3@4.0.6~postinstall: sqlite3@4.0.6
npm info lifecycle pump@3.0.0~postinstall: pump@3.0.0
npm info lifecycle get-stream@4.1.0~postinstall: get-stream@4.1.0
npm info lifecycle execa@1.0.0~postinstall: execa@1.0.0
npm info lifecycle os-locale@3.1.0~postinstall: os-locale@3.1.0
npm info lifecycle write@1.0.3~postinstall: write@1.0.3
npm info lifecycle flat-cache@2.0.1~postinstall: flat-cache@2.0.1
npm info lifecycle file-entry-cache@5.0.1~postinstall: file-entry-cache@5.0.1
npm info lifecycle eslint@5.16.0~postinstall: eslint@5.16.0
npm info lifecycle y18n@4.0.0~postinstall: y18n@4.0.0
npm info lifecycle yargs@13.2.2~postinstall: yargs@13.2.2
npm info lifecycle yallist@2.1.2~postinstall: yallist@2.1.2
npm info lifecycle lru-cache@4.1.5~postinstall: lru-cache@4.1.5
npm info lifecycle yargs-parser@11.1.1~postinstall: yargs-parser@11.1.1
npm info lifecycle yargs@12.0.5~postinstall: yargs@12.0.5
npm info lifecycle yargs-unparser@1.5.0~postinstall: yargs-unparser@1.5.0
npm info lifecycle content-type@1.0.1~postinstall: content-type@1.0.1
npm info lifecycle coveralls@3.0.3~postinstall: coveralls@3.0.3
npm info lifecycle entities@1.1.2~postinstall: entities@1.1.2
npm info lifecycle eslint-config-wikimedia@0.11.0~postinstall: eslint-config-wikimedia@0.11.0
npm info lifecycle eslint-plugin-jsdoc@4.8.2~postinstall: eslint-plugin-jsdoc@4.8.2
npm info lifecycle eslint-plugin-json@1.4.0~postinstall: eslint-plugin-json@1.4.0
npm info lifecycle hyperswitch@0.11.1~postinstall: hyperswitch@0.11.1
npm info lifecycle jsonwebtoken@8.5.1~postinstall: jsonwebtoken@8.5.1
npm info lifecycle mediawiki-title@0.6.5~postinstall: mediawiki-title@0.6.5
npm info lifecycle mocha@6.1.1~postinstall: mocha@6.1.1
npm info lifecycle mocha-lcov-reporter@1.3.0~postinstall: mocha-lcov-reporter@1.3.0
npm info lifecycle mocha.parallel@0.15.6~postinstall: mocha.parallel@0.15.6
npm info lifecycle nock@10.0.6~postinstall: nock@10.0.6
npm info lifecycle nyc@13.3.0~postinstall: nyc@13.3.0
npm info lifecycle restbase-mod-table-cassandra@1.1.3~postinstall: restbase-mod-table-cassandra@1.1.3
npm info lifecycle restbase-mod-table-sqlite@1.1.2~postinstall: restbase-mod-table-sqlite@1.1.2
npm info lifecycle semver@6.0.0~postinstall: semver@6.0.0
npm info lifecycle service-runner@2.6.17~postinstall: service-runner@2.6.17
npm info linkStuff restbase@0.19.4
npm info lifecycle restbase@0.19.4~install: restbase@0.19.4
npm info lifecycle restbase@0.19.4~postinstall: restbase@0.19.4
npm info lifecycle restbase@0.19.4~prepublish: restbase@0.19.4
restbase@0.19.4 /usr/src/app
+-- ajv@6.10.0
| +-- fast-deep-equal@2.0.1
| +-- json-schema-traverse@0.4.1
| `-- uri-js@4.2.2
| `-- punycode@2.1.1
+-- bluebird@3.5.4
+-- bunyan@1.8.12
| +-- dtrace-provider@0.8.7
| | `-- nan@2.13.2
| +-- moment@2.24.0
| +-- mv@2.1.1
| | +-- ncp@2.0.0
| | `-- rimraf@2.4.5
| | `-- glob@6.0.4
| `-- safe-json-stringify@1.2.0
+-- cassandra-uuid@0.1.0
| `-- long@4.0.0
+-- content-type@1.0.1 (git+https://github.com/wikimedia/content-type.git#47b2632d0a2ee79a7d67268e2f6621becd95d05b)
+-- coveralls@3.0.3
| +-- growl@1.10.5
| +-- lcov-parse@0.0.10
| +-- log-driver@1.2.7
| +-- minimist@1.2.0
| `-- request@2.88.0
| +-- aws-sign2@0.7.0
| +-- aws4@1.8.0
| +-- caseless@0.12.0
| +-- combined-stream@1.0.7
| | `-- delayed-stream@1.0.0
| +-- forever-agent@0.6.1
| +-- form-data@2.3.3
| | `-- asynckit@0.4.0
| +-- har-validator@5.1.3
| | `-- har-schema@2.0.0
| +-- http-signature@1.2.0
| | +-- assert-plus@1.0.0
| | +-- jsprim@1.4.1
| | | +-- extsprintf@1.3.0
| | | +-- json-schema@0.2.3
| | | `-- verror@1.10.0
| | `-- sshpk@1.16.1
| | +-- asn1@0.2.4
| | +-- bcrypt-pbkdf@1.0.2
| | +-- dashdash@1.14.1
| | +-- ecc-jsbn@0.1.2
| | +-- getpass@0.1.7
| | +-- jsbn@0.1.1
| | +-- safer-buffer@2.1.2
| | `-- tweetnacl@0.14.5
| +-- is-typedarray@1.0.0
| +-- isstream@0.1.2
| +-- mime-types@2.1.22
| | `-- mime-db@1.38.0
| +-- oauth-sign@0.9.0
| +-- performance-now@2.1.0
| +-- safe-buffer@5.1.2
| +-- tough-cookie@2.4.3
| | +-- psl@1.1.31
| | `-- punycode@1.4.1
| +-- tunnel-agent@0.6.0
| `-- uuid@3.3.2
+-- entities@1.1.2
+-- eslint@5.16.0
| +-- @babel/code-frame@7.0.0
| | `-- @babel/highlight@7.0.0
| | `-- js-tokens@4.0.0
| +-- chalk@2.4.2
| | +-- ansi-styles@3.2.1
| | | `-- color-convert@1.9.3
| | | `-- color-name@1.1.3
| | `-- supports-color@5.5.0
| +-- cross-spawn@6.0.5
| | +-- nice-try@1.0.5
| | +-- path-key@2.0.1
| | +-- semver@5.7.0
| | `-- shebang-command@1.2.0
| | `-- shebang-regex@1.0.0
| +-- debug@4.1.1
| +-- doctrine@3.0.0
| +-- eslint-scope@4.0.3
| | +-- esrecurse@4.2.1
| | `-- estraverse@4.2.0
| +-- eslint-utils@1.3.1
| +-- eslint-visitor-keys@1.0.0
| +-- espree@5.0.1
| | +-- acorn@6.1.1
| | `-- acorn-jsx@5.0.1
| +-- esquery@1.0.1
| +-- esutils@2.0.2
| +-- file-entry-cache@5.0.1
| | `-- flat-cache@2.0.1
| | +-- flatted@2.0.0
| | +-- rimraf@2.6.3
| | | `-- glob@7.1.3
| | `-- write@1.0.3
| +-- functional-red-black-tree@1.0.1
| +-- glob@7.1.3
| | +-- fs.realpath@1.0.0
| | +-- inflight@1.0.6
| | | `-- wrappy@1.0.2
| | +-- inherits@2.0.3
| | +-- once@1.4.0
| | `-- path-is-absolute@1.0.1
| +-- globals@11.11.0
| +-- ignore@4.0.6
| +-- import-fresh@3.0.0
| | +-- parent-module@1.0.1
| | | `-- callsites@3.1.0
| | `-- resolve-from@4.0.0
| +-- imurmurhash@0.1.4
| +-- inquirer@6.2.2
| | +-- ansi-escapes@3.2.0
| | +-- cli-cursor@2.1.0
| | | `-- restore-cursor@2.0.0
| | | +-- onetime@2.0.1
| | | | `-- mimic-fn@1.2.0
| | | `-- signal-exit@3.0.2
| | +-- cli-width@2.2.0
| | +-- external-editor@3.0.3
| | | +-- chardet@0.7.0
| | | +-- iconv-lite@0.4.24
| | | `-- tmp@0.0.33
| | | `-- os-tmpdir@1.0.2
| | +-- figures@2.0.0
| | +-- mute-stream@0.0.7
| | +-- run-async@2.3.0
| | | `-- is-promise@2.1.0
| | +-- rxjs@6.4.0
| | | `-- tslib@1.9.3
| | +-- string-width@2.1.1
| | | `-- is-fullwidth-code-point@2.0.0
| | +-- strip-ansi@5.2.0
| | | `-- ansi-regex@4.1.0
| | `-- through@2.3.8
| +-- json-stable-stringify-without-jsonify@1.0.1
| +-- levn@0.3.0
| | +-- prelude-ls@1.1.2
| | `-- type-check@0.3.2
| +-- lodash@4.17.11
| +-- minimatch@3.0.4
| | `-- brace-expansion@1.1.11
| | +-- balanced-match@1.0.0
| | `-- concat-map@0.0.1
| +-- mkdirp@0.5.1
| | `-- minimist@0.0.8
| +-- natural-compare@1.4.0
| +-- optionator@0.8.2
| | +-- deep-is@0.1.3
| | +-- fast-levenshtein@2.0.6
| | `-- wordwrap@1.0.0
| +-- path-is-inside@1.0.2
| +-- progress@2.0.3
| +-- regexpp@2.0.1
| +-- semver@5.7.0
| +-- strip-ansi@4.0.0
| | `-- ansi-regex@3.0.0
| +-- strip-json-comments@2.0.1
| +-- table@5.2.3
| | +-- slice-ansi@2.1.0
| | | `-- astral-regex@1.0.0
| | `-- string-width@3.1.0
| | +-- emoji-regex@7.0.3
| | `-- strip-ansi@5.2.0
| | `-- ansi-regex@4.1.0
| `-- text-table@0.2.0
+-- eslint-config-wikimedia@0.11.0
| +-- eslint-plugin-no-jquery@2.0.0
| `-- eslint-plugin-qunit@4.0.0
+-- eslint-plugin-jsdoc@4.8.2
| +-- comment-parser@0.5.4
| `-- jsdoctypeparser@3.1.0
+-- eslint-plugin-json@1.4.0
| `-- vscode-json-languageservice@3.2.1
| +-- jsonc-parser@2.1.0
| +-- vscode-languageserver-types@3.14.0
| +-- vscode-nls@4.1.0
| `-- vscode-uri@1.0.6
+-- fast-json-stable-stringify@2.0.0
+-- hyperswitch@0.11.1
| +-- busboy@0.2.14
| | +-- dicer@0.2.5
| | | `-- streamsearch@0.1.2
| | `-- readable-stream@1.1.14
| | +-- core-util-is@1.0.2
| | +-- isarray@0.0.1
| | `-- string_decoder@0.10.31
| +-- regexp-utils@0.3.2
| +-- swagger-router@0.7.2
| | +-- tassembly@0.2.3
| | `-- template-expression-compiler@0.1.10
| `-- swagger-ui-dist@3.22.0
+-- js-yaml@3.13.1
| +-- argparse@1.0.10
| | `-- sprintf-js@1.0.3
| `-- esprima@4.0.1
+-- jsonwebtoken@8.5.1
| +-- jws@3.2.2
| | `-- jwa@1.4.1
| | +-- buffer-equal-constant-time@1.0.1
| | `-- ecdsa-sig-formatter@1.0.11
| +-- lodash.includes@4.3.0
| +-- lodash.isboolean@3.0.3
| +-- lodash.isinteger@4.0.4
| +-- lodash.isnumber@3.0.3
| +-- lodash.isplainobject@4.0.6
| +-- lodash.isstring@4.0.1
| +-- lodash.once@4.1.1
| +-- ms@2.1.1
| `-- semver@5.7.0
+-- mediawiki-title@0.6.5
+-- mocha@6.1.1
| +-- ansi-colors@3.2.3
| +-- browser-stdout@1.3.1
| +-- debug@3.2.6
| +-- diff@3.5.0
| +-- escape-string-regexp@1.0.5
| +-- find-up@3.0.0
| | `-- locate-path@3.0.0
| | +-- p-locate@3.0.0
| | | `-- p-limit@2.2.0
| | | `-- p-try@2.2.0
| | `-- path-exists@3.0.0
| +-- glob@7.1.3
| +-- he@1.2.0
| +-- js-yaml@3.13.0
| +-- log-symbols@2.2.0
| +-- node-environment-flags@1.0.4
| | `-- object.getownpropertydescriptors@2.0.3
| | `-- es-abstract@1.13.0
| | +-- es-to-primitive@1.2.0
| | | +-- is-date-object@1.0.1
| | | `-- is-symbol@1.0.2
| | +-- has@1.0.3
| | +-- is-callable@1.1.4
| | `-- is-regex@1.0.4
| +-- object.assign@4.1.0
| | +-- define-properties@1.1.3
| | +-- function-bind@1.1.1
| | +-- has-symbols@1.0.0
| | `-- object-keys@1.1.1
| +-- supports-color@6.0.0
| | `-- has-flag@3.0.0
| +-- which@1.3.1
| | `-- isexe@2.0.0
| +-- wide-align@1.1.3
| +-- yargs@13.2.2
| | +-- cliui@4.1.0
| | | `-- wrap-ansi@2.1.0
| | | +-- string-width@1.0.2
| | | | +-- code-point-at@1.1.0
| | | | `-- is-fullwidth-code-point@1.0.0
| | | | `-- number-is-nan@1.0.1
| | | `-- strip-ansi@3.0.1
| | | `-- ansi-regex@2.1.1
| | +-- get-caller-file@2.0.5
| | +-- os-locale@3.1.0
| | | +-- execa@1.0.0
| | | | +-- get-stream@4.1.0
| | | | | `-- pump@3.0.0
| | | | | `-- end-of-stream@1.4.1
| | | | +-- is-stream@1.1.0
| | | | +-- npm-run-path@2.0.2
| | | | +-- p-finally@1.0.0
| | | | `-- strip-eof@1.0.0
| | | +-- lcid@2.0.0
| | | | `-- invert-kv@2.0.0
| | | `-- mem@4.3.0
| | | +-- map-age-cleaner@0.1.3
| | | | `-- p-defer@1.0.0
| | | +-- mimic-fn@2.1.0
| | | `-- p-is-promise@2.1.0
| | +-- require-directory@2.1.1
| | +-- require-main-filename@2.0.0
| | +-- set-blocking@2.0.0
| | +-- string-width@3.1.0
| | | `-- strip-ansi@5.2.0
| | | `-- ansi-regex@4.1.0
| | +-- which-module@2.0.0
| | `-- y18n@4.0.0
| +-- yargs-parser@13.0.0
| | +-- camelcase@5.3.1
| | `-- decamelize@1.2.0
| `-- yargs-unparser@1.5.0
| `-- flat@4.1.0
| `-- is-buffer@2.0.3
+-- mocha-lcov-reporter@1.3.0
+-- mocha.parallel@0.15.6
| +-- bluebird@2.11.0
| `-- semaphore@1.1.0
+-- nock@10.0.6
| +-- chai@4.2.0
| | +-- assertion-error@1.1.0
| | +-- check-error@1.0.2
| | +-- deep-eql@3.0.1
| | +-- get-func-name@2.0.0
| | +-- pathval@1.1.0
| | `-- type-detect@4.0.8
| +-- deep-equal@1.0.1
| +-- json-stringify-safe@5.0.1
| +-- propagate@1.0.0
| +-- qs@6.5.2
| `-- semver@5.7.0
+-- nyc@13.3.0
| +-- archy@1.0.0
| +-- arrify@1.0.1
| +-- caching-transform@3.0.1
| | +-- hasha@3.0.0
| | | `-- is-stream@1.1.0
| | +-- package-hash@3.0.0
| | | +-- graceful-fs@4.1.15
| | | +-- lodash.flattendeep@4.4.0
| | | `-- release-zalgo@1.0.0
| | | `-- es6-error@4.1.1
| | `-- write-file-atomic@2.4.2
| | `-- imurmurhash@0.1.4
| +-- convert-source-map@1.6.0
| | `-- safe-buffer@5.1.2
| +-- find-cache-dir@2.0.0
| | +-- commondir@1.0.1
| | `-- pkg-dir@3.0.0
| +-- find-up@3.0.0
| | `-- locate-path@3.0.0
| | +-- p-locate@3.0.0
| | | `-- p-limit@2.1.0
| | | `-- p-try@2.0.0
| | `-- path-exists@3.0.0
| +-- foreground-child@1.5.6
| | `-- cross-spawn@4.0.2
| | `-- lru-cache@4.1.5
| | +-- pseudomap@1.0.2
| | `-- yallist@2.1.2
| +-- glob@7.1.3
| | +-- fs.realpath@1.0.0
| | +-- inflight@1.0.6
| | | `-- wrappy@1.0.2
| | +-- inherits@2.0.3
| | +-- minimatch@3.0.4
| | | `-- brace-expansion@1.1.11
| | | +-- balanced-match@1.0.0
| | | `-- concat-map@0.0.1
| | +-- once@1.4.0
| | `-- path-is-absolute@1.0.1
| +-- istanbul-lib-coverage@2.0.3
| +-- istanbul-lib-hook@2.0.3
| | `-- append-transform@1.0.0
| | `-- default-require-extensions@2.0.0
| | `-- strip-bom@3.0.0
| +-- istanbul-lib-instrument@3.1.0
| | +-- @babel/generator@7.4.0
| | | +-- jsesc@2.5.2
| | | +-- source-map@0.5.7
| | | `-- trim-right@1.0.1
| | +-- @babel/parser@7.4.3
| | +-- @babel/template@7.4.0
| | +-- @babel/traverse@7.4.3
| | | +-- @babel/helper-function-name@7.1.0
| | | | `-- @babel/helper-get-function-arity@7.0.0
| | | `-- @babel/helper-split-export-declaration@7.4.0
| | +-- @babel/types@7.4.0
| | | `-- to-fast-properties@2.0.0
| | +-- istanbul-lib-coverage@2.0.3
| | `-- semver@5.7.0
| +-- istanbul-lib-report@2.0.4
| | `-- supports-color@6.1.0
| | `-- has-flag@3.0.0
| +-- istanbul-lib-source-maps@3.0.2
| | +-- debug@4.1.1
| | | `-- ms@2.1.1
| | `-- source-map@0.6.1
| +-- istanbul-reports@2.1.1
| | `-- handlebars@4.1.0
| | +-- async@2.6.2
| | | `-- lodash@4.17.11
| | +-- optimist@0.6.1
| | | +-- minimist@0.0.10
| | | `-- wordwrap@0.0.3
| | +-- source-map@0.6.1
| | `-- uglify-js@3.4.9
| | +-- commander@2.17.1
| | `-- source-map@0.6.1
| +-- make-dir@1.3.0
| | `-- pify@3.0.0
| +-- merge-source-map@1.1.0
| | `-- source-map@0.6.1
| +-- resolve-from@4.0.0
| +-- rimraf@2.6.3
| +-- signal-exit@3.0.2
| +-- spawn-wrap@1.4.2
| | +-- mkdirp@0.5.1
| | | `-- minimist@0.0.8
| | +-- os-homedir@1.0.2
| | `-- which@1.3.1
| | `-- isexe@2.0.0
| +-- test-exclude@5.1.0
| | +-- read-pkg-up@4.0.0
| | | `-- read-pkg@3.0.0
| | | +-- load-json-file@4.0.0
| | | | `-- parse-json@4.0.0
| | | | +-- error-ex@1.3.2
| | | | | `-- is-arrayish@0.2.1
| | | | `-- json-parse-better-errors@1.0.2
| | | +-- normalize-package-data@2.5.0
| | | | +-- hosted-git-info@2.7.1
| | | | +-- resolve@1.10.0
| | | | | `-- path-parse@1.0.6
| | | | +-- semver@5.6.0
| | | | `-- validate-npm-package-license@3.0.4
| | | | +-- spdx-correct@3.1.0
| | | | | `-- spdx-license-ids@3.0.3
| | | | `-- spdx-expression-parse@3.0.0
| | | | `-- spdx-exceptions@2.2.0
| | | `-- path-type@3.0.0
| | `-- require-main-filename@1.0.1
| +-- uuid@3.3.2
| +-- yargs@12.0.5
| | +-- cliui@4.1.0
| | | +-- strip-ansi@4.0.0
| | | | `-- ansi-regex@3.0.0
| | | `-- wrap-ansi@2.1.0
| | | +-- string-width@1.0.2
| | | | +-- code-point-at@1.1.0
| | | | `-- is-fullwidth-code-point@1.0.0
| | | | `-- number-is-nan@1.0.1
| | | `-- strip-ansi@3.0.1
| | | `-- ansi-regex@2.1.1
| | +-- decamelize@1.2.0
| | +-- get-caller-file@1.0.3
| | +-- os-locale@3.1.0
| | | +-- execa@1.0.0
| | | | +-- cross-spawn@6.0.5
| | | | | +-- nice-try@1.0.5
| | | | | +-- path-key@2.0.1
| | | | | `-- shebang-command@1.2.0
| | | | | `-- shebang-regex@1.0.0
| | | | +-- get-stream@4.1.0
| | | | | `-- pump@3.0.0
| | | | | `-- end-of-stream@1.4.1
| | | | +-- npm-run-path@2.0.2
| | | | +-- p-finally@1.0.0
| | | | `-- strip-eof@1.0.0
| | | +-- lcid@2.0.0
| | | | `-- invert-kv@2.0.0
| | | `-- mem@4.1.0
| | | +-- map-age-cleaner@0.1.3
| | | | `-- p-defer@1.0.0
| | | +-- mimic-fn@1.2.0
| | | `-- p-is-promise@2.0.0
| | +-- require-directory@2.1.1
| | +-- set-blocking@2.0.0
| | +-- string-width@2.1.1
| | | `-- is-fullwidth-code-point@2.0.0
| | +-- which-module@2.0.0
| | `-- y18n@4.0.0
| `-- yargs-parser@11.1.1
| `-- camelcase@5.0.0
+-- preq@0.5.7
| `-- requestretry@3.1.0
| `-- when@3.7.8
+-- restbase-mod-table-cassandra@1.1.3
| +-- cassandra-driver@3.5.0
| | `-- long@2.4.0
| +-- core-js@2.6.5
| +-- extend@3.0.2
| +-- restbase-mod-table-spec@1.1.2
| | `-- routeswitch@0.6.3
| | +-- async@0.9.2
| | `-- bluebird@2.3.11
| +-- string-align@0.2.0
| | `-- repeat-string@0.2.2
| `-- yargs@12.0.5
| +-- get-caller-file@1.0.3
| +-- require-main-filename@1.0.1
| `-- yargs-parser@11.1.1
+-- restbase-mod-table-sqlite@1.1.2
| +-- generic-pool@3.7.1
| +-- lru-cache@4.1.5
| | +-- pseudomap@1.0.2
| | `-- yallist@2.1.2
| `-- sqlite3@4.0.6
| +-- nan@2.10.0
| `-- node-pre-gyp@0.11.0
| +-- detect-libc@1.0.3
| +-- needle@2.2.4
| | +-- debug@2.6.9
| | | `-- ms@2.0.0
| | `-- sax@1.2.4
| +-- nopt@4.0.1
| | +-- abbrev@1.1.1
| | `-- osenv@0.1.5
| | `-- os-homedir@1.0.2
| +-- npm-packlist@1.4.1
| | +-- ignore-walk@3.0.1
| | `-- npm-bundled@1.0.6
| +-- npmlog@4.1.2
| | +-- are-we-there-yet@1.1.5
| | | +-- delegates@1.0.0
| | | `-- readable-stream@2.3.6
| | | +-- isarray@1.0.0
| | | `-- string_decoder@1.1.1
| | +-- console-control-strings@1.1.0
| | `-- gauge@2.7.4
| | +-- aproba@1.2.0
| | +-- has-unicode@2.0.1
| | +-- object-assign@4.1.1
| | +-- string-width@1.0.2
| | | `-- is-fullwidth-code-point@1.0.0
| | `-- strip-ansi@3.0.1
| | `-- ansi-regex@2.1.1
| +-- rc@1.2.8
| | +-- deep-extend@0.6.0
| | +-- ini@1.3.5
| | `-- minimist@1.2.0
| +-- rimraf@2.6.3
| | `-- glob@7.1.3
| +-- semver@5.7.0
| `-- tar@4.4.8
| +-- chownr@1.1.1
| +-- fs-minipass@1.2.5
| +-- minipass@2.3.5
| | `-- yallist@3.0.3
| +-- minizlib@1.2.1
| `-- yallist@3.0.3
+-- semver@6.0.0
`-- service-runner@2.6.17
+-- bunyan-syslog-udp@0.2.0
+-- dnscache@1.0.1
| +-- asap@2.0.6
| `-- lodash.clone@4.3.2
| `-- lodash._baseclone@4.5.7
+-- gc-stats@1.2.1
| `-- node-pre-gyp@0.11.0
| +-- detect-libc@1.0.3
| +-- mkdirp@0.5.1
| | `-- minimist@0.0.8
| +-- needle@2.2.4
| | +-- debug@2.6.9
| | | `-- ms@2.0.0
| | +-- iconv-lite@0.4.24
| | | `-- safer-buffer@2.1.2
| | `-- sax@1.2.4
| +-- nopt@4.0.1
| | +-- abbrev@1.1.1
| | `-- osenv@0.1.5
| | +-- os-homedir@1.0.2
| | `-- os-tmpdir@1.0.2
| +-- npm-packlist@1.1.12
| | +-- ignore-walk@3.0.1
| | | `-- minimatch@3.0.4
| | | `-- brace-expansion@1.1.11
| | | +-- balanced-match@1.0.0
| | | `-- concat-map@0.0.1
| | `-- npm-bundled@1.0.5
| +-- npmlog@4.1.2
| | +-- are-we-there-yet@1.1.5
| | | +-- delegates@1.0.0
| | | `-- readable-stream@2.3.6
| | | +-- core-util-is@1.0.2
| | | +-- isarray@1.0.0
| | | +-- process-nextick-args@2.0.0
| | | +-- string_decoder@1.1.1
| | | `-- util-deprecate@1.0.2
| | +-- console-control-strings@1.1.0
| | +-- gauge@2.7.4
| | | +-- aproba@1.2.0
| | | +-- has-unicode@2.0.1
| | | +-- object-assign@4.1.1
| | | +-- signal-exit@3.0.2
| | | +-- string-width@1.0.2
| | | | +-- code-point-at@1.1.0
| | | | `-- is-fullwidth-code-point@1.0.0
| | | | `-- number-is-nan@1.0.1
| | | +-- strip-ansi@3.0.1
| | | | `-- ansi-regex@2.1.1
| | | `-- wide-align@1.1.3
| | `-- set-blocking@2.0.0
| +-- rc@1.2.8
| | +-- deep-extend@0.6.0
| | +-- ini@1.3.5
| | +-- minimist@1.2.0
| | `-- strip-json-comments@2.0.1
| +-- rimraf@2.6.2
| | `-- glob@7.1.2
| | +-- fs.realpath@1.0.0
| | +-- inflight@1.0.6
| | | `-- wrappy@1.0.2
| | +-- inherits@2.0.3
| | +-- once@1.4.0
| | `-- path-is-absolute@1.0.1
| +-- semver@5.5.0
| `-- tar@4.4.6
| +-- chownr@1.1.1
| +-- fs-minipass@1.2.5
| +-- minipass@2.3.5
| +-- minizlib@1.1.1
| +-- safe-buffer@5.1.2
| `-- yallist@3.0.2
+-- gelf-stream@1.1.1
| `-- gelfling@0.3.1
+-- heapdump@0.3.12
+-- hot-shots@5.9.2
+-- limitation@0.2.1
| +-- kad@1.3.6 (git+https://github.com/wikimedia/kad.git#c2f76b1a55011db84778a408a89d4ddcfe4fe5bb)
| | +-- clarinet@0.11.0
| | +-- colors@1.3.3
| | +-- hat@0.0.3
| | +-- kad-fs@0.0.4
| | | `-- readable-stream@2.3.6
| | | +-- isarray@1.0.0
| | | `-- string_decoder@1.1.1
| | +-- kad-localstorage@0.0.7
| | | `-- dom-storage@2.1.0
| | +-- kad-memstore@0.0.1
| | | `-- readable-stream@2.3.6
| | | +-- isarray@1.0.0
| | | `-- string_decoder@1.1.1
| | +-- lodash@3.10.1
| | +-- merge@1.2.1
| | +-- ms@0.7.3
| | `-- msgpack5@3.6.0
| | +-- bl@1.2.2
| | | `-- readable-stream@2.3.6
| | | +-- isarray@1.0.0
| | | `-- string_decoder@1.1.1
| | `-- readable-stream@2.3.6
| | +-- isarray@1.0.0
| | `-- string_decoder@1.1.1
| `-- readable-stream@2.3.6
| +-- isarray@1.0.0
| +-- process-nextick-args@2.0.0
| +-- string_decoder@1.1.1
| `-- util-deprecate@1.0.2
`-- semver@5.7.0
npm info ok
Removing intermediate container f393aa0022e7
---> d47a0db2a311
Step 5/7 : COPY . .
---> 328ea2d4c71b
Step 6/7 : EXPOSE 7231
---> Running in 69d68df3549e
Removing intermediate container 69d68df3549e
---> e1f3ce6b383e
Step 7/7 : EXPOSE 5858
---> Running in 4258c9454b8c
Removing intermediate container 4258c9454b8c
---> 89f0d0545117
Successfully built 89f0d0545117
Successfully tagged restbase:latest
~/Documents/gerrit/mediawiki/core/services/restbase$ cd ~/Documents/gerrit/releng/local-charts/
~/Documents/gerrit/releng/local-charts$ helm dependency update .
Hang tight while we grab the latest from your chart repositories...
...Unable to get an update from the "local" chart repository (http://127.0.0.1:8879/charts):
Get http://127.0.0.1:8879/charts/index.yaml: dial tcp 127.0.0.1:8879: connect: connection refused
...Successfully got an update from the "stable" chart repository
Update Complete. ⎈Happy Helming!⎈
Saving 4 charts
Downloading mariadb from repo https://kubernetes-charts.storage.googleapis.com/
Deleting outdated charts
~/Documents/gerrit/releng/local-charts$ helm install .
NAME: foolhardy-otter
LAST DEPLOYED: Mon Apr 8 14:43:59 2019
NAMESPACE: default
STATUS: DEPLOYED
RESOURCES:
==> v1/ConfigMap
NAME DATA AGE
foolhardy-otter-mariadb-master 1 1s
foolhardy-otter-mariadb-slave 1 1s
foolhardy-otter-mariadb-tests 1 1s
foolhardy-otter-parsoid 1 1s
foolhardy-otter-restbase 1 1s
==> v1/Pod(related)
NAME READY STATUS RESTARTS AGE
foolhardy-otter-mariadb-master-0 0/1 Pending 0 0s
foolhardy-otter-mariadb-slave-0 0/1 Pending 0 0s
foolhardy-otter-mediawiki-65b8bdcffb-x249v 0/1 ContainerCreating 0 1s
foolhardy-otter-parsoid-57ddc8b789-b9rrv 0/1 ContainerCreating 0 1s
foolhardy-otter-restbase-7b6cc4c966-b6lsk 0/1 ContainerCreating 0 1s
==> v1/Secret
NAME TYPE DATA AGE
foolhardy-otter-mariadb Opaque 2 1s
foolhardy-otter-mediawiki Opaque 3 1s
==> v1/Service
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
foolhardy-otter-mariadb ClusterIP 10.96.181.197 <none> 3306/TCP 1s
foolhardy-otter-mariadb-slave ClusterIP 10.111.142.82 <none> 3306/TCP 1s
foolhardy-otter-mediawiki NodePort 10.97.174.226 <none> 8080:30000/TCP 1s
foolhardy-otter-parsoid NodePort 10.105.246.249 <none> 8081:30296/TCP,9229:32367/TCP 1s
foolhardy-otter-restbase NodePort 10.97.52.147 <none> 7231:31327/TCP,9229:31519/TCP 1s
==> v1beta1/StatefulSet
NAME READY AGE
foolhardy-otter-mariadb-master 0/1 1s
foolhardy-otter-mariadb-slave 0/1 1s
==> v1beta2/Deployment
NAME READY UP-TO-DATE AVAILABLE AGE
foolhardy-otter-mediawiki 0/1 1 0 1s
foolhardy-otter-parsoid 0/1 1 0 1s
foolhardy-otter-restbase 0/1 1 0 1s
~/Documents/gerrit/releng/local-charts$ kubectl get pods
NAME READY STATUS RESTARTS AGE
foolhardy-otter-mariadb-master-0 0/1 ContainerCreating 0 34s
foolhardy-otter-mariadb-slave-0 0/1 ContainerCreating 0 34s
foolhardy-otter-mediawiki-65b8bdcffb-x249v 0/1 ErrImageNeverPull 0 35s
foolhardy-otter-parsoid-57ddc8b789-b9rrv 1/1 Running 0 35s
foolhardy-otter-restbase-7b6cc4c966-b6lsk 1/1 Running 0 35s
~/Documents/gerrit/releng/local-charts$ minikube service foolhardy-otter-mediawiki
🎉 Opening kubernetes service default/foolhardy-otter-mediawiki in default browser...
~/Documents/gerrit/releng/local-charts$ minikube ip
192.168.64.3
~/Documents/gerrit/releng/local-charts$ kubectl get svc
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
foolhardy-otter-mariadb ClusterIP 10.96.181.197 <none> 3306/TCP 2m2s
foolhardy-otter-mariadb-slave ClusterIP 10.111.142.82 <none> 3306/TCP 2m2s
foolhardy-otter-mediawiki NodePort 10.97.174.226 <none> 8080:30000/TCP 2m2s
foolhardy-otter-parsoid NodePort 10.105.246.249 <none> 8081:30296/TCP,9229:32367/TCP 2m2s
foolhardy-otter-restbase NodePort 10.97.52.147 <none> 7231:31327/TCP,9229:31519/TCP 2m2s
kubernetes ClusterIP 10.96.0.1 <none> 443/TCP 39m
~/Documents/gerrit/releng/local-charts$ kubectl get pods
NAME READY STATUS RESTARTS AGE
foolhardy-otter-mariadb-master-0 1/1 Running 0 2m18s
foolhardy-otter-mariadb-slave-0 1/1 Running 0 2m18s
foolhardy-otter-mediawiki-65b8bdcffb-x249v 0/1 ErrImageNeverPull 0 2m19s
foolhardy-otter-parsoid-57ddc8b789-b9rrv 1/1 Running 0 2m19s
foolhardy-otter-restbase-7b6cc4c966-b6lsk 1/1 Running 0 2m19s