commit 19e6d572ce128fcb5b9849bfda841212fd764bd0 Author: fosslinux Date: Sun Nov 25 01:28:03 2018 -0500 initial commit diff --git a/bash/.bash_logout b/bash/.bash_logout new file mode 100644 index 0000000..de4f5f7 --- /dev/null +++ b/bash/.bash_logout @@ -0,0 +1,7 @@ +# ~/.bash_logout: executed by bash(1) when login shell exits. + +# when leaving the console clear the screen to increase privacy + +if [ "$SHLVL" = 1 ]; then + [ -x /usr/bin/clear_console ] && /usr/bin/clear_console -q +fi diff --git a/bash/.bashrc b/bash/.bashrc new file mode 100644 index 0000000..47e15df --- /dev/null +++ b/bash/.bashrc @@ -0,0 +1,129 @@ +# ~/.bashrc: executed by bash(1) for non-login shells. +# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) +# for examples + +# If not running interactively, don't do anything +case $- in + *i*) ;; + *) return;; +esac + +# don't put duplicate lines or lines starting with space in the history. +# See bash(1) for more options +HISTCONTROL=ignoreboth + +# append to the history file, don't overwrite it +shopt -s histappend + +# for setting history length see HISTSIZE and HISTFILESIZE in bash(1) +HISTSIZE=1000 +HISTFILESIZE=2000 + +# check the window size after each command and, if necessary, +# update the values of LINES and COLUMNS. +shopt -s checkwinsize + +# If set, the pattern "**" used in a pathname expansion context will +# match all files and zero or more directories and subdirectories. +#shopt -s globstar + +# make less more friendly for non-text input files, see lesspipe(1) +[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)" + +# set variable identifying the chroot you work in (used in the prompt below) +if [ -z "${debian_chroot:-}" ] && [ -r /etc/debian_chroot ]; then + debian_chroot=$(cat /etc/debian_chroot) +fi + +# set a fancy prompt (non-color, unless we know we "want" color) +case "$TERM" in + xterm-color|*-256color) color_prompt=yes;; +esac + +# uncomment for a colored prompt, if the terminal has the capability; turned +# off by default to not distract the user: the focus in a terminal window +# should be on the output of commands, not on the prompt +#force_color_prompt=yes + +if [ -n "$force_color_prompt" ]; then + if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then + # We have color support; assume it's compliant with Ecma-48 + # (ISO/IEC-6429). (Lack of such support is extremely rare, and such + # a case would tend to support setf rather than setaf.) + color_prompt=yes + else + color_prompt= + fi +fi + +if [ "$color_prompt" = yes ]; then + PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ ' +else + PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ ' +fi +unset color_prompt force_color_prompt + +# If this is an xterm set the title to user@host:dir +case "$TERM" in +xterm*|rxvt*) + PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1" + ;; +*) + ;; +esac + +# enable color support of ls and also add handy aliases +if [ -x /usr/bin/dircolors ]; then + test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)" + alias ls='ls --color=auto' + #alias dir='dir --color=auto' + #alias vdir='vdir --color=auto' + + alias grep='grep --color=auto' + alias fgrep='fgrep --color=auto' + alias egrep='egrep --color=auto' +fi + +# colored GCC warnings and errors +#export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01' + +# some more ls aliases +alias ll='ls -alF' +alias la='ls -A' +alias l='ls -CF' + +# Add an "alert" alias for long running commands. Use like so: +# sleep 10; alert +alias alert='notify-send --urgency=low -i "$([ $? = 0 ] && echo terminal || echo error)" "$(history|tail -n1|sed -e '\''s/^\s*[0-9]\+\s*//;s/[;&|]\s*alert$//'\'')"' + +# Alias definitions. +# You may want to put all your additions into a separate file like +# ~/.bash_aliases, instead of adding them here directly. +# See /usr/share/doc/bash-doc/examples in the bash-doc package. + +if [ -f ~/.bash_aliases ]; then + . ~/.bash_aliases +fi + +# enable programmable completion features (you don't need to enable +# this, if it's already enabled in /etc/bash.bashrc and /etc/profile +# sources /etc/bash.bashrc). +if ! shopt -oq posix; then + if [ -f /usr/share/bash-completion/bash_completion ]; then + . /usr/share/bash-completion/bash_completion + elif [ -f /etc/bash_completion ]; then + . /etc/bash_completion + fi +fi + +PATH=~/prog/bin:$PATH +LD_LIBRARY_PATH=~/prog/lib64:~/prog/lib:$LD_LIBRARY_PATH + +# set EDITOR just in case +export EDITOR=vim + +if ! { [ "$TERM" = "screen" ] && [ -n "$TMUX" ]; } then + tmux attach +fi + +exec zsh diff --git a/burrow/.config/burrow/config b/burrow/.config/burrow/config new file mode 100644 index 0000000..f3112d9 --- /dev/null +++ b/burrow/.config/burrow/config @@ -0,0 +1,29 @@ +config_dir_gopher="$HOME/public_gopher/" + +config_gopher_server="tilde.team" +config_gopher_port="70" +config_gopher_root="/~$USER/" + +config_dir_phlog="phlog" +config_phlog_gophermap=true +config_phlog_usedate=true +config_phlog_autorss=false + +config_dir_recipebox="recipebox" +config_recipebox_gophermap=false +config_recipebox_usedate=false + +config_dir_topics="topics" +config_topics_gophermap=true +config_topics_usedate=false + +config_git_commit=false +config_git_push=false + +config_autoindent=true + +config_file_rss="rss.xml" +config_gopher_name="~fosslinux" +config_gopher_desc="~fosslinux's gopherhole" +config_rss_num_entries="10" + diff --git a/byobu/.byobu/backend b/byobu/.byobu/backend new file mode 100644 index 0000000..ac0eb76 --- /dev/null +++ b/byobu/.byobu/backend @@ -0,0 +1 @@ +BYOBU_BACKEND=tmux diff --git a/byobu/.byobu/color b/byobu/.byobu/color new file mode 100644 index 0000000..1ee73ad --- /dev/null +++ b/byobu/.byobu/color @@ -0,0 +1,3 @@ +BACKGROUND=k +FOREGROUND=w +MONOCHROME=0 \ No newline at end of file diff --git a/byobu/.byobu/color.tmux b/byobu/.byobu/color.tmux new file mode 100644 index 0000000..4f55dc7 --- /dev/null +++ b/byobu/.byobu/color.tmux @@ -0,0 +1,4 @@ +BYOBU_DARK="\#333333" +BYOBU_LIGHT="\#EEEEEE" +BYOBU_ACCENT="\#75507B" +BYOBU_HIGHLIGHT="\#DD4814" diff --git a/byobu/.byobu/datetime.tmux b/byobu/.byobu/datetime.tmux new file mode 100644 index 0000000..7b888a7 --- /dev/null +++ b/byobu/.byobu/datetime.tmux @@ -0,0 +1,2 @@ +BYOBU_DATE="%Y-%m-%d " +BYOBU_TIME="%H:%M:%S" diff --git a/byobu/.byobu/disable-autolaunch b/byobu/.byobu/disable-autolaunch new file mode 100644 index 0000000..e69de29 diff --git a/byobu/.byobu/keybindings b/byobu/.byobu/keybindings new file mode 100644 index 0000000..9d9bbdb --- /dev/null +++ b/byobu/.byobu/keybindings @@ -0,0 +1 @@ +source $BYOBU_PREFIX/share/byobu/keybindings/common diff --git a/byobu/.byobu/keybindings.tmux b/byobu/.byobu/keybindings.tmux new file mode 100644 index 0000000..eb3d92e --- /dev/null +++ b/byobu/.byobu/keybindings.tmux @@ -0,0 +1,4 @@ +unbind-key -n C-a +set -g prefix ^A +set -g prefix2 F12 +bind a send-prefix diff --git a/byobu/.byobu/profile b/byobu/.byobu/profile new file mode 100644 index 0000000..230ac0e --- /dev/null +++ b/byobu/.byobu/profile @@ -0,0 +1 @@ +source $BYOBU_PREFIX/share/byobu/profiles/common diff --git a/byobu/.byobu/profile.tmux b/byobu/.byobu/profile.tmux new file mode 100644 index 0000000..9ccca51 --- /dev/null +++ b/byobu/.byobu/profile.tmux @@ -0,0 +1 @@ +source $BYOBU_PREFIX/share/byobu/profiles/tmux diff --git a/byobu/.byobu/prompt b/byobu/.byobu/prompt new file mode 100644 index 0000000..7b5c6e8 --- /dev/null +++ b/byobu/.byobu/prompt @@ -0,0 +1,2 @@ +[ -r /usr/share/byobu/profiles/bashrc ] && . /usr/share/byobu/profiles/bashrc #byobu-prompt# + diff --git a/byobu/.byobu/status b/byobu/.byobu/status new file mode 100644 index 0000000..ac9bd5d --- /dev/null +++ b/byobu/.byobu/status @@ -0,0 +1,37 @@ +# status - Byobu's default status enabled/disabled settings +# +# Override these in $BYOBU_CONFIG_DIR/status +# where BYOBU_CONFIG_DIR is XDG_CONFIG_HOME if defined, +# and $HOME/.byobu otherwise. +# +# Copyright (C) 2009-2011 Canonical Ltd. +# +# Authors: Dustin Kirkland +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, version 3 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +# Status beginning with '#' are disabled. + +# Screen has two status lines, with 4 quadrants for status +screen_upper_left="color" +screen_upper_right="color whoami hostname ip_address menu" +screen_lower_left="color logo distro release #arch session" +screen_lower_right="color network #disk_io custom #entropy raid reboot_required updates_available #apport #services #mail users uptime #ec2_cost #rcs_cost #fan_speed #cpu_temp battery wifi_quality #processes load_average cpu_count cpu_freq memory #swap disk #time_utc date time" + +# Tmux has one status line, with 2 halves for status +tmux_left="logo #distro release #arch session" +# You can have as many tmux right lines below here, and cycle through them using Shift-F5 +tmux_right="#network #disk_io #custom #entropy raid reboot_required updates_available #apport #services #mail #users uptime #ec2_cost #rcs_cost #fan_speed #cpu_temp #battery #wifi_quality #processes load_average cpu_count cpu_freq memory #swap disk #whoami #hostname #ip_address #time_utc date time" +#tmux_right="network #disk_io #custom entropy raid reboot_required updates_available #apport #services #mail users uptime #ec2_cost #rcs_cost fan_speed cpu_temp battery wifi_quality #processes load_average cpu_count cpu_freq memory #swap #disk whoami hostname ip_address #time_utc date time" +#tmux_right="network #disk_io custom #entropy raid reboot_required updates_available #apport #services #mail users uptime #ec2_cost #rcs_cost #fan_speed #cpu_temp battery wifi_quality #processes load_average cpu_count cpu_freq memory #swap #disk #whoami #hostname ip_address #time_utc date time" +#tmux_right="#network disk_io #custom entropy #raid #reboot_required #updates_available #apport #services #mail #users #uptime #ec2_cost #rcs_cost fan_speed cpu_temp #battery #wifi_quality #processes #load_average #cpu_count #cpu_freq #memory #swap whoami hostname ip_address #time_utc disk date time" diff --git a/byobu/.byobu/statusrc b/byobu/.byobu/statusrc new file mode 100644 index 0000000..472e45c --- /dev/null +++ b/byobu/.byobu/statusrc @@ -0,0 +1,78 @@ +# statusrc - Byobu's default status configurations +# +# Override these in $BYOBU_CONFIG_DIR/statusrc +# where BYOBU_CONFIG_DIR is XDG_CONFIG_HOME if defined, +# and $HOME/.byobu otherwise. +# +# Copyright (C) 2009-2011 Canonical Ltd. +# +# Authors: Dustin Kirkland +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, version 3 of the License. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +# Configurations that you can override; if you leave these commented out, +# Byobu will try to auto-detect them. + +# This should be auto-detected for most distro, but setting it here will save +# some call to lsb_release and the like. +#BYOBU_DISTRO=Ubuntu + +# Default: depends on the distro (which is either auto-detected, either set +# via $DISTRO) +#LOGO="\o/" + +# Abbreviate the release to N characters +# By default, this is disabled. But if you set RELEASE_ABBREVIATED=1 +# and your lsb_release is "precise", only "p" will be displayed +#RELEASE_ABBREVIATED=1 + +# Default: / +#MONITORED_DISK=/ + +# Minimum disk throughput that triggers the notification (in kB/s) +# Default: 50 +#DISK_IO_THRESHOLD=50 + +# Default: eth0 +#MONITORED_NETWORK=eth0 + +# Unit used for network throughput (either bits per second or bytes per second) +# Default: bits +#NETWORK_UNITS=bytes + +# Minimum network throughput that triggers the notification (in kbit/s) +# Default: 20 +#NETWORK_THRESHOLD=20 + +# You can add an additional source of temperature here +#MONITORED_TEMP=/proc/acpi/thermal_zone/THM0/temperature + +# Default: C +#TEMP=F + +#SERVICES="eucalyptus-nc|NC eucalyptus-cloud|CLC eucalyptus-walrus eucalyptus-cc|CC eucalyptus-sc|SC" + +#FAN=$(find /sys -type f -name fan1_input | head -n1) + +# You can set this to 1 to report your external/public ip address +# Default: 0 +#IP_EXTERNAL=0 + +# The users notification normally counts ssh sessions; set this configuration to '1' +# to instead count number of distinct users logged onto the system +# Default: 0 +#USERS_DISTINCT=0 + +# Set this to zero to hide seconds int the time display +# Default 1 +#TIME_SECONDS=0 diff --git a/byobu/.byobu/windows b/byobu/.byobu/windows new file mode 100644 index 0000000..e69de29 diff --git a/byobu/.byobu/windows.tmux b/byobu/.byobu/windows.tmux new file mode 100644 index 0000000..0e6d287 --- /dev/null +++ b/byobu/.byobu/windows.tmux @@ -0,0 +1 @@ +attach; diff --git a/fontconfig/.config/fontconfig/conf.d/10-powerline-symbols.conf b/fontconfig/.config/fontconfig/conf.d/10-powerline-symbols.conf new file mode 100644 index 0000000..7e34a12 --- /dev/null +++ b/fontconfig/.config/fontconfig/conf.d/10-powerline-symbols.conf @@ -0,0 +1,105 @@ + + + + + + monospace + PowerlineSymbols + + + Droid Sans Mono + PowerlineSymbols + + + Droid Sans Mono Slashed + PowerlineSymbols + + + Droid Sans Mono Dotted + PowerlineSymbols + + + DejaVu Sans Mono + PowerlineSymbols + + + DejaVu Sans Mono + PowerlineSymbols + + + Envy Code R + PowerlineSymbols + + + Inconsolata + PowerlineSymbols + + + Lucida Console + PowerlineSymbols + + + Monaco + PowerlineSymbols + + + Pragmata + PowerlineSymbols + + + PragmataPro + PowerlineSymbols + + + Menlo + PowerlineSymbols + + + Source Code Pro + PowerlineSymbols + + + Consolas + PowerlineSymbols + + + Anonymous pro + PowerlineSymbols + + + Bitstream Vera Sans Mono + PowerlineSymbols + + + Liberation Mono + PowerlineSymbols + + + Ubuntu Mono + PowerlineSymbols + + + Meslo LG L + PowerlineSymbols + + + Meslo LG L DZ + PowerlineSymbols + + + Meslo LG M + PowerlineSymbols + + + Meslo LG M DZ + PowerlineSymbols + + + Meslo LG S + PowerlineSymbols + + + Meslo LG S DZ + PowerlineSymbols + + diff --git a/fonts/.fonts/PowerlineSymbols.otf b/fonts/.fonts/PowerlineSymbols.otf new file mode 100644 index 0000000..b1582af Binary files /dev/null and b/fonts/.fonts/PowerlineSymbols.otf differ diff --git a/git/.gitconfig b/git/.gitconfig new file mode 100644 index 0000000..5fce70d --- /dev/null +++ b/git/.gitconfig @@ -0,0 +1,3 @@ +[user] + name = fosslinux + email = fosslinux@tilde.team diff --git a/links2/.links2/bookmarks.html b/links2/.links2/bookmarks.html new file mode 100644 index 0000000..7392fd3 --- /dev/null +++ b/links2/.links2/bookmarks.html @@ -0,0 +1,27 @@ + + + +Links bookmarks + +

Links bookmarks

+ +

+

Links

+
+

English

+
+
Calibration Procedure +
Links Homepage +
Links Manual +
+

Cesky

+
+
Kalibracni procedura +
Links: domaci stranka +
Manual k Linksu +
+
+

+ diff --git a/links2/.links2/links.his b/links2/.links2/links.his new file mode 100644 index 0000000..e69de29 diff --git a/node/.node_repl_history b/node/.node_repl_history new file mode 100644 index 0000000..39eb209 --- /dev/null +++ b/node/.node_repl_history @@ -0,0 +1 @@ +quit \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha1/03/77/c38017cabc7322b0d1fbcd25a491641f2fbe b/npm/.npm/_cacache/content-v2/sha1/03/77/c38017cabc7322b0d1fbcd25a491641f2fbe new file mode 100644 index 0000000..ccb38b1 Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha1/03/77/c38017cabc7322b0d1fbcd25a491641f2fbe differ diff --git a/npm/.npm/_cacache/content-v2/sha1/04/7a/449789fa160d018f5486ed91320b6ec7885c b/npm/.npm/_cacache/content-v2/sha1/04/7a/449789fa160d018f5486ed91320b6ec7885c new file mode 100644 index 0000000..6938cfa Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha1/04/7a/449789fa160d018f5486ed91320b6ec7885c differ diff --git a/npm/.npm/_cacache/content-v2/sha1/04/e6/926f662895354f3dd015203633b857297e2c b/npm/.npm/_cacache/content-v2/sha1/04/e6/926f662895354f3dd015203633b857297e2c new file mode 100644 index 0000000..742d473 Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha1/04/e6/926f662895354f3dd015203633b857297e2c differ diff --git a/npm/.npm/_cacache/content-v2/sha1/06/32/638f8d877cc82107d30a0fff1a17cba1cd0c b/npm/.npm/_cacache/content-v2/sha1/06/32/638f8d877cc82107d30a0fff1a17cba1cd0c new file mode 100644 index 0000000..3562c48 Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha1/06/32/638f8d877cc82107d30a0fff1a17cba1cd0c differ diff --git a/npm/.npm/_cacache/content-v2/sha1/09/7b/602b53422a522c1afb8790318336941a011d b/npm/.npm/_cacache/content-v2/sha1/09/7b/602b53422a522c1afb8790318336941a011d new file mode 100644 index 0000000..ea2cb84 Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha1/09/7b/602b53422a522c1afb8790318336941a011d differ diff --git a/npm/.npm/_cacache/content-v2/sha1/0c/79/62a6adefa7bbd4ac366460a638552ae1a0a2 b/npm/.npm/_cacache/content-v2/sha1/0c/79/62a6adefa7bbd4ac366460a638552ae1a0a2 new file mode 100644 index 0000000..2e33ac3 Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha1/0c/79/62a6adefa7bbd4ac366460a638552ae1a0a2 differ diff --git a/npm/.npm/_cacache/content-v2/sha1/0e/8b/dfe4d1ddb8854d64e04ea7c00e2a026e5658 b/npm/.npm/_cacache/content-v2/sha1/0e/8b/dfe4d1ddb8854d64e04ea7c00e2a026e5658 new file mode 100644 index 0000000..cc9525c Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha1/0e/8b/dfe4d1ddb8854d64e04ea7c00e2a026e5658 differ diff --git a/npm/.npm/_cacache/content-v2/sha1/0f/eb/6c64f0fc518d9a754dd5efb62c7022761f4b b/npm/.npm/_cacache/content-v2/sha1/0f/eb/6c64f0fc518d9a754dd5efb62c7022761f4b new file mode 100644 index 0000000..4b5f685 Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha1/0f/eb/6c64f0fc518d9a754dd5efb62c7022761f4b differ diff --git a/npm/.npm/_cacache/content-v2/sha1/15/04/ad2523158caa40db4a2787cb01411994ea4f b/npm/.npm/_cacache/content-v2/sha1/15/04/ad2523158caa40db4a2787cb01411994ea4f new file mode 100644 index 0000000..c9cf831 Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha1/15/04/ad2523158caa40db4a2787cb01411994ea4f differ diff --git a/npm/.npm/_cacache/content-v2/sha1/16/8a/4701756b6a7f51a12ce0c97bfa28c084ed63 b/npm/.npm/_cacache/content-v2/sha1/16/8a/4701756b6a7f51a12ce0c97bfa28c084ed63 new file mode 100644 index 0000000..f4514c2 Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha1/16/8a/4701756b6a7f51a12ce0c97bfa28c084ed63 differ diff --git a/npm/.npm/_cacache/content-v2/sha1/17/4b/9268735534ffbc7ace6bf53a5a9e1b5c5f5f b/npm/.npm/_cacache/content-v2/sha1/17/4b/9268735534ffbc7ace6bf53a5a9e1b5c5f5f new file mode 100644 index 0000000..223459b Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha1/17/4b/9268735534ffbc7ace6bf53a5a9e1b5c5f5f differ diff --git a/npm/.npm/_cacache/content-v2/sha1/1b/61/c0562190a8dff6ae3bb2cf0200ca130b86d4 b/npm/.npm/_cacache/content-v2/sha1/1b/61/c0562190a8dff6ae3bb2cf0200ca130b86d4 new file mode 100644 index 0000000..16afed4 Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha1/1b/61/c0562190a8dff6ae3bb2cf0200ca130b86d4 differ diff --git a/npm/.npm/_cacache/content-v2/sha1/1b/c9/36b9e02f4a603fcc222ecf7633d30b8b93b1 b/npm/.npm/_cacache/content-v2/sha1/1b/c9/36b9e02f4a603fcc222ecf7633d30b8b93b1 new file mode 100644 index 0000000..d0b5ed3 Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha1/1b/c9/36b9e02f4a603fcc222ecf7633d30b8b93b1 differ diff --git a/npm/.npm/_cacache/content-v2/sha1/20/31/14d82ad2c5ed9e8e0411b3932875e889e97b b/npm/.npm/_cacache/content-v2/sha1/20/31/14d82ad2c5ed9e8e0411b3932875e889e97b new file mode 100644 index 0000000..62ee8f1 Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha1/20/31/14d82ad2c5ed9e8e0411b3932875e889e97b differ diff --git a/npm/.npm/_cacache/content-v2/sha1/21/09/adc7965887cfc05cbbd442cac8bfbb360863 b/npm/.npm/_cacache/content-v2/sha1/21/09/adc7965887cfc05cbbd442cac8bfbb360863 new file mode 100644 index 0000000..939f2a8 Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha1/21/09/adc7965887cfc05cbbd442cac8bfbb360863 differ diff --git a/npm/.npm/_cacache/content-v2/sha1/21/1b/afaf49e525b8cd93260d14ab136152b3f57a b/npm/.npm/_cacache/content-v2/sha1/21/1b/afaf49e525b8cd93260d14ab136152b3f57a new file mode 100644 index 0000000..bfe32be Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha1/21/1b/afaf49e525b8cd93260d14ab136152b3f57a differ diff --git a/npm/.npm/_cacache/content-v2/sha1/21/35/d6dfa7a358c069ac9b178776288228450ffa b/npm/.npm/_cacache/content-v2/sha1/21/35/d6dfa7a358c069ac9b178776288228450ffa new file mode 100644 index 0000000..f841d8f Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha1/21/35/d6dfa7a358c069ac9b178776288228450ffa differ diff --git a/npm/.npm/_cacache/content-v2/sha1/27/0f/076c5a72c02f5b65a47df94c5fe3a278892f b/npm/.npm/_cacache/content-v2/sha1/27/0f/076c5a72c02f5b65a47df94c5fe3a278892f new file mode 100644 index 0000000..644093e Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha1/27/0f/076c5a72c02f5b65a47df94c5fe3a278892f differ diff --git a/npm/.npm/_cacache/content-v2/sha1/30/05/7438eac6cf7f8c4767f38648d6697d75c903 b/npm/.npm/_cacache/content-v2/sha1/30/05/7438eac6cf7f8c4767f38648d6697d75c903 new file mode 100644 index 0000000..21a29c9 Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha1/30/05/7438eac6cf7f8c4767f38648d6697d75c903 differ diff --git a/npm/.npm/_cacache/content-v2/sha1/30/8b/eeaffdf28119051efa1d932213c91b8f92e7 b/npm/.npm/_cacache/content-v2/sha1/30/8b/eeaffdf28119051efa1d932213c91b8f92e7 new file mode 100644 index 0000000..24143c2 Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha1/30/8b/eeaffdf28119051efa1d932213c91b8f92e7 differ diff --git a/npm/.npm/_cacache/content-v2/sha1/36/be/78320afe5801f6cea3ee78b6e5aab940ea0c b/npm/.npm/_cacache/content-v2/sha1/36/be/78320afe5801f6cea3ee78b6e5aab940ea0c new file mode 100644 index 0000000..5274c26 Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha1/36/be/78320afe5801f6cea3ee78b6e5aab940ea0c differ diff --git a/npm/.npm/_cacache/content-v2/sha1/37/93/0aa5d816b777c03445e1966cc6790a4c0b16 b/npm/.npm/_cacache/content-v2/sha1/37/93/0aa5d816b777c03445e1966cc6790a4c0b16 new file mode 100644 index 0000000..12c25f2 Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha1/37/93/0aa5d816b777c03445e1966cc6790a4c0b16 differ diff --git a/npm/.npm/_cacache/content-v2/sha1/45/0d/4dc9fa70de732762fbd2d4a28981419a0ccf b/npm/.npm/_cacache/content-v2/sha1/45/0d/4dc9fa70de732762fbd2d4a28981419a0ccf new file mode 100644 index 0000000..544aac0 Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha1/45/0d/4dc9fa70de732762fbd2d4a28981419a0ccf differ diff --git a/npm/.npm/_cacache/content-v2/sha1/49/bd/6331d7d02d0c09bc910a1075ba8165b56df9 b/npm/.npm/_cacache/content-v2/sha1/49/bd/6331d7d02d0c09bc910a1075ba8165b56df9 new file mode 100644 index 0000000..6b5a072 Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha1/49/bd/6331d7d02d0c09bc910a1075ba8165b56df9 differ diff --git a/npm/.npm/_cacache/content-v2/sha1/4b/0d/a1442104d1b336340e80797e865cf39f7d72 b/npm/.npm/_cacache/content-v2/sha1/4b/0d/a1442104d1b336340e80797e865cf39f7d72 new file mode 100644 index 0000000..05610c5 Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha1/4b/0d/a1442104d1b336340e80797e865cf39f7d72 differ diff --git a/npm/.npm/_cacache/content-v2/sha1/52/14/c53a926d3552707527fbab415dbc08d06dda b/npm/.npm/_cacache/content-v2/sha1/52/14/c53a926d3552707527fbab415dbc08d06dda new file mode 100644 index 0000000..be7a5ca Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha1/52/14/c53a926d3552707527fbab415dbc08d06dda differ diff --git a/npm/.npm/_cacache/content-v2/sha1/54/05/72d34f7ac3119f8f76c30cbc1b1e037affbe b/npm/.npm/_cacache/content-v2/sha1/54/05/72d34f7ac3119f8f76c30cbc1b1e037affbe new file mode 100644 index 0000000..19c719e Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha1/54/05/72d34f7ac3119f8f76c30cbc1b1e037affbe differ diff --git a/npm/.npm/_cacache/content-v2/sha1/56/2b/119ebb069ddb464ace2845501be97b35b6a8 b/npm/.npm/_cacache/content-v2/sha1/56/2b/119ebb069ddb464ace2845501be97b35b6a8 new file mode 100644 index 0000000..21a166f Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha1/56/2b/119ebb069ddb464ace2845501be97b35b6a8 differ diff --git a/npm/.npm/_cacache/content-v2/sha1/58/3b/1aa775961d4b113ac17d9c50baef9dd76bd1 b/npm/.npm/_cacache/content-v2/sha1/58/3b/1aa775961d4b113ac17d9c50baef9dd76bd1 new file mode 100644 index 0000000..23490a8 Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha1/58/3b/1aa775961d4b113ac17d9c50baef9dd76bd1 differ diff --git a/npm/.npm/_cacache/content-v2/sha1/58/87/966bb582a4503a41eb524f7d35011815a613 b/npm/.npm/_cacache/content-v2/sha1/58/87/966bb582a4503a41eb524f7d35011815a613 new file mode 100644 index 0000000..1a1d659 Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha1/58/87/966bb582a4503a41eb524f7d35011815a613 differ diff --git a/npm/.npm/_cacache/content-v2/sha1/59/c4/4f7ee491da704da415da5a4070ba4f8fe441 b/npm/.npm/_cacache/content-v2/sha1/59/c4/4f7ee491da704da415da5a4070ba4f8fe441 new file mode 100644 index 0000000..a61f51c Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha1/59/c4/4f7ee491da704da415da5a4070ba4f8fe441 differ diff --git a/npm/.npm/_cacache/content-v2/sha1/5b/46/f80147edee578870f086d04821cf998e551f b/npm/.npm/_cacache/content-v2/sha1/5b/46/f80147edee578870f086d04821cf998e551f new file mode 100644 index 0000000..71a1d83 Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha1/5b/46/f80147edee578870f086d04821cf998e551f differ diff --git a/npm/.npm/_cacache/content-v2/sha1/62/19/a85616520491f35788bdbf1447a99c7e6b0e b/npm/.npm/_cacache/content-v2/sha1/62/19/a85616520491f35788bdbf1447a99c7e6b0e new file mode 100644 index 0000000..a781851 Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha1/62/19/a85616520491f35788bdbf1447a99c7e6b0e differ diff --git a/npm/.npm/_cacache/content-v2/sha1/63/3c/2c83e3da42a502f52466022480f4208261de b/npm/.npm/_cacache/content-v2/sha1/63/3c/2c83e3da42a502f52466022480f4208261de new file mode 100644 index 0000000..c09e405 Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha1/63/3c/2c83e3da42a502f52466022480f4208261de differ diff --git a/npm/.npm/_cacache/content-v2/sha1/6b/2e/9822b1a2ce0a60ab64d610eccad53cb24d0f b/npm/.npm/_cacache/content-v2/sha1/6b/2e/9822b1a2ce0a60ab64d610eccad53cb24d0f new file mode 100644 index 0000000..6cf90e3 Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha1/6b/2e/9822b1a2ce0a60ab64d610eccad53cb24d0f differ diff --git a/npm/.npm/_cacache/content-v2/sha1/72/55/6b80cfa0d48a974e80e77248e80ed4f7f870 b/npm/.npm/_cacache/content-v2/sha1/72/55/6b80cfa0d48a974e80e77248e80ed4f7f870 new file mode 100644 index 0000000..cf1acae Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha1/72/55/6b80cfa0d48a974e80e77248e80ed4f7f870 differ diff --git a/npm/.npm/_cacache/content-v2/sha1/72/cb/668b425228290abbfa856892587308a801fb b/npm/.npm/_cacache/content-v2/sha1/72/cb/668b425228290abbfa856892587308a801fb new file mode 100644 index 0000000..1f8ce72 Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha1/72/cb/668b425228290abbfa856892587308a801fb differ diff --git a/npm/.npm/_cacache/content-v2/sha1/77/c9/9840527aa8ecb1a8ba697b80645a7a926a9d b/npm/.npm/_cacache/content-v2/sha1/77/c9/9840527aa8ecb1a8ba697b80645a7a926a9d new file mode 100644 index 0000000..9455258 Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha1/77/c9/9840527aa8ecb1a8ba697b80645a7a926a9d differ diff --git a/npm/.npm/_cacache/content-v2/sha1/7c/1d/16d679a1bbe59ca02cacecfb011e201f5a1f b/npm/.npm/_cacache/content-v2/sha1/7c/1d/16d679a1bbe59ca02cacecfb011e201f5a1f new file mode 100644 index 0000000..4ba0fca Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha1/7c/1d/16d679a1bbe59ca02cacecfb011e201f5a1f differ diff --git a/npm/.npm/_cacache/content-v2/sha1/85/7f/cabfc3397d2625b8228262e86aa7a011b05d b/npm/.npm/_cacache/content-v2/sha1/85/7f/cabfc3397d2625b8228262e86aa7a011b05d new file mode 100644 index 0000000..caf80e7 Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha1/85/7f/cabfc3397d2625b8228262e86aa7a011b05d differ diff --git a/npm/.npm/_cacache/content-v2/sha1/89/b4/d199ab2bee49de164ea02b89ce462d71b767 b/npm/.npm/_cacache/content-v2/sha1/89/b4/d199ab2bee49de164ea02b89ce462d71b767 new file mode 100644 index 0000000..baa98a2 Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha1/89/b4/d199ab2bee49de164ea02b89ce462d71b767 differ diff --git a/npm/.npm/_cacache/content-v2/sha1/8e/2d/48348742121b4a8218b7a137e9a52049dc80 b/npm/.npm/_cacache/content-v2/sha1/8e/2d/48348742121b4a8218b7a137e9a52049dc80 new file mode 100644 index 0000000..e4979ab Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha1/8e/2d/48348742121b4a8218b7a137e9a52049dc80 differ diff --git a/npm/.npm/_cacache/content-v2/sha1/8f/61/b75cde012b2e9eb284d4545583b5643b61ab b/npm/.npm/_cacache/content-v2/sha1/8f/61/b75cde012b2e9eb284d4545583b5643b61ab new file mode 100644 index 0000000..a64f816 Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha1/8f/61/b75cde012b2e9eb284d4545583b5643b61ab differ diff --git a/npm/.npm/_cacache/content-v2/sha1/95/69/05708d58b4bab4c2261b04f59f31c99374c0 b/npm/.npm/_cacache/content-v2/sha1/95/69/05708d58b4bab4c2261b04f59f31c99374c0 new file mode 100644 index 0000000..f73eee5 Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha1/95/69/05708d58b4bab4c2261b04f59f31c99374c0 differ diff --git a/npm/.npm/_cacache/content-v2/sha1/96/e3/b70d5779f6ad49cd032673d1c312767ba581 b/npm/.npm/_cacache/content-v2/sha1/96/e3/b70d5779f6ad49cd032673d1c312767ba581 new file mode 100644 index 0000000..760c9a6 Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha1/96/e3/b70d5779f6ad49cd032673d1c312767ba581 differ diff --git a/npm/.npm/_cacache/content-v2/sha1/98/8d/f33feab191ef799a61369dd76c17adf957ea b/npm/.npm/_cacache/content-v2/sha1/98/8d/f33feab191ef799a61369dd76c17adf957ea new file mode 100644 index 0000000..07856ec Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha1/98/8d/f33feab191ef799a61369dd76c17adf957ea differ diff --git a/npm/.npm/_cacache/content-v2/sha1/9d/63/c13276c065918d57f002a57f40a1b643fb02 b/npm/.npm/_cacache/content-v2/sha1/9d/63/c13276c065918d57f002a57f40a1b643fb02 new file mode 100644 index 0000000..6467643 Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha1/9d/63/c13276c065918d57f002a57f40a1b643fb02 differ diff --git a/npm/.npm/_cacache/content-v2/sha1/9f/12/4b67594c937ff706932e4a642cca8dbbfee9 b/npm/.npm/_cacache/content-v2/sha1/9f/12/4b67594c937ff706932e4a642cca8dbbfee9 new file mode 100644 index 0000000..327e8b6 Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha1/9f/12/4b67594c937ff706932e4a642cca8dbbfee9 differ diff --git a/npm/.npm/_cacache/content-v2/sha1/a3/50/08b20f41383eec1fb914f4cd5df79a264284 b/npm/.npm/_cacache/content-v2/sha1/a3/50/08b20f41383eec1fb914f4cd5df79a264284 new file mode 100644 index 0000000..49b822d Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha1/a3/50/08b20f41383eec1fb914f4cd5df79a264284 differ diff --git a/npm/.npm/_cacache/content-v2/sha1/a7/d0/558bd89c42f795dd42328f740831ca53bc25 b/npm/.npm/_cacache/content-v2/sha1/a7/d0/558bd89c42f795dd42328f740831ca53bc25 new file mode 100644 index 0000000..c3082cc Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha1/a7/d0/558bd89c42f795dd42328f740831ca53bc25 differ diff --git a/npm/.npm/_cacache/content-v2/sha1/b5/24/3d8f3ec1aa35f1364605bc0d1036e30ab69f b/npm/.npm/_cacache/content-v2/sha1/b5/24/3d8f3ec1aa35f1364605bc0d1036e30ab69f new file mode 100644 index 0000000..d0fb26b Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha1/b5/24/3d8f3ec1aa35f1364605bc0d1036e30ab69f differ diff --git a/npm/.npm/_cacache/content-v2/sha1/b5/d4/54dc2199ae225699f3467e5a07f3b955bafd b/npm/.npm/_cacache/content-v2/sha1/b5/d4/54dc2199ae225699f3467e5a07f3b955bafd new file mode 100644 index 0000000..0f79ab5 Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha1/b5/d4/54dc2199ae225699f3467e5a07f3b955bafd differ diff --git a/npm/.npm/_cacache/content-v2/sha1/b5/fd/c08f1287ea1178628e415e25132b73646c6d b/npm/.npm/_cacache/content-v2/sha1/b5/fd/c08f1287ea1178628e415e25132b73646c6d new file mode 100644 index 0000000..a9f90d5 Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha1/b5/fd/c08f1287ea1178628e415e25132b73646c6d differ diff --git a/npm/.npm/_cacache/content-v2/sha1/b8/34/f723cc4a242aa65963459df6d984c5d3d959 b/npm/.npm/_cacache/content-v2/sha1/b8/34/f723cc4a242aa65963459df6d984c5d3d959 new file mode 100644 index 0000000..7fe3f1a Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha1/b8/34/f723cc4a242aa65963459df6d984c5d3d959 differ diff --git a/npm/.npm/_cacache/content-v2/sha1/b9/68/c6b0a04384324902e8bf1a5df32579a450fe b/npm/.npm/_cacache/content-v2/sha1/b9/68/c6b0a04384324902e8bf1a5df32579a450fe new file mode 100644 index 0000000..4770bb8 Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha1/b9/68/c6b0a04384324902e8bf1a5df32579a450fe differ diff --git a/npm/.npm/_cacache/content-v2/sha1/c6/46/5dbf08abcd4db359317f79ac68a646b28ff9 b/npm/.npm/_cacache/content-v2/sha1/c6/46/5dbf08abcd4db359317f79ac68a646b28ff9 new file mode 100644 index 0000000..57e1522 Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha1/c6/46/5dbf08abcd4db359317f79ac68a646b28ff9 differ diff --git a/npm/.npm/_cacache/content-v2/sha1/cc/66/77695602be550ef11e8b4aa6305342b6d0aa b/npm/.npm/_cacache/content-v2/sha1/cc/66/77695602be550ef11e8b4aa6305342b6d0aa new file mode 100644 index 0000000..7eae171 Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha1/cc/66/77695602be550ef11e8b4aa6305342b6d0aa differ diff --git a/npm/.npm/_cacache/content-v2/sha1/cf/91/6ab1fd5f1f16dfb20822dd6ec7f730c2afde b/npm/.npm/_cacache/content-v2/sha1/cf/91/6ab1fd5f1f16dfb20822dd6ec7f730c2afde new file mode 100644 index 0000000..039813c Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha1/cf/91/6ab1fd5f1f16dfb20822dd6ec7f730c2afde differ diff --git a/npm/.npm/_cacache/content-v2/sha1/d8/a9/6bd77fd68df7793a73036a3ba0d5405d477b b/npm/.npm/_cacache/content-v2/sha1/d8/a9/6bd77fd68df7793a73036a3ba0d5405d477b new file mode 100644 index 0000000..8d19b25 Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha1/d8/a9/6bd77fd68df7793a73036a3ba0d5405d477b differ diff --git a/npm/.npm/_cacache/content-v2/sha1/d9/33/ceb9205d82bdcf4886f6742bdc2b4dea146d b/npm/.npm/_cacache/content-v2/sha1/d9/33/ceb9205d82bdcf4886f6742bdc2b4dea146d new file mode 100644 index 0000000..ffbf994 Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha1/d9/33/ceb9205d82bdcf4886f6742bdc2b4dea146d differ diff --git a/npm/.npm/_cacache/content-v2/sha1/df/01/0aa1287e164bbda6f9723b0a96a1ec4187a1 b/npm/.npm/_cacache/content-v2/sha1/df/01/0aa1287e164bbda6f9723b0a96a1ec4187a1 new file mode 100644 index 0000000..3ee4d96 Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha1/df/01/0aa1287e164bbda6f9723b0a96a1ec4187a1 differ diff --git a/npm/.npm/_cacache/content-v2/sha1/e7/aa/8301917ef621b35d8a39f348dcdd1db7e33e b/npm/.npm/_cacache/content-v2/sha1/e7/aa/8301917ef621b35d8a39f348dcdd1db7e33e new file mode 100644 index 0000000..067c291 Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha1/e7/aa/8301917ef621b35d8a39f348dcdd1db7e33e differ diff --git a/npm/.npm/_cacache/content-v2/sha1/e8/fb/f374dc556ff8947a10dcb0572d633f2cfa10 b/npm/.npm/_cacache/content-v2/sha1/e8/fb/f374dc556ff8947a10dcb0572d633f2cfa10 new file mode 100644 index 0000000..ffba9a9 Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha1/e8/fb/f374dc556ff8947a10dcb0572d633f2cfa10 differ diff --git a/npm/.npm/_cacache/content-v2/sha1/ec/6a/61ae56480c0c3cb241c95618e20892f9672a b/npm/.npm/_cacache/content-v2/sha1/ec/6a/61ae56480c0c3cb241c95618e20892f9672a new file mode 100644 index 0000000..3042980 Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha1/ec/6a/61ae56480c0c3cb241c95618e20892f9672a differ diff --git a/npm/.npm/_cacache/content-v2/sha1/ed/14/1a6ac043a849ea588498e7dca8b15330e90c b/npm/.npm/_cacache/content-v2/sha1/ed/14/1a6ac043a849ea588498e7dca8b15330e90c new file mode 100644 index 0000000..1f81a35 Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha1/ed/14/1a6ac043a849ea588498e7dca8b15330e90c differ diff --git a/npm/.npm/_cacache/content-v2/sha1/f4/80/f40434ef80741f8469099f8dea18f55a4dc9 b/npm/.npm/_cacache/content-v2/sha1/f4/80/f40434ef80741f8469099f8dea18f55a4dc9 new file mode 100644 index 0000000..5063e7d Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha1/f4/80/f40434ef80741f8469099f8dea18f55a4dc9 differ diff --git a/npm/.npm/_cacache/content-v2/sha1/f5/ff/aa5ecd29cb31c0474bca7d756b6bb29e3f28 b/npm/.npm/_cacache/content-v2/sha1/f5/ff/aa5ecd29cb31c0474bca7d756b6bb29e3f28 new file mode 100644 index 0000000..b92ec9d Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha1/f5/ff/aa5ecd29cb31c0474bca7d756b6bb29e3f28 differ diff --git a/npm/.npm/_cacache/content-v2/sha1/f6/53/4d15148269b20352e7bee26f501f9a191290 b/npm/.npm/_cacache/content-v2/sha1/f6/53/4d15148269b20352e7bee26f501f9a191290 new file mode 100644 index 0000000..8b51d06 Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha1/f6/53/4d15148269b20352e7bee26f501f9a191290 differ diff --git a/npm/.npm/_cacache/content-v2/sha512/06/99/22d8e556b0a8c444cd3caad2d31889c5b32b2da51ae58c7c1f48630207b4201f89c424a2d88a32f8c78e7eb8ca17b00de8853f7e57fea3e0872f80dfa7f3 b/npm/.npm/_cacache/content-v2/sha512/06/99/22d8e556b0a8c444cd3caad2d31889c5b32b2da51ae58c7c1f48630207b4201f89c424a2d88a32f8c78e7eb8ca17b00de8853f7e57fea3e0872f80dfa7f3 new file mode 100644 index 0000000..56419bb --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/06/99/22d8e556b0a8c444cd3caad2d31889c5b32b2da51ae58c7c1f48630207b4201f89c424a2d88a32f8c78e7eb8ca17b00de8853f7e57fea3e0872f80dfa7f3 @@ -0,0 +1 @@ +{"versions":{"1.0.0":{"name":"semver","version":"1.0.0","bin":{"semver":"./bin/semver"},"directories":{"bin":"./bin"},"dist":{"shasum":"11f18a0c08ed21c988fc2b0257f1951969816615","tarball":"http://registry.npmjs.org/semver/-/semver-1.0.0.tgz"},"engines":{"node":"*"}},"1.0.1":{"name":"semver","version":"1.0.1","bin":{"semver":"./bin/semver"},"directories":{"bin":"./bin"},"dist":{"shasum":"93b90b9a3e00c7a143f2e49f6e2b32fd72237cdb","tarball":"http://registry.npmjs.org/semver/-/semver-1.0.1.tgz"},"engines":{"node":"*"}},"1.0.2":{"name":"semver","version":"1.0.2","bin":{"semver":"./bin/semver"},"directories":{"bin":"./bin"},"dist":{"shasum":"57e4e1460c0f1abc2c2c6273457abc04e309706c","tarball":"http://registry.npmjs.org/semver/-/semver-1.0.2.tgz"},"engines":{"node":"*"}},"1.0.3":{"name":"semver","version":"1.0.3","dependencies":{},"devDependencies":{},"bin":{"semver":"./bin/semver"},"directories":{},"dist":{"shasum":"453f40adadf8ce23ff4eb937972c6a007d52ef0d","tarball":"http://registry.npmjs.org/semver/-/semver-1.0.3.tgz"},"engines":{"node":"*"}},"1.0.4":{"name":"semver","version":"1.0.4","dependencies":{},"devDependencies":{"tap":"0.x"},"bin":{"semver":"./bin/semver"},"directories":{},"dist":{"shasum":"41c0da40706d0defe763998281fc616a2a5d1e46","tarball":"http://registry.npmjs.org/semver/-/semver-1.0.4.tgz"},"engines":{"node":"*"}},"1.0.5":{"name":"semver","version":"1.0.5","dependencies":{},"devDependencies":{"tap":"0.x"},"bin":{"semver":"./bin/semver"},"directories":{},"dist":{"shasum":"7abca9337d64408ec2d42ffd974858c04dca3bdb","tarball":"http://registry.npmjs.org/semver/-/semver-1.0.5.tgz"},"engines":{"node":"*"}},"1.0.6":{"name":"semver","version":"1.0.6","dependencies":{},"devDependencies":{"tap":"0.x"},"bin":{"semver":"./bin/semver"},"directories":{},"dist":{"shasum":"697b6bff4b3eca86f35dc037c9ab2f1eb7af1a9e","tarball":"http://registry.npmjs.org/semver/-/semver-1.0.6.tgz"},"engines":{"node":"*"}},"1.0.7":{"name":"semver","version":"1.0.7","dependencies":{},"devDependencies":{"tap":"0.x"},"bin":{"semver":"./bin/semver"},"directories":{},"dist":{"shasum":"668e127e81e81e0954d25a6d2c1cb20a1538b2e3","tarball":"http://registry.npmjs.org/semver/-/semver-1.0.7.tgz"},"engines":{"node":"*"}},"1.0.8":{"name":"semver","version":"1.0.8","dependencies":{},"devDependencies":{"tap":"0.x >=0.0.4"},"bin":{"semver":"./bin/semver"},"directories":{},"dist":{"shasum":"8a78a9bfad863a0660683c33c91f08b6cd2cfa98","tarball":"http://registry.npmjs.org/semver/-/semver-1.0.8.tgz"},"engines":{"node":"*"}},"1.0.9":{"name":"semver","version":"1.0.9","dependencies":{},"devDependencies":{"tap":"0.x >=0.0.4"},"bin":{"semver":"./bin/semver"},"directories":{},"dist":{"shasum":"d053046aea88e25b488ecbc0a8c9deda03db8a9c","tarball":"http://registry.npmjs.org/semver/-/semver-1.0.9.tgz"},"engines":{"node":"*"}},"1.0.10":{"name":"semver","version":"1.0.10","dependencies":{},"devDependencies":{"tap":"0.x >=0.0.4"},"bin":{"semver":"./bin/semver"},"directories":{},"dist":{"shasum":"cfa5a85d95888c75b4a9275bda7491568d8cfd20","tarball":"http://registry.npmjs.org/semver/-/semver-1.0.10.tgz"},"engines":{"node":"*"}},"1.0.11":{"name":"semver","version":"1.0.11","dependencies":{},"devDependencies":{"tap":"0.x >=0.0.4"},"bin":{"semver":"./bin/semver"},"directories":{},"dist":{"shasum":"1bd01c550d477cbf9a839b02269c4011ce147992","tarball":"http://registry.npmjs.org/semver/-/semver-1.0.11.tgz"},"engines":{"node":"*"}},"1.0.12":{"name":"semver","version":"1.0.12","dependencies":{},"devDependencies":{"tap":"0.x >=0.0.4"},"bin":{"semver":"./bin/semver"},"directories":{},"dist":{"shasum":"4686f056e5894a9cba708adeabc2c49dada90778","tarball":"http://registry.npmjs.org/semver/-/semver-1.0.12.tgz"},"engines":{"node":"*"}},"1.0.13":{"name":"semver","version":"1.0.13","dependencies":{},"devDependencies":{"tap":"0.x >=0.0.4"},"bin":{"semver":"./bin/semver"},"directories":{},"dist":{"shasum":"9512ce1392105e72a0b739b27f39e0242913d07e","tarball":"http://registry.npmjs.org/semver/-/semver-1.0.13.tgz"},"engines":{"node":"*"}},"1.0.14":{"name":"semver","version":"1.0.14","dependencies":{},"optionalDependencies":{},"devDependencies":{"tap":"0.x >=0.0.4"},"bin":{"semver":"./bin/semver"},"directories":{},"dist":{"shasum":"cac5e2d55a6fbf958cb220ae844045071c78f676","tarball":"http://registry.npmjs.org/semver/-/semver-1.0.14.tgz"},"engines":{"node":"*"}},"1.1.0":{"name":"semver","version":"1.1.0","devDependencies":{"tap":"0.x >=0.0.4"},"bin":{"semver":"./bin/semver"},"directories":{},"dist":{"shasum":"da9b9c837e31550a7c928622bc2381de7dd7a53e","tarball":"http://registry.npmjs.org/semver/-/semver-1.1.0.tgz"}},"1.1.1":{"name":"semver","version":"1.1.1","devDependencies":{"tap":"0.x >=0.0.4"},"bin":{"semver":"./bin/semver"},"directories":{},"dist":{"shasum":"de7faba203f7cbb59ac16da64198df0c6cebca30","tarball":"http://registry.npmjs.org/semver/-/semver-1.1.1.tgz"}},"1.1.2":{"name":"semver","version":"1.1.2","devDependencies":{"tap":"0.x >=0.0.4"},"bin":{"semver":"./bin/semver"},"directories":{},"dist":{"shasum":"f6c851dcb2776b0aa7af2294dadaf6ce20de897e","tarball":"http://registry.npmjs.org/semver/-/semver-1.1.2.tgz"}},"1.1.3":{"name":"semver","version":"1.1.3","devDependencies":{"tap":"0.x >=0.0.4"},"bin":{"semver":"./bin/semver"},"directories":{},"dist":{"shasum":"a0f06f2fb23b64ef9c0ff714fa079082e0532633","tarball":"http://registry.npmjs.org/semver/-/semver-1.1.3.tgz"}},"1.1.4":{"name":"semver","version":"1.1.4","devDependencies":{"tap":"0.x >=0.0.4"},"bin":{"semver":"./bin/semver"},"directories":{},"dist":{"shasum":"2e5a4e72bab03472cc97f72753b4508912ef5540","tarball":"http://registry.npmjs.org/semver/-/semver-1.1.4.tgz"}},"2.0.0-alpha":{"name":"semver","version":"2.0.0-alpha","devDependencies":{"tap":"0.x >=0.0.4"},"bin":{"semver":"./bin/semver"},"directories":{},"dist":{"shasum":"979de555a1bae1c781cc6b2907b576b59067706e","tarball":"http://registry.npmjs.org/semver/-/semver-2.0.0-alpha.tgz"}},"2.0.0-beta":{"name":"semver","version":"2.0.0-beta","devDependencies":{"tap":"0.x >=0.0.4","uglify-js":"~2.3.6"},"bin":{"semver":"./bin/semver"},"directories":{},"dist":{"shasum":"5c3585c4eaa97879cc07de06aa6e75a44f5b249f","tarball":"http://registry.npmjs.org/semver/-/semver-2.0.0-beta.tgz"}},"2.0.1":{"name":"semver","version":"2.0.1","devDependencies":{"tap":"0.x >=0.0.4","uglify-js":"~2.3.6"},"bin":{"semver":"./bin/semver"},"directories":{},"dist":{"shasum":"92741b2bd09d9c53695cf116cd6de32cae925976","tarball":"http://registry.npmjs.org/semver/-/semver-2.0.1.tgz"}},"2.0.2":{"name":"semver","version":"2.0.2","devDependencies":{"tap":"0.x >=0.0.4","uglify-js":"~2.3.6"},"bin":{"semver":"./bin/semver"},"directories":{},"dist":{"shasum":"6697b743dafc38a9ae24d4f0183eb53f460b662a","tarball":"http://registry.npmjs.org/semver/-/semver-2.0.2.tgz"}},"2.0.3":{"name":"semver","version":"2.0.3","devDependencies":{"tap":"0.x >=0.0.4","uglify-js":"~2.3.6"},"bin":{"semver":"./bin/semver"},"directories":{},"dist":{"shasum":"1778ae3b7d5f5f457a48b164320bf6e29c8e8fe1","tarball":"http://registry.npmjs.org/semver/-/semver-2.0.3.tgz"}},"2.0.4":{"name":"semver","version":"2.0.4","devDependencies":{"tap":"0.x >=0.0.4","uglify-js":"~2.3.6"},"bin":{"semver":"./bin/semver"},"directories":{},"dist":{"shasum":"1bb8e25f9a445b55f2d2ea5bc06742790b6a5ba7","tarball":"http://registry.npmjs.org/semver/-/semver-2.0.4.tgz"}},"2.0.5":{"name":"semver","version":"2.0.5","devDependencies":{"tap":"0.x >=0.0.4","uglify-js":"~2.3.6"},"bin":{"semver":"./bin/semver"},"directories":{},"dist":{"shasum":"601aebc1dbeedac222bb7e7b8882454f0c2a24c7","tarball":"http://registry.npmjs.org/semver/-/semver-2.0.5.tgz"}},"2.0.6":{"name":"semver","version":"2.0.6","devDependencies":{"tap":"0.x >=0.0.4","uglify-js":"~2.3.6"},"bin":{"semver":"./bin/semver"},"directories":{},"dist":{"shasum":"3febe96c89813fc299d8e67cbcd685101e07335a","tarball":"http://registry.npmjs.org/semver/-/semver-2.0.6.tgz"}},"2.0.7":{"name":"semver","version":"2.0.7","devDependencies":{"tap":"0.x >=0.0.4","uglify-js":"~2.3.6"},"bin":{"semver":"./bin/semver"},"directories":{},"dist":{"shasum":"7815c1a7ef647604646ecdabc95b90dfeb39174f","tarball":"http://registry.npmjs.org/semver/-/semver-2.0.7.tgz"}},"2.0.8":{"name":"semver","version":"2.0.8","devDependencies":{"tap":"0.x >=0.0.4","uglify-js":"~2.3.6"},"bin":{"semver":"./bin/semver"},"directories":{},"dist":{"shasum":"f5c28ba4a6d56bd1d9dbe34aed288d69366a73c6","tarball":"http://registry.npmjs.org/semver/-/semver-2.0.8.tgz"}},"2.0.9":{"name":"semver","version":"2.0.9","devDependencies":{"tap":"0.x >=0.0.4","uglify-js":"~2.3.6"},"bin":{"semver":"./bin/semver"},"directories":{},"dist":{"shasum":"3c76b0f216bd62a95f5f03e9ec298da548632403","tarball":"http://registry.npmjs.org/semver/-/semver-2.0.9.tgz"}},"2.0.10":{"name":"semver","version":"2.0.10","devDependencies":{"tap":"0.x >=0.0.4","uglify-js":"~2.3.6"},"bin":{"semver":"./bin/semver"},"directories":{},"dist":{"shasum":"e3199263b1e9f1913dbc91efb4af559e8e4d3d31","tarball":"http://registry.npmjs.org/semver/-/semver-2.0.10.tgz"}},"2.0.11":{"name":"semver","version":"2.0.11","devDependencies":{"tap":"0.x >=0.0.4","uglify-js":"~2.3.6"},"bin":{"semver":"./bin/semver"},"directories":{},"dist":{"shasum":"f51f07d03fa5af79beb537fc067a7e141786cced","tarball":"http://registry.npmjs.org/semver/-/semver-2.0.11.tgz"}},"2.1.0":{"name":"semver","version":"2.1.0","devDependencies":{"tap":"0.x >=0.0.4","uglify-js":"~2.3.6"},"bin":{"semver":"./bin/semver"},"directories":{},"dist":{"shasum":"356294a90690b698774d62cf35d7c91f983e728a","tarball":"http://registry.npmjs.org/semver/-/semver-2.1.0.tgz"}},"2.2.0":{"name":"semver","version":"2.2.0","devDependencies":{"tap":"0.x >=0.0.4","uglify-js":"~2.3.6"},"bin":{"semver":"./bin/semver"},"directories":{},"dist":{"shasum":"290ec979d731b3dc6c08a15dbcffdeae420f4473","tarball":"http://registry.npmjs.org/semver/-/semver-2.2.0.tgz"}},"2.2.1":{"name":"semver","version":"2.2.1","devDependencies":{"tap":"0.x >=0.0.4","uglify-js":"~2.3.6"},"bin":{"semver":"./bin/semver"},"directories":{},"dist":{"shasum":"7941182b3ffcc580bff1c17942acdf7951c0d213","tarball":"http://registry.npmjs.org/semver/-/semver-2.2.1.tgz"}},"2.3.0":{"name":"semver","version":"2.3.0","devDependencies":{"tap":"0.x >=0.0.4","uglify-js":"~2.3.6"},"bin":{"semver":"./bin/semver"},"directories":{},"dist":{"shasum":"d31b2903ebe2a1806c05b8e763916a7183108a15","tarball":"http://registry.npmjs.org/semver/-/semver-2.3.0.tgz"}},"2.3.1":{"name":"semver","version":"2.3.1","devDependencies":{"tap":"0.x >=0.0.4","uglify-js":"~2.3.6"},"bin":{"semver":"./bin/semver"},"directories":{},"dist":{"shasum":"6f65ee7d1aed753cdf9dda70e5631a3fb42a5bee","tarball":"http://registry.npmjs.org/semver/-/semver-2.3.1.tgz"}},"2.3.2":{"name":"semver","version":"2.3.2","devDependencies":{"tap":"0.x >=0.0.4","uglify-js":"~2.3.6"},"bin":{"semver":"./bin/semver"},"directories":{},"dist":{"shasum":"b9848f25d6cf36333073ec9ef8856d42f1233e52","tarball":"http://registry.npmjs.org/semver/-/semver-2.3.2.tgz"}},"3.0.0":{"name":"semver","version":"3.0.0","devDependencies":{"tap":"0.x >=0.0.4","uglify-js":"~2.3.6"},"bin":{"semver":"./bin/semver"},"directories":{},"dist":{"shasum":"994f634b9535a36b07fde690faa811a9ed35b4f3","tarball":"http://registry.npmjs.org/semver/-/semver-3.0.0.tgz"}},"3.0.1":{"name":"semver","version":"3.0.1","devDependencies":{"tap":"0.x >=0.0.4","uglify-js":"~2.3.6"},"bin":{"semver":"./bin/semver"},"directories":{},"dist":{"shasum":"720ac012515a252f91fb0dd2e99a56a70d6cf078","tarball":"http://registry.npmjs.org/semver/-/semver-3.0.1.tgz"}},"4.0.0":{"name":"semver","version":"4.0.0","devDependencies":{"tap":"0.x >=0.0.4","uglify-js":"~2.3.6"},"bin":{"semver":"./bin/semver"},"directories":{},"dist":{"shasum":"7be868416a5e669923a8e3af8bafa5faf62a151a","tarball":"http://registry.npmjs.org/semver/-/semver-4.0.0.tgz"}},"4.0.2":{"name":"semver","version":"4.0.2","devDependencies":{"tap":"0.x >=0.0.4","uglify-js":"~2.3.6"},"bin":{"semver":"./bin/semver"},"directories":{},"dist":{"shasum":"13f7293ca7d42886123963ca0b947a03f83f60c3","tarball":"http://registry.npmjs.org/semver/-/semver-4.0.2.tgz"}},"4.0.3":{"name":"semver","version":"4.0.3","devDependencies":{"tap":"0.x >=0.0.4","uglify-js":"~2.3.6"},"bin":{"semver":"./bin/semver"},"directories":{},"dist":{"shasum":"f79c9ba670efccc029d98a5017def64b0ce1644e","tarball":"http://registry.npmjs.org/semver/-/semver-4.0.3.tgz"}},"4.1.0":{"name":"semver","version":"4.1.0","devDependencies":{"tap":"0.x >=0.0.4","uglify-js":"~2.3.6"},"bin":{"semver":"./bin/semver"},"directories":{},"dist":{"shasum":"bc80a9ff68532814362cc3cfda3c7b75ed9c321c","tarball":"http://registry.npmjs.org/semver/-/semver-4.1.0.tgz"}},"4.1.1":{"name":"semver","version":"4.1.1","devDependencies":{"tap":"0.x >=0.0.4","uglify-js":"~2.3.6"},"bin":{"semver":"./bin/semver"},"directories":{},"dist":{"shasum":"8d63e2e90df847e626d48ae068cd65786b0ed3d3","tarball":"http://registry.npmjs.org/semver/-/semver-4.1.1.tgz"}},"4.2.0":{"name":"semver","version":"4.2.0","devDependencies":{"tap":"0.x >=0.0.4","uglify-js":"~2.3.6"},"bin":{"semver":"./bin/semver"},"directories":{},"dist":{"shasum":"a571fd4adbe974fe32bd9cb4c5e249606f498423","tarball":"http://registry.npmjs.org/semver/-/semver-4.2.0.tgz"}},"4.2.1":{"name":"semver","version":"4.2.1","devDependencies":{"tap":"0.x >=0.0.4","uglify-js":"~2.3.6"},"bin":{"semver":"./bin/semver"},"directories":{},"dist":{"shasum":"70828f545f40f49ffab91fef09c3cd3257937142","tarball":"http://registry.npmjs.org/semver/-/semver-4.2.1.tgz"}},"4.2.2":{"name":"semver","version":"4.2.2","devDependencies":{"tap":"0.x >=0.0.4","uglify-js":"~2.3.6"},"bin":{"semver":"./bin/semver"},"directories":{},"dist":{"shasum":"a6aa6ac6a63c0dc7aff7ea48d5455ae2b93a3062","tarball":"http://registry.npmjs.org/semver/-/semver-4.2.2.tgz"}},"4.3.0":{"name":"semver","version":"4.3.0","devDependencies":{"tap":"0.x >=0.0.4","uglify-js":"~2.3.6"},"bin":{"semver":"./bin/semver"},"directories":{},"dist":{"shasum":"3757ceed2b91afefe0ba2c3b6bda49c688b0257a","tarball":"http://registry.npmjs.org/semver/-/semver-4.3.0.tgz"}},"4.3.1":{"name":"semver","version":"4.3.1","devDependencies":{"tap":"0.x >=0.0.4","uglify-js":"~2.3.6"},"bin":{"semver":"./bin/semver"},"directories":{},"dist":{"shasum":"beb0129575b95f76110b29af08d370fd9eeb34bf","tarball":"http://registry.npmjs.org/semver/-/semver-4.3.1.tgz"}},"4.3.2":{"name":"semver","version":"4.3.2","devDependencies":{"tap":"0.x >=0.0.4","uglify-js":"~2.3.6"},"bin":{"semver":"./bin/semver"},"directories":{},"dist":{"shasum":"c7a07158a80bedd052355b770d82d6640f803be7","tarball":"http://registry.npmjs.org/semver/-/semver-4.3.2.tgz"}},"4.3.3":{"name":"semver","version":"4.3.3","devDependencies":{"tap":"0.x >=0.0.4","uglify-js":"~2.3.6"},"bin":{"semver":"./bin/semver"},"directories":{},"dist":{"shasum":"15466b61220bc371cd8f0e666a9f785329ea8228","tarball":"http://registry.npmjs.org/semver/-/semver-4.3.3.tgz"}},"4.3.4":{"name":"semver","version":"4.3.4","devDependencies":{"tap":"0.x >=0.0.4","uglify-js":"~2.3.6"},"bin":{"semver":"./bin/semver"},"directories":{},"dist":{"shasum":"bf43a1aae304de040e12a13f84200ca7aeab7589","tarball":"http://registry.npmjs.org/semver/-/semver-4.3.4.tgz"}},"4.3.5":{"name":"semver","version":"4.3.5","devDependencies":{"tap":"^1.2.0","uglify-js":"~2.3.6"},"bin":{"semver":"./bin/semver"},"directories":{},"dist":{"shasum":"c20865a8bb8e1b6ac958a390c8e835538fa0c707","tarball":"http://registry.npmjs.org/semver/-/semver-4.3.5.tgz"}},"4.3.6":{"name":"semver","version":"4.3.6","devDependencies":{"tap":"^1.2.0","uglify-js":"~2.3.6"},"bin":{"semver":"./bin/semver"},"directories":{},"dist":{"shasum":"300bc6e0e86374f7ba61068b5b1ecd57fc6532da","tarball":"http://registry.npmjs.org/semver/-/semver-4.3.6.tgz"}},"5.0.0":{"name":"semver","version":"5.0.0","devDependencies":{"tap":"^1.2.0","uglify-js":"~2.3.6"},"bin":{"semver":"./bin/semver"},"directories":{},"dist":{"shasum":"f96fd0f81ea71ec131aceac26725cef2a255dc01","tarball":"http://registry.npmjs.org/semver/-/semver-5.0.0.tgz"}},"5.0.1":{"name":"semver","version":"5.0.1","devDependencies":{"tap":"^1.2.0","uglify-js":"~2.3.6"},"bin":{"semver":"./bin/semver"},"directories":{},"dist":{"shasum":"9fb3f4004f900d83c47968fe42f7583e05832cc9","tarball":"http://registry.npmjs.org/semver/-/semver-5.0.1.tgz"}},"5.0.2":{"name":"semver","version":"5.0.2","devDependencies":{"tap":"^1.2.0","uglify-js":"~2.3.6"},"bin":{"semver":"./bin/semver"},"directories":{},"dist":{"shasum":"19041bd286619344116c60bcc011a3a4cb4a14ef","tarball":"http://registry.npmjs.org/semver/-/semver-5.0.2.tgz"}},"5.0.3":{"name":"semver","version":"5.0.3","devDependencies":{"tap":"^1.3.4"},"bin":{"semver":"./bin/semver"},"directories":{},"dist":{"shasum":"77466de589cd5d3c95f138aa78bc569a3cb5d27a","tarball":"http://registry.npmjs.org/semver/-/semver-5.0.3.tgz"}},"5.1.0":{"name":"semver","version":"5.1.0","devDependencies":{"tap":"^2.0.0"},"bin":{"semver":"./bin/semver"},"directories":{},"dist":{"shasum":"85f2cf8550465c4df000cf7d86f6b054106ab9e5","tarball":"http://registry.npmjs.org/semver/-/semver-5.1.0.tgz"}},"5.1.1":{"name":"semver","version":"5.1.1","devDependencies":{"tap":"^2.0.0"},"bin":{"semver":"./bin/semver"},"directories":{},"dist":{"shasum":"a3292a373e6f3e0798da0b20641b9a9c5bc47e19","tarball":"http://registry.npmjs.org/semver/-/semver-5.1.1.tgz"}},"5.2.0":{"name":"semver","version":"5.2.0","devDependencies":{"tap":"^2.0.0"},"bin":{"semver":"./bin/semver"},"directories":{},"dist":{"shasum":"281995b80c1448209415ddbc4cf50c269cef55c5","tarball":"http://registry.npmjs.org/semver/-/semver-5.2.0.tgz"}},"5.3.0":{"name":"semver","version":"5.3.0","devDependencies":{"tap":"^2.0.0"},"bin":{"semver":"./bin/semver"},"directories":{},"dist":{"shasum":"9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f","tarball":"http://registry.npmjs.org/semver/-/semver-5.3.0.tgz"}},"5.4.0":{"name":"semver","version":"5.4.0","devDependencies":{"tap":"^10.7.0"},"bin":{"semver":"./bin/semver"},"directories":{},"dist":{"integrity":"sha512-TBZ1MavfXEY92Ohe3vwQbXSSIUy7HRHuSayvV84i9/+BHzHxYZxtnam2FEdIMvkri17UmUD2iz5KzWI4MQpEyQ==","shasum":"4b753f9bc8dc4c0b30cf460124ed17ae65444ae8","tarball":"https://registry.npmjs.org/semver/-/semver-5.4.0.tgz"}},"5.4.1":{"name":"semver","version":"5.4.1","devDependencies":{"tap":"^10.7.0"},"bin":{"semver":"./bin/semver"},"directories":{},"dist":{"integrity":"sha512-WfG/X9+oATh81XtllIo/I8gOiY9EXRdv1cQdyykeXK17YcUW3EXUAi2To4pcH6nZtJPr7ZOpM5OMyWJZm+8Rsg==","shasum":"e059c09d8571f0540823733433505d3a2f00b18e","tarball":"https://registry.npmjs.org/semver/-/semver-5.4.1.tgz"}},"5.5.0":{"name":"semver","version":"5.5.0","devDependencies":{"tap":"^10.7.0"},"bin":{"semver":"./bin/semver"},"directories":{},"dist":{"integrity":"sha512-4SJ3dm0WAwWy/NVeioZh5AntkdJoWKxHxcmyP622fOkgHa4z3R0TdBJICINyaSDE6uNwVc8gZr+ZinwZAH4xIA==","shasum":"dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab","tarball":"https://registry.npmjs.org/semver/-/semver-5.5.0.tgz"}},"5.5.1":{"name":"semver","version":"5.5.1","devDependencies":{"tap":"^12.0.1"},"bin":{"semver":"./bin/semver"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-PqpAxfrEhlSUWge8dwIp4tZnQ25DIOthpiaHNIthsjEFQD6EvqUKUDM7L8O2rShkFccYo1VjJR0coWfNkCubRw==","shasum":"7dfdd8814bdb7cabc7be0fb1d734cfb66c940477","tarball":"https://registry.npmjs.org/semver/-/semver-5.5.1.tgz","fileCount":6,"unpackedSize":57384,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbdzGjCRA9TVsSAnZWagAA9dkP/13iStlVBKH4BSsU2Lo6\n8ZPM5pOX5+ZLmF6cEsn16YEm+NVYXvYmw5Hy0Mcosgf4Wi6GZzKYup+t00D3\nkd5A9X5E0e+4l/bxmF6i/3qkRcxxXSUHjpLLw3wOc71H840Zdfmh0aT7+Foy\noVFgvAgJMueVsA0fgyks3q1SpssM3Gk1rsUDCLjIfLVViqfrdi952pI+Qwe0\n3hju+N7P8evmA5w1VwogT9uexMAQ61mlsibZMDUyPs9Bky6gMKcY/m3H9MNO\nlw5EoiQLid3Ca+AExrP+011dSAs+XE1tVo4pkzsSeAVMMe/xiH+FtFthetsv\nymDbzoVFCjSjlFJIeo4Ct3zS0Tsr3tJZmgx6BAGf/RGpMQUEUeuPUDLEHQ33\n3VQSBz9ANIrTfRmPep1iJHUN9odtfOAGEuZsFYdeP1m8Vf/5zcML5BAeqtVk\n/HVT76llGP44utxK6MeasJYJctHPT/E0ITf/ILhliATQgr6v/+UTVITtAJo1\nCnTc8GCzUdtxw+lqxDnQf9PJ2sHvfPwTshHiPnAFORRhWnFJCJV59j62yR4G\n4Miam6QnGcqe8BkgZ8w4yRC9L/hc3eezPrMcecTWaqxDNO67vE8GywxL5Xh5\nE0NqHNoabkwH2G0Gr+BgKeyi6tyBeoKIdrBFyRe8CnnELs2rcjs39b1TQ1je\nC/sz\r\n=OhAx\r\n-----END PGP SIGNATURE-----\r\n"}},"5.6.0":{"name":"semver","version":"5.6.0","devDependencies":{"tap":"^12.0.1"},"bin":{"semver":"./bin/semver"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-RS9R6R35NYgQn++fkDWaOmqGoj4Ek9gGs+DPxNUZKuwE183xjJroKvyo1IzVFeXvUrvmALy6FWD5xrdJT25gMg==","shasum":"7e74256fbaa49c75aa7c7a205cc22799cac80004","tarball":"https://registry.npmjs.org/semver/-/semver-5.6.0.tgz","fileCount":6,"unpackedSize":59721,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbvpC6CRA9TVsSAnZWagAApbMP/3bk+fOFL1FLwS924EDm\nrwE9nR9Knp9+J6Gme1UH1HvMkNm92/ZSvrbMaW5Uzw3RhRJOEjdtDpQFpJ/N\n7SFdFf4RmrZKThr4EuVVi/Iuy2MwIpZ3UUbrDYWV1kTwfMeW6mDWqcNUOOIk\nHLW9icN0oyvbB4LfPwhr3SFDKlTi6TlyZseQHFGndSbw2/mS9wdLHaa6bz0x\nB85SW5PVPw7Y83RdzdPz59vrNmVytY0pEsepLR7IQkdyB+YU7cIxR7gLbzkY\nUV5F6FyvvOcrfEIiRZgprhH5a2RnYZ8Id/3/ca08yN1Q65SsjztKq4Bh7+JI\nO/pjNjRWKLYsRom9l4q4iAFhdy6fFHlqkUkM1Yy5jFmQNjSk5RnpuRrDUUXV\ntFbWGkEccYrXby5WOq1JZxJ/MfiUpxg22qlO3AcTHbKddhFZvYh/cQFIohV4\nbmV7TeWoodJ7KaF6MVhnwda1AWTBZTNSqrCmsmDSZZwNb6NQhVSrbkLXDbgu\ntN4RhRPjOE1mFYjuGJuN32oSdceOCT9x61Lr0uucw8JHZldVIe0o63Qb6/4t\ntl+wzR3JfbdkB1vGVo8oXm8KoghMhFwmpD+RKg4hPxJhxQTXRy4OUsSkU5+l\nRRK9JHTyBGXbpcyeVLtPAGYdsl42sYG9+lSqGI3at/HKDcJrnzp3KJ4fXcUB\nlkPD\r\n=LpzA\r\n-----END PGP SIGNATURE-----\r\n"}}},"name":"semver","dist-tags":{"alpha":"2.0.0-alpha","beta":"2.0.0-beta","latest":"5.6.0","v4-rc":"4.0.0"},"modified":"2018-10-10T23:52:35.279Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/06/e1/a543f3c9ecaee1719940e57367d92e054f9155269de0fabf7f9e49bc658b5ab9d7423a8bfbc92aa0d716b0a0970201112f4d2db399238a92f645e4e8210f b/npm/.npm/_cacache/content-v2/sha512/06/e1/a543f3c9ecaee1719940e57367d92e054f9155269de0fabf7f9e49bc658b5ab9d7423a8bfbc92aa0d716b0a0970201112f4d2db399238a92f645e4e8210f new file mode 100644 index 0000000..25ac058 --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/06/e1/a543f3c9ecaee1719940e57367d92e054f9155269de0fabf7f9e49bc658b5ab9d7423a8bfbc92aa0d716b0a0970201112f4d2db399238a92f645e4e8210f @@ -0,0 +1 @@ +{"versions":{"0.7.0":{"name":"esprima","version":"0.7.0","dependencies":{},"devDependencies":{},"bin":{"esparse":"./bin/esparse.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"73e71270859ab68eb3f806ea5244536670ba7e72","tarball":"https://registry.npmjs.org/esprima/-/esprima-0.7.0.tgz"},"engines":{"node":">=0.4.0"}},"0.8.0":{"name":"esprima","version":"0.8.0","dependencies":{},"devDependencies":{},"bin":{"esparse":"./bin/esparse.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"c3a4d9eb2bab14f050b443296f9acbc83952c9d6","tarball":"https://registry.npmjs.org/esprima/-/esprima-0.8.0.tgz"},"engines":{"node":">=0.4.0"}},"0.8.1":{"name":"esprima","version":"0.8.1","dependencies":{},"devDependencies":{},"bin":{"esparse":"./bin/esparse.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"248b67200011337474e42ddd2afe2c7c7a62756d","tarball":"https://registry.npmjs.org/esprima/-/esprima-0.8.1.tgz"},"engines":{"node":">=0.4.0"}},"0.8.2":{"name":"esprima","version":"0.8.2","dependencies":{},"devDependencies":{},"bin":{"esparse":"./bin/esparse.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"069a33aaacbb45a60b8071b4cfc6fb6929ebcb50","tarball":"https://registry.npmjs.org/esprima/-/esprima-0.8.2.tgz"},"engines":{"node":">=0.4.0"}},"0.9.0":{"name":"esprima","version":"0.9.0","dependencies":{},"devDependencies":{},"bin":{"esparse":"./bin/esparse.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"9b35d752fb826a53f38661bfc1106723ba583ddf","tarball":"https://registry.npmjs.org/esprima/-/esprima-0.9.0.tgz"},"engines":{"node":">=0.4.0"}},"0.9.1":{"name":"esprima","version":"0.9.1","dependencies":{},"devDependencies":{},"bin":{"esparse":"./bin/esparse.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"7f728fda0ee40873d00511eb9267566e6ccc8ba0","tarball":"https://registry.npmjs.org/esprima/-/esprima-0.9.1.tgz"},"engines":{"node":">=0.4.0"}},"0.9.2":{"name":"esprima","version":"0.9.2","dependencies":{},"devDependencies":{},"bin":{"esparse":"./bin/esparse.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"8c6829495376d53580b97b3b6ba88af58e919d17","tarball":"https://registry.npmjs.org/esprima/-/esprima-0.9.2.tgz"},"engines":{"node":">=0.4.0"}},"0.9.3":{"name":"esprima","version":"0.9.3","dependencies":{},"devDependencies":{},"bin":{"esparse":"./bin/esparse.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"e8bba20b413e91a2175441303599a5123b146eb7","tarball":"https://registry.npmjs.org/esprima/-/esprima-0.9.3.tgz"},"engines":{"node":">=0.4.0"}},"0.9.4":{"name":"esprima","version":"0.9.4","dependencies":{},"devDependencies":{},"bin":{"esparse":"./bin/esparse.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"49a0581c2de45aa17d44792540267bddc7574ee1","tarball":"https://registry.npmjs.org/esprima/-/esprima-0.9.4.tgz"},"engines":{"node":">=0.4.0"}},"0.9.5":{"name":"esprima","version":"0.9.5","dependencies":{},"devDependencies":{},"bin":{"esparse":"./bin/esparse.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"3403826505ab2496c9b3eb50131b4ff124972ea3","tarball":"https://registry.npmjs.org/esprima/-/esprima-0.9.5.tgz"},"engines":{"node":">=0.4.0"}},"0.9.6":{"name":"esprima","version":"0.9.6","dependencies":{},"devDependencies":{},"bin":{"esparse":"./bin/esparse.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"e4198843636cf1755781621890712b838cf055cf","tarball":"https://registry.npmjs.org/esprima/-/esprima-0.9.6.tgz"},"engines":{"node":">=0.4.0"}},"0.9.7":{"name":"esprima","version":"0.9.7","dependencies":{},"devDependencies":{},"bin":{"esparse":"./bin/esparse.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"7876246c98b3ce491981386805566beac4e9a45b","tarball":"https://registry.npmjs.org/esprima/-/esprima-0.9.7.tgz"},"engines":{"node":">=0.4.0"}},"0.9.8":{"name":"esprima","version":"0.9.8","dependencies":{},"devDependencies":{},"bin":{"esparse":"./bin/esparse.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"b800f30036c24335afde886dc5dc89eaba3fc136","tarball":"https://registry.npmjs.org/esprima/-/esprima-0.9.8.tgz"},"engines":{"node":">=0.4.0"}},"0.9.9":{"name":"esprima","version":"0.9.9","dependencies":{},"optionalDependencies":{},"devDependencies":{},"bin":{"esparse":"./bin/esparse.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"1b90925c975d632d7282939c3bb9c3a423c30490","tarball":"https://registry.npmjs.org/esprima/-/esprima-0.9.9.tgz"},"engines":{"node":">=0.4.0"}},"1.0.0":{"name":"esprima","version":"1.0.0","bin":{"esparse":"./bin/esparse.js","esvalidate":"./bin/esvalidate.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"5f0571b94a87d5199b1f302a7e27eb185e466850","tarball":"https://registry.npmjs.org/esprima/-/esprima-1.0.0.tgz"},"engines":{"node":">=0.4.0"}},"1.0.1":{"name":"esprima","version":"1.0.1","bin":{"esparse":"./bin/esparse.js","esvalidate":"./bin/esvalidate.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"2c8a85447f8bfbe8d9f401da808809cb5397ad0a","tarball":"https://registry.npmjs.org/esprima/-/esprima-1.0.1.tgz"},"engines":{"node":">=0.4.0"}},"1.0.2":{"name":"esprima","version":"1.0.2","bin":{"esparse":"./bin/esparse.js","esvalidate":"./bin/esvalidate.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"8039bf9ceac4d9d2c15f623264fb292b5502ceaf","tarball":"https://registry.npmjs.org/esprima/-/esprima-1.0.2.tgz"},"engines":{"node":">=0.4.0"}},"1.0.3":{"name":"esprima","version":"1.0.3","bin":{"esparse":"./bin/esparse.js","esvalidate":"./bin/esvalidate.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"7bdb544f95526d424808654d3b8fbe928650c0fe","tarball":"https://registry.npmjs.org/esprima/-/esprima-1.0.3.tgz"},"engines":{"node":">=0.4.0"}},"1.0.4":{"name":"esprima","version":"1.0.4","bin":{"esparse":"./bin/esparse.js","esvalidate":"./bin/esvalidate.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"9f557e08fc3b4d26ece9dd34f8fbf476b62585ad","tarball":"https://registry.npmjs.org/esprima/-/esprima-1.0.4.tgz"},"engines":{"node":">=0.4.0"}},"1.1.0":{"name":"esprima","version":"1.1.0","devDependencies":{"jslint":"~0.1.9","eslint":"~0.4.3","jscs":"~1.2.4","istanbul":"~0.1.27","complexity-report":"~0.6.1","regenerate":"~0.5.4","unicode-6.3.0":"~0.1.0","json-diff":"~0.3.1","optimist":"~0.6.0"},"bin":{"esparse":"./bin/esparse.js","esvalidate":"./bin/esvalidate.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"3efe4810741491bb1c8f67df526d6b2e0dd57790","tarball":"https://registry.npmjs.org/esprima/-/esprima-1.1.0.tgz"},"engines":{"node":">=0.4.0"}},"1.1.1":{"name":"esprima","version":"1.1.1","devDependencies":{"jslint":"~0.1.9","eslint":"~0.4.3","jscs":"~1.2.4","istanbul":"~0.1.27","complexity-report":"~0.6.1","regenerate":"~0.5.4","unicode-6.3.0":"~0.1.0","json-diff":"~0.3.1","optimist":"~0.6.0"},"bin":{"esparse":"./bin/esparse.js","esvalidate":"./bin/esvalidate.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"5b6f1547f4d102e670e140c509be6771d6aeb549","tarball":"https://registry.npmjs.org/esprima/-/esprima-1.1.1.tgz"},"engines":{"node":">=0.4.0"}},"1.2.0":{"name":"esprima","version":"1.2.0","devDependencies":{"jslint":"~0.1.9","eslint":"~0.4.3","jscs":"~1.2.4","istanbul":"~0.2.6","complexity-report":"~0.6.1","regenerate":"~0.5.4","unicode-6.3.0":"~0.1.0","json-diff":"~0.3.1","optimist":"~0.6.0"},"bin":{"esparse":"./bin/esparse.js","esvalidate":"./bin/esvalidate.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"5091beca413223988a7111f418da9aa8a3492abd","tarball":"https://registry.npmjs.org/esprima/-/esprima-1.2.0.tgz"},"engines":{"node":">=0.4.0"}},"1.2.1":{"name":"esprima","version":"1.2.1","devDependencies":{"jslint":"~0.1.9","eslint":"~0.4.3","jscs":"~1.2.4","istanbul":"~0.2.6","complexity-report":"~0.6.1","regenerate":"~0.5.4","unicode-6.3.0":"~0.1.0","json-diff":"~0.3.1","optimist":"~0.6.0"},"bin":{"esparse":"./bin/esparse.js","esvalidate":"./bin/esvalidate.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"201bdf4dfa8595f72f43936c7634674b54f4734f","tarball":"https://registry.npmjs.org/esprima/-/esprima-1.2.1.tgz"},"engines":{"node":">=0.4.0"}},"1.2.2":{"name":"esprima","version":"1.2.2","devDependencies":{"jslint":"~0.1.9","eslint":"~0.4.3","jscs":"~1.2.4","istanbul":"~0.2.6","complexity-report":"~0.6.1","regenerate":"~0.5.4","unicode-6.3.0":"~0.1.0","json-diff":"~0.3.1","optimist":"~0.6.0"},"bin":{"esparse":"./bin/esparse.js","esvalidate":"./bin/esvalidate.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"76a0fd66fcfe154fd292667dc264019750b1657b","tarball":"https://registry.npmjs.org/esprima/-/esprima-1.2.2.tgz"},"engines":{"node":">=0.4.0"}},"1.2.3":{"name":"esprima","version":"1.2.3","devDependencies":{"jslint":"~0.1.9","eslint":"~0.4.3","jscs":"~1.2.4","istanbul":"~0.2.6","complexity-report":"~0.6.1","regenerate":"~0.5.4","unicode-6.3.0":"~0.1.0","json-diff":"~0.3.1","optimist":"~0.6.0"},"bin":{"esparse":"./bin/esparse.js","esvalidate":"./bin/esvalidate.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"173c9c28d0ec7753afb977b6b21b3017367aac1b","tarball":"https://registry.npmjs.org/esprima/-/esprima-1.2.3.tgz"},"engines":{"node":">=0.4.0"}},"1.2.4":{"name":"esprima","version":"1.2.4","devDependencies":{"jslint":"~0.1.9","eslint":"~0.4.3","jscs":"~1.2.4","istanbul":"~0.2.6","complexity-report":"~0.6.1","regenerate":"~0.5.4","unicode-6.3.0":"~0.1.0","json-diff":"~0.3.1","optimist":"~0.6.0"},"bin":{"esparse":"./bin/esparse.js","esvalidate":"./bin/esvalidate.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"835a0cfc8a628a7117da654bfaced8408a91dba7","tarball":"https://registry.npmjs.org/esprima/-/esprima-1.2.4.tgz"},"engines":{"node":">=0.4.0"}},"2.0.0":{"name":"esprima","version":"2.0.0","devDependencies":{"eslint":"~0.12.0","jscs":"~1.10.0","istanbul":"~0.2.6","escomplex-js":"1.0.0","complexity-report":"~1.1.1","regenerate":"~0.6.2","unicode-7.0.0":"~0.1.5","json-diff":"~0.3.1","optimist":"~0.6.0"},"bin":{"esparse":"./bin/esparse.js","esvalidate":"./bin/esvalidate.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"609ac5c2667eae5433b41eb9ecece2331b41498f","tarball":"https://registry.npmjs.org/esprima/-/esprima-2.0.0.tgz"},"engines":{"node":">=0.4.0"}},"1.2.5":{"name":"esprima","version":"1.2.5","devDependencies":{"jslint":"~0.1.9","eslint":"~0.4.3","jscs":"~1.2.4","istanbul":"~0.2.6","complexity-report":"~0.6.1","regenerate":"~0.5.4","unicode-6.3.0":"~0.1.0","json-diff":"~0.3.1","optimist":"~0.6.0"},"bin":{"esparse":"./bin/esparse.js","esvalidate":"./bin/esvalidate.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"0993502feaf668138325756f30f9a51feeec11e9","tarball":"https://registry.npmjs.org/esprima/-/esprima-1.2.5.tgz"},"engines":{"node":">=0.4.0"}},"2.1.0":{"name":"esprima","version":"2.1.0","devDependencies":{"eslint":"~0.15.1","jscs":"~1.11.3","istanbul":"~0.3.7","escomplex-js":"1.2.0","complexity-report":"~1.4.0","regenerate":"~0.6.2","unicode-7.0.0":"~0.1.5","json-diff":"~0.3.1","optimist":"~0.6.0"},"bin":{"esparse":"./bin/esparse.js","esvalidate":"./bin/esvalidate.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"c1c9fb94975dfcc3fc71c60f074f3c5156a28ef5","tarball":"https://registry.npmjs.org/esprima/-/esprima-2.1.0.tgz"},"engines":{"node":">=0.4.0"}},"2.2.0":{"name":"esprima","version":"2.2.0","devDependencies":{"eslint":"~0.19.0","jscs":"~1.12.0","istanbul":"~0.3.7","escomplex-js":"1.2.0","complexity-report":"~1.4.0","regenerate":"~0.6.2","unicode-7.0.0":"~0.1.5","json-diff":"~0.3.1","optimist":"~0.6.0"},"bin":{"esparse":"./bin/esparse.js","esvalidate":"./bin/esvalidate.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"4292c1d68e4173d815fa2290dc7afc96d81fcd83","tarball":"https://registry.npmjs.org/esprima/-/esprima-2.2.0.tgz"},"engines":{"node":">=0.4.0"}},"2.3.0":{"name":"esprima","version":"2.3.0","devDependencies":{"eslint":"~0.23.0","jscs":"~1.13.1","istanbul":"~0.3.15","escomplex-js":"1.2.0","complexity-report":"~1.4.0","regenerate":"~0.6.2","unicode-7.0.0":"~0.1.5","json-diff":"~0.3.1","optimist":"~0.6.0"},"bin":{"esparse":"./bin/esparse.js","esvalidate":"./bin/esvalidate.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"d26debd7545fcf8916a80668236310e14da6b345","tarball":"https://registry.npmjs.org/esprima/-/esprima-2.3.0.tgz"},"engines":{"node":">=0.4.0"}},"2.4.0":{"name":"esprima","version":"2.4.0","devDependencies":{"eslint":"~0.23.0","jscs":"~1.13.1","istanbul":"~0.3.16","escomplex-js":"1.2.0","complexity-report":"~1.4.0","regenerate":"~0.6.2","unicode-7.0.0":"~0.1.5","json-diff":"~0.3.1","optimist":"~0.6.0","coveralls":"~2.11.2"},"bin":{"esparse":"./bin/esparse.js","esvalidate":"./bin/esvalidate.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"8f1852ea605d36f81e4b6ec831a53ecb4dc501c6","tarball":"https://registry.npmjs.org/esprima/-/esprima-2.4.0.tgz"},"engines":{"node":">=0.4.0"}},"2.4.1":{"name":"esprima","version":"2.4.1","devDependencies":{"eslint":"~0.23.0","jscs":"~1.13.1","istanbul":"~0.3.16","escomplex-js":"1.2.0","complexity-report":"~1.4.0","regenerate":"~0.6.2","unicode-7.0.0":"~0.1.5","json-diff":"~0.3.1","optimist":"~0.6.0","coveralls":"~2.11.2"},"bin":{"esparse":"./bin/esparse.js","esvalidate":"./bin/esvalidate.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"83059c751e9e9c41d228a41aaa1eef0ccce384ba","tarball":"https://registry.npmjs.org/esprima/-/esprima-2.4.1.tgz"},"engines":{"node":">=0.4.0"}},"2.5.0":{"name":"esprima","version":"2.5.0","devDependencies":{"coveralls":"~2.11.2","escomplex-js":"1.2.0","eslint":"~0.23.0","everything.js":"~1.0.3","glob":"^5.0.14","istanbul":"~0.3.16","jscs":"~2.0.0","json-diff":"~0.3.1","karma":"^0.13.3","karma-chrome-launcher":"^0.2.0","karma-mocha":"^0.2.0","lodash":"^3.10.0","mocha":"^2.2.5","node-tick-processor":"~0.0.2","regenerate":"~0.6.2","unicode-7.0.0":"~0.1.5"},"bin":{"esparse":"./bin/esparse.js","esvalidate":"./bin/esvalidate.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"f387a46fd344c1b1a39baf8c20bfb43b6d0058cc","tarball":"https://registry.npmjs.org/esprima/-/esprima-2.5.0.tgz"},"engines":{"node":">=0.10.0"}},"2.6.0":{"name":"esprima","version":"2.6.0","devDependencies":{"codecov.io":"~0.1.6","escomplex-js":"1.2.0","eslint":"~1.3.1","everything.js":"~1.0.3","glob":"^5.0.14","istanbul":"~0.3.19","jscs":"~2.1.1","json-diff":"~0.3.1","karma":"^0.13.3","karma-chrome-launcher":"^0.2.0","karma-detect-browsers":"^2.0.1","karma-firefox-launcher":"^0.1.6","karma-ie-launcher":"^0.2.0","karma-mocha":"^0.2.0","karma-safari-launcher":"^0.1.1","lodash":"^3.10.0","mocha":"^2.2.5","node-tick-processor":"~0.0.2","regenerate":"~0.6.2","temp":"~0.8.3","unicode-7.0.0":"~0.1.5"},"bin":{"esparse":"./bin/esparse.js","esvalidate":"./bin/esvalidate.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"eddae7cccd7c4d6f3058b7f3823718aaaef7527f","tarball":"https://registry.npmjs.org/esprima/-/esprima-2.6.0.tgz"},"engines":{"node":">=0.10.0"}},"2.7.0":{"name":"esprima","version":"2.7.0","devDependencies":{"codecov.io":"~0.1.6","escomplex-js":"1.2.0","eslint":"~1.7.2","everything.js":"~1.0.3","glob":"^5.0.15","istanbul":"~0.4.0","jscs":"~2.3.5","json-diff":"~0.3.1","karma":"^0.13.11","karma-chrome-launcher":"^0.2.1","karma-detect-browsers":"^2.0.2","karma-firefox-launcher":"^0.1.6","karma-ie-launcher":"^0.2.0","karma-mocha":"^0.2.0","karma-safari-launcher":"^0.1.1","karma-sauce-launcher":"^0.2.14","lodash":"^3.10.0","mocha":"^2.3.3","node-tick-processor":"~0.0.2","regenerate":"~1.2.1","temp":"~0.8.3","unicode-7.0.0":"~0.1.5"},"bin":{"esparse":"./bin/esparse.js","esvalidate":"./bin/esvalidate.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"74cfb0e4ae43f0b81541dcc30050f9dacb1f707e","tarball":"https://registry.npmjs.org/esprima/-/esprima-2.7.0.tgz"},"engines":{"node":">=0.10.0"}},"2.7.1":{"name":"esprima","version":"2.7.1","devDependencies":{"codecov.io":"~0.1.6","escomplex-js":"1.2.0","eslint":"~1.7.2","everything.js":"~1.0.3","glob":"^5.0.15","istanbul":"~0.4.0","jscs":"~2.3.5","json-diff":"~0.3.1","karma":"^0.13.11","karma-chrome-launcher":"^0.2.1","karma-detect-browsers":"^2.0.2","karma-firefox-launcher":"^0.1.6","karma-ie-launcher":"^0.2.0","karma-mocha":"^0.2.0","karma-safari-launcher":"^0.1.1","karma-sauce-launcher":"^0.2.14","lodash":"^3.10.0","mocha":"^2.3.3","node-tick-processor":"~0.0.2","regenerate":"~1.2.1","temp":"~0.8.3","unicode-7.0.0":"~0.1.5"},"bin":{"esparse":"./bin/esparse.js","esvalidate":"./bin/esvalidate.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"2ab7d1549edd06d14d69a6c1a1754aca02e9657e","tarball":"https://registry.npmjs.org/esprima/-/esprima-2.7.1.tgz"},"engines":{"node":">=0.10.0"}},"2.7.2":{"name":"esprima","version":"2.7.2","devDependencies":{"codecov.io":"~0.1.6","escomplex-js":"1.2.0","eslint":"~1.7.2","everything.js":"~1.0.3","glob":"^5.0.15","istanbul":"~0.4.0","jscs":"~2.3.5","json-diff":"~0.3.1","karma":"^0.13.11","karma-chrome-launcher":"^0.2.1","karma-detect-browsers":"^2.0.2","karma-firefox-launcher":"^0.1.6","karma-ie-launcher":"^0.2.0","karma-mocha":"^0.2.0","karma-safari-launcher":"^0.1.1","karma-sauce-launcher":"^0.2.14","lodash":"^3.10.0","mocha":"^2.3.3","node-tick-processor":"~0.0.2","regenerate":"~1.2.1","temp":"~0.8.3","unicode-7.0.0":"~0.1.5"},"bin":{"esparse":"./bin/esparse.js","esvalidate":"./bin/esvalidate.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"f43be543609984eae44c933ac63352a6af35f339","tarball":"https://registry.npmjs.org/esprima/-/esprima-2.7.2.tgz"},"engines":{"node":">=0.10.0"}},"2.7.3":{"name":"esprima","version":"2.7.3","devDependencies":{"codecov.io":"~0.1.6","escomplex-js":"1.2.0","eslint":"~1.7.2","everything.js":"~1.0.3","glob":"^5.0.15","istanbul":"~0.4.0","jscs":"~2.3.5","json-diff":"~0.3.1","karma":"^0.13.11","karma-chrome-launcher":"^0.2.1","karma-detect-browsers":"^2.0.2","karma-firefox-launcher":"^0.1.6","karma-ie-launcher":"^0.2.0","karma-mocha":"^0.2.0","karma-safari-launcher":"^0.1.1","karma-sauce-launcher":"^0.2.14","lodash":"^3.10.0","mocha":"^2.3.3","node-tick-processor":"~0.0.2","regenerate":"~1.2.1","temp":"~0.8.3","unicode-7.0.0":"~0.1.5"},"bin":{"esparse":"./bin/esparse.js","esvalidate":"./bin/esvalidate.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"96e3b70d5779f6ad49cd032673d1c312767ba581","tarball":"https://registry.npmjs.org/esprima/-/esprima-2.7.3.tgz"},"engines":{"node":">=0.10.0"}},"3.0.0":{"name":"esprima","version":"3.0.0","devDependencies":{"codecov.io":"~0.1.6","escomplex-js":"1.2.0","everything.js":"~1.0.3","glob":"~7.0.0","istanbul":"~0.4.0","jscs":"~3.0.3","json-diff":"~0.3.1","karma":"~1.2.0","karma-chrome-launcher":"~2.0.0","karma-detect-browsers":"~2.1.0","karma-firefox-launcher":"~1.0.0","karma-ie-launcher":"~1.0.0","karma-mocha":"~1.1.1","karma-safari-launcher":"~1.0.0","karma-sauce-launcher":"~1.0.0","lodash":"~3.10.1","mocha":"~3.0.2","node-tick-processor":"~0.0.2","regenerate":"~1.3.1","temp":"~0.8.3","tslint":"~3.15.1","typescript":"~1.8.10","typescript-formatter":"~1.2.0","unicode-8.0.0":"~0.7.0","webpack":"~1.13.2"},"bin":{"esparse":"./bin/esparse.js","esvalidate":"./bin/esvalidate.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"53cf247acda77313e551c3aa2e73342d3fb4f7d9","tarball":"https://registry.npmjs.org/esprima/-/esprima-3.0.0.tgz"},"engines":{"node":">=0.10.0"}},"3.1.0":{"name":"esprima","version":"3.1.0","devDependencies":{"codecov.io":"~0.1.6","escomplex-js":"1.2.0","everything.js":"~1.0.3","glob":"~7.1.0","istanbul":"~0.4.0","json-diff":"~0.3.1","karma":"~1.3.0","karma-chrome-launcher":"~2.0.0","karma-detect-browsers":"~2.1.0","karma-firefox-launcher":"~1.0.0","karma-ie-launcher":"~1.0.0","karma-mocha":"~1.2.0","karma-safari-launcher":"~1.0.0","karma-sauce-launcher":"~1.0.0","lodash":"~3.10.1","mocha":"~3.1.0","node-tick-processor":"~0.0.2","regenerate":"~1.3.1","temp":"~0.8.3","tslint":"~3.15.1","typescript":"~1.8.10","typescript-formatter":"~2.3.0","unicode-8.0.0":"~0.7.0","webpack":"~1.13.2"},"bin":{"esparse":"./bin/esparse.js","esvalidate":"./bin/esvalidate.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"ea6aec30615034b0e8097ab2297ed2d5c887e3c3","tarball":"https://registry.npmjs.org/esprima/-/esprima-3.1.0.tgz"},"engines":{"node":">=4"}},"3.1.1":{"name":"esprima","version":"3.1.1","devDependencies":{"codecov.io":"~0.1.6","escomplex-js":"1.2.0","everything.js":"~1.0.3","glob":"~7.1.0","istanbul":"~0.4.0","json-diff":"~0.3.1","karma":"~1.3.0","karma-chrome-launcher":"~2.0.0","karma-detect-browsers":"~2.1.0","karma-firefox-launcher":"~1.0.0","karma-ie-launcher":"~1.0.0","karma-mocha":"~1.2.0","karma-safari-launcher":"~1.0.0","karma-sauce-launcher":"~1.0.0","lodash":"~3.10.1","mocha":"~3.1.0","node-tick-processor":"~0.0.2","regenerate":"~1.3.1","temp":"~0.8.3","tslint":"~3.15.1","typescript":"~1.8.10","typescript-formatter":"~2.3.0","unicode-8.0.0":"~0.7.0","webpack":"~1.13.2"},"bin":{"esparse":"./bin/esparse.js","esvalidate":"./bin/esvalidate.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"02dbcc5ac3ece81070377f99158ec742ab5dda06","tarball":"https://registry.npmjs.org/esprima/-/esprima-3.1.1.tgz"},"engines":{"node":">=4"}},"3.1.2":{"name":"esprima","version":"3.1.2","devDependencies":{"codecov.io":"~0.1.6","escomplex-js":"1.2.0","everything.js":"~1.0.3","glob":"~7.1.0","istanbul":"~0.4.0","json-diff":"~0.3.1","karma":"~1.3.0","karma-chrome-launcher":"~2.0.0","karma-detect-browsers":"~2.1.0","karma-firefox-launcher":"~1.0.0","karma-ie-launcher":"~1.0.0","karma-mocha":"~1.2.0","karma-safari-launcher":"~1.0.0","karma-sauce-launcher":"~1.0.0","lodash":"~3.10.1","mocha":"~3.1.0","node-tick-processor":"~0.0.2","regenerate":"~1.3.1","temp":"~0.8.3","tslint":"~3.15.1","typescript":"~1.8.10","typescript-formatter":"~2.3.0","unicode-8.0.0":"~0.7.0","webpack":"~1.13.2"},"bin":{"esparse":"./bin/esparse.js","esvalidate":"./bin/esvalidate.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"954b5d19321ca436092fa90f06d6798531fe8184","tarball":"https://registry.npmjs.org/esprima/-/esprima-3.1.2.tgz"},"engines":{"node":">=4"}},"3.1.3":{"name":"esprima","version":"3.1.3","devDependencies":{"codecov.io":"~0.1.6","escomplex-js":"1.2.0","everything.js":"~1.0.3","glob":"~7.1.0","istanbul":"~0.4.0","json-diff":"~0.3.1","karma":"~1.3.0","karma-chrome-launcher":"~2.0.0","karma-detect-browsers":"~2.1.0","karma-firefox-launcher":"~1.0.0","karma-ie-launcher":"~1.0.0","karma-mocha":"~1.2.0","karma-safari-launcher":"~1.0.0","karma-sauce-launcher":"~1.0.0","lodash":"~3.10.1","mocha":"~3.1.0","node-tick-processor":"~0.0.2","regenerate":"~1.3.1","temp":"~0.8.3","tslint":"~3.15.1","typescript":"~1.8.10","typescript-formatter":"~2.3.0","unicode-8.0.0":"~0.7.0","webpack":"~1.13.2"},"bin":{"esparse":"./bin/esparse.js","esvalidate":"./bin/esvalidate.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"fdca51cee6133895e3c88d535ce49dbff62a4633","tarball":"https://registry.npmjs.org/esprima/-/esprima-3.1.3.tgz"},"engines":{"node":">=4"}},"4.0.0":{"name":"esprima","version":"4.0.0","devDependencies":{"codecov.io":"~0.1.6","escomplex-js":"1.2.0","everything.js":"~1.0.3","glob":"~7.1.0","istanbul":"~0.4.0","json-diff":"~0.3.1","karma":"~1.3.0","karma-chrome-launcher":"~2.0.0","karma-detect-browsers":"~2.2.3","karma-edge-launcher":"~0.2.0","karma-firefox-launcher":"~1.0.0","karma-ie-launcher":"~1.0.0","karma-mocha":"~1.3.0","karma-safari-launcher":"~1.0.0","karma-safaritechpreview-launcher":"~0.0.4","karma-sauce-launcher":"~1.1.0","lodash":"~3.10.1","mocha":"~3.2.0","node-tick-processor":"~0.0.2","regenerate":"~1.3.2","temp":"~0.8.3","tslint":"~5.1.0","typescript":"~2.3.2","typescript-formatter":"~5.1.3","unicode-8.0.0":"~0.7.0","webpack":"~1.14.0"},"bin":{"esparse":"./bin/esparse.js","esvalidate":"./bin/esvalidate.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-oftTcaMu/EGrEIu904mWteKIv8vMuOgGYo7EhVJJN00R/EED9DCua/xxHRdYnKtcECzVg7xOWhflvJMnqcFZjw==","shasum":"4499eddcd1110e0b218bacf2fa7f7f59f55ca804","tarball":"https://registry.npmjs.org/esprima/-/esprima-4.0.0.tgz"},"engines":{"node":">=4"}},"4.0.1":{"name":"esprima","version":"4.0.1","devDependencies":{"codecov.io":"~0.1.6","escomplex-js":"1.2.0","everything.js":"~1.0.3","glob":"~7.1.0","istanbul":"~0.4.0","json-diff":"~0.3.1","karma":"~1.3.0","karma-chrome-launcher":"~2.0.0","karma-detect-browsers":"~2.2.3","karma-edge-launcher":"~0.2.0","karma-firefox-launcher":"~1.0.0","karma-ie-launcher":"~1.0.0","karma-mocha":"~1.3.0","karma-safari-launcher":"~1.0.0","karma-safaritechpreview-launcher":"~0.0.4","karma-sauce-launcher":"~1.1.0","lodash":"~3.10.1","mocha":"~3.2.0","node-tick-processor":"~0.0.2","regenerate":"~1.3.2","temp":"~0.8.3","tslint":"~5.1.0","typescript":"~2.3.2","typescript-formatter":"~5.1.3","unicode-8.0.0":"~0.7.0","webpack":"~1.14.0"},"bin":{"esparse":"./bin/esparse.js","esvalidate":"./bin/esvalidate.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==","shasum":"13b04cdb3e6c5d19df91ab6987a8695619b0aa71","tarball":"https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz","fileCount":7,"unpackedSize":314361,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbSGUyCRA9TVsSAnZWagAAEWcP/2DbPmjJx0Z5u0OIDmkU\nw2GTt6y67+KtMSLt2ot5G1acmLJQbRq88pU95swl4rjoOELqJgamPzhaNYal\nA1wvGi3lwUNYqM2T5vY15Ye6K/+OkMAVxSQ6/L5qvg1U4atoj6uwapwIuoeK\nmvPPuYZX4FvaDTciVUPpFYqaRi5JWBImA0qfXlhhCnhdAd7DkeaLd+z18E7h\n9q0PPm2gtmDGJUDXwcJJzrhKSfQIw4ofcWwheaGJnlRzy2CEV2jUe90jdAH+\nv/jXFxCG1tWg4OZDSfqQfSx8uD7eSVeunsIz6AcNmh7dUHZI6S6AT47itPKm\nYeZoTwhPbJJxG7yZ6EVrItONOeuyghYekQpkDq3leEUl1FZbh3We7/yZSnbv\nrpHonlSaFLniH2RB1NBhP2qXe235bLXxcDt45PgBpqHnBJXoZLWKopH1+7z7\nyc2+DwxmhBm6WC9IjqknRi12JceLMJqThHUkXi2TST5PPUAwpiqgzCzJRvbt\nV/KOI8/Ex6QAbjkqLIfEHBVa7nrdGAagVmFoqV3ZUxtRsb0qAUAsS/XGOVwv\nrjR3iqJsZZmNXzt2Bz+bwwXIdBXnPsZFc8b+FCoRk+1RG/WYA4NDcB1PYaJn\nbMaOD+wr8Mym5PSAlg23ujBquISQlVILppKemTi9m091GUR+d/C1SYa1uAJX\nZk8+\r\n=ke5k\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=4"}}},"name":"esprima","dist-tags":{"latest":"4.0.1","1.1.0":"1.1.0"},"modified":"2018-07-13T08:39:18.785Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/0a/bd/4e9cf155b3f795969ac42c9b7f846ddd7053642a6f77c6db32453e84b72f011d81f7403e2b1426a1cf1d9d9cc68c0c0f2b8f839e49ddfbadcbc9c34ee025 b/npm/.npm/_cacache/content-v2/sha512/0a/bd/4e9cf155b3f795969ac42c9b7f846ddd7053642a6f77c6db32453e84b72f011d81f7403e2b1426a1cf1d9d9cc68c0c0f2b8f839e49ddfbadcbc9c34ee025 new file mode 100644 index 0000000..59b6046 --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/0a/bd/4e9cf155b3f795969ac42c9b7f846ddd7053642a6f77c6db32453e84b72f011d81f7403e2b1426a1cf1d9d9cc68c0c0f2b8f839e49ddfbadcbc9c34ee025 @@ -0,0 +1 @@ +{"versions":{"1.0.0":{"name":"graceful-fs","version":"1.0.0","dependencies":{},"devDependencies":{},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"ba8e39479ec46658d59eb305f878f8b0820fa8e5","tarball":"https://registry.npmjs.org/graceful-fs/-/graceful-fs-1.0.0.tgz"},"engines":{"node":"0.4 || 0.5"},"deprecated":"please upgrade to graceful-fs 4 for compatibility with current and future versions of Node.js"},"1.0.1":{"name":"graceful-fs","version":"1.0.1","dependencies":{},"devDependencies":{},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"63647ef7ca9bf0abc561cdb72d2a58704a11cc2f","tarball":"https://registry.npmjs.org/graceful-fs/-/graceful-fs-1.0.1.tgz"},"engines":{"node":"0.4 || 0.5"},"deprecated":"please upgrade to graceful-fs 4 for compatibility with current and future versions of Node.js"},"1.0.2":{"name":"graceful-fs","version":"1.0.2","dependencies":{},"devDependencies":{},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"79ac9f685c97c391d88a95e4cde5a1313c3807de","tarball":"https://registry.npmjs.org/graceful-fs/-/graceful-fs-1.0.2.tgz"},"engines":{"node":"0.4 || 0.5 || 0.6"},"deprecated":"please upgrade to graceful-fs 4 for compatibility with current and future versions of Node.js"},"1.1.0":{"name":"graceful-fs","version":"1.1.0","dependencies":{"fast-list":"1"},"devDependencies":{},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"c36f1d3b31d71b4cef3da303b784074f6d578037","tarball":"https://registry.npmjs.org/graceful-fs/-/graceful-fs-1.1.0.tgz"},"engines":{"node":"0.4 || 0.5 || 0.6"},"deprecated":"please upgrade to graceful-fs 4 for compatibility with current and future versions of Node.js"},"1.1.1":{"name":"graceful-fs","version":"1.1.1","dependencies":{"fast-list":"1"},"devDependencies":{},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"2f10989f7e9addfcea6592d95f52bb0c2d7e5bd2","tarball":"https://registry.npmjs.org/graceful-fs/-/graceful-fs-1.1.1.tgz"},"engines":{"node":"0.4 || 0.5 || 0.6"},"deprecated":"please upgrade to graceful-fs 4 for compatibility with current and future versions of Node.js"},"1.1.2":{"name":"graceful-fs","version":"1.1.2","dependencies":{"fast-list":"1"},"devDependencies":{},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"e82181f54de6620c67034e736fbc0d8fee8c1ffa","tarball":"https://registry.npmjs.org/graceful-fs/-/graceful-fs-1.1.2.tgz"},"engines":{"node":"0.4 || 0.5 || 0.6"},"deprecated":"please upgrade to graceful-fs 4 for compatibility with current and future versions of Node.js"},"1.1.3":{"name":"graceful-fs","version":"1.1.3","dependencies":{"fast-list":"1"},"optionalDependencies":{},"devDependencies":{},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"7c5264a5fd5888cf02545898e402502ff01150ae","tarball":"https://registry.npmjs.org/graceful-fs/-/graceful-fs-1.1.3.tgz"},"engines":{"node":">=0.4.0"},"deprecated":"please upgrade to graceful-fs 4 for compatibility with current and future versions of Node.js"},"1.1.4":{"name":"graceful-fs","version":"1.1.4","dependencies":{"fast-list":"1"},"optionalDependencies":{},"devDependencies":{},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"d53940783394758e59b24e10d355cbcf8c225103","tarball":"https://registry.npmjs.org/graceful-fs/-/graceful-fs-1.1.4.tgz"},"engines":{"node":">=0.4.0"},"deprecated":"please upgrade to graceful-fs 4 for compatibility with current and future versions of Node.js"},"1.1.5":{"name":"graceful-fs","version":"1.1.5","dependencies":{"fast-list":"1"},"optionalDependencies":{},"devDependencies":{},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"0e4692e2240d3951c135587ff7dc8c557186d037","tarball":"https://registry.npmjs.org/graceful-fs/-/graceful-fs-1.1.5.tgz"},"engines":{"node":">=0.4.0"},"deprecated":"please upgrade to graceful-fs 4 for compatibility with current and future versions of Node.js"},"1.1.6":{"name":"graceful-fs","version":"1.1.6","dependencies":{},"optionalDependencies":{},"devDependencies":{},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"cb87fa245e5669fb7b1da44ceef5920054052e24","tarball":"https://registry.npmjs.org/graceful-fs/-/graceful-fs-1.1.6.tgz"},"engines":{"node":">=0.4.0"},"deprecated":"please upgrade to graceful-fs 4 for compatibility with current and future versions of Node.js"},"1.1.7":{"name":"graceful-fs","version":"1.1.7","dependencies":{},"optionalDependencies":{},"devDependencies":{},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"e5cfd7904de546273c1c461ddd053e44e84bc0d7","tarball":"https://registry.npmjs.org/graceful-fs/-/graceful-fs-1.1.7.tgz"},"engines":{"node":">=0.4.0"},"deprecated":"please upgrade to graceful-fs 4 for compatibility with current and future versions of Node.js"},"1.1.8":{"name":"graceful-fs","version":"1.1.8","dependencies":{},"optionalDependencies":{},"devDependencies":{},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"7c9b7cd96f16b83230f61d522156306500914888","tarball":"https://registry.npmjs.org/graceful-fs/-/graceful-fs-1.1.8.tgz"},"engines":{"node":">=0.4.0"},"deprecated":"please upgrade to graceful-fs 4 for compatibility with current and future versions of Node.js"},"1.1.9":{"name":"graceful-fs","version":"1.1.9","devDependencies":{},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"2d8916e828b906a921d7e7de8fc2ba148f03b18a","tarball":"https://registry.npmjs.org/graceful-fs/-/graceful-fs-1.1.9.tgz"},"engines":{"node":">=0.4.0"},"deprecated":"please upgrade to graceful-fs 4 for compatibility with current and future versions of Node.js"},"1.1.10":{"name":"graceful-fs","version":"1.1.10","dependencies":{},"devDependencies":{},"_hasShrinkwrap":false,"directories":{"test":"test"},"dist":{"shasum":"388a63917e823bc695afd57c76d7f3ee3db54ad3","tarball":"https://registry.npmjs.org/graceful-fs/-/graceful-fs-1.1.10.tgz"},"engines":{"node":">=0.4.0"},"deprecated":"please upgrade to graceful-fs 4 for compatibility with current and future versions of Node.js"},"1.1.11":{"name":"graceful-fs","version":"1.1.11","dependencies":{},"devDependencies":{},"_hasShrinkwrap":false,"directories":{"test":"test"},"dist":{"shasum":"3a3de260cc4cc80ae13debf31b71f73c2c5eb5e5","tarball":"https://registry.npmjs.org/graceful-fs/-/graceful-fs-1.1.11.tgz"},"engines":{"node":">=0.4.0"},"deprecated":"please upgrade to graceful-fs 4 for compatibility with current and future versions of Node.js"},"1.1.12":{"name":"graceful-fs","version":"1.1.12","dependencies":{"mkdirp":"~0.3.4"},"devDependencies":{},"_hasShrinkwrap":false,"directories":{"test":"test"},"dist":{"shasum":"baff9d5d87b722ecef6615ea301a5cb9e2860038","tarball":"https://registry.npmjs.org/graceful-fs/-/graceful-fs-1.1.12.tgz"},"engines":{"node":">=0.4.0"},"deprecated":"please upgrade to graceful-fs 4 for compatibility with current and future versions of Node.js"},"1.1.13":{"name":"graceful-fs","version":"1.1.13","_hasShrinkwrap":false,"directories":{"test":"test"},"dist":{"shasum":"a91e1d8231dc083bdaa227983fbdf5010944ca14","tarball":"https://registry.npmjs.org/graceful-fs/-/graceful-fs-1.1.13.tgz"},"engines":{"node":">=0.4.0"},"deprecated":"please upgrade to graceful-fs 4 for compatibility with current and future versions of Node.js"},"1.1.14":{"name":"graceful-fs","version":"1.1.14","_hasShrinkwrap":false,"directories":{"test":"test"},"dist":{"shasum":"07078db5f6377f6321fceaaedf497de124dc9465","tarball":"https://registry.npmjs.org/graceful-fs/-/graceful-fs-1.1.14.tgz"},"engines":{"node":">=0.4.0"},"deprecated":"please upgrade to graceful-fs 4 for compatibility with current and future versions of Node.js"},"1.2.0":{"name":"graceful-fs","version":"1.2.0","_hasShrinkwrap":false,"directories":{"test":"test"},"dist":{"shasum":"fe2d82a295e30de4e1d1c04ec159e10061140704","tarball":"https://registry.npmjs.org/graceful-fs/-/graceful-fs-1.2.0.tgz"},"engines":{"node":">=0.4.0"},"deprecated":"please upgrade to graceful-fs 4 for compatibility with current and future versions of Node.js"},"1.2.1":{"name":"graceful-fs","version":"1.2.1","_hasShrinkwrap":false,"directories":{"test":"test"},"dist":{"shasum":"b35cc6e623576fc2a278cba12c00dda6a1758d2d","tarball":"https://registry.npmjs.org/graceful-fs/-/graceful-fs-1.2.1.tgz"},"engines":{"node":">=0.4.0"},"deprecated":"please upgrade to graceful-fs 4 for compatibility with current and future versions of Node.js"},"1.2.2":{"name":"graceful-fs","version":"1.2.2","_hasShrinkwrap":false,"directories":{"test":"test"},"dist":{"shasum":"2643e33eaed1c7277decd37377ff9fb394689cf5","tarball":"https://registry.npmjs.org/graceful-fs/-/graceful-fs-1.2.2.tgz"},"engines":{"node":">=0.4.0"},"deprecated":"please upgrade to graceful-fs 4 for compatibility with current and future versions of Node.js"},"1.2.3":{"name":"graceful-fs","version":"1.2.3","_hasShrinkwrap":false,"directories":{"test":"test"},"dist":{"shasum":"15a4806a57547cb2d2dbf27f42e89a8c3451b364","tarball":"https://registry.npmjs.org/graceful-fs/-/graceful-fs-1.2.3.tgz"},"engines":{"node":">=0.4.0"},"deprecated":"please upgrade to graceful-fs 4 for compatibility with current and future versions of Node.js"},"2.0.0":{"name":"graceful-fs","version":"2.0.0","_hasShrinkwrap":false,"directories":{"test":"test"},"dist":{"shasum":"c9a206f6f5f4b94e1046dfaaccfe9e12d0ab8cef","tarball":"https://registry.npmjs.org/graceful-fs/-/graceful-fs-2.0.0.tgz"},"engines":{"node":">=0.4.0"},"deprecated":"please upgrade to graceful-fs 4 for compatibility with current and future versions of Node.js"},"2.0.1":{"name":"graceful-fs","version":"2.0.1","_hasShrinkwrap":false,"directories":{"test":"test"},"dist":{"shasum":"7fd6e0a4837c35d0cc15330294d9584a3898cf84","tarball":"https://registry.npmjs.org/graceful-fs/-/graceful-fs-2.0.1.tgz"},"engines":{"node":">=0.4.0"},"deprecated":"please upgrade to graceful-fs 4 for compatibility with current and future versions of Node.js"},"2.0.2":{"name":"graceful-fs","version":"2.0.2","_hasShrinkwrap":false,"directories":{"test":"test"},"dist":{"shasum":"26806eaca4bff8fc5dbc935e696135792175c46f","tarball":"https://registry.npmjs.org/graceful-fs/-/graceful-fs-2.0.2.tgz"},"engines":{"node":">=0.4.0"},"deprecated":"please upgrade to graceful-fs 4 for compatibility with current and future versions of Node.js"},"2.0.3":{"name":"graceful-fs","version":"2.0.3","_hasShrinkwrap":false,"directories":{"test":"test"},"dist":{"shasum":"7cd2cdb228a4a3f36e95efa6cc142de7d1a136d0","tarball":"https://registry.npmjs.org/graceful-fs/-/graceful-fs-2.0.3.tgz"},"engines":{"node":">=0.4.0"},"deprecated":"please upgrade to graceful-fs 4 for compatibility with current and future versions of Node.js"},"3.0.0":{"name":"graceful-fs","version":"3.0.0","_hasShrinkwrap":false,"directories":{"test":"test"},"dist":{"shasum":"5792ffae0ed7e318060ebf9f6e7a6e6cf5139327","tarball":"https://registry.npmjs.org/graceful-fs/-/graceful-fs-3.0.0.tgz"},"engines":{"node":">=0.4.0"},"deprecated":"please upgrade to graceful-fs 4 for compatibility with current and future versions of Node.js"},"3.0.1":{"name":"graceful-fs","version":"3.0.1","_hasShrinkwrap":false,"directories":{"test":"test"},"dist":{"shasum":"93352b5b951b009ef541271204122b612e46edaf","tarball":"https://registry.npmjs.org/graceful-fs/-/graceful-fs-3.0.1.tgz"},"engines":{"node":">=0.4.0"},"deprecated":"please upgrade to graceful-fs 4 for compatibility with current and future versions of Node.js"},"3.0.2":{"name":"graceful-fs","version":"3.0.2","_hasShrinkwrap":false,"directories":{"test":"test"},"dist":{"shasum":"2cb5bf7f742bea8ad47c754caeee032b7e71a577","tarball":"https://registry.npmjs.org/graceful-fs/-/graceful-fs-3.0.2.tgz"},"engines":{"node":">=0.4.0"},"deprecated":"please upgrade to graceful-fs 4 for compatibility with current and future versions of Node.js"},"3.0.3":{"name":"graceful-fs","version":"3.0.3","_hasShrinkwrap":false,"directories":{"test":"test"},"dist":{"shasum":"277141085e739ae7d54361119a62797b08a1d8c0","tarball":"https://registry.npmjs.org/graceful-fs/-/graceful-fs-3.0.3.tgz"},"engines":{"node":">=0.4.0"},"deprecated":"please upgrade to graceful-fs 4 for compatibility with current and future versions of Node.js"},"3.0.4":{"name":"graceful-fs","version":"3.0.4","devDependencies":{"mkdirp":"^0.5.0","rimraf":"^2.2.8","tap":"^0.4.13"},"_hasShrinkwrap":false,"directories":{"test":"test"},"dist":{"shasum":"a0306d9b0940e0fc512d33b5df1014e88e0637a3","tarball":"https://registry.npmjs.org/graceful-fs/-/graceful-fs-3.0.4.tgz"},"engines":{"node":">=0.4.0"},"deprecated":"please upgrade to graceful-fs 4 for compatibility with current and future versions of Node.js"},"3.0.5":{"name":"graceful-fs","version":"3.0.5","devDependencies":{"mkdirp":"^0.5.0","rimraf":"^2.2.8","tap":"^0.4.13"},"_hasShrinkwrap":false,"directories":{"test":"test"},"dist":{"shasum":"4a880474bdeb716fe3278cf29792dec38dfac418","tarball":"https://registry.npmjs.org/graceful-fs/-/graceful-fs-3.0.5.tgz"},"engines":{"node":">=0.4.0"},"deprecated":"please upgrade to graceful-fs 4 for compatibility with current and future versions of Node.js"},"3.0.6":{"name":"graceful-fs","version":"3.0.6","devDependencies":{"mkdirp":"^0.5.0","rimraf":"^2.2.8","tap":"^0.4.13"},"_hasShrinkwrap":false,"directories":{"test":"test"},"dist":{"shasum":"dce3a18351cb94cdc82e688b2e3dd2842d1b09bb","tarball":"https://registry.npmjs.org/graceful-fs/-/graceful-fs-3.0.6.tgz"},"engines":{"node":">=0.4.0"},"deprecated":"please upgrade to graceful-fs 4 for compatibility with current and future versions of Node.js"},"3.0.7":{"name":"graceful-fs","version":"3.0.7","devDependencies":{"mkdirp":"^0.5.0","rimraf":"^2.2.8","tap":"^0.4.13"},"_hasShrinkwrap":false,"directories":{"test":"test"},"dist":{"shasum":"e935be4b3e57892d289dc3bef7be8c02779d2b54","tarball":"https://registry.npmjs.org/graceful-fs/-/graceful-fs-3.0.7.tgz"},"engines":{"node":">=0.4.0"},"deprecated":"please upgrade to graceful-fs 4 for compatibility with current and future versions of Node.js"},"3.0.8":{"name":"graceful-fs","version":"3.0.8","devDependencies":{"mkdirp":"^0.5.0","rimraf":"^2.2.8","tap":"^1.2.0"},"_hasShrinkwrap":false,"directories":{"test":"test"},"dist":{"shasum":"ce813e725fa82f7e6147d51c9a5ca68270551c22","tarball":"https://registry.npmjs.org/graceful-fs/-/graceful-fs-3.0.8.tgz"},"engines":{"node":">=0.4.0"},"deprecated":"please upgrade to graceful-fs 4 for compatibility with current and future versions of Node.js"},"4.1.0":{"name":"graceful-fs","version":"4.1.0","devDependencies":{"mkdirp":"^0.5.0","rimraf":"^2.2.8","tap":"^1.2.0"},"_hasShrinkwrap":false,"directories":{"test":"test"},"dist":{"shasum":"6be6119244f64d6417fe303cc36ab497b5756cc1","tarball":"https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.0.tgz"},"engines":{"node":">=0.4.0"}},"4.1.1":{"name":"graceful-fs","version":"4.1.1","devDependencies":{"mkdirp":"^0.5.0","rimraf":"^2.2.8","tap":"^1.2.0"},"_hasShrinkwrap":false,"directories":{"test":"test"},"dist":{"shasum":"db940cb46e47bd719314a876bace802ea3e90d3c","tarball":"https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.1.tgz"},"engines":{"node":">=0.4.0"}},"4.1.2":{"name":"graceful-fs","version":"4.1.2","devDependencies":{"mkdirp":"^0.5.0","rimraf":"^2.2.8","tap":"^1.2.0"},"_hasShrinkwrap":false,"directories":{"test":"test"},"dist":{"shasum":"fe2239b7574972e67e41f808823f9bfa4a991e37","tarball":"https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.2.tgz"},"engines":{"node":">=0.4.0"}},"4.1.3":{"name":"graceful-fs","version":"4.1.3","devDependencies":{"mkdirp":"^0.5.0","rimraf":"^2.2.8","tap":"^5.4.2"},"_hasShrinkwrap":false,"directories":{"test":"test"},"dist":{"shasum":"92033ce11113c41e2628d61fdfa40bc10dc0155c","tarball":"https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.3.tgz"},"engines":{"node":">=0.4.0"}},"4.1.4":{"name":"graceful-fs","version":"4.1.4","devDependencies":{"mkdirp":"^0.5.0","rimraf":"^2.2.8","tap":"^5.4.2"},"_hasShrinkwrap":false,"directories":{"test":"test"},"dist":{"shasum":"ef089d2880f033b011823ce5c8fae798da775dbd","tarball":"https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.4.tgz"},"engines":{"node":">=0.4.0"}},"4.1.5":{"name":"graceful-fs","version":"4.1.5","devDependencies":{"mkdirp":"^0.5.0","rimraf":"^2.2.8","tap":"^5.4.2"},"_hasShrinkwrap":false,"directories":{"test":"test"},"dist":{"shasum":"f4745e8caed5e0dd2ef21bb5e2d229a32e8093c0","tarball":"https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.5.tgz"},"engines":{"node":">=0.4.0"}},"3.0.9":{"name":"graceful-fs","version":"3.0.9","devDependencies":{"mkdirp":"^0.5.0","rimraf":"^2.2.8","tap":"^1.2.0"},"_hasShrinkwrap":false,"directories":{"test":"test"},"dist":{"shasum":"44e10a870a068e892485bace909520905b08ba24","tarball":"https://registry.npmjs.org/graceful-fs/-/graceful-fs-3.0.9.tgz"},"engines":{"node":">=0.4.0"},"deprecated":"please upgrade to graceful-fs 4 for compatibility with current and future versions of Node.js"},"4.1.6":{"name":"graceful-fs","version":"4.1.6","devDependencies":{"mkdirp":"^0.5.0","rimraf":"^2.2.8","tap":"^5.4.2"},"_hasShrinkwrap":false,"directories":{"test":"test"},"dist":{"shasum":"514c38772b31bee2e08bedc21a0aeb3abf54c19e","tarball":"https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.6.tgz"},"engines":{"node":">=0.4.0"}},"3.0.10":{"name":"graceful-fs","version":"3.0.10","dependencies":{"natives":"^1.0.1"},"devDependencies":{"mkdirp":"^0.5.0","rimraf":"^2.2.8","tap":"^1.2.0"},"_hasShrinkwrap":false,"directories":{"test":"test"},"dist":{"shasum":"5268b37746ff73a549708f3ce47fb54c84d5b0f0","tarball":"https://registry.npmjs.org/graceful-fs/-/graceful-fs-3.0.10.tgz"},"engines":{"node":">=0.4.0"},"deprecated":"please upgrade to graceful-fs 4 for compatibility with current and future versions of Node.js"},"3.0.11":{"name":"graceful-fs","version":"3.0.11","dependencies":{"natives":"^1.1.0"},"devDependencies":{"mkdirp":"^0.5.0","rimraf":"^2.2.8","tap":"^1.2.0"},"_hasShrinkwrap":false,"directories":{"test":"test"},"dist":{"shasum":"7613c778a1afea62f25c630a086d7f3acbbdd818","tarball":"https://registry.npmjs.org/graceful-fs/-/graceful-fs-3.0.11.tgz"},"engines":{"node":">=0.4.0"},"deprecated":"please upgrade to graceful-fs 4 for compatibility with current and future versions of Node.js"},"4.1.7":{"name":"graceful-fs","version":"4.1.7","devDependencies":{"mkdirp":"^0.5.0","rimraf":"^2.2.8","tap":"^5.4.2"},"_hasShrinkwrap":false,"directories":{"test":"test"},"dist":{"shasum":"f8b39fe797b022ae88024cff94a3613197141f32","tarball":"https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.7.tgz"},"engines":{"node":">=0.4.0"}},"4.1.8":{"name":"graceful-fs","version":"4.1.8","devDependencies":{"mkdirp":"^0.5.0","rimraf":"^2.2.8","tap":"^5.4.2"},"_hasShrinkwrap":false,"directories":{"test":"test"},"dist":{"shasum":"da3e11135eb2168bdd374532c4e2649751672890","tarball":"https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.8.tgz"},"engines":{"node":">=0.4.0"}},"4.1.9":{"name":"graceful-fs","version":"4.1.9","devDependencies":{"mkdirp":"^0.5.0","rimraf":"^2.2.8","tap":"^5.4.2"},"_hasShrinkwrap":false,"directories":{"test":"test"},"dist":{"shasum":"baacba37d19d11f9d146d3578bc99958c3787e29","tarball":"https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.9.tgz"},"engines":{"node":">=0.4.0"}},"4.1.10":{"name":"graceful-fs","version":"4.1.10","devDependencies":{"mkdirp":"^0.5.0","rimraf":"^2.2.8","tap":"^5.4.2"},"_hasShrinkwrap":false,"directories":{"test":"test"},"dist":{"shasum":"f2d720c22092f743228775c75e3612632501f131","tarball":"https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.10.tgz"},"engines":{"node":">=0.4.0"}},"4.1.11":{"name":"graceful-fs","version":"4.1.11","devDependencies":{"mkdirp":"^0.5.0","rimraf":"^2.2.8","tap":"^5.4.2"},"_hasShrinkwrap":false,"directories":{"test":"test"},"dist":{"shasum":"0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658","tarball":"https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz"},"engines":{"node":">=0.4.0"}}},"name":"graceful-fs","dist-tags":{"latest":"4.1.11","old":"3.0.11"},"modified":"2018-03-01T07:21:32.589Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/0b/61/241d7c17bcbb1baee7094d14b7c451efecc7ffcbd92598a0f13d313cc9ebc2a07e61f007baf58fbf94ff9a8695bdd5cae7ce03bbf1e94e93613a00f25f21 b/npm/.npm/_cacache/content-v2/sha512/0b/61/241d7c17bcbb1baee7094d14b7c451efecc7ffcbd92598a0f13d313cc9ebc2a07e61f007baf58fbf94ff9a8695bdd5cae7ce03bbf1e94e93613a00f25f21 new file mode 100644 index 0000000..945c9b4 --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/0b/61/241d7c17bcbb1baee7094d14b7c451efecc7ffcbd92598a0f13d313cc9ebc2a07e61f007baf58fbf94ff9a8695bdd5cae7ce03bbf1e94e93613a00f25f21 @@ -0,0 +1 @@ +. \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/0e/92/a6d948bfc4deff1d0282b69671a11581859f59d24aadca01bc5c280d43c6650e7c6e4265a18f9eba8fc7cde02bb7fc999b86c0e8edf70026ae2cf61dbb13 b/npm/.npm/_cacache/content-v2/sha512/0e/92/a6d948bfc4deff1d0282b69671a11581859f59d24aadca01bc5c280d43c6650e7c6e4265a18f9eba8fc7cde02bb7fc999b86c0e8edf70026ae2cf61dbb13 new file mode 100644 index 0000000..82921cf Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha512/0e/92/a6d948bfc4deff1d0282b69671a11581859f59d24aadca01bc5c280d43c6650e7c6e4265a18f9eba8fc7cde02bb7fc999b86c0e8edf70026ae2cf61dbb13 differ diff --git a/npm/.npm/_cacache/content-v2/sha512/0f/33/11616e0fd78674d1257d9710da88de77b5d45afbdd81802a619672d33c769685d3408965b401d73e504f98e9f2861b36613fc1d585f167289a2a43ef9edd b/npm/.npm/_cacache/content-v2/sha512/0f/33/11616e0fd78674d1257d9710da88de77b5d45afbdd81802a619672d33c769685d3408965b401d73e504f98e9f2861b36613fc1d585f167289a2a43ef9edd new file mode 100644 index 0000000..c305847 --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/0f/33/11616e0fd78674d1257d9710da88de77b5d45afbdd81802a619672d33c769685d3408965b401d73e504f98e9f2861b36613fc1d585f167289a2a43ef9edd @@ -0,0 +1 @@ +{"versions":{"0.1.0":{"name":"grunt-legacy-log","version":"0.1.0","dependencies":{"hooker":"~0.2.3","lodash":"~2.4.1","underscore.string":"~2.3.3","colors":"~0.6.2"},"devDependencies":{"grunt":"0.4.4","grunt-contrib-jshint":"~0.10.0","grunt-contrib-nodeunit":"~0.3.3","grunt-contrib-watch":"~0.6.1","hooker":"~0.2.3"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"6f92d742b2bf2179a35cf6891e214a3f019ece59","tarball":"https://registry.npmjs.org/grunt-legacy-log/-/grunt-legacy-log-0.1.0.tgz"},"engines":{"node":">= 0.8.0"}},"0.1.1":{"name":"grunt-legacy-log","version":"0.1.1","dependencies":{"hooker":"~0.2.3","lodash":"~2.4.1","underscore.string":"~2.3.3","colors":"~0.6.2"},"devDependencies":{"grunt":"0.4.4","grunt-contrib-jshint":"~0.10.0","grunt-contrib-nodeunit":"~0.3.3","grunt-contrib-watch":"~0.6.1","hooker":"~0.2.3"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"d41f1a6abc9b0b1256a2b5ff02f4c3298dfcd57a","tarball":"https://registry.npmjs.org/grunt-legacy-log/-/grunt-legacy-log-0.1.1.tgz"},"engines":{"node":">= 0.8.0"}},"0.1.2":{"name":"grunt-legacy-log","version":"0.1.2","dependencies":{"colors":"~0.6.2","grunt-legacy-log-utils":"^0.1.1","hooker":"~0.2.3","lodash":"~2.4.1","underscore.string":"~2.3.3"},"devDependencies":{"grunt":"0.4.4","grunt-contrib-jshint":"~0.10.0","grunt-contrib-nodeunit":"~0.3.3","grunt-contrib-watch":"~0.6.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"15ee03b61e262e1b36f13762d967923cd1ce515e","tarball":"https://registry.npmjs.org/grunt-legacy-log/-/grunt-legacy-log-0.1.2.tgz"},"engines":{"node":">= 0.8.0"}},"0.1.3":{"name":"grunt-legacy-log","version":"0.1.3","dependencies":{"colors":"~0.6.2","grunt-legacy-log-utils":"~0.1.1","hooker":"~0.2.3","lodash":"~2.4.1","underscore.string":"~2.3.3"},"devDependencies":{"grunt":"0.4.4","grunt-contrib-jshint":"~0.10.0","grunt-contrib-nodeunit":"~0.3.3","grunt-contrib-watch":"~0.6.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"ec29426e803021af59029f87d2f9cd7335a05531","tarball":"https://registry.npmjs.org/grunt-legacy-log/-/grunt-legacy-log-0.1.3.tgz"},"engines":{"node":">= 0.8.0"}},"1.0.0-rc1":{"name":"grunt-legacy-log","version":"1.0.0-rc1","dependencies":{"colors":"~1.1.2","grunt-legacy-log-utils":"~0.1.1","hooker":"~0.2.3","lodash":"~3.10.1","underscore.string":"~3.2.3"},"devDependencies":{"grunt":"0.4.4","grunt-contrib-jshint":"~0.10.0","grunt-contrib-nodeunit":"~0.3.3","grunt-contrib-watch":"~0.6.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"4b6ad9751f011127758a9000669a3a2de3ee6a63","tarball":"https://registry.npmjs.org/grunt-legacy-log/-/grunt-legacy-log-1.0.0-rc1.tgz"},"engines":{"node":">= 0.10.0"}},"1.0.0":{"name":"grunt-legacy-log","version":"1.0.0","dependencies":{"colors":"~1.1.2","grunt-legacy-log-utils":"~1.0.0","hooker":"~0.2.3","lodash":"~3.10.1","underscore.string":"~3.2.3"},"devDependencies":{"grunt":"^0.4.5","grunt-cli":"^1.2.0","grunt-contrib-jshint":"^1.0.0","grunt-contrib-nodeunit":"^1.0.0","grunt-contrib-watch":"^1.0.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"fb86f1809847bc07dc47843f9ecd6cacb62df2d5","tarball":"https://registry.npmjs.org/grunt-legacy-log/-/grunt-legacy-log-1.0.0.tgz"},"engines":{"node":">= 0.10.0"}},"1.0.1":{"name":"grunt-legacy-log","version":"1.0.1","dependencies":{"colors":"~1.1.2","grunt-legacy-log-utils":"~1.0.0","hooker":"~0.2.3","lodash":"~4.17.5","underscore.string":"~3.3.4"},"devDependencies":{"grunt":"^1.0.1","grunt-cli":"^1.2.0","grunt-contrib-jshint":"^1.0.0","grunt-contrib-nodeunit":"^1.0.0","grunt-contrib-watch":"^1.0.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-rwuyqNKlI0IPz0DvxzJjcEiQEBaBNVeb1LFoZKxSmHLETFUwhwUrqOsPIxURTKSwNZHZ4ht1YLBYmVU0YZAzHQ==","shasum":"c7731b2745f4732aa9950ee4d7ae63c553f68469","tarball":"https://registry.npmjs.org/grunt-legacy-log/-/grunt-legacy-log-1.0.1.tgz","fileCount":11,"unpackedSize":31947},"engines":{"node":">= 0.10.0"}},"1.0.2":{"name":"grunt-legacy-log","version":"1.0.2","dependencies":{"colors":"~1.1.2","grunt-legacy-log-utils":"~1.0.0","hooker":"~0.2.3","lodash":"~4.17.5"},"devDependencies":{"grunt":"^1.0.1","grunt-cli":"^1.2.0","grunt-contrib-jshint":"^1.0.0","grunt-contrib-nodeunit":"^1.0.0","grunt-contrib-watch":"^1.0.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-WdedTJ/6zCXnI/coaouzqvkI19uwqbcPkdsXiDRKJyB5rOUlOxnCnTVbpeUdEckKVir2uHF3rDBYppj2p6N3+g==","shasum":"7d7440426ace77b206e74f993e332e2a15a3904e","tarball":"https://registry.npmjs.org/grunt-legacy-log/-/grunt-legacy-log-1.0.2.tgz","fileCount":11,"unpackedSize":31774,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa4fzUCRA9TVsSAnZWagAAAQEP/RncXnKihiLcZWPYzp5O\ndYm5cGm/27nGlV3lDROGJqMRMQrJgB0i+p1RDhA0AJWUe549BhqullwtRCDd\nXy7VoLmIPiaENvRJUGYO9oGfGudWiXefI/IG+yW5vPli4QOQyFUpw2kp1whj\nbipQ3i8iUpa52qv3keti3yJne/agPMqMA8gc+pZLVoxzSg7gFG7ops85fEgL\nv7nu2IatWwXrSk4BlsSlDAnLl3SIz5YQzSMTXRzSTf/PubX+VjoXEzfHWeuA\nalkxlncqqMW5/I2jqeiAxiSelFOHny89yVhcaw4PwLUqMoGGoQqDehBB6I4W\nGHE+sQ2jp6DIC15bYjtVqu7Kx7j0k66eMNlV8q6x7T7mT990XggVBiIgp6TE\n/l+FpjNzCH+ApM5wPTxY9n+9YOBSa7KZvC9ANWcaP6BRyMcKAhBkHCr1nzE4\nUiEvCKYbxZ/FFdtmrz2YKE791MOp8mulm7y8tNMrlIHSxyhVm/cuCzI5fosM\nU0xYGAa8r3sFEq+mkPRTTlCoPYzYOH9EtYhOBOMd8y3U8+mdrI5ASFoMJats\nwJ294st4UaobEWs7QWSx8PO8pAgzNZn2ClRH/Z2bfv/72YQWoG3RkaGNKb7W\nGX2tXADFOI707r8hInENZLeMUpjO6/R8igRts+nxclAsxDCB7Ii6WIw9VYp3\nXh31\r\n=j7sj\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">= 0.10.0"}},"2.0.0":{"name":"grunt-legacy-log","version":"2.0.0","dependencies":{"colors":"~1.1.2","grunt-legacy-log-utils":"~2.0.0","hooker":"~0.2.3","lodash":"~4.17.5"},"devDependencies":{"grunt":"^1.0.1","grunt-cli":"^1.2.0","grunt-contrib-jshint":"^1.0.0","grunt-contrib-nodeunit":"^2.0.0","grunt-contrib-watch":"^1.0.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-1m3+5QvDYfR1ltr8hjiaiNjddxGdQWcH0rw1iKKiQnF0+xtgTazirSTGu68RchPyh1OBng1bBUjLmX8q9NpoCw==","shasum":"c8cd2c6c81a4465b9bbf2d874d963fef7a59ffb9","tarball":"https://registry.npmjs.org/grunt-legacy-log/-/grunt-legacy-log-2.0.0.tgz","fileCount":16,"unpackedSize":42162,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbAIg5CRA9TVsSAnZWagAAxJ4QAJJ6yBCSCWeAWNMahkOX\n6wMNh9qlLWFGMNw4hZfXGA4H2J9hP/kVp8J4N4SjGg54Eu8GybPxCrpXd+yM\nMWNBkT4moNsOKJLhDbi1hRgcrqaxCC1TYvEl3hyCQmu1rJXO5BWtcFTq4S7k\njVyWYLWcFk1gt6YqkEdudhsjiivHNLtz0rEe7UZwtdpDnFQpZLQqywBOMHrP\nGP5uu38Uc/8PUHc04yj9aWbVQXOvekT+LDb9hXFB/Qhs+vcpa/IjOuKVGe8H\nqZNPJIxI05qJIWyFo6dRMiSXzliDm72LuNWBbH8lm+7m0WjiSABmoAYTPjgH\nt6T65KWikEZb9oo52KyInhGUmLSjLjX/d2SP5d7tnBumBMowGsdvEvUEAgCr\ndkCPQtgnMza8lxGnWQIMdJAArwrtcWYUG0KsWEvXg/QrgQQMGPIDEL/2jNH7\ncdkXA+L0sMeEEFM4x4rV/Kg3vtWmL4DUKnWbT2bM2PHlYCmLmr5RREClvzna\nuR8+9pIXOXUG+hNbFE+5Vvw1uaMe23G83/lUNx9p8MwV14r62qPH+LhKOdc4\ngl+ddzKf9wJRYAjqfqcI89ngMqGEjDfHdokkzgvXsHI/27VNNvbZX7qL0dbx\nL3QXJhscbwm2PTNIxnN07RdLYKhyUEg7FwzV0XtBGvD+mDFB1Ro1g9tBbbN+\n0Iti\r\n=2DJR\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">= 0.10.0"}}},"name":"grunt-legacy-log","dist-tags":{"latest":"2.0.0","rc1":"1.0.0-rc1"},"modified":"2018-05-19T20:25:32.047Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/10/13/14811c7ef80eb57dc1e6eb3ad8a0fa775a5734430d053c78435b70bfab646125e59fd09a3ccaa34be2b30f3ea4244d13b278fcba8aeedc51a6021af03e53 b/npm/.npm/_cacache/content-v2/sha512/10/13/14811c7ef80eb57dc1e6eb3ad8a0fa775a5734430d053c78435b70bfab646125e59fd09a3ccaa34be2b30f3ea4244d13b278fcba8aeedc51a6021af03e53 new file mode 100644 index 0000000..ad09d83 --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/10/13/14811c7ef80eb57dc1e6eb3ad8a0fa775a5734430d053c78435b70bfab646125e59fd09a3ccaa34be2b30f3ea4244d13b278fcba8aeedc51a6021af03e53 @@ -0,0 +1 @@ +{"versions":{"1.0.0":{"name":"signal-exit","version":"1.0.0","devDependencies":{"chai":"^2.3.0","nyc":"^1.3.0","standard":"^3.9.0","tap":"^1.0.4"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"5d37a251b4b63701db283d8c22367e19541ca214","tarball":"https://registry.npmjs.org/signal-exit/-/signal-exit-1.0.0.tgz"}},"1.0.1":{"name":"signal-exit","version":"1.0.1","devDependencies":{"chai":"^2.3.0","nyc":"^1.3.0","standard":"^3.9.0","tap":"^1.0.4"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"71b2022c08ab28e19b44067ad855914be0d4579b","tarball":"https://registry.npmjs.org/signal-exit/-/signal-exit-1.0.1.tgz"}},"1.1.0":{"name":"signal-exit","version":"1.1.0","devDependencies":{"chai":"^2.3.0","nyc":"^1.3.0","standard":"^3.9.0","tap":"^1.0.4"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"3a52269649dafaa0a1c4150d8e11535e0b75c834","tarball":"https://registry.npmjs.org/signal-exit/-/signal-exit-1.1.0.tgz"}},"1.2.0":{"name":"signal-exit","version":"1.2.0","devDependencies":{"chai":"^2.3.0","nyc":"^2.0.0","standard":"^3.9.0","tap":"^1.0.4"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"5ece3781c39ed72a540b63236603b10031c2c9ba","tarball":"https://registry.npmjs.org/signal-exit/-/signal-exit-1.2.0.tgz"}},"1.3.0":{"name":"signal-exit","version":"1.3.0","devDependencies":{"chai":"^2.3.0","nyc":"^2.0.4","standard":"^3.9.0","tap":"^1.0.4"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"5e2da9bf25151c69e93092a4984cfead7eea91ae","tarball":"https://registry.npmjs.org/signal-exit/-/signal-exit-1.3.0.tgz"}},"1.3.1":{"name":"signal-exit","version":"1.3.1","devDependencies":{"chai":"^2.3.0","coveralls":"^2.11.2","nyc":"^2.0.5","standard":"^3.9.0","tap":"^1.0.4"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"ed2ad7a323526c3738acf2da801716ba7e9d4e63","tarball":"https://registry.npmjs.org/signal-exit/-/signal-exit-1.3.1.tgz"}},"2.1.0":{"name":"signal-exit","version":"2.1.0","devDependencies":{"chai":"^2.3.0","coveralls":"^2.11.2","nyc":"^2.0.6","standard":"^3.9.0","tap":"1.0.4"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"3307338a7dad7bf0e6952411e3163e6a3a5b171d","tarball":"https://registry.npmjs.org/signal-exit/-/signal-exit-2.1.0.tgz"}},"2.1.1":{"name":"signal-exit","version":"2.1.1","devDependencies":{"chai":"^2.3.0","coveralls":"^2.11.2","nyc":"^2.1.1","standard":"^3.9.0","tap":"1.0.4"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"c6c74947c23ccf2174f765d19f04d5e50a28ae4e","tarball":"https://registry.npmjs.org/signal-exit/-/signal-exit-2.1.1.tgz"}},"2.0.0":{"name":"signal-exit","version":"2.0.0","devDependencies":{"chai":"^2.3.0","coveralls":"^2.11.2","nyc":"^2.1.2","standard":"^3.9.0","tap":"1.0.4"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"ff49a7570adbe39f28ef0c879e1fa519627c7f0f","tarball":"https://registry.npmjs.org/signal-exit/-/signal-exit-2.0.0.tgz"}},"2.1.2":{"name":"signal-exit","version":"2.1.2","devDependencies":{"chai":"^2.3.0","coveralls":"^2.11.2","nyc":"^2.1.2","standard":"^3.9.0","tap":"1.0.4"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"375879b1f92ebc3b334480d038dc546a6d558564","tarball":"https://registry.npmjs.org/signal-exit/-/signal-exit-2.1.2.tgz"}},"3.0.0-candidate":{"name":"signal-exit","version":"3.0.0-candidate","devDependencies":{"chai":"^3.5.0","coveralls":"^2.11.2","nyc":"^6.4.4","standard":"^7.1.2","standard-version":"^2.3.0","tap":"^5.7.2"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"e5c316b0d56b82a23143460c237da09bb7db58ae","tarball":"https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.0-candidate.tgz"}},"3.0.0":{"name":"signal-exit","version":"3.0.0","devDependencies":{"chai":"^3.5.0","coveralls":"^2.11.2","nyc":"^6.4.4","standard":"^7.1.2","standard-version":"^2.3.0","tap":"^5.7.2"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"3c0543b65d7b4fbc60b6cd94593d9bf436739be8","tarball":"https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.0.tgz"}},"3.0.1":{"name":"signal-exit","version":"3.0.1","devDependencies":{"chai":"^3.5.0","coveralls":"^2.11.10","nyc":"^8.1.0","standard":"^7.1.2","standard-version":"^2.3.0","tap":"^7.1.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"5a4c884992b63a7acd9badb7894c3ee9cfccad81","tarball":"https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.1.tgz"}},"3.0.2":{"name":"signal-exit","version":"3.0.2","devDependencies":{"chai":"^3.5.0","coveralls":"^2.11.10","nyc":"^8.1.0","standard":"^7.1.2","standard-version":"^2.3.0","tap":"^8.0.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"b5fdc08f1287ea1178628e415e25132b73646c6d","tarball":"https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz"}}},"name":"signal-exit","dist-tags":{"latest":"3.0.2","next":"3.0.1"},"modified":"2017-11-20T10:57:37.358Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/17/43/a94864db441829d2f6af29d96861e5edd4e88b28bde315415def5199c3b4d239fd9d69c4e634b02fa109c8bca37634853918f8d448ab82f96a6399a36565 b/npm/.npm/_cacache/content-v2/sha512/17/43/a94864db441829d2f6af29d96861e5edd4e88b28bde315415def5199c3b4d239fd9d69c4e634b02fa109c8bca37634853918f8d448ab82f96a6399a36565 new file mode 100644 index 0000000..43673c9 --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/17/43/a94864db441829d2f6af29d96861e5edd4e88b28bde315415def5199c3b4d239fd9d69c4e634b02fa109c8bca37634853918f8d448ab82f96a6399a36565 @@ -0,0 +1 @@ +{"versions":{"0.0.0":{"name":"spdx-license-ids","version":"0.0.0","devDependencies":{"@shinnn/eslintrc":"^1.0.0","each-async":"^1.1.1","eslint":"^0.20.0","istanbul":"^0.3.13","istanbul-coveralls":"^1.0.2","require-bower-files":"^2.0.0","rm-rf":"^0.1.0","spdx-license-list":"^2.0.0","stringify-object":"^1.0.1","tape":"^4.0.0"},"directories":{},"dist":{"shasum":"c422eb8c828255e6d85993b7203d14f8a3c35c15","tarball":"http://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-0.0.0.tgz"}},"1.0.0":{"name":"spdx-license-ids","version":"1.0.0","devDependencies":{"@shinnn/eslintrc":"^1.0.0","each-async":"^1.1.1","eslint":"^0.20.0","istanbul":"^0.3.13","istanbul-coveralls":"^1.0.2","require-bower-files":"^2.0.0","rm-rf":"^0.1.0","spdx-license-list":"^2.0.0","stringify-object":"^1.0.1","tape":"^4.0.0"},"directories":{},"dist":{"shasum":"a966050150dec883ffce877431b361b36742a28d","tarball":"http://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-1.0.0.tgz"}},"1.0.1":{"name":"spdx-license-ids","version":"1.0.1","devDependencies":{"@shinnn/eslintrc":"^1.0.0","each-async":"^1.1.1","eslint":"^0.21.2","got":"^3.2.0","istanbul":"^0.3.14","istanbul-coveralls":"^1.0.2","require-bower-files":"^2.0.0","rm-rf":"^0.1.0","stringify-object":"^2.0.0","tape":"^4.0.0"},"directories":{},"dist":{"shasum":"8f7d365fbeb056f82d21d0c0e9c1ebbd676e6af4","tarball":"http://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-1.0.1.tgz"}},"1.0.2":{"name":"spdx-license-ids","version":"1.0.2","devDependencies":{"@shinnn/eslintrc":"^1.0.0","each-async":"^1.1.1","eslint":"^0.24.0","got":"^3.3.0","istanbul":"^0.3.17","istanbul-coveralls":"^1.0.3","require-bower-files":"^2.0.0","rimraf":"^2.4.1","stringify-object":"^2.2.0","tape":"^4.0.0"},"directories":{},"dist":{"shasum":"0674e9c9a230f980016b5b073a10aa165701677c","tarball":"http://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-1.0.2.tgz"}},"1.1.0":{"name":"spdx-license-ids","version":"1.1.0","devDependencies":{"@shinnn/eslintrc":"^1.0.0","each-async":"^1.1.1","eslint":"^0.24.0","got":"^3.3.0","istanbul":"^0.3.17","require-bower-files":"^2.0.0","rimraf":"^2.4.1","stringify-object":"^2.2.0","tape":"^4.0.0"},"directories":{},"dist":{"shasum":"28694acdf39fe27de45143fff81f21f6c66d44ac","tarball":"http://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-1.1.0.tgz"}},"1.2.0":{"name":"spdx-license-ids","version":"1.2.0","devDependencies":{"@shinnn/eslintrc":"^1.0.0","each-async":"^1.1.1","eslint":"^0.24.0","got":"^3.3.0","istanbul":"^0.3.17","require-bower-files":"^2.0.0","rimraf":"^2.4.1","stringify-object":"^2.2.0","tape":"^4.0.0"},"directories":{},"dist":{"shasum":"b549dd0f63dcb745a17e2ea3a07402e0e332d1e2","tarball":"http://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-1.2.0.tgz"}},"1.2.1":{"name":"spdx-license-ids","version":"1.2.1","devDependencies":{"@shinnn/eslint-config-node":"^2.0.0","chalk":"^1.1.3","eslint":"^2.7.0","get-spdx-license-ids":"^1.0.0","istanbul":"^0.4.3","loud-rejection":"^1.3.0","rimraf-promise":"^2.0.0","stringify-object":"^2.3.1","tap-spec":"^4.1.1","tape":"^4.5.1","write-file-atomically":"1.0.0"},"directories":{},"dist":{"shasum":"d07ea17a4d2fd9351f9d94e2ff9cec74180fe8f3","tarball":"http://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-1.2.1.tgz"}},"1.2.2":{"name":"spdx-license-ids","version":"1.2.2","devDependencies":{"@shinnn/eslint-config-node":"^3.0.0","chalk":"^1.1.3","eslint":"^3.1.1","get-spdx-license-ids":"^1.0.0","istanbul":"^0.4.4","loud-rejection":"^1.6.0","rimraf-promise":"^2.0.0","stringify-object":"^2.4.0","tap-spec":"^4.1.1","tape":"^4.6.0","write-file-atomically":"1.0.0"},"directories":{},"dist":{"shasum":"c9df7a3424594ade6bd11900d596696dc06bac57","tarball":"http://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz"}},"2.0.0":{"name":"spdx-license-ids","version":"2.0.0","devDependencies":{"@shinnn/eslint-config-node":"^3.0.0","chalk":"^1.1.3","eslint":"^3.10.2","get-spdx-license-ids":"^1.0.0","istanbul":"^0.4.5","loud-rejection":"^1.6.0","rmfr":"^1.0.1","stringify-object":"^3.0.0","tape":"^4.6.2","write-file-atomically":"1.0.0"},"directories":{},"dist":{"shasum":"0eb748e3c6fe7a80fa9f31eaab7d8f6c331b2173","tarball":"http://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-2.0.0.tgz"}},"2.0.1":{"name":"spdx-license-ids","version":"2.0.1","devDependencies":{"@shinnn/eslint-config-node":"^3.0.0","chalk":"^1.1.3","eslint":"^3.10.2","get-spdx-license-ids":"^1.0.0","istanbul":"^0.4.5","loud-rejection":"^1.6.0","rmfr":"^1.0.1","stringify-object":"^3.0.0","tape":"^4.6.2","write-file-atomically":"1.0.0"},"directories":{},"dist":{"shasum":"02017bcc3534ee4ffef6d58d20e7d3e9a1c3c8ec","tarball":"https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-2.0.1.tgz"}},"3.0.0-0":{"name":"spdx-license-ids","version":"3.0.0-0","devDependencies":{"@shinnn/eslint-config-node":"^4.0.2","chalk":"^2.0.1","eslint":"^4.3.0","get-spdx-license-ids":"^1.1.0","istanbul":"^0.4.5","loud-rejection":"^1.6.0","rmfr":"^1.0.3","stringify-object":"^3.2.0","tape":"^4.8.0","write-file-atomically":"^1.0.0"},"directories":{},"dist":{"integrity":"sha512-xUkSOYgYysHMp173PADzBKOnuAdv0YvETy2syBD+AOWZYfV6Zb7iuUOY0FOniOEkFEujoLA4gCxUTLtJ95oWvA==","shasum":"b7e47584254ade1cca1f69344fc37457f961f341","tarball":"https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.0-0.tgz"}},"3.0.0-1":{"name":"spdx-license-ids","version":"3.0.0-1","devDependencies":{"@shinnn/eslint-config-node":"^5.0.0","chalk":"^2.3.0","eslint":"^4.16.0","get-spdx-license-ids":"^2.1.0","loud-rejection":"^1.6.0","rmfr":"^2.0.0-3","tape":"^4.8.0","write-file-atomically":"^1.0.0"},"directories":{},"dist":{"integrity":"sha512-m20oQkls+fkRBkMhlL5CFhs1wXMTi7Th9Rox1U6YHXarDzVdnIXesOkKsLGuNmanePoM8WMwFZXR2zL1FXaW4g==","shasum":"500d099bdb7f6c58678e2869e9444d13fac528fa","tarball":"https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.0-1.tgz"}},"3.0.0":{"name":"spdx-license-ids","version":"3.0.0","devDependencies":{"@shinnn/eslint-config-node":"^5.0.0","chalk":"^2.3.0","eslint":"^4.16.0","get-spdx-license-ids":"^2.1.0","log-symbols":"^2.2.0","loud-rejection":"^1.6.0","rmfr":"^2.0.0-3","tape":"^4.8.0","write-file-atomically":"^1.0.0"},"directories":{},"dist":{"integrity":"sha512-2+EPwgbnmOIl8HjGBXXMd9NAu02vLjOO1nWw4kmeRDFyHn+M/ETfHxQUK0oXg8ctgVnl9t3rosNVsZ1jG61nDA==","shasum":"7a7cd28470cc6d3a1cfe6d66886f6bc430d3ac87","tarball":"https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.0.tgz"}},"3.0.1":{"name":"spdx-license-ids","version":"3.0.1","devDependencies":{"@shinnn/eslint-config-node":"^6.0.0","chalk":"^2.4.1","eslint":"^5.4.0","get-spdx-license-ids":"^2.1.0","rmfr":"^2.0.0","tape":"^4.9.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-TfOfPcYGBB5sDuPn3deByxPhmfegAhpDYKSOXZQN81Oyrrif8ZCodOLzK3AesELnCx03kikhyDwh0pfvvQvF8w==","shasum":"e2a303236cac54b04031fa7a5a79c7e701df852f","tarball":"https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.1.tgz","fileCount":4,"unpackedSize":7683,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbkpHQCRA9TVsSAnZWagAAJvEP/3eb8b6goswJseUBYOgJ\nSCvKBTkzBFwd63mrybKm7ZYJ3LlV8KmJJ+ZE3vYBikp6DxK2jjj2yemY5yF0\nsaxDQO6PfVRRevrVWThm1evLpKSe/VKW/nvTpj3fz+9bXE+UG4qHydgSU1Ec\nHX+iddO2XH7egizPwm+MnnmLO7dU0Q/7xT2utym345oW8J0duSeed3gt3akU\n72oUwmhjFttu8S9djhr27DQmQBakTSskqTWRhmrORO84fVKSpOThInqmxOZi\n5mNnt+QiqLStaE48MD1jOPDxDtGzwH+nZaMCTx9V9a1H6gI/OOBBfMO8y2Gm\nOKAtkPhWfkWovR/jHyK7xBmDqVobGnlnae+QdMrc7zOWYZeQ3bj1QUbxPRq/\n/xJmGfbuwL6zYBug5A/eW/hxKCI2l/AVRI4GaZtATAjxjHN7J/7OK/qDZHAK\n2YOq4Qw36LKIlp8mNiBmI1RtcdZ6eNDkFsOxTZMEfpiAfovQ7GaKfVxJb1q0\n4Gc1b8bIVoeyRy9jqBEAT4LgHVYFnu2RH1gDO50TURwrXTdGrwKBQccYDsy9\nMocTJ0rtjW4HYfhbRP+gGhoNQnSAV7ASFFVvFF4MRW1xoc+p2Sh5XGXmbRLv\n3eYZfFw1hM/KvmD15WR2PDHybzjpW6u2565HLQ6toPR7oQ4aNTnBax+uM+qW\n9Q57\r\n=vUug\r\n-----END PGP SIGNATURE-----\r\n"}}},"name":"spdx-license-ids","dist-tags":{"latest":"3.0.1","next":"3.0.0-1"},"modified":"2018-09-07T14:57:24.218Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/1b/58/21d50a5538940f1dc90077547c3e38352335e1202e4f9e99f40ff24aa64d068b5e77ef7c986b8aa17126f0b3dffa07cd26a808247d7506ac5bd40b4be710 b/npm/.npm/_cacache/content-v2/sha512/1b/58/21d50a5538940f1dc90077547c3e38352335e1202e4f9e99f40ff24aa64d068b5e77ef7c986b8aa17126f0b3dffa07cd26a808247d7506ac5bd40b4be710 new file mode 100644 index 0000000..b129332 --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/1b/58/21d50a5538940f1dc90077547c3e38352335e1202e4f9e99f40ff24aa64d068b5e77ef7c986b8aa17126f0b3dffa07cd26a808247d7506ac5bd40b4be710 @@ -0,0 +1 @@ +{"versions":{"0.9.2":{"name":"underscore.string","version":"0.9.2","dependencies":{"underscore":"1.1.4"},"devDependencies":{},"directories":{"lib":"./lib"},"dist":{"shasum":"023b07c749835d918119fb82d41cbf9a4bc42a94","tarball":"http://registry.npmjs.org/underscore.string/-/underscore.string-0.9.2.tgz"},"engines":{"node":"*"}},"1.0.0":{"name":"underscore.string","version":"1.0.0","dependencies":{"underscore":"1.1.4"},"devDependencies":{},"directories":{"lib":"./lib"},"dist":{"shasum":"7f003cae4e79aa6a833b316426d6a43b77986007","tarball":"http://registry.npmjs.org/underscore.string/-/underscore.string-1.0.0.tgz"},"engines":{"node":"*"}},"1.1.3":{"name":"underscore.string","version":"1.1.3","dependencies":{"underscore":"1.1.4"},"devDependencies":{},"directories":{"lib":"./lib"},"dist":{"shasum":"eed5284c6dfba2ed6db7e212d12537bcff6d7341","tarball":"http://registry.npmjs.org/underscore.string/-/underscore.string-1.1.3.tgz"},"engines":{"node":"*"}},"1.1.4":{"name":"underscore.string","version":"1.1.4","dependencies":{"underscore":"1.1.6"},"devDependencies":{},"directories":{"lib":"./lib"},"dist":{"shasum":"9be06b23b8e3d996ea2020f9984202069e3dee12","tarball":"http://registry.npmjs.org/underscore.string/-/underscore.string-1.1.4.tgz"},"engines":{"node":"*"}},"1.1.5":{"name":"underscore.string","version":"1.1.5","dependencies":{"underscore":"1.1.6"},"devDependencies":{},"directories":{"lib":"./lib"},"dist":{"shasum":"50ea8e6803230b3d6d1a4abdf77ba9b479ec3158","tarball":"http://registry.npmjs.org/underscore.string/-/underscore.string-1.1.5.tgz"},"engines":{"node":"*"}},"1.1.6":{"name":"underscore.string","version":"1.1.6","dependencies":{"underscore":"1.1.7"},"devDependencies":{},"directories":{"lib":"./lib"},"dist":{"shasum":"e7dca073ccd945515a6a69e7af484aee4e52cdc9","tarball":"http://registry.npmjs.org/underscore.string/-/underscore.string-1.1.6.tgz"},"engines":{"node":"*"}},"2.0.0":{"name":"underscore.string","version":"2.0.0","dependencies":{},"devDependencies":{},"directories":{"lib":"./lib"},"dist":{"shasum":"7470858a54a0bb3560d037da56dcc67b5181e11a","tarball":"http://registry.npmjs.org/underscore.string/-/underscore.string-2.0.0.tgz"},"engines":{"node":"*"}},"2.1.0":{"name":"underscore.string","version":"2.1.0","dependencies":{},"optionalDependencies":{},"devDependencies":{},"directories":{"lib":"./lib"},"dist":{"shasum":"75d68f94d862636f509bb8e86854d5397a930c39","tarball":"http://registry.npmjs.org/underscore.string/-/underscore.string-2.1.0.tgz"},"engines":{"node":"*"}},"2.1.1":{"name":"underscore.string","version":"2.1.1","dependencies":{},"optionalDependencies":{},"devDependencies":{},"directories":{"lib":"./lib"},"dist":{"shasum":"458397799114b9b67f6030bb527b0afae689c061","tarball":"http://registry.npmjs.org/underscore.string/-/underscore.string-2.1.1.tgz"},"engines":{"node":"*"}},"2.3.0":{"name":"underscore.string","version":"2.3.0","directories":{"lib":"./lib"},"dist":{"shasum":"c437fd9916e2d05ebb89c45bf1ddaedbb4b9ab02","tarball":"http://registry.npmjs.org/underscore.string/-/underscore.string-2.3.0.tgz"},"engines":{"node":"*"}},"2.3.1":{"name":"underscore.string","version":"2.3.1","directories":{"lib":"./lib"},"dist":{"shasum":"e2328b0c09818a8f617026427d348f96ad1099d9","tarball":"http://registry.npmjs.org/underscore.string/-/underscore.string-2.3.1.tgz"},"engines":{"node":"*"}},"2.3.2":{"name":"underscore.string","version":"2.3.2","directories":{"lib":"./lib"},"dist":{"shasum":"c10835dc04c2677cd49e1d77d26c0d3b22cc5709","tarball":"http://registry.npmjs.org/underscore.string/-/underscore.string-2.3.2.tgz"},"engines":{"node":"*"}},"2.2.1":{"name":"underscore.string","version":"2.2.1","directories":{"lib":"./lib"},"dist":{"shasum":"d7c0fa2af5d5a1a67f4253daee98132e733f0f19","tarball":"http://registry.npmjs.org/underscore.string/-/underscore.string-2.2.1.tgz"},"engines":{"node":"*"}},"2.2.0-rc":{"name":"underscore.string","version":"2.2.0-rc","directories":{"lib":"./lib"},"dist":{"shasum":"f03a19324d6af07c9bed2ee1a639745eb7f3b9aa","tarball":"http://registry.npmjs.org/underscore.string/-/underscore.string-2.2.0rc.tgz"},"engines":{"node":"*"}},"2.3.3":{"name":"underscore.string","version":"2.3.3","directories":{"lib":"./lib"},"dist":{"shasum":"71c08bf6b428b1133f37e78fa3a21c82f7329b0d","tarball":"http://registry.npmjs.org/underscore.string/-/underscore.string-2.3.3.tgz"},"engines":{"node":"*"}},"2.4.0":{"name":"underscore.string","version":"2.4.0","devDependencies":{"gulp":"~3.8.10","gulp-uglify":"~1.0.1","gulp-qunit":"~1.0.0","gulp-clean":"~0.3.1","gulp-rename":"~1.2.0"},"directories":{"lib":"./lib"},"dist":{"shasum":"8cdd8fbac4e2d2ea1e7e2e8097c42f442280f85b","tarball":"http://registry.npmjs.org/underscore.string/-/underscore.string-2.4.0.tgz"},"engines":{"node":"*"}},"3.0.0":{"name":"underscore.string","version":"3.0.0","devDependencies":{"gulp":"~3.8.10","gulp-clean":"~0.3.1","gulp-qunit":"~1.1.0","gulp-rename":"~1.2.0","gulp-uglify":"~1.0.1","gulp-param":"~0.6.3","gulp-bump":"~0.1.11","gulp-replace":"~0.5.0","gulp-browserify":"~0.5.0"},"directories":{"lib":"./"},"dist":{"shasum":"590328225efd712eebddfcf2a82797826130b7b4","tarball":"http://registry.npmjs.org/underscore.string/-/underscore.string-3.0.0.tgz"},"engines":{"node":"*"}},"3.0.1":{"name":"underscore.string","version":"3.0.1","devDependencies":{"gulp":"~3.8.10","gulp-clean":"~0.3.1","gulp-qunit":"~1.1.0","gulp-rename":"~1.2.0","gulp-uglify":"~1.0.1","gulp-param":"~0.6.3","gulp-bump":"~0.1.11","gulp-replace":"~0.5.0","gulp-browserify":"~0.5.0"},"directories":{"lib":"./"},"dist":{"shasum":"ffe8da4ca7cd11923ede7cc5371aca029068b2fe","tarball":"http://registry.npmjs.org/underscore.string/-/underscore.string-3.0.1.tgz"},"engines":{"node":"*"}},"3.0.2":{"name":"underscore.string","version":"3.0.2","devDependencies":{"gulp":"~3.8.10","gulp-clean":"~0.3.1","gulp-qunit":"~1.1.0","gulp-rename":"~1.2.0","gulp-uglify":"~1.0.1","gulp-param":"~0.6.3","gulp-bump":"~0.1.11","gulp-replace":"~0.5.0","gulp-browserify":"~0.5.0"},"directories":{"lib":"./"},"dist":{"shasum":"fd2a8544342527536cc906edc7063fcd5b70f306","tarball":"http://registry.npmjs.org/underscore.string/-/underscore.string-3.0.2.tgz"},"engines":{"node":"*"}},"3.0.3":{"name":"underscore.string","version":"3.0.3","devDependencies":{"gulp":"~3.8.10","gulp-clean":"~0.3.1","gulp-qunit":"~1.1.0","gulp-rename":"~1.2.0","gulp-uglify":"~1.0.1","gulp-param":"~0.6.3","gulp-bump":"~0.1.11","gulp-replace":"~0.5.0","gulp-browserify":"~0.5.0"},"directories":{"lib":"./"},"dist":{"shasum":"4617b8c1a250cf6e5064fbbb363d0fa96cf14552","tarball":"http://registry.npmjs.org/underscore.string/-/underscore.string-3.0.3.tgz"},"engines":{"node":"*"}},"3.1.0":{"name":"underscore.string","version":"3.1.0","dependencies":{},"devDependencies":{"gulp":"^3.8.11","gulp-bench":"^1.1.0","gulp-browserify":"~0.5.0","gulp-bump":"~0.1.11","gulp-istanbul":"^0.6.0","gulp-mocha":"^2.0.0","gulp-param":"~0.6.3","gulp-rename":"~1.2.0","gulp-replace":"~0.5.0","gulp-rimraf":"^0.1.1","gulp-uglify":"~1.0.1","mocha":"^2.1.0","underscore":"^1.7.0"},"directories":{"lib":"./"},"dist":{"shasum":"bc0c4e4c3baf6ec4bd143b6185c257c9622e70ca","tarball":"http://registry.npmjs.org/underscore.string/-/underscore.string-3.1.0.tgz"},"engines":{"node":"*"}},"3.1.1":{"name":"underscore.string","version":"3.1.1","dependencies":{},"devDependencies":{"gulp":"^3.8.11","gulp-bench":"^1.1.0","gulp-browserify":"~0.5.0","gulp-bump":"~0.1.11","gulp-istanbul":"^0.6.0","gulp-mocha":"^2.0.0","gulp-param":"~0.6.3","gulp-rename":"~1.2.0","gulp-replace":"~0.5.0","gulp-rimraf":"^0.1.1","gulp-uglify":"~1.0.1","mocha":"^2.1.0","underscore":"^1.7.0"},"directories":{"lib":"./"},"dist":{"shasum":"0cdd6bcad0c046fd7663d305d8a785b5da10f335","tarball":"http://registry.npmjs.org/underscore.string/-/underscore.string-3.1.1.tgz"},"engines":{"node":"*"}},"3.2.0":{"name":"underscore.string","version":"3.2.0","dependencies":{},"devDependencies":{"gulp":"^3.8.11","gulp-bench":"^1.1.0","gulp-browserify":"~0.5.0","gulp-bump":"~0.1.11","gulp-header":"^1.2.2","gulp-istanbul":"^0.6.0","gulp-mocha":"^2.0.0","gulp-param":"~0.6.3","gulp-rename":"~1.2.0","gulp-replace":"~0.5.0","gulp-rimraf":"^0.1.1","gulp-uglify":"~1.0.1","mocha":"^2.1.0","underscore":"^1.7.0"},"directories":{"lib":"./"},"dist":{"shasum":"4ff98c6fa2b973aef63a2a67df710d2dfa15609a","tarball":"http://registry.npmjs.org/underscore.string/-/underscore.string-3.2.0.tgz"},"engines":{"node":"*"}},"3.2.1":{"name":"underscore.string","version":"3.2.1","dependencies":{},"devDependencies":{"gulp":"^3.8.11","gulp-bench":"^1.1.0","gulp-browserify":"~0.5.0","gulp-bump":"~0.1.11","gulp-header":"^1.2.2","gulp-istanbul":"^0.6.0","gulp-mocha":"^2.0.0","gulp-param":"~0.6.3","gulp-rename":"~1.2.0","gulp-replace":"~0.5.0","gulp-rimraf":"^0.1.1","gulp-uglify":"~1.0.1","mocha":"^2.1.0","underscore":"^1.7.0"},"directories":{"lib":"./"},"dist":{"shasum":"e6531d55ad1388fef3fb2df2a9ef2c80e61e11ce","tarball":"http://registry.npmjs.org/underscore.string/-/underscore.string-3.2.1.tgz"},"engines":{"node":"*"}},"3.2.2":{"name":"underscore.string","version":"3.2.2","dependencies":{},"devDependencies":{"gulp":"^3.8.11","gulp-bench":"^1.1.0","gulp-browserify":"~0.5.0","gulp-bump":"~0.1.11","gulp-header":"^1.2.2","gulp-istanbul":"^0.6.0","gulp-mocha":"^2.0.0","gulp-param":"~0.6.3","gulp-rename":"~1.2.0","gulp-replace":"~0.5.0","gulp-rimraf":"^0.1.1","gulp-uglify":"~1.0.1","mocha":"^2.1.0","underscore":"^1.7.0"},"directories":{"lib":"./"},"dist":{"shasum":"4ed47e9eafa575a28bd1f7bc6a5bb1d9302bb11b","tarball":"http://registry.npmjs.org/underscore.string/-/underscore.string-3.2.2.tgz"},"engines":{"node":"*"}},"3.2.3":{"name":"underscore.string","version":"3.2.3","dependencies":{},"devDependencies":{"gulp":"^3.8.11","gulp-bench":"^1.1.0","gulp-browserify":"~0.5.0","gulp-bump":"~0.1.11","gulp-eslint":"^1.1.1","gulp-header":"^1.2.2","gulp-istanbul":"^0.6.0","gulp-mocha":"^2.0.0","gulp-param":"~0.6.3","gulp-rename":"~1.2.0","gulp-replace":"~0.5.0","gulp-rimraf":"^0.1.1","gulp-uglify":"~1.0.1","mocha":"^2.1.0","underscore":"^1.7.0"},"directories":{"lib":"./"},"dist":{"shasum":"806992633665d5e5fcb4db1fb3a862eb68e9e6da","tarball":"http://registry.npmjs.org/underscore.string/-/underscore.string-3.2.3.tgz"},"engines":{"node":"*"}},"3.3.0":{"name":"underscore.string","version":"3.3.0","dependencies":{"sprintf-js":"^1.0.3","util-deprecate":"^1.0.2"},"devDependencies":{"browserify":"^13.0.0","browserify-header":"^0.9.2","eslint":"^1.10.3","istanbul":"^0.4.2","mocha":"^2.1.0","mocha-lcov-reporter":"^1.0.0","replace":"^0.3.0","uglifyjs":"^2.4.10","underscore":"^1.7.0"},"directories":{"lib":"./"},"dist":{"shasum":"073c939e34b627fc42bfe2518bd455465eb525bd","tarball":"http://registry.npmjs.org/underscore.string/-/underscore.string-3.3.0.tgz"},"engines":{"node":"*"}},"3.3.2":{"name":"underscore.string","version":"3.3.2","dependencies":{"sprintf-js":"^1.0.3","util-deprecate":"^1.0.2"},"devDependencies":{"browserify":"^13.0.0","browserify-header":"^0.9.2","eslint":"^1.10.3","istanbul":"^0.4.2","mocha":"^2.1.0","mocha-lcov-reporter":"^1.0.0","replace":"^0.3.0","uglifyjs":"^2.4.10","underscore":"^1.7.0"},"directories":{"lib":"./"},"dist":{"shasum":"61e2efc77b47af4c8814b9a89a34885eab9704f0","tarball":"http://registry.npmjs.org/underscore.string/-/underscore.string-3.3.2.tgz"},"engines":{"node":"*"}},"3.3.3":{"name":"underscore.string","version":"3.3.3","dependencies":{"sprintf-js":"^1.0.3","util-deprecate":"^1.0.2"},"devDependencies":{"browserify":"^13.0.0","browserify-header":"^0.9.2","eslint":"^1.10.3","istanbul":"^0.4.2","mocha":"^2.1.0","mocha-lcov-reporter":"^1.0.0","replace":"^0.3.0","uglifyjs":"^2.4.10","underscore":"^1.7.0"},"directories":{"lib":"./"},"dist":{"shasum":"1fc0d4544fa11c524ea2dc77422f780d162f01f5","tarball":"http://registry.npmjs.org/underscore.string/-/underscore.string-3.3.3.tgz"},"engines":{"node":"*"}},"3.3.4":{"name":"underscore.string","version":"3.3.4","dependencies":{"sprintf-js":"^1.0.3","util-deprecate":"^1.0.2"},"devDependencies":{"browserify":"^13.0.0","browserify-header":"^0.9.2","eslint":"^1.10.3","istanbul":"^0.4.2","mocha":"^2.1.0","mocha-lcov-reporter":"^1.0.0","replace":"^0.3.0","uglifyjs":"^2.4.10","underscore":"^1.7.0"},"directories":{"lib":"./"},"dist":{"shasum":"2c2a3f9f83e64762fdc45e6ceac65142864213db","tarball":"http://registry.npmjs.org/underscore.string/-/underscore.string-3.3.4.tgz"},"engines":{"node":"*"}},"3.3.5":{"name":"underscore.string","version":"3.3.5","dependencies":{"sprintf-js":"^1.0.3","util-deprecate":"^1.0.2"},"devDependencies":{"browserify":"^13.0.0","browserify-header":"^0.9.2","eslint":"^1.10.3","istanbul":"^0.4.2","mocha":"^2.1.0","mocha-lcov-reporter":"^1.0.0","replace":"^0.3.0","uglifyjs":"^2.4.10","underscore":"^1.7.0"},"_hasShrinkwrap":false,"directories":{"lib":"./"},"dist":{"integrity":"sha512-g+dpmgn+XBneLmXXo+sGlW5xQEt4ErkS3mgeN2GFbremYeMBSJKr9Wf2KJplQVaiPY/f7FN6atosWYNm9ovrYg==","shasum":"fc2ad255b8bd309e239cbc5816fd23a9b7ea4023","tarball":"https://registry.npmjs.org/underscore.string/-/underscore.string-3.3.5.tgz","fileCount":85,"unpackedSize":137917,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbtlosCRA9TVsSAnZWagAAB8wP/jkRpgSNTkZZ3EMiuIhf\n1gHMdhvX18RhdPaBD0qO2+go2vDsAG9H/mi7uUrvmpRn4l3dfy8doURs6Nt3\nLzWrgAaTLYy5JfUSUErSHEDs0ecVEL3Chyyu4uAZFEUeZhuzZAkKj7KtbhNG\nAbXW3AJLnEgEUXHq2b4NrA0dH0bk0ge0/Mv2NuVv8oFEv8EA/q4G7xlWRmSx\nyTk7eygpixgMwVK2wT0RE49ju+nV6jYSZVP7y7ReMToCi6N4ZFFCFjPlwMCT\nvbAEWzGq3HuJUt/I+J0ZX/pt/UP1392AQPQ8/1oqEQbOPJWiOwaKZNFhNcnY\nF3d7FVqd2SJWcANYUUZ6EVop9GWOINfQbRgLtjaIAS5nbexhs180EJHIf1/6\n3CS9h6PplwthrSWMI3l5BLsFZLBi6PljAGhQl7prt79i/v8xmu0CMNV0+FbP\nNRBmJR40ZbN8a5ooBdpJ5kYwHXlnc7TY7ZD8PenGcl6sy8uiZAziaEGcaXvp\nj4ElbQm9RcXa2+7eajn+llRIRdE1cjlDjWPvw16DY66xe8XNv6w36xxtGrOY\n2oFsVJTERLscyWp2huTyuqGDXG+h1b3M1M3qy25rynOmv1jg7PSOsk7cOWYi\ncEcCN1KSbZx9bTRN1s5wMrZaLk7cU1wlnIOUzIaiAiWPjpB9IsjkNiRv1Kly\n+uEI\r\n=p8qX\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":"*"}}},"name":"underscore.string","dist-tags":{"latest":"3.3.5"},"modified":"2018-10-04T18:21:34.927Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/1f/12/5d616ab53132106c9de7c3472ab2c1e84cd536ebb2a5ac3b866755989710d2b54b4a52139a266875d76fd36661f1c547ee26a3d748e9bbb43c9ab3439221 b/npm/.npm/_cacache/content-v2/sha512/1f/12/5d616ab53132106c9de7c3472ab2c1e84cd536ebb2a5ac3b866755989710d2b54b4a52139a266875d76fd36661f1c547ee26a3d748e9bbb43c9ab3439221 new file mode 100644 index 0000000..a4966fe Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha512/1f/12/5d616ab53132106c9de7c3472ab2c1e84cd536ebb2a5ac3b866755989710d2b54b4a52139a266875d76fd36661f1c547ee26a3d748e9bbb43c9ab3439221 differ diff --git a/npm/.npm/_cacache/content-v2/sha512/20/84/d20d5e3c4bbda3d23febcec35751bba9b56422c4e821362e247bd10b3aa98635b1734d4917e4aafb90cf95c6848bf536f2decb082b5a5dd6cbaed53d27c7 b/npm/.npm/_cacache/content-v2/sha512/20/84/d20d5e3c4bbda3d23febcec35751bba9b56422c4e821362e247bd10b3aa98635b1734d4917e4aafb90cf95c6848bf536f2decb082b5a5dd6cbaed53d27c7 new file mode 100644 index 0000000..06607ca --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/20/84/d20d5e3c4bbda3d23febcec35751bba9b56422c4e821362e247bd10b3aa98635b1734d4917e4aafb90cf95c6848bf536f2decb082b5a5dd6cbaed53d27c7 @@ -0,0 +1 @@ +{"versions":{"0.1.0":{"name":"strip-indent","version":"0.1.0","devDependencies":{"mocha":"*","browserify":"^3.0.0"},"bin":{"strip-indent":"cli.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"80b081845da5d3c0adc0d89e3b10199f8c6cff37","tarball":"https://registry.npmjs.org/strip-indent/-/strip-indent-0.1.0.tgz"},"engines":{"node":">=0.10.0"}},"0.1.1":{"name":"strip-indent","version":"0.1.1","devDependencies":{"mocha":"*","browserify":"^3.0.0"},"bin":{"strip-indent":"cli.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"634e8410a63e7ec2f90845a768110d70ad925fdf","tarball":"https://registry.npmjs.org/strip-indent/-/strip-indent-0.1.1.tgz"},"engines":{"node":">=0.10.0"}},"0.1.2":{"name":"strip-indent","version":"0.1.2","devDependencies":{"mocha":"*","browserify":"^3.0.0"},"bin":{"strip-indent":"cli.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"b48df2fc0b4ca737d5b3329d5ed2b1ba26a420a6","tarball":"https://registry.npmjs.org/strip-indent/-/strip-indent-0.1.2.tgz"},"engines":{"node":">=0.10.0"}},"0.1.3":{"name":"strip-indent","version":"0.1.3","devDependencies":{"mocha":"*","browserify":"^3.0.0"},"bin":{"strip-indent":"cli.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"c43ccb66c24e49c4e27b2236d34fe2c4bbcf14dc","tarball":"https://registry.npmjs.org/strip-indent/-/strip-indent-0.1.3.tgz"},"engines":{"node":">=0.10.0"}},"1.0.0":{"name":"strip-indent","version":"1.0.0","dependencies":{"get-stdin":"^1.0.0"},"devDependencies":{"mocha":"*"},"bin":{"strip-indent":"cli.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"c2425adedb2163f01ffd4ba5fdae1c9f80900285","tarball":"https://registry.npmjs.org/strip-indent/-/strip-indent-1.0.0.tgz"},"engines":{"node":">=0.10.0"}},"1.0.1":{"name":"strip-indent","version":"1.0.1","dependencies":{"get-stdin":"^4.0.1"},"devDependencies":{"mocha":"*"},"bin":{"strip-indent":"cli.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"0c7962a6adefa7bbd4ac366460a638552ae1a0a2","tarball":"https://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz"},"engines":{"node":">=0.10.0"}},"2.0.0":{"name":"strip-indent","version":"2.0.0","devDependencies":{"ava":"*","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"5ef8db295d01e6ed6cbf7aab96998d7822527b68","tarball":"https://registry.npmjs.org/strip-indent/-/strip-indent-2.0.0.tgz"},"engines":{"node":">=4"}}},"name":"strip-indent","dist-tags":{"latest":"2.0.0"},"modified":"2016-04-22T05:47:23.270Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/21/82/eac4f83e50f3b6aa8bea561c5dfebdc1d66941e2da785af406e045de56a0fc422034ca7fa2ab5fa99022c6b860203eb4853ce85f15f26b96c84b8d9e7320 b/npm/.npm/_cacache/content-v2/sha512/21/82/eac4f83e50f3b6aa8bea561c5dfebdc1d66941e2da785af406e045de56a0fc422034ca7fa2ab5fa99022c6b860203eb4853ce85f15f26b96c84b8d9e7320 new file mode 100644 index 0000000..a568011 --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/21/82/eac4f83e50f3b6aa8bea561c5dfebdc1d66941e2da785af406e045de56a0fc422034ca7fa2ab5fa99022c6b860203eb4853ce85f15f26b96c84b8d9e7320 @@ -0,0 +1 @@ +{"versions":{"1.0.0":{"name":"inherits","version":"1.0.0","dependencies":{},"devDependencies":{},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"38e1975285bf1f7ba9c84da102bb12771322ac48","tarball":"https://registry.npmjs.org/inherits/-/inherits-1.0.0.tgz"},"engines":{"node":"*"}},"2.0.0":{"name":"inherits","version":"2.0.0","_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"76c81b3b1c10ddee3a60bf2c247162bc369f8ba8","tarball":"https://registry.npmjs.org/inherits/-/inherits-2.0.0.tgz"}},"2.0.1":{"name":"inherits","version":"2.0.1","_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"b17d08d326b4423e568eff719f91b0b1cbdf69f1","tarball":"https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz"}},"1.0.1":{"name":"inherits","version":"1.0.1","_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"1bdf16c6ff8266cb858c6da2baf3637a99fb3d87","tarball":"https://registry.npmjs.org/inherits/-/inherits-1.0.1.tgz"}},"1.0.2":{"name":"inherits","version":"1.0.2","_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"ca4309dadee6b54cc0b8d247e8d7c7a0975bdc9b","tarball":"https://registry.npmjs.org/inherits/-/inherits-1.0.2.tgz"}},"2.0.3":{"name":"inherits","version":"2.0.3","devDependencies":{"tap":"^7.1.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"633c2c83e3da42a502f52466022480f4208261de","tarball":"https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz"}}},"name":"inherits","dist-tags":{"latest":"2.0.3"},"modified":"2018-08-03T00:38:03.803Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/24/5d/69745fcc461778d18111318be0f29507a20d90648dc3514dab68353482b924d3cf97c411248178cfa2097918722140b241fdd509faa3a8981f90bf11475f b/npm/.npm/_cacache/content-v2/sha512/24/5d/69745fcc461778d18111318be0f29507a20d90648dc3514dab68353482b924d3cf97c411248178cfa2097918722140b241fdd509faa3a8981f90bf11475f new file mode 100644 index 0000000..ebe11d9 --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/24/5d/69745fcc461778d18111318be0f29507a20d90648dc3514dab68353482b924d3cf97c411248178cfa2097918722140b241fdd509faa3a8981f90bf11475f @@ -0,0 +1 @@ +{"versions":{"0.0.1":{"name":"normalize-package-data","version":"0.0.1","dependencies":{"semver":"1.x"},"devDependencies":{"tap":"~0.2.5"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"69484315eeeda5e9c87fd947f3dba74517bb8ab6","tarball":"https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-0.0.1.tgz"}},"0.0.3":{"name":"normalize-package-data","version":"0.0.3","dependencies":{"semver":"1.x"},"devDependencies":{"tap":"~0.2.5","underscore":"~1.4.4"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"5c065ddfc2a534aca61c534bbcd76df47e0d810a","tarball":"https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-0.0.3.tgz"}},"0.0.5":{"name":"normalize-package-data","version":"0.0.5","dependencies":{"semver":"1.x"},"devDependencies":{"tap":"~0.2.5","underscore":"~1.4.4","async":"~0.2.7"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"200212e70b5af2baf2ff9dfca4f2969019240f08","tarball":"https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-0.0.5.tgz"}},"0.0.7":{"name":"normalize-package-data","version":"0.0.7","dependencies":{"semver":"1.x"},"devDependencies":{"tap":"~0.2.5","underscore":"~1.4.4","async":"~0.2.7"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"ee59782772549cebc3c366cfcc008b57fa8b0382","tarball":"https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-0.0.7.tgz"}},"0.0.9":{"name":"normalize-package-data","version":"0.0.9","dependencies":{"semver":"1.x"},"devDependencies":{"tap":"~0.2.5","underscore":"~1.4.4","async":"~0.2.7"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"c8dca93bf0389c7206539487d187b261f39772c1","tarball":"https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-0.0.9.tgz"}},"0.0.10":{"name":"normalize-package-data","version":"0.0.10","dependencies":{"semver":"1.x","github-url-from-git":"~1.0.0"},"devDependencies":{"tap":"~0.2.5","underscore":"~1.4.4","async":"~0.2.7"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"2631bd4de289839fc298bb5e328e446f767b83a5","tarball":"https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-0.0.10.tgz"}},"0.1.1":{"name":"normalize-package-data","version":"0.1.1","dependencies":{"semver":"1.x","github-url-from-git":"git://github.com/isaacs/node-github-url-from-git"},"devDependencies":{"tap":"~0.2.5","underscore":"~1.4.4","async":"~0.2.7"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"12c5d9a818fea3053a1c8d24185ead054f4e8852","tarball":"https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-0.1.1.tgz"}},"0.1.2":{"name":"normalize-package-data","version":"0.1.2","dependencies":{"semver":"1.x","github-url-from-git":"~1.1.1"},"devDependencies":{"tap":"~0.2.5","underscore":"~1.4.4","async":"~0.2.7"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"1ca206a9feff43bdcfd1ae5abcd87fac4d7c1bcd","tarball":"https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-0.1.2.tgz"}},"0.1.3":{"name":"normalize-package-data","version":"0.1.3","dependencies":{"semver":"1.x","github-url-from-git":"~1.1.1"},"devDependencies":{"tap":"~0.2.5","underscore":"~1.4.4","async":"~0.2.7"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"0174cc9691682e2995049554577db3a74955c01a","tarball":"https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-0.1.3.tgz"}},"0.1.4":{"name":"normalize-package-data","version":"0.1.4","dependencies":{"semver":"1.x","github-url-from-git":"~1.1.1"},"devDependencies":{"tap":"~0.2.5","underscore":"~1.4.4","async":"~0.2.7"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"48dda377768d05e2ef5036fca225e862f7260a29","tarball":"https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-0.1.4.tgz"}},"0.1.5":{"name":"normalize-package-data","version":"0.1.5","dependencies":{"semver":"1.x","github-url-from-git":"~1.1.1"},"devDependencies":{"tap":"~0.2.5","underscore":"~1.4.4","async":"~0.2.7"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"655e4420b51e00ac7dd9ce15f5abc09ebe94114e","tarball":"https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-0.1.5.tgz"}},"0.1.6":{"name":"normalize-package-data","version":"0.1.6","dependencies":{"semver":"1.x","github-url-from-git":"~1.1.1"},"devDependencies":{"tap":"~0.2.5","underscore":"~1.4.4","async":"~0.2.7"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"2503118c469c493ff030c5a9bafe82f4d371a566","tarball":"https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-0.1.6.tgz"}},"0.1.7":{"name":"normalize-package-data","version":"0.1.7","dependencies":{"semver":"1.x","github-url-from-git":"~1.1.1"},"devDependencies":{"tap":"~0.2.5","underscore":"~1.4.4","async":"~0.2.7"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"f216a318a868214892e89ad80a944cddc1a79615","tarball":"https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-0.1.7.tgz"}},"0.2.0":{"name":"normalize-package-data","version":"0.2.0","dependencies":{"semver":"2","github-url-from-git":"~1.1.1"},"devDependencies":{"tap":"~0.2.5","underscore":"~1.4.4","async":"~0.2.7"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"b9349e2db3242912e6ab3d180823309b63a74a92","tarball":"https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-0.2.0.tgz"}},"0.2.1":{"name":"normalize-package-data","version":"0.2.1","dependencies":{"semver":"2","github-url-from-git":"~1.1.1"},"devDependencies":{"tap":"~0.2.5","underscore":"~1.4.4","async":"~0.2.7"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"6c13a4b7ab1bca0323265418d354666da2e5ad43","tarball":"https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-0.2.1.tgz"}},"0.2.2":{"name":"normalize-package-data","version":"0.2.2","dependencies":{"semver":"2","github-url-from-git":"~1.1.1"},"devDependencies":{"tap":"~0.2.5","underscore":"~1.4.4","async":"~0.2.7"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"9efde8d32a96e797ea61f8b4916e0f48a5ad83d9","tarball":"https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-0.2.2.tgz"}},"0.2.3":{"name":"normalize-package-data","version":"0.2.3","dependencies":{"semver":"2","github-url-from-git":"~1.1.1"},"devDependencies":{"tap":"~0.2.5","underscore":"~1.4.4","async":"~0.2.7"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"b001e728da6e712086918588797a57879d1b4c14","tarball":"https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-0.2.3.tgz"}},"0.2.4":{"name":"normalize-package-data","version":"0.2.4","dependencies":{"semver":"2","github-url-from-git":"~1.1.1"},"devDependencies":{"tap":"~0.2.5","underscore":"~1.4.4","async":"~0.2.7"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"75e20353f342759e0fa8790c87d9935e7563e528","tarball":"https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-0.2.4.tgz"}},"0.2.5":{"name":"normalize-package-data","version":"0.2.5","dependencies":{"semver":"2","github-url-from-git":"~1.1.1"},"devDependencies":{"tap":"~0.2.5","underscore":"~1.4.4","async":"~0.2.7"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"88a50c7ab4f56a4003da08fd73ca4f85ffc181a7","tarball":"https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-0.2.5.tgz"}},"0.2.6":{"name":"normalize-package-data","version":"0.2.6","dependencies":{"semver":"2","github-url-from-git":"~1.1.1"},"devDependencies":{"tap":"~0.2.5","underscore":"~1.4.4","async":"~0.2.7"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"830bda1412f7ccae09b903fc080edbcdbb0947c0","tarball":"https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-0.2.6.tgz"}},"0.2.7":{"name":"normalize-package-data","version":"0.2.7","dependencies":{"semver":"2","github-url-from-git":"~1.1.1","github-url-from-username-repo":"0.0.2"},"devDependencies":{"tap":"~0.2.5","underscore":"~1.4.4","async":"~0.2.7"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"0f075fa2d1f9ba23a854c4c56818c4077638f72a","tarball":"https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-0.2.7.tgz"}},"0.2.8":{"name":"normalize-package-data","version":"0.2.8","dependencies":{"semver":"2","github-url-from-git":"~1.1.1","github-url-from-username-repo":"0.0.2"},"devDependencies":{"tap":"~0.2.5","underscore":"~1.4.4","async":"~0.2.7"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"95dc1bcb54c8d46b3be345c05afbab27e48e2f69","tarball":"https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-0.2.8.tgz"}},"0.2.9":{"name":"normalize-package-data","version":"0.2.9","dependencies":{"semver":"2","github-url-from-git":"~1.1.1","github-url-from-username-repo":"0.0.2"},"devDependencies":{"tap":"~0.2.5","underscore":"~1.4.4","async":"~0.2.7"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"8be8a1c0a0b55a7df07bee2b488c67c1d8862a4b","tarball":"https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-0.2.9.tgz"}},"0.2.11":{"name":"normalize-package-data","version":"0.2.11","dependencies":{"semver":"2","github-url-from-git":"~1.1.1","github-url-from-username-repo":"0.0.2"},"devDependencies":{"tap":"~0.2.5","underscore":"~1.4.4","async":"~0.2.7"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"e88c0de92fca3009bf25a8ea06c759f17b9b1037","tarball":"https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-0.2.11.tgz"}},"0.2.12":{"name":"normalize-package-data","version":"0.2.12","dependencies":{"semver":"2","github-url-from-git":"~1.1.1","github-url-from-username-repo":"0.0.2"},"devDependencies":{"tap":"~0.2.5","underscore":"~1.4.4","async":"~0.2.7"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"c8284cf0cb0466ea60ee64276b9070722c1da768","tarball":"https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-0.2.12.tgz"}},"0.2.13":{"name":"normalize-package-data","version":"0.2.13","dependencies":{"github-url-from-git":"~1.1.1","github-url-from-username-repo":"^0.1.0","semver":"2"},"devDependencies":{"tap":"~0.2.5","underscore":"~1.4.4","async":"~0.2.7"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"50f9fd9e77b1c8411cd231db2962e73963de774d","tarball":"https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-0.2.13.tgz"}},"0.3.0":{"name":"normalize-package-data","version":"0.3.0","dependencies":{"github-url-from-git":"~1.1.1","github-url-from-username-repo":"^0.2.0","semver":"2"},"devDependencies":{"tap":"~0.2.5","underscore":"~1.4.4","async":"~0.2.7"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"70ea9e5b6caf69faa9d83e42f71489642372d815","tarball":"https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-0.3.0.tgz"}},"0.4.1":{"name":"normalize-package-data","version":"0.4.1","dependencies":{"github-url-from-git":"~1.1.1","github-url-from-username-repo":"^0.2.0","semver":"2"},"devDependencies":{"tap":"~0.2.5","underscore":"~1.4.4","async":"~0.2.7"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"c7c83d0927cda14332aa08cf48e944919ed9102f","tarball":"https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-0.4.1.tgz"}},"0.4.2":{"name":"normalize-package-data","version":"0.4.2","dependencies":{"github-url-from-git":"~1.1.1","github-url-from-username-repo":"^0.2.0","semver":"2 || 3"},"devDependencies":{"tap":"~0.2.5","underscore":"~1.4.4","async":"~0.2.7"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"166dc052a74e2f5ac1d3d23903ab3f2e2b7dd8e6","tarball":"https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-0.4.2.tgz"}},"1.0.0":{"name":"normalize-package-data","version":"1.0.0","dependencies":{"github-url-from-git":"^1.3.0","github-url-from-username-repo":"^0.2.0","semver":"2 || 3"},"devDependencies":{"tap":"~0.2.5","underscore":"~1.4.4","async":"~0.2.7"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"5239d9921791a8ad027607f580a74c76166623c8","tarball":"https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-1.0.0.tgz"}},"1.0.1":{"name":"normalize-package-data","version":"1.0.1","dependencies":{"github-url-from-git":"^1.3.0","github-url-from-username-repo":"^1.0.0","semver":"2 || 3"},"devDependencies":{"tap":"~0.2.5","underscore":"~1.4.4","async":"~0.9.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"2a4b5200c82cc47bb91c8c9cf47d645499d200bf","tarball":"https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-1.0.1.tgz"}},"1.0.2":{"name":"normalize-package-data","version":"1.0.2","dependencies":{"github-url-from-git":"^1.3.0","github-url-from-username-repo":"^1.0.0","semver":"2 || 3 || 4"},"devDependencies":{"tap":"~0.2.5","underscore":"~1.4.4","async":"~0.9.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"32a902ad3cad3286f1106b9b9550062f44ee2118","tarball":"https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-1.0.2.tgz"}},"1.0.3":{"name":"normalize-package-data","version":"1.0.3","dependencies":{"github-url-from-git":"^1.3.0","github-url-from-username-repo":"^1.0.0","semver":"2 || 3 || 4"},"devDependencies":{"tap":"~0.2.5","underscore":"~1.4.4","async":"~0.9.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"8be955b8907af975f1a4584ea8bb9b41492312f5","tarball":"https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-1.0.3.tgz"}},"2.0.0":{"name":"normalize-package-data","version":"2.0.0","dependencies":{"hosted-git-info":"^2.0.2","semver":"2 || 3 || 4"},"devDependencies":{"tap":"~0.2.5","underscore":"~1.4.4","async":"~0.9.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"8795d0d5c70c0e9ca36f419548aac0abf1f638bc","tarball":"https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.0.0.tgz"}},"2.1.0":{"name":"normalize-package-data","version":"2.1.0","dependencies":{"hosted-git-info":"^2.0.2","semver":"2 || 3 || 4","spdx":"^0.4.0"},"devDependencies":{"tap":"~0.2.5","underscore":"~1.4.4","async":"~0.9.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"31381afb0567a8ab0ae730230c8652ff8a0cdd11","tarball":"https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.1.0.tgz"}},"2.2.0":{"name":"normalize-package-data","version":"2.2.0","dependencies":{"hosted-git-info":"^2.0.2","semver":"2 || 3 || 4","spdx":"^0.4.0"},"devDependencies":{"tap":"~0.2.5","underscore":"~1.4.4","async":"~0.9.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"b4f65b40df659b04820f30a2688db5dabc9dfad9","tarball":"https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.2.0.tgz"}},"2.2.1":{"name":"normalize-package-data","version":"2.2.1","dependencies":{"hosted-git-info":"^2.0.2","semver":"2 || 3 || 4","spdx":"^0.4.0"},"devDependencies":{"async":"~0.9.0","tap":"^1.1.0","underscore":"~1.4.4"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"0e00ebd73ac065eb19092fd313531dd291a0e045","tarball":"https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.2.1.tgz"}},"2.3.0":{"name":"normalize-package-data","version":"2.3.0","dependencies":{"hosted-git-info":"^2.0.2","semver":"2 || 3 || 4","validate-npm-package-license":"^2.0.0"},"devDependencies":{"async":"~0.9.0","tap":"^1.1.0","underscore":"~1.4.4"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"5a81b77a6bc2edcea5fceb380d3e34ae28059f51","tarball":"https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.3.0.tgz"}},"2.3.1":{"name":"normalize-package-data","version":"2.3.1","dependencies":{"hosted-git-info":"^2.0.2","semver":"2 || 3 || 4 || 5","validate-npm-package-license":"^2.0.0"},"devDependencies":{"async":"~0.9.0","tap":"^1.1.0","underscore":"~1.4.4"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"e2d24a5ab38a90b22cd697753407d8564f49a890","tarball":"https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.3.1.tgz"}},"2.3.2":{"name":"normalize-package-data","version":"2.3.2","dependencies":{"hosted-git-info":"^2.0.2","semver":"2 || 3 || 4 || 5","validate-npm-package-license":"^3.0.1"},"devDependencies":{"async":"~0.9.0","tap":"^1.1.0","underscore":"~1.4.4"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"ff6d437374188a21921c85fbe5ad11e34ae6ead5","tarball":"https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.3.2.tgz"}},"2.3.3":{"name":"normalize-package-data","version":"2.3.3","dependencies":{"hosted-git-info":"^2.0.2","semver":"2 || 3 || 4 || 5","validate-npm-package-license":"^3.0.1"},"devDependencies":{"async":"~0.9.0","tap":"^1.1.0","underscore":"~1.4.4"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"1f6a73f61110d535b2067205eca1605f14ade207","tarball":"https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.3.3.tgz"}},"2.3.4":{"name":"normalize-package-data","version":"2.3.4","dependencies":{"hosted-git-info":"^2.0.2","is-builtin-module":"^1.0.0","semver":"2 || 3 || 4 || 5","validate-npm-package-license":"^3.0.1"},"devDependencies":{"async":"~0.9.0","tap":"^1.1.0","underscore":"~1.4.4"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"b92233ce6ef04fbd6bc0c05dead155af33a623e0","tarball":"https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.3.4.tgz"}},"2.3.5":{"name":"normalize-package-data","version":"2.3.5","dependencies":{"hosted-git-info":"^2.1.4","is-builtin-module":"^1.0.0","semver":"2 || 3 || 4 || 5","validate-npm-package-license":"^3.0.1"},"devDependencies":{"async":"^1.5.0","tap":"^2.2.0","underscore":"^1.8.3"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"8d924f142960e1777e7ffe170543631cc7cb02df","tarball":"https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.3.5.tgz"}},"2.3.6":{"name":"normalize-package-data","version":"2.3.6","dependencies":{"hosted-git-info":"^2.1.4","is-builtin-module":"^1.0.0","semver":"2 || 3 || 4 || 5","validate-npm-package-license":"^3.0.1"},"devDependencies":{"async":"^1.5.0","tap":"^2.2.0","underscore":"^1.8.3"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"498fa420c96401f787402ba21e600def9f981fff","tarball":"https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.3.6.tgz"}},"2.3.7":{"name":"normalize-package-data","version":"2.3.7","dependencies":{"hosted-git-info":"^2.1.4","is-builtin-module":"^1.0.0","semver":"2 || 3 || 4 || 5","validate-npm-package-license":"^3.0.1"},"devDependencies":{"async":"^1.5.0","tap":"^2.2.0","underscore":"^1.8.3"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"3998258db8f2f058fb441f591254824610f10beb","tarball":"https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.3.7.tgz"}},"2.3.8":{"name":"normalize-package-data","version":"2.3.8","dependencies":{"hosted-git-info":"^2.1.4","is-builtin-module":"^1.0.0","semver":"2 || 3 || 4 || 5","validate-npm-package-license":"^3.0.1"},"devDependencies":{"async":"^1.5.0","tap":"^2.2.0","underscore":"^1.8.3"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"d819eda2a9dedbd1ffa563ea4071d936782295bb","tarball":"https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.3.8.tgz"}},"2.4.0":{"name":"normalize-package-data","version":"2.4.0","dependencies":{"hosted-git-info":"^2.1.4","is-builtin-module":"^1.0.0","semver":"2 || 3 || 4 || 5","validate-npm-package-license":"^3.0.1"},"devDependencies":{"async":"^1.5.0","tap":"^2.2.0","underscore":"^1.8.3"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-9jjUFbTPfEy3R/ad/2oNbKtW9Hgovl5O1FvFWKkKblNXoN/Oou6+9+KKohPK13Yc3/TyunyWhJp6gvRNR/PPAw==","shasum":"12f95a307d58352075a04907b84ac8be98ac012f","tarball":"https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.4.0.tgz"}}},"name":"normalize-package-data","dist-tags":{"latest":"2.4.0"},"modified":"2018-01-21T05:18:22.580Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/25/a1/62c188db2368e4a52416df408b1b7ea0ed1672899d3c503b706c9a8ee243c9633ec0d8f1512e5428b45770473493d59ee66810ab3f195146faac54b21623 b/npm/.npm/_cacache/content-v2/sha512/25/a1/62c188db2368e4a52416df408b1b7ea0ed1672899d3c503b706c9a8ee243c9633ec0d8f1512e5428b45770473493d59ee66810ab3f195146faac54b21623 new file mode 100644 index 0000000..6324787 --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/25/a1/62c188db2368e4a52416df408b1b7ea0ed1672899d3c503b706c9a8ee243c9633ec0d8f1512e5428b45770473493d59ee66810ab3f195146faac54b21623 @@ -0,0 +1 @@ +{"versions":{"0.1.0":{"name":"exit","version":"0.1.0","devDependencies":{"grunt-contrib-jshint":"~0.6.4","grunt-contrib-nodeunit":"~0.2.0","grunt-contrib-watch":"~0.5.3","grunt":"~0.4.1","async":"~0.2.9","diff":"~1.0.7"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"19c3ad63bacc715b3eda7accedebf42a73424fd8","tarball":"https://registry.npmjs.org/exit/-/exit-0.1.0.tgz"},"engines":{"node":">= 0.8.0"}},"0.1.1":{"name":"exit","version":"0.1.1","devDependencies":{"grunt-contrib-jshint":"~0.6.4","grunt-contrib-nodeunit":"~0.2.0","grunt-contrib-watch":"~0.5.3","grunt":"~0.4.1","which":"~1.0.5"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"8bf4af1e41fdb092476006764db9f750dfcddc4e","tarball":"https://registry.npmjs.org/exit/-/exit-0.1.1.tgz"},"engines":{"node":">= 0.8.0"}},"0.1.2":{"name":"exit","version":"0.1.2","devDependencies":{"grunt-contrib-jshint":"~0.6.4","grunt-contrib-nodeunit":"~0.2.0","grunt-contrib-watch":"~0.5.3","grunt":"~0.4.1","which":"~1.0.5"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"0632638f8d877cc82107d30a0fff1a17cba1cd0c","tarball":"https://registry.npmjs.org/exit/-/exit-0.1.2.tgz"},"engines":{"node":">= 0.8.0"}}},"name":"exit","dist-tags":{"latest":"0.1.2"},"modified":"2017-05-04T18:03:43.709Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/2b/b9/dea123c8d5bb697dbd5d6513cbc73fcd11cc301b4c3da2bc2f73241f38aacf88c7ba448937b634f06329dbb539d105db13f1124577de5139c6d024ec82fe b/npm/.npm/_cacache/content-v2/sha512/2b/b9/dea123c8d5bb697dbd5d6513cbc73fcd11cc301b4c3da2bc2f73241f38aacf88c7ba448937b634f06329dbb539d105db13f1124577de5139c6d024ec82fe new file mode 100644 index 0000000..cdf47f7 --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/2b/b9/dea123c8d5bb697dbd5d6513cbc73fcd11cc301b4c3da2bc2f73241f38aacf88c7ba448937b634f06329dbb539d105db13f1124577de5139c6d024ec82fe @@ -0,0 +1 @@ +{"versions":{"1.0.1":{"name":"read-pkg-up","version":"1.0.1","dependencies":{"find-up":"^1.0.0","read-pkg":"^1.0.0"},"devDependencies":{"ava":"*","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"9d63c13276c065918d57f002a57f40a1b643fb02","tarball":"https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz"},"engines":{"node":">=0.10.0"}},"2.0.0":{"name":"read-pkg-up","version":"2.0.0","dependencies":{"find-up":"^2.0.0","read-pkg":"^2.0.0"},"devDependencies":{"ava":"*","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"6b72a8048984e0c41e79510fd5e9fa99b3b549be","tarball":"https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-2.0.0.tgz"},"engines":{"node":">=4"}},"3.0.0":{"name":"read-pkg-up","version":"3.0.0","dependencies":{"find-up":"^2.0.0","read-pkg":"^3.0.0"},"devDependencies":{"ava":"*","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"3ed496685dba0f8fe118d0691dc51f4a1ff96f07","tarball":"https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-3.0.0.tgz"},"engines":{"node":">=4"}},"4.0.0":{"name":"read-pkg-up","version":"4.0.0","dependencies":{"find-up":"^3.0.0","read-pkg":"^3.0.0"},"devDependencies":{"ava":"*","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-6etQSH7nJGsK0RbG/2TeDzZFa8shjQ1um+SwQQ5cwKy0dhSXdOncEhb1CPpvQG4h7FyOV6EB6YlV0yJvZQNAkA==","shasum":"1b221c6088ba7799601c808f91161c66e58f8978","tarball":"https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-4.0.0.tgz","fileCount":4,"unpackedSize":4188,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbJ5ttCRA9TVsSAnZWagAAglMP/jRiEgJ7UlDVGS0SXKGr\nUhtSes+PHtQwOBskZyYFsUFM1mWinDU0kb8uH8zC/PsXM/iEt02AXrLUlq2K\nx0/YEOZYzm0NJLhqhBnq+m4QYYRehG/cUHTyMm1uHmCHayfR9Yythf67QuGo\nHtqTUFf2ejb/YfvJxDT8iycS/eOPVf9Dqr6CF2saRTB8e+O6WuZV3qxVGJIx\nGASomkuhvOzVjy1pgsS1tkp+J1SgSuICg++bsZQlzoRCv4eaiJcBu9nKJXpN\nWRdiBOiLge5IwiLvecjhIHPuyBhVz9sgtq8Oe47TCgcLohi1U3F3me0L2zcU\nDcooJTLiIKzGZ/ku3Bgc4RkQZj38pbNLdd/UmYi3Znswwf5gDqpeIhd2FYnB\nC1t6Td/ZteAZVeZk6WbWMgewqSZnUTaL/4RBv1E/ok3fqfm1IMyabOR+3kSu\n6XTt1Jav3cHIakzpr/6cjjvbaq/EqxzICcNFN0fEsVP1qaSkq/Q28b0pCSJH\nvKiOkD7gjflAr27In7ZOoUUSM5LqDhWRfZiWzkdE05TBRGW3RlWA9AoITKwD\nboyk89XZAdo1sABi0TmnMmZi4xGF5zISdUjpLuq/eY3Ymq+GtY4VLPt6m4Hp\nGpmqyWKsYEaiUlBUY70D6jT+skaUNyz357UCgvAO33KWjTrXj1xz+13Lu2JJ\nrWz4\r\n=/hGJ\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=6"}}},"name":"read-pkg-up","dist-tags":{"latest":"4.0.0"},"modified":"2018-06-18T11:45:55.820Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/31/07/fecabf0bf034cf489bd13c94050fd23d987397748bc569f23089b8eed2b778b4bb9cad2c12d960efed761d53b2c576b1d055f33fe9ae2abf3f58a3362e41 b/npm/.npm/_cacache/content-v2/sha512/31/07/fecabf0bf034cf489bd13c94050fd23d987397748bc569f23089b8eed2b778b4bb9cad2c12d960efed761d53b2c576b1d055f33fe9ae2abf3f58a3362e41 new file mode 100644 index 0000000..460333f --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/31/07/fecabf0bf034cf489bd13c94050fd23d987397748bc569f23089b8eed2b778b4bb9cad2c12d960efed761d53b2c576b1d055f33fe9ae2abf3f58a3362e41 @@ -0,0 +1 @@ +{"versions":{"0.0.0":{"name":"minimist","version":"0.0.0","devDependencies":{"tape":"~1.0.4","tap":"~0.4.0"},"directories":{},"dist":{"shasum":"0f62459b3333ea881e554e400243e130ef123568","tarball":"http://registry.npmjs.org/minimist/-/minimist-0.0.0.tgz"}},"0.0.1":{"name":"minimist","version":"0.0.1","devDependencies":{"tape":"~1.0.4","tap":"~0.4.0"},"directories":{},"dist":{"shasum":"fa2439fbf7da8525c51b2a74e2815b380abc8ab6","tarball":"http://registry.npmjs.org/minimist/-/minimist-0.0.1.tgz"}},"0.0.2":{"name":"minimist","version":"0.0.2","devDependencies":{"tape":"~1.0.4","tap":"~0.4.0"},"directories":{},"dist":{"shasum":"3297e0500be195b8fcb56668c45b925bc9bca7ab","tarball":"http://registry.npmjs.org/minimist/-/minimist-0.0.2.tgz"}},"0.0.3":{"name":"minimist","version":"0.0.3","devDependencies":{"tape":"~1.0.4","tap":"~0.4.0"},"directories":{},"dist":{"shasum":"a7a2ef8fbafecbae6c1baa4e56ad81e77acacb94","tarball":"http://registry.npmjs.org/minimist/-/minimist-0.0.3.tgz"}},"0.0.4":{"name":"minimist","version":"0.0.4","devDependencies":{"tape":"~1.0.4","tap":"~0.4.0"},"directories":{},"dist":{"shasum":"db41b1028484927a9425765b954075f5082f5048","tarball":"http://registry.npmjs.org/minimist/-/minimist-0.0.4.tgz"}},"0.0.5":{"name":"minimist","version":"0.0.5","devDependencies":{"tape":"~1.0.4","tap":"~0.4.0"},"directories":{},"dist":{"shasum":"d7aa327bcecf518f9106ac6b8f003fa3bcea8566","tarball":"http://registry.npmjs.org/minimist/-/minimist-0.0.5.tgz"}},"0.0.6":{"name":"minimist","version":"0.0.6","devDependencies":{"tape":"~1.0.4","tap":"~0.4.0"},"directories":{},"dist":{"shasum":"a515054dd7de651410a5511ef6b2d7fdcb596394","tarball":"http://registry.npmjs.org/minimist/-/minimist-0.0.6.tgz"}},"0.0.7":{"name":"minimist","version":"0.0.7","devDependencies":{"tape":"~1.0.4","tap":"~0.4.0"},"directories":{},"dist":{"shasum":"dc4c620253c542eda0d2eb91c3c6a971a11e63e7","tarball":"http://registry.npmjs.org/minimist/-/minimist-0.0.7.tgz"}},"0.0.8":{"name":"minimist","version":"0.0.8","devDependencies":{"tape":"~1.0.4","tap":"~0.4.0"},"directories":{},"dist":{"shasum":"857fcabfc3397d2625b8228262e86aa7a011b05d","tarball":"http://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz"}},"0.0.9":{"name":"minimist","version":"0.0.9","devDependencies":{"tape":"~1.0.4","tap":"~0.4.0"},"directories":{},"dist":{"shasum":"04e6034ffbf572be2fe42cf1da2c696be0901917","tarball":"http://registry.npmjs.org/minimist/-/minimist-0.0.9.tgz"}},"0.0.10":{"name":"minimist","version":"0.0.10","devDependencies":{"tape":"~1.0.4","tap":"~0.4.0"},"directories":{},"dist":{"shasum":"de3f98543dbf96082be48ad1a0c7cda836301dcf","tarball":"http://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz"}},"0.1.0":{"name":"minimist","version":"0.1.0","devDependencies":{"tape":"~1.0.4","tap":"~0.4.0"},"directories":{},"dist":{"shasum":"99df657a52574c21c9057497df742790b2b4c0de","tarball":"http://registry.npmjs.org/minimist/-/minimist-0.1.0.tgz"}},"0.2.0":{"name":"minimist","version":"0.2.0","devDependencies":{"tape":"~1.0.4","tap":"~0.4.0"},"directories":{},"dist":{"shasum":"4dffe525dae2b864c66c2e23c6271d7afdecefce","tarball":"http://registry.npmjs.org/minimist/-/minimist-0.2.0.tgz"}},"1.0.0":{"name":"minimist","version":"1.0.0","devDependencies":{"tape":"~1.0.4","tap":"~0.4.0"},"directories":{},"dist":{"shasum":"9429c4f83e0d22590a76aeb610006dcc3f89c70f","tarball":"http://registry.npmjs.org/minimist/-/minimist-1.0.0.tgz"}},"1.1.0":{"name":"minimist","version":"1.1.0","devDependencies":{"tape":"~1.0.4","tap":"~0.4.0","covert":"^1.0.0"},"directories":{},"dist":{"shasum":"cdf225e8898f840a258ded44fc91776770afdc93","tarball":"http://registry.npmjs.org/minimist/-/minimist-1.1.0.tgz"}},"1.1.1":{"name":"minimist","version":"1.1.1","devDependencies":{"covert":"^1.0.0","tap":"~0.4.0","tape":"^3.5.0"},"directories":{},"dist":{"shasum":"1bc2bc71658cdca5712475684363615b0b4f695b","tarball":"http://registry.npmjs.org/minimist/-/minimist-1.1.1.tgz"}},"1.1.2":{"name":"minimist","version":"1.1.2","devDependencies":{"covert":"^1.0.0","tap":"~0.4.0","tape":"^3.5.0"},"directories":{},"dist":{"shasum":"af960b80caf71b38236352af7fef10a8efceeae3","tarball":"http://registry.npmjs.org/minimist/-/minimist-1.1.2.tgz"}},"1.1.3":{"name":"minimist","version":"1.1.3","devDependencies":{"covert":"^1.0.0","tap":"~0.4.0","tape":"^3.5.0"},"directories":{},"dist":{"shasum":"3bedfd91a92d39016fcfaa1c681e8faa1a1efda8","tarball":"http://registry.npmjs.org/minimist/-/minimist-1.1.3.tgz"}},"1.2.0":{"name":"minimist","version":"1.2.0","devDependencies":{"covert":"^1.0.0","tap":"~0.4.0","tape":"^3.5.0"},"directories":{},"dist":{"shasum":"a35008b20f41383eec1fb914f4cd5df79a264284","tarball":"http://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz"}}},"name":"minimist","dist-tags":{"latest":"1.2.0"},"modified":"2018-09-27T08:51:13.143Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/31/ba/6dffcadb47cc4d1beeca48e2200469d164bab7a54a573210cd3987894f72c7d7c33cc7c765188a06acfe80753cd0a0d962aea34a307eaf532060dbd5f047 b/npm/.npm/_cacache/content-v2/sha512/31/ba/6dffcadb47cc4d1beeca48e2200469d164bab7a54a573210cd3987894f72c7d7c33cc7c765188a06acfe80753cd0a0d962aea34a307eaf532060dbd5f047 new file mode 100644 index 0000000..51d5fc6 --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/31/ba/6dffcadb47cc4d1beeca48e2200469d164bab7a54a573210cd3987894f72c7d7c33cc7c765188a06acfe80753cd0a0d962aea34a307eaf532060dbd5f047 @@ -0,0 +1 @@ +{"versions":{"1.0.0":{"name":"number-is-nan","version":"1.0.0","devDependencies":{"ava":"0.0.4"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"c020f529c5282adfdd233d91d4b181c3d686dc4b","tarball":"https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.0.tgz"},"engines":{"node":">=0.10.0"}},"1.0.1":{"name":"number-is-nan","version":"1.0.1","devDependencies":{"ava":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"097b602b53422a522c1afb8790318336941a011d","tarball":"https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz"},"engines":{"node":">=0.10.0"}}},"name":"number-is-nan","dist-tags":{"latest":"1.0.1"},"modified":"2017-10-08T11:06:59.655Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/33/fa/461c915d545b6a88b8990a1d22befeeed74191a809fbf619a81ce4cae4d84e80513ebbf4f65c4f2afaab89828d6d1b51ffc26300fe816c3b5d5a219a267a b/npm/.npm/_cacache/content-v2/sha512/33/fa/461c915d545b6a88b8990a1d22befeeed74191a809fbf619a81ce4cae4d84e80513ebbf4f65c4f2afaab89828d6d1b51ffc26300fe816c3b5d5a219a267a new file mode 100644 index 0000000..262f271 --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/33/fa/461c915d545b6a88b8990a1d22befeeed74191a809fbf619a81ce4cae4d84e80513ebbf4f65c4f2afaab89828d6d1b51ffc26300fe816c3b5d5a219a267a @@ -0,0 +1 @@ +{"versions":{"0.0.1":{"name":"mkdirp","version":"0.0.1","directories":{},"dist":{"shasum":"3fbd9f4711a5234233dc6c9d7a052d4b9f83b416","tarball":"http://registry.npmjs.org/mkdirp/-/mkdirp-0.0.1.tgz"},"engines":{"node":"*"}},"0.0.2":{"name":"mkdirp","version":"0.0.2","directories":{},"dist":{"shasum":"d9438082daac12691c71d64076706c8a5c3511b6","tarball":"http://registry.npmjs.org/mkdirp/-/mkdirp-0.0.2.tgz"},"engines":{"node":"*"}},"0.0.3":{"name":"mkdirp","version":"0.0.3","dependencies":{},"devDependencies":{"expresso":"0.7.x"},"directories":{},"dist":{"shasum":"5a7d88a26857023759ffee7fe4c0b28b0f0066b9","tarball":"http://registry.npmjs.org/mkdirp/-/mkdirp-0.0.3.tgz"},"engines":{"node":"*"}},"0.0.4":{"name":"mkdirp","version":"0.0.4","dependencies":{},"devDependencies":{"expresso":"0.7.x"},"directories":{},"dist":{"shasum":"fbb491deec0b9b00869f52582e5f431b3681d2f5","tarball":"http://registry.npmjs.org/mkdirp/-/mkdirp-0.0.4.tgz"},"engines":{"node":"*"}},"0.0.5":{"name":"mkdirp","version":"0.0.5","dependencies":{},"devDependencies":{"expresso":"0.7.x"},"directories":{},"dist":{"shasum":"375facfa634b17dcdf734c56f59ddae5102811c8","tarball":"http://registry.npmjs.org/mkdirp/-/mkdirp-0.0.5.tgz"},"engines":{"node":"*"}},"0.0.6":{"name":"mkdirp","version":"0.0.6","dependencies":{},"devDependencies":{"expresso":"0.7.x"},"directories":{},"dist":{"shasum":"0965de71060cf5e237ffa795243cb5d9a78d335b","tarball":"http://registry.npmjs.org/mkdirp/-/mkdirp-0.0.6.tgz"},"engines":{"node":"*"}},"0.0.7":{"name":"mkdirp","version":"0.0.7","dependencies":{},"devDependencies":{"tap":"0.0.x"},"directories":{},"dist":{"shasum":"d89b4f0e4c3e5e5ca54235931675e094fe1a5072","tarball":"http://registry.npmjs.org/mkdirp/-/mkdirp-0.0.7.tgz"},"engines":{"node":"*"}},"0.1.0":{"name":"mkdirp","version":"0.1.0","dependencies":{},"devDependencies":{"tap":"0.0.x"},"directories":{},"dist":{"shasum":"53212930f7bd75f187b6c8688eb0a5fd69b7d118","tarball":"http://registry.npmjs.org/mkdirp/-/mkdirp-0.1.0.tgz"},"engines":{"node":"*"}},"0.2.0":{"name":"mkdirp","version":"0.2.0","dependencies":{},"devDependencies":{"tap":"0.0.x"},"directories":{},"dist":{"shasum":"29dd87f198880b568d1efce0980e7231b048f3aa","tarball":"http://registry.npmjs.org/mkdirp/-/mkdirp-0.2.0.tgz"},"engines":{"node":"*"}},"0.2.1":{"name":"mkdirp","version":"0.2.1","dependencies":{},"devDependencies":{"tap":"0.0.x"},"directories":{},"dist":{"shasum":"2ef920435c8511e135137a33f18a9e40cf9dd166","tarball":"http://registry.npmjs.org/mkdirp/-/mkdirp-0.2.1.tgz"},"engines":{"node":"*"}},"0.2.2":{"name":"mkdirp","version":"0.2.2","dependencies":{},"devDependencies":{"tap":"0.0.x"},"directories":{},"dist":{"shasum":"7235f2a2062aaf3619189b9f4772114c30944498","tarball":"http://registry.npmjs.org/mkdirp/-/mkdirp-0.2.2.tgz"},"engines":{"node":"*"}},"0.3.0":{"name":"mkdirp","version":"0.3.0","dependencies":{},"devDependencies":{"tap":"0.0.x"},"directories":{},"dist":{"shasum":"1bbf5ab1ba827af23575143490426455f481fe1e","tarball":"http://registry.npmjs.org/mkdirp/-/mkdirp-0.3.0.tgz"},"engines":{"node":"*"}},"0.3.1":{"name":"mkdirp","version":"0.3.1","dependencies":{},"optionalDependencies":{},"devDependencies":{"tap":"~0.2.4"},"directories":{},"dist":{"shasum":"bee3db22a2aa1c81d4b4c0db39c7da9888799593","tarball":"http://registry.npmjs.org/mkdirp/-/mkdirp-0.3.1.tgz"},"engines":{"node":"*"}},"0.3.2":{"name":"mkdirp","version":"0.3.2","dependencies":{},"optionalDependencies":{},"devDependencies":{"tap":"~0.2.4"},"directories":{},"dist":{"shasum":"4bfb891e9c48b93d6b567f2c3cf2dd3f56bcdef8","tarball":"http://registry.npmjs.org/mkdirp/-/mkdirp-0.3.2.tgz"},"engines":{"node":"*"}},"0.3.3":{"name":"mkdirp","version":"0.3.3","dependencies":{},"optionalDependencies":{},"devDependencies":{"tap":"~0.2.4"},"directories":{},"dist":{"shasum":"595e251c1370c3a68bab2136d0e348b8105adf13","tarball":"http://registry.npmjs.org/mkdirp/-/mkdirp-0.3.3.tgz"},"engines":{"node":"*"}},"0.3.4":{"name":"mkdirp","version":"0.3.4","devDependencies":{"tap":"~0.2.4"},"directories":{},"dist":{"shasum":"f8c81d213b7299a031f193a57d752a17d2f6c7d8","tarball":"http://registry.npmjs.org/mkdirp/-/mkdirp-0.3.4.tgz"},"engines":{"node":"*"}},"0.3.5":{"name":"mkdirp","version":"0.3.5","devDependencies":{"tap":"~0.4.0"},"directories":{},"dist":{"shasum":"de3e5f8961c88c787ee1368df849ac4413eca8d7","tarball":"http://registry.npmjs.org/mkdirp/-/mkdirp-0.3.5.tgz"}},"0.4.0":{"name":"mkdirp","version":"0.4.0","devDependencies":{"tap":"~0.4.0"},"bin":{"mkdirp":"bin/cmd.js"},"directories":{},"dist":{"shasum":"291ac2a2d43a19c478662577b5be846fe83b5923","tarball":"http://registry.npmjs.org/mkdirp/-/mkdirp-0.4.0.tgz"}},"0.4.1":{"name":"mkdirp","version":"0.4.1","dependencies":{"minimist":"0.0.8"},"devDependencies":{"tap":"~0.4.0"},"bin":{"mkdirp":"bin/cmd.js"},"directories":{},"dist":{"shasum":"4d467afabfdf8ae460c2da656eae8f7b21af4558","tarball":"http://registry.npmjs.org/mkdirp/-/mkdirp-0.4.1.tgz"}},"0.4.2":{"name":"mkdirp","version":"0.4.2","dependencies":{"minimist":"0.0.8"},"devDependencies":{"tap":"~0.4.0"},"bin":{"mkdirp":"bin/cmd.js"},"directories":{},"dist":{"shasum":"427c8c18ece398b932f6f666f4e1e5b7740e78c8","tarball":"http://registry.npmjs.org/mkdirp/-/mkdirp-0.4.2.tgz"}},"0.5.0":{"name":"mkdirp","version":"0.5.0","dependencies":{"minimist":"0.0.8"},"devDependencies":{"tap":"~0.4.0","mock-fs":"~2.2.0"},"bin":{"mkdirp":"bin/cmd.js"},"directories":{},"dist":{"shasum":"1d73076a6df986cd9344e15e71fcc05a4c9abf12","tarball":"http://registry.npmjs.org/mkdirp/-/mkdirp-0.5.0.tgz"}},"0.5.1":{"name":"mkdirp","version":"0.5.1","dependencies":{"minimist":"0.0.8"},"devDependencies":{"tap":"1","mock-fs":"2 >=2.7.0"},"bin":{"mkdirp":"bin/cmd.js"},"directories":{},"dist":{"shasum":"30057438eac6cf7f8c4767f38648d6697d75c903","tarball":"http://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz"}}},"name":"mkdirp","dist-tags":{"latest":"0.5.1"},"modified":"2018-08-29T02:22:26.088Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/35/ad/68e544a5b7f34820e6cd0130d7543de806c089bd0a6ea95482c5be0f760f1aa7939ef4864a721da03cf9d7625e0c5e631a9e66616dc8a8aaf435d8f00b58 b/npm/.npm/_cacache/content-v2/sha512/35/ad/68e544a5b7f34820e6cd0130d7543de806c089bd0a6ea95482c5be0f760f1aa7939ef4864a721da03cf9d7625e0c5e631a9e66616dc8a8aaf435d8f00b58 new file mode 100644 index 0000000..8420d54 --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/35/ad/68e544a5b7f34820e6cd0130d7543de806c089bd0a6ea95482c5be0f760f1aa7939ef4864a721da03cf9d7625e0c5e631a9e66616dc8a8aaf435d8f00b58 @@ -0,0 +1 @@ +{"versions":{"0.9.0-1.2.3":{"name":"dateformat","version":"0.9.0-1.2.3","_hasShrinkwrap":false,"directories":{"lib":"./lib"},"dist":{"shasum":"ae779067d225240d8bd5ca33718a2c4980bdd8be","tarball":"https://registry.npmjs.org/dateformat/-/dateformat-0.9.0-1.2.3.tgz"},"engines":{"node":"*"}},"1.0.0-1.2.3":{"name":"dateformat","version":"1.0.0-1.2.3","_hasShrinkwrap":false,"directories":{"lib":"./lib"},"dist":{"shasum":"dec87d759f2cf83f581459b1bed3b631784991e7","tarball":"https://registry.npmjs.org/dateformat/-/dateformat-1.0.0-1.2.3.tgz"},"engines":{"node":"*"}},"1.0.1-1.2.3":{"name":"dateformat","version":"1.0.1-1.2.3","dependencies":{},"devDependencies":{},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"2e5d03039eca89f9d8797f99389de5fb0f4aa2fc","tarball":"https://registry.npmjs.org/dateformat/-/dateformat-1.0.1-1.2.3.tgz"},"engines":{"node":"*"}},"1.0.2-1.2.3":{"name":"dateformat","version":"1.0.2-1.2.3","dependencies":{},"devDependencies":{},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"b0220c02de98617433b72851cf47de3df2cdbee9","tarball":"https://registry.npmjs.org/dateformat/-/dateformat-1.0.2-1.2.3.tgz"},"engines":{"node":"*"}},"1.0.3-1.2.3":{"name":"dateformat","version":"1.0.3-1.2.3","dependencies":{},"optionalDependencies":{},"devDependencies":{},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"ab11b3ce0274c4c6da7d8a716fb062610dab9f40","tarball":"https://registry.npmjs.org/dateformat/-/dateformat-1.0.3-1.2.3.tgz"},"engines":{"node":"*"}},"1.0.4-1.2.3":{"name":"dateformat","version":"1.0.4-1.2.3","dependencies":{},"optionalDependencies":{},"devDependencies":{},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"4c12b101bddbb8880c2356da6e454459a5eb8b75","tarball":"https://registry.npmjs.org/dateformat/-/dateformat-1.0.4-1.2.3.tgz"},"engines":{"node":"*"}},"1.0.5-1.2.3":{"name":"dateformat","version":"1.0.5-1.2.3","dependencies":{},"devDependencies":{},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"f020b523df34cad3cd843f556f61f6d97c87b16e","tarball":"https://registry.npmjs.org/dateformat/-/dateformat-1.0.5-1.2.3.tgz"},"engines":{"node":"*"}},"1.0.6-1.2.3":{"name":"dateformat","version":"1.0.6-1.2.3","dependencies":{},"devDependencies":{},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"6b3de9f974f698d8b2d3ff9094bbaac8d696c16b","tarball":"https://registry.npmjs.org/dateformat/-/dateformat-1.0.6-1.2.3.tgz"},"engines":{"node":"*"}},"1.0.7-1.2.3":{"name":"dateformat","version":"1.0.7-1.2.3","dependencies":{},"devDependencies":{},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"ebb561bb7214ee57a8dc2687adab1d555de9419c","tarball":"https://registry.npmjs.org/dateformat/-/dateformat-1.0.7-1.2.3.tgz"},"engines":{"node":"*"}},"1.0.8-1.2.3":{"name":"dateformat","version":"1.0.8-1.2.3","dependencies":{},"devDependencies":{},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"5d60c5d574dc778a7f98139156c6cfc9d851d1e7","tarball":"https://registry.npmjs.org/dateformat/-/dateformat-1.0.8-1.2.3.tgz"},"engines":{"node":"*"}},"1.0.8":{"name":"dateformat","version":"1.0.8","dependencies":{},"devDependencies":{},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"87799a3de21bffbf028bdd7ad044981327ac0a26","tarball":"https://registry.npmjs.org/dateformat/-/dateformat-1.0.8.tgz"},"engines":{"node":"*"}},"1.0.9":{"name":"dateformat","version":"1.0.9","dependencies":{"get-stdin":"*","meow":"*"},"devDependencies":{"for-own":"^0.1.2","mocha":"^2.0.1","should":"^4.0.4"},"bin":{"dateformat":"bin/cli.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"51cd7e33de43500c8cc0f7030af248d36c73ab15","tarball":"https://registry.npmjs.org/dateformat/-/dateformat-1.0.9.tgz"},"engines":{"node":"*"}},"1.0.10":{"name":"dateformat","version":"1.0.10","dependencies":{"get-stdin":"*","meow":"*"},"devDependencies":{"for-own":"^0.1.2","mocha":"^2.0.1","should":"^4.0.4"},"bin":{"dateformat":"bin/cli.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"12a020a4694d68dcea307a762cbdcad54148783c","tarball":"https://registry.npmjs.org/dateformat/-/dateformat-1.0.10.tgz"},"engines":{"node":"*"}},"1.0.11":{"name":"dateformat","version":"1.0.11","dependencies":{"get-stdin":"*","meow":"*"},"devDependencies":{"underscore":"1.7.0","mocha":"2.0.1"},"bin":{"dateformat":"bin/cli.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"f27cbee7a012bbfb82ea051562d3977f6093dbb1","tarball":"https://registry.npmjs.org/dateformat/-/dateformat-1.0.11.tgz"},"engines":{"node":"*"}},"1.0.12":{"name":"dateformat","version":"1.0.12","dependencies":{"get-stdin":"^4.0.1","meow":"^3.3.0"},"devDependencies":{"underscore":"1.7.0","mocha":"2.0.1"},"bin":{"dateformat":"bin/cli.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"9f124b67594c937ff706932e4a642cca8dbbfee9","tarball":"https://registry.npmjs.org/dateformat/-/dateformat-1.0.12.tgz"},"engines":{"node":"*"}},"2.0.0":{"name":"dateformat","version":"2.0.0","devDependencies":{"underscore":"1.7.0","mocha":"2.0.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"2743e3abb5c3fc2462e527dca445e04e9f4dee17","tarball":"https://registry.npmjs.org/dateformat/-/dateformat-2.0.0.tgz"},"engines":{"node":"*"}},"3.0.0":{"name":"dateformat","version":"3.0.0","devDependencies":{"underscore":"1.7.0","mocha":"2.0.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"a42a1ab816ff3170e238a3d7188f9aa3d287542a","tarball":"https://registry.npmjs.org/dateformat/-/dateformat-3.0.0.tgz"},"engines":{"node":"*"}},"2.2.0":{"name":"dateformat","version":"2.2.0","devDependencies":{"underscore":"1.7.0","mocha":"2.0.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"4065e2013cf9fb916ddfd82efb506ad4c6769062","tarball":"https://registry.npmjs.org/dateformat/-/dateformat-2.2.0.tgz"},"engines":{"node":"*"}},"3.0.1":{"name":"dateformat","version":"3.0.1","devDependencies":{"underscore":"1.7.0","mocha":"2.0.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"96f54d7e81b0c971334b385b0711abf23842cf6e","tarball":"https://registry.npmjs.org/dateformat/-/dateformat-3.0.1.tgz"},"engines":{"node":"*"}},"3.0.2":{"name":"dateformat","version":"3.0.2","devDependencies":{"underscore":"1.7.0","mocha":"2.0.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"9a4df4bff158ac2f34bc637abdb15471607e1659","tarball":"https://registry.npmjs.org/dateformat/-/dateformat-3.0.2.tgz"},"engines":{"node":"*"}},"3.0.3":{"name":"dateformat","version":"3.0.3","devDependencies":{"underscore":"1.7.0","mocha":"2.0.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==","shasum":"a6e37499a4d9a9cf85ef5872044d62901c9889ae","tarball":"https://registry.npmjs.org/dateformat/-/dateformat-3.0.3.tgz","fileCount":4,"unpackedSize":15045},"engines":{"node":"*"}}},"name":"dateformat","dist-tags":{"latest":"3.0.3"},"modified":"2018-03-14T03:19:01.344Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/36/bc/6068ac3dcc69218a93b8d68dc39f989e04a7d51885f85710b4a1d3b9d528f9637e3c0df65883ca9d65b3b729f59ddf6f9775d2d4ccf61d76eacf21b2e08e b/npm/.npm/_cacache/content-v2/sha512/36/bc/6068ac3dcc69218a93b8d68dc39f989e04a7d51885f85710b4a1d3b9d528f9637e3c0df65883ca9d65b3b729f59ddf6f9775d2d4ccf61d76eacf21b2e08e new file mode 100644 index 0000000..fb96475 --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/36/bc/6068ac3dcc69218a93b8d68dc39f989e04a7d51885f85710b4a1d3b9d528f9637e3c0df65883ca9d65b3b729f59ddf6f9775d2d4ccf61d76eacf21b2e08e @@ -0,0 +1 @@ +{"versions":{"0.0.0":{"name":"fs.realpath","version":"0.0.0","dependencies":{},"devDependencies":{},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"ee31b09e1272a8c6e58714abcacded5bd7cf7c6d","tarball":"https://registry.npmjs.org/fs.realpath/-/fs.realpath-0.0.0.tgz"}},"1.0.0":{"name":"fs.realpath","version":"1.0.0","dependencies":{},"devDependencies":{},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"1504ad2523158caa40db4a2787cb01411994ea4f","tarball":"https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz"}}},"name":"fs.realpath","dist-tags":{"latest":"1.0.0"},"modified":"2016-11-01T17:25:20.989Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/38/93/26ffe28f782d79b2ab9c4ad10188656f2de404242d049cb739a19e853dabea4b51d8cc8407b976b2a24dce9239a81daeadbf89d9bff321a5316d1b038fbb b/npm/.npm/_cacache/content-v2/sha512/38/93/26ffe28f782d79b2ab9c4ad10188656f2de404242d049cb739a19e853dabea4b51d8cc8407b976b2a24dce9239a81daeadbf89d9bff321a5316d1b038fbb new file mode 100644 index 0000000..077dd78 --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/38/93/26ffe28f782d79b2ab9c4ad10188656f2de404242d049cb739a19e853dabea4b51d8cc8407b976b2a24dce9239a81daeadbf89d9bff321a5316d1b038fbb @@ -0,0 +1 @@ +{"versions":{"0.1.0":{"name":"findup-sync","version":"0.1.0","dependencies":{"glob":"~3.1.14","lodash":"~0.9.1"},"devDependencies":{"grunt":"~0.4.0a","grunt-contrib-jshint":"~0.1.0","grunt-contrib-nodeunit":"~0.1.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"d1e43452029fb85c729e44108d39f2e8df930191","tarball":"https://registry.npmjs.org/findup-sync/-/findup-sync-0.1.0.tgz"},"engines":{"node":">= 0.6.0"}},"0.1.1":{"name":"findup-sync","version":"0.1.1","dependencies":{"glob":"~3.1.14","lodash":"~0.9.1"},"devDependencies":{"grunt":"~0.4.0a","grunt-contrib-jshint":"~0.1.0","grunt-contrib-nodeunit":"~0.1.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"eea3f9d3954738c92cf56efe23ece4f63d0419a8","tarball":"https://registry.npmjs.org/findup-sync/-/findup-sync-0.1.1.tgz"},"engines":{"node":">= 0.6.0"}},"0.1.2":{"name":"findup-sync","version":"0.1.2","dependencies":{"glob":"~3.1.21","lodash":"~1.0.1"},"devDependencies":{"grunt":"~0.4.0","grunt-contrib-jshint":"~0.2.0","grunt-contrib-nodeunit":"~0.1.2"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"da2b96ca9f800e5a13d0a11110f490b65f62e96d","tarball":"https://registry.npmjs.org/findup-sync/-/findup-sync-0.1.2.tgz"},"engines":{"node":">= 0.6.0"}},"0.1.3":{"name":"findup-sync","version":"0.1.3","dependencies":{"glob":"~3.2.9","lodash":"~2.4.1"},"devDependencies":{"grunt":"~0.4.4","grunt-contrib-jshint":"~0.9.2","grunt-contrib-nodeunit":"~0.3.3"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"7f3e7a97b82392c653bf06589bd85190e93c3683","tarball":"https://registry.npmjs.org/findup-sync/-/findup-sync-0.1.3.tgz"},"engines":{"node":">= 0.6.0"}},"0.2.0":{"name":"findup-sync","version":"0.2.0","dependencies":{"glob":"~4.0.0"},"devDependencies":{"grunt":"~0.4.4","grunt-contrib-jshint":"~0.9.2","grunt-contrib-nodeunit":"~0.3.3"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"9034f525333d198b743292411470420c7a37d6ca","tarball":"https://registry.npmjs.org/findup-sync/-/findup-sync-0.2.0.tgz"},"engines":{"node":">= 0.6.0"}},"0.2.1":{"name":"findup-sync","version":"0.2.1","dependencies":{"glob":"~4.3.0"},"devDependencies":{"grunt":"~0.4.4","grunt-contrib-jshint":"~0.9.2","grunt-contrib-nodeunit":"~0.3.3"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"e0a90a450075c49466ee513732057514b81e878c","tarball":"https://registry.npmjs.org/findup-sync/-/findup-sync-0.2.1.tgz"},"engines":{"node":">= 0.6.0"}},"0.3.0":{"name":"findup-sync","version":"0.3.0","dependencies":{"glob":"~5.0.0"},"devDependencies":{"grunt":"~0.4.4","grunt-contrib-jshint":"~0.9.2","grunt-contrib-nodeunit":"~0.3.3"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"37930aa5d816b777c03445e1966cc6790a4c0b16","tarball":"https://registry.npmjs.org/findup-sync/-/findup-sync-0.3.0.tgz"},"engines":{"node":">= 0.6.0"}},"0.4.0":{"name":"findup-sync","version":"0.4.0","dependencies":{"is-glob":"^2.0.1","micromatch":"^2.3.7","resolve-dir":"^0.1.0"},"devDependencies":{"grunt":"^0.4.5","grunt-contrib-jshint":"^0.12.0","is-absolute":"^0.2.3","minimist":"^1.2.0","mocha":"^2.4.5","normalize-path":"^2.0.1","resolve":"^1.1.7","user-home":"^2.0.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"116661b63ba31b65a1988df378fc518325af5e9a","tarball":"https://registry.npmjs.org/findup-sync/-/findup-sync-0.4.0.tgz"},"engines":{"node":">= 0.8.0"}},"0.4.1":{"name":"findup-sync","version":"0.4.1","dependencies":{"fs-exists-sync":"^0.1.0","is-glob":"^2.0.1","micromatch":"^2.3.7","resolve-dir":"^0.1.0"},"devDependencies":{"grunt":"^1.0.1","grunt-contrib-jshint":"^0.12.0","is-absolute":"^0.2.3","minimist":"^1.2.0","mocha":"^2.4.5","normalize-path":"^2.0.1","os-homedir":"^1.0.1","resolve":"^1.1.7"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"77073e86c606b303473d502f08d089ea2809a7c9","tarball":"https://registry.npmjs.org/findup-sync/-/findup-sync-0.4.1.tgz"},"engines":{"node":">= 0.8.0"}},"0.4.2":{"name":"findup-sync","version":"0.4.2","dependencies":{"detect-file":"^0.1.0","is-glob":"^2.0.1","micromatch":"^2.3.7","resolve-dir":"^0.1.0"},"devDependencies":{"fs-exists-sync":"^0.1.0","grunt":"^1.0.1","grunt-contrib-jshint":"^0.12.0","is-absolute":"^0.2.3","minimist":"^1.2.0","mocha":"^2.4.5","normalize-path":"^2.0.1","os-homedir":"^1.0.1","resolve":"^1.1.7"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"a8117d0f73124f5a4546839579fe52d7129fb5e5","tarball":"https://registry.npmjs.org/findup-sync/-/findup-sync-0.4.2.tgz"},"engines":{"node":">= 0.8.0"}},"0.4.3":{"name":"findup-sync","version":"0.4.3","dependencies":{"detect-file":"^0.1.0","is-glob":"^2.0.1","micromatch":"^2.3.7","resolve-dir":"^0.1.0"},"devDependencies":{"fs-exists-sync":"^0.1.0","grunt":"^1.0.1","grunt-contrib-jshint":"^0.12.0","is-absolute":"^0.2.3","minimist":"^1.2.0","mocha":"^2.4.5","normalize-path":"^2.0.1","os-homedir":"^1.0.1","resolve":"^1.1.7"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"40043929e7bc60adf0b7f4827c4c6e75a0deca12","tarball":"https://registry.npmjs.org/findup-sync/-/findup-sync-0.4.3.tgz"},"engines":{"node":">= 0.8.0"}},"1.0.0":{"name":"findup-sync","version":"1.0.0","dependencies":{"detect-file":"^0.1.0","is-glob":"^2.0.1","micromatch":"^2.3.7","resolve-dir":"^0.1.0"},"devDependencies":{"fs-exists-sync":"^0.1.0","grunt":"^1.0.1","grunt-contrib-jshint":"^0.12.0","is-absolute":"^0.2.3","minimist":"^1.2.0","mocha":"^2.4.5","normalize-path":"^2.0.1","os-homedir":"^1.0.1","resolve":"^1.1.7"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"6f7e4b57b6ee3a4037b4414eaedea3f58f71e0ec","tarball":"https://registry.npmjs.org/findup-sync/-/findup-sync-1.0.0.tgz"},"engines":{"node":">= 0.8.0"}},"2.0.0":{"name":"findup-sync","version":"2.0.0","dependencies":{"detect-file":"^1.0.0","is-glob":"^3.1.0","micromatch":"^3.0.4","resolve-dir":"^1.0.1"},"devDependencies":{"homedir-polyfill":"^1.0.1","is-absolute":"^1.0.0","jshint":"^2.9.5","mocha":"^3.5.0","normalize-path":"^2.1.1","resolve":"^1.4.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"9326b1488c22d1a6088650a86901b2d9a90a2cbc","tarball":"https://registry.npmjs.org/findup-sync/-/findup-sync-2.0.0.tgz"},"engines":{"node":">= 0.10"}}},"name":"findup-sync","dist-tags":{"latest":"2.0.0"},"modified":"2018-02-12T08:44:31.592Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/38/f1/361d06dd5cb1bf14c300ec49e34d38ca539acb9a7f06cefbd09e4ad68f13cef060e8ccb15e48fb8edc2b9438d26474fab0d653bc984f119e25bdcd157742 b/npm/.npm/_cacache/content-v2/sha512/38/f1/361d06dd5cb1bf14c300ec49e34d38ca539acb9a7f06cefbd09e4ad68f13cef060e8ccb15e48fb8edc2b9438d26474fab0d653bc984f119e25bdcd157742 new file mode 100644 index 0000000..080260d --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/38/f1/361d06dd5cb1bf14c300ec49e34d38ca539acb9a7f06cefbd09e4ad68f13cef060e8ccb15e48fb8edc2b9438d26474fab0d653bc984f119e25bdcd157742 @@ -0,0 +1 @@ +{"versions":{"1.0.0":{"name":"redent","version":"1.0.0","dependencies":{"indent-string":"^2.1.0","strip-indent":"^1.0.1"},"devDependencies":{"ava":"*","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde","tarball":"https://registry.npmjs.org/redent/-/redent-1.0.0.tgz"},"engines":{"node":">=0.10.0"}},"2.0.0":{"name":"redent","version":"2.0.0","dependencies":{"indent-string":"^3.0.0","strip-indent":"^2.0.0"},"devDependencies":{"ava":"*","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"c1b2007b42d57eb1389079b3c8333639d5e1ccaa","tarball":"https://registry.npmjs.org/redent/-/redent-2.0.0.tgz"},"engines":{"node":">=4"}}},"name":"redent","dist-tags":{"latest":"2.0.0"},"modified":"2016-07-10T22:08:32.052Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/39/b3/7a875bf67d32529945e84b79cc43dd8b6c32bd6dee1357ee86fa899094624575c517e6178a8b52d9d589d13088304cb123dc4db86d3ead6278b9d2b9427d b/npm/.npm/_cacache/content-v2/sha512/39/b3/7a875bf67d32529945e84b79cc43dd8b6c32bd6dee1357ee86fa899094624575c517e6178a8b52d9d589d13088304cb123dc4db86d3ead6278b9d2b9427d new file mode 100644 index 0000000..9b8ac9d Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha512/39/b3/7a875bf67d32529945e84b79cc43dd8b6c32bd6dee1357ee86fa899094624575c517e6178a8b52d9d589d13088304cb123dc4db86d3ead6278b9d2b9427d differ diff --git a/npm/.npm/_cacache/content-v2/sha512/3a/03/d3ca46ef91ca371290be147e02fe1ed3412af4cc53a3b6e84ca2589f08df0ab64c4006983827d17e0bb991409c3029769696b5c494d2c6b01b8faf6fd271 b/npm/.npm/_cacache/content-v2/sha512/3a/03/d3ca46ef91ca371290be147e02fe1ed3412af4cc53a3b6e84ca2589f08df0ab64c4006983827d17e0bb991409c3029769696b5c494d2c6b01b8faf6fd271 new file mode 100644 index 0000000..228d92d --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/3a/03/d3ca46ef91ca371290be147e02fe1ed3412af4cc53a3b6e84ca2589f08df0ab64c4006983827d17e0bb991409c3029769696b5c494d2c6b01b8faf6fd271 @@ -0,0 +1 @@ +{"versions":{"0.0.0":{"name":"resolve","version":"0.0.0","dependencies":{},"devDependencies":{"expresso":"=0.7.x"},"_hasShrinkwrap":false,"directories":{"lib":".","example":"example","test":"test"},"dist":{"shasum":"9a74e26be2ea4fb18960236f1448b0e38bcc93e5","tarball":"https://registry.npmjs.org/resolve/-/resolve-0.0.0.tgz"},"engines":{"node":">=0.4.0"}},"0.0.1":{"name":"resolve","version":"0.0.1","dependencies":{},"devDependencies":{"expresso":"=0.7.x"},"_hasShrinkwrap":false,"directories":{"lib":".","example":"example","test":"test"},"dist":{"shasum":"d7188e3ae59196f3556cd4cfcedf7a9b12fb55e9","tarball":"https://registry.npmjs.org/resolve/-/resolve-0.0.1.tgz"},"engines":{"node":">=0.4.0"}},"0.0.2":{"name":"resolve","version":"0.0.2","dependencies":{},"devDependencies":{"expresso":"=0.7.x"},"_hasShrinkwrap":false,"directories":{"lib":".","example":"example","test":"test"},"dist":{"shasum":"9c6835475096251f8b2e292ddd45df2974c64162","tarball":"https://registry.npmjs.org/resolve/-/resolve-0.0.2.tgz"},"engines":{"node":">=0.4.0"}},"0.0.3":{"name":"resolve","version":"0.0.3","dependencies":{},"devDependencies":{"expresso":"=0.7.x"},"_hasShrinkwrap":false,"directories":{"lib":".","example":"example","test":"test"},"dist":{"shasum":"8212502b729a63fe8dea0af1920a58538b161742","tarball":"https://registry.npmjs.org/resolve/-/resolve-0.0.3.tgz"},"engines":{"node":">=0.4.0"}},"0.0.4":{"name":"resolve","version":"0.0.4","dependencies":{},"devDependencies":{"expresso":"=0.7.x"},"_hasShrinkwrap":false,"directories":{"lib":".","example":"example","test":"test"},"dist":{"shasum":"b3f7d9c3b46a0f512984940a4b23f30176dda95d","tarball":"https://registry.npmjs.org/resolve/-/resolve-0.0.4.tgz"},"engines":{"node":">=0.4.0"}},"0.1.0":{"name":"resolve","version":"0.1.0","dependencies":{},"devDependencies":{"expresso":"=0.7.x"},"_hasShrinkwrap":false,"directories":{"lib":".","example":"example","test":"test"},"dist":{"shasum":"de35cfc7e7048e566f99056ad0b06d7cce8d49cb","tarball":"https://registry.npmjs.org/resolve/-/resolve-0.1.0.tgz"},"engines":{"node":">=0.4.0"}},"0.1.2":{"name":"resolve","version":"0.1.2","dependencies":{},"devDependencies":{"expresso":"=0.7.x"},"_hasShrinkwrap":false,"directories":{"lib":".","example":"example","test":"test"},"dist":{"shasum":"37eaa50a0b586adac455b9fa6dc45217e6b002e7","tarball":"https://registry.npmjs.org/resolve/-/resolve-0.1.2.tgz"},"engines":{"node":">=0.4.0"}},"0.1.3":{"name":"resolve","version":"0.1.3","dependencies":{},"devDependencies":{"expresso":"=0.7.x"},"_hasShrinkwrap":false,"directories":{"lib":".","example":"example","test":"test"},"dist":{"shasum":"204c18364bc529a0b376e4a714b7ba44f0d390d1","tarball":"https://registry.npmjs.org/resolve/-/resolve-0.1.3.tgz"},"engines":{"node":">=0.4.0"}},"0.2.0":{"name":"resolve","version":"0.2.0","dependencies":{},"devDependencies":{"expresso":"0.7.x"},"_hasShrinkwrap":false,"directories":{"lib":".","example":"example","test":"test"},"dist":{"shasum":"136daea49be374950974cd30858c66a6d1c9bbe4","tarball":"https://registry.npmjs.org/resolve/-/resolve-0.2.0.tgz"},"engines":{"node":">=0.4.0"}},"0.2.1":{"name":"resolve","version":"0.2.1","dependencies":{},"optionalDependencies":{},"devDependencies":{"tap":"~0.2.4"},"_hasShrinkwrap":false,"directories":{"lib":".","example":"example","test":"test"},"dist":{"shasum":"39689c97d867b40d865adec160358bee91da7f5a","tarball":"https://registry.npmjs.org/resolve/-/resolve-0.2.1.tgz"},"engines":{"node":">=0.4.0"}},"0.2.2":{"name":"resolve","version":"0.2.2","dependencies":{},"optionalDependencies":{},"devDependencies":{"tap":"~0.2.4"},"_hasShrinkwrap":false,"directories":{"lib":".","example":"example","test":"test"},"dist":{"shasum":"69116e81b47e0e4aa9a9231b271605a73dbf8b8d","tarball":"https://registry.npmjs.org/resolve/-/resolve-0.2.2.tgz"},"engines":{"node":">=0.4.0"}},"0.2.3":{"name":"resolve","version":"0.2.3","dependencies":{},"devDependencies":{"tap":"~0.2.4"},"_hasShrinkwrap":false,"directories":{"lib":".","example":"example","test":"test"},"dist":{"shasum":"f1eb7fb76436f91d87fd19c5f973fe7d506f6571","tarball":"https://registry.npmjs.org/resolve/-/resolve-0.2.3.tgz"},"engines":{"node":">=0.4.0"}},"0.2.4":{"name":"resolve","version":"0.2.4","dependencies":{},"devDependencies":{"tap":"~0.2.4"},"_hasShrinkwrap":false,"directories":{"lib":".","example":"example","test":"test"},"dist":{"shasum":"47d5e3e845108807480ffed66f40e533d330704d","tarball":"https://registry.npmjs.org/resolve/-/resolve-0.2.4.tgz"},"engines":{"node":">=0.4.0"}},"0.2.5":{"name":"resolve","version":"0.2.5","dependencies":{},"devDependencies":{"tap":"~0.2.4"},"_hasShrinkwrap":false,"directories":{"lib":".","example":"example","test":"test"},"dist":{"shasum":"2049e344ec140ac5c41024d5bdb4d9546336bf79","tarball":"https://registry.npmjs.org/resolve/-/resolve-0.2.5.tgz"},"engines":{"node":">=0.4.0"}},"0.2.6":{"name":"resolve","version":"0.2.6","dependencies":{},"devDependencies":{"tap":"~0.2.4"},"_hasShrinkwrap":false,"directories":{"lib":".","example":"example","test":"test"},"dist":{"shasum":"fd43d238fb9feffe677da88acfdd0da0e02ec6e0","tarball":"https://registry.npmjs.org/resolve/-/resolve-0.2.6.tgz"},"engines":{"node":">=0.4.0"}},"0.2.7":{"name":"resolve","version":"0.2.7","dependencies":{},"devDependencies":{"tap":"~0.2.4"},"_hasShrinkwrap":false,"directories":{"lib":".","example":"example","test":"test"},"dist":{"shasum":"133fb57a56182b4c542c271491c57026d3b3bd06","tarball":"https://registry.npmjs.org/resolve/-/resolve-0.2.7.tgz"},"engines":{"node":">=0.4.0"}},"0.2.8":{"name":"resolve","version":"0.2.8","dependencies":{},"devDependencies":{"tap":"~0.2.4"},"_hasShrinkwrap":false,"directories":{"lib":".","example":"example","test":"test"},"dist":{"shasum":"fdb17d4abb0ecaf6f80d67ac03cf290088f6c0d0","tarball":"https://registry.npmjs.org/resolve/-/resolve-0.2.8.tgz"},"engines":{"node":">=0.4.0"}},"0.3.0":{"name":"resolve","version":"0.3.0","devDependencies":{"tap":"~0.4.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"c9ca553334490ac68f75494aee2083e600994dce","tarball":"https://registry.npmjs.org/resolve/-/resolve-0.3.0.tgz"}},"0.3.1":{"name":"resolve","version":"0.3.1","devDependencies":{"tap":"~0.4.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"34c63447c664c70598d1c9b126fc43b2a24310a4","tarball":"https://registry.npmjs.org/resolve/-/resolve-0.3.1.tgz"}},"0.4.0":{"name":"resolve","version":"0.4.0","devDependencies":{"tap":"~0.4.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"531d572fab054e12e89fd545ad65b2e49555c34c","tarball":"https://registry.npmjs.org/resolve/-/resolve-0.4.0.tgz"}},"0.4.1":{"name":"resolve","version":"0.4.1","devDependencies":{"tap":"~0.4.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"f4ac6addf19c665b4e7b2c9df5cd477cca8be370","tarball":"https://registry.npmjs.org/resolve/-/resolve-0.4.1.tgz"}},"0.4.2":{"name":"resolve","version":"0.4.2","devDependencies":{"tap":"~0.4.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"e6bb8e14a4e5d589e2e085e9201512f8e6b2203c","tarball":"https://registry.npmjs.org/resolve/-/resolve-0.4.2.tgz"}},"0.4.3":{"name":"resolve","version":"0.4.3","devDependencies":{"tap":"~0.4.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"dcadad202e7cacc2467e3a38800211f42f9c13df","tarball":"https://registry.npmjs.org/resolve/-/resolve-0.4.3.tgz"}},"0.5.0":{"name":"resolve","version":"0.5.0","devDependencies":{"tap":"~0.4.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"e797504cd5a33ef1dbb9bdad252b6cbffa95b0b4","tarball":"https://registry.npmjs.org/resolve/-/resolve-0.5.0.tgz"}},"0.5.1":{"name":"resolve","version":"0.5.1","devDependencies":{"tap":"~0.4.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"15e4a222c4236bcd4cf85454412c2d0fb6524576","tarball":"https://registry.npmjs.org/resolve/-/resolve-0.5.1.tgz"}},"0.6.0":{"name":"resolve","version":"0.6.0","devDependencies":{"tap":"~0.4.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"1e2b3401bd384a03494fda53be278155bb57aeb0","tarball":"https://registry.npmjs.org/resolve/-/resolve-0.6.0.tgz"}},"0.6.1":{"name":"resolve","version":"0.6.1","devDependencies":{"tap":"~0.4.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"b7fc874a8fe240b44de2c92b7f885a2e8598b652","tarball":"https://registry.npmjs.org/resolve/-/resolve-0.6.1.tgz"}},"0.6.2":{"name":"resolve","version":"0.6.2","devDependencies":{"tap":"~0.4.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"7404e59e3c02980aa172272186521db3cf0a15f5","tarball":"https://registry.npmjs.org/resolve/-/resolve-0.6.2.tgz"}},"0.6.3":{"name":"resolve","version":"0.6.3","devDependencies":{"tap":"~0.4.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"dd957982e7e736debdf53b58a4dd91754575dd46","tarball":"https://registry.npmjs.org/resolve/-/resolve-0.6.3.tgz"}},"0.7.0":{"name":"resolve","version":"0.7.0","devDependencies":{"tap":"~0.4.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"dded14da73b145673e941d71b96a2a30c0f3b6fe","tarball":"https://registry.npmjs.org/resolve/-/resolve-0.7.0.tgz"}},"0.7.1":{"name":"resolve","version":"0.7.1","devDependencies":{"tap":"~0.4.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"74c73ad05bb62da19391a79c3de63b5cf7aeba51","tarball":"https://registry.npmjs.org/resolve/-/resolve-0.7.1.tgz"}},"0.7.2":{"name":"resolve","version":"0.7.2","devDependencies":{"tap":"~0.4.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"1dba8ed610e5c709e916be4bdb0f5ca400233439","tarball":"https://registry.npmjs.org/resolve/-/resolve-0.7.2.tgz"}},"0.7.3":{"name":"resolve","version":"0.7.3","devDependencies":{"tap":"~0.4.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"50f30669c9fac7b240368cec4dc06dd7a296fd02","tarball":"https://registry.npmjs.org/resolve/-/resolve-0.7.3.tgz"}},"0.7.4":{"name":"resolve","version":"0.7.4","devDependencies":{"tap":"~0.4.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"395a9ef9e873fbfe12bd14408bd91bb936003d69","tarball":"https://registry.npmjs.org/resolve/-/resolve-0.7.4.tgz"}},"1.0.0":{"name":"resolve","version":"1.0.0","devDependencies":{"tap":"~0.4.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"2a6e3b314dcd57c6519e8e2282af8687e8de61c6","tarball":"https://registry.npmjs.org/resolve/-/resolve-1.0.0.tgz"}},"1.1.0":{"name":"resolve","version":"1.1.0","devDependencies":{"tap":"~0.4.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"f9ad602751ed06a13e58cf1eaa1565bbe38d6d93","tarball":"https://registry.npmjs.org/resolve/-/resolve-1.1.0.tgz"}},"1.1.2":{"name":"resolve","version":"1.1.2","devDependencies":{"tap":"~0.4.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"9bb3df6d6c7b97e96149add8770ccfe3f649a45d","tarball":"https://registry.npmjs.org/resolve/-/resolve-1.1.2.tgz"}},"1.1.3":{"name":"resolve","version":"1.1.3","devDependencies":{"tape":"^3.5.0","tap":"0.4.13"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"0c23ca8cac81c192ac30399489c3185f2b42da9c","tarball":"https://registry.npmjs.org/resolve/-/resolve-1.1.3.tgz"}},"1.1.4":{"name":"resolve","version":"1.1.4","devDependencies":{"tape":"^3.5.0","tap":"0.4.13"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"c8e58b8c57616e84298e053b39e417676a55ce09","tarball":"https://registry.npmjs.org/resolve/-/resolve-1.1.4.tgz"}},"1.1.5":{"name":"resolve","version":"1.1.5","devDependencies":{"tape":"^3.5.0","tap":"0.4.13"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"3b74c0c44cdf5eee32322b2cda0a4acbf6970fa7","tarball":"https://registry.npmjs.org/resolve/-/resolve-1.1.5.tgz"}},"1.1.6":{"name":"resolve","version":"1.1.6","devDependencies":{"tape":"^3.5.0","tap":"0.4.13"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"d3492ad054ca800f5befa612e61beac1eec98f8f","tarball":"https://registry.npmjs.org/resolve/-/resolve-1.1.6.tgz"}},"1.1.7":{"name":"resolve","version":"1.1.7","devDependencies":{"tape":"^3.5.0","tap":"0.4.13"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"203114d82ad2c5ed9e8e0411b3932875e889e97b","tarball":"https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz"}},"1.2.0":{"name":"resolve","version":"1.2.0","devDependencies":{"tape":"^4.6.3","tap":"0.4.13","safe-publish-latest":"^1.1.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"9589c3f2f6149d1417a40becc1663db6ec6bc26c","tarball":"https://registry.npmjs.org/resolve/-/resolve-1.2.0.tgz"}},"1.3.0":{"name":"resolve","version":"1.3.0","dependencies":{"path-parse":"^1.0.5"},"devDependencies":{"object-keys":"^1.0.11","safe-publish-latest":"^1.1.1","tap":"0.4.13","tape":"^4.6.3"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"2af115a2e7f54a322dc879914311fc826b4ba83f","tarball":"https://registry.npmjs.org/resolve/-/resolve-1.3.0.tgz"}},"1.3.1":{"name":"resolve","version":"1.3.1","dependencies":{"path-parse":"^1.0.5"},"devDependencies":{"object-keys":"^1.0.11","safe-publish-latest":"^1.1.1","tap":"0.4.13","tape":"^4.6.3"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"5d0a1632609b6b00a22284293db1d5d973676314","tarball":"https://registry.npmjs.org/resolve/-/resolve-1.3.1.tgz"}},"1.2.1":{"name":"resolve","version":"1.2.1","devDependencies":{"tape":"^4.6.3","tap":"0.4.13","safe-publish-latest":"^1.1.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"0fb2989c0a86a1c545ce918aa36a8809ff7356c5","tarball":"https://registry.npmjs.org/resolve/-/resolve-1.2.1.tgz"}},"1.3.2":{"name":"resolve","version":"1.3.2","dependencies":{"path-parse":"^1.0.5"},"devDependencies":{"object-keys":"^1.0.11","safe-publish-latest":"^1.1.1","tap":"0.4.13","tape":"^4.6.3"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"1f0442c9e0cbb8136e87b9305f932f46c7f28235","tarball":"https://registry.npmjs.org/resolve/-/resolve-1.3.2.tgz"}},"1.3.3":{"name":"resolve","version":"1.3.3","dependencies":{"path-parse":"^1.0.5"},"devDependencies":{"@ljharb/eslint-config":"^11.0.0","eslint":"^3.19.0","object-keys":"^1.0.11","safe-publish-latest":"^1.1.1","tap":"0.4.13","tape":"^4.6.3"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"655907c3469a8680dc2de3a275a8fdd69691f0e5","tarball":"https://registry.npmjs.org/resolve/-/resolve-1.3.3.tgz"}},"1.4.0":{"name":"resolve","version":"1.4.0","dependencies":{"path-parse":"^1.0.5"},"devDependencies":{"@ljharb/eslint-config":"^12.2.0","eslint":"^4.3.0","object-keys":"^1.0.11","safe-publish-latest":"^1.1.1","tap":"0.4.13","tape":"^4.7.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-aW7sVKPufyHqOmyyLzg/J+8606v5nevBgaliIlV7nUpVMsDnoBGV/cbSLNjZAg9q0Cfd/+easKVKQ8vOu8fn1Q==","shasum":"a75be01c53da25d934a98ebd0e4c4a7312f92a86","tarball":"https://registry.npmjs.org/resolve/-/resolve-1.4.0.tgz"}},"1.5.0":{"name":"resolve","version":"1.5.0","dependencies":{"path-parse":"^1.0.5"},"devDependencies":{"@ljharb/eslint-config":"^12.2.1","eslint":"^4.9.0","object-keys":"^1.0.11","safe-publish-latest":"^1.1.1","tap":"0.4.13","tape":"^4.8.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-hgoSGrc3pjzAPHNBg+KnFcK2HwlHTs/YrAGUr6qgTVUZmXv1UEXXl0bZNBKMA9fud6lRYFdPGz0xXxycPzmmiw==","shasum":"1f09acce796c9a762579f31b2c1cc4c3cddf9f36","tarball":"https://registry.npmjs.org/resolve/-/resolve-1.5.0.tgz"}},"1.6.0":{"name":"resolve","version":"1.6.0","dependencies":{"path-parse":"^1.0.5"},"devDependencies":{"@ljharb/eslint-config":"^12.2.1","eslint":"^4.19.0","object-keys":"^1.0.11","safe-publish-latest":"^1.1.1","tap":"0.4.13","tape":"^4.9.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-mw7JQNu5ExIkcw4LPih0owX/TZXjD/ZUF/ZQ/pDnkw3ZKhDcZZw5klmBlj6gVMwjQ3Pz5Jgu7F3d0jcDVuEWdw==","shasum":"0fbd21278b27b4004481c395349e7aba60a9ff5c","tarball":"https://registry.npmjs.org/resolve/-/resolve-1.6.0.tgz","fileCount":71,"unpackedSize":70507}},"1.7.0":{"name":"resolve","version":"1.7.0","dependencies":{"path-parse":"^1.0.5"},"devDependencies":{"@ljharb/eslint-config":"^12.2.1","eslint":"^4.19.1","object-keys":"^1.0.11","safe-publish-latest":"^1.1.1","tap":"0.4.13","tape":"^4.9.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-QdgZ5bjR1WAlpLaO5yHepFvC+o3rCr6wpfE2tpJNMkXdulf2jKomQBdNRQITF3ZKHNlT71syG98yQP03gasgnA==","shasum":"2bdf5374811207285df0df652b78f118ab8f3c5e","tarball":"https://registry.npmjs.org/resolve/-/resolve-1.7.0.tgz","fileCount":75,"unpackedSize":75402}},"1.7.1":{"name":"resolve","version":"1.7.1","dependencies":{"path-parse":"^1.0.5"},"devDependencies":{"@ljharb/eslint-config":"^12.2.1","eslint":"^4.19.1","object-keys":"^1.0.11","safe-publish-latest":"^1.1.1","tap":"0.4.13","tape":"^4.9.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-c7rwLofp8g1U+h1KNyHL/jicrKg1Ek4q+Lr33AL65uZTinUZHe30D5HlyN5V9NW0JX1D5dXQ4jqW5l7Sy/kGfw==","shasum":"aadd656374fd298aee895bc026b8297418677fd3","tarball":"https://registry.npmjs.org/resolve/-/resolve-1.7.1.tgz","fileCount":75,"unpackedSize":76446}},"1.8.0":{"name":"resolve","version":"1.8.0","dependencies":{"path-parse":"^1.0.5"},"devDependencies":{"@ljharb/eslint-config":"^12.2.1","eslint":"^4.19.1","object-keys":"^1.0.11","safe-publish-latest":"^1.1.1","tap":"0.4.13","tape":"^4.9.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-MNcwJ8/K9iJqFDBDyhcxZuDWvf/ai0GcAJWetx2Cvvcz4HLfA8j0KasWR5Z6ChcbjYZ+FaczcXjN2jrCXCjQ4w==","shasum":"a7f2ac27b78480ecc09c83782741d9f26e4f0c3e","tarball":"https://registry.npmjs.org/resolve/-/resolve-1.8.0.tgz","fileCount":74,"unpackedSize":77711,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbJCN5CRA9TVsSAnZWagAAzakP/0bd5rOjuOg0iqBs9oAP\nuF5O4h1ysWKqueFMyLW772upb+B1bhOcYweB7/dyEwUg73Mee32kkXjJ+WaN\nI1tcnaIOPYp6V7rtQVw/keElvV7KbEqmT0lgw5l39mwLWA01W0aG93219HbY\nEi3EYPojf4D/HuWclKy1zWXO2H1HLuEDNgCLRdo7zNux2V6CM5EyADSJe8wn\nZ2GSdo9B6s76htAAUUd9bkXismCcnGpXsJ7s4GL0WZX0DOjDua/HGJ7Z5ee0\n/jJO62KT9acnYZyZs1L+eCsTRKN+ASbU7RXRCXoXfer4IfBk6wCVdcnfje/4\nmu3bDsHAW5GDF95wbjhYGtRHw2nqoxY4wQyBNYNZbhNWOm3O6j6UjNNF1Jyg\nQpBb7dcly5PAdC3GCyyzzKc0RNYJbE4DTltgkq0b55NFjbdW1YFSmV6tjBLH\nztNhTBYqhBtKXmAbm/rkvFKOkr5MEqEdvZxaDwxBuAYfsgfY6zhp73GbGf7Z\n7Myr9fCID9OAktfCV8vaMq+pshZYoLwWh21cmIlTfwiZKOp6WCbIwh7zw15X\n3tfK5WrdAkXFdmiIu/FyLooWUqxLb4NwdN5MtuBe8m419I3mTC0SvLCM19BZ\n/X6dUW4kiwPgaxOW0hJ64pBz4HAJq6BV8lWdB3WL2DTJB8uLTMU6pDELUJhR\n0xIs\r\n=4U7W\r\n-----END PGP SIGNATURE-----\r\n"}},"1.8.1":{"name":"resolve","version":"1.8.1","dependencies":{"path-parse":"^1.0.5"},"devDependencies":{"@ljharb/eslint-config":"^12.2.1","eslint":"^4.19.1","object-keys":"^1.0.11","safe-publish-latest":"^1.1.1","tap":"0.4.13","tape":"^4.9.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-AicPrAC7Qu1JxPCZ9ZgCZlY35QgFnNqc+0LtbRNxnVw4TXvjQ72wnuL9JQcEBgXkI9JM8MsT9kaQoHcpCRJOYA==","shasum":"82f1ec19a423ac1fbd080b0bab06ba36e84a7a26","tarball":"https://registry.npmjs.org/resolve/-/resolve-1.8.1.tgz","fileCount":75,"unpackedSize":78538,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbJqgcCRA9TVsSAnZWagAASdEP/0buJQqIMth2dWI2KEtp\nS7MimpOijMWwCmrTmwyCMiS9d6wVktFJmLLWHYmDwKQS6PoglJ7DqFEDrj4c\ncd2yuK3pZebQ0EQ/Y+qSJ9Z+hjkKviEINgZAp/KuaWuBmJyv+jXnrazrfN3a\nEa5EDv8j98vYwM0jSpW/FBIbxg7/vLRHEZCRtKxBCDeT0P0Wi9xtHBGJXSqg\nV5ivkTnOW0f59BD8iAuMAHgQmnfNKl3x9QGx8IjwYv9o96dmK54PdKrYKcKT\ncjXgV2wWc8VPmJdPTaIJDp0NI2/RF9OMlVMGLQE41XX+56cGuIABQTrMSaXb\npHWYJVpN0n/SLR1ApIB0i+boCKMQ/89QEPxUykcjiQCwoWZfv1+OGnOvL1Fd\njPFf+oSfSfOvr+tivcGfl6QFTaV7A+svLijhSIgtTlrWVcQ933KHH14wEHo5\nb3JUpsCa2E04R2l1Jc17jC3HUTqX8UvIYPv8goayEPa42A8/skZlTSo73AGh\nY7PLfvT3VC9AI7XBoCWBTMSGrMVkmsOdu33WVDUkULHf9vFvwqJ5D9yAMgbo\nWvCYCjerYufkYvuFfyMqRMo5tRcjLPX93ZHcnhNLZ9bvSUo4x+mG3o87On4Q\nw4nliih1/pk1iN32s6pelyG/xVleZGnJtPaKKgFOXdVAFyH7LJMMvqelK8Pu\ntjce\r\n=D30K\r\n-----END PGP SIGNATURE-----\r\n"}}},"name":"resolve","dist-tags":{"latest":"1.8.1"},"modified":"2018-06-17T18:27:43.165Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/3c/d0/9817668656fcd9082b51a6af1c81f60bf2b90d721d4a8bb3868163f1dcf9ef063a1eea50167d5f3feb3e336740dbff61b4866276f89b883782fc5e39c678 b/npm/.npm/_cacache/content-v2/sha512/3c/d0/9817668656fcd9082b51a6af1c81f60bf2b90d721d4a8bb3868163f1dcf9ef063a1eea50167d5f3feb3e336740dbff61b4866276f89b883782fc5e39c678 new file mode 100644 index 0000000..341a230 --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/3c/d0/9817668656fcd9082b51a6af1c81f60bf2b90d721d4a8bb3868163f1dcf9ef063a1eea50167d5f3feb3e336740dbff61b4866276f89b883782fc5e39c678 @@ -0,0 +1 @@ +{"versions":{"1.0.0":{"name":"path-type","version":"1.0.0","dependencies":{"graceful-fs":"^4.1.2","pify":"^2.0.0","pinkie-promise":"^1.0.0"},"devDependencies":{"ava":"*","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"51b127d4884100f5808256e45d471716ba16f62d","tarball":"https://registry.npmjs.org/path-type/-/path-type-1.0.0.tgz"},"engines":{"node":">=0.10.0"}},"1.1.0":{"name":"path-type","version":"1.1.0","dependencies":{"graceful-fs":"^4.1.2","pify":"^2.0.0","pinkie-promise":"^2.0.0"},"devDependencies":{"ava":"*","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"59c44f7ee491da704da415da5a4070ba4f8fe441","tarball":"https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz"},"engines":{"node":">=0.10.0"}},"2.0.0":{"name":"path-type","version":"2.0.0","dependencies":{"pify":"^2.0.0"},"devDependencies":{"ava":"*","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"f012ccb8415b7096fc2daa1054c3d72389594c73","tarball":"https://registry.npmjs.org/path-type/-/path-type-2.0.0.tgz"},"engines":{"node":">=4"}},"3.0.0":{"name":"path-type","version":"3.0.0","dependencies":{"pify":"^3.0.0"},"devDependencies":{"ava":"*","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==","shasum":"cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f","tarball":"https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz"},"engines":{"node":">=4"}}},"name":"path-type","dist-tags":{"latest":"3.0.0"},"modified":"2017-07-08T23:00:58.771Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/3d/2b/5d26d1d6e9d644f34b266ca67b4b0e8723ee175456029f56b9b8d946af0b79536a8de0978e555cd65e714c85e04b19b42de0750110d30d2fddc82aa08667 b/npm/.npm/_cacache/content-v2/sha512/3d/2b/5d26d1d6e9d644f34b266ca67b4b0e8723ee175456029f56b9b8d946af0b79536a8de0978e555cd65e714c85e04b19b42de0750110d30d2fddc82aa08667 new file mode 100644 index 0000000..ffeca09 --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/3d/2b/5d26d1d6e9d644f34b266ca67b4b0e8723ee175456029f56b9b8d946af0b79536a8de0978e555cd65e714c85e04b19b42de0750110d30d2fddc82aa08667 @@ -0,0 +1 @@ +{"versions":{"0.0.1":{"name":"minimatch","version":"0.0.1","dependencies":{"lru-cache":"~1.0.2"},"devDependencies":{"tap":"~0.0.5"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"33b549784ce98eceb7a86329c11a1cd02cd00ce9","tarball":"https://registry.npmjs.org/minimatch/-/minimatch-0.0.1.tgz"},"engines":{"node":"*"},"deprecated":"Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue"},"0.0.2":{"name":"minimatch","version":"0.0.2","dependencies":{"lru-cache":"~1.0.2"},"devDependencies":{"tap":"~0.0.5"},"bundleDependencies":["lru-cache"],"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"582b28fed87d3bbe9f9afc8c9490f4eb3b08ba91","tarball":"https://registry.npmjs.org/minimatch/-/minimatch-0.0.2.tgz"},"engines":{"node":"*"},"deprecated":"Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue"},"0.0.4":{"name":"minimatch","version":"0.0.4","dependencies":{"lru-cache":"~1.0.2"},"devDependencies":{"tap":"~0.0.5"},"bundleDependencies":["lru-cache"],"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"791b9e5e6572b789cfda6f60e095614cbb7504b6","tarball":"https://registry.npmjs.org/minimatch/-/minimatch-0.0.4.tgz"},"engines":{"node":"*"},"deprecated":"Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue"},"0.0.5":{"name":"minimatch","version":"0.0.5","dependencies":{"lru-cache":"~1.0.2"},"devDependencies":{"tap":"~0.0.5"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"96bb490bbd3ba6836bbfac111adf75301b1584de","tarball":"https://registry.npmjs.org/minimatch/-/minimatch-0.0.5.tgz"},"engines":{"node":"*"},"deprecated":"Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue"},"0.1.1":{"name":"minimatch","version":"0.1.1","dependencies":{"lru-cache":"~1.0.5"},"devDependencies":{"tap":"~0.1.3"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"2bbeb75b5819a6a112ef5cf444efa32e006bb20d","tarball":"https://registry.npmjs.org/minimatch/-/minimatch-0.1.1.tgz"},"engines":{"node":"*"},"deprecated":"Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue"},"0.1.2":{"name":"minimatch","version":"0.1.2","dependencies":{"lru-cache":"~1.0.5"},"devDependencies":{"tap":"~0.1.3"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"81ba8cfe095f0acd7d1f8afa93819099ef2177e9","tarball":"https://registry.npmjs.org/minimatch/-/minimatch-0.1.2.tgz"},"engines":{"node":"*"},"deprecated":"Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue"},"0.1.3":{"name":"minimatch","version":"0.1.3","dependencies":{"lru-cache":"~1.0.5"},"devDependencies":{"tap":"~0.1.3"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"3811e5808181ee2d923614faf14e0b24543daf06","tarball":"https://registry.npmjs.org/minimatch/-/minimatch-0.1.3.tgz"},"engines":{"node":"*"},"deprecated":"Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue"},"0.1.4":{"name":"minimatch","version":"0.1.4","dependencies":{"lru-cache":"~1.0.5"},"optionalDependencies":{},"devDependencies":{"tap":"~0.1.3"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"5c5b370eebd3f729adc1f7740515ac3c70769ae4","tarball":"https://registry.npmjs.org/minimatch/-/minimatch-0.1.4.tgz"},"engines":{"node":"*"},"deprecated":"Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue"},"0.1.5":{"name":"minimatch","version":"0.1.5","dependencies":{"lru-cache":"~1.0.5"},"optionalDependencies":{},"devDependencies":{"tap":"~0.1.3"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"b762f312066cbbfe50462a68360bfc9ca0ccb1b9","tarball":"https://registry.npmjs.org/minimatch/-/minimatch-0.1.5.tgz"},"engines":{"node":"*"},"deprecated":"Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue"},"0.2.0":{"name":"minimatch","version":"0.2.0","dependencies":{"lru-cache":"~1.0.5"},"optionalDependencies":{},"devDependencies":{"tap":"~0.1.3"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"7fb18a99421493c520b508f00699cc8f5db86e2a","tarball":"https://registry.npmjs.org/minimatch/-/minimatch-0.2.0.tgz"},"engines":{"node":"*"},"deprecated":"Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue"},"0.2.2":{"name":"minimatch","version":"0.2.2","dependencies":{"lru-cache":"~1.0.5"},"optionalDependencies":{},"devDependencies":{"tap":""},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"209c214e81dd8d831122c56793c93d90d8e44b7d","tarball":"https://registry.npmjs.org/minimatch/-/minimatch-0.2.2.tgz"},"engines":{"node":"*"},"deprecated":"Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue"},"0.2.3":{"name":"minimatch","version":"0.2.3","dependencies":{"lru-cache":"~1.0.5"},"optionalDependencies":{},"devDependencies":{"tap":""},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"625540b1be01b3e7fb5a04a01c847ae54e8f3a9f","tarball":"https://registry.npmjs.org/minimatch/-/minimatch-0.2.3.tgz"},"engines":{"node":"*"},"deprecated":"Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue"},"0.2.4":{"name":"minimatch","version":"0.2.4","dependencies":{"lru-cache":"~1.0.5"},"optionalDependencies":{},"devDependencies":{"tap":""},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"093b5cd06c40d460d37c50a8ce3fa1c0ef636baf","tarball":"https://registry.npmjs.org/minimatch/-/minimatch-0.2.4.tgz"},"engines":{"node":"*"},"deprecated":"Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue"},"0.2.5":{"name":"minimatch","version":"0.2.5","dependencies":{"lru-cache":"~1"},"optionalDependencies":{},"devDependencies":{"tap":""},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"a85048c04cc707538cdcb6fb798c421c3cbc7026","tarball":"https://registry.npmjs.org/minimatch/-/minimatch-0.2.5.tgz"},"engines":{"node":"*"},"deprecated":"Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue"},"0.2.6":{"name":"minimatch","version":"0.2.6","dependencies":{"lru-cache":"~2.0.0"},"devDependencies":{"tap":""},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"afc731fd9874c4c47496bc27938e5014134eaa57","tarball":"https://registry.npmjs.org/minimatch/-/minimatch-0.2.6.tgz"},"engines":{"node":"*"},"deprecated":"Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue"},"0.2.7":{"name":"minimatch","version":"0.2.7","dependencies":{"lru-cache":"~2.0.0"},"devDependencies":{"tap":""},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"850e2708068bfb12b586c34491f2007cc0b52f67","tarball":"https://registry.npmjs.org/minimatch/-/minimatch-0.2.7.tgz"},"engines":{"node":"*"},"deprecated":"Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue"},"0.2.8":{"name":"minimatch","version":"0.2.8","dependencies":{"lru-cache":"~2.0.0"},"devDependencies":{"tap":""},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"1a983623de40ccda200c37192a28a58a640501c6","tarball":"https://registry.npmjs.org/minimatch/-/minimatch-0.2.8.tgz"},"engines":{"node":"*"},"deprecated":"Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue"},"0.2.9":{"name":"minimatch","version":"0.2.9","dependencies":{"lru-cache":"~2.0.0","sigmund":"~1.0.0"},"devDependencies":{"tap":""},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"b80af947e6a83a8c68f26e54c0d6125bac9f887f","tarball":"https://registry.npmjs.org/minimatch/-/minimatch-0.2.9.tgz"},"engines":{"node":"*"},"deprecated":"Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue"},"0.2.10":{"name":"minimatch","version":"0.2.10","dependencies":{"lru-cache":"~2.0.0","sigmund":"~1.0.0"},"devDependencies":{"tap":""},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"4b1d35d316d09c78e31284d6acf6245b5ec8c455","tarball":"https://registry.npmjs.org/minimatch/-/minimatch-0.2.10.tgz"},"engines":{"node":"*"},"deprecated":"Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue"},"0.2.11":{"name":"minimatch","version":"0.2.11","dependencies":{"lru-cache":"2","sigmund":"~1.0.0"},"devDependencies":{"tap":""},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"a0ef5fa776aa6fbd3ce1ebb74efb8a48c6abf4db","tarball":"https://registry.npmjs.org/minimatch/-/minimatch-0.2.11.tgz"},"engines":{"node":"*"},"deprecated":"Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue"},"0.2.12":{"name":"minimatch","version":"0.2.12","dependencies":{"lru-cache":"2","sigmund":"~1.0.0"},"devDependencies":{"tap":""},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"ea82a012ac662c7ddfaa144f1c147e6946f5dafb","tarball":"https://registry.npmjs.org/minimatch/-/minimatch-0.2.12.tgz"},"engines":{"node":"*"},"deprecated":"Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue"},"0.2.13":{"name":"minimatch","version":"0.2.13","dependencies":{"lru-cache":"2","sigmund":"~1.0.0"},"devDependencies":{"tap":""},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"dc58caf1eba5681e403163af3ed477bf69c8df69","tarball":"https://registry.npmjs.org/minimatch/-/minimatch-0.2.13.tgz"},"engines":{"node":"*"},"deprecated":"Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue"},"0.2.14":{"name":"minimatch","version":"0.2.14","dependencies":{"lru-cache":"2","sigmund":"~1.0.0"},"devDependencies":{"tap":""},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"c74e780574f63c6f9a090e90efbe6ef53a6a756a","tarball":"https://registry.npmjs.org/minimatch/-/minimatch-0.2.14.tgz"},"engines":{"node":"*"},"deprecated":"Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue"},"0.3.0":{"name":"minimatch","version":"0.3.0","dependencies":{"lru-cache":"2","sigmund":"~1.0.0"},"devDependencies":{"tap":""},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"275d8edaac4f1bb3326472089e7949c8394699dd","tarball":"https://registry.npmjs.org/minimatch/-/minimatch-0.3.0.tgz"},"engines":{"node":"*"},"deprecated":"Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue"},"0.4.0":{"name":"minimatch","version":"0.4.0","dependencies":{"lru-cache":"2","sigmund":"~1.0.0"},"devDependencies":{"tap":""},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"bd2c7d060d2c8c8fd7cde7f1f2ed2d5b270fdb1b","tarball":"https://registry.npmjs.org/minimatch/-/minimatch-0.4.0.tgz"},"engines":{"node":"*"},"deprecated":"Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue"},"1.0.0":{"name":"minimatch","version":"1.0.0","dependencies":{"lru-cache":"2","sigmund":"~1.0.0"},"devDependencies":{"tap":""},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"e0dd2120b49e1b724ce8d714c520822a9438576d","tarball":"https://registry.npmjs.org/minimatch/-/minimatch-1.0.0.tgz"},"engines":{"node":"*"},"deprecated":"Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue"},"2.0.0":{"name":"minimatch","version":"2.0.0","dependencies":{"brace-expansion":"^1.0.0"},"devDependencies":{"browserify":"^6.3.3","tap":""},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"c0625745200ebcf77451423f3d649821f8f0b6e1","tarball":"https://registry.npmjs.org/minimatch/-/minimatch-2.0.0.tgz"},"engines":{"node":"*"},"deprecated":"Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue"},"2.0.1":{"name":"minimatch","version":"2.0.1","dependencies":{"brace-expansion":"^1.0.0"},"devDependencies":{"browserify":"^6.3.3","tap":""},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"6c3760b45f66ed1cd5803143ee8d372488f02c37","tarball":"https://registry.npmjs.org/minimatch/-/minimatch-2.0.1.tgz"},"engines":{"node":"*"},"deprecated":"Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue"},"2.0.2":{"name":"minimatch","version":"2.0.2","dependencies":{"brace-expansion":"^1.0.0"},"devDependencies":{"browserify":"^6.3.3","tap":""},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"9e0d08d40a713a8e1644bec3d88d1c11ee4167f8","tarball":"https://registry.npmjs.org/minimatch/-/minimatch-2.0.2.tgz"},"engines":{"node":"*"},"deprecated":"Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue"},"2.0.3":{"name":"minimatch","version":"2.0.3","dependencies":{"brace-expansion":"^1.0.0"},"devDependencies":{"browserify":"^6.3.3","tap":""},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"a265d8cd62b109ce85be49dd36932b8017f7df18","tarball":"https://registry.npmjs.org/minimatch/-/minimatch-2.0.3.tgz"},"engines":{"node":"*"},"deprecated":"Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue"},"2.0.4":{"name":"minimatch","version":"2.0.4","dependencies":{"brace-expansion":"^1.0.0"},"devDependencies":{"browserify":"^9.0.3","tap":""},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"83bea115803e7a097a78022427287edb762fafed","tarball":"https://registry.npmjs.org/minimatch/-/minimatch-2.0.4.tgz"},"engines":{"node":"*"},"deprecated":"Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue"},"2.0.5":{"name":"minimatch","version":"2.0.5","dependencies":{"brace-expansion":"^1.0.0"},"devDependencies":{"browserify":"^9.0.3","tap":""},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"a5c79dfcbb3ad0f84a27132d28f3fcb16ffeef73","tarball":"https://registry.npmjs.org/minimatch/-/minimatch-2.0.5.tgz"},"engines":{"node":"*"},"deprecated":"Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue"},"2.0.6":{"name":"minimatch","version":"2.0.6","dependencies":{"brace-expansion":"^1.0.0"},"devDependencies":{"browserify":"^9.0.3","standard":"^3.7.2","tap":""},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"21df8ea63e67b5848d09d67e57432a5dcb8cecf3","tarball":"https://registry.npmjs.org/minimatch/-/minimatch-2.0.6.tgz"},"engines":{"node":"*"},"deprecated":"Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue"},"2.0.7":{"name":"minimatch","version":"2.0.7","dependencies":{"brace-expansion":"^1.0.0"},"devDependencies":{"browserify":"^9.0.3","standard":"^3.7.2","tap":""},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"d23652ab10e663e7d914602e920e21f9f66492be","tarball":"https://registry.npmjs.org/minimatch/-/minimatch-2.0.7.tgz"},"engines":{"node":"*"},"deprecated":"Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue"},"2.0.8":{"name":"minimatch","version":"2.0.8","dependencies":{"brace-expansion":"^1.0.0"},"devDependencies":{"browserify":"^9.0.3","standard":"^3.7.2","tap":""},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"0bc20f6bf3570a698ef0ddff902063c6cabda6bf","tarball":"https://registry.npmjs.org/minimatch/-/minimatch-2.0.8.tgz"},"engines":{"node":"*"},"deprecated":"Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue"},"2.0.9":{"name":"minimatch","version":"2.0.9","dependencies":{"brace-expansion":"^1.0.0"},"devDependencies":{"browserify":"^9.0.3","standard":"^3.7.2","tap":"^1.2.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"4dbebef26f62a35976db0737ea3389641baf9b46","tarball":"https://registry.npmjs.org/minimatch/-/minimatch-2.0.9.tgz"},"engines":{"node":"*"},"deprecated":"Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue"},"2.0.10":{"name":"minimatch","version":"2.0.10","dependencies":{"brace-expansion":"^1.0.0"},"devDependencies":{"browserify":"^9.0.3","standard":"^3.7.2","tap":"^1.2.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"8d087c39c6b38c001b97fca7ce6d0e1e80afbac7","tarball":"https://registry.npmjs.org/minimatch/-/minimatch-2.0.10.tgz"},"engines":{"node":"*"},"deprecated":"Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue"},"3.0.0":{"name":"minimatch","version":"3.0.0","dependencies":{"brace-expansion":"^1.0.0"},"devDependencies":{"standard":"^3.7.2","tap":"^1.2.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"5236157a51e4f004c177fb3c527ff7dd78f0ef83","tarball":"https://registry.npmjs.org/minimatch/-/minimatch-3.0.0.tgz"},"engines":{"node":"*"},"deprecated":"Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue"},"3.0.2":{"name":"minimatch","version":"3.0.2","dependencies":{"brace-expansion":"^1.0.0"},"devDependencies":{"standard":"^3.7.2","tap":"^5.6.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"0f398a7300ea441e9c348c83d98ab8c9dbf9c40a","tarball":"https://registry.npmjs.org/minimatch/-/minimatch-3.0.2.tgz"},"engines":{"node":"*"}},"3.0.3":{"name":"minimatch","version":"3.0.3","dependencies":{"brace-expansion":"^1.0.0"},"devDependencies":{"standard":"^3.7.2","tap":"^5.6.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"2a4e4090b96b2db06a9d7df01055a62a77c9b774","tarball":"https://registry.npmjs.org/minimatch/-/minimatch-3.0.3.tgz"},"engines":{"node":"*"}},"3.0.4":{"name":"minimatch","version":"3.0.4","dependencies":{"brace-expansion":"^1.1.7"},"devDependencies":{"tap":"^10.3.2"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==","shasum":"5166e286457f03306064be5497e8dbb0c3d32083","tarball":"https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz"},"engines":{"node":"*"}}},"name":"minimatch","dist-tags":{"latest":"3.0.4"},"modified":"2018-03-19T02:49:53.133Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/40/5b/bb0983d5158d11d4898f8f9a81ec795fe18c98252b0bd13c69a0a08612285d7e570f1c5c50e78d4d6e2fa28f110716dde5be459a19175f58c8129484c1bf b/npm/.npm/_cacache/content-v2/sha512/40/5b/bb0983d5158d11d4898f8f9a81ec795fe18c98252b0bd13c69a0a08612285d7e570f1c5c50e78d4d6e2fa28f110716dde5be459a19175f58c8129484c1bf new file mode 100644 index 0000000..0bf827f --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/40/5b/bb0983d5158d11d4898f8f9a81ec795fe18c98252b0bd13c69a0a08612285d7e570f1c5c50e78d4d6e2fa28f110716dde5be459a19175f58c8129484c1bf @@ -0,0 +1 @@ +{"versions":{"1.0.0":{"name":"trim-newlines","version":"1.0.0","devDependencies":{"ava":"*","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"5887966bb582a4503a41eb524f7d35011815a613","tarball":"https://registry.npmjs.org/trim-newlines/-/trim-newlines-1.0.0.tgz"},"engines":{"node":">=0.10.0"}},"2.0.0":{"name":"trim-newlines","version":"2.0.0","devDependencies":{"ava":"*","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"b403d0b91be50c331dfc4b82eeceb22c3de16d20","tarball":"https://registry.npmjs.org/trim-newlines/-/trim-newlines-2.0.0.tgz"},"engines":{"node":">=4"}}},"name":"trim-newlines","dist-tags":{"latest":"2.0.0"},"modified":"2017-04-22T13:06:15.702Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/41/f0/14b5dfaf15d02d150702f020b262dd5f616c52a8088ad9c483eb30c1f0dddca6c10102f471a7dcce1a0e86fd21c7258013f3cfdacff22e0c600bb0d55b1a b/npm/.npm/_cacache/content-v2/sha512/41/f0/14b5dfaf15d02d150702f020b262dd5f616c52a8088ad9c483eb30c1f0dddca6c10102f471a7dcce1a0e86fd21c7258013f3cfdacff22e0c600bb0d55b1a new file mode 100644 index 0000000..3ac21f7 Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha512/41/f0/14b5dfaf15d02d150702f020b262dd5f616c52a8088ad9c483eb30c1f0dddca6c10102f471a7dcce1a0e86fd21c7258013f3cfdacff22e0c600bb0d55b1a differ diff --git a/npm/.npm/_cacache/content-v2/sha512/42/35/63c1d5c8b78d3c308880a825f8a142ac814d84a801b3b363e9926e1a4186e39be644584716e127c5353af8b8c35999ad1ecb87f99602eb901d1a5f440ca3 b/npm/.npm/_cacache/content-v2/sha512/42/35/63c1d5c8b78d3c308880a825f8a142ac814d84a801b3b363e9926e1a4186e39be644584716e127c5353af8b8c35999ad1ecb87f99602eb901d1a5f440ca3 new file mode 100644 index 0000000..95ac161 Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha512/42/35/63c1d5c8b78d3c308880a825f8a142ac814d84a801b3b363e9926e1a4186e39be644584716e127c5353af8b8c35999ad1ecb87f99602eb901d1a5f440ca3 differ diff --git a/npm/.npm/_cacache/content-v2/sha512/42/8c/092997909597bd783bd2b0e427b5d6e228b7239d8e2dbe80278774ee44d19d82097b4fadd624998484a141da293f2f256fcfd343f18f9ee8ff63c51b4d3e b/npm/.npm/_cacache/content-v2/sha512/42/8c/092997909597bd783bd2b0e427b5d6e228b7239d8e2dbe80278774ee44d19d82097b4fadd624998484a141da293f2f256fcfd343f18f9ee8ff63c51b4d3e new file mode 100644 index 0000000..3ffd185 --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/42/8c/092997909597bd783bd2b0e427b5d6e228b7239d8e2dbe80278774ee44d19d82097b4fadd624998484a141da293f2f256fcfd343f18f9ee8ff63c51b4d3e @@ -0,0 +1 @@ +{"versions":{"1.0.0":{"name":"camelcase-keys","version":"1.0.0","dependencies":{"camelcase":"^1.0.1","map-obj":"^1.0.0"},"devDependencies":{"ava":"0.0.4"},"directories":{},"dist":{"shasum":"bd1a11bf9b31a1ce493493a930de1a0baf4ad7ec","tarball":"http://registry.npmjs.org/camelcase-keys/-/camelcase-keys-1.0.0.tgz"},"engines":{"node":">=0.10.0"}},"2.0.0":{"name":"camelcase-keys","version":"2.0.0","dependencies":{"camelcase":"^2.0.0","map-obj":"^1.0.0"},"devDependencies":{"ava":"*","xo":"*"},"directories":{},"dist":{"shasum":"ab87e740d72a1ffcb12a43cc04c14b39d549eab9","tarball":"http://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.0.0.tgz"},"engines":{"node":">=0.10.0"}},"2.1.0":{"name":"camelcase-keys","version":"2.1.0","dependencies":{"camelcase":"^2.0.0","map-obj":"^1.0.0"},"devDependencies":{"ava":"*","xo":"*"},"directories":{},"dist":{"shasum":"308beeaffdf28119051efa1d932213c91b8f92e7","tarball":"http://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz"},"engines":{"node":">=0.10.0"}},"3.0.0":{"name":"camelcase-keys","version":"3.0.0","dependencies":{"camelcase":"^3.0.0","map-obj":"^1.0.0"},"devDependencies":{"ava":"*","xo":"*"},"directories":{},"dist":{"shasum":"fc0c6c360363f7377e3793b9a16bccf1070c1ca4","tarball":"http://registry.npmjs.org/camelcase-keys/-/camelcase-keys-3.0.0.tgz"},"engines":{"node":">=0.10.0"}},"4.0.0":{"name":"camelcase-keys","version":"4.0.0","dependencies":{"camelcase":"^3.0.0","map-obj":"^2.0.0"},"devDependencies":{"ava":"*","xo":"*"},"directories":{},"dist":{"shasum":"4f8bbe2762bde2489c1561366d216931ac4a491b","tarball":"http://registry.npmjs.org/camelcase-keys/-/camelcase-keys-4.0.0.tgz"},"engines":{"node":">=4"}},"4.1.0":{"name":"camelcase-keys","version":"4.1.0","dependencies":{"camelcase":"^4.1.0","map-obj":"^2.0.0","quick-lru":"^1.0.0"},"devDependencies":{"ava":"*","matcha":"^0.7.0","xo":"*"},"directories":{},"dist":{"shasum":"214d348cc5457f39316a2c31cc3e37246325e73f","tarball":"https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-4.1.0.tgz"},"engines":{"node":">=4"}},"4.2.0":{"name":"camelcase-keys","version":"4.2.0","dependencies":{"camelcase":"^4.1.0","map-obj":"^2.0.0","quick-lru":"^1.0.0"},"devDependencies":{"ava":"*","matcha":"^0.7.0","xo":"*"},"directories":{},"dist":{"shasum":"a2aa5fb1af688758259c32c141426d78923b9b77","tarball":"https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-4.2.0.tgz"},"engines":{"node":">=4"}},"5.0.0":{"name":"camelcase-keys","version":"5.0.0","dependencies":{"camelcase":"^5.0.0","map-obj":"^3.0.0","quick-lru":"^1.0.0"},"devDependencies":{"ava":"^0.25.0","matcha":"^0.7.0","xo":"^0.23.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-RFdQsUUi4TS/xg4RoLwmpw9hwOp/M0OY+9g3Oa90sH+tueZ1Cd7vXl4fEaCbydiGp1xo+eUr+wq9jLjRPLjhtg==","shasum":"67250d1d2e6617ed0568463e56fa337845706695","tarball":"https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-5.0.0.tgz","fileCount":4,"unpackedSize":4476,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbxceGCRA9TVsSAnZWagAA/soP/2dwofkCZB6lQOf88bMm\nMdNIxnaqh0l3vCT/zBK02J1vuDzkMumNokTOO4u2OUaaCslWATBkHcv+gZmN\ntw/GgQOmTijZmpwgxU+O7S83Rs6Aqu6RPGo9Pr/+YjUpwUEhUfzX5bnLbzIO\ngwOT+HL3vpKK/m8EuFCyV83TspVc1dZlNchIbhzcrAGgH6cimNeTSWTwVrq9\nnpu0BdmEVw23xdG5fLrzdeyK3MeYfT0gRof1bpO3pn0m/hH36kXdUBPHNKwb\n8qxTYsr5s2R+sG7mbx6ea4ffsDk27/GFfw8Se/m4TC+hlnkTxQcWWI44YGL6\nYDaTQDLr/BJDjY4er2vxhyijegIj2aaAyteFmulxU3Jwtp5icGDBQ163Hjaa\nqqPKUwUg+p6TmfT0E7NsGMGRg0Odpt+3A4RMNG+rqTlrfifXseloHMvodA/S\nGT4s9HqOfmaXUoSOJYLs+ab5Xw87Sk/gV2dHSlgjO2topqfAE2rZqBDqADJ1\nQueRXXFujSCjNOLFcU5SOD26D87Iwu50Q9chxcX3ICwn6kqI4Jl4Nxw1cpUn\ntsmCyWzJx6JiQh3PDELHHEeX2otWY3Baf6t/Q2i2CqFGVZwbqSmYcAQ14DHb\nUY7pg9v1bOuUgeySFmXFkDU7LoFHz8NblbulJMXLXWWTUZ/I/JGkn1jhOHsP\nNRYn\r\n=2mJW\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=6"}}},"name":"camelcase-keys","dist-tags":{"latest":"5.0.0"},"modified":"2018-10-16T11:12:09.331Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/45/2f/51e91df93588109fef9f90359a3a6a86a23e0493d806b3e0cfc4d5192aec04d7cdf18c9ae82afca8d48cd515e5ef52bbe600bcba1560f9c6b7494f6e6032 b/npm/.npm/_cacache/content-v2/sha512/45/2f/51e91df93588109fef9f90359a3a6a86a23e0493d806b3e0cfc4d5192aec04d7cdf18c9ae82afca8d48cd515e5ef52bbe600bcba1560f9c6b7494f6e6032 new file mode 100644 index 0000000..5249f39 Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha512/45/2f/51e91df93588109fef9f90359a3a6a86a23e0493d806b3e0cfc4d5192aec04d7cdf18c9ae82afca8d48cd515e5ef52bbe600bcba1560f9c6b7494f6e6032 differ diff --git a/npm/.npm/_cacache/content-v2/sha512/45/41/54179139ff64d4de1b9efa8f64628f5d5b6c394295a2705def5fc4c9ef720b45d24dc3d9a3096f951f80431a8c84af8b5d6c263c7fadfcd064718e203a08 b/npm/.npm/_cacache/content-v2/sha512/45/41/54179139ff64d4de1b9efa8f64628f5d5b6c394295a2705def5fc4c9ef720b45d24dc3d9a3096f951f80431a8c84af8b5d6c263c7fadfcd064718e203a08 new file mode 100644 index 0000000..21ea236 --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/45/41/54179139ff64d4de1b9efa8f64628f5d5b6c394295a2705def5fc4c9ef720b45d24dc3d9a3096f951f80431a8c84af8b5d6c263c7fadfcd064718e203a08 @@ -0,0 +1 @@ +{"versions":{"1.0.0":{"name":"spdx-exceptions","version":"1.0.0","devDependencies":{"defence-cli":"^1.0.1"},"directories":{},"dist":{"shasum":"a1b00e7788daa95751427e1102a9443c7c59cdda","tarball":"http://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-1.0.0.tgz"}},"1.0.1":{"name":"spdx-exceptions","version":"1.0.1","devDependencies":{"defence-cli":"^1.0.1"},"directories":{},"dist":{"shasum":"335f026d08f0bac92ca1e509fc749cdcb2ae1507","tarball":"http://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-1.0.1.tgz"}},"1.0.2":{"name":"spdx-exceptions","version":"1.0.2","devDependencies":{"defence-cli":"^1.0.1"},"directories":{},"dist":{"shasum":"c584a2875a1db1c8743266990af6e0c82e143a5b","tarball":"http://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-1.0.2.tgz"}},"1.0.3":{"name":"spdx-exceptions","version":"1.0.3","directories":{},"dist":{"shasum":"39ec5ed2cebddf08d180555d7e99c3aff9b4764a","tarball":"http://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-1.0.3.tgz"}},"1.0.4":{"name":"spdx-exceptions","version":"1.0.4","directories":{},"dist":{"shasum":"220b84239119ae9045a892db81a83f4ce16f80fd","tarball":"http://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-1.0.4.tgz"}},"1.0.5":{"name":"spdx-exceptions","version":"1.0.5","directories":{},"dist":{"shasum":"9d21ac4da4bdb71d060fb74e5a67531d032cbba6","tarball":"http://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-1.0.5.tgz"}},"2.0.0":{"name":"spdx-exceptions","version":"2.0.0","directories":{},"dist":{"shasum":"6a80e99f1f33e40acf497f6a430cf49969f013a8","tarball":"http://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.0.0.tgz"}},"2.1.0":{"name":"spdx-exceptions","version":"2.1.0","directories":{},"dist":{"integrity":"sha512-4K1NsmrlCU1JJgUrtgEeTVyfx8VaYea9J9LvARxhbHtVtohPs/gFGG5yy49beySjlIMhhXZ4QqujIZEfS4l6Cg==","shasum":"2c7ae61056c714a5b9b9b2b2af7d311ef5c78fe9","tarball":"https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.1.0.tgz"}},"2.2.0":{"name":"spdx-exceptions","version":"2.2.0","_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-2XQACfElKi9SlVb1CYadKDXvoajPgBVPn/gOQLrTvHdElaVhr7ZEbqJaRnJLVNeaI4cMEAgVCeBMKF6MWRDCRA==","shasum":"2ea450aee74f2a89bfb94519c07fcd6f41322977","tarball":"https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz","fileCount":4,"unpackedSize":2570,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbskbjCRA9TVsSAnZWagAA8V4P/A2fO6AceEhzUB+uqDPN\nElwnHGST7m81AgX88gTdIRoPvQO3MaLt+QZ3HssM3NK0lmGPSl1et4jrp4IB\ng62tg/oI+Uj+sTHvEI3d4N4FUtrDxen9dIyFjUKlZwhGKw3p1AE+aUU/V/Xc\nIapB+Uod9J53gA0ZR3IwAoHS0RIS2awT/fcpkYqluBPvHAEjH8lJ7VVztclF\nu122u8ZDEP7zjAl81pfZhgJRCmWkBuhZZ5lyWaxE1cnwQzetmkenD2wak6yS\nUZjBMvh0ArNodCGbWg7jzeVoLu5bGKBckStWSecXKFStQIqDa2mqTTjvVlam\nTq2HTH1eJWHomvk8OM67OWKVHEq4sAUspGhx4udDxtiqZjM/6IctD+WUGd7J\n18UBIrLVzqatL7LpfQclbsY13/PxA5hOjRZKWlTdaAC+/d5EkyqVCgvBZpdp\nZ96BfTuACW+b8Lbg/pz87r15FH7MR197vXzutedMhhpm1Gi1DO/9TzJd6g/c\naVfWINvdXGsvQo9EmmHA1Ermo92pYv3dCt+gr5eUMJlcoa5b/asnTAYNjy5Y\nLVWqoiRdt93FyCbt+EAYR6WhlKEGptREiIQqvcCdImEsvFpSpWtVESe9toFR\ngA6aWCxJvSkqhaLmXP+ad57CB2N8V2gC6lS1eQVMGCoEltWYpUc4emF+TTju\nTfe6\r\n=kJq4\r\n-----END PGP SIGNATURE-----\r\n"}}},"name":"spdx-exceptions","dist-tags":{"latest":"2.2.0"},"modified":"2018-10-01T16:10:13.530Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/46/30/0e91a31df5233ec31c8a6f9da8324ce02d5a65a015e5fa404973eac178eb450f48095f2992d2aeef3f38a5fb7ec57fc2aec87759ab289ad8c80ba6f6ebd3 b/npm/.npm/_cacache/content-v2/sha512/46/30/0e91a31df5233ec31c8a6f9da8324ce02d5a65a015e5fa404973eac178eb450f48095f2992d2aeef3f38a5fb7ec57fc2aec87759ab289ad8c80ba6f6ebd3 new file mode 100644 index 0000000..b6a87b5 --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/46/30/0e91a31df5233ec31c8a6f9da8324ce02d5a65a015e5fa404973eac178eb450f48095f2992d2aeef3f38a5fb7ec57fc2aec87759ab289ad8c80ba6f6ebd3 @@ -0,0 +1 @@ +{"versions":{"0.0.0":{"name":"concat-map","version":"0.0.0","dependencies":{},"optionalDependencies":{},"devDependencies":{"tap":"~0.2.5"},"_hasShrinkwrap":false,"directories":{"example":"example","test":"test"},"dist":{"shasum":"604be9c2afb6dc9ba8182e3ff294fdd48e238e6d","tarball":"https://registry.npmjs.org/concat-map/-/concat-map-0.0.0.tgz"},"engines":{"node":">=0.4.0"}},"0.0.1":{"name":"concat-map","version":"0.0.1","devDependencies":{"tape":"~2.4.0"},"_hasShrinkwrap":false,"directories":{"example":"example","test":"test"},"dist":{"shasum":"d8a96bd77fd68df7793a73036a3ba0d5405d477b","tarball":"https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz"}}},"name":"concat-map","dist-tags":{"latest":"0.0.1"},"modified":"2014-01-30T03:06:35.982Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/49/0f/1231fb0c14c6203748ed1489ec684c308f46397dc38d57a9733dd56a8249b7ff676291b2d4b4a4b90dc9f5b17ba64dd5da9194664e08f8ca693a7b841663 b/npm/.npm/_cacache/content-v2/sha512/49/0f/1231fb0c14c6203748ed1489ec684c308f46397dc38d57a9733dd56a8249b7ff676291b2d4b4a4b90dc9f5b17ba64dd5da9194664e08f8ca693a7b841663 new file mode 100644 index 0000000..89058ad --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/49/0f/1231fb0c14c6203748ed1489ec684c308f46397dc38d57a9733dd56a8249b7ff676291b2d4b4a4b90dc9f5b17ba64dd5da9194664e08f8ca693a7b841663 @@ -0,0 +1 @@ +{"versions":{"2.0.0":{"name":"safer-buffer","version":"2.0.0","devDependencies":{"standard":"^11.0.1","tape":"^4.9.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-xfyC9tPVPALdc+v+iF5EgNWLq2tBaVLCqcwPjvZ6oNzzL/q4Bh0D+dFy90dVlX6RkCzqamJhBcxgG72DCmZ2XQ==","shasum":"a780a965ff6375210b360a969581ceaf60600193","tarball":"https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.0.0.tgz","fileCount":5,"unpackedSize":19297}},"2.0.1":{"name":"safer-buffer","version":"2.0.1","devDependencies":{"standard":"^11.0.1","tape":"^4.9.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-3i2tOIUGJ6ZOIJ0FPTN+K/6iFBZUGB6fCee1PQGrLaioDFPLWQCaRJeBMMTpdSMCRAmuyu7FSJKnjriAmE/aQA==","shasum":"9b158aab695aa93d8259a038d9f7836c8fd7fabf","tarball":"https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.0.1.tgz","fileCount":6,"unpackedSize":21003}},"2.0.2":{"name":"safer-buffer","version":"2.0.2","devDependencies":{"standard":"^11.0.1","tape":"^4.9.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-n7d2A1kx/NW7bow4A2jx111qpYsF0qDhvfHssl+FIuXY8skGswVCIXoo8AUt72d8vK6R3teMjHIV1Yt7Q/m08A==","shasum":"d5e5d219697d92d1c138e0037525fd99d0ebbdf0","tarball":"https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.0.2.tgz","fileCount":7,"unpackedSize":36955}},"2.1.0":{"name":"safer-buffer","version":"2.1.0","devDependencies":{"standard":"^11.0.1","tape":"^4.9.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-HQhCIIl7TrF1aa7d352EXG+xumPERvoIWxOqq2CagDId0FVGtlG/fuQ7kZT+wZ7ytyGiP3pnYUVni5otBzOVmA==","shasum":"d9f653a55538c8d7829cb1a92e90bbcbc5ff5d3b","tarball":"https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.0.tgz","fileCount":7,"unpackedSize":41366}},"2.1.1":{"name":"safer-buffer","version":"2.1.1","devDependencies":{"standard":"^11.0.1","tape":"^4.9.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-sSsAhyRw8mBRo96T6nsCCAQosFTc79+wYWbiECHP5P03a7wE76VAbbLysuJ8EEfBhElIsLZau+WNWES4Y/IQSA==","shasum":"2e945f82c9a380e8e3b7c1a1bc21c976bb49f3ea","tarball":"https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.1.tgz","fileCount":7,"unpackedSize":42153}},"2.1.2":{"name":"safer-buffer","version":"2.1.2","devDependencies":{"standard":"^11.0.1","tape":"^4.9.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==","shasum":"44fa161b0187b9549dd84bb91802f9bd8385cd6a","tarball":"https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz","fileCount":7,"unpackedSize":42299}}},"name":"safer-buffer","dist-tags":{"latest":"2.1.2"},"modified":"2018-04-08T10:42:42.789Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/4a/54/dfb16e5e21e18f931ba49530409ddf5d97841f74d705526959ce08685e9a9ff4e5fa3221c948bbe3059e8f195307a6edf1b34cc6c5eccd6ffb4cdadf8e0f b/npm/.npm/_cacache/content-v2/sha512/4a/54/dfb16e5e21e18f931ba49530409ddf5d97841f74d705526959ce08685e9a9ff4e5fa3221c948bbe3059e8f195307a6edf1b34cc6c5eccd6ffb4cdadf8e0f new file mode 100644 index 0000000..403cfd3 --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/4a/54/dfb16e5e21e18f931ba49530409ddf5d97841f74d705526959ce08685e9a9ff4e5fa3221c948bbe3059e8f195307a6edf1b34cc6c5eccd6ffb4cdadf8e0f @@ -0,0 +1 @@ +{"versions":{"1.0.0":{"name":"array-find-index","version":"1.0.0","devDependencies":{"ava":"*","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"31cf18a2e3e1371f290ea17e634bc58b79982cbb","tarball":"https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.0.tgz"},"engines":{"node":">=0.10.0"}},"1.0.1":{"name":"array-find-index","version":"1.0.1","devDependencies":{"ava":"*","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"0bc25ddac941ec8a496ae258fd4ac188003ef3af","tarball":"https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.1.tgz"},"engines":{"node":">=0.10.0"}},"1.0.2":{"name":"array-find-index","version":"1.0.2","devDependencies":{"ava":"*","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"df010aa1287e164bbda6f9723b0a96a1ec4187a1","tarball":"https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz"},"engines":{"node":">=0.10.0"}}},"name":"array-find-index","dist-tags":{"latest":"1.0.2"},"modified":"2017-03-05T11:16:33.995Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/4b/33/2dc7d1b4f349e4483d1c2f35f3168aa92f8090415032dc8a05a710302315d47f92a0a7f19d71b34cc458c63c2a9fb34da70c8f77e9263040eb48c4c759f6 b/npm/.npm/_cacache/content-v2/sha512/4b/33/2dc7d1b4f349e4483d1c2f35f3168aa92f8090415032dc8a05a710302315d47f92a0a7f19d71b34cc458c63c2a9fb34da70c8f77e9263040eb48c4c759f6 new file mode 100644 index 0000000..d0d7b78 --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/4b/33/2dc7d1b4f349e4483d1c2f35f3168aa92f8090415032dc8a05a710302315d47f92a0a7f19d71b34cc458c63c2a9fb34da70c8f77e9263040eb48c4c759f6 @@ -0,0 +1 @@ +{"versions":{"1.0.0-prerelease-1":{"name":"spdx-correct","version":"1.0.0-prerelease-1","dependencies":{"spdx":"^0.1.2"},"devDependencies":{"jscs":"^1.13.0","jshint":"^2.7.0","jsmd":"^0.3.0","tap":"^0.7.1"},"directories":{},"dist":{"shasum":"31a67d2fc64afda1d0cc80c0e253c85e44aa87c7","tarball":"http://registry.npmjs.org/spdx-correct/-/spdx-correct-1.0.0-prerelease-1.tgz"}},"1.0.0-prerelease-2":{"name":"spdx-correct","version":"1.0.0-prerelease-2","dependencies":{"spdx":"0.2.1"},"devDependencies":{"jscs":"^1.13.0","jshint":"^2.7.0","jsmd":"^0.3.0","tap":"^0.7.1"},"directories":{},"dist":{"shasum":"64090467f7e6f93d0f003674bb71063da1ef5f12","tarball":"http://registry.npmjs.org/spdx-correct/-/spdx-correct-1.0.0-prerelease-2.tgz"}},"1.0.0-prerelease-3":{"name":"spdx-correct","version":"1.0.0-prerelease-3","dependencies":{"spdx":"^0.4.0"},"devDependencies":{"jscs":"^1.13.0","jshint":"^2.7.0","jsmd":"^0.3.0","tap":"^0.7.1"},"directories":{},"dist":{"shasum":"5706cc6ce05b928a65564c76e1d6809ba033ac7e","tarball":"http://registry.npmjs.org/spdx-correct/-/spdx-correct-1.0.0-prerelease-3.tgz"}},"1.0.0-prerelease-4":{"name":"spdx-correct","version":"1.0.0-prerelease-4","dependencies":{"spdx":"^0.4.0"},"devDependencies":{"jscs":"^1.13.0","jshint":"^2.7.0","jsmd":"^0.3.0","tap":"^0.7.1"},"directories":{},"dist":{"shasum":"edf8c8d77d430f7048bdbad70d203d2beb9f8a94","tarball":"http://registry.npmjs.org/spdx-correct/-/spdx-correct-1.0.0-prerelease-4.tgz"}},"1.0.0":{"name":"spdx-correct","version":"1.0.0","dependencies":{"spdx":"^0.4.0"},"devDependencies":{"jscs":"~1.13.1","jshint":"~2.8.0","jsmd":"~0.3.0","tape":"~4.0.0"},"directories":{},"dist":{"shasum":"c2a8654a5a56d8b2d44ee82dfdfc24aaec6b702c","tarball":"http://registry.npmjs.org/spdx-correct/-/spdx-correct-1.0.0.tgz"}},"1.0.1":{"name":"spdx-correct","version":"1.0.1","dependencies":{"spdx-license-ids":"^1.0.2"},"devDependencies":{"defence-cli":"^1.0.1","replace-require-self":"^1.0.0","spdx-expression-parse":"^1.0.0","tape":"~4.0.0"},"directories":{},"dist":{"shasum":"ac075f5f2f6a06c0bfdd1c847eb3dde3dd8221ea","tarball":"http://registry.npmjs.org/spdx-correct/-/spdx-correct-1.0.1.tgz"}},"1.0.2":{"name":"spdx-correct","version":"1.0.2","dependencies":{"spdx-license-ids":"^1.0.2"},"devDependencies":{"defence-cli":"^1.0.1","replace-require-self":"^1.0.0","spdx-expression-parse":"^1.0.0","tape":"~4.0.0"},"directories":{},"dist":{"shasum":"4b3073d933ff51f3912f03ac5519498a4150db40","tarball":"http://registry.npmjs.org/spdx-correct/-/spdx-correct-1.0.2.tgz"}},"2.0.0":{"name":"spdx-correct","version":"2.0.0","dependencies":{"spdx-expression-parse":"^1.0.4"},"devDependencies":{"defence-cli":"^1.0.1","replace-require-self":"^1.0.0","spdx-expression-parse":"^1.0.0","standard":"^8.6.0","standard-markdown":"^2.3.0","tape":"~4.0.0"},"directories":{},"dist":{"shasum":"afc1a13831bc9bdf17150f83c781046ab523021d","tarball":"https://registry.npmjs.org/spdx-correct/-/spdx-correct-2.0.0.tgz"}},"2.0.1":{"name":"spdx-correct","version":"2.0.1","dependencies":{"spdx-expression-parse":"^1.0.4","spdx-license-ids":"^2.0.1"},"devDependencies":{"defence-cli":"^1.0.1","replace-require-self":"^1.0.0","spdx-expression-parse":"^1.0.0","standard":"^8.6.0","standard-markdown":"^2.3.0","tape":"~4.0.0"},"directories":{},"dist":{"integrity":"sha512-fafWgOSFl9YC7lqfGtLGuygNsGvIVcg5LSpZXfGTgwjv1t4+Yoop8/X1/6ZWIEO0VAowRvoE8ORPtulHkvwEmw==","shasum":"d6baa87d022715ad2b27c5fc5dedb37316e5de0b","tarball":"https://registry.npmjs.org/spdx-correct/-/spdx-correct-2.0.1.tgz"}},"2.0.2":{"name":"spdx-correct","version":"2.0.2","dependencies":{"spdx-license-ids":"^2.0.1"},"devDependencies":{"defence-cli":"^1.0.1","replace-require-self":"^1.0.0","spdx-expression-parse":"^2.0.0","standard":"^8.6.0","standard-markdown":"^2.3.0","tape":"~4.0.0"},"directories":{},"dist":{"integrity":"sha512-OeotV1MzOy8ujxEMBNV2ezrIXZH9etLieBtUNrBTDccycGryMMOwVD2NNCnoH4BH3HTE9NR1wK+IOciEjILFBQ==","shasum":"5ce780f3d62fa8b38c2ef7fbe463ffbac47bde96","tarball":"https://registry.npmjs.org/spdx-correct/-/spdx-correct-2.0.2.tgz"}},"2.0.3":{"name":"spdx-correct","version":"2.0.3","dependencies":{"spdx-expression-parse":"^2.0.1","spdx-license-ids":"^2.0.1"},"devDependencies":{"defence-cli":"^1.0.1","replace-require-self":"^1.0.0","standard":"^8.6.0","standard-markdown":"^2.3.0","tape":"~4.0.0"},"directories":{},"dist":{"integrity":"sha512-Eq/uVIeSHVO/dWT/8HaIdRl++U5UQ/Qd7SWhEy/eHRyqJhOp/29W471JaRlXbneJDluhSb0FQ+bNTkdRnGKM5w==","shasum":"04ae822f0ea78ef8b3bf6d92e84059e7ee97e348","tarball":"https://registry.npmjs.org/spdx-correct/-/spdx-correct-2.0.3.tgz"}},"2.0.4":{"name":"spdx-correct","version":"2.0.4","dependencies":{"spdx-expression-parse":"^2.0.1","spdx-license-ids":"^2.0.1"},"devDependencies":{"defence-cli":"^1.0.1","replace-require-self":"^1.0.0","standard":"^8.6.0","standard-markdown":"^2.3.0","tape":"~4.0.0"},"directories":{},"dist":{"integrity":"sha512-c+4gPpt9YDhz7cHlz5UrsHzxxRi4ksclxnEEKsuGT9JdwSC+ZNmsGbYRzzgxyZaBYpcWnlu+4lPcdLKx4DOCmA==","shasum":"d1652ad2ebc516f656f66ea93398558065f1b4a4","tarball":"https://registry.npmjs.org/spdx-correct/-/spdx-correct-2.0.4.tgz"}},"3.0.0":{"name":"spdx-correct","version":"3.0.0","dependencies":{"spdx-expression-parse":"^3.0.0","spdx-license-ids":"^3.0.0"},"devDependencies":{"defence-cli":"^2.0.1","replace-require-self":"^1.0.0","standard":"^11.0.0","standard-markdown":"^4.0.2","tape":"^4.9.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-N19o9z5cEyc8yQQPukRCZ9EUmb4HUpnrmaL/fxS2pBo2jbfcFRVuFZ/oFC+vZz0MNNk0h80iMn5/S6qGZOL5+g==","shasum":"05a5b4d7153a195bc92c3c425b69f3b2a9524c82","tarball":"http://registry.npmjs.org/spdx-correct/-/spdx-correct-3.0.0.tgz","fileCount":4,"unpackedSize":20843}},"3.0.1":{"name":"spdx-correct","version":"3.0.1","dependencies":{"spdx-expression-parse":"^3.0.0","spdx-license-ids":"^3.0.0"},"devDependencies":{"defence-cli":"^2.0.1","replace-require-self":"^1.0.0","standard":"^11.0.0","standard-markdown":"^4.0.2","tape":"^4.9.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-hxSPZbRZvSDuOvADntOElzJpenIR7wXJkuoUcUtS0erbgt2fgeaoPIYretfKpslMhfFDY4k0MZ2F5CUzhBsSvQ==","shasum":"434434ff9d1726b4d9f4219d1004813d80639e30","tarball":"https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.0.1.tgz","fileCount":4,"unpackedSize":20939,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbrQkUCRA9TVsSAnZWagAAWqUQAJl8+Bffzq25qZT1EtGO\n/a8XLFgByHGw0u0p8ZyvXurD8BHz1nExrRInz0rnZ14cT1jcn5a1VQ5qfTpZ\nbmW2LmZ4lNSi2ZDWSHP/mtk1naFv9Uw9Aj7Qaz62VWA1m3htsBgCi0gCk4qQ\nQUadiuH9BpTCab9dPohVnw2HgvLi4GMU6kGdSw5bsjKM+FtExLSMGUZltDgZ\nHN/vijDhyZWQ062FRDsTNrJdkj/qQRFZpQiYqPYaoOTtzcgln1cy56oo0xmP\nkBAPUTEMCozJkJU/KgEsQC3YB8IjStjWA49qnAAIoDF80XVK6TTm4t2LqoKy\nw8/e9fpRuinThu4ukP9pZvwZsDDyfuJew13yhV7tJ+tQQxAI2Kc21g1tP0Z5\npswMaHx0CK8ZeQgqxBNd4wt1WVm3LO8MGQROTMwIvnmxVhi8sE7Vu4g6doYx\nJJvGqpng5odI26etDQt87FU6HcDw04pjc0SIpfxfY+oWeWVphpfcQbfFoTs6\nLXx1/4tuA8/jtBMXpbDU9EOSOXRbJNp7hcnxpGPf/kJWNVllndNF1U9T6FOz\nNcODoHFJQuXkt7FF7WYBnzsi+cdIe4SN2fuylDeAC5WZC1ZXToR5WfHqprfZ\n3w9umFI7JExR7NkQicKGRR70HBN1m64wLcDpuMXnwmJCh9hXIkeZ9N/AbL0d\nCBp5\r\n=KVWs\r\n-----END PGP SIGNATURE-----\r\n"}},"3.0.2":{"name":"spdx-correct","version":"3.0.2","dependencies":{"spdx-expression-parse":"^3.0.0","spdx-license-ids":"^3.0.0"},"devDependencies":{"defence-cli":"^2.0.1","replace-require-self":"^1.0.0","standard":"^11.0.0","standard-markdown":"^4.0.2","tape":"^4.9.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-q9hedtzyXHr5S0A1vEPoK/7l8NpfkFYTq6iCY+Pno2ZbdZR6WexZFtqeVGkGxW3TEJMN914Z55EnAGMmenlIQQ==","shasum":"19bb409e91b47b1ad54159243f7312a858db3c2e","tarball":"https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.0.2.tgz","fileCount":4,"unpackedSize":21829,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbtm9ZCRA9TVsSAnZWagAAQAkQAIPE+D8qhJVygRtqcQ7e\n7L8agfeUUGLCAOIrLyN2bnY8mUUv1iObqCEj2t9btnEJRvXvpZ/lWhpmGgSM\nn3gOQR13zniLwgQmMjHRD6U4L3KOUC6P7qWK3ziC4iZzKp3lJ1dCUy32LuPB\nb3e03LLLK5y6xF7bHq8pG6npEmd10PXY7Po8459NHk4XCKyvx76jTucuMjH5\nbPy0/BXaDI2dljvhIVSBvS0aV5qPtj+3prW4jPXV7yakKAKYAhZRUwRaxjqV\nAllBU532ZWns7VLtf6wr1EbLZZ5Zk8nhQmgkQdl8y7NQKKYJKp6KvXWOX5GR\nPa1Q1HR2aJ/6EIWBstK3cKHJdlS8rQ9rKufKPxwFUi2v6jH/Gd3LjnG9vVXv\nTYzoK+mod5ImebJpK0p2u2SFnKPo4QSTBkInbMK2POUkNixM6ORz3v6fjh8f\nIA5mot0Op9Q7ZLF+1LHR/Sue16ehjOEhCSGa1uv4MzYzsk0Vtox3/PuqoDrp\nsT1iCNeik+ecMwdou+wVT0vgWPvV94Jh4kVtp2OhhnPW6nA9LaK4ntv95Al1\nKh0lXR2FdL67bYRh2lrmW6VkYRDDDEFjOrXrwswtefLoUFwCb4jAcMKXCrEn\nJAjQ7Q1e+6fkJ22BQMfelb0hizV3EvJb9vfz0kgcfvY8wF50Bneu09ASDxOB\nDyVp\r\n=51jJ\r\n-----END PGP SIGNATURE-----\r\n"}}},"name":"spdx-correct","dist-tags":{"latest":"3.0.2"},"modified":"2018-10-04T19:51:55.897Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/4d/7c/97a69d219d61c12d88143e347b8dce18a7a5335d9c585d228a76ff1ee85f0b0c7137e712af93b4964c12ab85848c055cd1e9dce7637694075c20a1dd93ab b/npm/.npm/_cacache/content-v2/sha512/4d/7c/97a69d219d61c12d88143e347b8dce18a7a5335d9c585d228a76ff1ee85f0b0c7137e712af93b4964c12ab85848c055cd1e9dce7637694075c20a1dd93ab new file mode 100644 index 0000000..caf39d8 --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/4d/7c/97a69d219d61c12d88143e347b8dce18a7a5335d9c585d228a76ff1ee85f0b0c7137e712af93b4964c12ab85848c055cd1e9dce7637694075c20a1dd93ab @@ -0,0 +1 @@ +{"versions":{"1.0.0":{"name":"decamelize","version":"1.0.0","devDependencies":{"ava":"0.0.4"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"5287122f71691d4505b18ff2258dc400a5b23847","tarball":"https://registry.npmjs.org/decamelize/-/decamelize-1.0.0.tgz"},"engines":{"node":">=0.10.0"}},"1.1.0":{"name":"decamelize","version":"1.1.0","devDependencies":{"ava":"0.0.4"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"fe90c002a0acec1435120ce83a6945641018d0c8","tarball":"https://registry.npmjs.org/decamelize/-/decamelize-1.1.0.tgz"},"engines":{"node":">=0.10.0"}},"1.1.1":{"name":"decamelize","version":"1.1.1","devDependencies":{"ava":"0.0.4"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"8871479a6c0487f5653d48a992f1d0381ca6f031","tarball":"https://registry.npmjs.org/decamelize/-/decamelize-1.1.1.tgz"},"engines":{"node":">=0.10.0"}},"1.1.2":{"name":"decamelize","version":"1.1.2","dependencies":{"escape-string-regexp":"^1.0.4"},"devDependencies":{"ava":"*","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"dcc93727be209632e98b02718ef4cb79602322f2","tarball":"https://registry.npmjs.org/decamelize/-/decamelize-1.1.2.tgz"},"engines":{"node":">=0.10.0"}},"1.2.0":{"name":"decamelize","version":"1.2.0","devDependencies":{"ava":"*","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"f6534d15148269b20352e7bee26f501f9a191290","tarball":"https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz"},"engines":{"node":">=0.10.0"}},"2.0.0":{"name":"decamelize","version":"2.0.0","dependencies":{"xregexp":"4.0.0"},"devDependencies":{"ava":"*","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-Ikpp5scV3MSYxY39ymh45ZLEecsTdv/Xj2CaQfI8RLMuwi7XvjX9H/fhraiSuU+C5w5NTDu4ZU72xNiZnurBPg==","shasum":"656d7bbc8094c4c788ea53c5840908c9c7d063c7","tarball":"https://registry.npmjs.org/decamelize/-/decamelize-2.0.0.tgz"},"engines":{"node":">=4"}}},"name":"decamelize","dist-tags":{"latest":"2.0.0"},"modified":"2018-01-08T19:09:45.730Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/4d/f3/9f3dc606041e6c0ee3e7ddd781cb13e199f7a0021a4360a48e5d940df353b2aeb89ff190a874e2f32b701eb042e70b1d37922921c83c21d297efbd0bc5f3 b/npm/.npm/_cacache/content-v2/sha512/4d/f3/9f3dc606041e6c0ee3e7ddd781cb13e199f7a0021a4360a48e5d940df353b2aeb89ff190a874e2f32b701eb042e70b1d37922921c83c21d297efbd0bc5f3 new file mode 100644 index 0000000..ee24f54 Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha512/4d/f3/9f3dc606041e6c0ee3e7ddd781cb13e199f7a0021a4360a48e5d940df353b2aeb89ff190a874e2f32b701eb042e70b1d37922921c83c21d297efbd0bc5f3 differ diff --git a/npm/.npm/_cacache/content-v2/sha512/51/db/aa92b00d1d34203a67e7c4fb74a11ac50f91d0e114c3e034f6eb3b3ecd839114f41925f6399a0bf66cf51652a48f352e4c83fb56f95e12d9ee77fd109273 b/npm/.npm/_cacache/content-v2/sha512/51/db/aa92b00d1d34203a67e7c4fb74a11ac50f91d0e114c3e034f6eb3b3ecd839114f41925f6399a0bf66cf51652a48f352e4c83fb56f95e12d9ee77fd109273 new file mode 100644 index 0000000..50fd80c --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/51/db/aa92b00d1d34203a67e7c4fb74a11ac50f91d0e114c3e034f6eb3b3ecd839114f41925f6399a0bf66cf51652a48f352e4c83fb56f95e12d9ee77fd109273 @@ -0,0 +1 @@ +{"versions":{"1.0.0":{"name":"hosted-git-info","version":"1.0.0","devDependencies":{"tap":"^0.4.13"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"1e5a5105f78d2e64e6d9f76f3c41a8d0e71d710e","tarball":"https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-1.0.0.tgz"}},"1.1.0":{"name":"hosted-git-info","version":"1.1.0","devDependencies":{"tap":"^0.4.13"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"79333010d9300f3b8878ea50ea75e1ac8aca225e","tarball":"https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-1.1.0.tgz"}},"1.2.0":{"name":"hosted-git-info","version":"1.2.0","devDependencies":{"tap":"^0.4.13"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"ce4fcf9f15177a9160dd8bf7755549271a6eea4a","tarball":"https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-1.2.0.tgz"}},"1.3.0":{"name":"hosted-git-info","version":"1.3.0","devDependencies":{"tap":"^0.4.13"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"b259d2194e362a43e6ddc776c3d5da6e094f8af6","tarball":"https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-1.3.0.tgz"}},"1.4.0":{"name":"hosted-git-info","version":"1.4.0","devDependencies":{"tap":"^0.4.13"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"31d0ac07a0e8aa6f21f92a61620866d92c0e7540","tarball":"https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-1.4.0.tgz"}},"1.5.0":{"name":"hosted-git-info","version":"1.5.0","devDependencies":{"tap":"^0.4.13"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"d311d0a109cd93d41ccf0b35de070099c9403b99","tarball":"https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-1.5.0.tgz"}},"1.5.1":{"name":"hosted-git-info","version":"1.5.1","devDependencies":{"tap":"^0.4.13"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"79cbd59dc6b1f44b8cb2452e3cf41b95e6fb4f4a","tarball":"https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-1.5.1.tgz"}},"1.5.2":{"name":"hosted-git-info","version":"1.5.2","devDependencies":{"tap":"^0.4.13"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"15cdfd09ab6d4d87700437ca695f12d1580f6658","tarball":"https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-1.5.2.tgz"}},"1.5.3":{"name":"hosted-git-info","version":"1.5.3","devDependencies":{"tap":"^0.4.13"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"1f46e25e9c0e207852fb7a4b94422ed5f09a03f5","tarball":"https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-1.5.3.tgz"}},"1.6.0":{"name":"hosted-git-info","version":"1.6.0","devDependencies":{"standard":"^3.3.2","tap":"^0.4.13"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"dbc718bed09c2f30abe6bdc68d46b9c5317282db","tarball":"https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-1.6.0.tgz"}},"2.0.0":{"name":"hosted-git-info","version":"2.0.0","devDependencies":{"standard":"^3.3.2","tap":"^0.4.13"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"c2db8b7037d541b4d5e6cae923d7c62e640d4704","tarball":"https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.0.0.tgz"}},"2.0.1":{"name":"hosted-git-info","version":"2.0.1","devDependencies":{"standard":"^3.3.2","tap":"^0.4.13"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"2636ccefa9b590ce396d34dc3b64d478ccd29091","tarball":"https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.0.1.tgz"}},"2.0.2":{"name":"hosted-git-info","version":"2.0.2","devDependencies":{"standard":"^3.3.2","tap":"^0.4.13"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"b5b1c5295acdd4b39312d2f3d42ca60b91f7a952","tarball":"https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.0.2.tgz"}},"2.0.3":{"name":"hosted-git-info","version":"2.0.3","devDependencies":{"standard":"^3.3.2","tap":"^0.4.13"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"d58835b6accdfc91ac8fa0707c070cde81f1ddff","tarball":"https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.0.3.tgz"}},"2.1.0":{"name":"hosted-git-info","version":"2.1.0","devDependencies":{"standard":"^3.3.2","tap":"^0.4.13"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"8b38742f56a7e2dafa3eb9ae85eea8b393f4c13e","tarball":"https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.1.0.tgz"}},"2.1.1":{"name":"hosted-git-info","version":"2.1.1","devDependencies":{"standard":"^3.3.2","tap":"^0.4.13"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"915946c135ee5ff59437ef126f9bd6112192fcb0","tarball":"https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.1.1.tgz"}},"2.1.2":{"name":"hosted-git-info","version":"2.1.2","devDependencies":{"standard":"^3.3.2","tap":"^0.4.13"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"f947976852931851c33644bbce80d1e499795246","tarball":"https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.1.2.tgz"}},"2.1.3":{"name":"hosted-git-info","version":"2.1.3","devDependencies":{"standard":"^3.3.2","tap":"^0.4.13"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"60028d70b8e2b0c28005fd643234c1f9dc63cd45","tarball":"https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.1.3.tgz"}},"2.1.4":{"name":"hosted-git-info","version":"2.1.4","devDependencies":{"standard":"^3.3.2","tap":"^0.4.13"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"d9e953b26988be88096c46e926494d9604c300f8","tarball":"https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.1.4.tgz"}},"2.1.5":{"name":"hosted-git-info","version":"2.1.5","devDependencies":{"standard":"^3.3.2","tap":"^0.4.13"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"0ba81d90da2e25ab34a332e6ec77936e1598118b","tarball":"https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.1.5.tgz"}},"2.2.0":{"name":"hosted-git-info","version":"2.2.0","devDependencies":{"standard":"^3.3.2","tap":"^10.0.2"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"7a0d097863d886c0fabbdcd37bf1758d8becf8a5","tarball":"https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.2.0.tgz"}},"2.3.0":{"name":"hosted-git-info","version":"2.3.0","devDependencies":{"standard":"^3.3.2","tap":"^10.0.2"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"2f7012729081debdd28ff574d52c71f54036f879","tarball":"https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.3.0.tgz"}},"2.3.1":{"name":"hosted-git-info","version":"2.3.1","devDependencies":{"standard":"^3.3.2","tap":"^10.0.2"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"ac439421605f0beb0ea1349de7d8bb28e50be1dd","tarball":"https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.3.1.tgz"}},"2.4.0":{"name":"hosted-git-info","version":"2.4.0","devDependencies":{"standard":"^9.0.2","tap":"^10.3.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"4812ed9c9db720d093a0b5025135e30ac9565933","tarball":"https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.4.0.tgz"}},"2.4.1":{"name":"hosted-git-info","version":"2.4.1","devDependencies":{"standard":"^9.0.2","tap":"^10.3.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"4b0445e41c004a8bd1337773a4ff790ca40318c8","tarball":"https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.4.1.tgz"}},"2.4.2":{"name":"hosted-git-info","version":"2.4.2","devDependencies":{"standard":"^9.0.2","tap":"^10.3.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"0076b9f46a270506ddbaaea56496897460612a67","tarball":"https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.4.2.tgz"}},"2.5.0":{"name":"hosted-git-info","version":"2.5.0","devDependencies":{"standard":"^9.0.2","tap":"^10.3.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-pNgbURSuab90KbTqvRPsseaTxOJCZBD0a7t+haSN33piP9cCM4l0CqdzAif2hUqm716UovKB2ROmiabGAKVXyg==","shasum":"6d60e34b3abbc8313062c3b798ef8d901a07af3c","tarball":"https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.5.0.tgz"}},"2.6.0":{"name":"hosted-git-info","version":"2.6.0","devDependencies":{"standard":"^9.0.2","standard-version":"^4.3.0","tap":"^10.3.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-lIbgIIQA3lz5XaB6vxakj6sDHADJiZadYEJB+FgA+C4nubM1NwcuvUr9EJPmnH1skZqpqUzWborWo8EIUi0Sdw==","shasum":"23235b29ab230c576aab0d4f13fc046b0b038222","tarball":"https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.6.0.tgz","fileCount":7,"unpackedSize":18091},"engines":{"node":">=4"}},"2.6.1":{"name":"hosted-git-info","version":"2.6.1","devDependencies":{"standard":"^9.0.2","tap":"^10.3.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-Ba4+0M4YvIDUUsprMjhVTU1yN9F2/LJSAl69ZpzaLT4l4j5mwTS6jqqW9Ojvj6lKz/veqPzpJBqGbXspOb533A==","shasum":"6e4cee78b01bb849dcf93527708c69fdbee410df","tarball":"https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.6.1.tgz","fileCount":6,"unpackedSize":17127,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbMUWICRA9TVsSAnZWagAAsc0P/jH+3wQsq7QePWrN427i\nxQ3M+MSJT3u2woFvwrsTLyzRJu4O3RVprSFrwJGMaFSEGGmee6VuKtpi5b36\nDp05Hlz0QWgGAXvKkqD5dd0v2RfEBkL4y74l3Vas1sgOxeMO3uf7WSd7afbM\nhPGKqqZHA7Y7uZEcj0E68JSfaDdxHRq9yTNrM+/aM5pL2kGNkV4eOFujx4Qc\n467jEHgUS5+kj8IJmuzybbwSkbXFR1S3ciszwlormIBrcSwofg/J9KR6QAA2\n3VjvwTsIDzSd8HREQ3tY+Rgs5cjKbvf6E1YYsJk9zV9tyEF8QhKftN2mc77Y\nAt1qggy9PfuzKv+83phvIv4vJAULVUxfvsBxh/HcyK9BJKHpy+P3K+3VmQcf\nuMNN2tCFm3yqD3v7QM02QyfD4YyuCxeavwmiynUERM11j0/I7jky7KkzwaMK\nM5xLuxst0LvC2dCm0qoTELB1wz8FJGtGOfIv2OTtJ7xCDMggIvbjvmBc57dX\n03TJKUxB4yXTYAgwKn9CiL76VuhrGGKrmifcf6yFqWPa4Q82iRycsD7m1M6Y\n/0DbpkISd8t5cYUTh4IO7GLnPOPuhLCMgibRP9mGAn39P3DmDEk9Rk8xHV03\n4xTcBjvpPzvpJ+GBMqcTn4bJTfaYhNQY0kr96ofYzk8JQnLPqgfrU2waMaDN\nuJ2M\r\n=5ZJh\r\n-----END PGP SIGNATURE-----\r\n"}},"2.7.0":{"name":"hosted-git-info","version":"2.7.0","devDependencies":{"standard":"^11.0.1","standard-version":"^4.3.0","tap":"^12.0.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-cdKzzZ7mHqOQeEeFy5nnVZMZ6hvEdeOw8B1l+pMdGf6V7hcRg/ll1pPi3gBleHp3U/B88Xq/a2SGuO4WVW2/qw==","shasum":"8aa16a0a8c1381451d967981143d2f1d268f45ec","tarball":"https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.7.0.tgz","fileCount":7,"unpackedSize":19123,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbP/5uCRA9TVsSAnZWagAAIkcP/RPA6u2s/bp1uheQv/6T\nQnSXeqYWVlFzOmrBhNte0ONAFXWQu169DhezeRpttJQJ3cTC38zXoKPtGOXQ\nEW1xKN3dG7vbqJrFDP1iju8gXWHrockGf4A6jxLD7KYD49fJ7aWCTHaf+FJL\nMNl9IN1BFqoXI0/0hsShx2afgbj2T4/MbdLeG5ObSSKzFgFfj7hsW4Mmf0VW\nuYifndJZs1lYyb+YyUlSMEZmPtb1A1RyN2TBEav2oDKW4yotT+UfrKJIewB3\n1qn0t6DlO+s3k5YIbBOzIWmAeA/c5u3/1M/H6ts8peFr96s97f0u39mYp5IG\nxzzO4nugemSByeRaowaejtmTwIWoeZIf7ySUUNRB6DbUqF+0fLzwgY7wmEmM\nQX5Jd9uayNTPLB2dmfLueqxumocTnH5FHUF99PwuLnbefL50ePK0LwR1LaTg\nN3VuRaNQO8htcGWhyI32MmVIqXZPH0kLeU8KVsNbqFCKMZge5gypaIwR6xDJ\np0Dct0EbprVGaRzjefNxYxA2xwFeXcgG+WbOsNXkIAW/OQBJrKGYZF78JB1p\ngdvuCIzryPTafzK5CuXg8X3SBZSkXWu3KoBQXKxgZHd3+ba7Kxm1WbyMgX7Q\nKP/UeVj4hu9AAnuvQPdbbpiau0X6FQ+/9hIkHqvuVvq6e3ybNqB8FC3NxwLK\nvVkw\r\n=cj2F\r\n-----END PGP SIGNATURE-----\r\n"}},"2.7.1":{"name":"hosted-git-info","version":"2.7.1","devDependencies":{"standard":"^11.0.1","standard-version":"^4.3.0","tap":"^12.0.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-7T/BxH19zbcCTa8XkMlbK5lTo1WtgkFi3GvdWEyNuc4Vex7/9Dqbnpsf4JMydcfj9HCg4zUWFTL3Za6lapg5/w==","shasum":"97f236977bd6e125408930ff6de3eec6281ec047","tarball":"https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.7.1.tgz","fileCount":7,"unpackedSize":19609,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbQBE4CRA9TVsSAnZWagAAxTEQAI+yjtN4q/ZkmArAqgSI\n+Om6QcyTXqtzp9Q0U+BgC6hsfXYKi4ffrE7Qjta6Zmh2APov5glROoiyI0D5\n/srs1ydXUM+5/McyrHwZz+JCtG5oYkSATqOQdei4iG9+1KwgWRb8dt6D31E+\nsEwlVXEV+l/6KoO7Wvi4dCnKYmJev/ZCWcsUpegvNhE/wswfUgMWOHfX3Z+E\nV4hMVaxCvZbsvFoZUDhQAyk0kkE0/ISFJLFG+LHUIajAR3jZkQj4vdIJc56m\nyMgf1alEXlT13/wXjPEzWtY3p+a7b/NIzG7NAarHT298denmZaSzfd50jTmm\nCykr7WQIV16XwDvV7kCgjH8Plqc/RO2B2t4DzGaKyDtJSzOCPY3j52s+a9gj\nMzPUVL3Zvx+HMdRfp1ay8+ijm1xKCyc99GghlrqBbBc1qHAYNyMtlx1vNB0U\nH39luq4cUew2HCf3qtdm3zvxcL0JZuRIKVHWR8YrSYEGj8yuXcdl1L7hTF0Q\nihSqvwsJCoD5oUdYhl1IQf3UC/ghK8GNAX08Ug/801P1lFjQadIhrP6y6qZl\nvtrneMOL3IpUKZwDmLTyBiCrEWGmRAV7VRTlymUamZ1CaOgC/22F4jgEfP76\nBvdqHOqUZefQlBbBSlg8guoprMxHHFvJ5EZd3QllgoWgR9ecPyj5oEmRj0R/\n47P6\r\n=2k7/\r\n-----END PGP SIGNATURE-----\r\n"}}},"name":"hosted-git-info","dist-tags":{"latest":"2.7.1"},"modified":"2018-07-07T01:02:51.474Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/55/3d/1923a91945d4e1f18c89c3748c6d89bfbbe36a7ec03112958ed0f7fdb2af3f7bde16c713a93cac7d151d459720ad3950cd390fbc9ed96a17189173eaf9a8 b/npm/.npm/_cacache/content-v2/sha512/55/3d/1923a91945d4e1f18c89c3748c6d89bfbbe36a7ec03112958ed0f7fdb2af3f7bde16c713a93cac7d151d459720ad3950cd390fbc9ed96a17189173eaf9a8 new file mode 100644 index 0000000..be94cc7 Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha512/55/3d/1923a91945d4e1f18c89c3748c6d89bfbbe36a7ec03112958ed0f7fdb2af3f7bde16c713a93cac7d151d459720ad3950cd390fbc9ed96a17189173eaf9a8 differ diff --git a/npm/.npm/_cacache/content-v2/sha512/55/f2/6860747cbde24f82723fcdb60995152a22bcedef11e6c515a79133114c42341db8e0a34c5e203815825ab4ae144399787276d9aa8dd8706d629ff2484cfb b/npm/.npm/_cacache/content-v2/sha512/55/f2/6860747cbde24f82723fcdb60995152a22bcedef11e6c515a79133114c42341db8e0a34c5e203815825ab4ae144399787276d9aa8dd8706d629ff2484cfb new file mode 100644 index 0000000..9ef03b0 --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/55/f2/6860747cbde24f82723fcdb60995152a22bcedef11e6c515a79133114c42341db8e0a34c5e203815825ab4ae144399787276d9aa8dd8706d629ff2484cfb @@ -0,0 +1 @@ +{"versions":{"0.0.1":{"name":"eventemitter2","version":"0.0.1","dependencies":{},"devDependencies":{"nodeunit":"*"},"directories":{},"dist":{"shasum":"d7101fd500400ec95295c5f9774ee1c5ce978192","tarball":"http://registry.npmjs.org/eventemitter2/-/eventemitter2-0.0.1.tgz"},"engines":["node"]},"0.1.0":{"name":"eventemitter2","version":"0.1.0","dependencies":{},"devDependencies":{"nodeunit":"*"},"directories":{},"dist":{"shasum":"e4833ce748657878cae71ccdecb5c17092dc0e54","tarball":"http://registry.npmjs.org/eventemitter2/-/eventemitter2-0.1.0.tgz"},"engines":["node"]},"0.1.1":{"name":"eventemitter2","version":"0.1.1","dependencies":{},"devDependencies":{"nodeunit":"*"},"directories":{},"dist":{"shasum":"51b932d79645f439d1e92f92fb713bbd257beeac","tarball":"http://registry.npmjs.org/eventemitter2/-/eventemitter2-0.1.1.tgz"},"engines":["node"]},"0.1.3":{"name":"eventemitter2","version":"0.1.3","dependencies":{},"devDependencies":{"nodeunit":"*"},"directories":{},"dist":{"shasum":"fa5d97c7166432de964a941feeb90f3667110d13","tarball":"http://registry.npmjs.org/eventemitter2/-/eventemitter2-0.1.3.tgz"},"engines":["node"]},"0.2.5":{"name":"eventemitter2","version":"0.2.5","dependencies":{},"devDependencies":{"nodeunit":"*"},"directories":{},"dist":{"shasum":"148c2a868b709bca38e2263e12cc2d8606c3450b","tarball":"http://registry.npmjs.org/eventemitter2/-/eventemitter2-0.2.5.tgz"},"engines":["node"]},"0.2.6":{"name":"eventemitter2","version":"0.2.6","dependencies":{},"devDependencies":{"nodeunit":"*"},"directories":{},"dist":{"shasum":"39efa66b7bedbc3c3ee46240b1dc0c3970ed5d12","tarball":"http://registry.npmjs.org/eventemitter2/-/eventemitter2-0.2.6.tgz"},"engines":["node"]},"0.2.7":{"name":"eventemitter2","version":"0.2.7","dependencies":{},"devDependencies":{"nodeunit":"*"},"directories":{},"dist":{"shasum":"2a069734ac8641bdd74f1d1ddf2084f1788073a5","tarball":"http://registry.npmjs.org/eventemitter2/-/eventemitter2-0.2.7.tgz"},"engines":["node"]},"0.3.5":{"name":"eventemitter2","version":"0.3.5","dependencies":{},"devDependencies":{"nodeunit":"*","benchmark":">= 0.2.2"},"directories":{},"dist":{"shasum":"ddaf10fe40c6a1e37dfdfed340360cb61c64cb8b","tarball":"http://registry.npmjs.org/eventemitter2/-/eventemitter2-0.3.5.tgz"},"engines":["node"]},"0.3.6":{"name":"eventemitter2","version":"0.3.6","dependencies":{},"devDependencies":{"nodeunit":"*","benchmark":">= 0.2.2"},"directories":{},"dist":{"shasum":"70de8b0301469ad4e14c4381a6f46149672e414b","tarball":"http://registry.npmjs.org/eventemitter2/-/eventemitter2-0.3.6.tgz"},"engines":["node"]},"0.3.7":{"name":"eventemitter2","version":"0.3.7","dependencies":{},"devDependencies":{"nodeunit":"*","benchmark":">= 0.2.2"},"directories":{},"dist":{"shasum":"f32760181c841862e3a3f7403d1ed15c7647f540","tarball":"http://registry.npmjs.org/eventemitter2/-/eventemitter2-0.3.7.tgz"},"engines":["node"]},"0.4.0":{"name":"eventemitter2","version":"0.4.0","dependencies":{},"devDependencies":{"nodeunit":"*","benchmark":">= 0.2.2"},"directories":{},"dist":{"shasum":"c5bc072aa6fc1144c03890b725ab08d2c4e739fc","tarball":"http://registry.npmjs.org/eventemitter2/-/eventemitter2-0.4.0.tgz"},"engines":["node"]},"0.4.1":{"name":"eventemitter2","version":"0.4.1","dependencies":{},"devDependencies":{"nodeunit":"*","benchmark":">= 0.2.2"},"directories":{},"dist":{"shasum":"6875a14c1dde52a4c9c8c7ffd033cf79679cd45b","tarball":"http://registry.npmjs.org/eventemitter2/-/eventemitter2-0.4.1.tgz"},"engines":["node"]},"0.4.3":{"name":"eventemitter2","version":"0.4.3","dependencies":{},"devDependencies":{"nodeunit":"*","benchmark":">= 0.2.2"},"directories":{},"dist":{"shasum":"1f7f5d919624fd0b40c59b8c402b1b49267e0109","tarball":"http://registry.npmjs.org/eventemitter2/-/eventemitter2-0.4.3.tgz"},"engines":["node"]},"0.4.6":{"name":"eventemitter2","version":"0.4.6","dependencies":{},"optionalDependencies":{},"devDependencies":{"nodeunit":"*","benchmark":">= 0.2.2"},"directories":{},"dist":{"shasum":"d3df5c816acefa40e13b081d2530c112ef0a0421","tarball":"http://registry.npmjs.org/eventemitter2/-/eventemitter2-0.4.6.tgz"},"engines":["node"]},"0.4.7":{"name":"eventemitter2","version":"0.4.7","dependencies":{},"optionalDependencies":{},"devDependencies":{"nodeunit":"*","benchmark":">= 0.2.2"},"directories":{},"dist":{"shasum":"5e14ced6724bf5e7547cbd1d5dcf2318cd6ebd9d","tarball":"http://registry.npmjs.org/eventemitter2/-/eventemitter2-0.4.7.tgz"},"engines":["node"]},"0.4.8":{"name":"eventemitter2","version":"0.4.8","dependencies":{},"optionalDependencies":{},"devDependencies":{"nodeunit":"*","benchmark":">= 0.2.2"},"directories":{},"dist":{"shasum":"ed548d68bdf41125687c626926537ce1db306940","tarball":"http://registry.npmjs.org/eventemitter2/-/eventemitter2-0.4.8.tgz"},"engines":["node"]},"0.4.9":{"name":"eventemitter2","version":"0.4.9","dependencies":{},"optionalDependencies":{},"devDependencies":{"nodeunit":"*","benchmark":">= 0.2.2"},"directories":{},"dist":{"shasum":"08eac181e944b4855d86d7cbdacd0ce118ab9af0","tarball":"http://registry.npmjs.org/eventemitter2/-/eventemitter2-0.4.9.tgz"},"engines":["node"]},"0.4.10":{"name":"eventemitter2","version":"0.4.10","devDependencies":{"nodeunit":"*","benchmark":">= 0.2.2"},"directories":{},"dist":{"shasum":"cf2135181b94093f2f02328d32a2efe88d9a2464","tarball":"http://registry.npmjs.org/eventemitter2/-/eventemitter2-0.4.10.tgz"},"engines":["node"]},"0.4.11":{"name":"eventemitter2","version":"0.4.11","devDependencies":{"nodeunit":"*","benchmark":">= 0.2.2"},"directories":{},"dist":{"shasum":"8bbf2b6ac7b31e2eea0c8d8f533ef41f849a9e2c","tarball":"http://registry.npmjs.org/eventemitter2/-/eventemitter2-0.4.11.tgz"},"engines":["node"]},"0.4.12":{"name":"eventemitter2","version":"0.4.12","devDependencies":{"nodeunit":"*","benchmark":">= 0.2.2"},"directories":{},"dist":{"shasum":"6cf14249fdc8799be7416e871e73fd2bb89e35e0","tarball":"http://registry.npmjs.org/eventemitter2/-/eventemitter2-0.4.12.tgz"}},"0.4.13":{"name":"eventemitter2","version":"0.4.13","devDependencies":{"nodeunit":"*","benchmark":">= 0.2.2"},"directories":{},"dist":{"shasum":"0a8ab97f9c1b563361b8927f9e80606277509153","tarball":"http://registry.npmjs.org/eventemitter2/-/eventemitter2-0.4.13.tgz"}},"0.4.14":{"name":"eventemitter2","version":"0.4.14","devDependencies":{"nodeunit":"*","benchmark":">= 0.2.2"},"directories":{},"dist":{"shasum":"8f61b75cde012b2e9eb284d4545583b5643b61ab","tarball":"http://registry.npmjs.org/eventemitter2/-/eventemitter2-0.4.14.tgz"}},"1.0.0":{"name":"eventemitter2","version":"1.0.0","devDependencies":{"nodeunit":"*","benchmark":">= 0.2.2"},"directories":{},"dist":{"shasum":"f091f2a746d2353a27c758abf5bed642ac8c582d","tarball":"http://registry.npmjs.org/eventemitter2/-/eventemitter2-1.0.0.tgz"}},"1.0.1":{"name":"eventemitter2","version":"1.0.1","devDependencies":{"nodeunit":"*","benchmark":">= 0.2.2"},"directories":{},"dist":{"shasum":"2ba7fe74989332d5599f367eef1d5ef771610be7","tarball":"http://registry.npmjs.org/eventemitter2/-/eventemitter2-1.0.1.tgz"}},"1.0.2":{"name":"eventemitter2","version":"1.0.2","devDependencies":{"nodeunit":"*","benchmark":">= 0.2.2"},"directories":{},"dist":{"shasum":"c484aae2a1b898e0a5b91cce2915bcaf19bc2568","tarball":"http://registry.npmjs.org/eventemitter2/-/eventemitter2-1.0.2.tgz"}},"1.0.3":{"name":"eventemitter2","version":"1.0.3","devDependencies":{"nodeunit":"*","benchmark":">= 0.2.2"},"directories":{},"dist":{"shasum":"91d7c07a46a9a4f085d408f1220e89e479654e85","tarball":"http://registry.npmjs.org/eventemitter2/-/eventemitter2-1.0.3.tgz"}},"1.0.4":{"name":"eventemitter2","version":"1.0.4","devDependencies":{"nodeunit":"*","benchmark":">= 0.2.2"},"directories":{},"dist":{"shasum":"a9325b2610e7e8ddd50ec7dcc1cef5962a47f3f3","tarball":"http://registry.npmjs.org/eventemitter2/-/eventemitter2-1.0.4.tgz"}},"1.0.5":{"name":"eventemitter2","version":"1.0.5","devDependencies":{"nodeunit":"*","benchmark":">= 0.2.2"},"directories":{},"dist":{"shasum":"f983610517b1737c0b9dc643beca93893c04df18","tarball":"http://registry.npmjs.org/eventemitter2/-/eventemitter2-1.0.5.tgz"}},"2.0.0":{"name":"eventemitter2","version":"2.0.0","devDependencies":{"nodeunit":"*","benchmark":">= 0.2.2"},"directories":{},"dist":{"shasum":"2bab5a73a10a377e9e941da7023dc7576d968fbc","tarball":"http://registry.npmjs.org/eventemitter2/-/eventemitter2-2.0.0.tgz"}},"2.0.1":{"name":"eventemitter2","version":"2.0.1","devDependencies":{"nodeunit":"*","benchmark":">= 0.2.2"},"directories":{},"dist":{"shasum":"a23a18d4fc2cb6a6ed1e6f0239731c4d296a87cf","tarball":"http://registry.npmjs.org/eventemitter2/-/eventemitter2-2.0.1.tgz"}},"2.0.2":{"name":"eventemitter2","version":"2.0.2","devDependencies":{"nodeunit":"*","benchmark":">= 0.2.2"},"directories":{},"dist":{"shasum":"43325aadfc7d7e81c38bc63e021a45860367f2aa","tarball":"http://registry.npmjs.org/eventemitter2/-/eventemitter2-2.0.2.tgz"}},"2.1.0":{"name":"eventemitter2","version":"2.1.0","devDependencies":{"nodeunit":"*","benchmark":">= 0.2.2"},"directories":{},"dist":{"shasum":"6f0b98214c4a5e44eee26b539b161e8f9a491496","tarball":"http://registry.npmjs.org/eventemitter2/-/eventemitter2-2.1.0.tgz"}},"2.1.1":{"name":"eventemitter2","version":"2.1.1","devDependencies":{"nodeunit":"*","benchmark":">= 0.2.2"},"directories":{},"dist":{"shasum":"850d3fd5f4f7dec155821d91ba5f77c1895354b8","tarball":"http://registry.npmjs.org/eventemitter2/-/eventemitter2-2.1.1.tgz"}},"2.1.2":{"name":"eventemitter2","version":"2.1.2","devDependencies":{"nodeunit":"*","benchmark":">= 0.2.2"},"directories":{},"dist":{"shasum":"3def69f10668ccbc1a44fbcb6766dc6a270bc362","tarball":"http://registry.npmjs.org/eventemitter2/-/eventemitter2-2.1.2.tgz"}},"2.1.3":{"name":"eventemitter2","version":"2.1.3","devDependencies":{"nodeunit":"*","benchmark":">= 0.2.2"},"directories":{},"dist":{"shasum":"bd7201f85c59548380e1e43b3f6a7286d4da7349","tarball":"http://registry.npmjs.org/eventemitter2/-/eventemitter2-2.1.3.tgz"}},"2.2.0":{"name":"eventemitter2","version":"2.2.0","devDependencies":{"nodeunit":"*","benchmark":">= 0.2.2"},"directories":{},"dist":{"shasum":"1be1800547261921dff3636edba88f3944b63e88","tarball":"http://registry.npmjs.org/eventemitter2/-/eventemitter2-2.2.0.tgz"}},"2.2.1":{"name":"eventemitter2","version":"2.2.1","devDependencies":{"nodeunit":"*","benchmark":">= 0.2.2"},"directories":{},"dist":{"shasum":"bb4f09ff9bdae5920a8f42bef0d296f81b80d034","tarball":"http://registry.npmjs.org/eventemitter2/-/eventemitter2-2.2.1.tgz"}},"2.2.2":{"name":"eventemitter2","version":"2.2.2","devDependencies":{"nodeunit":"*","benchmark":">= 0.2.2"},"directories":{},"dist":{"shasum":"407ea71c2020cd57538203ab7e7a6bdcfb7692d5","tarball":"https://registry.npmjs.org/eventemitter2/-/eventemitter2-2.2.2.tgz"}},"3.0.0":{"name":"eventemitter2","version":"3.0.0","devDependencies":{"nodeunit":"*","benchmark":">= 0.2.2"},"directories":{},"dist":{"shasum":"fec69ba0b1cde27a1bb0bd52df549fd6f65b0f45","tarball":"https://registry.npmjs.org/eventemitter2/-/eventemitter2-3.0.0.tgz"}},"3.0.1":{"name":"eventemitter2","version":"3.0.1","devDependencies":{"nodeunit":"*","benchmark":">= 0.2.2"},"directories":{},"dist":{"shasum":"180765bed7b8e6a7b52d353c508a4a24534bfdcb","tarball":"https://registry.npmjs.org/eventemitter2/-/eventemitter2-3.0.1.tgz"}},"3.0.2":{"name":"eventemitter2","version":"3.0.2","devDependencies":{"nodeunit":"*","benchmark":">= 0.2.2"},"directories":{},"dist":{"shasum":"81c0edb739ffa64fb9f21bbcb1d2b419a5133512","tarball":"https://registry.npmjs.org/eventemitter2/-/eventemitter2-3.0.2.tgz"}},"4.0.0":{"name":"eventemitter2","version":"4.0.0","devDependencies":{"nodeunit":"*","benchmark":">= 0.2.2"},"directories":{},"dist":{"shasum":"0754a5107f598ef36a21b56b2f08b047e8f895ec","tarball":"https://registry.npmjs.org/eventemitter2/-/eventemitter2-4.0.0.tgz"}},"4.1.0":{"name":"eventemitter2","version":"4.1.0","devDependencies":{"nodeunit":"*","benchmark":">= 0.2.2"},"directories":{},"dist":{"shasum":"b1fb8a1144e7dfcf80cecce9877ff6d68e7d8506","tarball":"https://registry.npmjs.org/eventemitter2/-/eventemitter2-4.1.0.tgz"}},"4.1.2":{"name":"eventemitter2","version":"4.1.2","devDependencies":{"nodeunit":"*","benchmark":">= 0.2.2"},"directories":{},"dist":{"shasum":"0e1a8477af821a6ef3995b311bf74c23a5247f15","tarball":"https://registry.npmjs.org/eventemitter2/-/eventemitter2-4.1.2.tgz"}},"5.0.0":{"name":"eventemitter2","version":"5.0.0","devDependencies":{"nodeunit":"*","benchmark":">= 0.2.2"},"directories":{},"dist":{"shasum":"d7f7e256b6314938318e5ed4fd12ac65724962c6","tarball":"https://registry.npmjs.org/eventemitter2/-/eventemitter2-5.0.0.tgz"}},"5.0.1":{"name":"eventemitter2","version":"5.0.1","devDependencies":{"benchmark":">= 0.2.2","nodeunit":"*","nyc":"^11.4.1"},"directories":{},"dist":{"shasum":"6197a095d5fb6b57e8942f6fd7eaad63a09c9452","tarball":"https://registry.npmjs.org/eventemitter2/-/eventemitter2-5.0.1.tgz"}}},"name":"eventemitter2","dist-tags":{"latest":"5.0.1"},"modified":"2018-08-30T19:24:10.922Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/59/ac/f15cdcd7a7ec87f53fe344593ca975dd21c419831e5d98173048d3503438423d3ca0c9df5f3f952d316c936a1068d44b8ae46bb38e23956ffe2c7b95e430 b/npm/.npm/_cacache/content-v2/sha512/59/ac/f15cdcd7a7ec87f53fe344593ca975dd21c419831e5d98173048d3503438423d3ca0c9df5f3f952d316c936a1068d44b8ae46bb38e23956ffe2c7b95e430 new file mode 100644 index 0000000..c99e31d --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/59/ac/f15cdcd7a7ec87f53fe344593ca975dd21c419831e5d98173048d3503438423d3ca0c9df5f3f952d316c936a1068d44b8ae46bb38e23956ffe2c7b95e430 @@ -0,0 +1 @@ +{"versions":{"0.1.0":{"name":"get-stdin","version":"0.1.0","devDependencies":{"mocha":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"5998af24aafc802d15c82c685657eeb8b10d4a91","tarball":"https://registry.npmjs.org/get-stdin/-/get-stdin-0.1.0.tgz"},"engines":{"node":">=0.10.0"}},"1.0.0":{"name":"get-stdin","version":"1.0.0","devDependencies":{"ava":"0.0.3"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"00bd5a494c81c372f5629bea103bbffe7a1da3ce","tarball":"https://registry.npmjs.org/get-stdin/-/get-stdin-1.0.0.tgz"},"engines":{"node":">=0.10.0"}},"2.0.0":{"name":"get-stdin","version":"2.0.0","devDependencies":{"ava":"0.0.3","buffer-equal":"0.0.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"868c6d29a61b9e144d0cf52ca1a69420b89da9f2","tarball":"https://registry.npmjs.org/get-stdin/-/get-stdin-2.0.0.tgz"},"engines":{"node":">=0.10.0"}},"3.0.0":{"name":"get-stdin","version":"3.0.0","devDependencies":{"ava":"0.0.4","buffer-equal":"0.0.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"f4e8c8fafabf875e6dfebffd3e057a3f8a53310f","tarball":"https://registry.npmjs.org/get-stdin/-/get-stdin-3.0.0.tgz"},"engines":{"node":">=0.10.0"}},"3.0.1":{"name":"get-stdin","version":"3.0.1","devDependencies":{"ava":"0.0.4","buffer-equal":"0.0.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"424900dd45819cc0d66ee51344234350a606c6a3","tarball":"https://registry.npmjs.org/get-stdin/-/get-stdin-3.0.1.tgz"},"engines":{"node":">=0.10.0"}},"3.0.2":{"name":"get-stdin","version":"3.0.2","devDependencies":{"ava":"0.0.4","buffer-equal":"0.0.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"c1ced24b9039b38ded85bdf161e57713b6dd4abe","tarball":"https://registry.npmjs.org/get-stdin/-/get-stdin-3.0.2.tgz"},"engines":{"node":">=0.10.0"}},"4.0.0":{"name":"get-stdin","version":"4.0.0","devDependencies":{"ava":"0.0.4","buffer-equal":"0.0.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"ed997f6a9616103a6e4f230f60985b96d99e4938","tarball":"https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.0.tgz"},"engines":{"node":">=0.10.0"}},"4.0.1":{"name":"get-stdin","version":"4.0.1","devDependencies":{"ava":"0.0.4","buffer-equal":"0.0.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"b968c6b0a04384324902e8bf1a5df32579a450fe","tarball":"https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz"},"engines":{"node":">=0.10.0"}},"5.0.0":{"name":"get-stdin","version":"5.0.0","devDependencies":{"ava":"*","buffer-equals":"^1.0.3","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"92ac421f64f6c12a1f9612c092fbd661989272d3","tarball":"https://registry.npmjs.org/get-stdin/-/get-stdin-5.0.0.tgz"},"engines":{"node":">=0.12.0"}},"5.0.1":{"name":"get-stdin","version":"5.0.1","devDependencies":{"ava":"*","buffer-equals":"^1.0.3","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"122e161591e21ff4c52530305693f20e6393a398","tarball":"https://registry.npmjs.org/get-stdin/-/get-stdin-5.0.1.tgz"},"engines":{"node":">=0.12.0"}},"6.0.0":{"name":"get-stdin","version":"6.0.0","devDependencies":{"ava":"*","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-jp4tHawyV7+fkkSKyvjuLZswblUtz+SQKzSWnBbii16BuZksJlU1wuBYXY75r+duh/llF1ur6oNwi+2ZzjKZ7g==","shasum":"9e09bf712b360ab9225e812048f71fde9c89657b","tarball":"https://registry.npmjs.org/get-stdin/-/get-stdin-6.0.0.tgz","fileCount":4,"unpackedSize":3503},"engines":{"node":">=4"}}},"name":"get-stdin","dist-tags":{"latest":"6.0.0"},"modified":"2018-03-20T11:23:16.024Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/5b/2e/cde6375babef6ce673631f00d61e543644181274755b60667da12fd4de5e1d9991154c9851468f6480517c0dbdf822800965709f4482de76c311abb84cee b/npm/.npm/_cacache/content-v2/sha512/5b/2e/cde6375babef6ce673631f00d61e543644181274755b60667da12fd4de5e1d9991154c9851468f6480517c0dbdf822800965709f4482de76c311abb84cee new file mode 100644 index 0000000..193db44 --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/5b/2e/cde6375babef6ce673631f00d61e543644181274755b60667da12fd4de5e1d9991154c9851468f6480517c0dbdf822800965709f4482de76c311abb84cee @@ -0,0 +1 @@ +{"versions":{"0.1.0":{"name":"async","version":"0.1.0","directories":{},"dist":{"tarball":"http://registry.npmjs.org/async/-/async-0.1.0.tgz","shasum":"ab8ece0c40627e4e8f0e09c8fcf7c19ed0c4241c"},"engines":{"node":"*"}},"0.1.1":{"name":"async","version":"0.1.1","directories":{},"dist":{"tarball":"http://registry.npmjs.org/async/-/async-0.1.1.tgz","shasum":"fb965e70dbea44c8a4b8a948472dee7d27279d5e"},"engines":{"node":"*"}},"0.1.2":{"name":"async","version":"0.1.2","directories":{},"dist":{"tarball":"http://registry.npmjs.org/async/-/async-0.1.2.tgz","shasum":"be761882a64d3dc81a669f9ee3d5c28497382691"},"engines":{"node":"*"}},"0.1.3":{"name":"async","version":"0.1.3","directories":{},"dist":{"tarball":"http://registry.npmjs.org/async/-/async-0.1.3.tgz","shasum":"629ca2357112d90cafc33872366b14f2695a1fbc"},"engines":{"node":"*"}},"0.1.4":{"name":"async","version":"0.1.4","directories":{},"dist":{"tarball":"http://registry.npmjs.org/async/-/async-0.1.4.tgz","shasum":"29de4b98712ab8858411d8d8e3361a986c3b2c18"},"engines":{"node":"*"}},"0.1.5":{"name":"async","version":"0.1.5","directories":{},"dist":{"tarball":"http://registry.npmjs.org/async/-/async-0.1.5.tgz","shasum":"9d83e3d4adb9c962fc4a30e7dd04bf1206c28ea5"},"engines":{"node":"*"}},"0.1.6":{"name":"async","version":"0.1.6","directories":{},"dist":{"tarball":"http://registry.npmjs.org/async/-/async-0.1.6.tgz","shasum":"2dfb4fa1915f86056060c2e2f35a7fb8549907cc"},"engines":{"node":"*"}},"0.1.7":{"name":"async","version":"0.1.7","directories":{},"dist":{"tarball":"http://registry.npmjs.org/async/-/async-0.1.7.tgz","shasum":"e9268d0d8cd8dcfe0db0895b27dcc4bcc5c739a5"},"engines":{"node":"*"}},"0.1.8":{"name":"async","version":"0.1.8","directories":{},"dist":{"tarball":"http://registry.npmjs.org/async/-/async-0.1.8.tgz","shasum":"52f2df6c0aa6a7f8333e1fbac0fbd93670cf6758"},"engines":{"node":"*"}},"0.1.9":{"name":"async","version":"0.1.9","dependencies":{},"devDependencies":{},"directories":{},"dist":{"shasum":"f984d0739b5382c949cc3bea702d21d0dbd52040","tarball":"http://registry.npmjs.org/async/-/async-0.1.9.tgz"},"engines":{"node":"*"}},"0.1.10":{"name":"async","version":"0.1.10","dependencies":{},"devDependencies":{},"directories":{},"dist":{"shasum":"12b32bf098fa7fc51ae3ac51441b8ba15f437cf1","tarball":"http://registry.npmjs.org/async/-/async-0.1.10.tgz"},"engines":{"node":"*"}},"0.1.11":{"name":"async","version":"0.1.11","dependencies":{},"devDependencies":{},"directories":{},"dist":{"shasum":"a397a69c6febae232d20a76a5b10d8742e2b8215","tarball":"http://registry.npmjs.org/async/-/async-0.1.11.tgz"},"engines":{"node":"*"}},"0.1.12":{"name":"async","version":"0.1.12","dependencies":{},"devDependencies":{},"directories":{},"dist":{"shasum":"ab36be6611dc63d91657128e1d65102b959d4afe","tarball":"http://registry.npmjs.org/async/-/async-0.1.12.tgz"},"engines":{"node":"*"}},"0.1.13":{"name":"async","version":"0.1.13","dependencies":{},"devDependencies":{},"directories":{},"dist":{"shasum":"f1e53ad69dab282d8e75cbec5e2c5524b6195eab","tarball":"http://registry.npmjs.org/async/-/async-0.1.13.tgz"},"engines":{"node":"*"}},"0.1.14":{"name":"async","version":"0.1.14","dependencies":{},"devDependencies":{},"directories":{},"dist":{"shasum":"0fcfaf089229fc657798203d1a4544102f7d26dc","tarball":"http://registry.npmjs.org/async/-/async-0.1.14.tgz"},"engines":{"node":"*"}},"0.1.15":{"name":"async","version":"0.1.15","dependencies":{},"devDependencies":{},"directories":{},"dist":{"shasum":"2180eaca2cf2a6ca5280d41c0585bec9b3e49bd3","tarball":"http://registry.npmjs.org/async/-/async-0.1.15.tgz"},"engines":{"node":"*"}},"0.1.16":{"name":"async","version":"0.1.16","dependencies":{},"optionalDependencies":{},"devDependencies":{},"directories":{},"dist":{"shasum":"b3a61fdc1a9193d4f64755c7600126e254223186","tarball":"http://registry.npmjs.org/async/-/async-0.1.16.tgz"},"engines":{"node":"*"}},"0.1.17":{"name":"async","version":"0.1.17","dependencies":{"uglify-js":"1.2.x"},"optionalDependencies":{},"devDependencies":{"nodeunit":">0.0.0","nodelint":">0.0.0"},"directories":{},"dist":{"shasum":"03524a379e974dc9ee5c811c6ee3815d7bc54f6e","tarball":"http://registry.npmjs.org/async/-/async-0.1.17.tgz"},"engines":{"node":"*"}},"0.1.18":{"name":"async","version":"0.1.18","dependencies":{},"optionalDependencies":{},"devDependencies":{"nodeunit":">0.0.0","uglify-js":"1.2.x","nodelint":">0.0.0"},"directories":{},"dist":{"shasum":"c59c923920b76d5bf23248c04433920c4d45086a","tarball":"http://registry.npmjs.org/async/-/async-0.1.18.tgz"},"engines":{"node":"*"}},"0.1.19":{"name":"async","version":"0.1.19","dependencies":{},"optionalDependencies":{},"devDependencies":{"nodeunit":">0.0.0","uglify-js":"1.2.x","nodelint":">0.0.0"},"directories":{},"dist":{"shasum":"4fd6125a70f841fb10b14aeec6e23cf1479c71a7","tarball":"http://registry.npmjs.org/async/-/async-0.1.19.tgz"},"engines":{"node":"*"}},"0.1.20":{"name":"async","version":"0.1.20","dependencies":{},"optionalDependencies":{},"devDependencies":{"nodeunit":">0.0.0","uglify-js":"1.2.x","nodelint":">0.0.0"},"directories":{},"dist":{"shasum":"ba0e47b08ae972e04b5215de28539b313482ede5","tarball":"http://registry.npmjs.org/async/-/async-0.1.20.tgz"},"engines":{"node":"*"}},"0.1.21":{"name":"async","version":"0.1.21","dependencies":{},"optionalDependencies":{},"devDependencies":{"nodeunit":">0.0.0","uglify-js":"1.2.x","nodelint":">0.0.0"},"directories":{},"dist":{"shasum":"b5b12e985f09ab72c202fa00f623cd9d997e9464","tarball":"http://registry.npmjs.org/async/-/async-0.1.21.tgz"},"engines":{"node":"*"}},"0.1.22":{"name":"async","version":"0.1.22","dependencies":{},"optionalDependencies":{},"devDependencies":{"nodeunit":">0.0.0","uglify-js":"1.2.x","nodelint":">0.0.0"},"directories":{},"dist":{"shasum":"0fc1aaa088a0e3ef0ebe2d8831bab0dcf8845061","tarball":"http://registry.npmjs.org/async/-/async-0.1.22.tgz"},"engines":{"node":"*"}},"0.2.0":{"name":"async","version":"0.2.0","devDependencies":{"nodeunit":">0.0.0","uglify-js":"1.2.x","nodelint":">0.0.0"},"directories":{},"dist":{"shasum":"db1c645337bab79d0ca93d95f5c72d9605be0fce","tarball":"http://registry.npmjs.org/async/-/async-0.2.0.tgz"}},"0.2.1":{"name":"async","version":"0.2.1","devDependencies":{"nodeunit":">0.0.0","uglify-js":"1.2.x","nodelint":">0.0.0"},"directories":{},"dist":{"shasum":"4e37d08391132f79657a99ca73aa4eb471a6f771","tarball":"http://registry.npmjs.org/async/-/async-0.2.1.tgz"}},"0.2.2":{"name":"async","version":"0.2.2","devDependencies":{"nodeunit":">0.0.0","uglify-js":"1.2.x","nodelint":">0.0.0"},"directories":{},"dist":{"shasum":"8414ee47da7548126b4d3d923850d54e68a72b28","tarball":"http://registry.npmjs.org/async/-/async-0.2.2.tgz"}},"0.2.3":{"name":"async","version":"0.2.3","devDependencies":{"nodeunit":">0.0.0","uglify-js":"1.2.x","nodelint":">0.0.0"},"directories":{},"dist":{"shasum":"79bf601d723a2e8c3e91cb6bb08f152dca309fb3","tarball":"http://registry.npmjs.org/async/-/async-0.2.3.tgz"}},"0.2.4":{"name":"async","version":"0.2.4","devDependencies":{"nodeunit":">0.0.0","uglify-js":"1.2.x","nodelint":">0.0.0"},"directories":{},"dist":{"shasum":"0550e510cf43b83e2fcf1cb96399f03f1efd50eb","tarball":"http://registry.npmjs.org/async/-/async-0.2.4.tgz"}},"0.2.5":{"name":"async","version":"0.2.5","devDependencies":{"nodeunit":">0.0.0","uglify-js":"1.2.x","nodelint":">0.0.0"},"directories":{},"dist":{"shasum":"45f05da480749ba4c1dcd8cd3a3747ae7b36fe52","tarball":"http://registry.npmjs.org/async/-/async-0.2.5.tgz"}},"0.2.6":{"name":"async","version":"0.2.6","devDependencies":{"nodeunit":">0.0.0","uglify-js":"1.2.x","nodelint":">0.0.0"},"directories":{},"dist":{"shasum":"ad3f373d9249ae324881565582bc90e152abbd68","tarball":"http://registry.npmjs.org/async/-/async-0.2.6.tgz"}},"0.2.7":{"name":"async","version":"0.2.7","devDependencies":{"nodeunit":">0.0.0","uglify-js":"1.2.x","nodelint":">0.0.0"},"directories":{},"dist":{"shasum":"44c5ee151aece6c4bf5364cfc7c28fe4e58f18df","tarball":"http://registry.npmjs.org/async/-/async-0.2.7.tgz"}},"0.2.8":{"name":"async","version":"0.2.8","devDependencies":{"nodeunit":">0.0.0","uglify-js":"1.2.x","nodelint":">0.0.0"},"directories":{},"dist":{"shasum":"ba1b3ffd1e6cdb1e999aca76ef6ecee8e7f55f53","tarball":"http://registry.npmjs.org/async/-/async-0.2.8.tgz"}},"0.2.9":{"name":"async","version":"0.2.9","devDependencies":{"nodeunit":">0.0.0","uglify-js":"1.2.x","nodelint":">0.0.0"},"directories":{},"dist":{"shasum":"df63060fbf3d33286a76aaf6d55a2986d9ff8619","tarball":"http://registry.npmjs.org/async/-/async-0.2.9.tgz"}},"0.2.10":{"name":"async","version":"0.2.10","devDependencies":{"nodeunit":">0.0.0","uglify-js":"1.2.x","nodelint":">0.0.0"},"directories":{},"dist":{"shasum":"b6bbe0b0674b9d719708ca38de8c237cb526c3d1","tarball":"http://registry.npmjs.org/async/-/async-0.2.10.tgz"}},"0.3.0":{"name":"async","version":"0.3.0","devDependencies":{"nodeunit":">0.0.0","uglify-js":"1.2.x","nodelint":">0.0.0"},"directories":{},"dist":{"shasum":"6d2c543c25f514c602bb22916ac222a519290d5d","tarball":"http://registry.npmjs.org/async/-/async-0.3.0.tgz"}},"0.4.0":{"name":"async","version":"0.4.0","devDependencies":{"nodeunit":">0.0.0","uglify-js":"1.2.x","nodelint":">0.0.0"},"directories":{},"dist":{"shasum":"208bba02850129dacc2bc3959e4126570ae80b74","tarball":"http://registry.npmjs.org/async/-/async-0.4.0.tgz"}},"0.4.1":{"name":"async","version":"0.4.1","devDependencies":{"nodeunit":">0.0.0","uglify-js":"1.2.x","nodelint":">0.0.0"},"directories":{},"dist":{"shasum":"1985abade017df906bfaa8d77d424b25366b3a5b","tarball":"http://registry.npmjs.org/async/-/async-0.4.1.tgz"}},"0.5.0":{"name":"async","version":"0.5.0","devDependencies":{"nodeunit":">0.0.0","uglify-js":"1.2.x","nodelint":">0.0.0"},"directories":{},"dist":{"shasum":"524bc1cf3ed2b6adc7f4a8c4987dd9c4809c764f","tarball":"http://registry.npmjs.org/async/-/async-0.5.0.tgz"}},"0.6.0":{"name":"async","version":"0.6.0","devDependencies":{"nodeunit":">0.0.0","uglify-js":"1.2.x","nodelint":">0.0.0"},"directories":{},"dist":{"shasum":"025a31c8b1fb11e7481fa18dbdbc2bf2e434933a","tarball":"http://registry.npmjs.org/async/-/async-0.6.0.tgz"}},"0.6.1":{"name":"async","version":"0.6.1","devDependencies":{"nodeunit":">0.0.0","uglify-js":"1.2.x","nodelint":">0.0.0"},"directories":{},"dist":{"shasum":"594fe360968fcdd2d7e0a6d95a874e4e92c7a26d","tarball":"http://registry.npmjs.org/async/-/async-0.6.1.tgz"}},"0.6.2":{"name":"async","version":"0.6.2","devDependencies":{"nodeunit":">0.0.0","uglify-js":"1.2.x","nodelint":">0.0.0"},"directories":{},"dist":{"shasum":"41fd038a3812c0a8bc1842ecf08ba63eb0392bef","tarball":"http://registry.npmjs.org/async/-/async-0.6.2.tgz"}},"0.7.0":{"name":"async","version":"0.7.0","devDependencies":{"nodeunit":">0.0.0","uglify-js":"1.2.x","nodelint":">0.0.0"},"directories":{},"dist":{"shasum":"4429e0e62f5de0a54f37458c49f0b897eb52ada5","tarball":"http://registry.npmjs.org/async/-/async-0.7.0.tgz"}},"0.8.0":{"name":"async","version":"0.8.0","devDependencies":{"nodeunit":">0.0.0","uglify-js":"1.2.x","nodelint":">0.0.0"},"directories":{},"dist":{"shasum":"ee65ec77298c2ff1456bc4418a052d0f06435112","tarball":"http://registry.npmjs.org/async/-/async-0.8.0.tgz"}},"0.9.0":{"name":"async","version":"0.9.0","devDependencies":{"nodeunit":">0.0.0","uglify-js":"1.2.x","nodelint":">0.0.0"},"directories":{},"dist":{"shasum":"ac3613b1da9bed1b47510bb4651b8931e47146c7","tarball":"http://registry.npmjs.org/async/-/async-0.9.0.tgz"}},"0.9.2":{"name":"async","version":"0.9.2","devDependencies":{"nodeunit":">0.0.0","uglify-js":"1.2.x","nodelint":">0.0.0","lodash":">=2.4.1"},"directories":{},"dist":{"shasum":"aea74d5e61c1f899613bf64bda66d4c78f2fd17d","tarball":"http://registry.npmjs.org/async/-/async-0.9.2.tgz"}},"1.0.0":{"name":"async","version":"1.0.0","devDependencies":{"benchmark":"~1.0.0","jshint":"~2.7.0","lodash":">=2.4.1","mkdirp":"~0.5.1","nodeunit":">0.0.0","uglify-js":"1.2.x"},"directories":{},"dist":{"shasum":"f8fc04ca3a13784ade9e1641af98578cfbd647a9","tarball":"http://registry.npmjs.org/async/-/async-1.0.0.tgz"}},"1.1.0":{"name":"async","version":"1.1.0","devDependencies":{"benchmark":"github:bestiejs/benchmark.js","coveralls":"^2.11.2","jshint":"~2.7.0","lodash":">=2.4.1","mkdirp":"~0.5.1","nodeunit":">0.0.0","nyc":"^2.1.0","uglify-js":"1.2.x","yargs":"~3.9.1"},"directories":{},"dist":{"shasum":"2b33ea3e87fc0c5ed624f9e31a9c902c022da09b","tarball":"http://registry.npmjs.org/async/-/async-1.1.0.tgz"}},"1.2.0":{"name":"async","version":"1.2.0","devDependencies":{"benchmark":"github:bestiejs/benchmark.js","coveralls":"^2.11.2","jshint":"~2.7.0","lodash":">=2.4.1","mkdirp":"~0.5.1","nodeunit":">0.0.0","nyc":"^2.1.0","uglify-js":"1.2.x","yargs":"~3.9.1"},"directories":{},"dist":{"shasum":"9029580f93d05a7cab24f502c84707ac3ef57b10","tarball":"http://registry.npmjs.org/async/-/async-1.2.0.tgz"}},"1.1.1":{"name":"async","version":"1.1.1","devDependencies":{"benchmark":"github:bestiejs/benchmark.js","coveralls":"^2.11.2","jshint":"~2.7.0","lodash":">=2.4.1","mkdirp":"~0.5.1","nodeunit":">0.0.0","nyc":"^2.1.0","uglify-js":"1.2.x","yargs":"~3.9.1"},"directories":{},"dist":{"shasum":"753cb13df043ff08d810e4418d312d646ee1bbea","tarball":"http://registry.npmjs.org/async/-/async-1.1.1.tgz"}},"1.2.1":{"name":"async","version":"1.2.1","devDependencies":{"benchmark":"github:bestiejs/benchmark.js","coveralls":"^2.11.2","jshint":"~2.7.0","lodash":">=2.4.1","mkdirp":"~0.5.1","nodeunit":">0.0.0","nyc":"^2.1.0","uglify-js":"1.2.x","yargs":"~3.9.1"},"directories":{},"dist":{"shasum":"a4816a17cd5ff516dfa2c7698a453369b9790de0","tarball":"http://registry.npmjs.org/async/-/async-1.2.1.tgz"}},"1.3.0":{"name":"async","version":"1.3.0","devDependencies":{"benchmark":"github:bestiejs/benchmark.js","coveralls":"^2.11.2","jshint":"~2.8.0","lodash":"^3.9.0","mkdirp":"~0.5.1","nodeunit":">0.0.0","nyc":"^2.1.0","uglify-js":"~2.4.0","xyz":"^0.5.0","yargs":"~3.9.1"},"directories":{},"dist":{"shasum":"a6f1631e8a595a663496d0a5586bd12007d4871d","tarball":"http://registry.npmjs.org/async/-/async-1.3.0.tgz"}},"1.4.0":{"name":"async","version":"1.4.0","devDependencies":{"benchmark":"github:bestiejs/benchmark.js","bluebird":"^2.9.32","coveralls":"^2.11.2","es6-promise":"^2.3.0","jscs":"^1.13.1","jshint":"~2.8.0","lodash":"^3.9.0","mkdirp":"~0.5.1","native-promise-only":"^0.8.0-a","nodeunit":">0.0.0","nyc":"^2.1.0","rsvp":"^3.0.18","uglify-js":"~2.4.0","xyz":"^0.5.0","yargs":"~3.9.1"},"directories":{},"dist":{"shasum":"35f86f83c59e0421d099cd9a91d8278fb578c00d","tarball":"http://registry.npmjs.org/async/-/async-1.4.0.tgz"}},"1.4.1":{"name":"async","version":"1.4.1","devDependencies":{"benchmark":"github:bestiejs/benchmark.js","bluebird":"^2.9.32","chai":"^3.1.0","coveralls":"^2.11.2","es6-promise":"^2.3.0","jscs":"^1.13.1","jshint":"~2.8.0","karma":"^0.13.2","karma-browserify":"^4.2.1","karma-firefox-launcher":"^0.1.6","karma-mocha":"^0.2.0","karma-mocha-reporter":"^1.0.2","lodash":"^3.9.0","mkdirp":"~0.5.1","mocha":"^2.2.5","native-promise-only":"^0.8.0-a","nodeunit":">0.0.0","nyc":"^2.1.0","rsvp":"^3.0.18","uglify-js":"~2.4.0","xyz":"^0.5.0","yargs":"~3.9.1"},"directories":{},"dist":{"shasum":"1bc4895271551e524fd7fb338ddebad1a1440b74","tarball":"http://registry.npmjs.org/async/-/async-1.4.1.tgz"}},"1.4.2":{"name":"async","version":"1.4.2","devDependencies":{"benchmark":"github:bestiejs/benchmark.js","bluebird":"^2.9.32","chai":"^3.1.0","coveralls":"^2.11.2","es6-promise":"^2.3.0","jscs":"^1.13.1","jshint":"~2.8.0","karma":"^0.13.2","karma-browserify":"^4.2.1","karma-firefox-launcher":"^0.1.6","karma-mocha":"^0.2.0","karma-mocha-reporter":"^1.0.2","lodash":"^3.9.0","mkdirp":"~0.5.1","mocha":"^2.2.5","native-promise-only":"^0.8.0-a","nodeunit":">0.0.0","nyc":"^2.1.0","rsvp":"^3.0.18","uglify-js":"~2.4.0","xyz":"^0.5.0","yargs":"~3.9.1"},"directories":{},"dist":{"shasum":"6c9edcb11ced4f0dd2f2d40db0d49a109c088aab","tarball":"http://registry.npmjs.org/async/-/async-1.4.2.tgz"}},"1.5.0":{"name":"async","version":"1.5.0","devDependencies":{"benchmark":"github:bestiejs/benchmark.js","bluebird":"^2.9.32","chai":"^3.1.0","coveralls":"^2.11.2","es6-promise":"^2.3.0","jscs":"^1.13.1","jshint":"~2.8.0","karma":"^0.13.2","karma-browserify":"^4.2.1","karma-firefox-launcher":"^0.1.6","karma-mocha":"^0.2.0","karma-mocha-reporter":"^1.0.2","lodash":"^3.9.0","mkdirp":"~0.5.1","mocha":"^2.2.5","native-promise-only":"^0.8.0-a","nodeunit":">0.0.0","nyc":"^2.1.0","rsvp":"^3.0.18","semver":"^4.3.6","uglify-js":"~2.4.0","xyz":"^0.5.0","yargs":"~3.9.1"},"directories":{},"dist":{"shasum":"2796642723573859565633fc6274444bee2f8ce3","tarball":"http://registry.npmjs.org/async/-/async-1.5.0.tgz"}},"1.5.1":{"name":"async","version":"1.5.1","devDependencies":{"benchmark":"github:bestiejs/benchmark.js","bluebird":"^2.9.32","chai":"^3.1.0","coveralls":"^2.11.2","es6-promise":"^2.3.0","jscs":"^1.13.1","jshint":"~2.8.0","karma":"^0.13.2","karma-browserify":"^4.2.1","karma-firefox-launcher":"^0.1.6","karma-mocha":"^0.2.0","karma-mocha-reporter":"^1.0.2","lodash":"^3.9.0","mkdirp":"~0.5.1","mocha":"^2.2.5","native-promise-only":"^0.8.0-a","nodeunit":">0.0.0","nyc":"^2.1.0","rsvp":"^3.0.18","semver":"^4.3.6","uglify-js":"~2.4.0","xyz":"^0.5.0","yargs":"~3.9.1"},"directories":{},"dist":{"shasum":"b05714f4b11b357bf79adaffdd06da42d0766c10","tarball":"http://registry.npmjs.org/async/-/async-1.5.1.tgz"}},"1.5.2":{"name":"async","version":"1.5.2","devDependencies":{"benchmark":"github:bestiejs/benchmark.js","bluebird":"^2.9.32","chai":"^3.1.0","coveralls":"^2.11.2","es6-promise":"^2.3.0","jscs":"^1.13.1","jshint":"~2.8.0","karma":"^0.13.2","karma-browserify":"^4.2.1","karma-firefox-launcher":"^0.1.6","karma-mocha":"^0.2.0","karma-mocha-reporter":"^1.0.2","lodash":"^3.9.0","mkdirp":"~0.5.1","mocha":"^2.2.5","native-promise-only":"^0.8.0-a","nodeunit":">0.0.0","nyc":"^2.1.0","rsvp":"^3.0.18","semver":"^4.3.6","uglify-js":"~2.4.0","xyz":"^0.5.0","yargs":"~3.9.1"},"directories":{},"dist":{"shasum":"ec6a61ae56480c0c3cb241c95618e20892f9672a","tarball":"http://registry.npmjs.org/async/-/async-1.5.2.tgz"}},"2.0.0-alpha.0":{"name":"async","version":"2.0.0-alpha.0","dependencies":{"lodash":"^4.3.0"},"devDependencies":{"babel-cli":"^6.3.17","babel-core":"^6.3.26","babel-plugin-add-module-exports":"~0.1.2","babel-plugin-transform-es2015-modules-commonjs":"^6.3.16","babel-preset-es2015":"^6.3.13","babelify":"^7.2.0","benchmark":"github:bestiejs/benchmark.js","bluebird":"^2.9.32","chai":"^3.1.0","coveralls":"^2.11.2","es6-promise":"^2.3.0","fs-extra":"^0.26.3","gulp":"~3.9.0","jscs":"^1.13.1","jshint":"~2.8.0","karma":"^0.13.2","karma-browserify":"^4.2.1","karma-firefox-launcher":"^0.1.6","karma-mocha":"^0.2.0","karma-mocha-reporter":"^1.0.2","mocha":"^2.2.5","native-promise-only":"^0.8.0-a","nodeunit":">0.0.0","nyc":"^2.1.0","recursive-readdir":"^1.3.0","rimraf":"^2.5.0","rollup":"^0.25.0","rollup-plugin-npm":"~1.3.0","rsvp":"^3.0.18","semver":"^4.3.6","uglify-js":"~2.4.0","vinyl-buffer":"~1.0.0","vinyl-source-stream":"~1.1.0","yargs":"~3.9.1"},"directories":{},"dist":{"shasum":"72acf81eee0d641e05af3cb16953863ec8b23fe1","tarball":"http://registry.npmjs.org/async/-/async-2.0.0-alpha.0.tgz"}},"2.0.0-rc.1":{"name":"async","version":"2.0.0-rc.1","dependencies":{"lodash":"^4.3.0"},"devDependencies":{"babel-cli":"^6.3.17","babel-core":"^6.3.26","babel-plugin-add-module-exports":"~0.1.2","babel-plugin-transform-es2015-modules-commonjs":"^6.3.16","babel-preset-es2015":"^6.3.13","babelify":"^7.2.0","benchmark":"github:bestiejs/benchmark.js","bluebird":"^2.9.32","chai":"^3.1.0","coveralls":"^2.11.2","es6-promise":"^2.3.0","fs-extra":"^0.26.3","gulp":"~3.9.0","jscs":"^1.13.1","jshint":"~2.8.0","karma":"^0.13.2","karma-browserify":"^4.2.1","karma-firefox-launcher":"^0.1.6","karma-mocha":"^0.2.0","karma-mocha-reporter":"^1.0.2","mocha":"^2.2.5","native-promise-only":"^0.8.0-a","nodeunit":">0.0.0","nyc":"^2.1.0","recursive-readdir":"^1.3.0","rimraf":"^2.5.0","rollup":"^0.25.0","rollup-plugin-npm":"~1.3.0","rsvp":"^3.0.18","semver":"^4.3.6","uglify-js":"~2.4.0","vinyl-buffer":"~1.0.0","vinyl-source-stream":"~1.1.0","yargs":"~3.9.1"},"directories":{},"dist":{"shasum":"5298bbe0317312a3c9314e6d7cf14f765fb48735","tarball":"http://registry.npmjs.org/async/-/async-2.0.0-rc.1.tgz"}},"2.0.0-rc.2":{"name":"async","version":"2.0.0-rc.2","dependencies":{"lodash":"^4.3.0"},"devDependencies":{"babel-cli":"^6.3.17","babel-core":"^6.3.26","babel-plugin-add-module-exports":"~0.1.2","babel-plugin-transform-es2015-modules-commonjs":"^6.3.16","babel-preset-es2015":"^6.3.13","babelify":"^7.2.0","benchmark":"github:bestiejs/benchmark.js","bluebird":"^2.9.32","chai":"^3.1.0","coveralls":"^2.11.2","es6-promise":"^2.3.0","fs-extra":"^0.26.3","gulp":"~3.9.0","jscs":"^1.13.1","jshint":"~2.8.0","karma":"^0.13.2","karma-browserify":"^4.2.1","karma-firefox-launcher":"^0.1.6","karma-mocha":"^0.2.0","karma-mocha-reporter":"^1.0.2","mocha":"^2.2.5","native-promise-only":"^0.8.0-a","nodeunit":">0.0.0","nyc":"^2.1.0","recursive-readdir":"^1.3.0","rimraf":"^2.5.0","rollup":"^0.25.0","rollup-plugin-npm":"~1.3.0","rsvp":"^3.0.18","semver":"^4.3.6","uglify-js":"~2.4.0","vinyl-buffer":"~1.0.0","vinyl-source-stream":"~1.1.0","yargs":"~3.9.1"},"directories":{},"dist":{"shasum":"6fc56eec72574ebfe43ad30aefef6206f1ad2494","tarball":"http://registry.npmjs.org/async/-/async-2.0.0-rc.2.tgz"}},"2.0.0-rc.3":{"name":"async","version":"2.0.0-rc.3","dependencies":{"lodash":"^4.3.0"},"devDependencies":{"babel-cli":"^6.3.17","babel-core":"^6.3.26","babel-plugin-add-module-exports":"~0.1.2","babel-plugin-transform-es2015-modules-commonjs":"^6.3.16","babel-preset-es2015":"^6.3.13","babelify":"^7.2.0","benchmark":"github:bestiejs/benchmark.js","bluebird":"^2.9.32","chai":"^3.1.0","coveralls":"^2.11.2","es6-promise":"^2.3.0","fs-extra":"^0.26.7","jscs":"^1.13.1","jshint":"~2.8.0","karma":"^0.13.2","karma-browserify":"^4.2.1","karma-firefox-launcher":"^0.1.6","karma-mocha":"^0.2.0","karma-mocha-reporter":"^1.0.2","mocha":"^2.2.5","native-promise-only":"^0.8.0-a","nodeunit":">0.0.0","nyc":"^2.1.0","recursive-readdir":"^1.3.0","rimraf":"^2.5.0","rollup":"^0.25.0","rollup-plugin-node-resolve":"^1.5.0","rollup-plugin-npm":"~1.3.0","rsvp":"^3.0.18","semver":"^4.3.6","uglify-js":"~2.4.0","yargs":"~3.9.1"},"directories":{},"dist":{"shasum":"1fae1160594dd47dbe5431d4726d66b10f374d89","tarball":"http://registry.npmjs.org/async/-/async-2.0.0-rc.3.tgz"}},"2.0.0-rc.4":{"name":"async","version":"2.0.0-rc.4","dependencies":{"lodash":"^4.3.0"},"devDependencies":{"babel-cli":"^6.3.17","babel-core":"^6.3.26","babel-plugin-add-module-exports":"~0.1.2","babel-plugin-transform-es2015-modules-commonjs":"^6.3.16","babel-preset-es2015":"^6.3.13","babelify":"^7.2.0","benchmark":"github:bestiejs/benchmark.js","bluebird":"^2.9.32","chai":"^3.1.0","coveralls":"^2.11.2","es6-promise":"^2.3.0","fs-extra":"^0.26.7","jscs":"^1.13.1","jscs-jsdoc":"^1.3.2","jshint":"~2.8.0","karma":"^0.13.2","karma-browserify":"^4.2.1","karma-firefox-launcher":"^0.1.6","karma-mocha":"^0.2.0","karma-mocha-reporter":"^1.0.2","mocha":"^2.2.5","native-promise-only":"^0.8.0-a","nodeunit":">0.0.0","nyc":"^2.1.0","recursive-readdir":"^1.3.0","rimraf":"^2.5.0","rollup":"^0.25.0","rollup-plugin-node-resolve":"^1.5.0","rollup-plugin-npm":"~1.3.0","rsvp":"^3.0.18","semver":"^4.3.6","uglify-js":"~2.4.0","yargs":"~3.9.1"},"directories":{},"dist":{"shasum":"9b7f60724c17962a973f787419e0ebc5571dbad8","tarball":"http://registry.npmjs.org/async/-/async-2.0.0-rc.4.tgz"}},"2.0.0-rc.5":{"name":"async","version":"2.0.0-rc.5","dependencies":{"lodash":"^4.8.0"},"devDependencies":{"babel-cli":"^6.3.17","babel-core":"^6.3.26","babel-plugin-add-module-exports":"~0.1.2","babel-plugin-transform-es2015-modules-commonjs":"^6.3.16","babel-preset-es2015":"^6.3.13","babelify":"^7.2.0","benchmark":"github:bestiejs/benchmark.js","bluebird":"^2.9.32","chai":"^3.1.0","coveralls":"^2.11.2","es6-promise":"^2.3.0","fs-extra":"^0.26.7","jscs":"^1.13.1","jscs-jsdoc":"^1.3.2","jshint":"~2.8.0","karma":"^0.13.2","karma-browserify":"^4.2.1","karma-firefox-launcher":"^0.1.6","karma-mocha":"^0.2.0","karma-mocha-reporter":"^1.0.2","mocha":"^2.2.5","native-promise-only":"^0.8.0-a","nyc":"^2.1.0","recursive-readdir":"^1.3.0","rimraf":"^2.5.0","rollup":"^0.25.0","rollup-plugin-node-resolve":"^1.5.0","rollup-plugin-npm":"~1.3.0","rsvp":"^3.0.18","semver":"^4.3.6","uglify-js":"~2.4.0","yargs":"~3.9.1"},"directories":{},"dist":{"shasum":"4d6ff31604e9715899c6368bf7d0e51dc44a1433","tarball":"http://registry.npmjs.org/async/-/async-2.0.0-rc.5.tgz"}},"2.0.0-rc.6":{"name":"async","version":"2.0.0-rc.6","dependencies":{"lodash":"^4.8.0"},"devDependencies":{"babel-cli":"^6.3.17","babel-core":"^6.3.26","babel-plugin-add-module-exports":"~0.1.2","babel-plugin-transform-es2015-modules-commonjs":"^6.3.16","babel-preset-es2015":"^6.3.13","babelify":"^7.2.0","benchmark":"github:bestiejs/benchmark.js","bluebird":"^2.9.32","chai":"^3.1.0","coveralls":"^2.11.2","es6-promise":"^2.3.0","fs-extra":"^0.26.7","jscs":"^1.13.1","jscs-jsdoc":"^1.3.2","jshint":"~2.8.0","karma":"^0.13.2","karma-browserify":"^4.2.1","karma-firefox-launcher":"^0.1.6","karma-mocha":"^0.2.0","karma-mocha-reporter":"^1.0.2","mocha":"^2.2.5","native-promise-only":"^0.8.0-a","nyc":"^2.1.0","recursive-readdir":"^1.3.0","rimraf":"^2.5.0","rollup":"^0.25.0","rollup-plugin-node-resolve":"^1.5.0","rollup-plugin-npm":"~1.3.0","rsvp":"^3.0.18","semver":"^4.3.6","uglify-js":"~2.4.0","yargs":"~3.9.1"},"directories":{},"dist":{"shasum":"978fc4155d1fc30b8b58fc3f020102b2da02f2a4","tarball":"http://registry.npmjs.org/async/-/async-2.0.0-rc.6.tgz"}},"2.0.0":{"name":"async","version":"2.0.0","dependencies":{"lodash":"^4.8.0"},"devDependencies":{"babel-core":"^6.3.26","babel-plugin-add-module-exports":"~0.1.2","babel-plugin-istanbul":"^1.0.3","babel-plugin-transform-es2015-modules-commonjs":"^6.3.16","babel-preset-es2015":"^6.3.13","babelify":"^7.2.0","benchmark":"github:bestiejs/benchmark.js","bluebird":"^2.9.32","chai":"^3.1.0","cheerio":"^0.20.0","coveralls":"^2.11.2","es6-promise":"^2.3.0","eslint":"^2.11.1","fs-extra":"^0.26.7","gh-pages-deploy":"^0.4.2","jsdoc":"^3.4.0","karma":"^0.13.2","karma-browserify":"^4.2.1","karma-firefox-launcher":"^0.1.6","karma-mocha":"^0.2.0","karma-mocha-reporter":"^1.0.2","mocha":"^2.2.5","native-promise-only":"^0.8.0-a","nyc":"^7.0.0","recursive-readdir":"^1.3.0","rimraf":"^2.5.0","rollup":"^0.25.0","rollup-plugin-node-resolve":"^1.5.0","rollup-plugin-npm":"~1.3.0","rsvp":"^3.0.18","semver":"^4.3.6","uglify-js":"~2.4.0","vinyl-buffer":"^1.0.0","vinyl-source-stream":"^1.1.0","yargs":"~3.9.1"},"directories":{},"dist":{"shasum":"d0900ad385af13804540a109c42166e3ae7b2b9d","tarball":"http://registry.npmjs.org/async/-/async-2.0.0.tgz"}},"2.0.1":{"name":"async","version":"2.0.1","dependencies":{"lodash":"^4.8.0"},"devDependencies":{"babel-core":"^6.3.26","babel-plugin-add-module-exports":"~0.1.2","babel-plugin-istanbul":"^1.0.3","babel-plugin-transform-es2015-modules-commonjs":"^6.3.16","babel-preset-es2015":"^6.3.13","babelify":"^7.2.0","benchmark":"github:bestiejs/benchmark.js","bluebird":"^2.9.32","chai":"^3.1.0","cheerio":"^0.20.0","coveralls":"^2.11.2","es6-promise":"^2.3.0","eslint":"^2.11.1","fs-extra":"^0.26.7","gh-pages-deploy":"^0.4.2","jsdoc":"^3.4.0","karma":"^0.13.2","karma-browserify":"^4.2.1","karma-firefox-launcher":"^0.1.6","karma-mocha":"^0.2.0","karma-mocha-reporter":"^1.0.2","mocha":"^2.2.5","native-promise-only":"^0.8.0-a","nyc":"^7.0.0","recursive-readdir":"^1.3.0","rimraf":"^2.5.0","rollup":"^0.25.0","rollup-plugin-node-resolve":"^1.5.0","rollup-plugin-npm":"~1.3.0","rsvp":"^3.0.18","semver":"^4.3.6","uglify-js":"~2.4.0","vinyl-buffer":"^1.0.0","vinyl-source-stream":"^1.1.0","yargs":"~3.9.1"},"directories":{},"dist":{"shasum":"b709cc0280a9c36f09f4536be823c838a9049e25","tarball":"http://registry.npmjs.org/async/-/async-2.0.1.tgz"}},"2.1.0":{"name":"async","version":"2.1.0","dependencies":{"lodash":"^4.14.0","lodash-es":"^4.14.0"},"devDependencies":{"babel-core":"^6.3.26","babel-plugin-add-module-exports":"~0.1.2","babel-plugin-istanbul":"^1.0.3","babel-plugin-transform-es2015-modules-commonjs":"^6.3.16","babel-preset-es2015":"^6.3.13","babelify":"^7.2.0","benchmark":"^2.1.1","bluebird":"^2.9.32","chai":"^3.1.0","cheerio":"^0.20.0","coveralls":"^2.11.2","es6-promise":"^2.3.0","eslint":"^2.11.1","fs-extra":"^0.26.7","gh-pages-deploy":"^0.4.2","jsdoc":"^3.4.0","karma":"^0.13.2","karma-browserify":"^4.2.1","karma-firefox-launcher":"^0.1.6","karma-mocha":"^0.2.0","karma-mocha-reporter":"^1.0.2","mocha":"^2.2.5","native-promise-only":"^0.8.0-a","nyc":"^7.0.0","recursive-readdir":"^1.3.0","rimraf":"^2.5.0","rollup":"^0.25.0","rollup-plugin-node-resolve":"^1.5.0","rollup-plugin-npm":"~1.3.0","rsvp":"^3.0.18","semver":"^4.3.6","uglify-js":"~2.4.0","vinyl-buffer":"^1.0.0","vinyl-source-stream":"^1.1.0","yargs":"~3.9.1"},"directories":{},"dist":{"shasum":"132c1329c300e62a06656e21b102a01122d3806c","tarball":"http://registry.npmjs.org/async/-/async-2.1.0.tgz"}},"2.1.1":{"name":"async","version":"2.1.1","dependencies":{"lodash":"^4.14.0"},"devDependencies":{"babel-core":"^6.3.26","babel-plugin-add-module-exports":"~0.1.2","babel-plugin-istanbul":"^1.0.3","babel-plugin-transform-es2015-modules-commonjs":"^6.3.16","babel-preset-es2015":"^6.3.13","babelify":"^7.2.0","benchmark":"^2.1.1","bluebird":"^2.9.32","chai":"^3.1.0","cheerio":"^0.20.0","coveralls":"^2.11.2","es6-promise":"^2.3.0","eslint":"^2.11.1","fs-extra":"^0.26.7","gh-pages-deploy":"^0.4.2","jsdoc":"^3.4.0","karma":"^0.13.2","karma-browserify":"^4.2.1","karma-firefox-launcher":"^0.1.6","karma-mocha":"^0.2.0","karma-mocha-reporter":"^1.0.2","mocha":"^2.2.5","native-promise-only":"^0.8.0-a","nyc":"^7.0.0","recursive-readdir":"^1.3.0","rimraf":"^2.5.0","rollup":"^0.25.0","rollup-plugin-node-resolve":"^1.5.0","rollup-plugin-npm":"~1.3.0","rsvp":"^3.0.18","semver":"^4.3.6","uglify-js":"~2.4.0","vinyl-buffer":"^1.0.0","vinyl-source-stream":"^1.1.0","yargs":"~3.9.1"},"directories":{},"dist":{"shasum":"e11b6d10043f2254efb61a21163d840ccddb8d28","tarball":"http://registry.npmjs.org/async/-/async-2.1.1.tgz"}},"2.1.2":{"name":"async","version":"2.1.2","dependencies":{"lodash":"^4.14.0"},"devDependencies":{"babel-cli":"^6.16.0","babel-core":"^6.3.26","babel-plugin-add-module-exports":"^0.2.1","babel-plugin-istanbul":"^2.0.1","babel-plugin-transform-es2015-modules-commonjs":"^6.3.16","babel-preset-es2015":"^6.3.13","babelify":"^7.2.0","benchmark":"^2.1.1","bluebird":"^3.4.6","chai":"^3.1.0","cheerio":"^0.22.0","coveralls":"^2.11.2","es6-promise":"^2.3.0","eslint":"^2.13.1","fs-extra":"^0.26.7","gh-pages-deploy":"^0.4.2","jsdoc":"^3.4.0","karma":"^1.3.0","karma-browserify":"^5.1.0","karma-firefox-launcher":"^1.0.0","karma-mocha":"^1.2.0","karma-mocha-reporter":"^2.2.0","mocha":"^3.1.2","native-promise-only":"^0.8.0-a","nyc":"^7.0.0","recursive-readdir":"^1.3.0","rimraf":"^2.5.0","rollup":"^0.36.3","rollup-plugin-node-resolve":"^2.0.0","rollup-plugin-npm":"^2.0.0","rsvp":"^3.0.18","semver":"^4.3.6","uglify-js":"~2.7.3","vinyl-buffer":"^1.0.0","vinyl-source-stream":"^1.1.0","watchify":"^3.7.0","yargs":"~3.9.1"},"directories":{},"dist":{"shasum":"612a4ab45ef42a70cde806bad86ee6db047e8385","tarball":"http://registry.npmjs.org/async/-/async-2.1.2.tgz"}},"2.1.4":{"name":"async","version":"2.1.4","dependencies":{"lodash":"^4.14.0"},"devDependencies":{"babel-cli":"^6.16.0","babel-core":"^6.3.26","babel-plugin-add-module-exports":"^0.2.1","babel-plugin-istanbul":"^2.0.1","babel-plugin-transform-es2015-modules-commonjs":"^6.3.16","babel-preset-es2015":"^6.3.13","babelify":"^7.2.0","benchmark":"^2.1.1","bluebird":"^3.4.6","chai":"^3.1.0","cheerio":"^0.22.0","coveralls":"^2.11.2","es6-promise":"^2.3.0","eslint":"^2.13.1","fs-extra":"^0.26.7","gh-pages-deploy":"^0.4.2","jsdoc":"^3.4.0","karma":"^1.3.0","karma-browserify":"^5.1.0","karma-firefox-launcher":"^1.0.0","karma-mocha":"^1.2.0","karma-mocha-reporter":"^2.2.0","mocha":"^3.1.2","native-promise-only":"^0.8.0-a","nyc":"^7.0.0","recursive-readdir":"^1.3.0","rimraf":"^2.5.0","rollup":"^0.36.3","rollup-plugin-node-resolve":"^2.0.0","rollup-plugin-npm":"^2.0.0","rsvp":"^3.0.18","semver":"^4.3.6","uglify-js":"~2.7.3","vinyl-buffer":"^1.0.0","vinyl-source-stream":"^1.1.0","watchify":"^3.7.0","yargs":"~3.9.1"},"directories":{},"dist":{"shasum":"2d2160c7788032e4dd6cbe2502f1f9a2c8f6cde4","tarball":"http://registry.npmjs.org/async/-/async-2.1.4.tgz"}},"2.1.5":{"name":"async","version":"2.1.5","dependencies":{"lodash":"^4.14.0"},"devDependencies":{"babel-cli":"^6.16.0","babel-core":"^6.3.26","babel-plugin-add-module-exports":"^0.2.1","babel-plugin-istanbul":"^2.0.1","babel-plugin-transform-es2015-modules-commonjs":"^6.3.16","babel-preset-es2015":"^6.3.13","babelify":"^7.2.0","benchmark":"^2.1.1","bluebird":"^3.4.6","chai":"^3.1.0","cheerio":"^0.22.0","coveralls":"^2.11.2","es6-promise":"^2.3.0","eslint":"^2.13.1","fs-extra":"^0.26.7","gh-pages-deploy":"^0.4.2","jsdoc":"^3.4.0","karma":"^1.3.0","karma-browserify":"^5.1.0","karma-firefox-launcher":"^1.0.0","karma-mocha":"^1.2.0","karma-mocha-reporter":"^2.2.0","mocha":"^3.1.2","native-promise-only":"^0.8.0-a","nyc":"^7.0.0","recursive-readdir":"^1.3.0","rimraf":"^2.5.0","rollup":"^0.36.3","rollup-plugin-node-resolve":"^2.0.0","rollup-plugin-npm":"^2.0.0","rsvp":"^3.0.18","semver":"^4.3.6","uglify-js":"~2.7.3","vinyl-buffer":"^1.0.0","vinyl-source-stream":"^1.1.0","watchify":"^3.7.0","yargs":"~3.9.1"},"directories":{},"dist":{"shasum":"e587c68580994ac67fc56ff86d3ac56bdbe810bc","tarball":"https://registry.npmjs.org/async/-/async-2.1.5.tgz"}},"2.2.0":{"name":"async","version":"2.2.0","dependencies":{"lodash":"^4.14.0"},"devDependencies":{"babel-cli":"^6.16.0","babel-core":"^6.3.26","babel-plugin-add-module-exports":"^0.2.1","babel-plugin-istanbul":"^2.0.1","babel-plugin-transform-es2015-modules-commonjs":"^6.3.16","babel-preset-es2015":"^6.3.13","babelify":"^7.2.0","benchmark":"^2.1.1","bluebird":"^3.4.6","chai":"^3.1.0","cheerio":"^0.22.0","coveralls":"^2.11.2","es6-promise":"^2.3.0","eslint":"^2.13.1","fs-extra":"^0.26.7","gh-pages-deploy":"^0.4.2","jsdoc":"^3.4.0","karma":"^1.3.0","karma-browserify":"^5.1.0","karma-firefox-launcher":"^1.0.0","karma-mocha":"^1.2.0","karma-mocha-reporter":"^2.2.0","mocha":"^3.1.2","native-promise-only":"^0.8.0-a","nyc":"^7.0.0","recursive-readdir":"^1.3.0","rimraf":"^2.5.0","rollup":"^0.36.3","rollup-plugin-node-resolve":"^2.0.0","rollup-plugin-npm":"^2.0.0","rsvp":"^3.0.18","semver":"^4.3.6","uglify-js":"~2.7.3","vinyl-buffer":"^1.0.0","vinyl-source-stream":"^1.1.0","watchify":"^3.7.0","yargs":"~3.9.1"},"directories":{},"dist":{"shasum":"c324eba010a237e4fbd55a12dee86367d5c0ef32","tarball":"https://registry.npmjs.org/async/-/async-2.2.0.tgz"}},"2.3.0":{"name":"async","version":"2.3.0","dependencies":{"lodash":"^4.14.0"},"devDependencies":{"babel-cli":"^6.24.0","babel-core":"^6.24.0","babel-plugin-add-module-exports":"^0.2.1","babel-plugin-istanbul":"^2.0.1","babel-plugin-transform-es2015-modules-commonjs":"^6.3.16","babel-preset-es2015":"^6.3.13","babel-preset-es2017":"^6.22.0","babelify":"^7.2.0","benchmark":"^2.1.1","bluebird":"^3.4.6","chai":"^3.1.0","cheerio":"^0.22.0","coveralls":"^2.11.2","es6-promise":"^2.3.0","eslint":"^2.13.1","fs-extra":"^0.26.7","gh-pages-deploy":"^0.4.2","jsdoc":"^3.4.0","karma":"^1.3.0","karma-browserify":"^5.1.0","karma-firefox-launcher":"^1.0.0","karma-mocha":"^1.2.0","karma-mocha-reporter":"^2.2.0","mocha":"^3.1.2","native-promise-only":"^0.8.0-a","nyc":"^7.0.0","recursive-readdir":"^1.3.0","rimraf":"^2.5.0","rollup":"^0.36.3","rollup-plugin-node-resolve":"^2.0.0","rollup-plugin-npm":"^2.0.0","rsvp":"^3.0.18","semver":"^4.3.6","uglify-js":"~2.7.3","vinyl-buffer":"^1.0.0","vinyl-source-stream":"^1.1.0","watchify":"^3.7.0","yargs":"~3.9.1"},"directories":{},"dist":{"shasum":"1013d1051047dd320fe24e494d5c66ecaf6147d9","tarball":"https://registry.npmjs.org/async/-/async-2.3.0.tgz"}},"2.4.0":{"name":"async","version":"2.4.0","dependencies":{"lodash":"^4.14.0"},"devDependencies":{"babel-cli":"^6.24.0","babel-core":"^6.24.0","babel-plugin-add-module-exports":"^0.2.1","babel-plugin-istanbul":"^2.0.1","babel-plugin-transform-es2015-modules-commonjs":"^6.3.16","babel-preset-es2015":"^6.3.13","babel-preset-es2017":"^6.22.0","babelify":"^7.2.0","benchmark":"^2.1.1","bluebird":"^3.4.6","chai":"^3.1.0","cheerio":"^0.22.0","coveralls":"^2.11.2","es6-promise":"^2.3.0","eslint":"^2.13.1","fs-extra":"^0.26.7","gh-pages-deploy":"^0.4.2","jsdoc":"^3.4.0","karma":"^1.3.0","karma-browserify":"^5.1.0","karma-firefox-launcher":"^1.0.0","karma-mocha":"^1.2.0","karma-mocha-reporter":"^2.2.0","mocha":"^3.1.2","native-promise-only":"^0.8.0-a","nyc":"^7.0.0","recursive-readdir":"^1.3.0","rimraf":"^2.5.0","rollup":"^0.36.3","rollup-plugin-node-resolve":"^2.0.0","rollup-plugin-npm":"^2.0.0","rsvp":"^3.0.18","semver":"^4.3.6","uglify-js":"~2.7.3","vinyl-buffer":"^1.0.0","vinyl-source-stream":"^1.1.0","watchify":"^3.7.0","yargs":"~3.9.1"},"directories":{},"dist":{"shasum":"4990200f18ea5b837c2cc4f8c031a6985c385611","tarball":"https://registry.npmjs.org/async/-/async-2.4.0.tgz"}},"2.4.1":{"name":"async","version":"2.4.1","dependencies":{"lodash":"^4.14.0"},"devDependencies":{"babel-cli":"^6.24.0","babel-core":"^6.24.0","babel-plugin-add-module-exports":"^0.2.1","babel-plugin-istanbul":"^2.0.1","babel-plugin-transform-es2015-modules-commonjs":"^6.3.16","babel-preset-es2015":"^6.3.13","babel-preset-es2017":"^6.22.0","babelify":"^7.2.0","benchmark":"^2.1.1","bluebird":"^3.4.6","chai":"^3.1.0","cheerio":"^0.22.0","coveralls":"^2.11.2","es6-promise":"^2.3.0","eslint":"^2.13.1","fs-extra":"^0.26.7","gh-pages-deploy":"^0.4.2","jsdoc":"^3.4.0","karma":"^1.3.0","karma-browserify":"^5.1.0","karma-firefox-launcher":"^1.0.0","karma-mocha":"^1.2.0","karma-mocha-reporter":"^2.2.0","mocha":"^3.1.2","native-promise-only":"^0.8.0-a","nyc":"^7.0.0","recursive-readdir":"^1.3.0","rimraf":"^2.5.0","rollup":"^0.36.3","rollup-plugin-node-resolve":"^2.0.0","rollup-plugin-npm":"^2.0.0","rsvp":"^3.0.18","semver":"^4.3.6","uglify-js":"~2.7.3","vinyl-buffer":"^1.0.0","vinyl-source-stream":"^1.1.0","watchify":"^3.7.0","yargs":"~3.9.1"},"directories":{},"dist":{"shasum":"62a56b279c98a11d0987096a01cc3eeb8eb7bbd7","tarball":"https://registry.npmjs.org/async/-/async-2.4.1.tgz"}},"2.5.0":{"name":"async","version":"2.5.0","dependencies":{"lodash":"^4.14.0"},"devDependencies":{"babel-cli":"^6.24.0","babel-core":"^6.24.0","babel-plugin-add-module-exports":"^0.2.1","babel-plugin-istanbul":"^2.0.1","babel-plugin-transform-es2015-modules-commonjs":"^6.3.16","babel-preset-es2015":"^6.3.13","babel-preset-es2017":"^6.22.0","babelify":"^7.2.0","benchmark":"^2.1.1","bluebird":"^3.4.6","chai":"^3.1.0","cheerio":"^0.22.0","coveralls":"^2.11.2","es6-promise":"^2.3.0","eslint":"^2.13.1","fs-extra":"^0.26.7","gh-pages-deploy":"^0.4.2","jsdoc":"^3.4.0","karma":"^1.3.0","karma-browserify":"^5.1.0","karma-firefox-launcher":"^1.0.0","karma-mocha":"^1.2.0","karma-mocha-reporter":"^2.2.0","mocha":"^3.1.2","native-promise-only":"^0.8.0-a","nyc":"^7.0.0","recursive-readdir":"^1.3.0","rimraf":"^2.5.0","rollup":"^0.36.3","rollup-plugin-node-resolve":"^2.0.0","rollup-plugin-npm":"^2.0.0","rsvp":"^3.0.18","semver":"^4.3.6","uglify-js":"~2.7.3","vinyl-buffer":"^1.0.0","vinyl-source-stream":"^1.1.0","watchify":"^3.7.0","yargs":"~3.9.1"},"directories":{},"dist":{"integrity":"sha512-e+lJAJeNWuPCNyxZKOBdaJGyLGHugXVQtrAwtuAe2vhxTYxFTKE73p8JuTmdH0qdQZtDvI4dhJwjZc5zsfIsYw==","shasum":"843190fd6b7357a0b9e1c956edddd5ec8462b54d","tarball":"https://registry.npmjs.org/async/-/async-2.5.0.tgz"}},"2.6.0":{"name":"async","version":"2.6.0","dependencies":{"lodash":"^4.14.0"},"devDependencies":{"babel-cli":"^6.24.0","babel-core":"^6.24.0","babel-plugin-add-module-exports":"^0.2.1","babel-plugin-istanbul":"^2.0.1","babel-plugin-transform-es2015-modules-commonjs":"^6.3.16","babel-preset-es2015":"^6.3.13","babel-preset-es2017":"^6.22.0","babelify":"^7.2.0","benchmark":"^2.1.1","bluebird":"^3.4.6","chai":"^3.1.0","cheerio":"^0.22.0","coveralls":"^2.11.2","es6-promise":"^2.3.0","eslint":"^2.13.1","fs-extra":"^0.26.7","gh-pages-deploy":"^0.4.2","jsdoc":"^3.4.0","karma":"^1.3.0","karma-browserify":"^5.1.0","karma-firefox-launcher":"^1.0.0","karma-mocha":"^1.2.0","karma-mocha-reporter":"^2.2.0","mocha":"^3.1.2","native-promise-only":"^0.8.0-a","nyc":"^7.0.0","recursive-readdir":"^1.3.0","rimraf":"^2.5.0","rollup":"^0.36.3","rollup-plugin-node-resolve":"^2.0.0","rollup-plugin-npm":"^2.0.0","rsvp":"^3.0.18","semver":"^4.3.6","uglify-js":"~2.7.3","vinyl-buffer":"^1.0.0","vinyl-source-stream":"^1.1.0","watchify":"^3.7.0","yargs":"~3.9.1"},"directories":{},"dist":{"integrity":"sha512-xAfGg1/NTLBBKlHFmnd7PlmUW9KhVQIUuSrYem9xzFUZy13ScvtyGGejaae9iAVRiRq9+Cx7DPFaAAhCpyxyPw==","shasum":"61a29abb6fcc026fea77e56d1c6ec53a795951f4","tarball":"https://registry.npmjs.org/async/-/async-2.6.0.tgz"}},"2.6.1":{"name":"async","version":"2.6.1","dependencies":{"lodash":"^4.17.10"},"devDependencies":{"babel-cli":"^6.24.0","babel-core":"^6.26.3","babel-plugin-add-module-exports":"^0.2.1","babel-plugin-istanbul":"^2.0.1","babel-plugin-transform-es2015-modules-commonjs":"^6.26.2","babel-preset-es2015":"^6.3.13","babel-preset-es2017":"^6.22.0","babelify":"^8.0.0","benchmark":"^2.1.1","bluebird":"^3.4.6","browserify":"^16.2.2","chai":"^4.1.2","cheerio":"^0.22.0","coveralls":"^3.0.1","es6-promise":"^2.3.0","eslint":"^2.13.1","fs-extra":"^0.26.7","gh-pages-deploy":"^0.5.0","jsdoc":"^3.4.0","karma":"^2.0.2","karma-browserify":"^5.2.0","karma-firefox-launcher":"^1.1.0","karma-mocha":"^1.2.0","karma-mocha-reporter":"^2.2.0","mocha":"^5.2.0","native-promise-only":"^0.8.0-a","nyc":"^11.8.0","rimraf":"^2.5.0","rollup":"^0.36.3","rollup-plugin-node-resolve":"^2.0.0","rollup-plugin-npm":"^2.0.0","rsvp":"^3.0.18","semver":"^5.5.0","uglify-js":"~2.7.3","yargs":"^11.0.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-fNEiL2+AZt6AlAw/29Cr0UDe4sRAHCpEHh54WMz+Bb7QfNcFw4h3loofyJpLeQs4Yx7yuqu/2dLgM5hKOs6HlQ==","shasum":"b245a23ca71930044ec53fa46aa00a3e87c6a610","tarball":"https://registry.npmjs.org/async/-/async-2.6.1.tgz","fileCount":133,"unpackedSize":540920,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbAkxWCRA9TVsSAnZWagAAMogQAJxPRPcF4lY8dlEv78Vm\nrE88f6xFuMnVUgJunHn43+mYg36DDYpKB5VQ3jaHjAaK1WHJYepuPzQSIRFr\ndNgRs62K6s5zC+q07rbv7KyrYOKfHpLOC+PGtpRcKEuMVTQ5lzps6cYYZu5x\njtjmYcTI3t0EuJpaTZgVygtQ8iyvXFBJyt1zzqMAsRRxQx4A8VvytLw96Arl\n97x1BirrYsaamseE0AcoCpOKnSBM5AGiO4A/SeTNFWbPx7eM8Pf2rEgV5ohz\n2z5bjj6zOWpL8jyFMPBblRE82YXeMvEp14tgaruLrb15+xE7QapfjZuk6AQZ\n+DofFTGQSdHk4PZKx7OhUZTNiWbbVvBxtLBAOeStod3BP7C+dCTsFre0R8Yu\nmgrQ+l94TGSBc1xK8uqyHtBT61UGly0v85eVfe3MXT8YsAWY0MiMEsuJVz8d\n9QCjecg21j3oyJAe6F05OMaRZe7yJdgalCO9sq/W42ZztIwqDGS+GbNTRFiu\nDfZh13rSqZIakyYoBXQTXzhaCeDrsJKblYlC+kCkbo71P9M2xBsDFnUF7byC\nLWMo4xC0xUypHFdOi2lVF+FvpLTld8OPXGZOjSlX82LI93jhciNYxeydxL1T\nbr0OJDiW09zNJR7H0ISNwcJK2tPqdmw6C8aMSzNYQnuCVX0MVhaWvhiJ7IlD\nHEkH\r\n=4QoQ\r\n-----END PGP SIGNATURE-----\r\n"}},"3.0.1-0":{"name":"async","version":"3.0.1-0","dependencies":{},"devDependencies":{"babel-core":"^6.26.3","babel-eslint":"^8.2.6","babel-minify":"^0.4.3","babel-plugin-add-module-exports":"^0.2.1","babel-plugin-istanbul":"^2.0.1","babel-plugin-syntax-async-generators":"^6.13.0","babel-plugin-transform-es2015-modules-commonjs":"^6.26.2","babel-preset-es2015":"^6.3.13","babel-preset-es2017":"^6.22.0","babel-register":"^6.26.0","babelify":"^8.0.0","benchmark":"^2.1.1","bluebird":"^3.4.6","browserify":"^16.2.2","chai":"^4.1.2","cheerio":"^0.22.0","coveralls":"^3.0.1","es6-promise":"^2.3.0","eslint":"^4.19.1","eslint-plugin-prefer-arrow":"^1.1.2","fs-extra":"^0.26.7","gh-pages-deploy":"^0.5.0","jsdoc":"^3.4.0","karma":"^2.0.5","karma-browserify":"^5.3.0","karma-firefox-launcher":"^1.1.0","karma-mocha":"^1.2.0","karma-mocha-reporter":"^2.2.0","mocha":"^5.2.0","native-promise-only":"^0.8.0-a","nyc":"^11.8.0","rimraf":"^2.5.0","rollup":"^0.63.4","rollup-plugin-node-resolve":"^2.0.0","rollup-plugin-npm":"^2.0.0","rsvp":"^3.0.18","semver":"^5.5.0","yargs":"^11.0.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-b+lONkCWH/GCAIrU0j4m5zed5t+5dfjM2TbUSmKCagx6TZp2jQrNkGL7j1SUb0fF1yH6sKBiXC7Zid8Zj94O6A==","shasum":"ca06713f91c3d9eea3e966ace4093f41ef89f200","tarball":"https://registry.npmjs.org/async/-/async-3.0.1-0.tgz","fileCount":123,"unpackedSize":484369,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbsXPMCRA9TVsSAnZWagAA9Z0P/3Cl3srJ86yCqOSizOrX\neTBQVUdtiGvymV7aFriSNCTPq+d7KwKKBPnLosQpW9ZMbthdNMOBsEkx13ho\nnkmmdcBVWa+dweZ8+uWgKBTdvyorsLiIH5CXEHkQ2WEFKzBBMifV8qGAbu4F\n0PnF17EuIZvwxRBC6OqI1LOBLrK+qb4jE5a8lXR9//LA/Iop2xwIDXfgjavI\no/aDpqc1EgbwAS2zZb0uOxaCYbr75h4NyytCMOF3awm/K5R7RtGkyh2L1pvM\nRCMAf4n4M0kS9RbXkB1op9QEev7z9YSB2XgLKCAjDC12cbqqU6s3b+qTUYeM\nn3TDrf7V/ZEQjx23TK2Q9yoVi1dRGuotpC+8WYUmfO8hnGQ98y88MhT7Pvyh\nIDS8GciZaWUseOReaCBnb4F5cSvWMHTfqGGneLXftGLJGQFJY0RBW3p74NAI\nsslDxLDgbVB4R9NVAzWLcbalLyjoRW0OEqmTU+7EqgrBfDSb6w+bQCcpcoN/\nF7Q+8vedYNtXckMpLVsvrYK+0ubGLsUJ3coU5l0m4kf29Fv6xvpXZzfi9ouP\nQEcs3Xt2ldM+NRvUeAkH5Arazhy3OQa4CxFYVpqfvnjOOEUqSrjpDljuVGBn\nwnGwExazrMBCBnKBcWx9zKnaa3VLs55ALaKK3prbrj9MUPX8CH+NBaKpv8nM\nz7no\r\n=daBn\r\n-----END PGP SIGNATURE-----\r\n"}}},"name":"async","dist-tags":{"latest":"2.6.1","next":"3.0.1-0"},"modified":"2018-10-01T09:55:23.238Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/5b/f7/85e4c77dc06718ae155bd39532c47e1ee35d3d24f22720e663632e1e59fbeeda99a4efb5bbd018093cf1594adb7c7cbc3d2f18033cb00ea6cb8f0b57a7a5 b/npm/.npm/_cacache/content-v2/sha512/5b/f7/85e4c77dc06718ae155bd39532c47e1ee35d3d24f22720e663632e1e59fbeeda99a4efb5bbd018093cf1594adb7c7cbc3d2f18033cb00ea6cb8f0b57a7a5 new file mode 100644 index 0000000..987e591 --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/5b/f7/85e4c77dc06718ae155bd39532c47e1ee35d3d24f22720e663632e1e59fbeeda99a4efb5bbd018093cf1594adb7c7cbc3d2f18033cb00ea6cb8f0b57a7a5 @@ -0,0 +1 @@ +{"versions":{"1.0.0":{"name":"pify","version":"1.0.0","devDependencies":{"ava":"*","pinkie-promise":"^1.0.0","xo":"*"},"directories":{},"dist":{"shasum":"ef1490fdd87eb5f84c411507d72e2b535790bc4e","tarball":"http://registry.npmjs.org/pify/-/pify-1.0.0.tgz"},"engines":{"node":">=0.12.0"}},"1.1.0":{"name":"pify","version":"1.1.0","devDependencies":{"ava":"*","pinkie-promise":"^1.0.0","xo":"*"},"directories":{},"dist":{"shasum":"0b89b22c63d089de78f9668e2148165e85b10674","tarball":"http://registry.npmjs.org/pify/-/pify-1.1.0.tgz"},"engines":{"node":">=0.12.0"}},"1.1.1":{"name":"pify","version":"1.1.1","devDependencies":{"ava":"*","pinkie-promise":"^1.0.0","xo":"*"},"directories":{},"dist":{"shasum":"d06afb0e685893d6c16566d1f819b5ede2b33a29","tarball":"http://registry.npmjs.org/pify/-/pify-1.1.1.tgz"},"engines":{"node":">=0.10.0"}},"2.0.0":{"name":"pify","version":"2.0.0","devDependencies":{"ava":"*","pinkie-promise":"^1.0.0","xo":"*"},"directories":{},"dist":{"shasum":"7caa2a72d2c4a5ebb9f4db1cfcc5bf5ea0c10264","tarball":"http://registry.npmjs.org/pify/-/pify-2.0.0.tgz"},"engines":{"node":">=0.10.0"}},"2.1.0":{"name":"pify","version":"2.1.0","devDependencies":{"ava":"*","pinkie-promise":"^1.0.0","xo":"*"},"directories":{},"dist":{"shasum":"093996c0190b737612e3519fd24c7147166fcb6e","tarball":"http://registry.npmjs.org/pify/-/pify-2.1.0.tgz"},"engines":{"node":">=0.10.0"}},"2.2.0":{"name":"pify","version":"2.2.0","devDependencies":{"ava":"*","pinkie-promise":"^1.0.0","xo":"*"},"directories":{},"dist":{"shasum":"c65e870246c78b5a4ce6c0a6f35048c9aecd6cff","tarball":"http://registry.npmjs.org/pify/-/pify-2.2.0.tgz"},"engines":{"node":">=0.10.0"}},"2.3.0":{"name":"pify","version":"2.3.0","devDependencies":{"ava":"*","pinkie-promise":"^1.0.0","v8-natives":"0.0.2","xo":"*"},"directories":{},"dist":{"shasum":"ed141a6ac043a849ea588498e7dca8b15330e90c","tarball":"http://registry.npmjs.org/pify/-/pify-2.3.0.tgz"},"engines":{"node":">=0.10.0"}},"3.0.0":{"name":"pify","version":"3.0.0","devDependencies":{"ava":"*","pinkie-promise":"^2.0.0","v8-natives":"^1.0.0","xo":"*"},"directories":{},"dist":{"shasum":"e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176","tarball":"https://registry.npmjs.org/pify/-/pify-3.0.0.tgz"},"engines":{"node":">=4"}},"4.0.0":{"name":"pify","version":"4.0.0","devDependencies":{"ava":"*","pinkie-promise":"^2.0.0","v8-natives":"^1.1.0","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-zrSP/KDf9DH3K3VePONoCstgPiYJy9z0SCatZuTpOc7YdnWIqwkWdXOuwlr4uDc7em8QZRsFWsT/685x5InjYg==","shasum":"db04c982b632fd0df9090d14aaf1c8413cadb695","tarball":"https://registry.npmjs.org/pify/-/pify-4.0.0.tgz","fileCount":4,"unpackedSize":6765,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbbEZxCRA9TVsSAnZWagAA7D8P/1CZgTqUCZJomco/fQ+y\nQA7/2NQ72MV2DHXmSBo/2E4VrP3U6ag8hnWYFuT1HLEfo5xXyf74QNQulHU9\nx/rHy+ZzJDDePTW+T1cXz+bcP5mo9knZf+OsLJN18Cy0n+C+DA6TO2v5EsWk\naA+e765et0VYh57RY93+90pZChNnBz838nHxB7YIaD95vftsbhV5hYNYrQaV\nRqS0PfARYewd04nCTWvP95b1iOhiJ3yoO4XQE+hdI4s+3VTqVniey3ccBkUe\n4E5MbuJhcQzOq1lA9MGftn05EMCLwA+ttAF1+V3YA1tG8wn4qpwG6rMbGKna\n3H77dQ/MdgQhsOBf2FMCkWVW5JTNnAecXpJ5jlF180D2OL7jB/K6f8TzTmUh\n8vd49L97uECzp/TH7EsqRIofRTXssTTrTWP1/uIYEsS0VjpqMr/JF6RXw7Dj\nlwVgQ5JkrkQL8wV5q1Li3+yQOIsVlIQcu+JnK98rVuShzSCWNTHyI48yN6Y0\nkShA3fQnFRRCknOBnpa5TMjYwzissxWa2NQjn0mF5kFMd3ehM2pRByWHzVZq\n8LZ0KJPBwrcx7x9NtwxO786ZJ4KIJLK8fEkqg0GUsppb0eHmxHTUVODQhp1u\n1EI7QUMBPd4fY12gkfHqYS5dXAhdPBqfoZ7Rms60dC1o8vopNQuhcewQt+Qp\nbaEX\r\n=kvJa\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=6"}},"4.0.1":{"name":"pify","version":"4.0.1","devDependencies":{"ava":"^0.25.0","pinkie-promise":"^2.0.0","v8-natives":"^1.1.0","xo":"^0.23.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==","shasum":"4b2cd25c50d598735c50292224fd8c6df41e3231","tarball":"https://registry.npmjs.org/pify/-/pify-4.0.1.tgz","fileCount":4,"unpackedSize":7234,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbzcmUCRA9TVsSAnZWagAAIPAQAIXn1sdrK8mkb8EfIf/K\n/BtGC3tAjzE09DbHdPlCJCEAkxX5S/5CChu1CXGp1no/zG+kZ2u3GbQzc8uN\nlVDwO8XvYEeTKZQAg5q0uhoNuUbq4aRFlNHqDtsNBHM9yv18MqzET8EtGS8V\nc3BedMSqgjAEGMysAwp3JfcoIBACzScnWPsEggGvtCyKDV52cZU1B/eid2wc\nO3QSa5oViWsUOhhBYYrj8wjH+MbGkN+Z7QjqEnPVmAAYlMkXhJv16K6dRteT\nx0BeElBrhRmCuGIEnY1ChDqdumuzkes1hoBvyQY7TIQVcQ06gV1wxYSXzjYz\nZLptbUKafCnyvAlAD6auQrVlCpp2zU62CfE/AgOt9ZtIuAGP6h0fSI7V4Ja7\n/IAAUCqkGrPlzgg5RSm+pbQ9x5jg0UtjKGMR6tg+OfYmNFVc1IeiSFo/DT9c\nbVCGOu2KPF9Ks7mg9j0LgnQsypakopWLhXP+Sxv7R2onHXaGiHSMdK9MzihF\ngBTk8iWzmcJskLCUpsAbsKnrsTU6KpeEvPCODhOiDnvDYEEvg6JsGSO4DNNE\nYGY/Igr6cLInyUnOo5zcjzMFFoXt+IZ2dbiJS6mV/fraVemYPNvsftUdBIdO\ngUix8lHeWX7K42O/VIY6KzowXzCt0F8b4NsNasNW2Mfx7Ggt22cIrbt0Jiga\nUK6i\r\n=IG39\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=6"}}},"name":"pify","dist-tags":{"latest":"4.0.1"},"modified":"2018-10-22T12:59:02.148Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/5e/9b/31237c04dbacdfccbdafaafec766538ee6eb4c5b3655a7a2f0fdd80b98340efa6749d34f09149b13c52738286f5437f450cb14798d6cfe6bcfd699097509 b/npm/.npm/_cacache/content-v2/sha512/5e/9b/31237c04dbacdfccbdafaafec766538ee6eb4c5b3655a7a2f0fdd80b98340efa6749d34f09149b13c52738286f5437f450cb14798d6cfe6bcfd699097509 new file mode 100644 index 0000000..855f3c8 --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/5e/9b/31237c04dbacdfccbdafaafec766538ee6eb4c5b3655a7a2f0fdd80b98340efa6749d34f09149b13c52738286f5437f450cb14798d6cfe6bcfd699097509 @@ -0,0 +1 @@ +{"versions":{"0.2.0":{"name":"supports-color","version":"0.2.0","devDependencies":{"mocha":"*"},"bin":{"supports-color":"cli.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"d92de2694eb3f67323973d7ae3d8b55b4c22190a","tarball":"https://registry.npmjs.org/supports-color/-/supports-color-0.2.0.tgz"},"engines":{"node":">=0.10.0"}},"1.0.0":{"name":"supports-color","version":"1.0.0","devDependencies":{"mocha":"*","require-uncached":"^1.0.2"},"bin":{"supports-color":"cli.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"5e27d62fddbc2963b160e245c1445f966b0e79d5","tarball":"https://registry.npmjs.org/supports-color/-/supports-color-1.0.0.tgz"},"engines":{"node":">=0.10.0"}},"1.1.0":{"name":"supports-color","version":"1.1.0","devDependencies":{"mocha":"*","require-uncached":"^1.0.2"},"bin":{"supports-color":"cli.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"fdc4b1a210121071505a2d1ef4d9f5d8fba7ef82","tarball":"https://registry.npmjs.org/supports-color/-/supports-color-1.1.0.tgz"},"engines":{"node":">=0.10.0"}},"1.2.0":{"name":"supports-color","version":"1.2.0","devDependencies":{"mocha":"*","require-uncached":"^1.0.2"},"bin":{"supports-color":"cli.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"ff1ed1e61169d06b3cf2d588e188b18d8847e17e","tarball":"https://registry.npmjs.org/supports-color/-/supports-color-1.2.0.tgz"},"engines":{"node":">=0.10.0"}},"1.2.1":{"name":"supports-color","version":"1.2.1","devDependencies":{"mocha":"*","require-uncached":"^1.0.2"},"bin":{"supports-color":"cli.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"12ee21507086cd98c1058d9ec0f4ac476b7af3b2","tarball":"https://registry.npmjs.org/supports-color/-/supports-color-1.2.1.tgz"},"engines":{"node":">=0.8.0"}},"1.3.0":{"name":"supports-color","version":"1.3.0","devDependencies":{"mocha":"*","require-uncached":"^1.0.2"},"bin":{"supports-color":"cli.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"ca7def134d8bf8163e1c92905a49a2e4439b72a0","tarball":"https://registry.npmjs.org/supports-color/-/supports-color-1.3.0.tgz"},"engines":{"node":">=0.8.0"}},"1.3.1":{"name":"supports-color","version":"1.3.1","devDependencies":{"mocha":"*","require-uncached":"^1.0.2"},"bin":{"supports-color":"cli.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"15758df09d8ff3b4acc307539fabe27095e1042d","tarball":"https://registry.npmjs.org/supports-color/-/supports-color-1.3.1.tgz"},"engines":{"node":">=0.8.0"}},"2.0.0":{"name":"supports-color","version":"2.0.0","devDependencies":{"mocha":"*","require-uncached":"^1.0.2"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"535d045ce6b6363fa40117084629995e9df324c7","tarball":"https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz"},"engines":{"node":">=0.8.0"}},"3.0.0":{"name":"supports-color","version":"3.0.0","dependencies":{"has-flag":"^1.0.0"},"devDependencies":{"mocha":"*","require-uncached":"^1.0.2"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"15f7652e0a478b18405800d9a3dab21a26e91b65","tarball":"https://registry.npmjs.org/supports-color/-/supports-color-3.0.0.tgz"},"engines":{"node":">=0.8.0"}},"3.0.1":{"name":"supports-color","version":"3.0.1","dependencies":{"has-flag":"^1.0.0"},"devDependencies":{"mocha":"*","require-uncached":"^1.0.2"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"5044ef794ba979154745dfb77970c53e9b17908a","tarball":"https://registry.npmjs.org/supports-color/-/supports-color-3.0.1.tgz"},"engines":{"node":">=0.8.0"}},"3.1.0":{"name":"supports-color","version":"3.1.0","dependencies":{"has-flag":"^1.0.0"},"devDependencies":{"mocha":"*","require-uncached":"^1.0.2"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"71b1e2116bf51d24208768c9afa2e5f118d8ef61","tarball":"https://registry.npmjs.org/supports-color/-/supports-color-3.1.0.tgz"},"engines":{"node":">=0.8.0"}},"3.1.1":{"name":"supports-color","version":"3.1.1","dependencies":{"has-flag":"^1.0.0"},"devDependencies":{"mocha":"*","require-uncached":"^1.0.2","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"10b730ea2c36e9f3790a035f71b007259260ec4b","tarball":"https://registry.npmjs.org/supports-color/-/supports-color-3.1.1.tgz"},"engines":{"node":">=0.8.0"}},"3.1.2":{"name":"supports-color","version":"3.1.2","dependencies":{"has-flag":"^1.0.0"},"devDependencies":{"mocha":"*","require-uncached":"^1.0.2","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"72a262894d9d408b956ca05ff37b2ed8a6e2a2d5","tarball":"https://registry.npmjs.org/supports-color/-/supports-color-3.1.2.tgz"},"engines":{"node":">=0.8.0"}},"3.2.0":{"name":"supports-color","version":"3.2.0","dependencies":{"has-flag":"^1.0.0"},"devDependencies":{"mocha":"*","require-uncached":"^1.0.2","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"c4c385da44edcf152136bfa7f3125aee9b0a4f16","tarball":"https://registry.npmjs.org/supports-color/-/supports-color-3.2.0.tgz"},"engines":{"node":">=0.8.0"}},"3.2.1":{"name":"supports-color","version":"3.2.1","dependencies":{"has-flag":"^1.0.0"},"devDependencies":{"mocha":"*","require-uncached":"^1.0.2","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"f15108573f33717782a5eaf7d1b4ce1cd2f2e693","tarball":"https://registry.npmjs.org/supports-color/-/supports-color-3.2.1.tgz"},"engines":{"node":">=0.8.0"}},"3.2.2":{"name":"supports-color","version":"3.2.2","dependencies":{"has-flag":"^1.0.0"},"devDependencies":{"mocha":"*","require-uncached":"^1.0.2","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"c3eb919f3aed5fb659538822e7a42393a78e85b4","tarball":"https://registry.npmjs.org/supports-color/-/supports-color-3.2.2.tgz"},"engines":{"node":">=0.8.0"}},"3.2.3":{"name":"supports-color","version":"3.2.3","dependencies":{"has-flag":"^1.0.0"},"devDependencies":{"mocha":"*","require-uncached":"^1.0.2","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"65ac0504b3954171d8a64946b2ae3cbb8a5f54f6","tarball":"https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz"},"engines":{"node":">=0.8.0"}},"4.0.0":{"name":"supports-color","version":"4.0.0","dependencies":{"has-flag":"^2.0.0"},"devDependencies":{"ava":"*","import-fresh":"^2.0.0","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"33a7c680aa512c9d03ef929cacbb974d203d2790","tarball":"https://registry.npmjs.org/supports-color/-/supports-color-4.0.0.tgz"},"engines":{"node":">=4"}},"4.1.0":{"name":"supports-color","version":"4.1.0","dependencies":{"has-flag":"^2.0.0"},"devDependencies":{"ava":"*","import-fresh":"^2.0.0","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"92cc14bb3dad8928ca5656c33e19a19f20af5c7a","tarball":"https://registry.npmjs.org/supports-color/-/supports-color-4.1.0.tgz"},"engines":{"node":">=4"}},"4.2.0":{"name":"supports-color","version":"4.2.0","dependencies":{"has-flag":"^2.0.0"},"devDependencies":{"ava":"*","import-fresh":"^2.0.0","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-Ts0Mu/A1S1aZxEJNG88I4Oc9rcZSBFNac5e27yh4j2mqbhZSSzR1Ah79EYwSn9Zuh7lrlGD2cVGzw1RKGzyLSg==","shasum":"ad986dc7eb2315d009b4d77c8169c2231a684037","tarball":"https://registry.npmjs.org/supports-color/-/supports-color-4.2.0.tgz"},"engines":{"node":">=4"}},"4.2.1":{"name":"supports-color","version":"4.2.1","dependencies":{"has-flag":"^2.0.0"},"devDependencies":{"ava":"*","import-fresh":"^2.0.0","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-qxzYsob3yv6U+xMzPrv170y8AwGP7i74g+pbixCfD6rgso8BscLT2qXIuz6TpOaiJZ3mFgT5O9lyT9nMU4LfaA==","shasum":"65a4bb2631e90e02420dba5554c375a4754bb836","tarball":"https://registry.npmjs.org/supports-color/-/supports-color-4.2.1.tgz"},"engines":{"node":">=4"}},"4.3.0":{"name":"supports-color","version":"4.3.0","dependencies":{"has-flag":"^2.0.0"},"devDependencies":{"ava":"*","import-fresh":"^2.0.0","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-Yf+8UYPgZlMkps2h2P+248+8iE2hXXWjiZgwcKQc2ncE2s1cYAMdpzyPJ4+ttifNogmi09L5Wr0QxyZN6O9M/w==","shasum":"0fa3755bb961136cf75ff2ee3eb775822c04a31b","tarball":"https://registry.npmjs.org/supports-color/-/supports-color-4.3.0.tgz"},"engines":{"node":">=4"}},"4.4.0":{"name":"supports-color","version":"4.4.0","dependencies":{"has-flag":"^2.0.0"},"devDependencies":{"ava":"*","import-fresh":"^2.0.0","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-rKC3+DyXWgK0ZLKwmRsrkyHVZAjNkfzeehuFWdGGcqGDTZFH73+RH6S/RDAAxl9GusSjZSUWYLmT9N5pzXFOXQ==","shasum":"883f7ddabc165142b2a61427f3352ded195d1a3e","tarball":"https://registry.npmjs.org/supports-color/-/supports-color-4.4.0.tgz"},"engines":{"node":">=4"}},"4.5.0":{"name":"supports-color","version":"4.5.0","dependencies":{"has-flag":"^2.0.0"},"devDependencies":{"ava":"*","import-fresh":"^2.0.0","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"be7a0de484dec5c5cddf8b3d59125044912f635b","tarball":"https://registry.npmjs.org/supports-color/-/supports-color-4.5.0.tgz"},"engines":{"node":">=4"}},"5.0.0":{"name":"supports-color","version":"5.0.0","dependencies":{"has-flag":"^2.0.0"},"devDependencies":{"ava":"*","import-fresh":"^2.0.0","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"1db26229f6ae02f9acdb5410907c36ce2e362b13","tarball":"https://registry.npmjs.org/supports-color/-/supports-color-5.0.0.tgz"},"engines":{"node":">=4"}},"5.0.1":{"name":"supports-color","version":"5.0.1","dependencies":{"has-flag":"^2.0.0"},"devDependencies":{"ava":"*","import-fresh":"^2.0.0","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-7FQGOlSQ+AQxBNXJpVDj8efTA/FtyB5wcNE1omXXJ0cq6jm1jjDwuROlYDbnzHqdNPqliWFhcioCWSyav+xBnA==","shasum":"1c5331f22250c84202805b2f17adf16699f3a39a","tarball":"https://registry.npmjs.org/supports-color/-/supports-color-5.0.1.tgz"},"engines":{"node":">=4"}},"5.1.0":{"name":"supports-color","version":"5.1.0","dependencies":{"has-flag":"^2.0.0"},"devDependencies":{"ava":"*","import-fresh":"^2.0.0","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-Ry0AwkoKjDpVKK4sV4h6o3UJmNRbjYm2uXhwfj3J56lMVdvnUNqzQVRztOOMGQ++w1K/TjNDFvpJk0F/LoeBCQ==","shasum":"058a021d1b619f7ddf3980d712ea3590ce7de3d5","tarball":"https://registry.npmjs.org/supports-color/-/supports-color-5.1.0.tgz"},"engines":{"node":">=4"}},"5.2.0":{"name":"supports-color","version":"5.2.0","dependencies":{"has-flag":"^3.0.0"},"devDependencies":{"ava":"*","import-fresh":"^2.0.0","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-F39vS48la4YvTZUPVeTqsjsFNrvcMwrV3RLZINsmHo+7djCvuUzSIeXOnZ5hmjef4bajL1dNccN+tg5XAliO5Q==","shasum":"b0d5333b1184dd3666cbe5aa0b45c5ac7ac17a4a","tarball":"https://registry.npmjs.org/supports-color/-/supports-color-5.2.0.tgz","fileCount":5,"unpackedSize":6670},"engines":{"node":">=4"}},"5.3.0":{"name":"supports-color","version":"5.3.0","dependencies":{"has-flag":"^3.0.0"},"devDependencies":{"ava":"*","import-fresh":"^2.0.0","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-0aP01LLIskjKs3lq52EC0aGBAJhLq7B2Rd8HC/DR/PtNNpcLilNmHC12O+hu0usQpo7wtHNRqtrhBwtDb0+dNg==","shasum":"5b24ac15db80fa927cf5227a4a33fd3c4c7676c0","tarball":"https://registry.npmjs.org/supports-color/-/supports-color-5.3.0.tgz","fileCount":5,"unpackedSize":6779},"engines":{"node":">=4"}},"5.4.0":{"name":"supports-color","version":"5.4.0","dependencies":{"has-flag":"^3.0.0"},"devDependencies":{"ava":"*","import-fresh":"^2.0.0","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-zjaXglF5nnWpsq470jSv6P9DwPvgLkuapYmfDm3JWOm0vkNTVF2tI4UrN2r6jH1qM/uc/WtxYY1hYoA2dOKj5w==","shasum":"1c6b337402c2137605efe19f10fec390f6faab54","tarball":"https://registry.npmjs.org/supports-color/-/supports-color-5.4.0.tgz","fileCount":5,"unpackedSize":6693,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa1XC3CRA9TVsSAnZWagAAKqEP/1b5ncwgky8BfhFodI/k\nxxuQA/s18s+3RUyXu1KSyFbn+6wbyprD0mlsATEhrc8ILe23ieTpKV9xsy7U\nUjkhV7TW0ibf1ndM8Xr2Y9VqG/FV+ZDcn/sJC1OS+v6cmVRXsMuwUNHzHPmC\nj4dGMR9auksDBY6BMIz/vLIf/nKzKUC84v+Wc2AvWSjx7eii/j2txPlW7eIt\nPxfUinegPSzxVx15ijd7rP7mckXqjAfXHoEiaoJkrfeDZZdwLnJKSgDlGn1B\nQyKxo32z3XBDyf3zIBhrNfEa4yagX1zDLq9q2Kjnt1mWAxAXbScBuMx7NXfW\nZ8IriNLHNnfP+X3lK0uhd8K6nHMX6Vtcl63Ib1jTLXCo+nvotGdydYymsL6I\nqD2HEatdn7bCCBO9rImSOXWIfvVImPP2KIt7n4rnckerpWgMwnS1zeTqfzrm\nUWTAOUgkmrKZEoKdP4GHakdJflUjCFf5bd3pJFgIA2KiSUSYMOP1YPziWLpE\nhq192CiFHEDFmuAjXFqDxH8ewbis8qBhp9P1hg9x5oV/pPABVnsuAFcEEGhR\nlLiUMxTL5sO4ya1ARHtPecOj+Br86kyn5O9TG4iQYzxMQufn/Iyi0La7xs0q\nRHtaokepsuCcZOO8zG5GRVV/WKClK9ePLcjOiYOgyc8OI065zzLT43amvCAZ\n+M/X\r\n=nrD9\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=4"}},"5.5.0":{"name":"supports-color","version":"5.5.0","dependencies":{"has-flag":"^3.0.0"},"devDependencies":{"ava":"^0.25.0","import-fresh":"^2.0.0","xo":"^0.20.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==","shasum":"e2e69a44ac8772f78a1ec0b35b689df6530efc8f","tarball":"https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz","fileCount":5,"unpackedSize":6630,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbekWRCRA9TVsSAnZWagAAA/4QAIlKjuAwiz88EoU76LHY\nEWW+03GolP6yep0Yh9JS7mY6cd6wWooKZ3EmgqbWDmSaWMF0mveNOuh0uzKD\nQF/9rkiyf7z5b6Lh9r7IOJTA/BwfbGPCRzI2yX4G7am7hQ98U7BlPsOZRjo/\n5sbk5YSe5yVn4chc4I5FLH5n5rc+wx+KLq+T3xtAh1ze1+LcjlBcanUpE9ba\nJ/56gSqiM1fZrxmR31KkB4jhlGkUSwOWsycb7AwSORvnAt0E6dkvMj39WZro\nb0YhT5g0z8drvsKgs/pO99CdL1yjjKHhSwieCXSaew12DHHWy/YT445QbCXQ\n/yWBgtL6FkvUvvhs7J9sOwHoBIFTS4zhsn1+mxIi82etWCa+G2uHecJ3zR6x\nCAW4oqLRrwdJFz8CYf34cqaQ9fnkMal4XzDZ/G6FiQmhtUEFfFMq1pILMaq1\nVWqaBjuP3m8zmU2qOURK0aOJN/x3ONfgDm5hH5vukJsMALT5yQRuNslqYWwv\nuB8zQ8OH6+S534IvlbWaQxY03M4Ri/X8ohQDNdjHMhGngAKSyCGCXgbA3Nr9\nAv+8NCfrAEMIJ57QoiPpTsu9BzOUJjtZdmwtpcSHZoZjVdiir9Bc4pl2P/yY\nVP3wy1MGqTLzWICZCbIbwHdASMMGvTkCxw27KZp9bOqHU7ZeFWu9lTfq9/Ex\nq5Yz\r\n=1Pto\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=4"}}},"name":"supports-color","dist-tags":{"latest":"5.5.0"},"modified":"2018-08-20T04:37:40.163Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/5f/6e/1910fa0e04c88e6ab6d3c3d14abf77342b8818cad40b3c793daa9b26861517b3e5e5fb74cef0a4dfbbc647563540be8ecb76bae9b707b7bf67490cf8f69b b/npm/.npm/_cacache/content-v2/sha512/5f/6e/1910fa0e04c88e6ab6d3c3d14abf77342b8818cad40b3c793daa9b26861517b3e5e5fb74cef0a4dfbbc647563540be8ecb76bae9b707b7bf67490cf8f69b new file mode 100644 index 0000000..dd4d891 --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/5f/6e/1910fa0e04c88e6ab6d3c3d14abf77342b8818cad40b3c793daa9b26861517b3e5e5fb74cef0a4dfbbc647563540be8ecb76bae9b707b7bf67490cf8f69b @@ -0,0 +1 @@ +{"versions":{"1.0.0":{"name":"which","version":"1.0.0","dependencies":{},"devDependencies":{},"bin":{"which":"./bin/which"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"31c5f9bd9a939d6a08caf65456a9b660138ca5fc","tarball":"https://registry.npmjs.org/which/-/which-1.0.0.tgz"},"engines":{"node":"*"}},"1.0.1":{"name":"which","version":"1.0.1","dependencies":{},"devDependencies":{},"bin":{"which":"./bin/which"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"863c91cb0de414808e2dfa4e4473909d5f7945f5","tarball":"https://registry.npmjs.org/which/-/which-1.0.1.tgz"},"engines":{"node":"*"}},"1.0.2":{"name":"which","version":"1.0.2","dependencies":{},"devDependencies":{},"bin":{"which":"./bin/which"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"d50433d4935ccf0adf0c4f332c174b300a049415","tarball":"https://registry.npmjs.org/which/-/which-1.0.2.tgz"},"engines":{"node":"*"}},"1.0.3":{"name":"which","version":"1.0.3","dependencies":{},"optionalDependencies":{},"devDependencies":{},"bin":{"which":"./bin/which"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"fa8cecb2fab32f95a48a8c001667130787be6e08","tarball":"https://registry.npmjs.org/which/-/which-1.0.3.tgz"},"engines":{"node":"*"}},"1.0.5":{"name":"which","version":"1.0.5","dependencies":{},"optionalDependencies":{},"devDependencies":{},"bin":{"which":"./bin/which"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"5630d6819dda692f1464462e7956cb42c0842739","tarball":"https://registry.npmjs.org/which/-/which-1.0.5.tgz"},"engines":{"node":"*"}},"1.0.6":{"name":"which","version":"1.0.6","dependencies":{},"devDependencies":{},"bin":{"which":"./bin/which"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"cb2ea2e23e07ba01b5ea100f52419bf1f30cc5cb","tarball":"https://registry.npmjs.org/which/-/which-1.0.6.tgz"},"engines":{"node":"*"}},"1.0.7":{"name":"which","version":"1.0.7","bin":{"which":"./bin/which"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"853133f40e5bd2783e51a06774959455cc8ee865","tarball":"https://registry.npmjs.org/which/-/which-1.0.7.tgz"}},"1.0.8":{"name":"which","version":"1.0.8","bin":{"which":"./bin/which"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"c2ff319534ac4a1fa45df2221b56c36279903ded","tarball":"https://registry.npmjs.org/which/-/which-1.0.8.tgz"}},"1.0.9":{"name":"which","version":"1.0.9","bin":{"which":"./bin/which"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"460c1da0f810103d0321a9b633af9e575e64486f","tarball":"https://registry.npmjs.org/which/-/which-1.0.9.tgz"}},"1.1.0":{"name":"which","version":"1.1.0","dependencies":{"is-absolute":"^0.1.7"},"devDependencies":{"mkdirp":"^0.5.0","rimraf":"^2.3.3","tap":"^1.0.2"},"bin":{"which":"./bin/which"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"c93ef173d4d81938991265e5db5a6866a6568baa","tarball":"https://registry.npmjs.org/which/-/which-1.1.0.tgz"}},"1.1.1":{"name":"which","version":"1.1.1","dependencies":{"is-absolute":"^0.1.7"},"devDependencies":{"mkdirp":"^0.5.0","rimraf":"^2.3.3","tap":"^1.0.2"},"bin":{"which":"./bin/which"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"9ce512459946166e12c083f08ec073380fc8cbbb","tarball":"https://registry.npmjs.org/which/-/which-1.1.1.tgz"}},"1.1.2":{"name":"which","version":"1.1.2","dependencies":{"is-absolute":"^0.1.7"},"devDependencies":{"mkdirp":"^0.5.0","rimraf":"^2.3.3","tap":"^1.0.2"},"bin":{"which":"./bin/which"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"486c48af6dfecc7a7dcf9c655acf108d2dcbdf3d","tarball":"https://registry.npmjs.org/which/-/which-1.1.2.tgz"}},"1.2.0":{"name":"which","version":"1.2.0","dependencies":{"is-absolute":"^0.1.7"},"devDependencies":{"mkdirp":"^0.5.0","rimraf":"^2.3.3","tap":"^2.0.0"},"bin":{"which":"./bin/which"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"a5c8df5abc792f6ce9652c8d9ca8f3a91b77e59d","tarball":"https://registry.npmjs.org/which/-/which-1.2.0.tgz"}},"1.2.1":{"name":"which","version":"1.2.1","dependencies":{"is-absolute":"^0.1.7"},"devDependencies":{"mkdirp":"^0.5.0","rimraf":"^2.3.3","tap":"^2.0.0"},"bin":{"which":"./bin/which"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"a010c43aade1a798a3e6c1b1e453d45cb497a2bc","tarball":"https://registry.npmjs.org/which/-/which-1.2.1.tgz"}},"1.2.4":{"name":"which","version":"1.2.4","dependencies":{"is-absolute":"^0.1.7","isexe":"^1.1.1"},"devDependencies":{"mkdirp":"^0.5.0","rimraf":"^2.3.3","tap":"^5.1.1"},"bin":{"which":"./bin/which"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"1557f96080604e5b11b3599eb9f45b50a9efd722","tarball":"https://registry.npmjs.org/which/-/which-1.2.4.tgz"}},"1.2.5":{"name":"which","version":"1.2.5","dependencies":{"is-absolute":"^0.1.7","isexe":"^1.1.1"},"devDependencies":{"mkdirp":"^0.5.0","rimraf":"^2.3.3","tap":"^5.1.1"},"bin":{"which":"./bin/which"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"b0a9be4e49c9828874a82ed23d77468bfdba6c76","tarball":"https://registry.npmjs.org/which/-/which-1.2.5.tgz"}},"1.2.6":{"name":"which","version":"1.2.6","dependencies":{"is-absolute":"^0.1.7","isexe":"^1.1.1"},"devDependencies":{"mkdirp":"^0.5.0","rimraf":"^2.3.3","tap":"^5.1.1"},"bin":{"which":"./bin/which"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"d3d6910e26103a04d43b6d2fde5c37cf228f3fa3","tarball":"https://registry.npmjs.org/which/-/which-1.2.6.tgz"}},"1.2.7":{"name":"which","version":"1.2.7","dependencies":{"is-absolute":"^0.1.7","isexe":"^1.1.1"},"devDependencies":{"mkdirp":"^0.5.0","rimraf":"^2.3.3","tap":"^5.1.1"},"bin":{"which":"./bin/which"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"e5f694eaea43fdf5cdb6a66bbef9fba802375c6e","tarball":"https://registry.npmjs.org/which/-/which-1.2.7.tgz"}},"1.2.8":{"name":"which","version":"1.2.8","dependencies":{"is-absolute":"^0.1.7","isexe":"^1.1.1"},"devDependencies":{"mkdirp":"^0.5.0","rimraf":"^2.3.3","tap":"^5.1.1"},"bin":{"which":"./bin/which"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"37fa9f6eab30e49b8ef6eea24681c5799d52ebd6","tarball":"https://registry.npmjs.org/which/-/which-1.2.8.tgz"}},"1.2.9":{"name":"which","version":"1.2.9","dependencies":{"isexe":"^1.1.1"},"devDependencies":{"mkdirp":"^0.5.0","rimraf":"^2.3.3","tap":"^5.1.1"},"bin":{"which":"./bin/which"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"0b3a0e5c073bc10ca7b9ec13534eeef8a71ab61f","tarball":"https://registry.npmjs.org/which/-/which-1.2.9.tgz"}},"1.2.10":{"name":"which","version":"1.2.10","dependencies":{"isexe":"^1.1.1"},"devDependencies":{"mkdirp":"^0.5.0","rimraf":"^2.3.3","tap":"^5.1.1"},"bin":{"which":"./bin/which"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"91cd9bd0751322411b659b40f054b21de957ab2d","tarball":"https://registry.npmjs.org/which/-/which-1.2.10.tgz"}},"1.2.11":{"name":"which","version":"1.2.11","dependencies":{"isexe":"^1.1.1"},"devDependencies":{"mkdirp":"^0.5.0","rimraf":"^2.3.3","tap":"^5.1.1"},"bin":{"which":"./bin/which"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"c8b2eeea6b8c1659fa7c1dd4fdaabe9533dc5e8b","tarball":"https://registry.npmjs.org/which/-/which-1.2.11.tgz"}},"1.2.12":{"name":"which","version":"1.2.12","dependencies":{"isexe":"^1.1.1"},"devDependencies":{"mkdirp":"^0.5.0","rimraf":"^2.3.3","tap":"^5.1.1"},"bin":{"which":"./bin/which"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"de67b5e450269f194909ef23ece4ebe416fa1192","tarball":"https://registry.npmjs.org/which/-/which-1.2.12.tgz"}},"1.2.13":{"name":"which","version":"1.2.13","dependencies":{"isexe":"^2.0.0"},"devDependencies":{"mkdirp":"^0.5.0","rimraf":"^2.3.3","tap":"^10.3.0"},"bin":{"which":"./bin/which"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"27b013fe308e2a28c35c768fc9249a4bdb0d486b","tarball":"https://registry.npmjs.org/which/-/which-1.2.13.tgz"}},"1.2.14":{"name":"which","version":"1.2.14","dependencies":{"isexe":"^2.0.0"},"devDependencies":{"mkdirp":"^0.5.0","rimraf":"^2.3.3","tap":"^10.3.0"},"bin":{"which":"./bin/which"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"9a87c4378f03e827cecaf1acdf56c736c01c14e5","tarball":"https://registry.npmjs.org/which/-/which-1.2.14.tgz"}},"1.3.0":{"name":"which","version":"1.3.0","dependencies":{"isexe":"^2.0.0"},"devDependencies":{"mkdirp":"^0.5.0","rimraf":"^2.3.3","tap":"^10.7.0"},"bin":{"which":"./bin/which"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-xcJpopdamTuY5duC/KnTTNBraPK54YwpenP4lzxU8H91GudWpFv38u0CKjclE1Wi2EH2EDz5LRcHcKbCIzqGyg==","shasum":"ff04bdfc010ee547d780bec38e1ac1c2777d253a","tarball":"https://registry.npmjs.org/which/-/which-1.3.0.tgz"}},"1.3.1":{"name":"which","version":"1.3.1","dependencies":{"isexe":"^2.0.0"},"devDependencies":{"mkdirp":"^0.5.0","rimraf":"^2.6.2","tap":"^12.0.1"},"bin":{"which":"./bin/which"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==","shasum":"a45043d54f5805316da8d62f9f50918d3da70b0a","tarball":"https://registry.npmjs.org/which/-/which-1.3.1.tgz","fileCount":6,"unpackedSize":9419,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbCI3VCRA9TVsSAnZWagAAILoP/RHSoHTTTbIOg0UG8vtG\nEI7F2ueoGwFFiJAB+xPIEE1B8kP8WqJ3zW2StJ6fY5y53lTDoVyNFKYX9HTI\nBmrhEf2+SaHSYfiG1chBs8MIdatKswhZDy4r+Fyzk50UcgdaaJOBRfer9y8R\nGNISIjep1SQWB+KXhvV2SUg4DkOtcUc9XUHEEopPh9GLGM8HE+aMIYMOvdSK\naSbo8Kq4Ec9Kf8PvPSLV5mU7QFXodqVSkeM4tcZPxi0kGn5ZS/UzpHUian0y\n0EFrfb+IjlXmY7EFIB8Y2aVz8wjowNhAchROdNKAGDzCS4k78vwnSUbYVb5L\nazMs3SoujuYzKxdBo4Ifm/PTfWicgwH1L5vku3zsZ+ss3sgaMjBXDVGc/4bh\nmZ2aPx/DTrySjw6TXySHTbKqFuH6g8n6JWugcGJl0Ai15RNqjojA8FeVR1C0\nabteBcL8ly6pRLX3HwU/l229uFKL0jBVVvtaLsvB3mhMq3k75co36fCz7p13\nqlLXaNvmq6Tu6A0xpRzgkPwmb7DqWqvApz6RulJXobSBn9euJh09dWvMdrgx\n2VzqdpnNkMqXlYtrJEe7bdbCsNRZw/TzYMD+GBabGw4qppGSWkPtYCuTJNE1\nF3QxwZp47woCXnBqPbavSUsVqQQMxHb4y959ltS+0OifWWZy6EU4AG0zv5aL\nTbyd\r\n=c6n/\r\n-----END PGP SIGNATURE-----\r\n"}}},"name":"which","dist-tags":{"latest":"1.3.1"},"modified":"2018-06-26T21:47:02.500Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/61/9a/372bcd920fb462ca2d04d4440fa232f3ee4a5ea6749023d2323db1c78355d75debdbe5d248eeda72376003c467106c71bbbdcc911e4d1c6f0a9c42b894b6 b/npm/.npm/_cacache/content-v2/sha512/61/9a/372bcd920fb462ca2d04d4440fa232f3ee4a5ea6749023d2323db1c78355d75debdbe5d248eeda72376003c467106c71bbbdcc911e4d1c6f0a9c42b894b6 new file mode 100644 index 0000000..ca15817 Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha512/61/9a/372bcd920fb462ca2d04d4440fa232f3ee4a5ea6749023d2323db1c78355d75debdbe5d248eeda72376003c467106c71bbbdcc911e4d1c6f0a9c42b894b6 differ diff --git a/npm/.npm/_cacache/content-v2/sha512/62/0e/83dd7a510f89243a64e97606d48842452a08491f4ddf882d4e3e597987fd2c3ba9de8768ea443547390e28fcb31e6b4b600a46cc81e6b98a9fdef8c916ca b/npm/.npm/_cacache/content-v2/sha512/62/0e/83dd7a510f89243a64e97606d48842452a08491f4ddf882d4e3e597987fd2c3ba9de8768ea443547390e28fcb31e6b4b600a46cc81e6b98a9fdef8c916ca new file mode 100644 index 0000000..569ea1a Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha512/62/0e/83dd7a510f89243a64e97606d48842452a08491f4ddf882d4e3e597987fd2c3ba9de8768ea443547390e28fcb31e6b4b600a46cc81e6b98a9fdef8c916ca differ diff --git a/npm/.npm/_cacache/content-v2/sha512/63/e1/48d717aa136d9829ef5ef381d29a1a38d1d37e316b12e8c8fd85c24abb1883caf5317efbdc1c8738528c4edc117a488d2e2156d9c3ec08e381b937a19de0 b/npm/.npm/_cacache/content-v2/sha512/63/e1/48d717aa136d9829ef5ef381d29a1a38d1d37e316b12e8c8fd85c24abb1883caf5317efbdc1c8738528c4edc117a488d2e2156d9c3ec08e381b937a19de0 new file mode 100644 index 0000000..c088e22 --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/63/e1/48d717aa136d9829ef5ef381d29a1a38d1d37e316b12e8c8fd85c24abb1883caf5317efbdc1c8738528c4edc117a488d2e2156d9c3ec08e381b937a19de0 @@ -0,0 +1 @@ +{"versions":{"1.0.0-prerelease-1":{"name":"validate-npm-package-license","version":"1.0.0-prerelease-1","dependencies":{"spdx":"0.2.1","spdx-correct":"1.0.0-prerelease-2"},"devDependencies":{"jsmd":"^0.3.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"ff1c1c5d8324f9f8ea388e51e43458f5491947e0","tarball":"https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-1.0.0-prerelease-1.tgz"}},"1.0.0-prerelease-2":{"name":"validate-npm-package-license","version":"1.0.0-prerelease-2","dependencies":{"spdx":"^0.4.0","spdx-correct":"1.0.0-prerelease-3"},"devDependencies":{"jsmd":"^0.3.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"0f45adce1728091b289597035c1ad25a5ba549be","tarball":"https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-1.0.0-prerelease-2.tgz"}},"1.0.0-prerelease-3":{"name":"validate-npm-package-license","version":"1.0.0-prerelease-3","dependencies":{"spdx":"^0.4.0","spdx-correct":"1.0.0-prerelease-3"},"devDependencies":{"jsmd":"^0.3.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"d55a47551250c5bb4522c0944cefb9091f1344ad","tarball":"https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-1.0.0-prerelease-3.tgz"}},"1.0.0":{"name":"validate-npm-package-license","version":"1.0.0","dependencies":{"spdx":"~0.4.0","spdx-correct":"~1.0.0"},"devDependencies":{"jsmd":"~0.3.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"bd582727e3fa3ab43dc45514f14a14bef7f3002c","tarball":"https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-1.0.0.tgz"}},"2.0.0":{"name":"validate-npm-package-license","version":"2.0.0","dependencies":{"spdx":"~0.4.0","spdx-correct":"~1.0.0"},"devDependencies":{"jsmd":"~0.3.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"ce0a29300edfa07e6ac6ad52eed8d6dfd194e42b","tarball":"https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-2.0.0.tgz"}},"3.0.0":{"name":"validate-npm-package-license","version":"3.0.0","dependencies":{"spdx":"~0.4.0","spdx-correct":"~1.0.0"},"devDependencies":{"defence-cli":"^1.0.1","replace-require-self":"^1.0.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"cf9f54a861d1b8a9dbf4b3e72765024a22e87ed0","tarball":"https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.0.tgz"}},"3.0.1":{"name":"validate-npm-package-license","version":"3.0.1","dependencies":{"spdx-correct":"~1.0.0","spdx-expression-parse":"~1.0.0"},"devDependencies":{"defence-cli":"^1.0.1","replace-require-self":"^1.0.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"2804babe712ad3379459acfbe24746ab2c303fbc","tarball":"https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz"}},"3.0.2":{"name":"validate-npm-package-license","version":"3.0.2","dependencies":{"spdx-correct":"^2.0.4","spdx-expression-parse":"^3.0.0"},"devDependencies":{"defence-cli":"^2.0.1","replace-require-self":"^1.0.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-8zlGw3EZDpC7iUDKy4yHCSqFwkBTeAK4h1QqDC3ST6rT7dzvu2ZuclExZN7zuXNEhQ3+2UBQgdca5eNNL06sBg==","shasum":"ec39d030e27d1ee714515162c547f66356e49f41","tarball":"https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.2.tgz","fileCount":5,"unpackedSize":16605}},"3.0.3":{"name":"validate-npm-package-license","version":"3.0.3","dependencies":{"spdx-correct":"^3.0.0","spdx-expression-parse":"^3.0.0"},"devDependencies":{"defence-cli":"^2.0.1","replace-require-self":"^1.0.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-63ZOUnL4SIXj4L0NixR3L1lcjO38crAbgrTpl28t8jjrfuiOBL5Iygm+60qPs/KsZGzPNg6Smnc/oY16QTjF0g==","shasum":"81643bcbef1bdfecd4623793dc4648948ba98338","tarball":"https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.3.tgz","fileCount":5,"unpackedSize":16605}},"3.0.4":{"name":"validate-npm-package-license","version":"3.0.4","dependencies":{"spdx-correct":"^3.0.0","spdx-expression-parse":"^3.0.0"},"devDependencies":{"defence-cli":"^2.0.1","replace-require-self":"^1.0.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==","shasum":"fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a","tarball":"https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz","fileCount":4,"unpackedSize":16597,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbZyzXCRA9TVsSAnZWagAAhkcP/imBj6UnzB54WA4DtbsA\nJd6N2e6MIs/N4NtWEhqTbG744D4jym6BFSFwkywGMZLUA4TdT3yZgxakEuIU\niYt6jkzmAA5hIjIH/9P7e4gjT9ZkcrmDMMmr9VXNGvgZkg+9gSHnOfN484HP\ntslYpmW5K8P5U4e7cIDJO9QBFjlJ4sjpILITDn9WGJyvphZ+gEO6uV5LyAdC\nhA7pEOILgXxbCNDRFb3QbmgthUnXoy3sgTVjb6phwuVF72mqN4/BfmuA+zaR\nLcPEuYK1ZQW9Pa++jINIOq0N9vbkHzgo7cK+wLahyB/dH04B+DvOS24khUcS\nXAIsRoG4TK1DytQ97h8BOwMAW6jYclRYoMCVBGhncJLGctNrkAVJq+CSvJJN\nfCns1pv3CRWQCCuqp5mqHCu0oZpYtXE6BZMUQrV6PNzN4WMcqtF/4iLdps7C\nL2syTg8YlTlx0bPdSsnNKQIPt+4xsNq4QOoBgblNh7rmuRRRZt69Z0me6ycB\n6XcXx8Ok6glUz4jzG6jgd6s86GHPMw4tFtP+i6+5iQRIIRBwjQ1HuEPEqjF8\nYLxinu80YuY/uw1wtfbLrytIBo5fbK9DtRn+PNhvcBRlDS1ErJ2M2Yd2anmv\nM1joDg4Sb3tlpP0W5GJ46GE4GQ+WEFsxA+6F83FGj/NuZTuI9mtBVN3cGo4y\nInRT\r\n=LHiS\r\n-----END PGP SIGNATURE-----\r\n"}}},"name":"validate-npm-package-license","dist-tags":{"latest":"3.0.4"},"modified":"2018-08-05T16:59:06.229Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/68/9d/fd5e4446bb29c1852a8b257c1f06a503feae31301345a74c1d1aa7154dda51d941731607cded127d4843e6785d83c2a756b450a6df7325296287fad85cee b/npm/.npm/_cacache/content-v2/sha512/68/9d/fd5e4446bb29c1852a8b257c1f06a503feae31301345a74c1d1aa7154dda51d941731607cded127d4843e6785d83c2a756b450a6df7325296287fad85cee new file mode 100644 index 0000000..864fce5 --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/68/9d/fd5e4446bb29c1852a8b257c1f06a503feae31301345a74c1d1aa7154dda51d941731607cded127d4843e6785d83c2a756b450a6df7325296287fad85cee @@ -0,0 +1 @@ +{"versions":{"0.0.0":{"name":"balanced-match","version":"0.0.0","dependencies":{},"devDependencies":{"tape":"~1.1.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"86efc32ae583496c1c1fbb51cd648de0363ebb03","tarball":"https://registry.npmjs.org/balanced-match/-/balanced-match-0.0.0.tgz"}},"0.0.1":{"name":"balanced-match","version":"0.0.1","dependencies":{},"devDependencies":{"tape":"~1.1.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"2c408589c3288fc8a152c535ed853f77763899ae","tarball":"https://registry.npmjs.org/balanced-match/-/balanced-match-0.0.1.tgz"}},"0.1.0":{"name":"balanced-match","version":"0.1.0","dependencies":{},"devDependencies":{"tape":"~1.1.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"b504bd05869b39259dd0c5efc35d843176dccc4a","tarball":"https://registry.npmjs.org/balanced-match/-/balanced-match-0.1.0.tgz"}},"0.2.0":{"name":"balanced-match","version":"0.2.0","dependencies":{},"devDependencies":{"tape":"~1.1.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"38f6730c03aab6d5edbb52bd934885e756d71674","tarball":"https://registry.npmjs.org/balanced-match/-/balanced-match-0.2.0.tgz"}},"0.2.1":{"name":"balanced-match","version":"0.2.1","dependencies":{},"devDependencies":{"tape":"~1.1.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"7bc658b4bed61eee424ad74f75f5c3e2c4df3cc7","tarball":"https://registry.npmjs.org/balanced-match/-/balanced-match-0.2.1.tgz"}},"0.3.0":{"name":"balanced-match","version":"0.3.0","dependencies":{},"devDependencies":{"tape":"~4.2.2"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"a91cdd1ebef1a86659e70ff4def01625fc2d6756","tarball":"https://registry.npmjs.org/balanced-match/-/balanced-match-0.3.0.tgz"}},"0.4.0":{"name":"balanced-match","version":"0.4.0","dependencies":{},"devDependencies":{"tape":"~4.5.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"84818b70e91d9ac8b4d77df20e9239e80c025089","tarball":"https://registry.npmjs.org/balanced-match/-/balanced-match-0.4.0.tgz"}},"0.4.1":{"name":"balanced-match","version":"0.4.1","dependencies":{},"devDependencies":{"tape":"~4.5.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"19053e2e0748eadb379da6c09d455cf5e1039335","tarball":"https://registry.npmjs.org/balanced-match/-/balanced-match-0.4.1.tgz"}},"0.4.2":{"name":"balanced-match","version":"0.4.2","dependencies":{},"devDependencies":{"tape":"^4.6.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"cb3f3e3c732dc0f01ee70b403f302e61d7709838","tarball":"https://registry.npmjs.org/balanced-match/-/balanced-match-0.4.2.tgz"}},"1.0.0":{"name":"balanced-match","version":"1.0.0","dependencies":{},"devDependencies":{"matcha":"^0.7.0","tape":"^4.6.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"89b4d199ab2bee49de164ea02b89ce462d71b767","tarball":"https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz"}}},"name":"balanced-match","dist-tags":{"latest":"1.0.0"},"modified":"2017-06-15T13:26:50.817Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/69/0a/a97cba8ebb08490396eaebe31b1ec58a10493c9c492d7471c5fde3b7067675d0a5d6ff92e828801d606656ca95f949ebb07332e7be2c06367efccac6d6ed b/npm/.npm/_cacache/content-v2/sha512/69/0a/a97cba8ebb08490396eaebe31b1ec58a10493c9c492d7471c5fde3b7067675d0a5d6ff92e828801d606656ca95f949ebb07332e7be2c06367efccac6d6ed new file mode 100644 index 0000000..2739b91 --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/69/0a/a97cba8ebb08490396eaebe31b1ec58a10493c9c492d7471c5fde3b7067675d0a5d6ff92e828801d606656ca95f949ebb07332e7be2c06367efccac6d6ed @@ -0,0 +1 @@ +{"versions":{"0.3.0":{"name":"currently-unhandled","version":"0.3.0","dependencies":{},"devDependencies":{"array-find-index":"^1.0.1","ava":"^0.15.1","browserify":"^13.0.1","coveralls":"^2.11.9","delay":"^1.3.1","is-ci":"^1.0.8","karma":"^0.13.22","karma-browserify":"^5.0.5","karma-chrome-launcher":"^1.0.1","karma-mocha":"^1.0.1","mocha":"^2.5.3","nyc":"^6.4.0","watchify":"^3.7.0","xo":"^0.15.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"128ff43bb22f6783941bd96974af3e16c435292c","tarball":"https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.3.0.tgz"},"engines":{"node":">=0.10.0"}},"0.4.0":{"name":"currently-unhandled","version":"0.4.0","dependencies":{},"devDependencies":{"array-find-index":"^1.0.1","ava":"^0.15.1","bluebird":"^3.4.0","browserify":"^13.0.1","coveralls":"^2.11.9","delay":"^1.3.1","is-ci":"^1.0.8","karma":"^0.13.22","karma-browserify":"^5.0.5","karma-chrome-launcher":"^1.0.1","karma-firefox-launcher":"^1.0.0","karma-mocha":"^1.0.1","mocha":"^2.5.3","nyc":"^6.4.0","watchify":"^3.7.0","xo":"^0.15.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"02b6758db16b1a0e6bd054fc5d9b71bb7b06a8a4","tarball":"https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.0.tgz"},"engines":{"node":">=0.10.0"}},"0.4.1":{"name":"currently-unhandled","version":"0.4.1","dependencies":{"array-find-index":"^1.0.1"},"devDependencies":{"ava":"^0.15.1","bluebird":"^3.4.0","browserify":"^13.0.1","coveralls":"^2.11.9","delay":"^1.3.1","is-ci":"^1.0.8","karma":"^0.13.22","karma-browserify":"^5.0.5","karma-chrome-launcher":"^1.0.1","karma-firefox-launcher":"^1.0.0","karma-mocha":"^1.0.1","mocha":"^2.5.3","nyc":"^6.4.0","watchify":"^3.7.0","xo":"^0.15.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"988df33feab191ef799a61369dd76c17adf957ea","tarball":"https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz"},"engines":{"node":">=0.10.0"}}},"name":"currently-unhandled","dist-tags":{"latest":"0.4.1"},"modified":"2017-08-21T03:12:49.948Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/6d/d4/b4d5ef4ac5c105846e1bab5e101e3e380ef74903aa5627ced0530f0a1ec8ecd4ae1190022e12d7afda001570383bc0d2e6df434bd156343b6ca7453d51d6 b/npm/.npm/_cacache/content-v2/sha512/6d/d4/b4d5ef4ac5c105846e1bab5e101e3e380ef74903aa5627ced0530f0a1ec8ecd4ae1190022e12d7afda001570383bc0d2e6df434bd156343b6ca7453d51d6 new file mode 100644 index 0000000..9895b5f --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/6d/d4/b4d5ef4ac5c105846e1bab5e101e3e380ef74903aa5627ced0530f0a1ec8ecd4ae1190022e12d7afda001570383bc0d2e6df434bd156343b6ca7453d51d6 @@ -0,0 +1 @@ +{"versions":{"1.0.0":{"name":"path-exists","version":"1.0.0","devDependencies":{"ava":"0.0.4"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"d5a8998eb71ef37a74c34eb0d9eba6e878eea081","tarball":"https://registry.npmjs.org/path-exists/-/path-exists-1.0.0.tgz"},"engines":{"node":">=0.10.0"}},"2.0.0":{"name":"path-exists","version":"2.0.0","dependencies":{"pinkie-promise":"^1.0.0"},"devDependencies":{"ava":"*","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"c4efe37d7fdc792f9a029ce7906e095e169f9be1","tarball":"https://registry.npmjs.org/path-exists/-/path-exists-2.0.0.tgz"},"engines":{"node":">=0.10.0"}},"2.1.0":{"name":"path-exists","version":"2.1.0","dependencies":{"pinkie-promise":"^2.0.0"},"devDependencies":{"ava":"*","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"0feb6c64f0fc518d9a754dd5efb62c7022761f4b","tarball":"https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz"},"engines":{"node":">=0.10.0"}},"3.0.0":{"name":"path-exists","version":"3.0.0","devDependencies":{"ava":"*","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"ce0ebeaa5f78cb18925ea7d810d7b59b010fd515","tarball":"https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz"},"engines":{"node":">=4"}}},"name":"path-exists","dist-tags":{"latest":"3.0.0"},"modified":"2018-01-19T22:53:26.196Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/6f/80/ea2fd231647e00b868f5fde3d08cbae37eef1b6f6d3c3e420ffc0b28d772920f47d3a9716041ebb8ff3599c28e81fa4de363ee38d9edfcd82363c3fdbf57 b/npm/.npm/_cacache/content-v2/sha512/6f/80/ea2fd231647e00b868f5fde3d08cbae37eef1b6f6d3c3e420ffc0b28d772920f47d3a9716041ebb8ff3599c28e81fa4de363ee38d9edfcd82363c3fdbf57 new file mode 100644 index 0000000..319b237 --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/6f/80/ea2fd231647e00b868f5fde3d08cbae37eef1b6f6d3c3e420ffc0b28d772920f47d3a9716041ebb8ff3599c28e81fa4de363ee38d9edfcd82363c3fdbf57 @@ -0,0 +1 @@ +{"versions":{"0.1.0":{"name":"strip-bom","version":"0.1.0","devDependencies":{"mocha":"*"},"bin":{"strip-bom":"cli.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"c2b6bd5a206ba5caa0ab2a8f5ac2f686264ab072","tarball":"https://registry.npmjs.org/strip-bom/-/strip-bom-0.1.0.tgz"},"engines":{"node":">=0.10.0"}},"0.2.0":{"name":"strip-bom","version":"0.2.0","dependencies":{"is-utf8":"^0.2.0"},"devDependencies":{"mocha":"*"},"bin":{"strip-bom":"cli.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"8fea75e2715a8e7c9e0774c7d43c307e7e9eef33","tarball":"https://registry.npmjs.org/strip-bom/-/strip-bom-0.2.0.tgz"},"engines":{"node":">=0.10.0"}},"0.2.1":{"name":"strip-bom","version":"0.2.1","dependencies":{"is-utf8":"^0.2.0"},"devDependencies":{"mocha":"*"},"bin":{"strip-bom":"cli.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"bfa91b4e4322c7ae23147cd8ab76b46c59273774","tarball":"https://registry.npmjs.org/strip-bom/-/strip-bom-0.2.1.tgz"},"engines":{"node":">=0.10.0"}},"0.3.0":{"name":"strip-bom","version":"0.3.0","dependencies":{"is-utf8":"^0.2.0","through2":"^0.4.1"},"devDependencies":{"concat-stream":"^1.4.5","mocha":"*"},"bin":{"strip-bom":"cli.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"4a6920a8848ccc50369c3a535d809fddab4291b8","tarball":"https://registry.npmjs.org/strip-bom/-/strip-bom-0.3.0.tgz"},"engines":{"node":">=0.10.0"}},"0.3.1":{"name":"strip-bom","version":"0.3.1","dependencies":{"first-chunk-stream":"^0.1.0","is-utf8":"^0.2.0"},"devDependencies":{"concat-stream":"^1.4.5","mocha":"*"},"bin":{"strip-bom":"cli.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"9e8a39eff456ff9abc2f059f5f2225bb0f3f7ca5","tarball":"https://registry.npmjs.org/strip-bom/-/strip-bom-0.3.1.tgz"},"engines":{"node":">=0.10.0"}},"1.0.0":{"name":"strip-bom","version":"1.0.0","dependencies":{"first-chunk-stream":"^1.0.0","is-utf8":"^0.2.0"},"devDependencies":{"concat-stream":"^1.4.5","mocha":"*"},"bin":{"strip-bom":"cli.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"85b8862f3844b5a6d5ec8467a93598173a36f794","tarball":"https://registry.npmjs.org/strip-bom/-/strip-bom-1.0.0.tgz"},"engines":{"node":">=0.10.0"}},"2.0.0":{"name":"strip-bom","version":"2.0.0","dependencies":{"is-utf8":"^0.2.0"},"devDependencies":{"mocha":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"6219a85616520491f35788bdbf1447a99c7e6b0e","tarball":"https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz"},"engines":{"node":">=0.10.0"}},"3.0.0":{"name":"strip-bom","version":"3.0.0","devDependencies":{"ava":"*","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3","tarball":"https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz"},"engines":{"node":">=4"}}},"name":"strip-bom","dist-tags":{"latest":"3.0.0"},"modified":"2018-02-08T14:13:21.249Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/6f/ad/d2cf23217ee3198d52c99ff0a081ab393d1e47eb42e88cfab7831f5b7b86fd1fb6df7b8236bdd7f5cd665fbffab4b7af423decbed307539cd80948ab5720 b/npm/.npm/_cacache/content-v2/sha512/6f/ad/d2cf23217ee3198d52c99ff0a081ab393d1e47eb42e88cfab7831f5b7b86fd1fb6df7b8236bdd7f5cd665fbffab4b7af423decbed307539cd80948ab5720 new file mode 100644 index 0000000..2c78780 --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/6f/ad/d2cf23217ee3198d52c99ff0a081ab393d1e47eb42e88cfab7831f5b7b86fd1fb6df7b8236bdd7f5cd665fbffab4b7af423decbed307539cd80948ab5720 @@ -0,0 +1 @@ +{"versions":{"1.0.0":{"name":"camelcase","version":"1.0.0","devDependencies":{"ava":"0.0.4"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"922e65c1ca86276972a94de002b4e06e215324a0","tarball":"https://registry.npmjs.org/camelcase/-/camelcase-1.0.0.tgz"},"engines":{"node":">=0.10.0"}},"1.0.1":{"name":"camelcase","version":"1.0.1","devDependencies":{"ava":"0.0.4"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"f4f09e56e00a7749a4579f7741a61a2180797220","tarball":"https://registry.npmjs.org/camelcase/-/camelcase-1.0.1.tgz"},"engines":{"node":">=0.10.0"}},"1.0.2":{"name":"camelcase","version":"1.0.2","devDependencies":{"ava":"0.0.4"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"7912eac1d496836782c976c2d73e874dc54f2eaf","tarball":"https://registry.npmjs.org/camelcase/-/camelcase-1.0.2.tgz"},"engines":{"node":">=0.10.0"}},"1.1.0":{"name":"camelcase","version":"1.1.0","devDependencies":{"ava":"0.0.4"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"953b25c3bc98671ee59a44cb9d542672da7331b9","tarball":"https://registry.npmjs.org/camelcase/-/camelcase-1.1.0.tgz"},"engines":{"node":">=0.10.0"}},"1.2.0":{"name":"camelcase","version":"1.2.0","devDependencies":{"ava":"0.0.4"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"44c851ab95bb936513844be4abd4529337838530","tarball":"https://registry.npmjs.org/camelcase/-/camelcase-1.2.0.tgz"},"engines":{"node":">=0.10.0"}},"1.2.1":{"name":"camelcase","version":"1.2.1","devDependencies":{"ava":"0.0.4"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"9bb5304d2e0b56698b2c758b08a3eaa9daa58a39","tarball":"https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz"},"engines":{"node":">=0.10.0"}},"2.0.0":{"name":"camelcase","version":"2.0.0","devDependencies":{"ava":"*","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"ce69bde576ae24cb4bec697eec93c81809ecbefa","tarball":"https://registry.npmjs.org/camelcase/-/camelcase-2.0.0.tgz"},"engines":{"node":">=0.10.0"}},"2.0.1":{"name":"camelcase","version":"2.0.1","devDependencies":{"ava":"*","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"57568d687b8da56c4c1d17b4c74a3cee26d73aeb","tarball":"https://registry.npmjs.org/camelcase/-/camelcase-2.0.1.tgz"},"engines":{"node":">=0.10.0"}},"2.1.0":{"name":"camelcase","version":"2.1.0","devDependencies":{"ava":"*","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"533ad4cd7f8a1080ded31aba6c79b4bf437ff30c","tarball":"https://registry.npmjs.org/camelcase/-/camelcase-2.1.0.tgz"},"engines":{"node":">=0.10.0"}},"2.1.1":{"name":"camelcase","version":"2.1.1","devDependencies":{"ava":"*","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"7c1d16d679a1bbe59ca02cacecfb011e201f5a1f","tarball":"https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz"},"engines":{"node":">=0.10.0"}},"3.0.0":{"name":"camelcase","version":"3.0.0","devDependencies":{"ava":"*","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a","tarball":"https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz"},"engines":{"node":">=0.10.0"}},"4.0.0":{"name":"camelcase","version":"4.0.0","devDependencies":{"ava":"*","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"8b0f90d44be5e281b903b9887349b92595ef07f2","tarball":"https://registry.npmjs.org/camelcase/-/camelcase-4.0.0.tgz"},"engines":{"node":">=4"}},"4.1.0":{"name":"camelcase","version":"4.1.0","devDependencies":{"ava":"*","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"d545635be1e33c542649c69173e5de6acfae34dd","tarball":"https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz"},"engines":{"node":">=4"}},"5.0.0":{"name":"camelcase","version":"5.0.0","devDependencies":{"ava":"*","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-faqwZqnWxbxn+F1d399ygeamQNy3lPp/H9H6rNrqYh4FSVCtcY+3cub1MxA8o9mDd55mM8Aghuu/kuyYA6VTsA==","shasum":"03295527d58bd3cd4aa75363f35b2e8d97be2f42","tarball":"https://registry.npmjs.org/camelcase/-/camelcase-5.0.0.tgz","fileCount":4,"unpackedSize":5089},"engines":{"node":">=6"}}},"name":"camelcase","dist-tags":{"latest":"5.0.0"},"modified":"2018-05-25T06:51:37.300Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/70/7c/2c2eaa22821a6eed3b988f94689e712ec465459f3b5c52a4eaa79ad714660be0eb8f1687f00b861c83b9fd7d8c2f2ba17959b6207953b0a61f42aecd9fb1 b/npm/.npm/_cacache/content-v2/sha512/70/7c/2c2eaa22821a6eed3b988f94689e712ec465459f3b5c52a4eaa79ad714660be0eb8f1687f00b861c83b9fd7d8c2f2ba17959b6207953b0a61f42aecd9fb1 new file mode 100644 index 0000000..feefb3e Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha512/70/7c/2c2eaa22821a6eed3b988f94689e712ec465459f3b5c52a4eaa79ad714660be0eb8f1687f00b861c83b9fd7d8c2f2ba17959b6207953b0a61f42aecd9fb1 differ diff --git a/npm/.npm/_cacache/content-v2/sha512/70/a0/e98d1a109c0f24e64b546d3d466112720965746983544e6da52d9128e225c7845c4685cc205f9c9e914b9e2d8d123513353ffd5a5ffcf9fbb80b86c93f75 b/npm/.npm/_cacache/content-v2/sha512/70/a0/e98d1a109c0f24e64b546d3d466112720965746983544e6da52d9128e225c7845c4685cc205f9c9e914b9e2d8d123513353ffd5a5ffcf9fbb80b86c93f75 new file mode 100644 index 0000000..39d0d49 --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/70/a0/e98d1a109c0f24e64b546d3d466112720965746983544e6da52d9128e225c7845c4685cc205f9c9e914b9e2d8d123513353ffd5a5ffcf9fbb80b86c93f75 @@ -0,0 +1 @@ +{"versions":{"0.1.0":{"name":"grunt","version":"0.1.0","dependencies":{"colors":"~0.6.0","dateformat":"1.0.2-1.2.3","glob-whatev":"~0.1.0","handlebars":"1.0.2beta","jshint":"~0.5","nodeunit":"~0.6.4","nopt":"~1.0.10","uglify-js":"~1.0.7","underscore":"~1.2.4","gzip-js":"~0.3.1"},"devDependencies":{},"bin":{"grunt":"bin/grunt"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"8f2e718664a7db2d5efdb27622ba2d22277039d1","tarball":"https://registry.npmjs.org/grunt/-/grunt-0.1.0.tgz"},"engines":{"node":">= 0.4.12"}},"0.1.1":{"name":"grunt","version":"0.1.1","dependencies":{"colors":"~0.6.0","dateformat":"1.0.2-1.2.3","glob-whatev":"~0.1.0","handlebars":"1.0.2beta","jshint":"~0.5","nodeunit":"~0.6.4","nopt":"~1.0.10","uglify-js":"~1.0.7","underscore":"~1.2.4","gzip-js":"~0.3.1"},"devDependencies":{},"bin":{"grunt":"bin/grunt"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"1ec7c1be13b3c5d805424d3735c9d3b5bb91b98a","tarball":"https://registry.npmjs.org/grunt/-/grunt-0.1.1.tgz"},"engines":{"node":">= 0.4.12"}},"0.1.2":{"name":"grunt","version":"0.1.2","dependencies":{"colors":"~0.6.0","dateformat":"1.0.2-1.2.3","glob-whatev":"~0.1.0","handlebars":"1.0.2beta","jshint":"~0.5","nodeunit":"~0.6.4","nopt":"~1.0.10","uglify-js":"~1.0.7","underscore":"~1.2.4","gzip-js":"~0.3.1"},"devDependencies":{},"bin":{"grunt":"bin/grunt"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"f56884f5032b7b9aa479dcff43a3a189b880e2d2","tarball":"https://registry.npmjs.org/grunt/-/grunt-0.1.2.tgz"},"engines":{"node":">= 0.4.12"}},"0.2.0":{"name":"grunt","version":"0.2.0","dependencies":{"async":"~0.1.15","colors":"~0.6.0","dateformat":"1.0.2-1.2.3","glob-whatev":"~0.1.0","handlebars":"1.0.2beta","jshint":"~0.5","nodeunit":"~0.6.4","nopt":"~1.0.10","prompt":"~0.1.12","semver":"~1.0.13","uglify-js":"~1.0.7","underscore":"~1.2.4","gzip-js":"~0.3.1"},"devDependencies":{},"bin":{"grunt":"bin/grunt"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"316dcec57682b1b3ac6d4a46401e2fa0850d96a5","tarball":"https://registry.npmjs.org/grunt/-/grunt-0.2.0.tgz"},"engines":{"node":">= 0.4.12"}},"0.2.1":{"name":"grunt","version":"0.2.1","dependencies":{"async":"~0.1.15","colors":"~0.6.0","dateformat":"1.0.2-1.2.3","glob-whatev":"~0.1.0","jshint":"~0.5","nodeunit":"~0.6.4","nopt":"~1.0.10","prompt":"~0.1.12","semver":"~1.0.13","uglify-js":"~1.0.7","underscore":"~1.2.4","gzip-js":"~0.3.1"},"devDependencies":{},"bin":{"grunt":"bin/grunt"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"5dcde15244e6b1fcd5e0e61cbc6c7f3b1c9edaa5","tarball":"https://registry.npmjs.org/grunt/-/grunt-0.2.1.tgz"},"engines":{"node":">= 0.6.0"}},"0.2.2":{"name":"grunt","version":"0.2.2","dependencies":{"async":"~0.1.15","colors":"~0.6.0","dateformat":"1.0.2-1.2.3","glob-whatev":"~0.1.0","jshint":"~0.5","nodeunit":"~0.6.4","nopt":"~1.0.10","prompt":"~0.1.12","semver":"~1.0.13","uglify-js":"~1.0.7","underscore":"~1.2.4","gzip-js":"~0.3.1"},"devDependencies":{},"bin":{"grunt":"bin/grunt"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"7105c2f3f3c046812d982089f7ba2d2a3f0d35f7","tarball":"https://registry.npmjs.org/grunt/-/grunt-0.2.2.tgz"},"engines":{"node":">= 0.6.0"}},"0.2.3":{"name":"grunt","version":"0.2.3","dependencies":{"async":"~0.1.15","colors":"~0.6.0","dateformat":"1.0.2-1.2.3","glob-whatev":"~0.1.0","jshint":"~0.5","nodeunit":"~0.6.4","nopt":"~1.0.10","prompt":"~0.1.12","semver":"~1.0.13","uglify-js":"~1.0.7","underscore":"~1.2.4","gzip-js":"~0.3.1"},"optionalDependencies":{},"devDependencies":{},"bin":{"grunt":"bin/grunt"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"2f17f79230620ba6e2f73db76ca5c0fe2fa115fa","tarball":"https://registry.npmjs.org/grunt/-/grunt-0.2.3.tgz"},"engines":{"node":">= 0.6.0"}},"0.2.4":{"name":"grunt","version":"0.2.4","dependencies":{"async":"~0.1.15","colors":"~0.6.0","dateformat":"1.0.2-1.2.3","glob-whatev":"~0.1.0","jshint":"~0.5","nodeunit":"~0.6.4","nopt":"~1.0.10","prompt":"~0.1.12","semver":"~1.0.13","uglify-js":"~1.0.7","underscore":"~1.2.4","gzip-js":"~0.3.1"},"optionalDependencies":{},"devDependencies":{},"bin":{"grunt":"bin/grunt"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"864b773e43fb4d27ba42813dfe03cf117d4cbb89","tarball":"https://registry.npmjs.org/grunt/-/grunt-0.2.4.tgz"},"engines":{"node":">= 0.6.0"}},"0.2.5":{"name":"grunt","version":"0.2.5","dependencies":{"async":"~0.1.15","colors":"~0.6.0","connect":"~1.8.5","dateformat":"1.0.2-1.2.3","glob-whatev":"~0.1.0","jshint":"~0.5","nodeunit":"~0.6.4","nopt":"~1.0.10","prompt":"~0.1.12","semver":"~1.0.13","uglify-js":"~1.0.7","underscore":"~1.2.4","zombie":"~0.12.13","gzip-js":"~0.3.1"},"optionalDependencies":{},"devDependencies":{},"bin":{"grunt":"bin/grunt"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"1eb569fb65681ef58c060dfddbb57fdb373e099a","tarball":"https://registry.npmjs.org/grunt/-/grunt-0.2.5.tgz"},"engines":{"node":">= 0.6.0"}},"0.2.6":{"name":"grunt","version":"0.2.6","dependencies":{"async":"~0.1.15","colors":"~0.6.0","connect":"~1.8.5","dateformat":"1.0.2-1.2.3","glob-whatev":"~0.1.0","jshint":"~0.5","nodeunit":"~0.6.4","nopt":"~1.0.10","prompt":"~0.1.12","semver":"~1.0.13","uglify-js":"~1.0.7","underscore":"~1.2.4","zombie":"~0.12.13","gzip-js":"~0.3.1"},"optionalDependencies":{},"devDependencies":{},"bin":{"grunt":"bin/grunt"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"05cda73bf6fbad11c3b4d014b7c343b4c3fa33ee","tarball":"https://registry.npmjs.org/grunt/-/grunt-0.2.6.tgz"},"engines":{"node":">= 0.6.0"}},"0.2.7":{"name":"grunt","version":"0.2.7","dependencies":{"async":"~0.1.15","colors":"~0.6.0","connect":"~1.8.5","dateformat":"1.0.2-1.2.3","glob-whatev":"~0.1.0","jshint":"~0.5","nodeunit":"~0.6.4","nopt":"~1.0.10","prompt":"~0.1.12","semver":"~1.0.13","uglify-js":"~1.0.7","underscore":"~1.2.4","zombie":"~0.12.13","gzip-js":"~0.3.1"},"optionalDependencies":{},"devDependencies":{},"bin":{"grunt":"bin/grunt"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"abd9a3d30df327ca6bfe5ff665e4fc1912ff5470","tarball":"https://registry.npmjs.org/grunt/-/grunt-0.2.7.tgz"},"engines":{"node":">= 0.6.0"}},"0.2.8":{"name":"grunt","version":"0.2.8","dependencies":{"async":"~0.1.15","colors":"~0.6.0","connect":"~1.8.5","dateformat":"1.0.2-1.2.3","glob-whatev":"~0.1.0","jshint":"~0.5","nodeunit":"~0.6.4","nopt":"~1.0.10","prompt":"~0.1.12","semver":"~1.0.13","uglify-js":"~1.0.7","underscore":"~1.2.4","zombie":"~0.12.13","gzip-js":"~0.3.1"},"optionalDependencies":{},"devDependencies":{},"bin":{"grunt":"bin/grunt"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"830abc75eb2388f8b6cc20a5b26288e745073370","tarball":"https://registry.npmjs.org/grunt/-/grunt-0.2.8.tgz"},"engines":{"node":">= 0.6.0"}},"0.2.9":{"name":"grunt","version":"0.2.9","dependencies":{"async":"~0.1.15","colors":"~0.6.0","connect":"~1.8.5","dateformat":"1.0.2-1.2.3","glob-whatev":"~0.1.0","hooker":"~0.2.3","jshint":"~0.5","nodeunit":"~0.6.4","nopt":"~1.0.10","prompt":"~0.1.12","semver":"~1.0.13","uglify-js":"~1.0.7","underscore":"~1.2.4","temporary":"~0.0.2","zombie":"~0.12.13","gzip-js":"~0.3.1"},"optionalDependencies":{},"devDependencies":{},"bin":{"grunt":"bin/grunt"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"c53990a218f2fc0b88232d82981d847e45baae72","tarball":"https://registry.npmjs.org/grunt/-/grunt-0.2.9.tgz"},"engines":{"node":">= 0.6.0"}},"0.2.10":{"name":"grunt","version":"0.2.10","dependencies":{"async":"~0.1.15","colors":"~0.6.0","connect":"~1.8.5","dateformat":"1.0.2-1.2.3","glob-whatev":"~0.1.0","hooker":"~0.2.3","jshint":"~0.5","nodeunit":"~0.6.4","nopt":"~1.0.10","prompt":"~0.1.12","semver":"~1.0.13","uglify-js":"~1.0.7","underscore":"~1.2.4","temporary":"~0.0.2","zombie":"~0.12.13","gzip-js":"~0.3.1"},"optionalDependencies":{},"devDependencies":{},"bin":{"grunt":"bin/grunt"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"6d116d3f951ba04b31df6d7ca38164765237f7d8","tarball":"https://registry.npmjs.org/grunt/-/grunt-0.2.10.tgz"},"engines":{"node":">= 0.6.0"}},"0.2.11":{"name":"grunt","version":"0.2.11","dependencies":{"async":"~0.1.15","colors":"~0.6.0","connect":"~1.8.5","dateformat":"1.0.2-1.2.3","glob-whatev":"~0.1.0","hooker":"~0.2.3","jshint":"~0.5","nodeunit":"~0.6.4","nopt":"~1.0.10","prompt":"~0.1.12","semver":"~1.0.13","uglify-js":"~1.0.7","underscore":"~1.2.4","temporary":"~0.0.2","zombie":"~0.12.13","gzip-js":"~0.3.1"},"optionalDependencies":{},"devDependencies":{},"bin":{"grunt":"bin/grunt"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"3bf26644dba74e93adf485b080e6d374ec8bce4e","tarball":"https://registry.npmjs.org/grunt/-/grunt-0.2.11.tgz"},"engines":{"node":">= 0.6.0"}},"0.2.12":{"name":"grunt","version":"0.2.12","dependencies":{"async":"~0.1.15","colors":"~0.6.0","connect":"~1.8.5","dateformat":"1.0.2-1.2.3","glob-whatev":"~0.1.0","hooker":"~0.2.3","jshint":"~0.5","nodeunit":"~0.6.4","nopt":"~1.0.10","prompt":"~0.1.12","semver":"~1.0.13","uglify-js":"~1.0.7","underscore":"~1.2.4","temporary":"~0.0.2","zombie":"~0.12.13","gzip-js":"~0.3.1"},"optionalDependencies":{},"devDependencies":{},"bin":{"grunt":"bin/grunt"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"f0ea809bf2422c1cd3c78314d029386a2debbf53","tarball":"https://registry.npmjs.org/grunt/-/grunt-0.2.12.tgz"},"engines":{"node":">= 0.6.0"}},"0.2.13":{"name":"grunt","version":"0.2.13","dependencies":{"async":"~0.1.15","colors":"~0.6.0","connect":"~1.8.5","dateformat":"1.0.2-1.2.3","glob-whatev":"~0.1.0","hooker":"~0.2.3","jshint":"~0.5","nodeunit":"~0.6.4","nopt":"~1.0.10","prompt":"~0.1.12","semver":"~1.0.13","uglify-js":"~1.0.7","underscore":"~1.2.4","temporary":"~0.0.2","zombie":"~0.12.13","gzip-js":"~0.3.1"},"optionalDependencies":{},"devDependencies":{},"bin":{"grunt":"bin/grunt"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"cb95866f763fcadc308ec4f6399554732dc9f75c","tarball":"https://registry.npmjs.org/grunt/-/grunt-0.2.13.tgz"},"engines":{"node":">= 0.6.0"}},"0.2.14":{"name":"grunt","version":"0.2.14","dependencies":{"async":"~0.1.15","colors":"~0.6.0","connect":"~1.8.5","dateformat":"1.0.2-1.2.3","glob-whatev":"~0.1.0","hooker":"~0.2.3","jshint":"~0.5","nodeunit":"~0.6.4","nopt":"~1.0.10","prompt":"~0.1.12","semver":"~1.0.13","uglify-js":"~1.0.7","underscore":"~1.2.4","temporary":"~0.0.2","gzip-js":"~0.3.1"},"optionalDependencies":{},"devDependencies":{},"bin":{"grunt":"bin/grunt"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"561fc9b8db580b755052d9b9c5cec8a08bc8bf4a","tarball":"https://registry.npmjs.org/grunt/-/grunt-0.2.14.tgz"},"engines":{"node":">= 0.6.0"}},"0.2.15":{"name":"grunt","version":"0.2.15","dependencies":{"async":"~0.1.15","colors":"~0.6.0","connect":"~1.8.5","dateformat":"1.0.2-1.2.3","glob-whatev":"~0.1.0","hooker":"~0.2.3","jshint":"~0.5","nodeunit":"~0.6.4","nopt":"~1.0.10","prompt":"~0.1.12","semver":"~1.0.13","uglify-js":"~1.0.7","underscore":"~1.2.4","temporary":"~0.0.2","gzip-js":"~0.3.1"},"optionalDependencies":{},"devDependencies":{},"bin":{"grunt":"bin/grunt"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"37595d4c80b8ae2ea19abb0e6958f152e5b39b1b","tarball":"https://registry.npmjs.org/grunt/-/grunt-0.2.15.tgz"},"engines":{"node":">= 0.6.0"}},"0.3.0":{"name":"grunt","version":"0.3.0","dependencies":{"async":"~0.1.18","colors":"~0.6.0","connect":"~1.8.6","dateformat":"1.0.2-1.2.3","glob-whatev":"~0.1.2","hooker":"~0.2.3","jshint":"~0.5.9","nodeunit":"~0.6.4","nopt":"~1.0.10","prompt":"~0.1.12","semver":"~1.0.13","uglify-js":"~1.0.7","underscore":"~1.2.4","underscore.string":"~2.0.0","temporary":"~0.0.2","gzip-js":"~0.3.1"},"optionalDependencies":{},"devDependencies":{},"bin":{"grunt":"bin/grunt"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"cbb1cbfd4df60e8ba4e7e28fbe22dc216511d337","tarball":"https://registry.npmjs.org/grunt/-/grunt-0.3.0.tgz"},"engines":{"node":">= 0.6.0"}},"0.3.1":{"name":"grunt","version":"0.3.1","dependencies":{"async":"~0.1.18","colors":"~0.6.0","connect":"~1.8.6","dateformat":"1.0.2-1.2.3","glob-whatev":"~0.1.3","hooker":"~0.2.3","jshint":"~0.5.9","nodeunit":"~0.6.4","nopt":"~1.0.10","prompt":"~0.1.12","semver":"~1.0.13","uglify-js":"~1.0.7","underscore":"~1.2.4","underscore.string":"~2.0.0","temporary":"~0.0.2","gzip-js":"~0.3.1"},"optionalDependencies":{},"devDependencies":{},"bin":{"grunt":"bin/grunt"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"a77f92a76197f2c58dec05e84492f29423111b21","tarball":"https://registry.npmjs.org/grunt/-/grunt-0.3.1.tgz"},"engines":{"node":">= 0.6.0"}},"0.3.2":{"name":"grunt","version":"0.3.2","dependencies":{"async":"~0.1.18","colors":"~0.6.0","connect":"~1.8.6","dateformat":"1.0.2-1.2.3","glob-whatev":"~0.1.3","hooker":"~0.2.3","jshint":"~0.5.9","nodeunit":"~0.6.4","nopt":"~1.0.10","prompt":"~0.1.12","semver":"~1.0.13","uglify-js":"~1.0.7","underscore":"~1.2.4","underscore.string":"~2.0.0","temporary":"~0.0.2","gzip-js":"~0.3.1"},"optionalDependencies":{},"devDependencies":{},"bin":{"grunt":"bin/grunt"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"575d5621cfc4b7bbd1f9147d9cc57e889e46217a","tarball":"https://registry.npmjs.org/grunt/-/grunt-0.3.2.tgz"},"engines":{"node":">= 0.6.0"}},"0.3.3":{"name":"grunt","version":"0.3.3","dependencies":{"async":"~0.1.18","colors":"~0.6.0","connect":"~1.8.6","dateformat":"1.0.2-1.2.3","glob-whatev":"~0.1.3","hooker":"~0.2.3","jshint":"~0.5.9","nodeunit":"~0.6.4","nopt":"~1.0.10","prompt":"~0.1.12","semver":"~1.0.13","uglify-js":"~1.0.7","underscore":"~1.2.4","underscore.string":"~2.0.0","temporary":"~0.0.2","gzip-js":"~0.3.1"},"optionalDependencies":{},"devDependencies":{},"bin":{"grunt":"bin/grunt"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"a18838dae02e19a757f817e6b5887d626668424e","tarball":"https://registry.npmjs.org/grunt/-/grunt-0.3.3.tgz"},"engines":{"node":">= 0.6.0"}},"0.3.4":{"name":"grunt","version":"0.3.4","dependencies":{"async":"~0.1.18","colors":"~0.6.0","connect":"~1.8.6","dateformat":"1.0.2-1.2.3","glob-whatev":"~0.1.3","hooker":"~0.2.3","jshint":"~0.5.9","nodeunit":"~0.6.4","nopt":"~1.0.10","prompt":"~0.1.12","semver":"~1.0.13","uglify-js":"~1.0.7","underscore":"~1.2.4","underscore.string":"~2.0.0","temporary":"~0.0.2","gzip-js":"~0.3.1"},"optionalDependencies":{},"devDependencies":{},"bin":{"grunt":"bin/grunt"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"c61a5907b8c80df0db489f22faa44293dc02b71b","tarball":"https://registry.npmjs.org/grunt/-/grunt-0.3.4.tgz"},"engines":{"node":">= 0.6.0"}},"0.3.5":{"name":"grunt","version":"0.3.5","dependencies":{"async":"~0.1.18","colors":"~0.6.0","connect":"~1.8.6","dateformat":"1.0.2-1.2.3","glob-whatev":"~0.1.4","hooker":"~0.2.3","jshint":"~0.5.9","nodeunit":"~0.6.4","nopt":"~1.0.10","prompt":"~0.1.12","semver":"~1.0.13","uglify-js":"~1.0.7","underscore":"~1.2.4","underscore.string":"~2.0.0","temporary":"~0.0.2","gzip-js":"~0.3.1"},"optionalDependencies":{},"devDependencies":{},"bin":{"grunt":"bin/grunt"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"c908a4655e4b410c825d0633790c6aff586a0649","tarball":"https://registry.npmjs.org/grunt/-/grunt-0.3.5.tgz"},"engines":{"node":">= 0.6.0"}},"0.3.6":{"name":"grunt","version":"0.3.6","dependencies":{"async":"~0.1.18","colors":"~0.6.0","connect":"~1.8.6","dateformat":"1.0.2-1.2.3","glob-whatev":"~0.1.4","hooker":"~0.2.3","jshint":"~0.5.9","nodeunit":"~0.6.4","nopt":"~1.0.10","prompt":"~0.1.12","semver":"~1.0.13","uglify-js":"~1.0.7","underscore":"~1.2.4","underscore.string":"~2.0.0","temporary":"~0.0.2","gzip-js":"~0.3.1"},"optionalDependencies":{},"devDependencies":{},"bin":{"grunt":"bin/grunt"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"9daf9a1b1016e4ec5d4f93257865b8f67b0a48ff","tarball":"https://registry.npmjs.org/grunt/-/grunt-0.3.6.tgz"},"engines":{"node":">= 0.6.0"}},"0.3.7":{"name":"grunt","version":"0.3.7","dependencies":{"async":"~0.1.18","colors":"~0.6.0","connect":"~1.8.6","dateformat":"1.0.2-1.2.3","glob-whatev":"~0.1.4","hooker":"~0.2.3","jshint":"~0.5.9","nodeunit":"~0.6.4","nopt":"~1.0.10","prompt":"~0.1.12","semver":"~1.0.13","uglify-js":"~1.0.7","underscore":"~1.2.4","underscore.string":"~2.0.0","temporary":"~0.0.2","gzip-js":"~0.3.1"},"optionalDependencies":{},"devDependencies":{},"bin":{"grunt":"bin/grunt"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"5dda75330531f7923bfe1e3a5ea016bdced39cf0","tarball":"https://registry.npmjs.org/grunt/-/grunt-0.3.7.tgz"},"engines":{"node":">= 0.6.0"}},"0.3.8":{"name":"grunt","version":"0.3.8","dependencies":{"async":"~0.1.18","colors":"~0.6.0","connect":"~1.8.6","dateformat":"1.0.2-1.2.3","glob-whatev":"~0.1.4","hooker":"~0.2.3","jshint":"~0.5.9","nodeunit":"~0.6.4","nopt":"~1.0.10","prompt":"~0.1.12","semver":"~1.0.13","uglify-js":"~1.0.7","underscore":"~1.2.4","underscore.string":"~2.1.1","temporary":"~0.0.2","gzip-js":"~0.3.1"},"optionalDependencies":{},"devDependencies":{},"bin":{"grunt":"bin/grunt"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"94d20932abbaf4e84aca08258f6f6905a0119b6c","tarball":"https://registry.npmjs.org/grunt/-/grunt-0.3.8.tgz"},"engines":{"node":">= 0.6.0"}},"0.3.9":{"name":"grunt","version":"0.3.9","dependencies":{"async":"~0.1.18","colors":"~0.6.0","connect":"~1.8.6","dateformat":"1.0.2-1.2.3","glob-whatev":"~0.1.4","hooker":"~0.2.3","jshint":"~0.5.9","nodeunit":"~0.6.4","nopt":"~1.0.10","prompt":"~0.1.12","semver":"~1.0.13","uglify-js":"~1.0.7","underscore":"~1.2.4","underscore.string":"~2.1.1","temporary":"~0.0.2","gzip-js":"~0.3.1"},"optionalDependencies":{},"devDependencies":{},"bin":{"grunt":"bin/grunt"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"365566acab09beac3075c24b0792106eca832264","tarball":"https://registry.npmjs.org/grunt/-/grunt-0.3.9.tgz"},"engines":{"node":">= 0.6.0"}},"0.3.10":{"name":"grunt","version":"0.3.10","dependencies":{"async":"~0.1.18","colors":"~0.6.0","connect":"~2.3.4","dateformat":"1.0.2-1.2.3","glob-whatev":"~0.1.4","hooker":"~0.2.3","jshint":"~0.5.9","nodeunit":"~0.6.4","nopt":"~1.0.10","prompt":"~0.1.12","semver":"~1.0.13","uglify-js":"~1.0.7","underscore":"~1.2.4","underscore.string":"~2.1.1","temporary":"~0.0.4","gzip-js":"~0.3.1"},"devDependencies":{},"bin":{"grunt":"bin/grunt"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"8d58789e3eb76db4328d9b1c69b50e0cdaa46ee1","tarball":"https://registry.npmjs.org/grunt/-/grunt-0.3.10.tgz"},"engines":{"node":">= 0.6.0"}},"0.3.11":{"name":"grunt","version":"0.3.11","dependencies":{"async":"~0.1.18","colors":"~0.6.0","connect":"~2.3.4","dateformat":"1.0.2-1.2.3","glob-whatev":"~0.1.4","hooker":"~0.2.3","jshint":"~0.5.9","nodeunit":"~0.6.4","nopt":"~1.0.10","prompt":"~0.1.12","semver":"~1.0.13","uglify-js":"~1.0.7","underscore":"~1.2.4","underscore.string":"~2.1.1","temporary":"~0.0.4","gzip-js":"~0.3.1"},"devDependencies":{},"bin":{"grunt":"bin/grunt"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"64e08291d1c04ec2d5b29075255ed2ba7dfb82d6","tarball":"https://registry.npmjs.org/grunt/-/grunt-0.3.11.tgz"},"engines":{"node":">= 0.6.0"}},"0.3.12":{"name":"grunt","version":"0.3.12","dependencies":{"async":"~0.1.18","colors":"~0.6.0","connect":"~2.3.4","dateformat":"1.0.2-1.2.3","glob-whatev":"~0.1.4","hooker":"~0.2.3","jshint":"~0.5.9","nodeunit":"~0.6.4","nopt":"~1.0.10","prompt":"~0.1.12","semver":"~1.0.13","uglify-js":"~1.0.7","underscore":"~1.2.4","underscore.string":"~2.1.1","temporary":"~0.0.4","gzip-js":"~0.3.1"},"devDependencies":{},"bin":{"grunt":"bin/grunt"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"749541287f534ee472923892a9c3ad75af6f0bbf","tarball":"https://registry.npmjs.org/grunt/-/grunt-0.3.12.tgz"},"engines":{"node":">= 0.6.0"}},"0.3.13":{"name":"grunt","version":"0.3.13","dependencies":{"async":"~0.1.18","colors":"~0.6.0","connect":"~2.4.4","dateformat":"1.0.2-1.2.3","glob-whatev":"~0.1.4","hooker":"~0.2.3","jshint":"~0.5.9","nodeunit":"~0.7.4","nopt":"~1.0.10","prompt":"~0.1.12","semver":"~1.0.13","uglify-js":"~1.3.3","underscore":"~1.2.4","underscore.string":"~2.1.1","temporary":"~0.0.4","gzip-js":"~0.3.1"},"devDependencies":{},"bin":{"grunt":"bin/grunt"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"226033f72d45bb4fb06b59de6973be20a41c2017","tarball":"https://registry.npmjs.org/grunt/-/grunt-0.3.13.tgz"},"engines":{"node":">= 0.6.0"}},"0.3.14":{"name":"grunt","version":"0.3.14","dependencies":{"async":"~0.1.18","colors":"~0.6.0","connect":"~2.4.4","dateformat":"1.0.2-1.2.3","glob-whatev":"~0.1.4","hooker":"~0.2.3","jshint":"~0.5.9","nodeunit":"~0.7.4","nopt":"~1.0.10","prompt":"~0.1.12","semver":"~1.0.13","uglify-js":"~1.3.3","underscore":"~1.2.4","underscore.string":"~2.1.1","temporary":"~0.0.4","gzip-js":"~0.3.1"},"devDependencies":{},"bin":{"grunt":"bin/grunt"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"449ebe6bb729b019b1bc09068ba01eebe3ac1e46","tarball":"https://registry.npmjs.org/grunt/-/grunt-0.3.14.tgz"},"engines":{"node":">= 0.6.0"}},"0.3.15":{"name":"grunt","version":"0.3.15","dependencies":{"async":"~0.1.18","colors":"~0.6.0","connect":"~2.4.4","dateformat":"1.0.2-1.2.3","glob-whatev":"~0.1.4","hooker":"~0.2.3","jshint":"~0.5.9","nodeunit":"~0.7.4","nopt":"~1.0.10","prompt":"~0.1.12","semver":"~1.0.13","uglify-js":"~1.3.3","underscore":"~1.2.4","underscore.string":"~2.1.1","temporary":"~0.0.4","gzip-js":"~0.3.1"},"devDependencies":{},"bin":{"grunt":"bin/grunt"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"8e8e323631fb78ad2d4ff5477da5f1b0261fb288","tarball":"https://registry.npmjs.org/grunt/-/grunt-0.3.15.tgz"},"engines":{"node":">= 0.6.0"}},"0.3.16":{"name":"grunt","version":"0.3.16","dependencies":{"async":"~0.1.18","colors":"~0.6.0","connect":"~2.4.4","dateformat":"1.0.2-1.2.3","glob-whatev":"~0.1.4","hooker":"~0.2.3","jshint":"~0.5.9","nodeunit":"~0.7.4","nopt":"~1.0.10","prompt":"~0.1.12","semver":"~1.0.13","uglify-js":"~1.3.3","underscore":"~1.2.4","underscore.string":"~2.1.1","temporary":"~0.0.4","gzip-js":"~0.3.1"},"devDependencies":{},"bin":{"grunt":"bin/grunt"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"a6c99ac3918bb4404201751a0962d02a47e2f507","tarball":"https://registry.npmjs.org/grunt/-/grunt-0.3.16.tgz"},"engines":{"node":">= 0.6.0"}},"0.3.17":{"name":"grunt","version":"0.3.17","dependencies":{"async":"~0.1.18","colors":"~0.6.0","connect":"~2.4.4","dateformat":"1.0.2-1.2.3","glob-whatev":"~0.1.4","hooker":"~0.2.3","jshint":"~0.9.1","nodeunit":"~0.7.4","nopt":"~1.0.10","prompt":"~0.1.12","semver":"~1.0.13","uglify-js":"~1.3.3","underscore":"~1.2.4","underscore.string":"~2.1.1","temporary":"~0.0.4","gzip-js":"~0.3.1"},"devDependencies":{},"bin":{"grunt":"bin/grunt"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"f2e034d200befd5eeb38ba5c41d4ccd7235fd64d","tarball":"https://registry.npmjs.org/grunt/-/grunt-0.3.17.tgz"},"engines":{"node":">= 0.6.0"}},"0.4.0":{"name":"grunt","version":"0.4.0","dependencies":{"async":"~0.1.22","coffee-script":"~1.3.3","colors":"~0.6.0-1","dateformat":"1.0.2-1.2.3","eventemitter2":"~0.4.9","findup-sync":"~0.1.0","glob":"~3.1.17","hooker":"~0.2.3","iconv-lite":"~0.2.5","minimatch":"~0.2.6","nopt":"~1.0.10","rimraf":"~2.0.2","lodash":"~0.9.0","underscore.string":"~2.2.0rc","which":"~1.0.5","js-yaml":"~1.0.1"},"devDependencies":{"temporary":"~0.0.4","grunt-contrib-jshint":"~0.1.1","grunt-contrib-nodeunit":"~0.1.2","grunt-contrib-watch":"~0.2.0","difflet":"~0.2.3"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"279ab234ec68d890ffb41f681084e53f795e788a","tarball":"https://registry.npmjs.org/grunt/-/grunt-0.4.0.tgz"},"engines":{"node":">= 0.8.0"}},"0.4.1":{"name":"grunt","version":"0.4.1","dependencies":{"async":"~0.1.22","coffee-script":"~1.3.3","colors":"~0.6.0-1","dateformat":"1.0.2-1.2.3","eventemitter2":"~0.4.9","findup-sync":"~0.1.0","glob":"~3.1.21","hooker":"~0.2.3","iconv-lite":"~0.2.5","minimatch":"~0.2.6","nopt":"~1.0.10","rimraf":"~2.0.2","lodash":"~0.9.0","underscore.string":"~2.2.0rc","which":"~1.0.5","js-yaml":"~2.0.2"},"devDependencies":{"temporary":"~0.0.4","grunt-contrib-jshint":"~0.1.1","grunt-contrib-nodeunit":"~0.1.2","grunt-contrib-watch":"~0.2.0","difflet":"~0.2.3"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"d5892e5680add9ed1befde9aa635cf46b8f49729","tarball":"https://registry.npmjs.org/grunt/-/grunt-0.4.1.tgz"},"engines":{"node":">= 0.8.0"}},"0.4.2":{"name":"grunt","version":"0.4.2","dependencies":{"async":"~0.1.22","coffee-script":"~1.3.3","colors":"~0.6.2","dateformat":"1.0.2-1.2.3","eventemitter2":"~0.4.13","findup-sync":"~0.1.2","glob":"~3.1.21","hooker":"~0.2.3","iconv-lite":"~0.2.11","minimatch":"~0.2.12","nopt":"~1.0.10","rimraf":"~2.0.3","lodash":"~0.9.2","underscore.string":"~2.2.1","which":"~1.0.5","js-yaml":"~2.0.5","exit":"~0.1.1","getobject":"~0.1.0"},"devDependencies":{"temporary":"~0.0.4","grunt-contrib-jshint":"~0.6.4","grunt-contrib-nodeunit":"~0.2.0","grunt-contrib-watch":"~0.5.3","difflet":"~0.2.3","semver":"2.1.0","shelljs":"~0.2.5"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"895b4f28a6102bffd41d365a65e8be2d6a293d93","tarball":"https://registry.npmjs.org/grunt/-/grunt-0.4.2.tgz"},"engines":{"node":">= 0.8.0"}},"0.4.3":{"name":"grunt","version":"0.4.3","dependencies":{"async":"~0.1.22","coffee-script":"~1.3.3","colors":"~0.6.2","dateformat":"1.0.2-1.2.3","eventemitter2":"~0.4.13","findup-sync":"~0.1.2","glob":"~3.1.21","hooker":"~0.2.3","iconv-lite":"~0.2.11","minimatch":"~0.2.12","nopt":"~1.0.10","rimraf":"~2.2.6","lodash":"~0.9.2","underscore.string":"~2.2.1","which":"~1.0.5","js-yaml":"~2.0.5","exit":"~0.1.1","getobject":"~0.1.0","grunt-legacy-util":"~0.1.2"},"devDependencies":{"temporary":"~0.0.4","grunt-contrib-jshint":"~0.6.4","grunt-contrib-nodeunit":"~0.2.0","grunt-contrib-watch":"~0.5.3","difflet":"~0.2.3","semver":"2.1.0","shelljs":"~0.2.5"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"6a8ab7010917ab3b08be9709109419b19d93ef8f","tarball":"https://registry.npmjs.org/grunt/-/grunt-0.4.3.tgz"},"engines":{"node":">= 0.8.0"}},"0.4.4":{"name":"grunt","version":"0.4.4","dependencies":{"async":"~0.1.22","coffee-script":"~1.3.3","colors":"~0.6.2","dateformat":"1.0.2-1.2.3","eventemitter2":"~0.4.13","findup-sync":"~0.1.2","glob":"~3.1.21","hooker":"~0.2.3","iconv-lite":"~0.2.11","minimatch":"~0.2.12","nopt":"~1.0.10","rimraf":"~2.2.6","lodash":"~0.9.2","underscore.string":"~2.2.1","which":"~1.0.5","js-yaml":"~2.0.5","exit":"~0.1.1","getobject":"~0.1.0","grunt-legacy-util":"~0.1.2"},"devDependencies":{"temporary":"~0.0.4","grunt-contrib-jshint":"~0.6.4","grunt-contrib-nodeunit":"~0.2.0","grunt-contrib-watch":"~0.5.3","difflet":"~0.2.3","semver":"2.1.0","shelljs":"~0.2.5"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"f37fa46e2e52e37f9a0370542a74281c09c73f53","tarball":"https://registry.npmjs.org/grunt/-/grunt-0.4.4.tgz"},"engines":{"node":">= 0.8.0"}},"0.4.5":{"name":"grunt","version":"0.4.5","dependencies":{"async":"~0.1.22","coffee-script":"~1.3.3","colors":"~0.6.2","dateformat":"1.0.2-1.2.3","eventemitter2":"~0.4.13","findup-sync":"~0.1.2","glob":"~3.1.21","hooker":"~0.2.3","iconv-lite":"~0.2.11","minimatch":"~0.2.12","nopt":"~1.0.10","rimraf":"~2.2.8","lodash":"~0.9.2","underscore.string":"~2.2.1","which":"~1.0.5","js-yaml":"~2.0.5","exit":"~0.1.1","getobject":"~0.1.0","grunt-legacy-util":"~0.2.0","grunt-legacy-log":"~0.1.0"},"devDependencies":{"temporary":"~0.0.4","grunt-contrib-jshint":"~0.6.4","grunt-contrib-nodeunit":"~0.2.0","grunt-contrib-watch":"~0.5.3","difflet":"~0.2.3","semver":"2.1.0","shelljs":"~0.2.5"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"56937cd5194324adff6d207631832a9d6ba4e7f0","tarball":"https://registry.npmjs.org/grunt/-/grunt-0.4.5.tgz"},"engines":{"node":">= 0.8.0"}},"1.0.0-rc1":{"name":"grunt","version":"1.0.0-rc1","dependencies":{"coffee-script":"~1.10.0","dateformat":"~1.0.12","eventemitter2":"~0.4.13","exit":"~0.1.1","findup-sync":"~0.3.0","glob":"~6.0.4","grunt-cli":"1.0.0-rc1","grunt-legacy-log":"1.0.0-rc1","grunt-legacy-util":"1.0.0-rc1","iconv-lite":"~0.4.13","js-yaml":"~3.5.2","minimatch":"~3.0.0","nopt":"~3.0.6","path-is-absolute":"~1.0.0","rimraf":"~2.2.8"},"devDependencies":{"difflet":"~0.2.3","grunt-contrib-jshint":"~0.11.3","grunt-contrib-nodeunit":"~0.4.1","grunt-contrib-watch":"~0.6.1","grunt-jscs":"~2.3.0","semver":"2.1.0","shelljs":"~0.5.3","temporary":"~0.0.4","through2":"~2.0.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"c30c33f7011a048469369be46402797421b8b5cd","tarball":"https://registry.npmjs.org/grunt/-/grunt-1.0.0-rc1.tgz"},"engines":{"node":">=0.10.0"}},"1.0.0":{"name":"grunt","version":"1.0.0","dependencies":{"coffee-script":"~1.10.0","dateformat":"~1.0.12","eventemitter2":"~0.4.13","exit":"~0.1.1","findup-sync":"~0.3.0","glob":"~7.0.0","grunt-cli":"1.2.0","grunt-known-options":"~1.1.0","grunt-legacy-log":"~1.0.0","grunt-legacy-util":"~1.0.0","iconv-lite":"~0.4.13","js-yaml":"~3.5.2","minimatch":"~3.0.0","nopt":"~3.0.6","path-is-absolute":"~1.0.0","rimraf":"~2.2.8"},"devDependencies":{"difflet":"~0.2.3","grunt-contrib-jshint":"~1.0.0","grunt-contrib-nodeunit":"~0.4.1","grunt-contrib-watch":"~1.0.0","grunt-jscs":"~2.8.0","semver":"2.1.0","shelljs":"~0.5.3","temporary":"~0.0.4","through2":"~2.0.0"},"bin":{"grunt":"node_modules/grunt-cli/bin/grunt"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"5fea0f9f40afe65ca1ca61e40031891d325d4b43","tarball":"https://registry.npmjs.org/grunt/-/grunt-1.0.0.tgz"},"engines":{"node":">=0.10.0"}},"1.0.1":{"name":"grunt","version":"1.0.1","dependencies":{"coffee-script":"~1.10.0","dateformat":"~1.0.12","eventemitter2":"~0.4.13","exit":"~0.1.1","findup-sync":"~0.3.0","glob":"~7.0.0","grunt-cli":"~1.2.0","grunt-known-options":"~1.1.0","grunt-legacy-log":"~1.0.0","grunt-legacy-util":"~1.0.0","iconv-lite":"~0.4.13","js-yaml":"~3.5.2","minimatch":"~3.0.0","nopt":"~3.0.6","path-is-absolute":"~1.0.0","rimraf":"~2.2.8"},"devDependencies":{"difflet":"~0.2.3","grunt-contrib-jshint":"~1.0.0","grunt-contrib-nodeunit":"~0.4.1","grunt-contrib-watch":"~1.0.0","grunt-jscs":"~2.8.0","semver":"2.1.0","shelljs":"~0.5.3","temporary":"~0.0.4","through2":"~2.0.0"},"bin":{"grunt":"bin/grunt"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"e8778764e944b18f32bb0f10b9078475c9dfb56b","tarball":"https://registry.npmjs.org/grunt/-/grunt-1.0.1.tgz"},"engines":{"node":">=0.10.0"}},"0.3.13-a":{"name":"grunt","version":"0.3.13-a","dependencies":{"async":"~0.1.18","colors":"~0.6.0","connect":"~2.4.4","dateformat":"1.0.2-1.2.3","glob-whatev":"~0.1.4","hooker":"~0.2.3","jshint":"~0.5.9","nodeunit":"~0.7.4","nopt":"~1.0.10","prompt":"~0.1.12","semver":"~1.0.13","uglify-js":"~1.3.3","underscore":"~1.2.4","underscore.string":"~2.1.1","temporary":"~0.0.4","gzip-js":"~0.3.1"},"devDependencies":{},"bin":{"grunt":"bin/grunt"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"f9bb0b9e3af83fde4f2cb927b8540736610777e9","tarball":"https://registry.npmjs.org/grunt/-/grunt-0.3.13a.tgz"},"engines":{"node":">= 0.6.0"}},"0.4.0-a":{"name":"grunt","version":"0.4.0-a","dependencies":{"async":"~0.1.22","coffee-script":"~1.3.3","colors":"~0.6.0-1","dateformat":"1.0.2-1.2.3","eventemitter2":"~0.4.9","glob":"~3.1.13","grunt-init":"0.1.0","hooker":"~0.2.3","iconv-lite":"~0.2.5","minimatch":"~0.2.6","nopt":"~1.0.10","rimraf":"~2.0.2","lodash":"~0.9.0","underscore.string":"~2.2.0rc","which":"~1.0.5","js-yaml":"~1.0.1"},"devDependencies":{"temporary":"~0.0.4","grunt-contrib-jshint":"~0.1.0","grunt-contrib-nodeunit":"~0.1.0","grunt-contrib-watch":"~0.1.0","grunt-cli":"~0.1.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"f06077b70d42944fbe6c945ddbec4066551680fd","tarball":"https://registry.npmjs.org/grunt/-/grunt-0.4.0a.tgz"},"engines":{"node":">= 0.8.0"}},"0.4.0-rc1":{"name":"grunt","version":"0.4.0-rc1","dependencies":{"async":"~0.1.22","coffee-script":"~1.3.3","colors":"~0.6.0-1","dateformat":"1.0.2-1.2.3","eventemitter2":"~0.4.9","glob":"~3.1.13","hooker":"~0.2.3","iconv-lite":"~0.2.5","minimatch":"~0.2.6","nopt":"~1.0.10","rimraf":"~2.0.2","lodash":"~0.9.0","underscore.string":"~2.2.0rc","which":"~1.0.5","js-yaml":"~1.0.1"},"devDependencies":{"temporary":"~0.0.4","grunt-contrib-jshint":"~0.1.0","grunt-contrib-nodeunit":"~0.1.0","grunt-contrib-watch":"~0.1.0","grunt-cli":"~0.1.2"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"8d6cc1a2ad50345fae3fa8af82892f8095ded5de","tarball":"https://registry.npmjs.org/grunt/-/grunt-0.4.0rc1.tgz"},"engines":{"node":">= 0.8.0"}},"0.4.0-rc2":{"name":"grunt","version":"0.4.0-rc2","dependencies":{"async":"~0.1.22","coffee-script":"~1.3.3","colors":"~0.6.0-1","dateformat":"1.0.2-1.2.3","eventemitter2":"~0.4.9","glob":"~3.1.13","hooker":"~0.2.3","iconv-lite":"~0.2.5","minimatch":"~0.2.6","nopt":"~1.0.10","rimraf":"~2.0.2","lodash":"~0.9.0","underscore.string":"~2.2.0rc","which":"~1.0.5","js-yaml":"~1.0.1"},"devDependencies":{"temporary":"~0.0.4","grunt-contrib-jshint":"~0.1.0","grunt-contrib-nodeunit":"~0.1.0","grunt-contrib-watch":"~0.1.0","grunt-cli":"~0.1.2"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"6400435bf95ff4601ae748a006242e14b5a6a38c","tarball":"https://registry.npmjs.org/grunt/-/grunt-0.4.0rc2.tgz"},"engines":{"node":">= 0.8.0"}},"0.4.0-rc3":{"name":"grunt","version":"0.4.0-rc3","dependencies":{"async":"~0.1.22","coffee-script":"~1.3.3","colors":"~0.6.0-1","dateformat":"1.0.2-1.2.3","eventemitter2":"~0.4.9","findup-sync":"~0.1.0","glob":"~3.1.13","hooker":"~0.2.3","iconv-lite":"~0.2.5","minimatch":"~0.2.6","nopt":"~1.0.10","rimraf":"~2.0.2","lodash":"~0.9.0","underscore.string":"~2.2.0rc","which":"~1.0.5","js-yaml":"~1.0.1"},"devDependencies":{"temporary":"~0.0.4","grunt-contrib-jshint":"~0.1.0","grunt-contrib-nodeunit":"~0.1.0","grunt-contrib-watch":"~0.1.4","grunt-cli":"~0.1.2"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"4ab41d6240f4050c7da688060e392f985e010939","tarball":"https://registry.npmjs.org/grunt/-/grunt-0.4.0rc3.tgz"},"engines":{"node":">= 0.8.0"}},"0.4.0-rc4":{"name":"grunt","version":"0.4.0-rc4","dependencies":{"async":"~0.1.22","coffee-script":"~1.3.3","colors":"~0.6.0-1","dateformat":"1.0.2-1.2.3","eventemitter2":"~0.4.9","findup-sync":"~0.1.0","glob":"~3.1.13","hooker":"~0.2.3","iconv-lite":"~0.2.5","minimatch":"~0.2.6","nopt":"~1.0.10","rimraf":"~2.0.2","lodash":"~0.9.0","underscore.string":"~2.2.0rc","which":"~1.0.5","js-yaml":"~1.0.1"},"devDependencies":{"temporary":"~0.0.4","grunt-contrib-jshint":"~0.1.0","grunt-contrib-nodeunit":"~0.1.0","grunt-contrib-watch":"~0.1.4"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"a93d699d262981185319d86704820e36db222348","tarball":"https://registry.npmjs.org/grunt/-/grunt-0.4.0rc4.tgz"},"engines":{"node":">= 0.8.0"}},"0.4.0-rc5":{"name":"grunt","version":"0.4.0-rc5","dependencies":{"async":"~0.1.22","coffee-script":"~1.3.3","colors":"~0.6.0-1","dateformat":"1.0.2-1.2.3","eventemitter2":"~0.4.9","findup-sync":"~0.1.0","glob":"~3.1.13","hooker":"~0.2.3","iconv-lite":"~0.2.5","minimatch":"~0.2.6","nopt":"~1.0.10","rimraf":"~2.0.2","lodash":"~0.9.0","underscore.string":"~2.2.0rc","which":"~1.0.5","js-yaml":"~1.0.1"},"devDependencies":{"temporary":"~0.0.4","grunt-contrib-jshint":"~0.1.1rc5","grunt-contrib-nodeunit":"~0.1.2rc5","grunt-contrib-watch":"~0.2.0a","difflet":"~0.2.3"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"b70b6e83f7f4b11892976793d1d697dcd0875940","tarball":"https://registry.npmjs.org/grunt/-/grunt-0.4.0rc5.tgz"},"engines":{"node":">= 0.8.0"}},"0.4.0-rc6":{"name":"grunt","version":"0.4.0-rc6","dependencies":{"async":"~0.1.22","coffee-script":"~1.3.3","colors":"~0.6.0-1","dateformat":"1.0.2-1.2.3","eventemitter2":"~0.4.9","findup-sync":"~0.1.0","glob":"~3.1.13","hooker":"~0.2.3","iconv-lite":"~0.2.5","minimatch":"~0.2.6","nopt":"~1.0.10","rimraf":"~2.0.2","lodash":"~0.9.0","underscore.string":"~2.2.0rc","which":"~1.0.5","js-yaml":"~1.0.1"},"devDependencies":{"temporary":"~0.0.4","grunt-contrib-jshint":"0.1.1rc6","grunt-contrib-nodeunit":"0.1.2rc6","grunt-contrib-watch":"0.2.0rc5","difflet":"~0.2.3"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"a276aa8e7dfc3703af951c41e55976ca2cbf16e6","tarball":"https://registry.npmjs.org/grunt/-/grunt-0.4.0rc6.tgz"},"engines":{"node":">= 0.8.0"}},"0.4.0-rc7":{"name":"grunt","version":"0.4.0-rc7","dependencies":{"async":"~0.1.22","coffee-script":"~1.3.3","colors":"~0.6.0-1","dateformat":"1.0.2-1.2.3","eventemitter2":"~0.4.9","findup-sync":"~0.1.0","glob":"~3.1.13","hooker":"~0.2.3","iconv-lite":"~0.2.5","minimatch":"~0.2.6","nopt":"~1.0.10","rimraf":"~2.0.2","lodash":"~0.9.0","underscore.string":"~2.2.0rc","which":"~1.0.5","js-yaml":"~1.0.1"},"devDependencies":{"temporary":"~0.0.4","grunt-contrib-jshint":"0.1.1rc6","grunt-contrib-nodeunit":"0.1.2rc6","grunt-contrib-watch":"0.2.0rc5","difflet":"~0.2.3"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"8db0d57cdb44043a3943ce6e7364379df57b913e","tarball":"https://registry.npmjs.org/grunt/-/grunt-0.4.0rc7.tgz"},"engines":{"node":">= 0.8.0"}},"0.4.0-rc8":{"name":"grunt","version":"0.4.0-rc8","dependencies":{"async":"~0.1.22","coffee-script":"~1.3.3","colors":"~0.6.0-1","dateformat":"1.0.2-1.2.3","eventemitter2":"~0.4.9","findup-sync":"~0.1.0","glob":"~3.1.17","hooker":"~0.2.3","iconv-lite":"~0.2.5","minimatch":"~0.2.6","nopt":"~1.0.10","rimraf":"~2.0.2","lodash":"~0.9.0","underscore.string":"~2.2.0rc","which":"~1.0.5","js-yaml":"~1.0.1"},"devDependencies":{"temporary":"~0.0.4","grunt-contrib-jshint":"0.1.1rc6","grunt-contrib-nodeunit":"0.1.2rc6","grunt-contrib-watch":"0.2.0rc5","difflet":"~0.2.3"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"2fafeb3a8dc146ba37430063c346c03b5682efea","tarball":"https://registry.npmjs.org/grunt/-/grunt-0.4.0rc8.tgz"},"engines":{"node":">= 0.8.0"}},"1.0.2":{"name":"grunt","version":"1.0.2","dependencies":{"coffeescript":"~1.10.0","dateformat":"~1.0.12","eventemitter2":"~0.4.13","exit":"~0.1.1","findup-sync":"~0.3.0","glob":"~7.0.0","grunt-cli":"~1.2.0","grunt-known-options":"~1.1.0","grunt-legacy-log":"~1.0.0","grunt-legacy-util":"~1.0.0","iconv-lite":"~0.4.13","js-yaml":"~3.5.2","minimatch":"~3.0.2","nopt":"~3.0.6","path-is-absolute":"~1.0.0","rimraf":"~2.2.8"},"devDependencies":{"difflet":"~1.0.1","eslint-config-grunt":"~1.0.1","grunt-contrib-nodeunit":"~1.0.0","grunt-contrib-watch":"~1.0.0","grunt-eslint":"~18.1.0","semver":"5.3.0","shelljs":"~0.7.8","temporary":"~0.0.4","through2":"~2.0.0"},"bin":{"grunt":"bin/grunt"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"4e6a5e695b70472fd5304f5fa9e34236836a73bc","tarball":"https://registry.npmjs.org/grunt/-/grunt-1.0.2.tgz","fileCount":16,"unpackedSize":73093},"engines":{"node":">=0.10.0"}},"1.0.3":{"name":"grunt","version":"1.0.3","dependencies":{"coffeescript":"~1.10.0","dateformat":"~1.0.12","eventemitter2":"~0.4.13","exit":"~0.1.1","findup-sync":"~0.3.0","glob":"~7.0.0","grunt-cli":"~1.2.0","grunt-known-options":"~1.1.0","grunt-legacy-log":"~2.0.0","grunt-legacy-util":"~1.1.1","iconv-lite":"~0.4.13","js-yaml":"~3.5.2","minimatch":"~3.0.2","mkdirp":"~0.5.1","nopt":"~3.0.6","path-is-absolute":"~1.0.0","rimraf":"~2.6.2"},"devDependencies":{"difflet":"~1.0.1","eslint-config-grunt":"~1.0.1","grunt-contrib-nodeunit":"~2.0.0","grunt-contrib-watch":"~1.1.0","grunt-eslint":"~18.1.0","temporary":"~0.0.4","through2":"~2.0.0"},"bin":{"grunt":"bin/grunt"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-/JzmZNPfKorlCrrmxWqQO4JVodO+DVd5XX4DkocL/1WlLlKVLE9+SdEIempOAxDhWPysLle6afvn/hg7Ck2k9g==","shasum":"b3c99260c51d1b42835766e796527b60f7bba374","tarball":"https://registry.npmjs.org/grunt/-/grunt-1.0.3.tgz","fileCount":16,"unpackedSize":72956,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbFIboCRA9TVsSAnZWagAAnpUQAJmjF0ll6op/q29MheG6\n/f1JZyDoCwjnMgwIIEoS/sFQ5p4Qo20S7SP6ocKaAlpvBQcohZ1OTbUsK+jU\nKbGxD0UxpqA40y8KQxC2STx8qcJ4BZGZRXmIeTXgkxHoeqXyCgy7Y9JvZyt3\nSo86rLbU9VovDBfoFbNGV3Ca/1WLMsQ4kNAYf2fK5/ZUCGDvPfm1jkzGwuL7\nI5J8u2IWjiyxuCxCFgO0gTglftoCNRGueeYUpsItDdD+tH37s+c0wDB8IMwF\nmaW47ArP/qNEzy+0RsspWwq5GTym6ot8ZeCtp1Vb4JHRuP7QIYYwVsXHdwLj\nUd+zjF9rRhWT1xg+4z8jHc4UbGBeBuUqap1X1rcBlCXH6CRSnkNPYVQXzqjw\n2aOfI9YKQDSmKOT48JEZdif978h3tbCOBFrd5dbF7ycjErta6DBXOgdyR6tR\nBCAJTLEa/ABGyH6QVs7pevpq5RnHZZAK9iUjR4G+5iTllk2et/jHoVxn99Qi\nWDmzGphUaZOmMmSypttHgN0dEJC45/LmrnTGJqJrKIkg4p7pRb9dc6rLPEyX\nmdnNeEwW2XDKmP4ivCkFop9lMaxVOkl9ivHyFj9O1JqAloc9bYs/km9FL+sh\nGOaKzW3jBFMzN/q0oT2i79Z3lWxgmuDsDNvyUVMy/PUAyT6+vTepFjaF5zYx\na/A0\r\n=PLkW\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=0.10.0"}}},"name":"grunt","dist-tags":{"latest":"1.0.3","03-devel":"0.3.13-a","devel":"0.4.0-rc2","master":"0.4.0-rc8","rc1":"1.0.0-rc1"},"modified":"2018-08-06T14:29:42.559Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/71/02/a1f22828e5052167b960dfc0d8580c4cbe3480286d00f3019256298fd3b4885042b650ef9aad244a6d1656b5e94cb4de55d07930879af23ada3f4ac85822 b/npm/.npm/_cacache/content-v2/sha512/71/02/a1f22828e5052167b960dfc0d8580c4cbe3480286d00f3019256298fd3b4885042b650ef9aad244a6d1656b5e94cb4de55d07930879af23ada3f4ac85822 new file mode 100644 index 0000000..2b06820 Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha512/71/02/a1f22828e5052167b960dfc0d8580c4cbe3480286d00f3019256298fd3b4885042b650ef9aad244a6d1656b5e94cb4de55d07930879af23ada3f4ac85822 differ diff --git a/npm/.npm/_cacache/content-v2/sha512/73/0e/e02cac252e1ae122e538553343c5a7c5e69d5184286abbcd642b56de22d24a324c183064a4f2c4be7d9d7793355260bca9abe317966698995d226048b0fe b/npm/.npm/_cacache/content-v2/sha512/73/0e/e02cac252e1ae122e538553343c5a7c5e69d5184286abbcd642b56de22d24a324c183064a4f2c4be7d9d7793355260bca9abe317966698995d226048b0fe new file mode 100644 index 0000000..c0e6c99 --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/73/0e/e02cac252e1ae122e538553343c5a7c5e69d5184286abbcd642b56de22d24a324c183064a4f2c4be7d9d7793355260bca9abe317966698995d226048b0fe @@ -0,0 +1 @@ +{"versions":{"1.0.0":{"name":"inflight","version":"1.0.0","dependencies":{"once":"^1.3.0"},"devDependencies":{"tap":"^0.4.10"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"002f6df5129a7f4bf3e1b471bec5334804a2dd99","tarball":"https://registry.npmjs.org/inflight/-/inflight-1.0.0.tgz"}},"1.0.1":{"name":"inflight","version":"1.0.1","dependencies":{"once":"^1.3.0"},"devDependencies":{"tap":"^0.4.10"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"01f6911821535243c790ac0f998f54e9023ffb6f","tarball":"https://registry.npmjs.org/inflight/-/inflight-1.0.1.tgz"}},"1.0.2":{"name":"inflight","version":"1.0.2","dependencies":{"once":"^1.3.0","wrappy":"1"},"devDependencies":{"tap":"^0.4.10"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"6d1d147db188760100f13e670ca0dfbd2b63d169","tarball":"https://registry.npmjs.org/inflight/-/inflight-1.0.2.tgz"}},"1.0.3":{"name":"inflight","version":"1.0.3","dependencies":{"once":"^1.3.0","wrappy":"1"},"devDependencies":{"tap":"^0.4.10"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"70374be8ef3316248f37fa81276b6b329b95ff49","tarball":"https://registry.npmjs.org/inflight/-/inflight-1.0.3.tgz"}},"1.0.4":{"name":"inflight","version":"1.0.4","dependencies":{"once":"^1.3.0","wrappy":"1"},"devDependencies":{"tap":"^0.4.10"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"6cbb4521ebd51ce0ec0a936bfd7657ef7e9b172a","tarball":"https://registry.npmjs.org/inflight/-/inflight-1.0.4.tgz"}},"1.0.5":{"name":"inflight","version":"1.0.5","dependencies":{"once":"^1.3.0","wrappy":"1"},"devDependencies":{"tap":"^1.2.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"db3204cd5a9de2e6cd890b85c6e2f66bcf4f620a","tarball":"https://registry.npmjs.org/inflight/-/inflight-1.0.5.tgz"}},"1.0.6":{"name":"inflight","version":"1.0.6","dependencies":{"once":"^1.3.0","wrappy":"1"},"devDependencies":{"tap":"^7.1.2"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"49bd6331d7d02d0c09bc910a1075ba8165b56df9","tarball":"https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz"}}},"name":"inflight","dist-tags":{"latest":"1.0.6"},"modified":"2017-10-13T22:50:17.860Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/7f/69/b4e6a6e4228bbac25f51130cdad6be7519338ae06f1b688d2159084e300af3c3cd71fba4271f4e6fd93a122597c34fe5eb17b0ecf14c53c1ad4081cac60a b/npm/.npm/_cacache/content-v2/sha512/7f/69/b4e6a6e4228bbac25f51130cdad6be7519338ae06f1b688d2159084e300af3c3cd71fba4271f4e6fd93a122597c34fe5eb17b0ecf14c53c1ad4081cac60a new file mode 100644 index 0000000..c30f934 --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/7f/69/b4e6a6e4228bbac25f51130cdad6be7519338ae06f1b688d2159084e300af3c3cd71fba4271f4e6fd93a122597c34fe5eb17b0ecf14c53c1ad4081cac60a @@ -0,0 +1 @@ +{"versions":{"0.1.0":{"name":"error-ex","version":"0.1.0","devDependencies":{"coffee-script":"^1.9.3","coveralls":"^2.11.2","istanbul":"^0.3.17","mocha":"^2.2.5","should":"^7.0.1","xo":"^0.6.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"3cd01058eee2db17bbe0e2ef2e2a463a1eb62fb5","tarball":"https://registry.npmjs.org/error-ex/-/error-ex-0.1.0.tgz"}},"0.2.0":{"name":"error-ex","version":"0.2.0","devDependencies":{"coffee-script":"^1.9.3","coveralls":"^2.11.2","istanbul":"^0.3.17","mocha":"^2.2.5","should":"^7.0.1","xo":"^0.6.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"2264df750573399c5e0206a191fc91fa44f7059c","tarball":"https://registry.npmjs.org/error-ex/-/error-ex-0.2.0.tgz"}},"0.2.1":{"name":"error-ex","version":"0.2.1","devDependencies":{"coffee-script":"^1.9.3","coveralls":"^2.11.2","istanbul":"^0.3.17","mocha":"^2.2.5","should":"^7.0.1","xo":"^0.6.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"56f2b5d07fc98f165a98caddd5e9ea9ffa66e66d","tarball":"https://registry.npmjs.org/error-ex/-/error-ex-0.2.1.tgz"}},"0.2.2":{"name":"error-ex","version":"0.2.2","devDependencies":{"coffee-script":"^1.9.3","coveralls":"^2.11.2","istanbul":"^0.3.17","mocha":"^2.2.5","should":"^7.0.1","xo":"^0.6.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"6b46fd5d5ae9e2378290f1dfd6fbc630690240e9","tarball":"https://registry.npmjs.org/error-ex/-/error-ex-0.2.2.tgz"}},"0.2.3":{"name":"error-ex","version":"0.2.3","devDependencies":{"coffee-script":"^1.9.3","coveralls":"^2.11.2","istanbul":"^0.3.17","mocha":"^2.2.5","should":"^7.0.1","xo":"^0.6.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"f07f1a6ffc0b8fc099bd576e95e01b5b04c9d755","tarball":"https://registry.npmjs.org/error-ex/-/error-ex-0.2.3.tgz"}},"0.2.4":{"name":"error-ex","version":"0.2.4","devDependencies":{"coffee-script":"^1.9.3","coveralls":"^2.11.2","istanbul":"^0.3.17","mocha":"^2.2.5","should":"^7.0.1","xo":"^0.6.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"558284d2e421e0865e70530037816872dd713803","tarball":"https://registry.npmjs.org/error-ex/-/error-ex-0.2.4.tgz"}},"0.3.0":{"name":"error-ex","version":"0.3.0","devDependencies":{"coffee-script":"^1.9.3","coveralls":"^2.11.2","istanbul":"^0.3.17","mocha":"^2.2.5","should":"^7.0.1","xo":"^0.6.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"1c84bf75503529d57d4eff6b7698754d648378f5","tarball":"https://registry.npmjs.org/error-ex/-/error-ex-0.3.0.tgz"}},"0.3.1":{"name":"error-ex","version":"0.3.1","devDependencies":{"coffee-script":"^1.9.3","coveralls":"^2.11.2","istanbul":"^0.3.17","mocha":"^2.2.5","should":"^7.0.1","xo":"^0.6.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"44d05d1815a8c98d72973463fffea92779639ea8","tarball":"https://registry.npmjs.org/error-ex/-/error-ex-0.3.1.tgz"}},"1.0.0":{"name":"error-ex","version":"1.0.0","devDependencies":{"coffee-script":"^1.9.3","coveralls":"^2.11.2","istanbul":"^0.3.17","mocha":"^2.2.5","should":"^7.0.1","xo":"^0.6.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"5c533dc618311a1ba6a455eb2fcc201c01441b19","tarball":"https://registry.npmjs.org/error-ex/-/error-ex-1.0.0.tgz"}},"1.1.0":{"name":"error-ex","version":"1.1.0","devDependencies":{"coffee-script":"^1.9.3","coveralls":"^2.11.2","istanbul":"^0.3.17","mocha":"^2.2.5","should":"^7.0.1","xo":"^0.6.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"fd5692de4416e56ca6f457ad984adab91ecffd18","tarball":"https://registry.npmjs.org/error-ex/-/error-ex-1.1.0.tgz"}},"1.1.1":{"name":"error-ex","version":"1.1.1","devDependencies":{"coffee-script":"^1.9.3","coveralls":"^2.11.2","istanbul":"^0.3.17","mocha":"^2.2.5","should":"^7.0.1","xo":"^0.7.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"276207351e7c722dc8e8a78e63ecb9725bf41a31","tarball":"https://registry.npmjs.org/error-ex/-/error-ex-1.1.1.tgz"}},"1.1.2":{"name":"error-ex","version":"1.1.2","devDependencies":{"coffee-script":"^1.9.3","coveralls":"^2.11.2","istanbul":"^0.3.17","mocha":"^2.2.5","should":"^7.0.1","xo":"^0.7.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"10e285269d885290bcf1451ffc99fb5e1820f800","tarball":"https://registry.npmjs.org/error-ex/-/error-ex-1.1.2.tgz"}},"1.2.0":{"name":"error-ex","version":"1.2.0","devDependencies":{"coffee-script":"^1.9.3","coveralls":"^2.11.2","istanbul":"^0.3.17","mocha":"^2.2.5","should":"^7.0.1","xo":"^0.7.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"95d5183be6047a32a9755639662d2b737b22a76a","tarball":"https://registry.npmjs.org/error-ex/-/error-ex-1.2.0.tgz"}},"1.3.0":{"name":"error-ex","version":"1.3.0","dependencies":{"is-arrayish":"^0.2.1"},"devDependencies":{"coffee-script":"^1.9.3","coveralls":"^2.11.2","istanbul":"^0.3.17","mocha":"^2.2.5","should":"^7.0.1","xo":"^0.7.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"e67b43f3e82c96ea3a584ffee0b9fc3325d802d9","tarball":"https://registry.npmjs.org/error-ex/-/error-ex-1.3.0.tgz"}},"1.3.1":{"name":"error-ex","version":"1.3.1","dependencies":{"is-arrayish":"^0.2.1"},"devDependencies":{"coffee-script":"^1.9.3","coveralls":"^2.11.2","istanbul":"^0.3.17","mocha":"^2.2.5","should":"^7.0.1","xo":"^0.7.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"f855a86ce61adc4e8621c3cda21e7a7612c3a8dc","tarball":"https://registry.npmjs.org/error-ex/-/error-ex-1.3.1.tgz"}},"1.3.2":{"name":"error-ex","version":"1.3.2","dependencies":{"is-arrayish":"^0.2.1"},"devDependencies":{"coffee-script":"^1.9.3","coveralls":"^2.11.2","istanbul":"^0.3.17","mocha":"^2.2.5","should":"^7.0.1","xo":"^0.7.1"},"directories":{},"dist":{"integrity":"sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==","shasum":"b4ac40648107fdcdcfae242f428bea8a14d4f1bf","tarball":"https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz","fileCount":4,"unpackedSize":9035,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbKKCxCRA9TVsSAnZWagAAsHEQAIvbbbWIpgSZwIuLnHnr\ndOkXe8Hx2ci6E0Pf/VNyt9r6ze2UeGaT5Vo8D2Uaf7BWJgDxNi5nlm+yKOdj\nuppa3VdfXz4/nTw2QJ7gtLInga3RcTbZ8MrCbS2SBdzmhWnYw0kRj5drDM53\nIibS6Hgy4N7Vay8s92LuIH4Ut3cRvAtYb2pvLbX5LB0zCBvLZDyvpRnBXRwa\nywvv6VPzNB6YwKEblXaKFxkDsVZOs8wTLbSrjLrGdiU0+yPwZXeOWgWLHIjW\nUa2+yccy5knag26NXDTp/h6KpQfzM6y39JDrtuekONmDcBrtvoKY16vNn8j6\n4pCEVTLh60VH8J693EzdWtYARWlGe0n9Q5efq0w5x3zda/OtuypZXcKDGH+v\n6fy2ws8Dl3uD24UNfyzpftOpwgPxynr5JxIwwqDS+NfLnvkDUXq+rT2bEguy\nFL/iaxxLHjqgOPi1k9QSRDEWIutZ6CbwsJ4Yk4B8rZDeW5C1oVP/ahZ8HO7H\nJ+fjhqfGXmvesfoQ+k/bRnKB2ZFi6EDv4P/Cg+sinCsvyl44rqWrXucckq69\ndGCtwXikn8toh/0o9c9NHVpH76lgpWyjCmP1L9ITUZHzQ9FZwI0QL6+apXGg\noR5Cr62kLhLBBoN33S+I7p9YUceQxgQBPwoXCWnhn9u0HRV8i2yz47hfJoYV\nMeuh\r\n=jN/Y\r\n-----END PGP SIGNATURE-----\r\n"}}},"name":"error-ex","dist-tags":{"latest":"1.3.2"},"modified":"2018-06-19T06:20:35.948Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/83/e7/699a09fe5c19de2e65d7a3eb06956e71404b7812b912de681e3761856eb7a661e3014892abf567f6289a654156a23d8fdfec537a6ada2c598366f68beb62 b/npm/.npm/_cacache/content-v2/sha512/83/e7/699a09fe5c19de2e65d7a3eb06956e71404b7812b912de681e3761856eb7a661e3014892abf567f6289a654156a23d8fdfec537a6ada2c598366f68beb62 new file mode 100644 index 0000000..a06d97e Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha512/83/e7/699a09fe5c19de2e65d7a3eb06956e71404b7812b912de681e3761856eb7a661e3014892abf567f6289a654156a23d8fdfec537a6ada2c598366f68beb62 differ diff --git a/npm/.npm/_cacache/content-v2/sha512/84/c8/4dfb1be35718b331da110ea8dd4467cbf9487f10f95d5dd5bff09357d3d61cac7e393686c8ad2ff930c741af3749054ddb5d70c961b88a8aba9b9a49b884 b/npm/.npm/_cacache/content-v2/sha512/84/c8/4dfb1be35718b331da110ea8dd4467cbf9487f10f95d5dd5bff09357d3d61cac7e393686c8ad2ff930c741af3749054ddb5d70c961b88a8aba9b9a49b884 new file mode 100644 index 0000000..236061a --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/84/c8/4dfb1be35718b331da110ea8dd4467cbf9487f10f95d5dd5bff09357d3d61cac7e393686c8ad2ff930c741af3749054ddb5d70c961b88a8aba9b9a49b884 @@ -0,0 +1 @@ +{"versions":{"0.1.0":{"name":"chalk","version":"0.1.0","dependencies":{"has-color":"~0.1.0","ansi-styles":"~0.1.0"},"devDependencies":{"mocha":"~1.12.0"},"directories":{},"dist":{"shasum":"69afbee2ffab5e0db239450767a6125cbea50fa2","tarball":"http://registry.npmjs.org/chalk/-/chalk-0.1.0.tgz"},"engines":{"node":">=0.8.0"}},"0.1.1":{"name":"chalk","version":"0.1.1","dependencies":{"has-color":"~0.1.0","ansi-styles":"~0.1.0"},"devDependencies":{"mocha":"~1.12.0"},"directories":{},"dist":{"shasum":"fe6d90ae2c270424720c87ed92d36490b7d36ea0","tarball":"http://registry.npmjs.org/chalk/-/chalk-0.1.1.tgz"},"engines":{"node":">=0.8.0"}},"0.2.0":{"name":"chalk","version":"0.2.0","dependencies":{"has-color":"~0.1.0","ansi-styles":"~0.2.0"},"devDependencies":{"mocha":"~1.12.0"},"directories":{},"dist":{"shasum":"47270e80edce0e219911af65479d17db525ff5db","tarball":"http://registry.npmjs.org/chalk/-/chalk-0.2.0.tgz"},"engines":{"node":">=0.8.0"}},"0.2.1":{"name":"chalk","version":"0.2.1","dependencies":{"has-color":"~0.1.0","ansi-styles":"~0.2.0"},"devDependencies":{"mocha":"~1.12.0"},"directories":{},"dist":{"shasum":"7613e1575145b21386483f7f485aa5ffa8cbd10c","tarball":"http://registry.npmjs.org/chalk/-/chalk-0.2.1.tgz"},"engines":{"node":">=0.8.0"}},"0.3.0":{"name":"chalk","version":"0.3.0","dependencies":{"has-color":"~0.1.0","ansi-styles":"~0.2.0"},"devDependencies":{"mocha":"~1.12.0"},"directories":{},"dist":{"shasum":"1c98437737f1199ebcc1d4c48fd41b9f9c8e8f23","tarball":"http://registry.npmjs.org/chalk/-/chalk-0.3.0.tgz"},"engines":{"node":">=0.8.0"}},"0.4.0":{"name":"chalk","version":"0.4.0","dependencies":{"has-color":"~0.1.0","ansi-styles":"~1.0.0","strip-ansi":"~0.1.0"},"devDependencies":{"mocha":"~1.x"},"directories":{},"dist":{"shasum":"5199a3ddcd0c1efe23bc08c1b027b06176e0c64f","tarball":"http://registry.npmjs.org/chalk/-/chalk-0.4.0.tgz"},"engines":{"node":">=0.8.0"}},"0.5.0":{"name":"chalk","version":"0.5.0","dependencies":{"ansi-styles":"^1.1.0","escape-string-regexp":"^1.0.0","has-ansi":"^0.1.0","strip-ansi":"^0.3.0","supports-color":"^0.2.0"},"devDependencies":{"matcha":"^0.5.0","mocha":"*"},"directories":{},"dist":{"shasum":"375dfccbc21c0a60a8b61bc5b78f3dc2a55c212f","tarball":"http://registry.npmjs.org/chalk/-/chalk-0.5.0.tgz"},"engines":{"node":">=0.10.0"}},"0.5.1":{"name":"chalk","version":"0.5.1","dependencies":{"ansi-styles":"^1.1.0","escape-string-regexp":"^1.0.0","has-ansi":"^0.1.0","strip-ansi":"^0.3.0","supports-color":"^0.2.0"},"devDependencies":{"matcha":"^0.5.0","mocha":"*"},"directories":{},"dist":{"shasum":"663b3a648b68b55d04690d49167aa837858f2174","tarball":"http://registry.npmjs.org/chalk/-/chalk-0.5.1.tgz"},"engines":{"node":">=0.10.0"}},"1.0.0":{"name":"chalk","version":"1.0.0","dependencies":{"ansi-styles":"^2.0.1","escape-string-regexp":"^1.0.2","has-ansi":"^1.0.3","strip-ansi":"^2.0.1","supports-color":"^1.3.0"},"devDependencies":{"matcha":"^0.6.0","mocha":"*"},"directories":{},"dist":{"shasum":"b3cf4ed0ff5397c99c75b8f679db2f52831f96dc","tarball":"http://registry.npmjs.org/chalk/-/chalk-1.0.0.tgz"},"engines":{"node":">=0.10.0"}},"1.1.0":{"name":"chalk","version":"1.1.0","dependencies":{"ansi-styles":"^2.1.0","escape-string-regexp":"^1.0.2","has-ansi":"^2.0.0","strip-ansi":"^3.0.0","supports-color":"^2.0.0"},"devDependencies":{"coveralls":"^2.11.2","matcha":"^0.6.0","mocha":"*","nyc":"^3.0.0","require-uncached":"^1.0.2","resolve-from":"^1.0.0","semver":"^4.3.3"},"directories":{},"dist":{"shasum":"09b453cec497a75520e4a60ae48214a8700e0921","tarball":"http://registry.npmjs.org/chalk/-/chalk-1.1.0.tgz"},"engines":{"node":">=0.10.0"}},"1.1.1":{"name":"chalk","version":"1.1.1","dependencies":{"ansi-styles":"^2.1.0","escape-string-regexp":"^1.0.2","has-ansi":"^2.0.0","strip-ansi":"^3.0.0","supports-color":"^2.0.0"},"devDependencies":{"coveralls":"^2.11.2","matcha":"^0.6.0","mocha":"*","nyc":"^3.0.0","require-uncached":"^1.0.2","resolve-from":"^1.0.0","semver":"^4.3.3","xo":"*"},"directories":{},"dist":{"shasum":"509afb67066e7499f7eb3535c77445772ae2d019","tarball":"http://registry.npmjs.org/chalk/-/chalk-1.1.1.tgz"},"engines":{"node":">=0.10.0"}},"1.1.2":{"name":"chalk","version":"1.1.2","dependencies":{"ansi-styles":"^2.2.1","escape-string-regexp":"^1.0.2","supports-color":"^3.1.2"},"devDependencies":{"coveralls":"^2.11.2","matcha":"^0.6.0","mocha":"*","nyc":"^5.2.0","require-uncached":"^1.0.2","resolve-from":"^2.0.0","semver":"^5.1.0","xo":"*"},"directories":{},"dist":{"shasum":"53e9f9e7742f7edf23065c29c0219175a7869155","tarball":"http://registry.npmjs.org/chalk/-/chalk-1.1.2.tgz"},"engines":{"node":">=0.10.0"},"deprecated":"chalk@1.1.2 introduces breaking changes. Please use 1.1.3 or above."},"1.1.3":{"name":"chalk","version":"1.1.3","dependencies":{"ansi-styles":"^2.2.1","escape-string-regexp":"^1.0.2","has-ansi":"^2.0.0","strip-ansi":"^3.0.0","supports-color":"^2.0.0"},"devDependencies":{"coveralls":"^2.11.2","matcha":"^0.6.0","mocha":"*","nyc":"^3.0.0","require-uncached":"^1.0.2","resolve-from":"^1.0.0","semver":"^4.3.3","xo":"*"},"directories":{},"dist":{"shasum":"a8115c55e4a702fe4d150abd3872822a7e09fc98","tarball":"http://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz"},"engines":{"node":">=0.10.0"}},"2.0.0":{"name":"chalk","version":"2.0.0","dependencies":{"ansi-styles":"^3.1.0","escape-string-regexp":"^1.0.5","supports-color":"^4.0.0"},"devDependencies":{"coveralls":"^2.11.2","import-fresh":"^2.0.0","matcha":"^0.7.0","mocha":"*","nyc":"^11.0.2","resolve-from":"^3.0.0","xo":"*"},"directories":{},"dist":{"integrity":"sha512-7jy/5E6bVCRhLlvznnsbVPjsARuVC9HDkBjUKVaOmUrhsp6P3ExUUcW09htM7/qieRH+D2lHVpNbuYh7GjVJ0g==","shasum":"c25c5b823fedff921aa5d83da3ecb5392e84e533","tarball":"https://registry.npmjs.org/chalk/-/chalk-2.0.0.tgz"},"engines":{"node":">=4"}},"2.0.1":{"name":"chalk","version":"2.0.1","dependencies":{"ansi-styles":"^3.1.0","escape-string-regexp":"^1.0.5","supports-color":"^4.0.0"},"devDependencies":{"coveralls":"^2.11.2","import-fresh":"^2.0.0","matcha":"^0.7.0","mocha":"*","nyc":"^11.0.2","resolve-from":"^3.0.0","xo":"*"},"directories":{},"dist":{"integrity":"sha512-Mp+FXEI+FrwY/XYV45b2YD3E8i3HwnEAoFcM0qlZzq/RZ9RwWitt2Y/c7cqRAz70U7hfekqx6qNYthuKFO6K0g==","shasum":"dbec49436d2ae15f536114e76d14656cdbc0f44d","tarball":"https://registry.npmjs.org/chalk/-/chalk-2.0.1.tgz"},"engines":{"node":">=4"},"deprecated":"Please upgrade to Chalk 2.1.0 - template literals in this version (2.0.1) are quite buggy."},"2.1.0":{"name":"chalk","version":"2.1.0","dependencies":{"ansi-styles":"^3.1.0","escape-string-regexp":"^1.0.5","supports-color":"^4.0.0"},"devDependencies":{"ava":"*","coveralls":"^2.11.2","execa":"^0.7.0","import-fresh":"^2.0.0","matcha":"^0.7.0","nyc":"^11.0.2","resolve-from":"^3.0.0","xo":"*"},"directories":{},"dist":{"integrity":"sha512-LUHGS/dge4ujbXMJrnihYMcL4AoOweGnw9Tp3kQuqy1Kx5c1qKjqvMJZ6nVJPMWJtKCTN72ZogH3oeSO9g9rXQ==","shasum":"ac5becf14fa21b99c6c92ca7a7d7cfd5b17e743e","tarball":"https://registry.npmjs.org/chalk/-/chalk-2.1.0.tgz"},"engines":{"node":">=4"}},"2.2.0":{"name":"chalk","version":"2.2.0","dependencies":{"ansi-styles":"^3.1.0","escape-string-regexp":"^1.0.5","supports-color":"^4.0.0"},"devDependencies":{"ava":"*","coveralls":"^3.0.0","execa":"^0.8.0","import-fresh":"^2.0.0","matcha":"^0.7.0","nyc":"^11.0.2","resolve-from":"^4.0.0","typescript":"^2.5.3","xo":"*"},"directories":{},"dist":{"integrity":"sha512-0BMM/2hG3ZaoPfR6F+h/oWpZtsh3b/s62TjSM6MGCJWEbJDN1acqCXvyhhZsDSVFklpebUoQ5O1kKC7lOzrn9g==","shasum":"477b3bf2f9b8fd5ca9e429747e37f724ee7af240","tarball":"https://registry.npmjs.org/chalk/-/chalk-2.2.0.tgz"},"engines":{"node":">=4"}},"2.2.2":{"name":"chalk","version":"2.2.2","dependencies":{"ansi-styles":"^3.1.0","escape-string-regexp":"^1.0.5","supports-color":"^4.0.0"},"devDependencies":{"ava":"*","coveralls":"^3.0.0","execa":"^0.8.0","import-fresh":"^2.0.0","matcha":"^0.7.0","nyc":"^11.0.2","resolve-from":"^4.0.0","typescript":"^2.5.3","xo":"*"},"directories":{},"dist":{"integrity":"sha512-LvixLAQ4MYhbf7hgL4o5PeK32gJKvVzDRiSNIApDofQvyhl8adgG2lJVXn4+ekQoK7HL9RF8lqxwerpe0x2pCw==","shasum":"4403f5cf18f35c05f51fbdf152bf588f956cf7cb","tarball":"https://registry.npmjs.org/chalk/-/chalk-2.2.2.tgz"},"engines":{"node":">=4"}},"2.3.0":{"name":"chalk","version":"2.3.0","dependencies":{"ansi-styles":"^3.1.0","escape-string-regexp":"^1.0.5","supports-color":"^4.0.0"},"devDependencies":{"ava":"*","coveralls":"^3.0.0","execa":"^0.8.0","import-fresh":"^2.0.0","matcha":"^0.7.0","nyc":"^11.0.2","resolve-from":"^4.0.0","typescript":"^2.5.3","xo":"*"},"directories":{},"dist":{"integrity":"sha512-Az5zJR2CBujap2rqXGaJKaPHyJ0IrUimvYNX+ncCy8PJP4ltOGTrHUIo097ZaL2zMeKYpiCdqDvS6zdrTFok3Q==","shasum":"b5ea48efc9c1793dccc9b4767c93914d3f2d52ba","tarball":"https://registry.npmjs.org/chalk/-/chalk-2.3.0.tgz"},"engines":{"node":">=4"}},"2.3.1":{"name":"chalk","version":"2.3.1","dependencies":{"ansi-styles":"^3.2.0","escape-string-regexp":"^1.0.5","supports-color":"^5.2.0"},"devDependencies":{"ava":"*","coveralls":"^3.0.0","execa":"^0.9.0","import-fresh":"^2.0.0","matcha":"^0.7.0","nyc":"^11.0.2","resolve-from":"^4.0.0","typescript":"^2.5.3","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-QUU4ofkDoMIVO7hcx1iPTISs88wsO8jA92RQIm4JAwZvFGGAV2hSAA1NX7oVj2Ej2Q6NDTcRDjPTFrMCRZoJ6g==","shasum":"523fe2678aec7b04e8041909292fe8b17059b796","tarball":"http://registry.npmjs.org/chalk/-/chalk-2.3.1.tgz","fileCount":6,"unpackedSize":24721},"engines":{"node":">=4"}},"2.3.2":{"name":"chalk","version":"2.3.2","dependencies":{"ansi-styles":"^3.2.1","escape-string-regexp":"^1.0.5","supports-color":"^5.3.0"},"devDependencies":{"ava":"*","coveralls":"^3.0.0","execa":"^0.9.0","import-fresh":"^2.0.0","matcha":"^0.7.0","nyc":"^11.0.2","resolve-from":"^4.0.0","typescript":"^2.5.3","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-ZM4j2/ld/YZDc3Ma8PgN7gyAk+kHMMMyzLNryCPGhWrsfAuDVeuid5bpRFTDgMH9JBK2lA4dyyAkkZYF/WcqDQ==","shasum":"250dc96b07491bfd601e648d66ddf5f60c7a5c65","tarball":"http://registry.npmjs.org/chalk/-/chalk-2.3.2.tgz","fileCount":6,"unpackedSize":24713},"engines":{"node":">=4"}},"2.4.0":{"name":"chalk","version":"2.4.0","dependencies":{"ansi-styles":"^3.2.1","escape-string-regexp":"^1.0.5","supports-color":"^5.3.0"},"devDependencies":{"ava":"*","coveralls":"^3.0.0","execa":"^0.9.0","flow-bin":"^0.68.0","import-fresh":"^2.0.0","matcha":"^0.7.0","nyc":"^11.0.2","resolve-from":"^4.0.0","typescript":"^2.5.3","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-Wr/w0f4o9LuE7K53cD0qmbAMM+2XNLzR29vFn5hqko4sxGlUsyy363NvmyGIyk5tpe9cjTr9SJYbysEyPkRnFw==","shasum":"a060a297a6b57e15b61ca63ce84995daa0fe6e52","tarball":"https://registry.npmjs.org/chalk/-/chalk-2.4.0.tgz","fileCount":7,"unpackedSize":27005,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa1Xf3CRA9TVsSAnZWagAA1DcP/2EhxWse6mGwicTqM2U5\nQl2Xol74cFmd6b4nCGZnGycgatfJtyhb1YoH/vL3uNqGFrQGBwAr4GoZxhGd\n7kL0xKWnfhGHFeUe//fSCklj4Aff700RteXornlDFxbK5jVELyYcXfG5xJ5i\ncAIuPb9YYXltdaSfvVcg49qIPcjRfZm5Wz8WxTaUAyD5Ag4lpWKVTgWZsU+c\nEKRQHu+UmpX2OsudafT6GL3ak7GE2+ysH1b0HcYVuf1Wdf39un+E0MXDs58C\nTLCZSASN99/KCEpjh8aa4YdXVU3x0rdf50KdKDBUMF3b6HnSfWqOS+OWZRFZ\nC0jvk58j4vmXCVb2puQI8HIuZXBlNeS59GaN3hB3rz7JMgrQC/LXycOU1x+5\nuKEKupRkkVsSRyAEUdHqx6dwkcm+TVGPnXjUMdYREL9VkyY9eB7lBYTEzH9I\nZN9H3JXrjo/dGVmFL6q+L7lCxLFsl1p+UCMxubUE9XV6C/QN4mQmiwIAwn04\nhJH1RFIFTHszVEUnAJMZ6SqRRJes5iSedAMyiUYi+1S86uQenyUqtIJbHsNO\n7+G3Jnfdw9e1+YMvk53PSJcdtt5ayOx7ezc0HLS5HD9g3bXhMbbxTupHOSAv\nVCiEoaKAmjJK7nbStTqrX3xjz85K+lNHZdKkIzPWX5TkEg8KMSGK3LxfXG8B\n+CuC\r\n=orOi\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=4"}},"2.4.1":{"name":"chalk","version":"2.4.1","dependencies":{"ansi-styles":"^3.2.1","escape-string-regexp":"^1.0.5","supports-color":"^5.3.0"},"devDependencies":{"ava":"*","coveralls":"^3.0.0","execa":"^0.9.0","flow-bin":"^0.68.0","import-fresh":"^2.0.0","matcha":"^0.7.0","nyc":"^11.0.2","resolve-from":"^4.0.0","typescript":"^2.5.3","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==","shasum":"18c49ab16a037b6eb0152cc83e3471338215b66e","tarball":"https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz","fileCount":7,"unpackedSize":26917,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa4WCICRA9TVsSAnZWagAAhgwP/2M/ItinhR06BFhLMh91\nK/ru5t71NzSzoEvI2nh4W57Wk9cU1NOYi1cI17nUvICHCL4Vq9mjvU0hajTw\ncAYtM0Lwl+G4Hk4JtuiZITYj93QY3yLSJ8zkj95JznFbH0Zd9KkZrkoGukcG\nFY9at0cfNyhBmwi5sEDAFktcw7wThQ6Wy3iIttQ0N1M6Lf1XILg9Xyq6Id/W\nlz3TbkCt6AZCS1icmDPIiLdVQuD9SfpusIDsHm5/6FJPShwmQjUlM6Kdy7lx\n6M8uhcIknpxjfPTA6/aSBC4qgXnDhuPPi9xF657/81Mswz4Tb71KOf6UqLPi\n3zk1D5PF71ujWs3wmPll9TAVGnWuNzE+X/7GVIB4qCrib3SgvRzMhL0Wo95v\nzxTpNoD23hKYwofUyV3cTFh47YwkVoPtOStRAgdE87rx+v3VjbWSThQJc3V8\nHOsIeTjpQMwAr/d2DnasHKlps/q+gnGKqhBhcf11tAKn9C7PsAQ2l6+E4Erc\nfPKqDRC6TVG7ABdwOtyNonHhrJ2JLgYj8d4mHdtsMTtFsUTOQR/+Rx0V8HJS\n9gBLmPr3yc/yEedYW68wP5tPK2SfvFTzgMBw5v0+tgIxOjUunGxDUV4a1Bpp\npCBLN7iS77FLMiMonfcD2z/SsoB+Hb+7q5eT/gua3BIUNNZEdmgw9queXw+q\n7DFE\r\n=LSlF\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=4"}}},"name":"chalk","dist-tags":{"latest":"2.4.1"},"modified":"2018-10-01T09:55:13.163Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/86/88/1ae23ba1acb2fbc2c98cf855d0dfed666d9bc905db8a053d5d69e8bc923b90ef0797fceda17903e90b9e438096cfd0865ccc3c430e4815094a6633b3d1f0 b/npm/.npm/_cacache/content-v2/sha512/86/88/1ae23ba1acb2fbc2c98cf855d0dfed666d9bc905db8a053d5d69e8bc923b90ef0797fceda17903e90b9e438096cfd0865ccc3c430e4815094a6633b3d1f0 new file mode 100644 index 0000000..bfec5f9 --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/86/88/1ae23ba1acb2fbc2c98cf855d0dfed666d9bc905db8a053d5d69e8bc923b90ef0797fceda17903e90b9e438096cfd0865ccc3c430e4815094a6633b3d1f0 @@ -0,0 +1 @@ +{"versions":{"0.1.0":{"name":"grunt-legacy-log-utils","version":"0.1.0","dependencies":{"hooker":"~0.2.3","lodash":"~2.4.1","underscore.string":"~2.3.3","colors":"~0.6.2"},"devDependencies":{"grunt":"0.4.4","grunt-contrib-jshint":"~0.10.0","grunt-contrib-nodeunit":"~0.3.3","grunt-contrib-watch":"~0.6.1","hooker":"~0.2.3"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"46cc140489de4ac8579329c4b974047f773e2b01","tarball":"https://registry.npmjs.org/grunt-legacy-log-utils/-/grunt-legacy-log-utils-0.1.0.tgz"},"engines":{"node":">= 0.8.0"}},"0.1.1":{"name":"grunt-legacy-log-utils","version":"0.1.1","dependencies":{"lodash":"~2.4.1","underscore.string":"~2.3.3","colors":"~0.6.2"},"devDependencies":{"grunt":"0.4.4","grunt-contrib-jshint":"~0.10.0","grunt-contrib-nodeunit":"~0.3.3","grunt-contrib-watch":"~0.6.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"c0706b9dd9064e116f36f23fe4e6b048672c0f7e","tarball":"https://registry.npmjs.org/grunt-legacy-log-utils/-/grunt-legacy-log-utils-0.1.1.tgz"},"engines":{"node":">= 0.8.0"}},"1.0.0":{"name":"grunt-legacy-log-utils","version":"1.0.0","dependencies":{"chalk":"~1.1.1","lodash":"~4.3.0"},"devDependencies":{"grunt":"~0.4.4","grunt-cli":"~0.1.13","grunt-contrib-jshint":"~0.10.0","grunt-contrib-nodeunit":"~0.3.3","grunt-contrib-watch":"~0.6.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"a7b8e2d0fb35b5a50f4af986fc112749ebc96f3d","tarball":"https://registry.npmjs.org/grunt-legacy-log-utils/-/grunt-legacy-log-utils-1.0.0.tgz"},"engines":{"node":">= 0.10.0"}},"2.0.0":{"name":"grunt-legacy-log-utils","version":"2.0.0","dependencies":{"chalk":"~2.4.1","lodash":"~4.17.10"},"devDependencies":{"grunt":"~1.0.2","grunt-cli":"~1.2.0","grunt-contrib-jshint":"~1.1.0","grunt-contrib-nodeunit":"~1.0.0","grunt-contrib-watch":"~1.1.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-n+62D8o0DQq7Dc/nNETzMRNcNmovA6dz+SGeqe8s7F3Qgu5RW1Y+v1rQcRxcD3o9kvHn3qo4s7YIjIeAi0Yrhw==","shasum":"c4f287414ec1a632728af50b63b832fde45b9321","tarball":"https://registry.npmjs.org/grunt-legacy-log-utils/-/grunt-legacy-log-utils-2.0.0.tgz","fileCount":3,"unpackedSize":4807,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa/ZvICRA9TVsSAnZWagAA90oP/0xUhScw4YXol1dmg7rr\nv68YpScf60OgxeRjdR9e2rMnzH04cPflYweO6BuP7HfofKERxuUW6O8OiyNi\nYh68ZSFr4yHARO2+tpcgatWdMEmLOiACKLC6Lw7tdXY9UVT16XWNSEkUaFNW\nPsmjnoz3wHXPxPo+MphhZXqr/R8Qzrgqh6yY6VKKMOmRHPyk8Op/VgZBtuRS\ncLmzcziCzm8b96WaZiMHIdCOTHyeJWEKYuUASASlAdDKIPMkcVd3yJ43Fy5a\nwh0f0YRl8Cc3zhBPT63lfHOXpz5eGQNqKTvn/w+FQk04khLg9QiJ3QMn6tUe\nyLpOuyH9+NaY1xFvB0ZPqAXpoog+Dw/fLsdNCGOp4mELS0Q7KRbnyLkeARV4\nERY1FnDymhWc71RlqcH+qW6WuSH6iOaUIOJT+OWlmgndM9Er6IWitFYbugM4\n1u7MvzGr5aDqhn0A+uQM9mT63EprPcwxFuYXVmQ/jscBVP132jmWRGxxugwj\noK7auYm5902dxJzx1wY66AjnN0oGvYM+juXXbAecXdjTvQHZYC7LwPkpyyGJ\ny90U55+Rcs2PQprDE6tpfTJpjSuxsxX2bRkiTkVPnHwNBN5x0CiJQYi2ZdNV\n71A6+gfIy0nvjQfnqX6FflzEG3HvpkBkHBRwhk8SC/KRrlCZYCQwg6znyZHH\nsiWm\r\n=8MVa\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=6"}},"2.0.1":{"name":"grunt-legacy-log-utils","version":"2.0.1","dependencies":{"chalk":"~2.4.1","lodash":"~4.17.10"},"devDependencies":{"grunt":"~1.0.2","grunt-cli":"~1.2.0","grunt-contrib-jshint":"~1.1.0","grunt-contrib-nodeunit":"~2.0.0","grunt-contrib-watch":"~1.1.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-o7uHyO/J+i2tXG8r2bZNlVk20vlIFJ9IEYyHMCQGfWYru8Jv3wTqKZzvV30YW9rWEjq0eP3cflQ1qWojIe9VFA==","shasum":"d2f442c7c0150065d9004b08fd7410d37519194e","tarball":"https://registry.npmjs.org/grunt-legacy-log-utils/-/grunt-legacy-log-utils-2.0.1.tgz","fileCount":3,"unpackedSize":4807,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbAIKLCRA9TVsSAnZWagAAUFEQAJOgFUIryyPV4srkUPlU\nRb4Ktm2tVQtWgbrljBJxFeHH/MoIXWdEpDJnM2lcxa7ymKsAp85x3jh7xfo1\nlbgDSGKxiTSUlkNtpPlWwxdlP7yz57FagakSfWXMOThnSsEJBkLDWlCvJM3x\nF7HGT16Z8CFpHF5/ulXtpz32YcUGJZGh95VtI8Tfm/bYTczvrUoppdA9FjLN\nPa03JCFN2Sv3xx6lO9PNAHrD5eNaKTlNaHeyGLUzrBxVM2eFo5wwBDMm2T8L\nXV1oKIPs0GclqbcOI2FOegE2KuET7fLKD/EOa0l3Yjeys7N8iomsAjjIJ9TH\npgX5j+13NIXJpZa88utuEQhTCHMTTB3y8NzZkZl16B4G0mA6DX4esEMtAI9I\nbz356FNa1wnbl/5ITVpcCe3YEia6DxgdEkRxiOh8f4iTQdwBWMZSJr2acQVw\n4UL4ZTkDI/HNIG8twrEx5G+nE8iWJsr8BYfZcNwFHEIw6f98GImvYZf5b01J\nk69U7w9KXdk+1wDoRkxT0ebGOBOGS2hZukrwX+0G4TPCGoPRobVtBikGN9oE\nytv07ilGkIpCu6U9z/I1SoyJiuTqAihwLc713QuiJEcu/v6GO8p4bSrr/PI3\nK+1lnIHBho8nSgPq9BhOgFFYwcGsuA6B98/X9nxovmnEo7dGCofRoFzILmZd\nPR76\r\n=4HL7\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=6"}}},"name":"grunt-legacy-log-utils","dist-tags":{"latest":"2.0.1"},"modified":"2018-05-19T20:01:18.301Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/88/2b/8f1c3160ac75fb1f6bc423fe71a73d3bcd21c1d344e9ba0aa1998b5598c3bae75f260ae44ca0e60595d101974835f3bb9fa3375a1e058a71815beb5a8688 b/npm/.npm/_cacache/content-v2/sha512/88/2b/8f1c3160ac75fb1f6bc423fe71a73d3bcd21c1d344e9ba0aa1998b5598c3bae75f260ae44ca0e60595d101974835f3bb9fa3375a1e058a71815beb5a8688 new file mode 100644 index 0000000..9003da9 Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha512/88/2b/8f1c3160ac75fb1f6bc423fe71a73d3bcd21c1d344e9ba0aa1998b5598c3bae75f260ae44ca0e60595d101974835f3bb9fa3375a1e058a71815beb5a8688 differ diff --git a/npm/.npm/_cacache/content-v2/sha512/88/aa/14dff3ab4cefc19141db5bd9fd5bf987432c2c83a7c2e742ba6eb5b3caf78f0bf9041c5c08d86f509291580195b4884198554dfecb78b1b36e9991a72e7d b/npm/.npm/_cacache/content-v2/sha512/88/aa/14dff3ab4cefc19141db5bd9fd5bf987432c2c83a7c2e742ba6eb5b3caf78f0bf9041c5c08d86f509291580195b4884198554dfecb78b1b36e9991a72e7d new file mode 100644 index 0000000..35a0750 --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/88/aa/14dff3ab4cefc19141db5bd9fd5bf987432c2c83a7c2e742ba6eb5b3caf78f0bf9041c5c08d86f509291580195b4884198554dfecb78b1b36e9991a72e7d @@ -0,0 +1 @@ +{"versions":{"0.1.0":{"name":"lodash","version":"0.1.0","dependencies":{},"optionalDependencies":{},"devDependencies":{},"directories":{"doc":"./doc","test":"./test"},"dist":{"shasum":"392617f69a947e40cec7848d85fcc3dd29d74bc5","tarball":"http://registry.npmjs.org/lodash/-/lodash-0.1.0.tgz"},"engines":["node","rhino"]},"0.2.0":{"name":"lodash","version":"0.2.0","dependencies":{},"optionalDependencies":{},"devDependencies":{},"directories":{"doc":"./doc","test":"./test"},"dist":{"shasum":"efaa16fb4614bdce9a7a9fdda487125d3fab38a2","tarball":"http://registry.npmjs.org/lodash/-/lodash-0.2.0.tgz"},"engines":["node","rhino"]},"0.2.1":{"name":"lodash","version":"0.2.1","dependencies":{},"optionalDependencies":{},"devDependencies":{},"directories":{"doc":"./doc","test":"./test"},"dist":{"shasum":"fcdd734c401af6215d1ac511dc30e8003dde4607","tarball":"http://registry.npmjs.org/lodash/-/lodash-0.2.1.tgz"},"engines":["node","rhino"]},"0.2.2":{"name":"lodash","version":"0.2.2","dependencies":{},"optionalDependencies":{},"devDependencies":{},"directories":{"doc":"./doc","test":"./test"},"dist":{"shasum":"d79277dafa86346a181dd924365215b126fdf2cb","tarball":"http://registry.npmjs.org/lodash/-/lodash-0.2.2.tgz"},"engines":["node","rhino"]},"0.3.0":{"name":"lodash","version":"0.3.0","dependencies":{},"optionalDependencies":{},"devDependencies":{},"directories":{"doc":"./doc","test":"./test"},"dist":{"shasum":"e7db413e8b50d48834e86f82c52fd64f0a9e5d6e","tarball":"http://registry.npmjs.org/lodash/-/lodash-0.3.0.tgz"},"engines":["node","rhino"]},"0.3.1":{"name":"lodash","version":"0.3.1","dependencies":{},"optionalDependencies":{},"devDependencies":{},"directories":{"doc":"./doc","test":"./test"},"dist":{"shasum":"4449723baa6d2ff0ab710fd5e4ea70e06ad5e319","tarball":"http://registry.npmjs.org/lodash/-/lodash-0.3.1.tgz"},"engines":["node","rhino"]},"0.3.2":{"name":"lodash","version":"0.3.2","dependencies":{},"optionalDependencies":{},"devDependencies":{},"directories":{"doc":"./doc","test":"./test"},"dist":{"shasum":"b28474cacc670134c856b24ad4183ff20dec7b8e","tarball":"http://registry.npmjs.org/lodash/-/lodash-0.3.2.tgz"},"engines":["node","rhino"]},"0.4.0":{"name":"lodash","version":"0.4.0","bin":{"lodash":"./build.js"},"directories":{"doc":"./doc","test":"./test"},"dist":{"shasum":"9305c807119214f9d9d7728d1f3c86c3881431f5","tarball":"http://registry.npmjs.org/lodash/-/lodash-0.4.0.tgz"},"engines":["node","rhino"]},"0.4.1":{"name":"lodash","version":"0.4.1","bin":{"lodash":"./build.js"},"directories":{"doc":"./doc","test":"./test"},"dist":{"shasum":"56dda6e88d947361d53c075da64084be4b2b9907","tarball":"http://registry.npmjs.org/lodash/-/lodash-0.4.1.tgz"},"engines":["node","rhino"]},"0.4.2":{"name":"lodash","version":"0.4.2","bin":{"lodash":"./build.js"},"directories":{"doc":"./doc","test":"./test"},"dist":{"shasum":"e152362a0e7c5ef8c35894e58d99a520c822aed6","tarball":"http://registry.npmjs.org/lodash/-/lodash-0.4.2.tgz"},"engines":["node","rhino"]},"0.5.0-rc.1":{"name":"lodash","version":"0.5.0-rc.1","bin":{"lodash":"./build.js"},"directories":{"doc":"./doc","test":"./test"},"dist":{"shasum":"b3084c61e5515d86cf680aca01a5840c51e15e6a","tarball":"http://registry.npmjs.org/lodash/-/lodash-0.5.0-rc.1.tgz"},"engines":["node","rhino"]},"0.5.0":{"name":"lodash","version":"0.5.0","bin":{"lodash":"./build.js"},"directories":{"doc":"./doc","test":"./test"},"dist":{"shasum":"37f7912579b92139e9b657f2e2b80ab5c8ca4643","tarball":"http://registry.npmjs.org/lodash/-/lodash-0.5.0.tgz"},"engines":["node","rhino"]},"0.5.1":{"name":"lodash","version":"0.5.1","bin":{"lodash":"./build.js"},"directories":{"doc":"./doc","test":"./test"},"dist":{"shasum":"70a60e7ae06c7a0838cf44b96dab9d8cc1454838","tarball":"http://registry.npmjs.org/lodash/-/lodash-0.5.1.tgz"},"engines":["node","rhino"]},"0.5.2":{"name":"lodash","version":"0.5.2","bin":{"lodash":"./build.js"},"directories":{"doc":"./doc","test":"./test"},"dist":{"shasum":"4c873f93bdddeaa07401a675f8e17ded5af9a827","tarball":"http://registry.npmjs.org/lodash/-/lodash-0.5.2.tgz"},"engines":["node","rhino"]},"0.6.0":{"name":"lodash","version":"0.6.0","bin":{"lodash":"./build.js"},"directories":{"doc":"./doc","test":"./test"},"dist":{"shasum":"78712a5c31fb040f4396e3c4d42884d4c75a3ecb","tarball":"http://registry.npmjs.org/lodash/-/lodash-0.6.0.tgz"},"engines":["node","rhino"]},"0.6.1":{"name":"lodash","version":"0.6.1","bin":{"lodash":"./build.js"},"directories":{"doc":"./doc","test":"./test"},"dist":{"shasum":"9b093d490fd4fc50091609a92f4bbb5d10396357","tarball":"http://registry.npmjs.org/lodash/-/lodash-0.6.1.tgz"},"engines":["node","rhino"]},"0.7.0":{"name":"lodash","version":"0.7.0","bin":{"lodash":"./build.js"},"directories":{"doc":"./doc","test":"./test"},"dist":{"shasum":"8d0649e1fcb58a546ae9cb9f86f61d442571ae83","tarball":"http://registry.npmjs.org/lodash/-/lodash-0.7.0.tgz"},"engines":["node","rhino"]},"0.8.0":{"name":"lodash","version":"0.8.0","bin":{"lodash":"./build.js"},"directories":{"doc":"./doc","test":"./test"},"dist":{"shasum":"9c66ca5f6a886087b1f980eef2a3991a98a22f7a","tarball":"http://registry.npmjs.org/lodash/-/lodash-0.8.0.tgz"},"engines":["node","rhino"]},"0.8.1":{"name":"lodash","version":"0.8.1","bin":{"lodash":"./build.js"},"directories":{"doc":"./doc","test":"./test"},"dist":{"shasum":"e4948649217958a8413600fa3a63941cfb8f4bb6","tarball":"http://registry.npmjs.org/lodash/-/lodash-0.8.1.tgz"},"engines":["node","rhino"]},"0.8.2":{"name":"lodash","version":"0.8.2","bin":{"lodash":"./build.js"},"directories":{"doc":"./doc","test":"./test"},"dist":{"shasum":"4c59d6b23ce894412a13dab22304772d0cb11ae4","tarball":"http://registry.npmjs.org/lodash/-/lodash-0.8.2.tgz"},"engines":["node","rhino"]},"0.9.0":{"name":"lodash","version":"0.9.0","directories":{},"dist":{"shasum":"5647e17bc474a1903f4873616d5a2bc615d6620a","tarball":"http://registry.npmjs.org/lodash/-/lodash-0.9.0.tgz"},"engines":["node","rhino"]},"0.9.1":{"name":"lodash","version":"0.9.1","directories":{},"dist":{"shasum":"9009df00e6e3166935312b3a3edfd9dff06e3562","tarball":"http://registry.npmjs.org/lodash/-/lodash-0.9.1.tgz"},"engines":["node","rhino"]},"0.9.2":{"name":"lodash","version":"0.9.2","directories":{},"dist":{"shasum":"8f3499c5245d346d682e5b0d3b40767e09f1a92c","tarball":"http://registry.npmjs.org/lodash/-/lodash-0.9.2.tgz"},"engines":["node","rhino"]},"0.10.0":{"name":"lodash","version":"0.10.0","directories":{},"dist":{"shasum":"5254bbc2c46c827f535a27d631fd4f2bff374ce7","tarball":"http://registry.npmjs.org/lodash/-/lodash-0.10.0.tgz"},"engines":["node","rhino"]},"1.0.0-rc.1":{"name":"lodash","version":"1.0.0-rc.1","directories":{},"dist":{"shasum":"4d25e7a3471e8c79f21a53bc9548ff4c3c751246","tarball":"http://registry.npmjs.org/lodash/-/lodash-1.0.0-rc.1.tgz"},"engines":["node","rhino"]},"1.0.0-rc.2":{"name":"lodash","version":"1.0.0-rc.2","directories":{},"dist":{"shasum":"58c819a059ca25d52c289f7a01b419a4f3b945e9","tarball":"http://registry.npmjs.org/lodash/-/lodash-1.0.0-rc.2.tgz"},"engines":["node","rhino"]},"1.0.0-rc.3":{"name":"lodash","version":"1.0.0-rc.3","directories":{},"dist":{"shasum":"807ec29d0b768c7bb1025a796b8dec137fb06957","tarball":"http://registry.npmjs.org/lodash/-/lodash-1.0.0-rc.3.tgz"},"engines":["node","rhino"]},"1.0.0":{"name":"lodash","version":"1.0.0","directories":{},"dist":{"shasum":"2535c2f7dcb6937cee8d2672c5f7138eee0df6a9","tarball":"http://registry.npmjs.org/lodash/-/lodash-1.0.0.tgz"},"engines":["node","rhino"]},"1.0.1":{"name":"lodash","version":"1.0.1","directories":{},"dist":{"shasum":"57945732498d92310e5bd4b1ff4f273a79e6c9fc","tarball":"http://registry.npmjs.org/lodash/-/lodash-1.0.1.tgz"},"engines":["node","rhino"]},"1.1.0":{"name":"lodash","version":"1.1.0","directories":{},"dist":{"shasum":"bd0bb7f858f6c09ae140f23869261e555bd6ec1d","tarball":"http://registry.npmjs.org/lodash/-/lodash-1.1.0.tgz"},"engines":["node","rhino"]},"1.1.1":{"name":"lodash","version":"1.1.1","directories":{},"dist":{"shasum":"41a2b2e9a00e64d6d1999f143ff6b0755f6bbb24","tarball":"http://registry.npmjs.org/lodash/-/lodash-1.1.1.tgz"},"engines":["node","rhino"]},"1.2.0":{"name":"lodash","version":"1.2.0","directories":{},"dist":{"shasum":"5f16a3318ab3bf680c7b41b5bb6327e9e1086ec4","tarball":"http://registry.npmjs.org/lodash/-/lodash-1.2.0.tgz"},"engines":["node","rhino"]},"1.2.1":{"name":"lodash","version":"1.2.1","directories":{},"dist":{"shasum":"ed47b16e46f06b2b40309b68e9163c17e93ea304","tarball":"http://registry.npmjs.org/lodash/-/lodash-1.2.1.tgz"},"engines":["node","rhino"]},"1.3.0":{"name":"lodash","version":"1.3.0","directories":{},"dist":{"shasum":"09f6f55bceac513ee5681665947630fa8ae7593f","tarball":"http://registry.npmjs.org/lodash/-/lodash-1.3.0.tgz"},"engines":["node","rhino"]},"1.3.1":{"name":"lodash","version":"1.3.1","directories":{},"dist":{"shasum":"a4663b53686b895ff074e2ba504dfb76a8e2b770","tarball":"http://registry.npmjs.org/lodash/-/lodash-1.3.1.tgz"},"engines":["node","rhino"]},"2.0.0":{"name":"lodash","version":"2.0.0","directories":{},"dist":{"shasum":"9dcf9e3fac04ad0a38c9e2db69c9fb7ce26dabc2","tarball":"http://registry.npmjs.org/lodash/-/lodash-2.0.0.tgz"},"engines":["node","rhino"]},"2.1.0":{"name":"lodash","version":"2.1.0","directories":{},"dist":{"shasum":"0637eaaa36a8a1cfc865c3adfb942189bfb0998d","tarball":"http://registry.npmjs.org/lodash/-/lodash-2.1.0.tgz"},"engines":["node","rhino"]},"2.2.0":{"name":"lodash","version":"2.2.0","directories":{},"dist":{"shasum":"6bd68cc1c37a3885c15211bbe1dce6d69f01e01d","tarball":"http://registry.npmjs.org/lodash/-/lodash-2.2.0.tgz"},"engines":["node","rhino"]},"2.2.1":{"name":"lodash","version":"2.2.1","directories":{},"dist":{"shasum":"ca935fd14ab3c0c872abacf198b9cda501440867","tarball":"http://registry.npmjs.org/lodash/-/lodash-2.2.1.tgz"},"engines":["node","rhino"]},"2.3.0":{"name":"lodash","version":"2.3.0","directories":{},"dist":{"shasum":"dfbdac99cf87a59a022c474730570d8716c267dd","tarball":"http://registry.npmjs.org/lodash/-/lodash-2.3.0.tgz"},"engines":["node","rhino"]},"2.4.0":{"name":"lodash","version":"2.4.0","directories":{},"dist":{"shasum":"55074982883381b6b7134b742a5900bbbdab6b09","tarball":"http://registry.npmjs.org/lodash/-/lodash-2.4.0.tgz"},"engines":["node","rhino"]},"2.4.1":{"name":"lodash","version":"2.4.1","directories":{},"dist":{"shasum":"5b7723034dda4d262e5a46fb2c58d7cc22f71420","tarball":"http://registry.npmjs.org/lodash/-/lodash-2.4.1.tgz"},"engines":["node","rhino"]},"3.0.0":{"name":"lodash","version":"3.0.0","directories":{},"dist":{"shasum":"493364b7183a37104d65255f38b0fe5869cbe0fd","tarball":"http://registry.npmjs.org/lodash/-/lodash-3.0.0.tgz"}},"3.0.1":{"name":"lodash","version":"3.0.1","directories":{},"dist":{"shasum":"14d49028a38bc740241d11e2ecd57ec06d73c19a","tarball":"http://registry.npmjs.org/lodash/-/lodash-3.0.1.tgz"}},"3.1.0":{"name":"lodash","version":"3.1.0","directories":{},"dist":{"shasum":"d41b8b33530cb3be088853208ad30092d2c27961","tarball":"http://registry.npmjs.org/lodash/-/lodash-3.1.0.tgz"}},"3.2.0":{"name":"lodash","version":"3.2.0","directories":{},"dist":{"shasum":"4bf50a3243f9aeb0bac41a55d3d5990675a462fb","tarball":"http://registry.npmjs.org/lodash/-/lodash-3.2.0.tgz"}},"3.3.0":{"name":"lodash","version":"3.3.0","directories":{},"dist":{"shasum":"011ce52d01b14e60eaeea76acb9b8ba42c70581b","tarball":"http://registry.npmjs.org/lodash/-/lodash-3.3.0.tgz"}},"3.3.1":{"name":"lodash","version":"3.3.1","directories":{},"dist":{"shasum":"3b914d4a1bb27efcee076e0dfa58152018e2042e","tarball":"http://registry.npmjs.org/lodash/-/lodash-3.3.1.tgz"}},"3.4.0":{"name":"lodash","version":"3.4.0","directories":{},"dist":{"shasum":"7c39c1336faf5f96e6409f8355f26ea192f41821","tarball":"http://registry.npmjs.org/lodash/-/lodash-3.4.0.tgz"}},"3.5.0":{"name":"lodash","version":"3.5.0","directories":{},"dist":{"shasum":"19bb3f4d51278f0b8c818ed145c74ecf9fe40e6d","tarball":"http://registry.npmjs.org/lodash/-/lodash-3.5.0.tgz"}},"3.6.0":{"name":"lodash","version":"3.6.0","directories":{},"dist":{"shasum":"5266a8f49dd989be4f9f681b6f2a0c55285d0d9a","tarball":"http://registry.npmjs.org/lodash/-/lodash-3.6.0.tgz"}},"1.0.2":{"name":"lodash","version":"1.0.2","directories":{},"dist":{"shasum":"8f57560c83b59fc270bd3d561b690043430e2551","tarball":"http://registry.npmjs.org/lodash/-/lodash-1.0.2.tgz"},"engines":["node","rhino"]},"3.7.0":{"name":"lodash","version":"3.7.0","directories":{},"dist":{"shasum":"3678bd8ab995057c07ade836ed2ef087da811d45","tarball":"http://registry.npmjs.org/lodash/-/lodash-3.7.0.tgz"}},"2.4.2":{"name":"lodash","version":"2.4.2","directories":{},"dist":{"shasum":"fadd834b9683073da179b3eae6d9c0d15053f73e","tarball":"http://registry.npmjs.org/lodash/-/lodash-2.4.2.tgz"},"engines":["node","rhino"]},"3.8.0":{"name":"lodash","version":"3.8.0","directories":{},"dist":{"shasum":"376eb98bdcd9382a9365c33c4cb8250de1325b91","tarball":"http://registry.npmjs.org/lodash/-/lodash-3.8.0.tgz"}},"3.9.0":{"name":"lodash","version":"3.9.0","directories":{},"dist":{"shasum":"5bf547f9fcce37f78678859ba11854dc75ffa21b","tarball":"http://registry.npmjs.org/lodash/-/lodash-3.9.0.tgz"}},"3.9.1":{"name":"lodash","version":"3.9.1","directories":{},"dist":{"shasum":"5102372ecaa2ccf71fec63b55b44642eeb77b59a","tarball":"http://registry.npmjs.org/lodash/-/lodash-3.9.1.tgz"}},"3.9.2":{"name":"lodash","version":"3.9.2","directories":{},"dist":{"shasum":"e86b404e374a7787fd272be086991b7bed2ce06f","tarball":"http://registry.npmjs.org/lodash/-/lodash-3.9.2.tgz"}},"3.9.3":{"name":"lodash","version":"3.9.3","directories":{},"dist":{"shasum":"0159e86832feffc6d61d852b12a953b99496bd32","tarball":"http://registry.npmjs.org/lodash/-/lodash-3.9.3.tgz"}},"3.10.0":{"name":"lodash","version":"3.10.0","directories":{},"dist":{"shasum":"93d51c672828a4416a12af57220ba8a8737e2fbb","tarball":"http://registry.npmjs.org/lodash/-/lodash-3.10.0.tgz"}},"3.10.1":{"name":"lodash","version":"3.10.1","directories":{},"dist":{"shasum":"5bf45e8e49ba4189e17d482789dfd15bd140b7b6","tarball":"http://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz"}},"4.0.0":{"name":"lodash","version":"4.0.0","directories":{},"dist":{"shasum":"9ac43844c595e28d30108b7ba583703395922dfc","tarball":"http://registry.npmjs.org/lodash/-/lodash-4.0.0.tgz"}},"4.0.1":{"name":"lodash","version":"4.0.1","directories":{},"dist":{"shasum":"cd8c902c9e03f2e69ce3e0e456d505ab89eb98f4","tarball":"http://registry.npmjs.org/lodash/-/lodash-4.0.1.tgz"}},"4.1.0":{"name":"lodash","version":"4.1.0","directories":{},"dist":{"shasum":"299894283de01a9eefbedff4c4b9b00a6a2e6e96","tarball":"http://registry.npmjs.org/lodash/-/lodash-4.1.0.tgz"}},"4.2.0":{"name":"lodash","version":"4.2.0","directories":{},"dist":{"shasum":"0506f4dad737c79cb2602ac11f8b74b7136464e8","tarball":"http://registry.npmjs.org/lodash/-/lodash-4.2.0.tgz"}},"4.2.1":{"name":"lodash","version":"4.2.1","directories":{},"dist":{"shasum":"171fdcfbbc30d689c544cd18c0529f56de6c1aa9","tarball":"http://registry.npmjs.org/lodash/-/lodash-4.2.1.tgz"}},"4.3.0":{"name":"lodash","version":"4.3.0","directories":{},"dist":{"shasum":"efd9c4a6ec53f3b05412429915c3e4824e4d25a4","tarball":"http://registry.npmjs.org/lodash/-/lodash-4.3.0.tgz"}},"4.4.0":{"name":"lodash","version":"4.4.0","directories":{},"dist":{"shasum":"bc5c6b741d04d53111b26cf1a2feab86c268cd7a","tarball":"http://registry.npmjs.org/lodash/-/lodash-4.4.0.tgz"}},"4.5.0":{"name":"lodash","version":"4.5.0","directories":{},"dist":{"shasum":"2284aa06f5b136adbd954b903511b62fc39d1f59","tarball":"http://registry.npmjs.org/lodash/-/lodash-4.5.0.tgz"}},"4.5.1":{"name":"lodash","version":"4.5.1","directories":{},"dist":{"shasum":"80e8a074ca5f3893a6b1c10b2a636492d710c316","tarball":"http://registry.npmjs.org/lodash/-/lodash-4.5.1.tgz"}},"4.6.0":{"name":"lodash","version":"4.6.0","directories":{},"dist":{"shasum":"c6926922ed75379993f0212a4764c18a760a2198","tarball":"http://registry.npmjs.org/lodash/-/lodash-4.6.0.tgz"}},"4.6.1":{"name":"lodash","version":"4.6.1","directories":{},"dist":{"shasum":"df00c1164ad236b183cfc3887a5e8d38cc63cbbc","tarball":"http://registry.npmjs.org/lodash/-/lodash-4.6.1.tgz"}},"4.7.0":{"name":"lodash","version":"4.7.0","directories":{},"dist":{"shasum":"b8088876bdc290ca1f34f90350f7b5cb71810c05","tarball":"http://registry.npmjs.org/lodash/-/lodash-4.7.0.tgz"}},"4.8.0":{"name":"lodash","version":"4.8.0","directories":{},"dist":{"shasum":"297fb94a164c02e7eb8d37cde135be62456df446","tarball":"http://registry.npmjs.org/lodash/-/lodash-4.8.0.tgz"}},"4.8.1":{"name":"lodash","version":"4.8.1","directories":{},"dist":{"shasum":"97797b4684d238bad1a2d0a2e53108fe57e5f95f","tarball":"http://registry.npmjs.org/lodash/-/lodash-4.8.1.tgz"}},"4.8.2":{"name":"lodash","version":"4.8.2","directories":{},"dist":{"shasum":"478ad7ff648c3c71a2f6108e032c5c0cc40747df","tarball":"http://registry.npmjs.org/lodash/-/lodash-4.8.2.tgz"}},"4.9.0":{"name":"lodash","version":"4.9.0","directories":{},"dist":{"shasum":"4c20d742f03ce85dc700e0dd7ab9bcab85e6fc14","tarball":"http://registry.npmjs.org/lodash/-/lodash-4.9.0.tgz"}},"4.10.0":{"name":"lodash","version":"4.10.0","directories":{},"dist":{"shasum":"3d8f3ac7a5a904fdb01e2cfe1401879bf9652c6a","tarball":"http://registry.npmjs.org/lodash/-/lodash-4.10.0.tgz"}},"4.11.0":{"name":"lodash","version":"4.11.0","directories":{},"dist":{"shasum":"428f7172a5e9a82e9a459b543816489810ecb8af","tarball":"http://registry.npmjs.org/lodash/-/lodash-4.11.0.tgz"}},"4.11.1":{"name":"lodash","version":"4.11.1","directories":{},"dist":{"shasum":"a32106eb8e2ec8e82c241611414773c9df15f8bc","tarball":"http://registry.npmjs.org/lodash/-/lodash-4.11.1.tgz"}},"4.11.2":{"name":"lodash","version":"4.11.2","directories":{},"dist":{"shasum":"d6b4338b110a58e21dae5cebcfdbbfd2bc4cdb3b","tarball":"http://registry.npmjs.org/lodash/-/lodash-4.11.2.tgz"}},"4.12.0":{"name":"lodash","version":"4.12.0","directories":{},"dist":{"shasum":"2bd6dc46a040f59e686c972ed21d93dc59053258","tarball":"http://registry.npmjs.org/lodash/-/lodash-4.12.0.tgz"}},"4.13.0":{"name":"lodash","version":"4.13.0","directories":{},"dist":{"shasum":"6172ad9cfaa5db21268b23b6da6c3a42442aab65","tarball":"http://registry.npmjs.org/lodash/-/lodash-4.13.0.tgz"}},"4.13.1":{"name":"lodash","version":"4.13.1","directories":{},"dist":{"shasum":"83e4b10913f48496d4d16fec4a560af2ee744b68","tarball":"http://registry.npmjs.org/lodash/-/lodash-4.13.1.tgz"}},"4.14.0":{"name":"lodash","version":"4.14.0","directories":{},"dist":{"shasum":"b742d6a80b5ee87e7c1a35c143c5b19bd966c10b","tarball":"http://registry.npmjs.org/lodash/-/lodash-4.14.0.tgz"}},"4.14.1":{"name":"lodash","version":"4.14.1","directories":{},"dist":{"shasum":"5b5d0a516ad3d46e12012d7f59ad66a5659bf408","tarball":"http://registry.npmjs.org/lodash/-/lodash-4.14.1.tgz"}},"4.14.2":{"name":"lodash","version":"4.14.2","directories":{},"dist":{"shasum":"bbccce6373a400fbfd0a8c67ca42f6d1ef416432","tarball":"http://registry.npmjs.org/lodash/-/lodash-4.14.2.tgz"}},"4.15.0":{"name":"lodash","version":"4.15.0","directories":{},"dist":{"shasum":"3162391d8f0140aa22cf8f6b3c34d6b7f63d3aa9","tarball":"http://registry.npmjs.org/lodash/-/lodash-4.15.0.tgz"}},"4.16.0":{"name":"lodash","version":"4.16.0","directories":{},"dist":{"shasum":"834cb785057157032242beaf101bb3d99e55d0d8","tarball":"http://registry.npmjs.org/lodash/-/lodash-4.16.0.tgz"}},"4.16.1":{"name":"lodash","version":"4.16.1","directories":{},"dist":{"shasum":"75e15fcfe2721adbd6a7c5985f855288a03fc36d","tarball":"http://registry.npmjs.org/lodash/-/lodash-4.16.1.tgz"}},"4.16.2":{"name":"lodash","version":"4.16.2","directories":{},"dist":{"shasum":"3e626db827048a699281a8a125226326cfc0e652","tarball":"http://registry.npmjs.org/lodash/-/lodash-4.16.2.tgz"}},"4.16.3":{"name":"lodash","version":"4.16.3","directories":{},"dist":{"shasum":"0ba761439529127c7a38c439114ca153efa999a2","tarball":"http://registry.npmjs.org/lodash/-/lodash-4.16.3.tgz"}},"4.16.4":{"name":"lodash","version":"4.16.4","directories":{},"dist":{"shasum":"01ce306b9bad1319f2a5528674f88297aeb70127","tarball":"http://registry.npmjs.org/lodash/-/lodash-4.16.4.tgz"}},"4.16.5":{"name":"lodash","version":"4.16.5","directories":{},"dist":{"shasum":"77d88feac548009b1a5c4ca7b49ac431ce346ae8","tarball":"http://registry.npmjs.org/lodash/-/lodash-4.16.5.tgz"}},"4.16.6":{"name":"lodash","version":"4.16.6","directories":{},"dist":{"shasum":"d22c9ac660288f3843e16ba7d2b5d06cca27d777","tarball":"http://registry.npmjs.org/lodash/-/lodash-4.16.6.tgz"}},"4.17.0":{"name":"lodash","version":"4.17.0","directories":{},"dist":{"shasum":"93f4466e5ab73e5a1f1216c34eea11535f0a8df5","tarball":"http://registry.npmjs.org/lodash/-/lodash-4.17.0.tgz"}},"4.17.1":{"name":"lodash","version":"4.17.1","directories":{},"dist":{"shasum":"e75eaf17a34730c6491d9956f4d81f3a044f01bf","tarball":"http://registry.npmjs.org/lodash/-/lodash-4.17.1.tgz"}},"4.17.2":{"name":"lodash","version":"4.17.2","directories":{},"dist":{"shasum":"34a3055babe04ce42467b607d700072c7ff6bf42","tarball":"http://registry.npmjs.org/lodash/-/lodash-4.17.2.tgz"}},"4.17.3":{"name":"lodash","version":"4.17.3","directories":{},"dist":{"shasum":"557ed7d2a9438cac5fd5a43043ca60cb455e01f7","tarball":"http://registry.npmjs.org/lodash/-/lodash-4.17.3.tgz"}},"4.17.4":{"name":"lodash","version":"4.17.4","directories":{},"dist":{"shasum":"78203a4d1c328ae1d86dca6460e369b57f4055ae","tarball":"http://registry.npmjs.org/lodash/-/lodash-4.17.4.tgz"}},"4.17.5":{"name":"lodash","version":"4.17.5","directories":{},"dist":{"integrity":"sha512-svL3uiZf1RwhH+cWrfZn3A4+U58wbP0tGVTLQPbjplZxZ8ROD9VLuNgsRniTlLe7OlSqR79RUehXgpBW/s0IQw==","shasum":"99a92d65c0272debe8c96b6057bc8fbfa3bed511","tarball":"https://registry.npmjs.org/lodash/-/lodash-4.17.5.tgz"}},"4.17.9":{"name":"lodash","version":"4.17.9","_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-vuRLquvot5sKUldMBumG0YqLvX6m/RGBBOmqb3CWR/MC/QvvD1cTH1fOqxz2FJAQeoExeUdX5Gu9vP2EP6ik+Q==","shasum":"9c056579af0bdbb4322e23c836df13ef2b271cb7","tarball":"https://registry.npmjs.org/lodash/-/lodash-4.17.9.tgz","fileCount":1049,"unpackedSize":1399757,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa320ICRA9TVsSAnZWagAAI3wP/2kAIG2fiZ1ZoBp0rBW9\n6RKVBF/amCaKuDwrFjS25IDUm+tZn9kD5sIVoqiSwvym1GeLGfq0wAaSahb+\nQ8nYhEOYOXrKeaOW6cH8pYyg/phoKSXj0+3CEpLqh4a14HA2RXj5XigJsx9U\nQbsZqT+vm0kJ2UNRwUUj9304zVXIvtaTRPUKE8gwb3bHFclRsmxS939UiIha\nrD0kSEoPsCwZBtn6Ha6hsN+XzKTpa7I4vLLN91h4NaBbmkN7quwBu8FkzXfK\n2WJZp5l46LJOq7qGiogIVX8G9KWV9ncu5+/K0gj8eGPRf4om27NB3Tj8SR+S\nNldDeg2QnMCqA+nsuObr+rHjiErgJ8bdzhxE+H/CxFPE83qnp4W8Re0Usnyj\nn8b+z7gzzqccvZ4DfUp5hZnNRoe4X/p+JbsWOIahheglI11EmYrm87VM1EYi\nyE/Y3BvjgWLB3uJTwYgj7t9AwRy2Hfg64S8SLqTiMUIcDn1n167oWqdr5sJm\nn+LoaykuWBSz9Biq7NTM3msOojXDErHBTNnPqOsqoXLhhgfTuDujJMIc8Aaw\n5jfXPzEdJHXlHN/imys/hjSd0rI2XIY+gFN6/V7BB1/sYLsEhw8S/8eS7GGc\nBgc3UJ7n+TViiODXgLg6pbwOPvGJT9OyJ2qFiXivs3yK2QPJQQEoYAjJNM7L\nB1Ef\r\n=5Cw+\r\n-----END PGP SIGNATURE-----\r\n"}},"4.17.10":{"name":"lodash","version":"4.17.10","_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-UejweD1pDoXu+AD825lWwp4ZGtSwgnpZxb3JDViD7StjQz+Nb/6l093lx4OQ0foGWNRoc19mWy7BzL+UAK2iVg==","shasum":"1b7793cf7259ea38fb3661d4d38b3260af8ae4e7","tarball":"https://registry.npmjs.org/lodash/-/lodash-4.17.10.tgz","fileCount":1049,"unpackedSize":1399800,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa33JqCRA9TVsSAnZWagAA0v4P/j+STtIL2K020wYEwPab\nWcDg2zwjWib+2mePvIwCylNI8YZs9vQXD9HvhWDD7/RH9bem/0sF45AgUk+w\na3bQGG1h5vFDHKftolS2fsa1HoT8ECEK2iVHQrS/DyCBcWYjfFUwErpd/NLx\nUpl9vW3Ba5clHUlq9rccOZ4Ld2gVQV8b2+p9V1IJeN9rkIOfRAg16FxAZjQZ\n9mj/XBR/Qw0XAEy31J63Rj+815CINYihHwpPdkaOTXDzouIn1/dP8jFp9oPY\nSGvwi4q6HBVbuuXmjcmMXIHRWz0drK3uex/3944yNzLlcu2Qn2rPqpQiD2rO\nYfIkwOd9TYfKfjvVGqEMzZHtLX408bm2kGtdyOLECuKAMSd5U9pOWfbVEeLN\nrydQQyGRC475Y15G58hSP0XbNM27dlEB+lfR6xtEcTLT75B/lxW2KxwxOff2\nLOTRfpd6Hx9d+5K80vAu1Ms8G69h2HPTDobJRmSPU+w/UTjeL9hrFy9x3hV8\n6xFgYOj8VZDiDpq0H1b0TH4GRGV0YvfVZ1V50Jzc3GZsKzSqk0i+UKDLuWVT\nYiTpQOPBlKysD3gGRjWMDd7jRMbf2b2B4Ajl5LhaB6mVjNnK8IMkTIegrwHP\nIOuE39Y1Vr1xBRlCBYcUdDrkPSCxlxzsToRPpo/1uWH1CI7HIBQsCJ2/h+n6\n6zBR\r\n=aCN9\r\n-----END PGP SIGNATURE-----\r\n"}},"4.17.11":{"name":"lodash","version":"4.17.11","_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg==","shasum":"b39ea6229ef607ecd89e2c8df12536891cac9b8d","tarball":"https://registry.npmjs.org/lodash/-/lodash-4.17.11.tgz","fileCount":1049,"unpackedSize":1399577,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbmVuwCRA9TVsSAnZWagAAqa0QAI92r3JGIJd0+pwZv30y\nOnUXbuHXryhRrlMLFy3jmfGPoEDa7moz3UF/iJvUHet19ctz4/RZKIK5jhmW\nW7d1RiMUh1PcQ9wfeiLmp1E4xvg92tG+l+k/4H5URDFqlmXbbP7hvI4cVXdX\nTH5knUONoKavtC73HfvMhxpJgEtgWrY5KYpjp4Jb+A9iQrJweIpnPx7GAYzW\n5vJ4eJahlnX5l+ikJRZoUxJIr0NbZQlBIr7jK/KbMcINmxEPKr3OO3M9h9md\ncHMGmnP/J9IpQpxkm9fzks5LEOs1Gm20nA01g2JlsWkiIJCWHLXLG9p1if/b\nt9QV0I2bTMfQwpM8twC8ub6+u9r2dj/gP2cmJCH97wyIRpeSxNYXkFjT34ll\nDvtYcde6YW8O28mmCndj+e71On1cqEo0laahuDeDU5vdKVCs4X+RJongDpz7\nXwTP4TCG4il4JBWvyXbDWe/717wcCOye01STklRgAi+l44G+Kbi9fqUhHInj\nruVW9I7IjRJuVTj32Ud6losqdy0O0qOr2lAoCqc1Zx7E2KnP7EHnMHBd8zL7\nQq+DKpsWgG/RFsZJdu09Yl2Oa992so3gHRy+afTkyciUH/CWYEi4dv3DRIIa\ncUZCz4OJ1N9UZpbIIFypFmGEUvd1liwx+SJwGf4zzJ3LkTdwjW5WPREx0waQ\nMdj6\r\n=JzE4\r\n-----END PGP SIGNATURE-----\r\n"}}},"name":"lodash","dist-tags":{"latest":"4.17.11"},"modified":"2018-10-22T15:56:13.307Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/8a/8c/da9280d800ef186f236b6e3e7d838674a36bd003f118f8a3222697f7ed5dbb1651ec5a807b71f36a2c376154159666c0c4a5c5ccb8f9cae8adc6c4c26ffd b/npm/.npm/_cacache/content-v2/sha512/8a/8c/da9280d800ef186f236b6e3e7d838674a36bd003f118f8a3222697f7ed5dbb1651ec5a807b71f36a2c376154159666c0c4a5c5ccb8f9cae8adc6c4c26ffd new file mode 100644 index 0000000..0457b16 --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/8a/8c/da9280d800ef186f236b6e3e7d838674a36bd003f118f8a3222697f7ed5dbb1651ec5a807b71f36a2c376154159666c0c4a5c5ccb8f9cae8adc6c4c26ffd @@ -0,0 +1 @@ +{"versions":{"1.0.0":{"name":"is-builtin-module","version":"1.0.0","dependencies":{"builtin-modules":"^1.0.0"},"devDependencies":{"ava":"0.0.4"},"directories":{},"dist":{"shasum":"540572d34f7ac3119f8f76c30cbc1b1e037affbe","tarball":"http://registry.npmjs.org/is-builtin-module/-/is-builtin-module-1.0.0.tgz"},"engines":{"node":">=0.10.0"}},"2.0.0":{"name":"is-builtin-module","version":"2.0.0","dependencies":{"builtin-modules":"^2.0.0"},"devDependencies":{"ava":"*","xo":"*"},"directories":{},"dist":{"integrity":"sha512-G2jLHphOywpgrL/AaJKWDXpdpGR9X4V1PCkB+EwG5Z28z8EukgdWnAUFAS2wdBtIpwHhHBIiq0NBOWEbSXN0Rg==","shasum":"431104b3b4ba838ec7a17d82bb3bccd2233e8cd9","tarball":"https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-2.0.0.tgz"},"engines":{"node":">=4"}},"3.0.0":{"name":"is-builtin-module","version":"3.0.0","dependencies":{"builtin-modules":"^3.0.0"},"devDependencies":{"ava":"^0.25.0","xo":"^0.23.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-/93sDihsAD652hrMEbJGbMAVBf1qc96kyThHQ0CAOONHaE3aROLpTjDe4WQ5aoC5ITHFxEq1z8XqSU7km+8amw==","shasum":"137d3d2425023a19a660fb9dd6ddfabe52c03466","tarball":"https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-3.0.0.tgz","fileCount":4,"unpackedSize":2707,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbooFOCRA9TVsSAnZWagAAgvoQAIORBSzQub/fKY6q4zTz\nz1ArdghK/rHbHjn8ty44NXeu0LFtXO80hBNNChfQAAakZ9r5hMrvj2Ls6p/M\n03kjGl1+DiI3IVfebnNFmCWnUuwtasQyzWhFZhUDBCXCs805oOgoOwsYeSOc\nkr1jCujLAiCAnqHe3X+XyHB8Hgu0O8VQVRhtmP++lnoq9kojZdPvjG5fyi03\nt0DRrN61+HzwuJzvWwDB8hJ6AU8HfZwtG6XKvB++WYtENzPNJPtZo8Cz1+XL\ndb98HammDKHgoNulEuQvqpdV6yLa9UzKasBO51/kIqS0W9fMzGdTGkDXJ6It\nmTd3u6Cj8tDqB6q3AgbMIQkFY34IQGjghTNZl16IO9gHFtv01kurcZr3K2fW\nvN52ZWmefmC1eHLurudIAinEpx3qUoz4B0X1dUgigLjy5T+Ph0AzE+INwPZZ\n0/Oewr8yYnK2O44Eumlwiojitz92nHTPN2r/tAfAc0JFA3NwjMaWvzV2oXez\nFBbxOTfZpxX1LAtt3/poG4QNg89ZqLwsEkFKoI64EglVGf7naxyNfsFzBbsg\nbAP8RoCA2Xz6IONfCeQ7fxGoNa7FPz7qLPpDF9K6whv7DOPCEmlmEOtFWKE/\nE4aC/1j5Bm+uC/GG31Dc76DRKby/Bk9fYhg7JWSIjdnUrbx2vyeotY2wv8Lh\ng9kg\r\n=9hk/\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=6"}}},"name":"is-builtin-module","dist-tags":{"latest":"3.0.0"},"modified":"2018-09-19T17:03:17.120Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/8b/00/11fd7ab131f1dd7d17b29837a48ce8dcf5b6ed0a6fc6bd3246bf2b2ebf17accea0d0f17b87865bef0ea324d8faff58e3de50857ad86a74b8002f2062336d b/npm/.npm/_cacache/content-v2/sha512/8b/00/11fd7ab131f1dd7d17b29837a48ce8dcf5b6ed0a6fc6bd3246bf2b2ebf17accea0d0f17b87865bef0ea324d8faff58e3de50857ad86a74b8002f2062336d new file mode 100644 index 0000000..c4c8503 --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/8b/00/11fd7ab131f1dd7d17b29837a48ce8dcf5b6ed0a6fc6bd3246bf2b2ebf17accea0d0f17b87865bef0ea324d8faff58e3de50857ad86a74b8002f2062336d @@ -0,0 +1 @@ +{"versions":{"0.1.0":{"name":"getobject","version":"0.1.0","devDependencies":{"grunt-contrib-jshint":"~0.1.1","grunt-contrib-nodeunit":"~0.1.2","grunt-contrib-watch":"~0.2.0","grunt":"~0.4.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"047a449789fa160d018f5486ed91320b6ec7885c","tarball":"https://registry.npmjs.org/getobject/-/getobject-0.1.0.tgz"},"engines":{"node":">= 0.8.0"}}},"name":"getobject","dist-tags":{"latest":"0.1.0"},"modified":"2013-11-21T20:10:17.316Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/8c/68/871cc5b335da04df22f6aeb528f93844b259aca5e94f77011be0d79b4ab021df148c24c036a9a7e0f9de8b7d4d5656fe65f2d86fb296ac47ddc2f3ce1797 b/npm/.npm/_cacache/content-v2/sha512/8c/68/871cc5b335da04df22f6aeb528f93844b259aca5e94f77011be0d79b4ab021df148c24c036a9a7e0f9de8b7d4d5656fe65f2d86fb296ac47ddc2f3ce1797 new file mode 100644 index 0000000..3882e32 --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/8c/68/871cc5b335da04df22f6aeb528f93844b259aca5e94f77011be0d79b4ab021df148c24c036a9a7e0f9de8b7d4d5656fe65f2d86fb296ac47ddc2f3ce1797 @@ -0,0 +1 @@ +{"versions":{"1.0.0":{"name":"meow","version":"1.0.0","dependencies":{"camelcase-keys":"^1.0.0","indent-string":"^1.1.0","minimist":"^1.1.0","object-assign":"^1.0.0"},"devDependencies":{"ava":"0.0.4"},"directories":{},"dist":{"shasum":"d0ac10fe5b7a53796e7101e7068ff02ab698178b","tarball":"http://registry.npmjs.org/meow/-/meow-1.0.0.tgz"},"engines":{"node":">=0.10.0"}},"2.0.0":{"name":"meow","version":"2.0.0","dependencies":{"camelcase-keys":"^1.0.0","indent-string":"^1.1.0","minimist":"^1.1.0","object-assign":"^1.0.0"},"devDependencies":{"ava":"0.0.4"},"directories":{},"dist":{"shasum":"8f530a8ecf5d40d3f4b4df93c3472900fba2a8f1","tarball":"http://registry.npmjs.org/meow/-/meow-2.0.0.tgz"},"engines":{"node":">=0.10.0"}},"2.1.0":{"name":"meow","version":"2.1.0","dependencies":{"camelcase-keys":"^1.0.0","indent-string":"^1.1.0","minimist":"^1.1.0","object-assign":"^2.0.0"},"devDependencies":{"ava":"0.0.4"},"directories":{},"dist":{"shasum":"3a63f77977c150c16fd84484d0cef677c4182799","tarball":"http://registry.npmjs.org/meow/-/meow-2.1.0.tgz"},"engines":{"node":">=0.10.0"}},"3.0.0":{"name":"meow","version":"3.0.0","dependencies":{"camelcase-keys":"^1.0.0","indent-string":"^1.1.0","minimist":"^1.1.0","object-assign":"^2.0.0"},"devDependencies":{"ava":"0.0.4"},"directories":{},"dist":{"shasum":"07c0edaade76c77498618d119aebb18a28d91b6d","tarball":"http://registry.npmjs.org/meow/-/meow-3.0.0.tgz"},"engines":{"node":">=0.10.0"}},"3.1.0":{"name":"meow","version":"3.1.0","dependencies":{"camelcase-keys":"^1.0.0","indent-string":"^1.1.0","minimist":"^1.1.0","object-assign":"^2.0.0"},"devDependencies":{"ava":"0.0.4"},"directories":{},"dist":{"shasum":"5974708a0fe0dcbf27e0e6a49120b4c5e82c3cea","tarball":"http://registry.npmjs.org/meow/-/meow-3.1.0.tgz"},"engines":{"node":">=0.10.0"}},"3.3.0":{"name":"meow","version":"3.3.0","dependencies":{"camelcase-keys":"^1.0.0","indent-string":"^1.1.0","minimist":"^1.1.0","object-assign":"^3.0.0"},"devDependencies":{"ava":"0.0.4"},"directories":{},"dist":{"shasum":"f8777fd0db67f73d1de1beee08c97c8665efc6ed","tarball":"http://registry.npmjs.org/meow/-/meow-3.3.0.tgz"},"engines":{"node":">=0.10.0"}},"3.4.0":{"name":"meow","version":"3.4.0","dependencies":{"camelcase-keys":"^1.0.0","loud-rejection":"^1.0.0","minimist":"^1.1.3","object-assign":"^4.0.1","read-pkg-up":"^1.0.1","redent":"^1.0.0","trim-newlines":"^1.0.0"},"devDependencies":{"ava":"*","indent-string":"^2.1.0","xo":"*"},"directories":{},"dist":{"shasum":"e21ea52f050bb9053a8b96793d749f2961a16716","tarball":"http://registry.npmjs.org/meow/-/meow-3.4.0.tgz"},"engines":{"node":">=0.10.0"}},"3.4.1":{"name":"meow","version":"3.4.1","dependencies":{"camelcase-keys":"^1.0.0","loud-rejection":"^1.0.0","minimist":"^1.1.3","object-assign":"^4.0.1","read-pkg-up":"^1.0.1","redent":"^1.0.0","trim-newlines":"^1.0.0"},"devDependencies":{"ava":"*","indent-string":"^2.1.0","xo":"*"},"directories":{},"dist":{"shasum":"efbd3318202976592efc7c0feefb2e37fd793cea","tarball":"http://registry.npmjs.org/meow/-/meow-3.4.1.tgz"},"engines":{"node":">=0.10.0"}},"3.4.2":{"name":"meow","version":"3.4.2","dependencies":{"camelcase-keys":"^1.0.0","loud-rejection":"^1.0.0","minimist":"^1.1.3","normalize-package-data":"^2.3.4","object-assign":"^4.0.1","read-pkg-up":"^1.0.1","redent":"^1.0.0","trim-newlines":"^1.0.0"},"devDependencies":{"ava":"*","indent-string":"^2.1.0","xo":"*"},"directories":{},"dist":{"shasum":"5f11a00596301d7adc352d1b86fc8573df0b93f0","tarball":"http://registry.npmjs.org/meow/-/meow-3.4.2.tgz"},"engines":{"node":">=0.10.0"}},"3.5.0":{"name":"meow","version":"3.5.0","dependencies":{"camelcase-keys":"^1.0.0","loud-rejection":"^1.0.0","minimist":"^1.1.3","normalize-package-data":"^2.3.4","object-assign":"^4.0.1","read-pkg-up":"^1.0.1","redent":"^1.0.0","trim-newlines":"^1.0.0"},"devDependencies":{"ava":"*","indent-string":"^2.1.0","xo":"*"},"directories":{},"dist":{"shasum":"bc5a5d8b5b848ef6aa50158be0570182eb0d5e4d","tarball":"http://registry.npmjs.org/meow/-/meow-3.5.0.tgz"},"engines":{"node":">=0.10.0"}},"3.6.0":{"name":"meow","version":"3.6.0","dependencies":{"camelcase-keys":"^2.0.0","loud-rejection":"^1.0.0","minimist":"^1.1.3","normalize-package-data":"^2.3.4","object-assign":"^4.0.1","read-pkg-up":"^1.0.1","redent":"^1.0.0","trim-newlines":"^1.0.0"},"devDependencies":{"ava":"*","indent-string":"^2.1.0","xo":"*"},"directories":{},"dist":{"shasum":"e7a535295cb89db0e0782428e55fa8615bf9e150","tarball":"http://registry.npmjs.org/meow/-/meow-3.6.0.tgz"},"engines":{"node":">=0.10.0"}},"3.7.0":{"name":"meow","version":"3.7.0","dependencies":{"camelcase-keys":"^2.0.0","decamelize":"^1.1.2","loud-rejection":"^1.0.0","map-obj":"^1.0.1","minimist":"^1.1.3","normalize-package-data":"^2.3.4","object-assign":"^4.0.1","read-pkg-up":"^1.0.1","redent":"^1.0.0","trim-newlines":"^1.0.0"},"devDependencies":{"ava":"*","execa":"^0.1.1","indent-string":"^2.1.0","xo":"*"},"directories":{},"dist":{"shasum":"72cb668b425228290abbfa856892587308a801fb","tarball":"http://registry.npmjs.org/meow/-/meow-3.7.0.tgz"},"engines":{"node":">=0.10.0"}},"4.0.0":{"name":"meow","version":"4.0.0","dependencies":{"camelcase-keys":"^4.0.0","decamelize-keys":"^1.0.0","loud-rejection":"^1.0.0","minimist":"^1.1.3","minimist-options":"^3.0.1","normalize-package-data":"^2.3.4","read-pkg-up":"^3.0.0","redent":"^2.0.0","trim-newlines":"^2.0.0"},"devDependencies":{"ava":"*","execa":"^0.8.0","indent-string":"^3.0.0","xo":"*"},"directories":{},"dist":{"integrity":"sha512-Me/kel335m6vMKmEmA6c87Z6DUFW3JqkINRnxkbC+A/PUm0D5Fl2dEBQrPKnqCL9Te/CIa1MUt/0InMJhuC/sw==","shasum":"fd5855dd008db5b92c552082db1c307cba20b29d","tarball":"https://registry.npmjs.org/meow/-/meow-4.0.0.tgz"},"engines":{"node":">=4"}},"4.0.1":{"name":"meow","version":"4.0.1","dependencies":{"camelcase-keys":"^4.0.0","decamelize-keys":"^1.0.0","loud-rejection":"^1.0.0","minimist":"^1.1.3","minimist-options":"^3.0.1","normalize-package-data":"^2.3.4","read-pkg-up":"^3.0.0","redent":"^2.0.0","trim-newlines":"^2.0.0"},"devDependencies":{"ava":"*","execa":"^0.8.0","indent-string":"^3.0.0","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-xcSBHD5Z86zaOc+781KrupuHAzeGXSLtiAOmBsiLDiPSaYSB6hdew2ng9EBAnZ62jagG9MHAOdxpDi/lWBFJ/A==","shasum":"d48598f6f4b1472f35bf6317a95945ace347f975","tarball":"https://registry.npmjs.org/meow/-/meow-4.0.1.tgz","fileCount":4,"unpackedSize":8773,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa3/CVCRA9TVsSAnZWagAAKcQP/0tVUT4F/G87EvbspBrH\nI2gZps6h1Jol06dpEJGSzr4OH3hA/2bBhIfsvfIEv+rpcJKWKbRxjtgcwmG5\nZhSdgF1st2iorXpb1GWoLNCE/DSQ9ZES/00qi5hEGVJKIusQnRynESOxuLsD\ntIefEkE5NZGHir9OeeKgMA80zadTP7vzTwVcqS+121W2e3c8dgFhTYby5qfm\nuisFZmtEaKJd79HJ/dKpLqpxPLuvsV9I/QEe3heehF7rFySCoIqUD8gDgl9V\n5jSva5U0nwqIYB12fa+ZGi7vBaAHDzuI24YQPqRfaxLzFNh9oJfu95dqIEE3\nuewGbPnH0szHtrY8IoyYCUrm/tlgYJXDjJlRNMrAVpPEdgsBcYtgE5+U+/be\nshtxUcLo4I7QxBO900DJFJ/EGtWQM5DenBzXpwFOTp1pj0q7NZuGltzUiO1Q\nNl814649m6/1cW8lCapAZFJRfbifB+Py10uIJSOHCbB5NG2KKibfpU07nFKP\n4k6YGJLeJepSprNIjzBg7F1qOq3KzpB12YNcH07xByvEoJAK6FoRPdXjteqw\npiwypPCLYfL5bJ+KRWYs/EDN5/u2mCuYKDvT2FMquAxB+IWytPuXwLGWxNfn\njgpDTz6riUkoPEBUappwWE9H4Oj/6Nbr24q7jfbvQJZi02T35I/xYgsGZwma\nnBIm\r\n=XACV\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=4"}},"5.0.0":{"name":"meow","version":"5.0.0","dependencies":{"camelcase-keys":"^4.0.0","decamelize-keys":"^1.0.0","loud-rejection":"^1.0.0","minimist-options":"^3.0.1","normalize-package-data":"^2.3.4","read-pkg-up":"^3.0.0","redent":"^2.0.0","trim-newlines":"^2.0.0","yargs-parser":"^10.0.0"},"devDependencies":{"ava":"*","execa":"^0.10.0","indent-string":"^3.0.0","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-CbTqYU17ABaLefO8vCU153ZZlprKYWDljcndKKDCFcYQITzWCXZAVk4QMFZPgvzrnUQ3uItnIE/LoUOwrT15Ig==","shasum":"dfc73d63a9afc714a5e371760eb5c88b91078aa4","tarball":"https://registry.npmjs.org/meow/-/meow-5.0.0.tgz","fileCount":4,"unpackedSize":10123,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa3/SLCRA9TVsSAnZWagAAqOcP/0vi4WF6tYsGcx+2O05H\nmgKUqG8+QgUPbXihJgh9BC4ycp40//NFAFKBrW/m6fq8FjxXf7xvPhH9ehHj\npPlyb6R1IDaflGKszMFUwgE1HiBIbJ+kPQ+NxIKoiO/X12BqbNqYluD8Dc+U\nuvhftPlc2s5J92v9ew/CarpmOGnMoXSvZ4V3omrnhjkVJEDS6q8kTSW2/Kay\nexO60D/AYMt5DSPxJx/rFSUbdzen/1cC0JQ1tQoedAmfK0J7kkypVudLpizi\nN/O1UZ3h4w1IiD05SDt0UO0OokIxrBQTtW7byUgizPWVKslOfCRARJmFQqFc\nWOjkEVMjsYJ1CAOjjy3OO2xzRKbSw9aCdxOxSw22B2qwTk/cLj8jo93a3SZS\neY+6Qe5k1jfgULTdabA7+suLmSrp9pKD+XuzHMgFJDhELMnxJ9VyOZo3WyvZ\nJswLfMyPC3XkpL0Upt9lsV8tl++jJZWu7ARPvmy/eF5O9Eha5MDlJzeFQUMR\n9Ew7n8Q3N3iVx8BOmZEujOB4xdMYhNEWgziY/UQuCsOu9vJGGJ8geLI+PJP8\nRNgSgSCg8kq4nThrJWdwlj4rGuvkY84Xn7VOm8EY/QvZ+zryrp6awEk0ggkQ\nMzCxOjUp51/dS0glnMDh9QK0RslT7rToaVXWJ/nLEwyjmaq2zaME8Y+W5Gmv\niG3p\r\n=sT83\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=6"}}},"name":"meow","dist-tags":{"latest":"5.0.0"},"modified":"2018-10-18T08:03:10.097Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/8d/e2/11a70208bd01f39919682496ec81524531cd691258ab7a7366518662e451a7b7ff434145f5533f9ee08de7fc2ff77459b7855b08046782dd5a329c7b68ea b/npm/.npm/_cacache/content-v2/sha512/8d/e2/11a70208bd01f39919682496ec81524531cd691258ab7a7366518662e451a7b7ff434145f5533f9ee08de7fc2ff77459b7855b08046782dd5a329c7b68ea new file mode 100644 index 0000000..a5a6e55 --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/8d/e2/11a70208bd01f39919682496ec81524531cd691258ab7a7366518662e451a7b7ff434145f5533f9ee08de7fc2ff77459b7855b08046782dd5a329c7b68ea @@ -0,0 +1 @@ +{"versions":{"0.0.0":{"name":"brace-expansion","version":"0.0.0","dependencies":{"concat-map":"0.0.0","balanced-match":"0.0.0"},"devDependencies":{"tape":"~1.1.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"b2142015e8ee12d4cdae2a23908d28d44c2baa9f","tarball":"https://registry.npmjs.org/brace-expansion/-/brace-expansion-0.0.0.tgz"}},"1.0.0":{"name":"brace-expansion","version":"1.0.0","dependencies":{"balanced-match":"^0.2.0","concat-map":"0.0.0"},"devDependencies":{"tape":"~1.1.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"a01656d12ebbbd067c8e935903f194ea5efee4ee","tarball":"https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.0.0.tgz"}},"1.0.1":{"name":"brace-expansion","version":"1.0.1","dependencies":{"balanced-match":"^0.2.0","concat-map":"0.0.0"},"devDependencies":{"tape":"~1.1.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"817708d72ab27a8c312d25efababaea963439ed5","tarball":"https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.0.1.tgz"}},"1.1.0":{"name":"brace-expansion","version":"1.1.0","dependencies":{"balanced-match":"^0.2.0","concat-map":"0.0.1"},"devDependencies":{"tape":"^3.0.3"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"c9b7d03c03f37bc704be100e522b40db8f6cfcd9","tarball":"https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.0.tgz"}},"1.1.1":{"name":"brace-expansion","version":"1.1.1","dependencies":{"balanced-match":"^0.2.0","concat-map":"0.0.1"},"devDependencies":{"tape":"^3.0.3"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"da5fb78aef4c44c9e4acf525064fb3208ebab045","tarball":"https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.1.tgz"}},"1.1.2":{"name":"brace-expansion","version":"1.1.2","dependencies":{"balanced-match":"^0.3.0","concat-map":"0.0.1"},"devDependencies":{"tape":"4.2.2"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"f21445d0488b658e2771efd870eff51df29f04ef","tarball":"https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.2.tgz"}},"1.1.3":{"name":"brace-expansion","version":"1.1.3","dependencies":{"balanced-match":"^0.3.0","concat-map":"0.0.1"},"devDependencies":{"tape":"4.4.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"46bff50115d47fc9ab89854abb87d98078a10991","tarball":"https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.3.tgz"}},"1.1.4":{"name":"brace-expansion","version":"1.1.4","dependencies":{"balanced-match":"^0.4.1","concat-map":"0.0.1"},"devDependencies":{"tape":"4.5.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"464a204c77f482c085c2a36c456bbfbafb67a127","tarball":"https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.4.tgz"}},"1.1.5":{"name":"brace-expansion","version":"1.1.5","dependencies":{"balanced-match":"^0.4.1","concat-map":"0.0.1"},"devDependencies":{"tape":"4.5.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"f5b4ad574e2cb7ccc1eb83e6fe79b8ecadf7a526","tarball":"https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.5.tgz"}},"1.1.6":{"name":"brace-expansion","version":"1.1.6","dependencies":{"balanced-match":"^0.4.1","concat-map":"0.0.1"},"devDependencies":{"tape":"^4.6.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"7197d7eaa9b87e648390ea61fc66c84427420df9","tarball":"https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.6.tgz"}},"1.1.7":{"name":"brace-expansion","version":"1.1.7","dependencies":{"balanced-match":"^0.4.1","concat-map":"0.0.1"},"devDependencies":{"matcha":"^0.7.0","tape":"^4.6.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"3effc3c50e000531fb720eaff80f0ae8ef23cf59","tarball":"https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.7.tgz"}},"1.1.8":{"name":"brace-expansion","version":"1.1.8","dependencies":{"balanced-match":"^1.0.0","concat-map":"0.0.1"},"devDependencies":{"matcha":"^0.7.0","tape":"^4.6.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"c07b211c7c952ec1f8efd51a77ef0d1d3990a292","tarball":"https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.8.tgz"}},"1.1.9":{"name":"brace-expansion","version":"1.1.9","dependencies":{"balanced-match":"^1.0.0","concat-map":"0.0.1"},"devDependencies":{"matcha":"^0.7.0","tape":"^4.6.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-/+o3o6OV1cm3WKrO7U4wykU+ZICE6HiMEuravc2d03NIuM/VaRn5iMcoQ7NyxFXjvpmRICP2EER0YOnh4yIapA==","shasum":"acdc7dde0e939fb3b32fe933336573e2a7dc2b7c","tarball":"https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.9.tgz","fileCount":3,"unpackedSize":9867}},"1.1.10":{"name":"brace-expansion","version":"1.1.10","dependencies":{"balanced-match":"^1.0.0","concat-map":"0.0.1"},"devDependencies":{"matcha":"^0.7.0","tape":"^4.6.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-u0KjSZq9NOEh36yRmKT/pIYOu0rpGAyUTeUmJgNd1K2tpAaUomh092TZ0fqbBGQc4hz85BVngAiB2mqekvQvIw==","shasum":"5205cdf64c9798c180dc74b7bfc670c3974e6300","tarball":"https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.10.tgz","fileCount":4,"unpackedSize":10964}},"1.1.11":{"name":"brace-expansion","version":"1.1.11","dependencies":{"balanced-match":"^1.0.0","concat-map":"0.0.1"},"devDependencies":{"matcha":"^0.7.0","tape":"^4.6.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==","shasum":"3c7fcbf529d87226f3d2f52b966ff5271eb441dd","tarball":"https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz","fileCount":4,"unpackedSize":11059}}},"name":"brace-expansion","dist-tags":{"latest":"1.1.11"},"modified":"2018-02-10T07:42:24.286Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/8f/9b/d278b96eee0308b65387fff84b28f1cd59410e7fe058d1fb5cf3f16234432650c716e7e56d07ab29e1c8111b5d5446fb33b855571a401b6495fffa0c84bf b/npm/.npm/_cacache/content-v2/sha512/8f/9b/d278b96eee0308b65387fff84b28f1cd59410e7fe058d1fb5cf3f16234432650c716e7e56d07ab29e1c8111b5d5446fb33b855571a401b6495fffa0c84bf new file mode 100644 index 0000000..6eb29c4 --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/8f/9b/d278b96eee0308b65387fff84b28f1cd59410e7fe058d1fb5cf3f16234432650c716e7e56d07ab29e1c8111b5d5446fb33b855571a401b6495fffa0c84bf @@ -0,0 +1 @@ +{"versions":{"0.1.0":{"name":"grunt-cli","version":"0.1.0","dependencies":{"grunt":"~0.4.0a","lodash":"~0.9.0","glob":"~3.1.13","findup-sync":"~0.1.0"},"bin":{"grunt":"bin/grunt"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"10ec36212714bde8553d8ec78fa206eb1156e3d0","tarball":"https://registry.npmjs.org/grunt-cli/-/grunt-cli-0.1.0.tgz"},"engines":{"node":">= 0.8.0"}},"0.1.1":{"name":"grunt-cli","version":"0.1.1","dependencies":{"grunt":"~0.4.0a","lodash":"~0.9.0","glob":"~3.1.13","findup-sync":"~0.1.0"},"bin":{"grunt":"bin/grunt"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"bbc547c727fa8296ddca142140f9ef4f360e4c01","tarball":"https://registry.npmjs.org/grunt-cli/-/grunt-cli-0.1.1.tgz"},"engines":{"node":">= 0.8.0"}},"0.1.2":{"name":"grunt-cli","version":"0.1.2","dependencies":{"lodash":"~0.9.0","glob":"~3.1.13","findup-sync":"~0.1.0"},"bin":{"grunt":"bin/grunt"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"97733bd25d35a2ff026538b5608a9ae06d819296","tarball":"https://registry.npmjs.org/grunt-cli/-/grunt-cli-0.1.2.tgz"},"engines":{"node":">= 0.8.0"}},"0.1.3":{"name":"grunt-cli","version":"0.1.3","dependencies":{"nopt":"~1.0.10","findup-sync":"~0.1.0"},"bin":{"grunt":"bin/grunt"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"65f47e3688559cab7827cadbd69804d832b3a08a","tarball":"https://registry.npmjs.org/grunt-cli/-/grunt-cli-0.1.3.tgz"},"engines":{"node":">= 0.8.0"}},"0.1.4":{"name":"grunt-cli","version":"0.1.4","dependencies":{"nopt":"~1.0.10","findup-sync":"~0.1.0"},"bin":{"grunt":"bin/grunt"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"0ead097413a2312be29cd47315a5b2cf1abe5795","tarball":"https://registry.npmjs.org/grunt-cli/-/grunt-cli-0.1.4.tgz"},"engines":{"node":">= 0.8.0"}},"0.1.5":{"name":"grunt-cli","version":"0.1.5","dependencies":{"nopt":"~1.0.10","findup-sync":"~0.1.0"},"devDependencies":{"grunt":"~0.4.0rc4","grunt-contrib-jshint":"~0.1.0"},"bin":{"grunt":"bin/grunt"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"a97ea38c94718c8b801001395c3d1f1dfc6fa1c8","tarball":"https://registry.npmjs.org/grunt-cli/-/grunt-cli-0.1.5.tgz"},"engines":{"node":">= 0.8.0"}},"0.1.6":{"name":"grunt-cli","version":"0.1.6","dependencies":{"nopt":"~1.0.10","findup-sync":"~0.1.0"},"devDependencies":{"grunt":"~0.4.0rc4","grunt-contrib-jshint":"~0.1.0"},"bin":{"grunt":"bin/grunt"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"fd541b4ed908215229f8444e73e18cdbb626f413","tarball":"https://registry.npmjs.org/grunt-cli/-/grunt-cli-0.1.6.tgz"},"engines":{"node":">= 0.8.0"}},"0.1.7":{"name":"grunt-cli","version":"0.1.7","dependencies":{"nopt":"~1.0.10","findup-sync":"~0.1.0","resolve":"~0.3.1"},"devDependencies":{"grunt":"~0.4.0","grunt-contrib-jshint":"~0.2.0"},"bin":{"grunt":"bin/grunt"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"9419180351608f18f0f765ccd72e8ce502ea431a","tarball":"https://registry.npmjs.org/grunt-cli/-/grunt-cli-0.1.7.tgz"},"engines":{"node":">= 0.8.0"}},"0.1.8":{"name":"grunt-cli","version":"0.1.8","dependencies":{"nopt":"~1.0.10","findup-sync":"~0.1.0","resolve":"~0.3.1"},"devDependencies":{"grunt":"~0.4.0","grunt-contrib-jshint":"~0.2.0"},"bin":{"grunt":"bin/grunt"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"74b59b91487a4ce061a4001d592ddac85de402d2","tarball":"https://registry.npmjs.org/grunt-cli/-/grunt-cli-0.1.8.tgz"},"engines":{"node":">= 0.8.0"}},"0.1.9":{"name":"grunt-cli","version":"0.1.9","dependencies":{"nopt":"~1.0.10","findup-sync":"~0.1.0","resolve":"~0.3.1"},"devDependencies":{"grunt":"~0.4.0","grunt-contrib-jshint":"~0.2.0"},"bin":{"grunt":"bin/grunt"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"3f08bfb0bef30ba33083defe53efe0575cbe4e14","tarball":"https://registry.npmjs.org/grunt-cli/-/grunt-cli-0.1.9.tgz"},"engines":{"node":">= 0.8.0"}},"0.1.10":{"name":"grunt-cli","version":"0.1.10","dependencies":{"nopt":"~1.0.10","findup-sync":"~0.1.0","resolve":"~0.3.1"},"devDependencies":{"grunt":"~0.4.0","grunt-contrib-jshint":"~0.2.0"},"bin":{"grunt":"bin/grunt"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"cba4bdab74df4336f5ba7335a9f22d97a1f2dd3a","tarball":"https://registry.npmjs.org/grunt-cli/-/grunt-cli-0.1.10.tgz"},"engines":{"node":">= 0.8.0"}},"0.1.11":{"name":"grunt-cli","version":"0.1.11","dependencies":{"nopt":"~1.0.10","findup-sync":"~0.1.0","resolve":"~0.3.1"},"devDependencies":{"grunt":"~0.4.0","grunt-contrib-jshint":"~0.2.0"},"bin":{"grunt":"bin/grunt"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"a0d785b7f8633983ecb5e6af8397feb6e39dd0a8","tarball":"https://registry.npmjs.org/grunt-cli/-/grunt-cli-0.1.11.tgz"},"engines":{"node":">= 0.8.0"}},"0.1.12":{"name":"grunt-cli","version":"0.1.12","dependencies":{"nopt":"~1.0.10","findup-sync":"~0.1.0","resolve":"~0.3.1"},"devDependencies":{"grunt":"~0.4.0","grunt-contrib-jshint":"~0.2.0"},"bin":{"grunt":"bin/grunt"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"ecb8319985790e342713a5c3136f956b70616403","tarball":"https://registry.npmjs.org/grunt-cli/-/grunt-cli-0.1.12.tgz"},"engines":{"node":">= 0.8.0"}},"0.1.13":{"name":"grunt-cli","version":"0.1.13","dependencies":{"nopt":"~1.0.10","findup-sync":"~0.1.0","resolve":"~0.3.1"},"devDependencies":{"grunt":"~0.4.0","grunt-contrib-jshint":"~0.2.0"},"bin":{"grunt":"bin/grunt"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"e9ebc4047631f5012d922770c39378133cad10f4","tarball":"https://registry.npmjs.org/grunt-cli/-/grunt-cli-0.1.13.tgz"},"engines":{"node":">= 0.8.0"}},"1.0.0-rc1":{"name":"grunt-cli","version":"1.0.0-rc1","dependencies":{"findup-sync":"~0.3.0","nopt":"~3.0.6","resolve":"~1.1.0"},"devDependencies":{"grunt":"~0.4.5","grunt-contrib-jshint":"~0.12.0"},"bin":{"grunt":"bin/grunt"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"fd4057ac9348a9e83754fada7aa2382d2bd98fa3","tarball":"https://registry.npmjs.org/grunt-cli/-/grunt-cli-1.0.0-rc1.tgz"},"engines":{"node":">=0.10.0"}},"1.0.0":{"name":"grunt-cli","version":"1.0.0","dependencies":{"findup-sync":"~0.3.0","nopt":"~3.0.6","resolve":"~1.1.0"},"devDependencies":{"grunt":"~0.4.5","grunt-contrib-jshint":"~1.0.0"},"bin":{"grunt":"bin/grunt"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"3cfb9ecc270a4b9a55adfd9e46479eb0b3f5dc6b","tarball":"https://registry.npmjs.org/grunt-cli/-/grunt-cli-1.0.0.tgz"},"engines":{"node":">=0.10.0"}},"1.0.1":{"name":"grunt-cli","version":"1.0.1","dependencies":{"findup-sync":"~0.3.0","nopt":"~1.0.10","resolve":"~1.1.0"},"devDependencies":{"grunt":"~0.4.5","grunt-contrib-jshint":"~1.0.0"},"bin":{"grunt":"bin/grunt"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"881414ec42d2fcea1b96f0310005f80db5bbc852","tarball":"https://registry.npmjs.org/grunt-cli/-/grunt-cli-1.0.1.tgz"},"engines":{"node":">=0.10.0"}},"1.1.0":{"name":"grunt-cli","version":"1.1.0","dependencies":{"findup-sync":"~0.3.0","nopt":"~3.0.6","resolve":"~1.1.0"},"devDependencies":{"grunt":"~0.4.5","grunt-contrib-jshint":"~1.0.0"},"bin":{"grunt":"bin/grunt"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"afd7969934ddf33620e8447edc1fa94e51e55a34","tarball":"https://registry.npmjs.org/grunt-cli/-/grunt-cli-1.1.0.tgz"},"engines":{"node":">=0.10.0"}},"1.2.0":{"name":"grunt-cli","version":"1.2.0","dependencies":{"findup-sync":"~0.3.0","grunt-known-options":"~1.1.0","nopt":"~3.0.6","resolve":"~1.1.0"},"devDependencies":{"grunt":"~0.4.5","grunt-contrib-jshint":"~1.0.0"},"bin":{"grunt":"bin/grunt"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"562b119ebb069ddb464ace2845501be97b35b6a8","tarball":"https://registry.npmjs.org/grunt-cli/-/grunt-cli-1.2.0.tgz"},"engines":{"node":">=0.10.0"}},"1.3.0":{"name":"grunt-cli","version":"1.3.0","dependencies":{"grunt-known-options":"~1.1.0","interpret":"~1.1.0","liftoff":"~2.5.0","nopt":"~4.0.1","v8flags":"~3.0.2"},"devDependencies":{"grunt":"~1.0.2","grunt-contrib-jshint":"~1.1.0"},"bin":{"grunt":"bin/grunt"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-XPTy8cfSbIrf2Gt0WDjn3EzW/xm6n7RnFX0koi5T87xNBIzJbcM8BFf+rTheKHO+C7AmA/w8PWCCEGumg2yWtA==","shasum":"89e7e7963d23af8f72b46e343ba4ae7b3f8f0435","tarball":"https://registry.npmjs.org/grunt-cli/-/grunt-cli-1.3.0.tgz","fileCount":8,"unpackedSize":9946,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbdMArCRA9TVsSAnZWagAAJp0QAJrrpeBf8sxmJux6JQEC\n5ssaF21/PJgTG9zGoN/JplDSZUyA+QbFhyLjvA9CCb/hG0c73jCI91SuTKiW\nQrfaTsFdMD+DUa6K1WJ+Zp78Cp6G410SfNe+5cFCCiCpKWK3cT18tBkMYHc3\nTS1N69UYNheOLrml4QTD+JIMzQhf+sRXdXRgTKxT8azNgsqtX46VwbpVIXpg\n9nijhHEoy9nfMGLv/CVfaneGOfXTRjxXa2iLqPfh2t7aix8/D0BvvIwrchRL\nQ1Mwc8BIfBoYX/Krv56wWFriVz4pmN27TQolA9555ACV1CuZNeDXL+HnbKwU\nrizbm0IR4nNagnTWy09RqhilFzKbWWMEpyTVYgkXWVHLwgVg5K80NNs7xVKE\n/ww0CBSj9DUo8/NKGbfhOB6qJNQ++u1lELyWi7e6ZMXJuYGnJVkQbhm09nMV\nD/G3usUWDYfvIUrpQNAoso2JQTSmGn9LFvXsiyan+hOYMl7Un8nUSg10eBXY\n2j6/qxhMvXBmH5jm8cRjG466qKlSR4WPy3gC72+Hv/p8cghgTRJ+SwXpyOjq\niltc7vjbInO7HfbYW6v/XpdalnUnE7a8tq6zc30e4oRSa8RS2cWoOKfWajD5\nOY0vyvISoYBVzRQHEOPXAcJYnq0ShCBeZk2hW5/V8NbUi01QWHk67ASgGqDk\nI/m8\r\n=fumt\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=4"}},"1.3.1":{"name":"grunt-cli","version":"1.3.1","dependencies":{"grunt-known-options":"~1.1.0","interpret":"~1.1.0","liftoff":"~2.5.0","nopt":"~4.0.1","v8flags":"~3.0.2"},"devDependencies":{"grunt":"~1.0.2","grunt-contrib-jshint":"~1.1.0"},"bin":{"grunt":"bin/grunt"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-UwBRu/QpAjDc53DRLEkyilFdL0zenpxu+fddTIlsF/KJqdNcHaQmvyu1W3cDesZ9rqqZdKK5A8+QDIyLUEWoZQ==","shasum":"b9cb5b7a7200e490711e1ee7cb049c9a815471f0","tarball":"https://registry.npmjs.org/grunt-cli/-/grunt-cli-1.3.1.tgz","fileCount":8,"unpackedSize":9947,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbeOpyCRA9TVsSAnZWagAAGjEP/38hWyhghJwFXiZP8KzQ\nKP3/mNhuCFaGy/Tdh4MzXCOXEkJMqzPrZ1fHWiQ3ZW+1nhrKhyjuQe2Gqqrk\na5x+9KuZ4bY7S/9AlE5O/ZG84TtBKl2MxQw6YW8TJZmBPZGdhZ2elL+x2ZBH\nvccABrQCcGJbBzbO04X8qvnLFQfV5F5mpKM9E/E8CH8LnkRunr77qlueMW5s\n7f9WJP58DDKQd07/3fG3G8JjNKkQZhsQv31Lx2NP+VbnXk+EUKi6A83dGRgB\n/5WT+0FIlYa7rBKpaLUBtocD0/iUpgpMSSQBLGIhTnU61mrsljqePnQ7/RMn\nCmkahSL+a5r7HEPoFpCsiyflaTCSnpKJ73IMCvPdVct93lhnpDQY+CLc8MBE\nrTQuRloHxvC6jCF6mOC4au+75hYw99OJEm8mQYOeaQNazjtO/3soorCQJLop\nsW+h/N6h7IVlPEswPe/BInfE0NKMd96c3l4bw1Zj1E5fFfjDgKhLPtbgPfCA\nRdmzAdCs3E0SeYgyQQBX5+Pgrj+HfoB3J0dgg55JtSpumYKAbIopBx/zo0MI\nE6BR6/GrTJ1kFCWdiOR2CJwnspwN+ZgrIIkExRG+n+84gJtm8dO/uw1NXmDh\nocJbws+qGiK55T/hM7Xrh4p5XA/8GzkiWZOsUDZ5LggZKYMpKw8AB2TRFtrd\nYaFZ\r\n=rrZj\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=4"}}},"name":"grunt-cli","dist-tags":{"latest":"1.3.1","rc1":"1.0.0-rc1"},"modified":"2018-08-19T03:56:36.723Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/90/90/7b0d9028e5d72beba04af42d5a0711a562a000500d95f80e1ef5ad861f6278db57bb595776772d3f9d42505ccd23556ccc77e0bd53e0b01e1001fa7325af b/npm/.npm/_cacache/content-v2/sha512/90/90/7b0d9028e5d72beba04af42d5a0711a562a000500d95f80e1ef5ad861f6278db57bb595776772d3f9d42505ccd23556ccc77e0bd53e0b01e1001fa7325af new file mode 100644 index 0000000..d09dad6 --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/90/90/7b0d9028e5d72beba04af42d5a0711a562a000500d95f80e1ef5ad861f6278db57bb595776772d3f9d42505ccd23556ccc77e0bd53e0b01e1001fa7325af @@ -0,0 +1 @@ +{"versions":{"0.0.7":{"name":"sprintf-js","version":"0.0.7","_hasShrinkwrap":false,"directories":{"test":"test"},"dist":{"shasum":"f00d78fd160130809b4ab340c0310faa71253dbd","tarball":"https://registry.npmjs.org/sprintf-js/-/sprintf-js-0.0.7.tgz"}},"1.0.1":{"name":"sprintf-js","version":"1.0.1","devDependencies":{"mocha":"*","grunt":"*","grunt-contrib-watch":"*","grunt-contrib-uglify":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"57ed6d7fe6240c1b2e7638431b57704f86a7f0ef","tarball":"https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.1.tgz"}},"1.0.2":{"name":"sprintf-js","version":"1.0.2","devDependencies":{"mocha":"*","grunt":"*","grunt-contrib-watch":"*","grunt-contrib-uglify":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"11e4d84ff32144e35b0bf3a66f8587f38d8f9978","tarball":"https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.2.tgz"}},"1.0.3":{"name":"sprintf-js","version":"1.0.3","devDependencies":{"mocha":"*","grunt":"*","grunt-contrib-watch":"*","grunt-contrib-uglify":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"04e6926f662895354f3dd015203633b857297e2c","tarball":"https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz"}},"1.1.0":{"name":"sprintf-js","version":"1.1.0","devDependencies":{"benchmark":"^2.1.4","gulp":"^3.9.0","gulp-benchmark":"^1.1.1","gulp-header":"^1.7.1","gulp-jshint":"^2.0.0","gulp-mocha":"^4.3.1","gulp-rename":"^1.2.2","gulp-sourcemaps":"^2.6.0","gulp-uglify":"^2.1.2","jshint":"^2.9.1","mocha":"^3.3.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"cffcaf702daf65ea39bb4e0fa2b299cec1a1be46","tarball":"https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.0.tgz"}},"1.1.1":{"name":"sprintf-js","version":"1.1.1","devDependencies":{"benchmark":"^2.1.4","eslint":"3.19.0","gulp":"^3.9.1","gulp-benchmark":"^1.1.1","gulp-eslint":"^3.0.1","gulp-header":"^1.8.8","gulp-mocha":"^4.3.1","gulp-rename":"^1.2.2","gulp-sourcemaps":"^2.6.0","gulp-uglify":"^3.0.0","mocha":"^3.4.2"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"36be78320afe5801f6cea3ee78b6e5aab940ea0c","tarball":"https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.1.tgz"}}},"name":"sprintf-js","dist-tags":{"latest":"1.1.1"},"modified":"2018-03-19T09:53:31.210Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/91/37/78a39a32af4d530be5b8c0316f57302fc0fd734b1277de05df3b8dd363a3551e75950245e26c0c84cb5a32fbb6f98e58f397ebbdd5d7e4e9fa6192570fbb b/npm/.npm/_cacache/content-v2/sha512/91/37/78a39a32af4d530be5b8c0316f57302fc0fd734b1277de05df3b8dd363a3551e75950245e26c0c84cb5a32fbb6f98e58f397ebbdd5d7e4e9fa6192570fbb new file mode 100644 index 0000000..cce58ad --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/91/37/78a39a32af4d530be5b8c0316f57302fc0fd734b1277de05df3b8dd363a3551e75950245e26c0c84cb5a32fbb6f98e58f397ebbdd5d7e4e9fa6192570fbb @@ -0,0 +1 @@ +{"versions":{"0.2.3":{"name":"hooker","version":"0.2.3","dependencies":{},"optionalDependencies":{},"devDependencies":{"grunt":"~0.2.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"b834f723cc4a242aa65963459df6d984c5d3d959","tarball":"https://registry.npmjs.org/hooker/-/hooker-0.2.3.tgz"},"engines":{"node":"*"}}},"name":"hooker","dist-tags":{"latest":"0.2.3"},"modified":"2018-08-03T00:44:06.156Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/96/4d/01bc757c3d62aca07c6dc8267b18225dbfe06b168898c7b0e747e600f548fffa14e0d3ff896f0381dda4bb659b48197752436f1c9ad9db9e9082fc0000da b/npm/.npm/_cacache/content-v2/sha512/96/4d/01bc757c3d62aca07c6dc8267b18225dbfe06b168898c7b0e747e600f548fffa14e0d3ff896f0381dda4bb659b48197752436f1c9ad9db9e9082fc0000da new file mode 100644 index 0000000..2d745be --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/96/4d/01bc757c3d62aca07c6dc8267b18225dbfe06b168898c7b0e747e600f548fffa14e0d3ff896f0381dda4bb659b48197752436f1c9ad9db9e9082fc0000da @@ -0,0 +1 @@ +{"versions":{"1.0.3":{"name":"abbrev","version":"1.0.3","_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"aa049c967f999222aa42e14434f0c562ef468241","tarball":"https://registry.npmjs.org/abbrev/-/abbrev-1.0.3.tgz"},"engines":{"node":"*"}},"1.0.4":{"name":"abbrev","version":"1.0.4","_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"bd55ae5e413ba1722ee4caba1f6ea10414a59ecd","tarball":"https://registry.npmjs.org/abbrev/-/abbrev-1.0.4.tgz"}},"1.0.5":{"name":"abbrev","version":"1.0.5","_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"5d8257bd9ebe435e698b2fa431afde4fe7b10b03","tarball":"https://registry.npmjs.org/abbrev/-/abbrev-1.0.5.tgz"}},"1.0.6":{"name":"abbrev","version":"1.0.6","_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"b6d632b859b3fa2d6f7e4b195472461b9e32dc30","tarball":"https://registry.npmjs.org/abbrev/-/abbrev-1.0.6.tgz"}},"1.0.7":{"name":"abbrev","version":"1.0.7","devDependencies":{"tap":"^1.2.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"5b6035b2ee9d4fb5cf859f08a9be81b208491843","tarball":"https://registry.npmjs.org/abbrev/-/abbrev-1.0.7.tgz"}},"1.0.9":{"name":"abbrev","version":"1.0.9","devDependencies":{"tap":"^5.7.2"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"91b4792588a7738c25f35dd6f63752a2f8776135","tarball":"https://registry.npmjs.org/abbrev/-/abbrev-1.0.9.tgz"}},"1.1.0":{"name":"abbrev","version":"1.1.0","devDependencies":{"tap":"^10.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"d0554c2256636e2f56e7c2e5ad183f859428d81f","tarball":"https://registry.npmjs.org/abbrev/-/abbrev-1.1.0.tgz"}},"1.1.1":{"name":"abbrev","version":"1.1.1","devDependencies":{"tap":"^10.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==","shasum":"f8f2c887ad10bf67f634f005b6987fed3179aac8","tarball":"https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz"}}},"name":"abbrev","dist-tags":{"latest":"1.1.1"},"modified":"2018-04-13T18:44:24.635Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/96/b7/9ec0b2bf0658219b1b5f1f7e986158358bc20071ee1323ba1aa3be48d60db8e7ee8172da935508813f761427d0ba0d039726691847d5fd7c22ed08e25ce7 b/npm/.npm/_cacache/content-v2/sha512/96/b7/9ec0b2bf0658219b1b5f1f7e986158358bc20071ee1323ba1aa3be48d60db8e7ee8172da935508813f761427d0ba0d039726691847d5fd7c22ed08e25ce7 new file mode 100644 index 0000000..be6bd68 Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha512/96/b7/9ec0b2bf0658219b1b5f1f7e986158358bc20071ee1323ba1aa3be48d60db8e7ee8172da935508813f761427d0ba0d039726691847d5fd7c22ed08e25ce7 differ diff --git a/npm/.npm/_cacache/content-v2/sha512/96/d2/90fafb2dbf27f6f38b0d5e0ce775d118839fe1968d1ad8740d6f9e2461787f8d5bc8c751f826093bc05851a97e9f63e115180c0cd2757a784fa15a2f0672 b/npm/.npm/_cacache/content-v2/sha512/96/d2/90fafb2dbf27f6f38b0d5e0ce775d118839fe1968d1ad8740d6f9e2461787f8d5bc8c751f826093bc05851a97e9f63e115180c0cd2757a784fa15a2f0672 new file mode 100644 index 0000000..37380a5 --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/96/d2/90fafb2dbf27f6f38b0d5e0ce775d118839fe1968d1ad8740d6f9e2461787f8d5bc8c751f826093bc05851a97e9f63e115180c0cd2757a784fa15a2f0672 @@ -0,0 +1 @@ +{"versions":{"0.0.1":{"name":"color-name","version":"0.0.1","directories":{},"dist":{"shasum":"c824e087906bc0683062ab47272df7be6ec94659","tarball":"http://registry.npmjs.org/color-name/-/color-name-0.0.1.tgz"}},"0.0.2":{"name":"color-name","version":"0.0.2","directories":{},"dist":{"shasum":"767c4389d07d4bec162f5fb0b87a8c9b81a3c0af","tarball":"http://registry.npmjs.org/color-name/-/color-name-0.0.2.tgz"}},"1.0.0":{"name":"color-name","version":"1.0.0","directories":{},"dist":{"shasum":"ce3579a4ef43b672bee4f37e8876332b5a36e6b5","tarball":"http://registry.npmjs.org/color-name/-/color-name-1.0.0.tgz"}},"1.0.1":{"name":"color-name","version":"1.0.1","directories":{},"dist":{"shasum":"6b34b2b29b7716013972b0b9d5bedcfbb6718df8","tarball":"http://registry.npmjs.org/color-name/-/color-name-1.0.1.tgz"}},"1.1.0":{"name":"color-name","version":"1.1.0","directories":{},"dist":{"shasum":"a5481420307855e5bdbdbc26bc4b39d864828fcd","tarball":"http://registry.npmjs.org/color-name/-/color-name-1.1.0.tgz"}},"1.1.1":{"name":"color-name","version":"1.1.1","directories":{},"dist":{"shasum":"4b1415304cf50028ea81643643bd82ea05803689","tarball":"http://registry.npmjs.org/color-name/-/color-name-1.1.1.tgz"}},"1.1.2":{"name":"color-name","version":"1.1.2","directories":{},"dist":{"shasum":"5c8ab72b64bd2215d617ae9559ebb148475cf98d","tarball":"https://registry.npmjs.org/color-name/-/color-name-1.1.2.tgz"}},"1.1.3":{"name":"color-name","version":"1.1.3","directories":{},"dist":{"shasum":"a7d0558bd89c42f795dd42328f740831ca53bc25","tarball":"https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz"}},"1.1.4":{"name":"color-name","version":"1.1.4","_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==","shasum":"c2a09a87acbde69543de6f63fa3995c826c536a2","tarball":"https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz","fileCount":4,"unpackedSize":6693,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbpMyZCRA9TVsSAnZWagAA8GsP/0AsmYCiGphh3CFKIPep\nvNTX/KZgee4XYpqtD9GtlSg2t7vq3RzzMqe0ZVaVtI6lHu6xbx1sjCSKveN2\nhhzpchB4yDFadju+d180Blrawa+JAuJW+mG5k346Iqt6d8zuPPrHhraR6fEY\ntHCVxhQiHpgyzoyMATZnII8fNc236SCgvDwV0vJsJS3xbJp21peIVgZAOZg+\nKNzcM6dH1yxgZb99THhHYI4za/+xkIm2oy8o9AKIJz8HcogqOG5MHaklc5R+\niZlIE5A9KpbUbLerhUatXUKu6CeosCbQcPcYsOfifXw5ifQunM86ySU6OgQF\nSADAeVO6k5ZBFvzaSjc7La7+MisZ2KPAKiegCLMxcqc5xVBCcjZb0F7vS59m\nHTAa/uHLgmv76wiNMz2zHR+1qYWt3/mQq5OItunccFZQ5jxw3JWzygY9C/Zs\ndUakmc6+pCScPuDzs6OruKqHPk4S0fv8HfH8wBGFzd0GvHtT8xKUmit5p6G7\nTIPJV+dVaz5iO8uhhtUpVUogs8Y9DyoRDBaz3Btq19B8sYBwacMlRZCHiwBQ\nYdpTe9Go7NBPUNYEUsiSiZxCT6GuIdCit6P6Dwx6AZ3+DdeTEB1DcF9UVycE\nwbc1jz10q0pTbW5REgtFZ5eDTVXUkepA3+P6sLwubq7yu8lsqO34tYp3rOop\nshOJ\r\n=Rq6j\r\n-----END PGP SIGNATURE-----\r\n"}}},"name":"color-name","dist-tags":{"latest":"1.1.4"},"modified":"2018-09-21T10:48:59.304Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/97/05/7306d6a596a9e260bd7b9b8b26445502dd207bc5cbb9da55b20935744c5d47d4aaee5d3dec69d0613254d8223a8efc194b9468d23411013e27382e073b9a b/npm/.npm/_cacache/content-v2/sha512/97/05/7306d6a596a9e260bd7b9b8b26445502dd207bc5cbb9da55b20935744c5d47d4aaee5d3dec69d0613254d8223a8efc194b9468d23411013e27382e073b9a new file mode 100644 index 0000000..4db5bd1 --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/97/05/7306d6a596a9e260bd7b9b8b26445502dd207bc5cbb9da55b20935744c5d47d4aaee5d3dec69d0613254d8223a8efc194b9468d23411013e27382e073b9a @@ -0,0 +1 @@ +{"versions":{"1.0.0":{"name":"read-pkg","version":"1.0.0","dependencies":{"load-json-file":"^1.0.0","normalize-package-data":"^2.3.2"},"devDependencies":{"ava":"*","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"6199b5a0a9596f32eb83044e89400969587542de","tarball":"https://registry.npmjs.org/read-pkg/-/read-pkg-1.0.0.tgz"},"engines":{"node":">=0.10.0"}},"1.1.0":{"name":"read-pkg","version":"1.1.0","dependencies":{"load-json-file":"^1.0.0","normalize-package-data":"^2.3.2","path-type":"^1.0.0"},"devDependencies":{"ava":"*","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28","tarball":"https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz"},"engines":{"node":">=0.10.0"}},"2.0.0":{"name":"read-pkg","version":"2.0.0","dependencies":{"load-json-file":"^2.0.0","normalize-package-data":"^2.3.2","path-type":"^2.0.0"},"devDependencies":{"ava":"*","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"8ef1c0623c6a6db0dc6713c4bfac46332b2368f8","tarball":"https://registry.npmjs.org/read-pkg/-/read-pkg-2.0.0.tgz"},"engines":{"node":">=4"}},"3.0.0":{"name":"read-pkg","version":"3.0.0","dependencies":{"load-json-file":"^4.0.0","normalize-package-data":"^2.3.2","path-type":"^3.0.0"},"devDependencies":{"ava":"*","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"9cbc686978fee65d16c00e2b19c237fcf6e38389","tarball":"https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz"},"engines":{"node":">=4"}},"4.0.0":{"name":"read-pkg","version":"4.0.0","dependencies":{"normalize-package-data":"^2.3.2","parse-json":"^4.0.0","util.promisify":"^1.0.0"},"devDependencies":{"ava":"*","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-2avHM2nMA5tFOMEDkB+VgMHzfRlv9d5GNc3RMTxFoOyoRN50RnLz6oN6QPiTZRYbqrufJBa/9GzWEYas0uvZZw==","shasum":"ee3801906504d73af4c9630ab1cd0cea8232e5c2","tarball":"https://registry.npmjs.org/read-pkg/-/read-pkg-4.0.0.tgz","fileCount":4,"unpackedSize":4155,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbMRMGCRA9TVsSAnZWagAAHtIQAIp1T/NY304OXGL7dkoK\nVTu4E0p9S7H+NytTph01izyA799Ya2Q2hl5+Zq+SoDhqyfbNBeMCrvDMtXWM\nRNP4rluFEGYTU0V/9JzCz8KbhuK11VAPzCjVlVOtcaQXhMsSL+MGU2dFKgxz\nvlmbZDt9W22ffO/uijUtuWILpnJmWjrrIFpiv685E9zH3WvOQTz+YCAQPxTR\nIQV5E2fMdHu0ecCt1BzojsRdHpIeIz8uJAzLvGmrbdnWWwA73OyQZCgdKanm\njUf+m1vtQU253ent/vSU5RikzmDyJR+1OW9XvLvxfwTxBtml2Gtbl3HtPZtV\nGq8MCRNsX5o4MyqUHaCim+3RR3Cj1NXCZDmS2DchbgP/sWOpdFToBocV4YMj\nyxSCjkxZcBRk+UYt9kdG88VzAeHXHDqkYr5+jWlsGtgCTqOakSr1uHvLb1HE\npWfXTQzQrpfw0UqhRonOEx393+zhkM4i0xqDB9i8gOkteVaUKbABYx6IehmS\nsmMwK+jtKBB9fIa+/72Gmer0QPjSk+w0bm8ygSz8D9vGb+GWWo4o/qq8B+DN\n9R+32Kt6o3CSFKfgO5w+bDPnS8w8fHajAyF6lqtY5r25vmXL+Z4up0tDQKGE\ny2v9balu4JV94Ihbl7meCVsz9z06fnAo1qm3dnSGQjFuRNHd9D8b9YpfVVBY\nubFk\r\n=tfth\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=6"}},"4.0.1":{"name":"read-pkg","version":"4.0.1","dependencies":{"normalize-package-data":"^2.3.2","parse-json":"^4.0.0","pify":"^3.0.0"},"devDependencies":{"ava":"*","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"963625378f3e1c4d48c85872b5a6ec7d5d093237","tarball":"https://registry.npmjs.org/read-pkg/-/read-pkg-4.0.1.tgz","fileCount":4,"unpackedSize":4186},"engines":{"node":">=6"}}},"name":"read-pkg","dist-tags":{"latest":"4.0.1"},"modified":"2018-06-26T04:10:59.370Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/97/c8/dcf9b30b77f7e28dfe1e759942deddfee35863b4b44faae3ca3fdaea82ac515d6583fadf693c6d2159b0f4a18cd3632537bb04d698bed6569dcda85c2fd7 b/npm/.npm/_cacache/content-v2/sha512/97/c8/dcf9b30b77f7e28dfe1e759942deddfee35863b4b44faae3ca3fdaea82ac515d6583fadf693c6d2159b0f4a18cd3632537bb04d698bed6569dcda85c2fd7 new file mode 100644 index 0000000..bb2e319 --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/97/c8/dcf9b30b77f7e28dfe1e759942deddfee35863b4b44faae3ca3fdaea82ac515d6583fadf693c6d2159b0f4a18cd3632537bb04d698bed6569dcda85c2fd7 @@ -0,0 +1 @@ +{"versions":{"1.0.0":{"name":"path-is-absolute","version":"1.0.0","_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"263dada66ab3f2fb10bf7f9d24dd8f3e570ef912","tarball":"https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.0.tgz"},"engines":{"node":">=0.10.0"}},"1.0.1":{"name":"path-is-absolute","version":"1.0.1","devDependencies":{"xo":"^0.16.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f","tarball":"https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz"},"engines":{"node":">=0.10.0"}}},"name":"path-is-absolute","dist-tags":{"latest":"1.0.1"},"modified":"2017-04-07T11:05:54.738Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/98/62/371d29aa01a85b62f457c1a874d7e7f622a32616fe3da1b97e51357d89ca2b72d152fb1ba6753359ebbed0dcae99ac1e46ac7f5362ccd7f69d1de45ae307 b/npm/.npm/_cacache/content-v2/sha512/98/62/371d29aa01a85b62f457c1a874d7e7f622a32616fe3da1b97e51357d89ca2b72d152fb1ba6753359ebbed0dcae99ac1e46ac7f5362ccd7f69d1de45ae307 new file mode 100644 index 0000000..f08a194 --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/98/62/371d29aa01a85b62f457c1a874d7e7f622a32616fe3da1b97e51357d89ca2b72d152fb1ba6753359ebbed0dcae99ac1e46ac7f5362ccd7f69d1de45ae307 @@ -0,0 +1 @@ +{"versions":{"0.1.0":{"name":"argparse","version":"0.1.0","dependencies":{"underscore":"1.3.1","underscore.string":"2.1.1"},"optionalDependencies":{},"devDependencies":{},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"141038690326bb1fe60c3aa2fd32e60252cdf3ea","tarball":"https://registry.npmjs.org/argparse/-/argparse-0.1.0.tgz"},"engines":{"node":">= 0.6.0"}},"0.1.1":{"name":"argparse","version":"0.1.1","dependencies":{"underscore":"1.3.1","underscore.string":"2.1.1"},"optionalDependencies":{},"devDependencies":{},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"7898577c1e2a249f3e550cc48209acc1d939026e","tarball":"https://registry.npmjs.org/argparse/-/argparse-0.1.1.tgz"},"engines":{"node":">= 0.6.0"}},"0.1.2":{"name":"argparse","version":"0.1.2","dependencies":{"underscore":"1.3.1","underscore.string":"2.1.1"},"optionalDependencies":{},"devDependencies":{"mocha":"1.0.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"dab8a7925b091e24683e17f8bcf7d9a4bf00204a","tarball":"https://registry.npmjs.org/argparse/-/argparse-0.1.2.tgz"},"engines":{"node":">= 0.6.0"}},"0.1.3":{"name":"argparse","version":"0.1.3","dependencies":{"underscore":"~1.3.3","underscore.string":"~2.1.1"},"devDependencies":{"mocha":"~1.2.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"e1a6a760f372b4082080da00b3ed13b46d42badf","tarball":"https://registry.npmjs.org/argparse/-/argparse-0.1.3.tgz"},"engines":{"node":">= 0.6.0"}},"0.1.4":{"name":"argparse","version":"0.1.4","dependencies":{"underscore":"~1.3.3","underscore.string":"~2.1.1"},"devDependencies":{"mocha":"~1.2.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"72ca942eb911bf18a011144361f3607c71ab4cfe","tarball":"https://registry.npmjs.org/argparse/-/argparse-0.1.4.tgz"},"engines":{"node":">= 0.6.0"}},"0.1.5":{"name":"argparse","version":"0.1.5","dependencies":{"underscore":"~1.3.3","underscore.string":"~2.1.1"},"devDependencies":{"mocha":"~1.2.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"bcb6f43cedd06bedc4d0e97c833f97595e16f7e5","tarball":"https://registry.npmjs.org/argparse/-/argparse-0.1.5.tgz"},"engines":{"node":">= 0.6.0"}},"0.1.6":{"name":"argparse","version":"0.1.6","dependencies":{"underscore":"~1.3.3","underscore.string":"~2.1.1"},"devDependencies":{"mocha":"~1.2.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"434d4ceaf77275e117d396293dcb2977c31b40ec","tarball":"https://registry.npmjs.org/argparse/-/argparse-0.1.6.tgz"},"engines":{"node":">= 0.6.0"}},"0.1.7":{"name":"argparse","version":"0.1.7","dependencies":{"underscore":"~1.3.3","underscore.string":"~2.1.1"},"devDependencies":{"mocha":"~1.2.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"eb6f77628d196ce9a56dd36abed78ae25f3b01f0","tarball":"https://registry.npmjs.org/argparse/-/argparse-0.1.7.tgz"},"engines":{"node":">= 0.6.0"}},"0.1.8":{"name":"argparse","version":"0.1.8","dependencies":{"underscore":"~1.3.3","underscore.string":"~2.1.1"},"devDependencies":{"mocha":"~1.2.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"fafa8e68ba36528ea538a8745c33f384d1b6daf1","tarball":"https://registry.npmjs.org/argparse/-/argparse-0.1.8.tgz"},"engines":{"node":">= 0.6.0"}},"0.1.9":{"name":"argparse","version":"0.1.9","dependencies":{"underscore":"~1.3.3","underscore.string":"~2.1.1"},"devDependencies":{"mocha":"~1.2.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"9c5d6da174c219dd796271ef46a8b633be298c07","tarball":"https://registry.npmjs.org/argparse/-/argparse-0.1.9.tgz"},"engines":{"node":">= 0.6.0"}},"0.1.10":{"name":"argparse","version":"0.1.10","dependencies":{"underscore":"~1.3.3","underscore.string":"~2.1.1"},"devDependencies":{"mocha":"~1.2.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"ab77c1177fbab43831941be108dc6c1222e4980d","tarball":"https://registry.npmjs.org/argparse/-/argparse-0.1.10.tgz"},"engines":{"node":">= 0.6.0"}},"0.1.11":{"name":"argparse","version":"0.1.11","dependencies":{"underscore":"~1.4.3","underscore.string":"~2.3.1"},"devDependencies":{"mocha":"~1.8.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"c61031628629a24935badc7156714981d86ec819","tarball":"https://registry.npmjs.org/argparse/-/argparse-0.1.11.tgz"},"engines":{"node":">= 0.6.0"}},"0.1.12":{"name":"argparse","version":"0.1.12","dependencies":{"underscore":"~1.4.3","underscore.string":"~2.3.1"},"devDependencies":{"mocha":"~1.8.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"987e5bd68ce0b82c213e1552fd6a46e11652617e","tarball":"https://registry.npmjs.org/argparse/-/argparse-0.1.12.tgz"},"engines":{"node":">= 0.6.0"}},"0.1.13":{"name":"argparse","version":"0.1.13","dependencies":{"underscore":"~1.4.3","underscore.string":"~2.3.1"},"devDependencies":{"mocha":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"2abd72e43d0a34d9049141e9c255ba816409f407","tarball":"https://registry.npmjs.org/argparse/-/argparse-0.1.13.tgz"},"engines":{"node":">= 0.6.0"}},"0.1.14":{"name":"argparse","version":"0.1.14","dependencies":{"underscore":"~1.4.3","underscore.string":"~2.3.1"},"devDependencies":{"mocha":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"9d927aad6d8d12649b1a0bbb519590b26d465eb6","tarball":"https://registry.npmjs.org/argparse/-/argparse-0.1.14.tgz"},"engines":{"node":">= 0.6.0"}},"0.1.15":{"name":"argparse","version":"0.1.15","dependencies":{"underscore":"~1.4.3","underscore.string":"~2.3.1"},"devDependencies":{"mocha":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"28a1f72c43113e763220e5708414301c8840f0a1","tarball":"https://registry.npmjs.org/argparse/-/argparse-0.1.15.tgz"},"engines":{"node":">= 0.6.0"}},"0.1.16":{"name":"argparse","version":"0.1.16","dependencies":{"underscore":"~1.7.0","underscore.string":"~2.4.0"},"devDependencies":{"mocha":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"cfd01e0fbba3d6caed049fbd758d40f65196f57c","tarball":"https://registry.npmjs.org/argparse/-/argparse-0.1.16.tgz"}},"1.0.0":{"name":"argparse","version":"1.0.0","dependencies":{"lodash":"^3.2.0","sprintf-js":"~1.0.2"},"devDependencies":{"mocha":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"4408c1504b038a2f75436a04a9bcf9b77f2aef84","tarball":"https://registry.npmjs.org/argparse/-/argparse-1.0.0.tgz"}},"1.0.1":{"name":"argparse","version":"1.0.1","dependencies":{"lodash":"~3.2","sprintf-js":"~1.0.2"},"devDependencies":{"mocha":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"cb1010b8559920fc8aee521eb9e80e4851790923","tarball":"https://registry.npmjs.org/argparse/-/argparse-1.0.1.tgz"}},"1.0.2":{"name":"argparse","version":"1.0.2","dependencies":{"lodash":">= 3.2.0 < 4.0.0","sprintf-js":"~1.0.2"},"devDependencies":{"mocha":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"bcfae39059656d1973d0b9e6a1a74154b5a9a136","tarball":"https://registry.npmjs.org/argparse/-/argparse-1.0.2.tgz"}},"1.0.3":{"name":"argparse","version":"1.0.3","dependencies":{"lodash":">= 3.2.0 < 4.0.0","sprintf-js":"~1.0.2"},"devDependencies":{"mocha":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"14389deeb0c28fc4cda9405b9f532a4e3785ce84","tarball":"https://registry.npmjs.org/argparse/-/argparse-1.0.3.tgz"}},"1.0.4":{"name":"argparse","version":"1.0.4","dependencies":{"lodash":">= 4.0.0 < 5.0.0","sprintf-js":"~1.0.2"},"devDependencies":{"mocha":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"2b12247b933001971addcbfe4e67d20fd395bbf4","tarball":"https://registry.npmjs.org/argparse/-/argparse-1.0.4.tgz"}},"1.0.5":{"name":"argparse","version":"1.0.5","dependencies":{"sprintf-js":"~1.0.2"},"devDependencies":{"mocha":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"8e1ff9ab91d1662d2dce2954d8511f448ccade42","tarball":"https://registry.npmjs.org/argparse/-/argparse-1.0.5.tgz"}},"1.0.6":{"name":"argparse","version":"1.0.6","dependencies":{"sprintf-js":"~1.0.2"},"devDependencies":{"eslint":"2.0.0-rc.0","eslint-plugin-nodeca":"~1.0.3","mocha":"*","ndoc":"^3.1.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"ada3c46ade64695906efbb7a0a337f619abb4694","tarball":"https://registry.npmjs.org/argparse/-/argparse-1.0.6.tgz"}},"1.0.7":{"name":"argparse","version":"1.0.7","dependencies":{"sprintf-js":"~1.0.2"},"devDependencies":{"eslint":"2.0.0-rc.0","eslint-plugin-nodeca":"~1.0.3","mocha":"*","ndoc":"^3.1.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"c289506480557810f14a8bc62d7a06f63ed7f951","tarball":"https://registry.npmjs.org/argparse/-/argparse-1.0.7.tgz"}},"1.0.8":{"name":"argparse","version":"1.0.8","dependencies":{"istanbul":"^0.4.5","sprintf-js":"~1.0.2"},"devDependencies":{"eslint":"^2.0.0","eslint-plugin-nodeca":"~1.0.3","mocha":"^3.1.0","ndoc":"^5.0.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"e5bd891bbdbbd725a94aa9827b25c0323fc5e8ee","tarball":"https://registry.npmjs.org/argparse/-/argparse-1.0.8.tgz"}},"1.0.9":{"name":"argparse","version":"1.0.9","dependencies":{"sprintf-js":"~1.0.2"},"devDependencies":{"eslint":"^2.13.1","istanbul":"^0.4.5","mocha":"^3.1.0","ndoc":"^5.0.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86","tarball":"https://registry.npmjs.org/argparse/-/argparse-1.0.9.tgz"}},"1.0.10":{"name":"argparse","version":"1.0.10","dependencies":{"sprintf-js":"~1.0.2"},"devDependencies":{"eslint":"^2.13.1","istanbul":"^0.4.5","mocha":"^3.1.0","ndoc":"^5.0.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==","shasum":"bcd6791ea5ae09725e17e5ad988134cd40b3d911","tarball":"https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz","fileCount":27,"unpackedSize":116446}}},"name":"argparse","dist-tags":{"latest":"1.0.10"},"modified":"2018-02-27T04:18:08.086Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/99/a7/1a4bcfbbb8a95aca3d45b347f5bda8e5c6f90f36a406a67a457bf4e980b05161a653ad2b9ff055028a279e1458105e71ae51d6456b54b47a87fd3ceac502 b/npm/.npm/_cacache/content-v2/sha512/99/a7/1a4bcfbbb8a95aca3d45b347f5bda8e5c6f90f36a406a67a457bf4e980b05161a653ad2b9ff055028a279e1458105e71ae51d6456b54b47a87fd3ceac502 new file mode 100644 index 0000000..b12388f --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/99/a7/1a4bcfbbb8a95aca3d45b347f5bda8e5c6f90f36a406a67a457bf4e980b05161a653ad2b9ff055028a279e1458105e71ae51d6456b54b47a87fd3ceac502 @@ -0,0 +1 @@ +{"versions":{"0.1.0":{"name":"ansi-styles","version":"0.1.0","devDependencies":{"mocha":"~1.12.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"af63b736c8b14c5dc94af0f3818da822527c10c8","tarball":"https://registry.npmjs.org/ansi-styles/-/ansi-styles-0.1.0.tgz"},"engines":{"node":">=0.8.0"}},"0.1.1":{"name":"ansi-styles","version":"0.1.1","devDependencies":{"mocha":"~1.12.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"8f1618d24da7072a436f66b79c65385d7c1fe9cf","tarball":"https://registry.npmjs.org/ansi-styles/-/ansi-styles-0.1.1.tgz"},"engines":{"node":">=0.8.0"}},"0.1.2":{"name":"ansi-styles","version":"0.1.2","devDependencies":{"mocha":"~1.12.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"5bab27c2e0bbe944ee42057cf23adee970abc7c6","tarball":"https://registry.npmjs.org/ansi-styles/-/ansi-styles-0.1.2.tgz"},"engines":{"node":">=0.8.0"}},"0.2.0":{"name":"ansi-styles","version":"0.2.0","devDependencies":{"mocha":"~1.12.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"359ab4b15dcd64ba6d74734b72c36360a9af2c19","tarball":"https://registry.npmjs.org/ansi-styles/-/ansi-styles-0.2.0.tgz"},"engines":{"node":">=0.8.0"}},"1.0.0":{"name":"ansi-styles","version":"1.0.0","devDependencies":{"mocha":"~1.12.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"cb102df1c56f5123eab8b67cd7b98027a0279178","tarball":"https://registry.npmjs.org/ansi-styles/-/ansi-styles-1.0.0.tgz"},"engines":{"node":">=0.8.0"}},"1.1.0":{"name":"ansi-styles","version":"1.1.0","devDependencies":{"mocha":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"eaecbf66cd706882760b2f4691582b8f55d7a7de","tarball":"https://registry.npmjs.org/ansi-styles/-/ansi-styles-1.1.0.tgz"},"engines":{"node":">=0.10.0"}},"2.0.0":{"name":"ansi-styles","version":"2.0.0","devDependencies":{"mocha":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"432b26162fea1b63c878896abc8cc5548f25063e","tarball":"https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.0.0.tgz"},"engines":{"node":">=0.10.0"}},"2.0.1":{"name":"ansi-styles","version":"2.0.1","devDependencies":{"mocha":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"b033f57f93e2d28adeb8bc11138fa13da0fd20a3","tarball":"https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.0.1.tgz"},"engines":{"node":">=0.10.0"}},"2.1.0":{"name":"ansi-styles","version":"2.1.0","devDependencies":{"mocha":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"990f747146927b559a932bf92959163d60c0d0e2","tarball":"https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.1.0.tgz"},"engines":{"node":">=0.10.0"}},"2.2.1":{"name":"ansi-styles","version":"2.2.1","devDependencies":{"mocha":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"b432dd3358b634cf75e1e4664368240533c1ddbe","tarball":"https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz"},"engines":{"node":">=0.10.0"}},"3.0.0":{"name":"ansi-styles","version":"3.0.0","dependencies":{"color-convert":"^1.0.0"},"devDependencies":{"ava":"*","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"5404e93a544c4fec7f048262977bebfe3155e0c1","tarball":"https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.0.0.tgz"},"engines":{"node":">=4"}},"3.1.0":{"name":"ansi-styles","version":"3.1.0","dependencies":{"color-convert":"^1.0.0"},"devDependencies":{"ava":"*","babel-polyfill":"^6.23.0","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"09c202d5c917ec23188caa5c9cb9179cd9547750","tarball":"https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.1.0.tgz"},"engines":{"node":">=4"}},"3.2.0":{"name":"ansi-styles","version":"3.2.0","dependencies":{"color-convert":"^1.9.0"},"devDependencies":{"ava":"*","babel-polyfill":"^6.23.0","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-NnSOmMEYtVR2JVMIGTzynRkkaxtiq1xnFBcdQD/DnNCYPoEPsVJhM98BDyaoNOQIi7p4okdi3E27eN7GQbsUug==","shasum":"c159b8d5be0f9e5a6f346dab94f16ce022161b88","tarball":"https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.0.tgz"},"engines":{"node":">=4"}},"3.2.1":{"name":"ansi-styles","version":"3.2.1","dependencies":{"color-convert":"^1.9.0"},"devDependencies":{"ava":"*","babel-polyfill":"^6.23.0","svg-term-cli":"^2.1.1","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==","shasum":"41fbb20243e50b12be0f04b8dedbf07520ce841d","tarball":"https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz","fileCount":4,"unpackedSize":9371},"engines":{"node":">=4"}}},"name":"ansi-styles","dist-tags":{"latest":"3.2.1"},"modified":"2018-03-02T09:40:01.752Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/9e/77/bdfc8890fe1cc8858ea97439db06dcfb0e33d32ab634d0fff3bcf4a6e69385925eb1b86ac69d79ff56d4cd35f36d01f67dff546d7a192ccd4f6a7138a2d1 b/npm/.npm/_cacache/content-v2/sha512/9e/77/bdfc8890fe1cc8858ea97439db06dcfb0e33d32ab634d0fff3bcf4a6e69385925eb1b86ac69d79ff56d4cd35f36d01f67dff546d7a192ccd4f6a7138a2d1 new file mode 100644 index 0000000..4d95045 Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha512/9e/77/bdfc8890fe1cc8858ea97439db06dcfb0e33d32ab634d0fff3bcf4a6e69385925eb1b86ac69d79ff56d4cd35f36d01f67dff546d7a192ccd4f6a7138a2d1 differ diff --git a/npm/.npm/_cacache/content-v2/sha512/a1/ab/8658cf1b21dee167156f86fcf3a946fe27aef333bb33c46647e63b56c2c972185d6fd4f311707c6148349419afbbd335e0d617035bf98daeab17104a70d5 b/npm/.npm/_cacache/content-v2/sha512/a1/ab/8658cf1b21dee167156f86fcf3a946fe27aef333bb33c46647e63b56c2c972185d6fd4f311707c6148349419afbbd335e0d617035bf98daeab17104a70d5 new file mode 100644 index 0000000..a06026d --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/a1/ab/8658cf1b21dee167156f86fcf3a946fe27aef333bb33c46647e63b56c2c972185d6fd4f311707c6148349419afbbd335e0d617035bf98daeab17104a70d5 @@ -0,0 +1 @@ +{"versions":{"0.1.0":{"name":"object-assign","version":"0.1.0","devDependencies":{"mocha":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"d10994e1618922b563524299a272de5602f04ca0","tarball":"https://registry.npmjs.org/object-assign/-/object-assign-0.1.0.tgz"},"engines":{"node":">=0.10.0"}},"0.1.1":{"name":"object-assign","version":"0.1.1","devDependencies":{"mocha":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"0eb570293ca87b272a0f3a62b50adb9a5f0a8f1a","tarball":"https://registry.npmjs.org/object-assign/-/object-assign-0.1.1.tgz"},"engines":{"node":">=0.10.0"}},"0.1.2":{"name":"object-assign","version":"0.1.2","devDependencies":{"mocha":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"036992f073aff7b2db83d06b3fb3155a5ccac37f","tarball":"https://registry.npmjs.org/object-assign/-/object-assign-0.1.2.tgz"},"engines":{"node":">=0.10.0"}},"0.2.0":{"name":"object-assign","version":"0.2.0","devDependencies":{"mocha":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"ab5833b3c86fb5b286c91fedc772e7939fc7b30c","tarball":"https://registry.npmjs.org/object-assign/-/object-assign-0.2.0.tgz"},"engines":{"node":">=0.10.0"}},"0.2.1":{"name":"object-assign","version":"0.2.1","devDependencies":{"mocha":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"bd4dd0bab7fa495408d9781e8a9a2180d2bdae52","tarball":"https://registry.npmjs.org/object-assign/-/object-assign-0.2.1.tgz"},"engines":{"node":">=0.10.0"}},"0.2.2":{"name":"object-assign","version":"0.2.2","devDependencies":{"mocha":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"e0a78bc56af9c092051167f6b8f23249e7dde1a6","tarball":"https://registry.npmjs.org/object-assign/-/object-assign-0.2.2.tgz"},"engines":{"node":">=0.10.0"}},"0.3.0":{"name":"object-assign","version":"0.3.0","devDependencies":{"mocha":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"22f8550b76bf86679efd2117c568081ab302ac4d","tarball":"https://registry.npmjs.org/object-assign/-/object-assign-0.3.0.tgz"},"engines":{"node":">=0.10.0"}},"0.3.1":{"name":"object-assign","version":"0.3.1","devDependencies":{"mocha":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"060e2a2a27d7c0d77ec77b78f11aa47fd88008d2","tarball":"https://registry.npmjs.org/object-assign/-/object-assign-0.3.1.tgz"},"engines":{"node":">=0.10.0"}},"0.4.0":{"name":"object-assign","version":"0.4.0","devDependencies":{"mocha":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"e9ee69b52192780b4d062a3a86ac2fa2adc58951","tarball":"https://registry.npmjs.org/object-assign/-/object-assign-0.4.0.tgz"},"engines":{"node":">=0.10.0"}},"1.0.0":{"name":"object-assign","version":"1.0.0","devDependencies":{"mocha":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"e65dc8766d3b47b4b8307465c8311da030b070a6","tarball":"https://registry.npmjs.org/object-assign/-/object-assign-1.0.0.tgz"},"engines":{"node":">=0.10.0"}},"2.0.0":{"name":"object-assign","version":"2.0.0","devDependencies":{"mocha":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"f8309b09083b01261ece3ef7373f2b57b8dd7042","tarball":"https://registry.npmjs.org/object-assign/-/object-assign-2.0.0.tgz"},"engines":{"node":">=0.10.0"}},"3.0.0":{"name":"object-assign","version":"3.0.0","devDependencies":{"mocha":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"9bedd5ca0897949bca47e7ff408062d549f587f2","tarball":"https://registry.npmjs.org/object-assign/-/object-assign-3.0.0.tgz"},"engines":{"node":">=0.10.0"}},"2.1.1":{"name":"object-assign","version":"2.1.1","devDependencies":{"mocha":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"43c36e5d569ff8e4816c4efa8be02d26967c18aa","tarball":"https://registry.npmjs.org/object-assign/-/object-assign-2.1.1.tgz"},"engines":{"node":">=0.10.0"}},"4.0.0":{"name":"object-assign","version":"4.0.0","devDependencies":{"lodash":"^3.10.1","matcha":"^0.6.0","mocha":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"1e876669ea263a6d4f37e9504dc859fefc7b4506","tarball":"https://registry.npmjs.org/object-assign/-/object-assign-4.0.0.tgz"},"engines":{"node":">=0.10.0"}},"4.0.1":{"name":"object-assign","version":"4.0.1","devDependencies":{"lodash":"^3.10.1","matcha":"^0.6.0","mocha":"*","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"99504456c3598b5cad4fc59c26e8a9bb107fe0bd","tarball":"https://registry.npmjs.org/object-assign/-/object-assign-4.0.1.tgz"},"engines":{"node":">=0.10.0"}},"4.1.0":{"name":"object-assign","version":"4.1.0","devDependencies":{"lodash":"^4.8.2","matcha":"^0.7.0","mocha":"*","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"7a3b3d0e98063d43f4c03f2e8ae6cd51a86883a0","tarball":"https://registry.npmjs.org/object-assign/-/object-assign-4.1.0.tgz"},"engines":{"node":">=0.10.0"}},"4.1.1":{"name":"object-assign","version":"4.1.1","devDependencies":{"ava":"^0.16.0","lodash":"^4.16.4","matcha":"^0.7.0","xo":"^0.16.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"2109adc7965887cfc05cbbd442cac8bfbb360863","tarball":"https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz"},"engines":{"node":">=0.10.0"}}},"name":"object-assign","dist-tags":{"latest":"4.1.1"},"modified":"2018-03-21T04:39:35.600Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/a3/94/68cbab4d1b848bfc53a408037a4738e26a4652db944b605adc32db49a9b75df015ab9c0f9f1b3e7b88de4f6f4ea9bc11af979810d01e3c74996c957be84e b/npm/.npm/_cacache/content-v2/sha512/a3/94/68cbab4d1b848bfc53a408037a4738e26a4652db944b605adc32db49a9b75df015ab9c0f9f1b3e7b88de4f6f4ea9bc11af979810d01e3c74996c957be84e new file mode 100644 index 0000000..8bf47c2 Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha512/a3/94/68cbab4d1b848bfc53a408037a4738e26a4652db944b605adc32db49a9b75df015ab9c0f9f1b3e7b88de4f6f4ea9bc11af979810d01e3c74996c957be84e differ diff --git a/npm/.npm/_cacache/content-v2/sha512/a3/bb/87c8efc9fa2dad5c6f2bd9b64d955936d2f948149f48118c873024067d662bbbc26fdf04ea299cef577d185bdad6123ab478fddc7e5435a96a2321ef5514 b/npm/.npm/_cacache/content-v2/sha512/a3/bb/87c8efc9fa2dad5c6f2bd9b64d955936d2f948149f48118c873024067d662bbbc26fdf04ea299cef577d185bdad6123ab478fddc7e5435a96a2321ef5514 new file mode 100644 index 0000000..996832c Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha512/a3/bb/87c8efc9fa2dad5c6f2bd9b64d955936d2f948149f48118c873024067d662bbbc26fdf04ea299cef577d185bdad6123ab478fddc7e5435a96a2321ef5514 differ diff --git a/npm/.npm/_cacache/content-v2/sha512/a5/f9/9a1ed2a7cfb13b1de4201efe3ce1e05be27df721d40c3abe7841d639f5d308b6c44c3442ae7db595d4c35d61ba4bdaa5c34b7c14bf3b9836401c91682ed0 b/npm/.npm/_cacache/content-v2/sha512/a5/f9/9a1ed2a7cfb13b1de4201efe3ce1e05be27df721d40c3abe7841d639f5d308b6c44c3442ae7db595d4c35d61ba4bdaa5c34b7c14bf3b9836401c91682ed0 new file mode 100644 index 0000000..ea6a57b --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/a5/f9/9a1ed2a7cfb13b1de4201efe3ce1e05be27df721d40c3abe7841d639f5d308b6c44c3442ae7db595d4c35d61ba4bdaa5c34b7c14bf3b9836401c91682ed0 @@ -0,0 +1 @@ +{"versions":{"0.2.0":{"name":"js-yaml","version":"0.2.0","dependencies":{"jsclass":"3.0.4"},"devDependencies":{},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"a2480a4db3c6896e4a5db16b99b504cb2768cc32","tarball":"https://registry.npmjs.org/js-yaml/-/js-yaml-0.2.0.tgz"},"engines":{"node":"> 0.4.11 < 0.7.0"}},"0.2.1":{"name":"js-yaml","version":"0.2.1","dependencies":{"jsclass":"3.0.4"},"devDependencies":{},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"f42ad812a3c3a72740d571f4fb016e31f4bb9344","tarball":"https://registry.npmjs.org/js-yaml/-/js-yaml-0.2.1.tgz"},"engines":{"node":"> 0.4.11 < 0.7.0"}},"0.2.2":{"name":"js-yaml","version":"0.2.2","dependencies":{"jsclass":"3.0.4"},"devDependencies":{},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"79650583b962457ef4eba143fcbd8b57f0972c07","tarball":"https://registry.npmjs.org/js-yaml/-/js-yaml-0.2.2.tgz"},"engines":{"node":"> 0.4.11 < 0.7.0"}},"0.3.0":{"name":"js-yaml","version":"0.3.0","dependencies":{},"devDependencies":{},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"ed2aecd85e9f474c6c766bde89b3e27a88754f97","tarball":"https://registry.npmjs.org/js-yaml/-/js-yaml-0.3.0.tgz"},"engines":{"node":"> 0.4.11 < 0.7.0"}},"0.3.1":{"name":"js-yaml","version":"0.3.1","dependencies":{},"devDependencies":{},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"221a8b84dcddd5ee463311b10366574a091c42dd","tarball":"https://registry.npmjs.org/js-yaml/-/js-yaml-0.3.1.tgz"},"engines":{"node":"> 0.4.11 < 0.7.0"}},"0.3.2":{"name":"js-yaml","version":"0.3.2","dependencies":{},"devDependencies":{"jslint":"https://github.com/reid/node-jslint/tarball/6131ebf5713274871b89735105e3286131804771"},"bin":{"jsyaml":"bin/js-yaml.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"7b007593429b52d0e91825648c9d8e9e44fe1c8e","tarball":"https://registry.npmjs.org/js-yaml/-/js-yaml-0.3.2.tgz"},"engines":{"node":"> 0.4.11"}},"0.3.3":{"name":"js-yaml","version":"0.3.3","dependencies":{},"devDependencies":{"vows":"~ 0.6.0","jslint":"https://github.com/reid/node-jslint/tarball/6131ebf5713274871b89735105e3286131804771"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"258a966b44a92dfbde4750c049a0fb5ff16d49ce","tarball":"https://registry.npmjs.org/js-yaml/-/js-yaml-0.3.3.tgz"},"engines":{"node":"> 0.4.11"}},"0.3.4":{"name":"js-yaml","version":"0.3.4","dependencies":{},"devDependencies":{"vows":"~ 0.6.0","jslint":"https://github.com/reid/node-jslint/tarball/6131ebf5713274871b89735105e3286131804771"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"361a88e93e6a2cb5fe6222ed917906f0402fe4d3","tarball":"https://registry.npmjs.org/js-yaml/-/js-yaml-0.3.4.tgz"},"engines":{"node":"> 0.4.11"}},"0.3.5":{"name":"js-yaml","version":"0.3.5","dependencies":{},"devDependencies":{"vows":"~ 0.6.0","jslint":"https://github.com/reid/node-jslint/tarball/6131ebf5713274871b89735105e3286131804771"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"c41bac6f5332e22ae5962323e65cfc38487f2487","tarball":"https://registry.npmjs.org/js-yaml/-/js-yaml-0.3.5.tgz"},"engines":{"node":"> 0.4.11"}},"0.3.6":{"name":"js-yaml","version":"0.3.6","dependencies":{},"optionalDependencies":{},"devDependencies":{"vows":"~ 0.6.0","jslint":"https://github.com/reid/node-jslint/tarball/6131ebf5713274871b89735105e3286131804771"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"6134b2ffde54ad070beae9f342750f0f7133d7a9","tarball":"https://registry.npmjs.org/js-yaml/-/js-yaml-0.3.6.tgz"},"engines":{"node":"> 0.4.11"}},"0.3.7":{"name":"js-yaml","version":"0.3.7","dependencies":{},"optionalDependencies":{},"devDependencies":{"vows":"~ 0.6.0","jslint":"https://github.com/reid/node-jslint/tarball/6131ebf5713274871b89735105e3286131804771"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"d739d8ee86461e54b354d6a7d7d1f2ad9a167f62","tarball":"https://registry.npmjs.org/js-yaml/-/js-yaml-0.3.7.tgz"},"engines":{"node":"> 0.4.11"}},"1.0.0":{"name":"js-yaml","version":"1.0.0","dependencies":{"argparse":"~ 0.1.3"},"devDependencies":{"vows":"~ 0.6.0"},"bin":{"js-yaml":"bin/js-yaml.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"3e5b18955f343d042c1f7506810697ceadded873","tarball":"https://registry.npmjs.org/js-yaml/-/js-yaml-1.0.0.tgz"},"engines":{"node":">= 0.6.0"}},"1.0.1":{"name":"js-yaml","version":"1.0.1","dependencies":{"argparse":"~ 0.1.3"},"devDependencies":{"vows":"~ 0.6.0"},"bin":{"js-yaml":"bin/js-yaml.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"189fdf5ddf523f4f25d4f9914712e30776246201","tarball":"https://registry.npmjs.org/js-yaml/-/js-yaml-1.0.1.tgz"},"engines":{"node":">= 0.6.0"}},"1.0.2":{"name":"js-yaml","version":"1.0.2","dependencies":{"argparse":"~ 0.1.3"},"devDependencies":{"vows":"~ 0.6.0"},"bin":{"js-yaml":"bin/js-yaml.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"ee3f5cebdf1b62d721e573480879d12e919c80d0","tarball":"https://registry.npmjs.org/js-yaml/-/js-yaml-1.0.2.tgz"},"engines":{"node":">= 0.6.0"}},"1.0.3":{"name":"js-yaml","version":"1.0.3","dependencies":{"argparse":"~ 0.1.3"},"devDependencies":{"vows":"~ 0.6.0"},"bin":{"js-yaml":"bin/js-yaml.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"ec619760ffc8ae501c3d62673d874e2b9f07422a","tarball":"https://registry.npmjs.org/js-yaml/-/js-yaml-1.0.3.tgz"},"engines":{"node":">= 0.6.0"}},"2.0.0":{"name":"js-yaml","version":"2.0.0","dependencies":{"argparse":"~ 0.1.11"},"devDependencies":{"mocha":"*"},"bin":{"js-yaml":"bin/js-yaml.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"49f50ea0d2264f68c2e16061e4c71bbebe1c5f93","tarball":"https://registry.npmjs.org/js-yaml/-/js-yaml-2.0.0.tgz"},"engines":{"node":">= 0.6.0"}},"2.0.1":{"name":"js-yaml","version":"2.0.1","dependencies":{"argparse":"~ 0.1.11"},"devDependencies":{"mocha":"*"},"bin":{"js-yaml":"bin/js-yaml.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"f686747a6be294acadaf48ca68e7c0a647f05109","tarball":"https://registry.npmjs.org/js-yaml/-/js-yaml-2.0.1.tgz"},"engines":{"node":">= 0.6.0"}},"2.0.2":{"name":"js-yaml","version":"2.0.2","dependencies":{"argparse":"~ 0.1.11"},"devDependencies":{"mocha":"*"},"bin":{"js-yaml":"bin/js-yaml.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"cbaad5a596cdebdb3c3b5e1a32a0662962961bd8","tarball":"https://registry.npmjs.org/js-yaml/-/js-yaml-2.0.2.tgz"},"engines":{"node":">= 0.6.0"}},"2.0.3":{"name":"js-yaml","version":"2.0.3","dependencies":{"argparse":"~ 0.1.11"},"devDependencies":{"mocha":"*"},"bin":{"js-yaml":"bin/js-yaml.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"cf3d3372fd7bcc6d01b442d3dab408abf28c82e7","tarball":"https://registry.npmjs.org/js-yaml/-/js-yaml-2.0.3.tgz"},"engines":{"node":">= 0.6.0"}},"2.0.4":{"name":"js-yaml","version":"2.0.4","dependencies":{"argparse":"~ 0.1.11"},"devDependencies":{"mocha":"*"},"bin":{"js-yaml":"bin/js-yaml.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"e6b25fceaa2fe9ce062a4d6150079d110786153c","tarball":"https://registry.npmjs.org/js-yaml/-/js-yaml-2.0.4.tgz"},"engines":{"node":">= 0.6.0"}},"2.0.5":{"name":"js-yaml","version":"2.0.5","dependencies":{"argparse":"~ 0.1.11","esprima":"~ 1.0.2"},"devDependencies":{"mocha":"*"},"bin":{"js-yaml":"bin/js-yaml.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"a25ae6509999e97df278c6719da11bd0687743a8","tarball":"https://registry.npmjs.org/js-yaml/-/js-yaml-2.0.5.tgz"},"engines":{"node":">= 0.6.0"}},"2.1.0":{"name":"js-yaml","version":"2.1.0","dependencies":{"argparse":"~ 0.1.11","esprima":"~ 1.0.2"},"devDependencies":{"mocha":"*"},"bin":{"js-yaml":"bin/js-yaml.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"a55a6e4706b01d06326259a6f4bfc42e6ae38b1f","tarball":"https://registry.npmjs.org/js-yaml/-/js-yaml-2.1.0.tgz"},"engines":{"node":">= 0.6.0"}},"2.1.1":{"name":"js-yaml","version":"2.1.1","dependencies":{"argparse":"~ 0.1.11","esprima":"~ 1.0.2"},"devDependencies":{"mocha":"*"},"bin":{"js-yaml":"bin/js-yaml.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"574095ef2253694313a6c2b261c7b6929a9603b7","tarball":"https://registry.npmjs.org/js-yaml/-/js-yaml-2.1.1.tgz"},"engines":{"node":">= 0.6.0"}},"2.1.2":{"name":"js-yaml","version":"2.1.2","dependencies":{"argparse":"~ 0.1.11","esprima":"~ 1.0.2"},"devDependencies":{"mocha":"*"},"bin":{"js-yaml":"bin/js-yaml.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"5404d58972f70112763e0b7e97ced20c39138bbd","tarball":"https://registry.npmjs.org/js-yaml/-/js-yaml-2.1.2.tgz"},"engines":{"node":">= 0.6.0"}},"2.1.3":{"name":"js-yaml","version":"2.1.3","dependencies":{"argparse":"~ 0.1.11","esprima":"~ 1.0.2"},"devDependencies":{"mocha":"*"},"bin":{"js-yaml":"bin/js-yaml.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"0ffb5617be55525878063d7a16aee7fdd282e84c","tarball":"https://registry.npmjs.org/js-yaml/-/js-yaml-2.1.3.tgz"},"engines":{"node":">= 0.6.0"}},"3.0.0":{"name":"js-yaml","version":"3.0.0","dependencies":{"argparse":"~ 0.1.11","esprima":"~ 1.0.2"},"devDependencies":{"mocha":"*"},"bin":{"js-yaml":"bin/js-yaml.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"46a8ac74fcc6e35f2d42e08c36e2961adc76bf2d","tarball":"https://registry.npmjs.org/js-yaml/-/js-yaml-3.0.0.tgz"},"engines":{"node":">= 0.6.0"}},"3.0.1":{"name":"js-yaml","version":"3.0.1","dependencies":{"argparse":"~ 0.1.11","esprima":"~ 1.0.2"},"devDependencies":{"mocha":"*"},"bin":{"js-yaml":"bin/js-yaml.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"76405fea5bce30fc8f405d48c6dca7f0a32c6afe","tarball":"https://registry.npmjs.org/js-yaml/-/js-yaml-3.0.1.tgz"},"engines":{"node":">= 0.6.0"}},"3.0.2":{"name":"js-yaml","version":"3.0.2","dependencies":{"argparse":"~ 0.1.11","esprima":"~ 1.0.2"},"devDependencies":{"mocha":"*"},"bin":{"js-yaml":"bin/js-yaml.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"9937865f8e897a5e894e73c2c5cf2e89b32eb771","tarball":"https://registry.npmjs.org/js-yaml/-/js-yaml-3.0.2.tgz"}},"3.1.0":{"name":"js-yaml","version":"3.1.0","dependencies":{"argparse":"~ 0.1.11","esprima":"~ 1.0.2"},"devDependencies":{"ansi":"*","benchmark":"*","mocha":"*"},"bin":{"js-yaml":"bin/js-yaml.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"36ba02e618c50748e772dd352428904cbbadcf44","tarball":"https://registry.npmjs.org/js-yaml/-/js-yaml-3.1.0.tgz"}},"3.2.1":{"name":"js-yaml","version":"3.2.1","dependencies":{"argparse":"~ 0.1.11","esprima":"~ 1.0.2"},"devDependencies":{"ansi":"*","benchmark":"*","mocha":"*"},"bin":{"js-yaml":"bin/js-yaml.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"bcec9a6c5c7f4e4e195f3cefc867eec3f83ce79d","tarball":"https://registry.npmjs.org/js-yaml/-/js-yaml-3.2.1.tgz"}},"3.2.2":{"name":"js-yaml","version":"3.2.2","dependencies":{"argparse":"~ 0.1.11","esprima":"~ 1.0.2"},"devDependencies":{"ansi":"*","benchmark":"*","mocha":"*"},"bin":{"js-yaml":"bin/js-yaml.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"a34e77fe8d5e10270e225d21d07790fa17fd2927","tarball":"https://registry.npmjs.org/js-yaml/-/js-yaml-3.2.2.tgz"}},"3.2.3":{"name":"js-yaml","version":"3.2.3","dependencies":{"argparse":"~ 0.1.11","esprima":"~ 1.0.2"},"devDependencies":{"ansi":"*","benchmark":"*","mocha":"*"},"bin":{"js-yaml":"bin/js-yaml.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"a3af632d13df5bfa95f3b8f3c4b61efe212cd750","tarball":"https://registry.npmjs.org/js-yaml/-/js-yaml-3.2.3.tgz"}},"3.2.4":{"name":"js-yaml","version":"3.2.4","dependencies":{"argparse":"~ 0.1.11","esprima":"~ 1.0.2"},"devDependencies":{"ansi":"*","benchmark":"*","mocha":"*"},"bin":{"js-yaml":"bin/js-yaml.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"f2cfb5f5e1d251ff438f41d63139750001021083","tarball":"https://registry.npmjs.org/js-yaml/-/js-yaml-3.2.4.tgz"}},"3.2.5":{"name":"js-yaml","version":"3.2.5","dependencies":{"argparse":"~ 0.1.11","esprima":"~ 1.0.2"},"devDependencies":{"ansi":"*","benchmark":"*","mocha":"*"},"bin":{"js-yaml":"bin/js-yaml.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"c29ee9a9e503e7ab83f071ccacdd0dac25ff9e22","tarball":"https://registry.npmjs.org/js-yaml/-/js-yaml-3.2.5.tgz"}},"3.2.6":{"name":"js-yaml","version":"3.2.6","dependencies":{"argparse":"~ 0.1.11","esprima":"~ 1.0.2"},"devDependencies":{"ansi":"*","benchmark":"*","mocha":"*"},"bin":{"js-yaml":"bin/js-yaml.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"dde1ffbe2726e3fff97efb65fd02dbd6647b8309","tarball":"https://registry.npmjs.org/js-yaml/-/js-yaml-3.2.6.tgz"}},"3.2.7":{"name":"js-yaml","version":"3.2.7","dependencies":{"argparse":"~ 1.0.0","esprima":"~ 2.0.0"},"devDependencies":{"ansi":"*","benchmark":"*","mocha":"*"},"bin":{"js-yaml":"bin/js-yaml.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"102790f265d986fe95a4d0f2a792e7a7bd886eec","tarball":"https://registry.npmjs.org/js-yaml/-/js-yaml-3.2.7.tgz"}},"3.3.0":{"name":"js-yaml","version":"3.3.0","dependencies":{"argparse":"~1.0.2","esprima":"~2.2.0"},"devDependencies":{"ansi":"*","benchmark":"*","eslint":"0.18.0","eslint-plugin-nodeca":"^1.0.3","istanbul":"*","mocha":"*"},"bin":{"js-yaml":"bin/js-yaml.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"cb6422d39168dbde419fecb7fd06fbe27ad56210","tarball":"https://registry.npmjs.org/js-yaml/-/js-yaml-3.3.0.tgz"}},"3.3.1":{"name":"js-yaml","version":"3.3.1","dependencies":{"argparse":"~1.0.2","esprima":"~2.2.0"},"devDependencies":{"ansi":"*","benchmark":"*","eslint":"0.18.0","eslint-plugin-nodeca":"^1.0.3","istanbul":"*","mocha":"*"},"bin":{"js-yaml":"bin/js-yaml.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"ca1acd3423ec275d12140a7bab51db015ba0b3c0","tarball":"https://registry.npmjs.org/js-yaml/-/js-yaml-3.3.1.tgz"}},"3.4.0":{"name":"js-yaml","version":"3.4.0","dependencies":{"argparse":"~1.0.2","esprima":"~2.2.0"},"devDependencies":{"ansi":"*","benchmark":"*","eslint":"0.24.1","eslint-plugin-nodeca":"^1.0.3","istanbul":"*","mocha":"*"},"bin":{"js-yaml":"bin/js-yaml.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"63498041a26425d31c3d662ec6f5d0a25c1c7d9b","tarball":"https://registry.npmjs.org/js-yaml/-/js-yaml-3.4.0.tgz"}},"3.4.1":{"name":"js-yaml","version":"3.4.1","dependencies":{"argparse":"~1.0.2","esprima":"~2.2.0"},"devDependencies":{"ansi":"*","benchmark":"*","eslint":"0.24.1","eslint-plugin-nodeca":"^1.0.3","istanbul":"*","mocha":"*"},"bin":{"js-yaml":"bin/js-yaml.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"7183990c62f646369eaa04675b2d5f1e71d62b8b","tarball":"https://registry.npmjs.org/js-yaml/-/js-yaml-3.4.1.tgz"}},"3.4.2":{"name":"js-yaml","version":"3.4.2","dependencies":{"argparse":"~1.0.2","esprima":"~2.2.0"},"devDependencies":{"ansi":"*","benchmark":"*","eslint":"0.24.1","eslint-plugin-nodeca":"^1.0.3","istanbul":"*","mocha":"*"},"bin":{"js-yaml":"bin/js-yaml.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"10942383ee4b9c2c20ede2388c1b0f3878a2b0ce","tarball":"https://registry.npmjs.org/js-yaml/-/js-yaml-3.4.2.tgz"}},"3.4.3":{"name":"js-yaml","version":"3.4.3","dependencies":{"argparse":"^1.0.2","esprima":"^2.6.0"},"devDependencies":{"ansi":"*","benchmark":"*","eslint":"0.24.1","eslint-plugin-nodeca":"^1.0.3","istanbul":"*","mocha":"*"},"bin":{"js-yaml":"bin/js-yaml.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"98c3a3f06bdac9dfc270fd91cec9d943e364cecd","tarball":"https://registry.npmjs.org/js-yaml/-/js-yaml-3.4.3.tgz"}},"3.4.4":{"name":"js-yaml","version":"3.4.4","dependencies":{"argparse":"^1.0.2","esprima":"^2.6.0"},"devDependencies":{"ansi":"*","benchmark":"*","eslint":"0.24.1","eslint-plugin-nodeca":"^1.0.3","istanbul":"*","mocha":"*"},"bin":{"js-yaml":"bin/js-yaml.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"33ac457edeb78040fc1490f57eb3e7e9fe57cee5","tarball":"https://registry.npmjs.org/js-yaml/-/js-yaml-3.4.4.tgz"}},"3.4.5":{"name":"js-yaml","version":"3.4.5","dependencies":{"argparse":"^1.0.2","esprima":"^2.6.0"},"devDependencies":{"ansi":"*","benchmark":"*","eslint":"0.24.1","eslint-plugin-nodeca":"^1.0.3","istanbul":"*","mocha":"*"},"bin":{"js-yaml":"bin/js-yaml.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"c3403797df12b91866574f2de23646fe8cafb44d","tarball":"https://registry.npmjs.org/js-yaml/-/js-yaml-3.4.5.tgz"}},"3.4.6":{"name":"js-yaml","version":"3.4.6","dependencies":{"argparse":"^1.0.2","esprima":"^2.6.0","inherit":"^2.2.2"},"devDependencies":{"ansi":"*","benchmark":"*","eslint":"0.24.1","eslint-plugin-nodeca":"^1.0.3","istanbul":"*","mocha":"*"},"bin":{"js-yaml":"bin/js-yaml.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"6be1b23f6249f53d293370fd4d1aaa63ce1b4eb0","tarball":"https://registry.npmjs.org/js-yaml/-/js-yaml-3.4.6.tgz"}},"3.5.0":{"name":"js-yaml","version":"3.5.0","dependencies":{"argparse":"^1.0.2","esprima":"^2.6.0","inherit":"^2.2.2"},"devDependencies":{"ansi":"*","benchmark":"*","browserify":"^13.0.0","eslint":"0.24.1","eslint-plugin-nodeca":"^1.0.3","istanbul":"*","mocha":"*","uglify-js":"^2.6.1"},"bin":{"js-yaml":"bin/js-yaml.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"617f504af336e98c219a8a6eb7d67ab1b7072fcc","tarball":"https://registry.npmjs.org/js-yaml/-/js-yaml-3.5.0.tgz"}},"3.5.1":{"name":"js-yaml","version":"3.5.1","dependencies":{"argparse":"^1.0.2","esprima":"^2.6.0"},"devDependencies":{"ansi":"*","benchmark":"*","browserify":"^13.0.0","codemirror":"^5.10.0","eslint":"0.24.1","eslint-plugin-nodeca":"^1.0.3","istanbul":"*","mocha":"*","uglify-js":"^2.6.1"},"bin":{"js-yaml":"bin/js-yaml.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"dadd0939be1956726051085d259973f301fcdb31","tarball":"https://registry.npmjs.org/js-yaml/-/js-yaml-3.5.1.tgz"}},"3.5.2":{"name":"js-yaml","version":"3.5.2","dependencies":{"argparse":"^1.0.2","esprima":"^2.6.0"},"devDependencies":{"ansi":"*","benchmark":"*","browserify":"^13.0.0","codemirror":"^5.10.0","eslint":"0.24.1","eslint-plugin-nodeca":"^1.0.3","istanbul":"*","mocha":"*","uglify-js":"^2.6.1"},"bin":{"js-yaml":"bin/js-yaml.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"46a76fefeec9ec66cb4e71faef07118c6bf246e9","tarball":"https://registry.npmjs.org/js-yaml/-/js-yaml-3.5.2.tgz"}},"3.5.3":{"name":"js-yaml","version":"3.5.3","dependencies":{"argparse":"^1.0.2","esprima":"^2.6.0"},"devDependencies":{"ansi":"*","benchmark":"*","browserify":"^13.0.0","codemirror":"^5.10.0","eslint":"^2.0.0-rc.1","istanbul":"*","mocha":"*","uglify-js":"^2.6.1"},"bin":{"js-yaml":"bin/js-yaml.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"e9ee6082b0657770e4346dfaf2a58c5992251f76","tarball":"https://registry.npmjs.org/js-yaml/-/js-yaml-3.5.3.tgz"}},"3.5.4":{"name":"js-yaml","version":"3.5.4","dependencies":{"argparse":"^1.0.2","esprima":"^2.6.0"},"devDependencies":{"ansi":"*","benchmark":"*","browserify":"^13.0.0","codemirror":"^5.10.0","eslint":"^2.0.0-rc.1","istanbul":"*","mocha":"*","uglify-js":"^2.6.1"},"bin":{"js-yaml":"bin/js-yaml.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"f64f16dcd78beb9ce8361068e733ebe47b079179","tarball":"https://registry.npmjs.org/js-yaml/-/js-yaml-3.5.4.tgz"}},"3.5.5":{"name":"js-yaml","version":"3.5.5","dependencies":{"argparse":"^1.0.2","esprima":"^2.6.0"},"devDependencies":{"ansi":"*","benchmark":"*","browserify":"^13.0.0","codemirror":"^5.10.0","eslint":"^2.0.0-rc.1","istanbul":"*","mocha":"*","uglify-js":"^2.6.1"},"bin":{"js-yaml":"bin/js-yaml.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"0377c38017cabc7322b0d1fbcd25a491641f2fbe","tarball":"https://registry.npmjs.org/js-yaml/-/js-yaml-3.5.5.tgz"}},"3.6.0":{"name":"js-yaml","version":"3.6.0","dependencies":{"argparse":"^1.0.7","esprima":"^2.6.0"},"devDependencies":{"ansi":"*","benchmark":"*","browserify":"^13.0.0","codemirror":"^5.13.4","eslint":"^2.8.0","istanbul":"*","mocha":"*","uglify-js":"^2.6.1"},"bin":{"js-yaml":"bin/js-yaml.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"3b7bf3256dd598f60f8b6f8ea75514a585a24dc6","tarball":"https://registry.npmjs.org/js-yaml/-/js-yaml-3.6.0.tgz"}},"3.6.1":{"name":"js-yaml","version":"3.6.1","dependencies":{"argparse":"^1.0.7","esprima":"^2.6.0"},"devDependencies":{"ansi":"*","benchmark":"*","browserify":"^13.0.0","codemirror":"^5.13.4","eslint":"^2.8.0","istanbul":"*","mocha":"*","uglify-js":"^2.6.1"},"bin":{"js-yaml":"bin/js-yaml.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"6e5fe67d8b205ce4d22fad05b7781e8dadcc4b30","tarball":"https://registry.npmjs.org/js-yaml/-/js-yaml-3.6.1.tgz"}},"3.7.0":{"name":"js-yaml","version":"3.7.0","dependencies":{"argparse":"^1.0.7","esprima":"^2.6.0"},"devDependencies":{"ansi":"*","benchmark":"*","browserify":"^13.0.0","codemirror":"^5.13.4","eslint":"^2.8.0","istanbul":"*","mocha":"*","uglify-js":"^2.6.1"},"bin":{"js-yaml":"bin/js-yaml.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"5c967ddd837a9bfdca5f2de84253abe8a1c03b80","tarball":"https://registry.npmjs.org/js-yaml/-/js-yaml-3.7.0.tgz"}},"3.8.0":{"name":"js-yaml","version":"3.8.0","dependencies":{"argparse":"^1.0.7","esprima":"^3.1.1"},"devDependencies":{"ansi":"*","benchmark":"*","browserify":"^13.0.0","codemirror":"^5.13.4","eslint":"^3.10.0","istanbul":"*","mocha":"*","uglify-js":"^2.6.1"},"bin":{"js-yaml":"bin/js-yaml.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"f63620d2ee6763dcf95078bf7bdbaa01d8db4e73","tarball":"https://registry.npmjs.org/js-yaml/-/js-yaml-3.8.0.tgz"}},"3.8.1":{"name":"js-yaml","version":"3.8.1","dependencies":{"argparse":"^1.0.7","esprima":"^3.1.1"},"devDependencies":{"ansi":"*","benchmark":"*","browserify":"^13.0.0","codemirror":"^5.13.4","eslint":"^3.10.0","istanbul":"*","mocha":"*","uglify-js":"^2.6.1"},"bin":{"js-yaml":"bin/js-yaml.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"782ba50200be7b9e5a8537001b7804db3ad02628","tarball":"https://registry.npmjs.org/js-yaml/-/js-yaml-3.8.1.tgz"}},"3.8.2":{"name":"js-yaml","version":"3.8.2","dependencies":{"argparse":"^1.0.7","esprima":"^3.1.1"},"devDependencies":{"ansi":"*","benchmark":"*","browserify":"^13.0.0","codemirror":"^5.13.4","eslint":"^3.10.0","istanbul":"*","mocha":"*","uglify-js":"^2.6.1"},"bin":{"js-yaml":"bin/js-yaml.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"02d3e2c0f6beab20248d412c352203827d786721","tarball":"https://registry.npmjs.org/js-yaml/-/js-yaml-3.8.2.tgz"}},"3.8.3":{"name":"js-yaml","version":"3.8.3","dependencies":{"argparse":"^1.0.7","esprima":"^3.1.1"},"devDependencies":{"ansi":"*","benchmark":"*","browserify":"^13.0.0","codemirror":"^5.13.4","eslint":"^3.10.0","istanbul":"*","mocha":"*","uglify-js":"^2.6.1"},"bin":{"js-yaml":"bin/js-yaml.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"33a05ec481c850c8875929166fe1beb61c728766","tarball":"https://registry.npmjs.org/js-yaml/-/js-yaml-3.8.3.tgz"}},"3.8.4":{"name":"js-yaml","version":"3.8.4","dependencies":{"argparse":"^1.0.7","esprima":"^3.1.1"},"devDependencies":{"ansi":"^0.3.1","benchmark":"^2.1.4","browserify":"^14.3.0","codemirror":"^5.13.4","eslint":"^3.10.0","istanbul":"^0.4.5","mocha":"^3.3.0","uglify-js":"^3.0.1"},"bin":{"js-yaml":"bin/js-yaml.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"520b4564f86573ba96662af85a8cafa7b4b5a6f6","tarball":"https://registry.npmjs.org/js-yaml/-/js-yaml-3.8.4.tgz"}},"3.9.0":{"name":"js-yaml","version":"3.9.0","dependencies":{"argparse":"^1.0.7","esprima":"^4.0.0"},"devDependencies":{"ansi":"^0.3.1","benchmark":"^2.1.4","browserify":"^14.3.0","codemirror":"^5.13.4","eslint":"^4.1.1","istanbul":"^0.4.5","mocha":"^3.3.0","uglify-js":"^3.0.1"},"bin":{"js-yaml":"bin/js-yaml.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-0LoUNELX4S+iofCT8f4uEHIiRBR+c2AINyC8qRWfC6QNruLtxVZRJaPcu/xwMgFIgDxF25tGHaDjvxzJCNE9yw==","shasum":"4ffbbf25c2ac963b8299dc74da7e3740de1c18ce","tarball":"https://registry.npmjs.org/js-yaml/-/js-yaml-3.9.0.tgz"}},"3.9.1":{"name":"js-yaml","version":"3.9.1","dependencies":{"argparse":"^1.0.7","esprima":"^4.0.0"},"devDependencies":{"ansi":"^0.3.1","benchmark":"^2.1.4","browserify":"^14.3.0","codemirror":"^5.13.4","eslint":"^4.1.1","istanbul":"^0.4.5","mocha":"^3.3.0","uglify-js":"^3.0.1"},"bin":{"js-yaml":"bin/js-yaml.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-CbcG379L1e+mWBnLvHWWeLs8GyV/EMw862uLI3c+GxVyDHWZcjZinwuBd3iW2pgxgIlksW/1vNJa4to+RvDOww==","shasum":"08775cebdfdd359209f0d2acd383c8f86a6904a0","tarball":"https://registry.npmjs.org/js-yaml/-/js-yaml-3.9.1.tgz"}},"3.10.0":{"name":"js-yaml","version":"3.10.0","dependencies":{"argparse":"^1.0.7","esprima":"^4.0.0"},"devDependencies":{"ansi":"^0.3.1","benchmark":"^2.1.4","browserify":"^14.3.0","codemirror":"^5.13.4","eslint":"^4.1.1","istanbul":"^0.4.5","mocha":"^3.3.0","uglify-js":"^3.0.1"},"bin":{"js-yaml":"bin/js-yaml.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-O2v52ffjLa9VeM43J4XocZE//WT9N0IiwDa3KSHH7Tu8CtH+1qM8SIZvnsTh6v+4yFy5KUY3BHUVwjpfAWsjIA==","shasum":"2e78441646bd4682e963f22b6e92823c309c62dc","tarball":"https://registry.npmjs.org/js-yaml/-/js-yaml-3.10.0.tgz"}},"3.11.0":{"name":"js-yaml","version":"3.11.0","dependencies":{"argparse":"^1.0.7","esprima":"^4.0.0"},"devDependencies":{"ansi":"^0.3.1","benchmark":"^2.1.4","browserify":"^14.3.0","codemirror":"^5.13.4","eslint":"^4.1.1","istanbul":"^0.4.5","mocha":"^3.3.0","uglify-js":"^3.0.1"},"bin":{"js-yaml":"bin/js-yaml.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-saJstZWv7oNeOyBh3+Dx1qWzhW0+e6/8eDzo7p5rDFqxntSztloLtuKu+Ejhtq82jsilwOIZYsCz+lIjthg1Hw==","shasum":"597c1a8bd57152f26d622ce4117851a51f5ebaef","tarball":"https://registry.npmjs.org/js-yaml/-/js-yaml-3.11.0.tgz","fileCount":37,"unpackedSize":278411}},"3.12.0":{"name":"js-yaml","version":"3.12.0","dependencies":{"argparse":"^1.0.7","esprima":"^4.0.0"},"devDependencies":{"ansi":"^0.3.1","benchmark":"^2.1.4","browserify":"^16.2.2","codemirror":"^5.13.4","eslint":"^4.1.1","fast-check":"1.1.3","istanbul":"^0.4.5","mocha":"^5.2.0","uglify-js":"^3.0.1"},"bin":{"js-yaml":"bin/js-yaml.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-PIt2cnwmPfL4hKNwqeiuz4bKfnzHTBv6HyVgjahA6mPLwPDzjDWrplJBMjHUFxku/N3FlmrbyPclad+I+4mJ3A==","shasum":"eaed656ec8344f10f527c6bfa1b6e2244de167d1","tarball":"https://registry.npmjs.org/js-yaml/-/js-yaml-3.12.0.tgz","fileCount":37,"unpackedSize":279585,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbEc07CRA9TVsSAnZWagAA9KYP/jJct6c+A8un8iYGF5tA\nDYdcLVxFtOLUKY9e07zgJH1aqOyGc2IK2FRPDlcrGWk28GhIP57Qu/8j4Eo1\nS1IhBIK8LotiFn0xceoXn0oQc+YLZ5k/tCzdl8FFdm5zZoPZqn6YtawdWE7s\ndP1hdPAYMr8tJq2RFSBYIAeYWe0nTNEeL/dfmxjoyvjcR3n2XB999MLV84b9\nU0iJtl3ddk7VaweQLRnt/dpjnNnGwIgeZSw+BtAtXnB8vWy6jtN2TxUsPN3B\n4fnKiRJ5zSgm3wPdyRvLNfmt6x6koJ7Bm2zky+Bmb4lt+qRNZ9+S7d9vvFKG\n0JMZT6TIsc8ch56zyrnPcQUBwLsdZJhaJMln2afNcLmYSGcNhmCZNRjcqIrD\nOeWJ+xG1rSp1kcKgxXw3Wl8Av8gsk4cG+A/MpJMzGl4qYLWAcLdmdYtG+PLd\nuxiM0YbcVXB/iFMjSTN1CJb4EnUO57Ekb6QxAVwFcRFALEzTBwNggIJWH5JR\nB/B3RVkontPizUWo7G1fFz03ANyqXhL3H5iA3EP+bQ22tsACq7e26uVWSHv4\nyf26bM3Ks8+yAFIcC3YK/C26Ju+3WfLbEQwsDlxAzzJVXpdhfvU6jOs0Snqc\n8Tv0LRuCDq3sYNX336VvvltOfpHBTsNELliAShjlu3E+bnQJ+K72RRVZ8AbP\n/DgW\r\n=U+f/\r\n-----END PGP SIGNATURE-----\r\n"}}},"name":"js-yaml","dist-tags":{"latest":"3.12.0"},"modified":"2018-08-02T09:52:55.109Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/a6/17/aa3e01879c6f6d2a4e634ba661d76db9f1252fbb859cdf7bd1b1c20b9de5c98b8bd6dba21053b117f5b4e64190fac01badafa3ec2d9786ef02711b2e255e b/npm/.npm/_cacache/content-v2/sha512/a6/17/aa3e01879c6f6d2a4e634ba661d76db9f1252fbb859cdf7bd1b1c20b9de5c98b8bd6dba21053b117f5b4e64190fac01badafa3ec2d9786ef02711b2e255e new file mode 100644 index 0000000..fd7317d --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/a6/17/aa3e01879c6f6d2a4e634ba661d76db9f1252fbb859cdf7bd1b1c20b9de5c98b8bd6dba21053b117f5b4e64190fac01badafa3ec2d9786ef02711b2e255e @@ -0,0 +1 @@ +{"versions":{"1.0.0":{"name":"find-up","version":"1.0.0","dependencies":{"path-exists":"^2.0.0","pinkie-promise":"^1.0.0"},"devDependencies":{"ava":"*","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"df0a54abeebdf9984168fa556bd18a8f24b4d15c","tarball":"https://registry.npmjs.org/find-up/-/find-up-1.0.0.tgz"},"engines":{"node":">=0.10.0"}},"1.1.0":{"name":"find-up","version":"1.1.0","dependencies":{"path-exists":"^2.0.0","pinkie-promise":"^2.0.0"},"devDependencies":{"ava":"*","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"a63b0eec4625a2902534898a5f9eec8aaed046e9","tarball":"https://registry.npmjs.org/find-up/-/find-up-1.1.0.tgz"},"engines":{"node":">=0.10.0"}},"1.1.1":{"name":"find-up","version":"1.1.1","dependencies":{"path-exists":"^2.0.0","pinkie-promise":"^2.0.0"},"devDependencies":{"ava":"*","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"53bdfb982c41e97ba7f64173d239b406cfd79f85","tarball":"https://registry.npmjs.org/find-up/-/find-up-1.1.1.tgz"},"engines":{"node":">=0.10.0"}},"1.1.2":{"name":"find-up","version":"1.1.2","dependencies":{"path-exists":"^2.0.0","pinkie-promise":"^2.0.0"},"devDependencies":{"ava":"*","tempfile":"^1.1.1","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f","tarball":"https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz"},"engines":{"node":">=0.10.0"}},"2.0.0":{"name":"find-up","version":"2.0.0","dependencies":{"path-exists":"^2.0.0"},"devDependencies":{"ava":"*","tempfile":"^1.1.1","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"71e6dc2dad9222143cfc0fa5de7ab739e7320c05","tarball":"https://registry.npmjs.org/find-up/-/find-up-2.0.0.tgz"},"engines":{"node":">=4"}},"2.1.0":{"name":"find-up","version":"2.1.0","dependencies":{"locate-path":"^2.0.0"},"devDependencies":{"ava":"*","tempfile":"^1.1.1","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"45d1b7e506c717ddd482775a2b77920a3c0c57a7","tarball":"https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz"},"engines":{"node":">=4"}},"3.0.0":{"name":"find-up","version":"3.0.0","dependencies":{"locate-path":"^3.0.0"},"devDependencies":{"ava":"*","tempy":"^0.2.1","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==","shasum":"49169f1d7993430646da61ecc5ae355c21c97b73","tarball":"https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz","fileCount":4,"unpackedSize":4845,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbJ3kZCRA9TVsSAnZWagAAfx0P/i+gkVWTJv3VhXz8EbEf\n3LQ9D2YyTKUseUs5GYfYEmZuJ1QpwqCADP5981jiLwl8MBL1QFq4GqIPD74/\n3XWNSff5pqGg2+/z8fIOKQVi/VcRZYKfZ3BVWMRf0kldgonCxLsQVuOoEXOQ\n90aFj9OsilQRKjwfltiFysvyPFo4rEQRiC4fh0YHant7vtUVIucCQTmWmoB+\n9y9M3nplqA7IiiCZhLX5OKqXW27FzA/em006Fi16LiA6/dOdXAgcWwn49Ha3\n1K0zfxh47sGKA/noxaxVS63h+og9XgYdhewrO7rU2zvtbwyuAgJoAPK/8448\nqk+YEpxG+YuNp4t2eU+XtS5yEKuEEC/R6f3qN7BoNkuS9EKnM56LuWj1yinQ\nyyvbtuuwFbwmtMGLCZVANiDR0+UAGpzJKW0KZs9kg9USpEfkp07oNwuLQQuw\neSdz1vblDju3Txa0N0hFHckn4B8+zyL/VQwVE1aA2bXrfLMby8k1rHQq4r3R\nwAMgU1If5UVS9obuuoYKW9B4EGBabI4o0rvKfsMMNY1+TYi3AUeFArRuYF1D\nJODWneatuNZHU06fMM7+kV5r+5aZfFfqJcbyx0Qdly12X8glIgGciAExeXtb\nB8UImgyhT0Nz2/hpSNgW/6P8+vfFze1uIodDvSezJk3b6Vc7LAH1SNy3kYKh\n9rVa\r\n=sd/n\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=6"}}},"name":"find-up","dist-tags":{"latest":"3.0.0"},"modified":"2018-06-18T09:19:24.163Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/a8/3c/475a7ea87797b1270b501ea507aab6c4de4577be7116f5585550a4a8d4853a667f5e662fa8d72bf663aca2c268de81e98587da50f644491a4e035edfa952 b/npm/.npm/_cacache/content-v2/sha512/a8/3c/475a7ea87797b1270b501ea507aab6c4de4577be7116f5585550a4a8d4853a667f5e662fa8d72bf663aca2c268de81e98587da50f644491a4e035edfa952 new file mode 100644 index 0000000..07d050f --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/a8/3c/475a7ea87797b1270b501ea507aab6c4de4577be7116f5585550a4a8d4853a667f5e662fa8d72bf663aca2c268de81e98587da50f644491a4e035edfa952 @@ -0,0 +1 @@ +{"versions":{"1.0.0":{"name":"wrappy","version":"1.0.0","dependencies":{},"devDependencies":{"tap":"^0.4.12"},"_hasShrinkwrap":false,"directories":{"test":"test"},"dist":{"shasum":"8aae4fc6b4cd6be32a4553985bcf32b3ee131e4e","tarball":"https://registry.npmjs.org/wrappy/-/wrappy-1.0.0.tgz"}},"1.0.1":{"name":"wrappy","version":"1.0.1","dependencies":{},"devDependencies":{"tap":"^0.4.12"},"_hasShrinkwrap":false,"directories":{"test":"test"},"dist":{"shasum":"1e65969965ccbc2db4548c6b84a6f2c5aedd4739","tarball":"https://registry.npmjs.org/wrappy/-/wrappy-1.0.1.tgz"}},"1.0.2":{"name":"wrappy","version":"1.0.2","dependencies":{},"devDependencies":{"tap":"^2.3.1"},"_hasShrinkwrap":false,"directories":{"test":"test"},"dist":{"shasum":"b5243d8f3ec1aa35f1364605bc0d1036e30ab69f","tarball":"https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz"}}},"name":"wrappy","dist-tags":{"latest":"1.0.2"},"modified":"2017-06-16T21:02:13.142Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/a8/56/db0163f99589781d4ca4149e54b3db7a0c0af63fe4506ef3dbe337eb00e2a82605d0312b7161cc403e6b099655dc4b0b943328dfb7ab9cd32cb6f29a398a b/npm/.npm/_cacache/content-v2/sha512/a8/56/db0163f99589781d4ca4149e54b3db7a0c0af63fe4506ef3dbe337eb00e2a82605d0312b7161cc403e6b099655dc4b0b943328dfb7ab9cd32cb6f29a398a new file mode 100644 index 0000000..9a7f5ef --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/a8/56/db0163f99589781d4ca4149e54b3db7a0c0af63fe4506ef3dbe337eb00e2a82605d0312b7161cc403e6b099655dc4b0b943328dfb7ab9cd32cb6f29a398a @@ -0,0 +1 @@ +{"versions":{"0.3.0":{"name":"colors","version":"0.3.0","_hasShrinkwrap":false,"directories":{},"dist":{"tarball":"https://registry.npmjs.org/colors/-/colors-0.3.0.tgz","shasum":"c247d64d34db0ca4dc8e43f3ecd6da98d0af94e7"},"engines":{"node":"*"}},"0.5.0":{"name":"colors","version":"0.5.0","_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"ac3ed125fcd8ccbb939b796117bf05d5f15c3e67","tarball":"https://registry.npmjs.org/colors/-/colors-0.5.0.tgz"},"engines":{"node":"*"}},"0.5.1":{"name":"colors","version":"0.5.1","dependencies":{},"devDependencies":{},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"7d0023eaeb154e8ee9fce75dcb923d0ed1667774","tarball":"https://registry.npmjs.org/colors/-/colors-0.5.1.tgz"},"engines":{"node":">=0.1.90"}},"0.6.0":{"name":"colors","version":"0.6.0","dependencies":{},"devDependencies":{},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"07ec10d8ac4f5a2e78f8d820e3e7832b3b463cad","tarball":"https://registry.npmjs.org/colors/-/colors-0.6.0.tgz"},"engines":{"node":">=0.1.90"}},"0.6.0-1":{"name":"colors","version":"0.6.0-1","dependencies":{},"devDependencies":{},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"6dbb68ceb8bc60f2b313dcc5ce1599f06d19e67a","tarball":"https://registry.npmjs.org/colors/-/colors-0.6.0-1.tgz"},"engines":{"node":">=0.1.90"}},"0.6.1":{"name":"colors","version":"0.6.1","_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"59c7799f6c91e0e15802980a98ed138b3c78f4e9","tarball":"https://registry.npmjs.org/colors/-/colors-0.6.1.tgz"},"engines":{"node":">=0.1.90"}},"0.6.2":{"name":"colors","version":"0.6.2","_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"2423fe6678ac0c5dae8852e5d0e5be08c997abcc","tarball":"https://registry.npmjs.org/colors/-/colors-0.6.2.tgz"},"engines":{"node":">=0.1.90"}},"1.0.0":{"name":"colors","version":"1.0.0","_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"d907bed5e1dcbdee6a0a5533f76855c7df506580","tarball":"https://registry.npmjs.org/colors/-/colors-1.0.0.tgz"},"engines":{"node":">=0.1.90"}},"1.0.1":{"name":"colors","version":"1.0.1","_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"3414b3ebe708dd2e0e299074af0acfda20dc7764","tarball":"https://registry.npmjs.org/colors/-/colors-1.0.1.tgz"},"engines":{"node":">=0.1.90"}},"1.0.2":{"name":"colors","version":"1.0.2","_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"6788c0d667206b8262ec5de49dd6cc7d662b5b42","tarball":"https://registry.npmjs.org/colors/-/colors-1.0.2.tgz"},"engines":{"node":">=0.1.90"}},"1.0.3":{"name":"colors","version":"1.0.3","_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"0433f44d809680fdeb60ed260f1b0c262e82a40b","tarball":"https://registry.npmjs.org/colors/-/colors-1.0.3.tgz"},"engines":{"node":">=0.1.90"}},"1.1.0":{"name":"colors","version":"1.1.0","_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"ea2b7dfd38a7bb631323d29b108fa78fd16dc523","tarball":"https://registry.npmjs.org/colors/-/colors-1.1.0.tgz"},"engines":{"node":">=0.1.90"}},"1.1.1":{"name":"colors","version":"1.1.1","_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"6fc916ea57eca2edb7aa1771f4a8c21789f79e0b","tarball":"https://registry.npmjs.org/colors/-/colors-1.1.1.tgz"},"engines":{"node":">=0.1.90"}},"1.1.2":{"name":"colors","version":"1.1.2","_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"168a4701756b6a7f51a12ce0c97bfa28c084ed63","tarball":"https://registry.npmjs.org/colors/-/colors-1.1.2.tgz"},"engines":{"node":">=0.1.90"}},"1.2.0-rc0":{"name":"colors","version":"1.2.0-rc0","_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-NCYIuw9bgeBSokEO9eMoKtyXscuNdn/oaMWWDBXr+fp/BHd5HBhVP1FWHkRkCXPqZgEfWeP4ID+xM4rQPjnXjA==","shasum":"55fa8c0c4454606756cd96ebcf520a9fcf743d11","tarball":"https://registry.npmjs.org/colors/-/colors-1.2.0-rc0.tgz","fileCount":19,"unpackedSize":31382},"engines":{"node":">=0.1.90"}},"1.2.0":{"name":"colors","version":"1.2.0","_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-lweugcX5nailCqZBttArTojZZpHGWhmFJX78KJHlxwhM8tLAy5QCgRgRxrubrksdvA+2Y3inWG5TToyyjL82BQ==","shasum":"24ec7283fcc91557801b22521e4619fedc7ca306","tarball":"https://registry.npmjs.org/colors/-/colors-1.2.0.tgz","fileCount":19,"unpackedSize":31582},"engines":{"node":">=0.1.90"}},"1.2.1":{"name":"colors","version":"1.2.1","_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-s8+wktIuDSLffCywiwSxQOMqtPxML11a/dtHE17tMn4B1MSWw/C22EKf7M2KGUBcDaVFEGT+S8N02geDXeuNKg==","shasum":"f4a3d302976aaf042356ba1ade3b1a2c62d9d794","tarball":"https://registry.npmjs.org/colors/-/colors-1.2.1.tgz","fileCount":21,"unpackedSize":37634},"engines":{"node":">=0.1.90"}},"1.2.2":{"name":"colors","version":"1.2.2","_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-/8jUaPrx/L4tv/1bsZiUhURANUYWWs/cIT0QaYcgRunB29cqAAOFov+mH4FAGZ/o/c4t0LwZLq6V7GcgPJMFyg==","shasum":"325e0c9ae2840dd0b8fb2d57be13b97f134af11a","tarball":"https://registry.npmjs.org/colors/-/colors-1.2.2.tgz","fileCount":21,"unpackedSize":36582,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa52ODCRA9TVsSAnZWagAAKbAP/imFLF4cYsEwnMW5yXhQ\non1ZJe39u7cu7up4RlTyPFwdW5o+vt1X3DG0QL3+EMtDj3eArtoXHslwXv35\n2qTpEl6R2RSxS1Q2Mc7Iyad41ip2PBlraiiI5ALphCu5fRNNOKYV4BxAeBjB\nExxHBtktdyi2kDJb4ITj7KMZI5e7CyFW7201TrGNhMRD7fQpTbEmYSyzfOy1\nBtTf1VpZtGXD7z4KIerjjqCSTV6rtsObvxJyzKnrVB3WLQ/qLMYFi8RDftwX\ng4Phl8TMQ8TBMAte6Yl+NF2vdZmhqOPtu/2HgRY+fg4NmnOsP/hzNvc3ww0U\nsC5k+HWNYEQZ237fccl/DcrqXj6Pfz6yfq1LKamrUVMZABqKSXnon9MbDkiU\nblhkyhqyu6TwiHOaU0fCvhwatTzpCwzFywnDgdZfIYTkWTrkojIaI6vuK8/d\n85p/2mhhjCPHxz0x+JuUH86ZgpyXnsycZysdlj/k6PTsfE2wVOqeK1n26ZXY\nPe10indhed4mcyw+0UKeE4vcB1r0BAC5xD/Mf48G4Q6iMtDDGYHzh84pwWS2\n1x2GLoMbgnr/JRfbbkUaUEUGOxD2WmyM2UanLrokpW1PnzNhcvSura/Qdjn6\nqCxh0196OybQZVmAmH6xMLIHH7S53WFt5ccxtxcjFNE6FcX72Z38BXo0ECRk\nBQC4\r\n=N0ea\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=0.1.90"}},"1.2.3":{"name":"colors","version":"1.2.3","devDependencies":{"eslint":"^4.19.1","eslint-config-google":"^0.9.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-qTfM2pNFeMZcLvf/RbrVAzDEVttZjFhaApfx9dplNjvHSX88Ui66zBRb/4YGob/xUWxDceirgoC1lT676asfCQ==","shasum":"1b152a9c4f6c9f74bc4bb96233ad0b7983b79744","tarball":"https://registry.npmjs.org/colors/-/colors-1.2.3.tgz","fileCount":21,"unpackedSize":37117,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa55QsCRA9TVsSAnZWagAAvAYQAKBcVWNj2B4SgtVaKU1s\nrUH7OapgQ9b8NOfy5g7el3+uqWYIiaO+8Bwct3KJMyncewWrifDS+BQ+mhbx\nUZyTz1wKo0/JXrhl5WErlWr1dkeGt1wLw1M357oeSV0ZmGbcfYFwloRCCdWt\n/Bjoi0x5xEh5ZJMmApercCMbIb8dtqRLWEd9JzlSIinem/VZCaPY/NRtFxsn\npAhtQK4eV/Rm88nOwp7bo5Prn/+YUz2UAqVg9J5d8F9Ll4mgdGbn0V9V3J2p\n+75PKrK0C+dUO93+Cq/VyrbhVsR1tC7aUBJCLwwKPO4G3PgW754Q4IQKzUdp\nlVUKcGjaqo8GCJQjvglORXLizGZUMt8VdaTeDUsGkkZ7W7UQtn8DodpCAl3B\ncxP/dInX35Rx61eKJBN5hTmTLFEN9NPu1v5FejBHPVQQCV6Fq+W4hm4t6dwc\nMYoN2DX1xyMZhBpCQh12cIZ71PIizzEyek5GCEongkcawSNUAQLgT6AO0nMM\ncgiiTXrOoDnEYVLQodrxpz17H4J6x5rRpHQpTYrqaH3qSRWnWJbHfVO1vBlj\nRUH5bwaiEGvJwouvN26vyURwqfOBR20W7MLy7sV566CcLscTopZaRrsf4Euw\nhxMDCD/V8y40QfiErVqCZ56/J2rtB3dRBcDKXdw4ss7iNHvA4wyCxQ6RXvqb\nS059\r\n=3FE3\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=0.1.90"}},"1.2.4":{"name":"colors","version":"1.2.4","devDependencies":{"eslint":"^4.19.1","eslint-config-google":"^0.9.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-6Y+iBnWmXL+AWtlOp2Vr6R2w5MUlNJRwR0ShVFaAb1CqWzhPOpQg4L0jxD+xpw/Nc8QJwaq3KM79QUCriY8CWQ==","shasum":"e0cb41d3e4b20806b3bfc27f4559f01b94bc2f7c","tarball":"https://registry.npmjs.org/colors/-/colors-1.2.4.tgz","fileCount":21,"unpackedSize":37120,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa7QEnCRA9TVsSAnZWagAAI2sP/ioRpjx4vK3BfUsOhvzD\nPW9/++JL9bzIE29FLqq/8s/1eGPbKjr6CQAKVQbN2xeBOq/1N7cMkVirg7yM\nR15QhsUp/X0Kp0piC4uuVlhtj5vApJZY6JfbUuZ2OTu09vZdx0y8FZFYeDWy\n02Y4tNHcc6k/QrImx4DHpuhj6XHt4Zlo8vTs1WOd3XlzyUogkhsvehizdeS3\nWEJkNgw7Jiyf+ewamIP2Nj598fM7ZRDLhJ8lZ1WDeUgMbChvcVVaYYOaRThb\nZApY5+0SdW0O353m0bkgPP8CFAavSxgdU0oS8oMJW1MTvKuq4X6w3kRFyqbA\nEB5/nKxwNjyv3UPlnr/NMnJfsoP93UFDq4TTMBPZQN1wFfimITuQXIhwH9ej\nifBkqXs4F489NysPDGlZJpDNgm9LIK3B4QkGePqc7Hy/lf4JDQFicSOkVEGm\nyfkFXgTJBbsh4KfvovK9Gnags2ricsgvNg0WJD3bQ0+CBW6cRRdQJUvaWzSE\nAxjLx3SJbR9yNFFAqlidD5XnwGXQwVV3+l6ocHmwrhOyo51JR3WFRd2Pr0Ie\nk3YzjVbDvKHKiFdK4CztGGRWSvkyMN3J3L8yV6xJFx97fRvFA+zerp1YzgCk\nsTQvgfF5a422HGUZNa8JK24Ewun+PCy46ZNXEHZ0Pwaj6moHrpgom6D5VfOA\nh/cs\r\n=0z3l\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=0.1.90"}},"1.2.5":{"name":"colors","version":"1.2.5","devDependencies":{"eslint":"^4.19.1","eslint-config-google":"^0.9.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-erNRLao/Y3Fv54qUa0LBB+//Uf3YwMUmdJinN20yMXm9zdKKqH9wt7R9IIVZ+K7ShzfpLV/Zg8+VyrBJYB4lpg==","shasum":"89c7ad9a374bc030df8013241f68136ed8835afc","tarball":"https://registry.npmjs.org/colors/-/colors-1.2.5.tgz","fileCount":21,"unpackedSize":37183,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa9TUPCRA9TVsSAnZWagAAcMIP/1ba16EnDEj6pM0451yG\n8zIN7EEQlctxJVuQD6ihsU79jkdUg0UxEtPBEpfd6CMhoLC3iNSTkxk2rrVM\n5b+9Cay7AZM3QgYsdDn2rxH1G0tQBCvDIGNPncUMskhPnNmO1QCKfUlQW9lc\nz/39L5ZXMtxMD1kwdwRmPJMgis77ksyBTCto/NpJb652jVbkTDXaTkaQ0gBq\n0K1dsyoEdgyC9w+nFNy4eWBmliM0JHxsxV9bFCSxLXkDmCAX7N2abv/P9w6+\nr0HfEc9gWqqs7a1K7OvnaLH6sMS9dDssnoJZQ2ZfQfLE11FCgAgQ7fxJxjH5\ncTsRy+k3Wi2sdi2jzaKozVnMXDN+z3rGJtG3DEVjG7M0lPkJVXsF7WiGaxel\nMyt3MJwGVyXtgS6ohoivT7o/lwQN4rhEHmEhAFqQJopiLzI2Q0VlMZwj7314\ngGxyXjcuH47q8UhcEQ6Wqa0zj808caB8WGybGhnSJscd0g9AB6YS+0Nyey/x\nebgW1bwOpvndbiobZOksiVWvAfVTWsqOb6y+cgbe9TQJg4xCWFnSHGAAysE5\ndgOIxX8YecQqffFbXJ4RCQrpmGR9av+5Hi+kPaPxFfy6UUk/60cE2dNMoMqH\n7NaTMCZT1rcqAhDtFI6oQazFf59i9DrIH7I2EHasHOjjVsyKEE6hP/yjNtYz\nStZn\r\n=9DAp\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=0.1.90"}},"1.3.0":{"name":"colors","version":"1.3.0","devDependencies":{"eslint":"^4.19.1","eslint-config-google":"^0.9.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-EDpX3a7wHMWFA7PUHWPHNWqOxIIRSJetuwl0AS5Oi/5FMV8kWm69RTlgm00GKjBO1xFHMtBbL49yRtMMdticBw==","shasum":"5f20c9fef6945cb1134260aab33bfbdc8295e04e","tarball":"https://registry.npmjs.org/colors/-/colors-1.3.0.tgz","fileCount":21,"unpackedSize":37445,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbAfIgCRA9TVsSAnZWagAA7r0P/RKSj0jbws40ohxFeXRE\ntFsE/c7qEBdAhPSP1RevobLNfQeXdK3Ag4vQzAfoFphmwkqrsjxTfYIKfAsy\nVO00M9IkXf4YVzeXq9pEoUsLrE9YnYfuYvsv86iIsq0tcyZUgxH4Zlo9qshc\nrg8WE2u3s3bmYPRYQ8PKPdqyDTk8nnsnCpZwmbQzI94rU0iiYP66CUVmmgUq\nSizX0VKZx6BoWN5kVl2E2h6QmO68N0H3TRyIWXVo0XTo2M0PbLMN9TJwyJHU\nMCi/IO6WysM1w5WgH4HZdJO4PJId7t+Nc5FEbc2/lyBu9cizL5d4vRrKwu0f\nr/khiesY9qUVpa2eTo0xEH4zzxt+srS/lc6BiZJ0mMv+AQX/joX616UUOFAF\nqcgXu/qA4i48OEEsMY+Xyl/laYYuIezoA/p0tXK8W10BLsoyYgFGBp0R/6b3\nSjsu2oaPjPqlDKhRPGhbAmeeI7qh1iomZwSkSrxhbITjd3/aXEtEUtet0ZeW\nVH7GJ51EbYtwjtf4rrDdZ8c1WmzvjSbBfUfceDs0BRv29r65eYq9S06c+xaH\ntcEdqriuxCr7Y0ngO3H1dfOAZ1A2jlJKl/4pyrOCKJoh/ihW0P3LwU8FxvNS\nj4XyPaKhzc/4mGiazU9ux5IxVX2kTnrjnAhIKIsReqJCeT2uUaUPOqc1CYYj\n+eOk\r\n=lS6Q\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=0.1.90"}},"1.3.1":{"name":"colors","version":"1.3.1","devDependencies":{"eslint":"^5.2.0","eslint-config-google":"^0.9.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-jg/vxRmv430jixZrC+La5kMbUWqIg32/JsYNZb94+JEmzceYbWKTsv1OuTp+7EaqiaWRR2tPcykibwCRgclIsw==","shasum":"4accdb89cf2cabc7f982771925e9468784f32f3d","tarball":"https://registry.npmjs.org/colors/-/colors-1.3.1.tgz","fileCount":21,"unpackedSize":37480,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbVP/jCRA9TVsSAnZWagAATscQAI9ayKFI/pnNeXoFVLUl\ndh0Lua+Bsza4mjIV9cPvf6oT8Y4JBg4lDyJ952oKyxItiZuwI9JSfXy0xGNb\nVKU358jj1gtGTSIiD+vB3WXvK5Wy8DDWxe9aJ8qm+XxDy5cSOiSlT/d8dD6E\nCQb0JFRu3Wy2iShVBoRVAwvGJ2esz2B6vZiH8YXJUh6IjPodonkbSEqMi/wl\nUeec2oBk+4XlCejsf8gOJRaIEDwOlbi/ans3r/nksyUwZ0aPMi10c4uiQboz\nGHUgGQsHVTMJ1Yu7EXfRwHzIGEPLMrvQK9IIQpCYtecOL0VQnMzeOaIOGFj6\n4UZtIQkdo0xBRgDj+Eo+KF2PIG7gjwT5OVQsrf6gRRFk8KOLfgmswi5S5o9+\nMKq3Aah3eACKAL9LGxN4lz6T04EwagSS28HGjB6lEXo/LLmnDIQHaHBCzrsh\nOQbvTuW+vjgB5TWFi9BIe4iCsm/LsGEW/kSFp101Z5of0lxLPXBfdxIaDVfc\nwxbfHgDXxujsvXuM0F/gG2qTG72UrDwcrK4k8SZEiIKppNu/XUz3Ffsr2tyU\nHNwTqdwEpYqeXqFYjBQDpPpKG4qboeJnJzB3jxLpVH0nOWmYKT88JZOlB8FR\nB+lJVDOtq80ovh/m3JCw3l5WQip3rdtpbf9kZr49I6KirOc7Tn99UMpE6f41\ngPdf\r\n=dv89\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=0.1.90"}},"1.3.2":{"name":"colors","version":"1.3.2","devDependencies":{"eslint-config-google":"^0.9.1","eslint":"^5.4.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-rhP0JSBGYvpcNQj4s5AdShMeE5ahMop96cTeDl/v9qQQm2fYClE2QXZRi8wLzc+GmXSxdIqqbOIAhyObEXDbfQ==","shasum":"2df8ff573dfbf255af562f8ce7181d6b971a359b","tarball":"https://registry.npmjs.org/colors/-/colors-1.3.2.tgz","fileCount":22,"unpackedSize":53884,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbfbASCRA9TVsSAnZWagAAupgP/RLhkx6+gaWO1J8LFqSK\nfLEiSYsTJxe/EmilFi7w/+QBc8Ye0vehdJkvtvfASZfKTI4hM/1RArQsbWDr\nI+FCN1g23KOXAW2kblwsLdOOsYtanULRVHf6KVdVqbhnNpeKOLH52CODo343\nNoy3OGyVR/FRxwNZ6j7xECJj4Q8ET5/q+fodW8vHOuHm8xz7mr8FZrvWWggc\nCih41IedHCR/N8oeWmJtHWR1viD5NINxQr1k8/srD+VVIiRa7C7GG4yMcc7b\nxX2cGBT+CFs0oEjvfsMFaZdbmVLeJWv5B00xQxbRkrIKvA63057sHO7WLA/I\nEKCucGz0HF9N55x4mOIhrX2r89qMNhnsvEUMY66GXMnfPGSdOyKDa7GmicYV\nwX7Vm2mmneAWwF+IsSpyx5H9i+Ul0kg4vcbcmS1uXVh7aJBwqTlhPSk0SanN\n6tiIh/F7QVS4Z1tWJB+7ZahshZRT+I/pxag12/GFkcu3zWns9HgZlPwp5dvK\nztRLcvzNjNsiuCAyLVDOh1iFcNnhOGoKcI5J9Og/CiI/VaTZmsT38RJ8qHQv\nqaewEh7JcYbuRgffwOe/a1IZF/eUctSrfh0IfNRTosM3wHIh1f7aIHCF+S67\n9j8kLY8RCxLQH7h5XxH+yQxa0TAwhKObL4qYZqlTKEpMaIPXpMeyAB1R/8X9\nWnT0\r\n=ZBF8\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=0.1.90"}}},"name":"colors","dist-tags":{"latest":"1.3.2","next":"1.2.0-rc0"},"modified":"2018-08-22T18:48:53.279Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/ab/d8/5e76dcf25c7af94b4035bc43e82bfee5f0da5f905613aba88263e3e7a3665b75947a59ec5916da9e546906c56dd310930df75e19e791270063267a794841 b/npm/.npm/_cacache/content-v2/sha512/ab/d8/5e76dcf25c7af94b4035bc43e82bfee5f0da5f905613aba88263e3e7a3665b75947a59ec5916da9e546906c56dd310930df75e19e791270063267a794841 new file mode 100644 index 0000000..13bd5c1 Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha512/ab/d8/5e76dcf25c7af94b4035bc43e82bfee5f0da5f905613aba88263e3e7a3665b75947a59ec5916da9e546906c56dd310930df75e19e791270063267a794841 differ diff --git a/npm/.npm/_cacache/content-v2/sha512/ab/ff/c6ee8a7ddb59645772bd3ef7491e4ac4a15fa1329cd038cc944ed02fd064a909f64e0491ead6a9500a28810c14e41bff775a05dcc3ba1ab57407e07a1c32 b/npm/.npm/_cacache/content-v2/sha512/ab/ff/c6ee8a7ddb59645772bd3ef7491e4ac4a15fa1329cd038cc944ed02fd064a909f64e0491ead6a9500a28810c14e41bff775a05dcc3ba1ab57407e07a1c32 new file mode 100644 index 0000000..2adbe74 --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/ab/ff/c6ee8a7ddb59645772bd3ef7491e4ac4a15fa1329cd038cc944ed02fd064a909f64e0491ead6a9500a28810c14e41bff775a05dcc3ba1ab57407e07a1c32 @@ -0,0 +1 @@ +{"versions":{"0.1.0":{"name":"is-utf8","version":"0.1.0","_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"813d72a6f0219952b3814f38cd277876802d9ebb","tarball":"https://registry.npmjs.org/is-utf8/-/is-utf8-0.1.0.tgz"}},"0.2.0":{"name":"is-utf8","version":"0.2.0","_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"b8aa54125ae626bfe4e3beb965f16a89c58a1137","tarball":"https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.0.tgz"}},"0.2.1":{"name":"is-utf8","version":"0.2.1","_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"4b0da1442104d1b336340e80797e865cf39f7d72","tarball":"https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz"}}},"name":"is-utf8","dist-tags":{"latest":"0.2.1"},"modified":"2015-12-19T04:04:22.462Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/b0/bd/78f5db5b36123e117448be390d694e23b1cb9b6c36c5fc70cbd93bfc3e729e57cf1a052ecb6b66503cd547cbd31ec3f7d79f6bc25aff6ef6a976aa760b4d b/npm/.npm/_cacache/content-v2/sha512/b0/bd/78f5db5b36123e117448be390d694e23b1cb9b6c36c5fc70cbd93bfc3e729e57cf1a052ecb6b66503cd547cbd31ec3f7d79f6bc25aff6ef6a976aa760b4d new file mode 100644 index 0000000..ae3492a --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/b0/bd/78f5db5b36123e117448be390d694e23b1cb9b6c36c5fc70cbd93bfc3e729e57cf1a052ecb6b66503cd547cbd31ec3f7d79f6bc25aff6ef6a976aa760b4d @@ -0,0 +1 @@ +{"versions":{"1.0.0":{"name":"builtin-modules","version":"1.0.0","devDependencies":{"ava":"0.0.4"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"c33347216affb51674380b67f9836f0861353ab3","tarball":"https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.0.0.tgz"},"engines":{"node":">=0.10.0"}},"1.0.1":{"name":"builtin-modules","version":"1.0.1","devDependencies":{"ava":"0.0.4"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"b402d09289a9161316b6fe7ee0a97917892f73ac","tarball":"https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.0.1.tgz"},"engines":{"node":">=0.10.0"}},"1.1.0":{"name":"builtin-modules","version":"1.1.0","devDependencies":{"ava":"*","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"1053955fd994a5746e525e4ac717b81caf07491c","tarball":"https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.0.tgz"},"engines":{"node":">=0.10.0"}},"1.1.1":{"name":"builtin-modules","version":"1.1.1","devDependencies":{"ava":"*","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"270f076c5a72c02f5b65a47df94c5fe3a278892f","tarball":"https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz"},"engines":{"node":">=0.10.0"}},"2.0.0":{"name":"builtin-modules","version":"2.0.0","devDependencies":{"ava":"*","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-3U5kUA5VPsRUA3nofm/BXX7GVHKfxz0hOBAPxXrIvHzlDRkQVqEn6yi8QJegxl4LzOHLdvb7XF5dVawa/VVYBg==","shasum":"60b7ef5ae6546bd7deefa74b08b62a43a232648e","tarball":"https://registry.npmjs.org/builtin-modules/-/builtin-modules-2.0.0.tgz"},"engines":{"node":">=4"}},"3.0.0":{"name":"builtin-modules","version":"3.0.0","devDependencies":{"ava":"*","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-hMIeU4K2ilbXV6Uv93ZZ0Avg/M91RaKXucQ+4me2Do1txxBDyDZWCBa5bJSLqoNTRpXTLwEzIk1KmloenDDjhg==","shasum":"1e587d44b006620d90286cc7a9238bbc6129cab1","tarball":"https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.0.0.tgz","fileCount":6,"unpackedSize":3455,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbClyKCRA9TVsSAnZWagAAQDcP/jMmByrB2Q9Od3/I3zp+\nJhXEn3I5RZDyn+LXYZBC+63kcL8+mjzq7wtzxTkbmdf7CZE9VAPdHwxQa2eO\nBJncnWjkjLnX+3Mgh12fQyFDARxYfzNzVCowqRjopptxcrQ1YLZ8Irm6kFEV\nFlWINePOSlbx0djOsWndVE/3Vu6lrJEnmxCfi36i8nhlpX/1MnvRKzNGZ3Dx\n3/lTTKxT9T0aHAwMNkcp+fUmopz97GYBvGlS9w9OreZk40pRrikDXiqRSf/Y\nr+ErflTQEAwD5wuQWeMrD0d3nXyhc0Y5bPvvt/TaJMziouil+K/GHBXcB6qF\npjxf8q7gZzugS0JiGdAPLEqiQksuKT7BFojjhUBW11SOYk+U4ajoZ8NVev+Z\nbRihZs8zUR9UUvdcJddj9Wo4DeBjJ8EYh/X6gg1dgB3UUtNqSzN/MniHMmG2\nW++3EV6BFg5DBYNl2/AmHWlRMKiQFAnNjPXIQ3XpTqhkewEFKxsXs1bHwgoO\nGJFgIKojlcdFRKSV2eoc37fQtCT/SgNIEhPJaujfkz77UrGeL6HFmkp6HUju\nCh0TpPTOobX79HHA5KHzULSflNMvD263iDPPEpgIv7OJ5Hajr2/M+3EuYA29\nSSmzTAkVujXTc8VAtIJ0X/a7ohvwwyFTPdDTyMHTlVUqUNUQrTjFCPts4NWU\n0Wos\r\n=sBHF\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=6"}}},"name":"builtin-modules","dist-tags":{"latest":"3.0.0"},"modified":"2018-05-27T07:21:48.959Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/b0/d7/5b916e2be9fc9ff9224d814b24337e39e57c46cbe39c91790f7c00b093abef651398c8b2263f3d68fa113ca368029e8344bc2ddfde6b961b064a1964abf2 b/npm/.npm/_cacache/content-v2/sha512/b0/d7/5b916e2be9fc9ff9224d814b24337e39e57c46cbe39c91790f7c00b093abef651398c8b2263f3d68fa113ca368029e8344bc2ddfde6b961b064a1964abf2 new file mode 100644 index 0000000..8097d1d --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/b0/d7/5b916e2be9fc9ff9224d814b24337e39e57c46cbe39c91790f7c00b093abef651398c8b2263f3d68fa113ca368029e8344bc2ddfde6b961b064a1964abf2 @@ -0,0 +1 @@ +{"versions":{"99.999.9999":{"name":"coffeescript","version":"99.999.9999","directories":{},"dist":{"shasum":"4bc1f8494bce0f57363e37f2fdbba7fbb286f865","tarball":"http://registry.npmjs.org/coffeescript/-/coffeescript-99.999.9999.tgz"},"deprecated":"This version has been deprecated, please use coffeescript@latest instead"},"99.999.99999":{"name":"coffeescript","version":"99.999.99999","directories":{},"dist":{"shasum":"98f6a60410f827dcb06c067db5539c03c932ad75","tarball":"http://registry.npmjs.org/coffeescript/-/coffeescript-99.999.99999.tgz"},"deprecated":"This version has been deprecated, please use coffeescript@latest instead"},"0.7.0":{"name":"coffeescript","version":"0.7.0","directories":{},"dist":{"shasum":"47e6df7fc32ac9ecac2ffd1b46550d64e135ad13","tarball":"https://registry.npmjs.org/coffeescript/-/coffeescript-0.7.0.tgz"},"engines":{"node":">=0.1.99"}},"0.7.1":{"name":"coffeescript","version":"0.7.1","directories":{},"dist":{"shasum":"0197f4d1f798cf93a2b30f66cd8c1a39057e500a","tarball":"https://registry.npmjs.org/coffeescript/-/coffeescript-0.7.1.tgz"},"engines":{"node":">=0.1.99"}},"0.7.2":{"name":"coffeescript","version":"0.7.2","directories":{},"dist":{"shasum":"4c24383c5baa6b17a410cf6ef6433b626f126483","tarball":"https://registry.npmjs.org/coffeescript/-/coffeescript-0.7.2.tgz"},"engines":{"node":">=0.1.99"}},"0.9.0":{"name":"coffeescript","version":"0.9.0","bin":{"coffee":"./bin/coffee","cake":"./bin/cake"},"directories":{},"dist":{"shasum":"9156cf3026b660b20c81bf7afcf6b2f863b51a3c","tarball":"https://registry.npmjs.org/coffeescript/-/coffeescript-0.9.0.tgz"},"engines":{"node":">=0.1.99"}},"0.9.1":{"name":"coffeescript","version":"0.9.1","bin":{"coffee":"./bin/coffee","cake":"./bin/cake"},"directories":{},"dist":{"shasum":"03eb863bfe19eb0a88e83db0a64e77b25390e446","tarball":"https://registry.npmjs.org/coffeescript/-/coffeescript-0.9.1.tgz"},"engines":{"node":">=0.1.99"}},"0.9.2":{"name":"coffeescript","version":"0.9.2","bin":{"coffee":"./bin/coffee","cake":"./bin/cake"},"directories":{"lib":"./lib"},"dist":{"shasum":"6f968fff19fd58576b2826484f7b09326799cbff","tarball":"https://registry.npmjs.org/coffeescript/-/coffeescript-0.9.2.tgz"},"engines":{"node":">=0.1.99"}},"0.9.3":{"name":"coffeescript","version":"0.9.3","bin":{"coffee":"./bin/coffee","cake":"./bin/cake"},"directories":{"lib":"./lib"},"dist":{"shasum":"e98a453e08afb1328986c608ef23b5aa86839f58","tarball":"https://registry.npmjs.org/coffeescript/-/coffeescript-0.9.3.tgz"},"engines":{"node":">=0.1.99"}},"0.9.4":{"name":"coffeescript","version":"0.9.4","bin":{"coffee":"./bin/coffee","cake":"./bin/cake"},"directories":{"lib":"./lib"},"dist":{"shasum":"4355c942e761f239f71803c5935a1633f82aade8","tarball":"https://registry.npmjs.org/coffeescript/-/coffeescript-0.9.4.tgz"},"engines":{"node":">=0.1.99"}},"0.9.5":{"name":"coffeescript","version":"0.9.5","bin":{"coffee":"./bin/coffee","cake":"./bin/cake"},"directories":{"lib":"./lib"},"dist":{"shasum":"7d11749ad402e4ed6c09d176b6829f4cb136fbd1","tarball":"https://registry.npmjs.org/coffeescript/-/coffeescript-0.9.5.tgz"},"engines":{"node":">=0.1.99"}},"0.9.6":{"name":"coffeescript","version":"0.9.6","bin":{"coffee":"./bin/coffee","cake":"./bin/cake"},"directories":{"lib":"./lib"},"dist":{"shasum":"ea93bc6b6129baa6ffebcaebd85f460bdab2ae67","tarball":"https://registry.npmjs.org/coffeescript/-/coffeescript-0.9.6.tgz"},"engines":{"node":">=0.1.99"}},"1.0.0":{"name":"coffeescript","version":"1.0.0","bin":{"coffee":"./bin/coffee","cake":"./bin/cake"},"directories":{"lib":"./lib"},"dist":{"shasum":"c33168ebdca7cf924d8813e4847bf9f31b8da0b1","tarball":"https://registry.npmjs.org/coffeescript/-/coffeescript-1.0.0.tgz"},"engines":{"node":">=0.2.5"}},"1.0.1":{"name":"coffeescript","version":"1.0.1","bin":{"coffee":"./bin/coffee","cake":"./bin/cake"},"directories":{"lib":"./lib"},"dist":{"shasum":"8a386464e1b5c2ee4203b168361b4b2e185737d3","tarball":"https://registry.npmjs.org/coffeescript/-/coffeescript-1.0.1.tgz"},"engines":{"node":">=0.2.5"}},"1.1.0":{"name":"coffeescript","version":"1.1.0","bin":{"coffee":"./bin/coffee","cake":"./bin/cake"},"directories":{"lib":"./lib"},"dist":{"shasum":"c9554b6c8aa093d6fe064de2cefc8e66b6f0e5fc","tarball":"https://registry.npmjs.org/coffeescript/-/coffeescript-1.1.0.tgz"},"engines":{"node":">=0.2.5"}},"1.1.1":{"name":"coffeescript","version":"1.1.1","bin":{"coffee":"./bin/coffee","cake":"./bin/cake"},"directories":{"lib":"./lib"},"dist":{"shasum":"4b69f4560ff11e461b386832473004bf4090ddb7","tarball":"https://registry.npmjs.org/coffeescript/-/coffeescript-1.1.1.tgz"},"engines":{"node":">=0.2.5"}},"1.1.2":{"name":"coffeescript","version":"1.1.2","bin":{"coffee":"./bin/coffee","cake":"./bin/cake"},"directories":{"lib":"./lib"},"dist":{"shasum":"4862e12b2838cf6946cbbabf496b4e4ae736e225","tarball":"https://registry.npmjs.org/coffeescript/-/coffeescript-1.1.2.tgz"},"engines":{"node":">=0.2.5"}},"1.1.3":{"name":"coffeescript","version":"1.1.3","devDependencies":{"uglify-js":"1.0.6","jison":"0.2.11"},"bin":{"coffee":"./bin/coffee","cake":"./bin/cake"},"directories":{"lib":"./lib/coffee-script"},"dist":{"shasum":"f686433403c2c6518ece81e6f65a7921d11317bb","tarball":"https://registry.npmjs.org/coffeescript/-/coffeescript-1.1.3.tgz"},"engines":{"node":">=0.4.0"}},"1.2.0":{"name":"coffeescript","version":"1.2.0","devDependencies":{"uglify-js":">=1.0.0","jison":">=0.2.0"},"bin":{"coffee":"./bin/coffee","cake":"./bin/cake"},"directories":{"lib":"./lib/coffee-script"},"dist":{"shasum":"85c85e3a163efaef58066c0b83ba180e5cf1d12e","tarball":"https://registry.npmjs.org/coffeescript/-/coffeescript-1.2.0.tgz"},"engines":{"node":">=0.4.0"}},"1.3.0":{"name":"coffeescript","version":"1.3.0","devDependencies":{"uglify-js":">=1.0.0","jison":">=0.2.0"},"bin":{"coffee":"./bin/coffee","cake":"./bin/cake"},"directories":{"lib":"./lib/coffee-script"},"dist":{"shasum":"9422175628c16b63397b24690b77fa351ccde41a","tarball":"https://registry.npmjs.org/coffeescript/-/coffeescript-1.3.0.tgz"},"engines":{"node":">=0.4.0"}},"1.3.1":{"name":"coffeescript","version":"1.3.1","devDependencies":{"uglify-js":">=1.0.0","jison":">=0.2.0"},"bin":{"coffee":"./bin/coffee","cake":"./bin/cake"},"directories":{"lib":"./lib/coffee-script"},"dist":{"shasum":"1da5a8521ce6338bba4e0db2801d57aa948766f7","tarball":"https://registry.npmjs.org/coffeescript/-/coffeescript-1.3.1.tgz"},"engines":{"node":">=0.4.0"}},"1.3.2":{"name":"coffeescript","version":"1.3.2","devDependencies":{"uglify-js":">=1.0.0","jison":">=0.2.0"},"bin":{"coffee":"./bin/coffee","cake":"./bin/cake"},"directories":{"lib":"./lib/coffee-script"},"dist":{"shasum":"04b2f2eb36d0e02f3b3603d17339ffb4d404926a","tarball":"https://registry.npmjs.org/coffeescript/-/coffeescript-1.3.2.tgz"},"engines":{"node":">=0.4.0"}},"1.3.3":{"name":"coffeescript","version":"1.3.3","devDependencies":{"uglify-js":">=1.0.0","jison":">=0.2.0"},"bin":{"coffee":"./bin/coffee","cake":"./bin/cake"},"directories":{"lib":"./lib/coffee-script"},"dist":{"shasum":"fd81fd66580e3f45502823d134b9fbc20b978d34","tarball":"https://registry.npmjs.org/coffeescript/-/coffeescript-1.3.3.tgz"},"engines":{"node":">=0.4.0"}},"1.4.0":{"name":"coffeescript","version":"1.4.0","devDependencies":{"uglify-js":">=1.0.0","jison":">=0.2.0"},"bin":{"coffee":"./bin/coffee","cake":"./bin/cake"},"directories":{"lib":"./lib/coffee-script"},"dist":{"shasum":"b26c5fd8c714fe7db1023079af85e89c169135d0","tarball":"https://registry.npmjs.org/coffeescript/-/coffeescript-1.4.0.tgz"},"engines":{"node":">=0.4.0"}},"1.5.0":{"name":"coffeescript","version":"1.5.0","devDependencies":{"uglify-js":"~2.2","jison":">=0.2.0"},"bin":{"coffee":"./bin/coffee","cake":"./bin/cake"},"directories":{"lib":"./lib/coffee-script"},"dist":{"shasum":"62332680ae95c962a7c1f5cf128fb50adbe62554","tarball":"https://registry.npmjs.org/coffeescript/-/coffeescript-1.5.0.tgz"},"engines":{"node":">=0.4.0"}},"1.6.0":{"name":"coffeescript","version":"1.6.0","devDependencies":{"uglify-js":"~2.2","jison":">=0.2.0"},"bin":{"coffee":"./bin/coffee","cake":"./bin/cake"},"directories":{"lib":"./lib/coffee-script"},"dist":{"shasum":"6dd4de1eb62f784d8c8d80967552cba547ffd9de","tarball":"https://registry.npmjs.org/coffeescript/-/coffeescript-1.6.0.tgz"},"engines":{"node":">=0.4.0"}},"1.6.1":{"name":"coffeescript","version":"1.6.1","devDependencies":{"uglify-js":"~2.2","jison":">=0.2.0"},"bin":{"coffee":"./bin/coffee","cake":"./bin/cake"},"directories":{"lib":"./lib/coffee-script"},"dist":{"shasum":"35369e0c0c956ff38142c9c24949aeb8138d7e94","tarball":"https://registry.npmjs.org/coffeescript/-/coffeescript-1.6.1.tgz"},"engines":{"node":">=0.4.0"}},"1.6.2":{"name":"coffeescript","version":"1.6.2","devDependencies":{"uglify-js":"~2.2","jison":">=0.2.0"},"bin":{"coffee":"./bin/coffee","cake":"./bin/cake"},"directories":{"lib":"./lib/coffee-script"},"dist":{"shasum":"8500655816bf5f8eede8a68b72eecc21b15c0d57","tarball":"https://registry.npmjs.org/coffeescript/-/coffeescript-1.6.2.tgz"},"engines":{"node":">=0.8.0"}},"1.6.3":{"name":"coffeescript","version":"1.6.3","devDependencies":{"uglify-js":"~2.2","jison":">=0.2.0"},"bin":{"coffee":"./bin/coffee","cake":"./bin/cake"},"directories":{"lib":"./lib/coffee-script"},"dist":{"shasum":"41749750c621a6553c7c03818a5384bb24c30541","tarball":"https://registry.npmjs.org/coffeescript/-/coffeescript-1.6.3.tgz"},"engines":{"node":">=0.8.0"}},"1.7.0":{"name":"coffeescript","version":"1.7.0","dependencies":{"mkdirp":"~0.3.5"},"devDependencies":{"uglify-js":"~2.2","jison":">=0.2.0","highlight.js":"~8.0.0","underscore":"~1.5.2"},"bin":{"coffee":"./bin/coffee","cake":"./bin/cake"},"directories":{"lib":"./lib/coffee-script"},"dist":{"shasum":"9f7bdfb285ec657a26f19301379fdf70224db6fd","tarball":"https://registry.npmjs.org/coffeescript/-/coffeescript-1.7.0.tgz"},"engines":{"node":">=0.8.0"}},"1.8.0":{"name":"coffeescript","version":"1.8.0","dependencies":{"mkdirp":"~0.3.5"},"devDependencies":{"uglify-js":"~2.2","jison":">=0.2.0","highlight.js":"~8.0.0","underscore":"~1.5.2","docco":"~0.6.2"},"bin":{"coffee":"./bin/coffee","cake":"./bin/cake"},"directories":{"lib":"./lib/coffee-script"},"dist":{"shasum":"4c503e2dbdf268aee33fdd34cb259d53ff963518","tarball":"https://registry.npmjs.org/coffeescript/-/coffeescript-1.8.0.tgz"},"engines":{"node":">=0.8.0"}},"1.9.0":{"name":"coffeescript","version":"1.9.0","devDependencies":{"uglify-js":"~2.2","jison":">=0.2.0","highlight.js":"~8.0.0","underscore":"~1.5.2","docco":"~0.6.2"},"bin":{"coffee":"./bin/coffee","cake":"./bin/cake"},"directories":{"lib":"./lib/coffee-script"},"dist":{"shasum":"c123bafa3f0a9f92b734bb295d14d00a57c2d502","tarball":"https://registry.npmjs.org/coffeescript/-/coffeescript-1.9.0.tgz"},"engines":{"node":">=0.8.0"}},"1.9.1":{"name":"coffeescript","version":"1.9.1","devDependencies":{"uglify-js":"~2.2","jison":">=0.2.0","highlight.js":"~8.0.0","underscore":"~1.5.2","docco":"~0.7.0"},"bin":{"coffee":"./bin/coffee","cake":"./bin/cake"},"directories":{"lib":"./lib/coffee-script"},"dist":{"shasum":"2291d36eb617f8269fa707955dc5399eb938e2a2","tarball":"https://registry.npmjs.org/coffeescript/-/coffeescript-1.9.1.tgz"},"engines":{"node":">=0.8.0"}},"1.9.2":{"name":"coffeescript","version":"1.9.2","devDependencies":{"uglify-js":"~2.2","jison":">=0.2.0","highlight.js":"~8.0.0","underscore":"~1.5.2","docco":"~0.7.0"},"bin":{"coffee":"./bin/coffee","cake":"./bin/cake"},"directories":{"lib":"./lib/coffee-script"},"dist":{"shasum":"c2619feaf7a1aa077bd1be7ddb7cc729c5eb83e6","tarball":"https://registry.npmjs.org/coffeescript/-/coffeescript-1.9.2.tgz"},"engines":{"node":">=0.8.0"}},"1.9.3":{"name":"coffeescript","version":"1.9.3","devDependencies":{"uglify-js":"~2.2","jison":">=0.2.0","highlight.js":"~8.0.0","underscore":"~1.5.2","docco":"~0.7.0"},"bin":{"coffee":"./bin/coffee","cake":"./bin/cake"},"directories":{"lib":"./lib/coffee-script"},"dist":{"shasum":"5fe78377dd0d6036a376b8d2ac17153f979871d3","tarball":"https://registry.npmjs.org/coffeescript/-/coffeescript-1.9.3.tgz"},"engines":{"node":">=0.8.0"}},"1.10.0":{"name":"coffeescript","version":"1.10.0","devDependencies":{"uglify-js":"~2.2","jison":">=0.2.0","highlight.js":"~8.0.0","underscore":"~1.5.2","docco":"~0.7.0"},"bin":{"coffee":"./bin/coffee","cake":"./bin/cake"},"directories":{"lib":"./lib/coffee-script"},"dist":{"shasum":"e7aa8301917ef621b35d8a39f348dcdd1db7e33e","tarball":"https://registry.npmjs.org/coffeescript/-/coffeescript-1.10.0.tgz"},"engines":{"node":">=0.8.0"}},"1.11.0":{"name":"coffeescript","version":"1.11.0","devDependencies":{"uglify-js":"~2.2","jison":">=0.2.0","highlight.js":"~9.6.0","underscore":"~1.5.2","docco":"~0.7.0"},"bin":{"coffee":"./bin/coffee","cake":"./bin/cake"},"directories":{"lib":"./lib/coffee-script"},"dist":{"shasum":"ded1dff08f8520430d5d762c58d64a3adabea3ee","tarball":"https://registry.npmjs.org/coffeescript/-/coffeescript-1.11.0.tgz"},"engines":{"node":">=0.8.0"}},"1.11.1":{"name":"coffeescript","version":"1.11.1","devDependencies":{"uglify-js":"~2.2","jison":">=0.2.0","highlight.js":"~9.6.0","underscore":"~1.5.2","docco":"~0.7.0"},"bin":{"coffee":"./bin/coffee","cake":"./bin/cake"},"directories":{"lib":"./lib/coffee-script"},"dist":{"shasum":"42d6769fdc61c1bf9a132fb1ddba5a43f4f2785c","tarball":"https://registry.npmjs.org/coffeescript/-/coffeescript-1.11.1.tgz"},"engines":{"node":">=0.8.0"}},"1.12.0":{"name":"coffeescript","version":"1.12.0","devDependencies":{"docco":"~0.7.0","google-closure-compiler-js":"^20161024.0.0","highlight.js":"~9.8.0","jison":">=0.4.17","underscore":"~1.8.3"},"bin":{"coffee":"./bin/coffee","cake":"./bin/cake"},"directories":{"lib":"./lib/coffee-script"},"dist":{"shasum":"ca67f56ca06e3ae542c2297388814137b456e852","tarball":"https://registry.npmjs.org/coffeescript/-/coffeescript-1.12.0.tgz"},"engines":{"node":">=0.8.0"}},"1.12.1":{"name":"coffeescript","version":"1.12.1","devDependencies":{"docco":"~0.7.0","google-closure-compiler-js":"^20161024.0.0","highlight.js":"~9.8.0","jison":">=0.4.17","underscore":"~1.8.3"},"bin":{"coffee":"./bin/coffee","cake":"./bin/cake"},"directories":{"lib":"./lib/coffee-script"},"dist":{"shasum":"4577158e59b06ce487e8d002afb75bc52dfb1978","tarball":"https://registry.npmjs.org/coffeescript/-/coffeescript-1.12.1.tgz"},"engines":{"node":">=0.8.0"}},"1.12.2":{"name":"coffeescript","version":"1.12.2","devDependencies":{"docco":"~0.7.0","google-closure-compiler-js":"^20161201.0.0","highlight.js":"~9.9.0","jison":">=0.4.17","marked":"^0.3.6","underscore":"~1.8.3"},"bin":{"coffee":"./bin/coffee","cake":"./bin/cake"},"directories":{"lib":"./lib/coffee-script"},"dist":{"shasum":"2e650b8f42e42ff46bf49f7cb925b5d9239e3ab3","tarball":"https://registry.npmjs.org/coffeescript/-/coffeescript-1.12.2.tgz"},"engines":{"node":">=0.8.0"}},"1.12.3":{"name":"coffeescript","version":"1.12.3","devDependencies":{"docco":"~0.7.0","google-closure-compiler-js":"^20161201.0.1","highlight.js":"~9.9.0","jison":">=0.4.17","marked":"^0.3.6","underscore":"~1.8.3"},"bin":{"coffee":"./bin/coffee","cake":"./bin/cake"},"directories":{"lib":"./lib/coffee-script"},"dist":{"shasum":"9dc3c70232bd68e88f9ac314e68e22fbb398feae","tarball":"https://registry.npmjs.org/coffeescript/-/coffeescript-1.12.3.tgz"},"engines":{"node":">=0.8.0"}},"1.12.4":{"name":"coffeescript","version":"1.12.4","devDependencies":{"docco":"~0.7.0","google-closure-compiler-js":"^20170124.0.0","highlight.js":"~9.9.0","jison":">=0.4.17","marked":"^0.3.6","underscore":"~1.8.3"},"bin":{"coffee":"./bin/coffee","cake":"./bin/cake"},"directories":{"lib":"./lib/coffee-script"},"dist":{"shasum":"3eb99a52b9695e56b2acd77c2d2e1bcae7eae352","tarball":"https://registry.npmjs.org/coffeescript/-/coffeescript-1.12.4.tgz"},"engines":{"node":">=0.8.0"}},"2.0.0-alpha1":{"name":"coffeescript","version":"2.0.0-alpha1","dependencies":{"marked":"~0.3.6"},"devDependencies":{"docco":"~0.7.0","google-closure-compiler-js":"^20170124.0.0","highlight.js":"~9.9.0","jison":">=0.4.17","marked":"^0.3.6","underscore":"~1.8.3"},"bin":{"coffee":"./bin/coffee","cake":"./bin/cake"},"directories":{"lib":"./lib/coffeescript"},"dist":{"shasum":"abf8b54b5c20a9c9f707c8aff35b227d1d6b5e3b","tarball":"https://registry.npmjs.org/coffeescript/-/coffeescript-2.0.0-alpha1.tgz"},"engines":{"node":">=7.2.1"}},"1.12.5":{"name":"coffeescript","version":"1.12.5","devDependencies":{"docco":"~0.7.0","google-closure-compiler-js":"^20170218.0.0","highlight.js":"~9.10.0","jison":">=0.4.17","markdown-it":"^8.3.1","underscore":"~1.8.3"},"bin":{"coffee":"./bin/coffee","cake":"./bin/cake"},"directories":{"lib":"./lib/coffee-script"},"dist":{"shasum":"488a3a29cfc8c591b5e3ea3d7165f5a505ca7a5c","tarball":"https://registry.npmjs.org/coffeescript/-/coffeescript-1.12.5.tgz"},"engines":{"node":">=0.8.0"}},"2.0.0-beta1":{"name":"coffeescript","version":"2.0.0-beta1","dependencies":{"markdown-it":"^8.3.1"},"devDependencies":{"docco":"~0.7.0","google-closure-compiler-js":"^20170409.0.0","highlight.js":"~9.10.0","jison":">=0.4.17","underscore":"~1.8.3"},"bin":{"coffee":"./bin/coffee","cake":"./bin/cake"},"directories":{"lib":"./lib/coffeescript"},"dist":{"shasum":"69f67c1c13012692c25d8e5e40e94977f696b428","tarball":"https://registry.npmjs.org/coffeescript/-/coffeescript-2.0.0-beta1.tgz"},"engines":{"node":">=7.6.0"}},"1.12.6":{"name":"coffeescript","version":"1.12.6","devDependencies":{"docco":"~0.7.0","google-closure-compiler-js":"^20170423.0.0","highlight.js":"~9.11.0","jison":">=0.4.17","markdown-it":"^8.3.1","underscore":"~1.8.3"},"bin":{"coffee":"./bin/coffee","cake":"./bin/cake"},"directories":{"lib":"./lib/coffee-script"},"dist":{"shasum":"dcbf2be5b64ce66505cb43c4ed7f1b44cb90f33c","tarball":"https://registry.npmjs.org/coffeescript/-/coffeescript-1.12.6.tgz"},"engines":{"node":">=0.8.0"}},"2.0.0-beta2":{"name":"coffeescript","version":"2.0.0-beta2","dependencies":{},"devDependencies":{"babel-core":"^6.24.1","babel-preset-babili":"0.0.12","babel-preset-env":"^1.4.0","docco":"~0.7.0","highlight.js":"~9.11.0","jison":">=0.4.17","markdown-it":"^8.3.1","underscore":"~1.8.3","webpack":"^2.5.1"},"bin":{"coffee":"./bin/coffee","cake":"./bin/cake"},"directories":{"lib":"./lib/coffeescript"},"dist":{"shasum":"caafd6a67d903a4333f8b485bcab54ed5147ef7e","tarball":"https://registry.npmjs.org/coffeescript/-/coffeescript-2.0.0-beta2.tgz"},"engines":{"node":">=7.6.0"}},"2.0.0-beta3":{"name":"coffeescript","version":"2.0.0-beta3","dependencies":{},"devDependencies":{"babel-core":"^6.24.1","babel-preset-babili":"0.0.12","babel-preset-env":"^1.4.0","docco":"~0.7.0","highlight.js":"~9.11.0","jison":">=0.4.17","markdown-it":"^8.3.1","underscore":"~1.8.3","webpack":"^2.5.1"},"bin":{"coffee":"./bin/coffee","cake":"./bin/cake"},"directories":{"lib":"./lib/coffeescript"},"dist":{"integrity":"sha512-LSW43qI8FM3SEkPF355VRZ94a9BGUb/P7TnCh2MJPp27Wg55JSXY9Cv7gmsNIVtvz24fhMBqiK8XyRlS9iWFhA==","shasum":"5bce739c6c69a5c8e8bb5fb967a16db0cca5c04f","tarball":"https://registry.npmjs.org/coffeescript/-/coffeescript-2.0.0-beta3.tgz"},"engines":{"node":">=7.6.0"}},"1.12.7":{"name":"coffeescript","version":"1.12.7","devDependencies":{"docco":"~0.7.0","google-closure-compiler-js":"^20170626.0.0","highlight.js":"~9.12.0","jison":">=0.4.17","markdown-it":"^8.3.1","underscore":"~1.8.3"},"bin":{"coffee":"./bin/coffee","cake":"./bin/cake"},"directories":{"lib":"./lib/coffee-script"},"dist":{"integrity":"sha512-pLXHFxQMPklVoEekowk8b3erNynC+DVJzChxS/LCBBgR6/8AJkHivkm//zbowcfc7BTCAjryuhx6gPqPRfsFoA==","shasum":"e57ee4c4867cf7f606bfc4a0f2d550c0981ddd27","tarball":"https://registry.npmjs.org/coffeescript/-/coffeescript-1.12.7.tgz"},"engines":{"node":">=0.8.0"}},"2.0.0-beta4":{"name":"coffeescript","version":"2.0.0-beta4","dependencies":{},"devDependencies":{"babel-core":"~6.25.0","babel-preset-babili":"~0.1.4","babel-preset-env":"~1.6.0","babili":"^0.1.4","docco":"~0.7.0","highlight.js":"~9.12.0","jison":">=0.4.17","markdown-it":"~8.3.1","underscore":"~1.8.3","webpack":"~3.2.0"},"bin":{"coffee":"./bin/coffee","cake":"./bin/cake"},"directories":{"lib":"./lib/coffeescript"},"dist":{"integrity":"sha512-wjjEB86s3phSWIVljWnbH5xcgIEL6NTaq1Y/AjxNC/Kegn80/61pFgF9fIY1ZxfAsNe8kkdPfxL5Ape/2SgCew==","shasum":"1beb4650d10eb7c9e528f5bfa3b6c7085691e24c","tarball":"https://registry.npmjs.org/coffeescript/-/coffeescript-2.0.0-beta4.tgz"},"engines":{"node":">=7.6.0"}},"2.0.0-beta5":{"name":"coffeescript","version":"2.0.0-beta5","dependencies":{},"devDependencies":{"babel-core":"~6.26.0","babel-preset-babili":"~0.1.4","babel-preset-env":"~1.6.0","babili":"^0.1.4","docco":"~0.7.0","highlight.js":"~9.12.0","jison":">=0.4.17","markdown-it":"~8.4.0","underscore":"~1.8.3","webpack":"~3.5.5"},"bin":{"coffee":"./bin/coffee","cake":"./bin/cake"},"directories":{"lib":"./lib/coffeescript"},"dist":{"integrity":"sha512-tq7erqYiSKuf9DDwqIWxvhZcFWkcz+rIVfOwtIaY9wiNd134aLLxXSNWU6nYb/PiHGVLrcrLCHLddFgXlbftuQ==","shasum":"790e80393b70f337b925114c690f775f427f4c19","tarball":"https://registry.npmjs.org/coffeescript/-/coffeescript-2.0.0-beta5.tgz"},"engines":{"node":">=6"}},"2.0.0":{"name":"coffeescript","version":"2.0.0","dependencies":{"babel-core":"^6"},"optionalDependencies":{"babel-core":"^6"},"devDependencies":{"babel-core":"~6.26.0","babel-preset-babili":"~0.1.4","babel-preset-env":"~1.6.0","babel-preset-minify":"^0.2.0","codemirror":"^5.29.0","docco":"~0.7.0","highlight.js":"~9.12.0","jison":">=0.4.18","markdown-it":"~8.4.0","underscore":"~1.8.3","webpack":"~3.6.0"},"bin":{"coffee":"./bin/coffee","cake":"./bin/cake"},"directories":{"lib":"./lib/coffeescript"},"dist":{"integrity":"sha512-OUJdsTCj5PWh4n2g/HebJPHU2L8sV9OmSgEvSoCxv0Ypd9ArGyYhVEHqVNmP9p4DB++9t4iS/FbYxbdnzsAmWQ==","shasum":"61bcc70989cc18a0aab6b3d8be110d2ec7743c9a","tarball":"https://registry.npmjs.org/coffeescript/-/coffeescript-2.0.0.tgz"},"engines":{"node":">=6"}},"2.0.1":{"name":"coffeescript","version":"2.0.1","dependencies":{},"devDependencies":{"babel-core":"~6.26.0","babel-preset-babili":"~0.1.4","babel-preset-env":"~1.6.0","babel-preset-minify":"^0.2.0","codemirror":"^5.29.0","docco":"~0.7.0","highlight.js":"~9.12.0","jison":">=0.4.18","markdown-it":"~8.4.0","underscore":"~1.8.3","webpack":"~3.6.0"},"bin":{"coffee":"./bin/coffee","cake":"./bin/cake"},"directories":{"lib":"./lib/coffeescript"},"dist":{"integrity":"sha512-mrgXUOwRocrvSRwIi/2tAesQOJz2KxSyMNMlLSVhnJk/eZHKinYSJGcgUYZkzmSQZtpb3UhGJeZv0AAUeh7yyQ==","shasum":"7b74a62ee5b9bc833c9a77968605327421c5312a","tarball":"https://registry.npmjs.org/coffeescript/-/coffeescript-2.0.1.tgz"},"engines":{"node":">=6"}},"2.0.2":{"name":"coffeescript","version":"2.0.2","dependencies":{},"devDependencies":{"babel-core":"~6.26.0","babel-preset-babili":"~0.1.4","babel-preset-env":"~1.6.0","babel-preset-minify":"^0.2.0","codemirror":"^5.29.0","docco":"~0.7.0","highlight.js":"~9.12.0","jison":">=0.4.18","markdown-it":"~8.4.0","underscore":"~1.8.3","webpack":"~3.6.0"},"bin":{"coffee":"./bin/coffee","cake":"./bin/cake"},"directories":{"lib":"./lib/coffeescript"},"dist":{"integrity":"sha512-/bCMyzu7KSJPF2gRNYWpbEmfPkNL8AzXs78ktxhPTpSXlKetZRl7kIYGqU055UqUVnkKRJK4eUkUhRHQpvdilA==","shasum":"065702a484b46194b8c7eb08481e6d4dc38b87c9","tarball":"https://registry.npmjs.org/coffeescript/-/coffeescript-2.0.2.tgz"},"engines":{"node":">=6"}},"2.0.3":{"name":"coffeescript","version":"2.0.3","dependencies":{},"devDependencies":{"babel-core":"~6.26.0","babel-preset-babili":"~0.1.4","babel-preset-env":"~1.6.0","babel-preset-minify":"^0.2.0","codemirror":"^5.29.0","docco":"~0.7.0","highlight.js":"~9.12.0","jison":">=0.4.18","markdown-it":"~8.4.0","underscore":"~1.8.3","webpack":"~3.6.0"},"bin":{"coffee":"./bin/coffee","cake":"./bin/cake"},"directories":{"lib":"./lib/coffeescript"},"dist":{"integrity":"sha512-iIfUN+71IyI2FQABXh1luzZeQgqwUPeWh6lDovJatQQs+30bvyGnBY0r4BnD0hoMAasNuZVHlL1U09Oy1ZfSeg==","shasum":"760f02724f5f0911be7cefa34a8e0e10c5d8512a","tarball":"https://registry.npmjs.org/coffeescript/-/coffeescript-2.0.3.tgz"},"engines":{"node":">=6"}},"2.1.0":{"name":"coffeescript","version":"2.1.0","dependencies":{},"devDependencies":{"babel-core":"~6.26.0","babel-preset-babili":"~0.1.4","babel-preset-env":"~1.6.1","babel-preset-minify":"^0.2.0","codemirror":"^5.32.0","docco":"~0.7.0","highlight.js":"~9.12.0","jison":">=0.4.18","markdown-it":"~8.4.0","underscore":"~1.8.3","webpack":"~3.10.0"},"bin":{"coffee":"./bin/coffee","cake":"./bin/cake"},"directories":{"lib":"./lib/coffeescript"},"dist":{"integrity":"sha512-RuEF4gFUV9QSFPREl8gx6w0vS6Ncnr0Nd71lOmxSHfKQFQI66meE54Y636TACbe55j2Lwi6R1O8lOa0dD550GA==","shasum":"8cb7ce12021ab9f84d8c524f54edbd6141374606","tarball":"https://registry.npmjs.org/coffeescript/-/coffeescript-2.1.0.tgz"},"engines":{"node":">=6"}},"2.1.1":{"name":"coffeescript","version":"2.1.1","dependencies":{},"devDependencies":{"babel-core":"~6.26.0","babel-preset-babili":"~0.1.4","babel-preset-env":"~1.6.1","babel-preset-minify":"^0.2.0","codemirror":"^5.32.0","docco":"~0.7.0","highlight.js":"~9.12.0","jison":">=0.4.18","markdown-it":"~8.4.0","underscore":"~1.8.3","webpack":"~3.10.0"},"bin":{"coffee":"./bin/coffee","cake":"./bin/cake"},"directories":{"lib":"./lib/coffeescript"},"dist":{"integrity":"sha512-Tl2z6/rNMqJ2LqWlVxLKwLF9FniwJpweonfSLCwhX8NFCEsGBcFIErtfKd8+t4XHDSYRshj9FXxPX53BT3lC9w==","shasum":"18aefff7ac606a4e32d0ebdfd9afa52b41032bb0","tarball":"https://registry.npmjs.org/coffeescript/-/coffeescript-2.1.1.tgz"},"engines":{"node":">=6"}},"2.2.0":{"name":"coffeescript","version":"2.2.0","dependencies":{},"devDependencies":{"babel-core":"~6.26.0","babel-preset-babili":"~0.1.4","babel-preset-env":"~1.6.1","babel-preset-minify":"^0.3.0","codemirror":"^5.32.0","docco":"~0.8.0","highlight.js":"~9.12.0","jison":">=0.4.18","markdown-it":"~8.4.0","underscore":"~1.8.3","webpack":"~3.10.0"},"bin":{"coffee":"./bin/coffee","cake":"./bin/cake"},"directories":{"lib":"./lib/coffeescript"},"dist":{"integrity":"sha512-VA6QFCZ+OBeWZ5WfQsZxmk8g5hz60pnV6fpsdiBmI0YW+5jh8dt1L8RHrnKZ2nMBl3dphzNyVJQKvBOydXVAZQ==","shasum":"8c60f24c85e7b68831a798d83d266e5e55f1f610","tarball":"https://registry.npmjs.org/coffeescript/-/coffeescript-2.2.0.tgz"},"engines":{"node":">=6"}},"2.2.1":{"name":"coffeescript","version":"2.2.1","dependencies":{},"devDependencies":{"babel-core":"~6.26.0","babel-preset-babili":"~0.1.4","babel-preset-env":"~1.6.1","babel-preset-minify":"^0.3.0","codemirror":"^5.32.0","docco":"~0.8.0","highlight.js":"~9.12.0","jison":">=0.4.18","markdown-it":"~8.4.0","underscore":"~1.8.3","webpack":"~3.10.0"},"bin":{"coffee":"./bin/coffee","cake":"./bin/cake"},"_hasShrinkwrap":false,"directories":{"lib":"./lib/coffeescript"},"dist":{"integrity":"sha512-UFSs0WDed7ZiQGtWZ401PZnlgnP5jtlr4Gk+aPMTIkFkKY6Kz2gRp+WIu0QzllR30nV2XheicAhKwDJQcor6lg==","shasum":"39fa2ac2e369f9bf0c651792e1f74552b4081b8e","tarball":"http://registry.npmjs.org/coffeescript/-/coffeescript-2.2.1.tgz","fileCount":23,"unpackedSize":663303},"engines":{"node":">=6"}},"2.2.2":{"name":"coffeescript","version":"2.2.2","dependencies":{},"devDependencies":{"babel-core":"~6.26.0","babel-preset-babili":"~0.1.4","babel-preset-env":"~1.6.1","babel-preset-minify":"^0.3.0","codemirror":"^5.35.0","docco":"~0.8.0","highlight.js":"~9.12.0","jison":">=0.4.18","markdown-it":"~8.4.1","underscore":"~1.8.3","webpack":"~3.11.0"},"bin":{"coffee":"./bin/coffee","cake":"./bin/cake"},"_hasShrinkwrap":false,"directories":{"lib":"./lib/coffeescript"},"dist":{"integrity":"sha512-VJnQbuT/lUXFPeh9ZPwuqZjG216ngxE89vfj1a1hlAaCCVOb694kKXMVSMm9kLKTbkMQKc/dPs9ABjO2ghMMJQ==","shasum":"e693fefdb3d69017e13d24b8d6a658f8f4a7c1a9","tarball":"http://registry.npmjs.org/coffeescript/-/coffeescript-2.2.2.tgz","fileCount":23,"unpackedSize":663284},"engines":{"node":">=6"}},"2.2.3":{"name":"coffeescript","version":"2.2.3","dependencies":{},"devDependencies":{"babel-core":"~6.26.0","babel-preset-babili":"~0.1.4","babel-preset-env":"~1.6.1","babel-preset-minify":"^0.3.0","codemirror":"^5.35.0","docco":"~0.8.0","highlight.js":"~9.12.0","jison":">=0.4.18","markdown-it":"~8.4.1","underscore":"~1.8.3","webpack":"~4.1.1"},"bin":{"coffee":"./bin/coffee","cake":"./bin/cake"},"_hasShrinkwrap":false,"directories":{"lib":"./lib/coffeescript"},"dist":{"integrity":"sha512-J+qHBN+ltCtOsWcA4X7jDRgUf+e3HHIicGhMG7pCVe3/gv/rt/OhjAaTVvfg+Mkj8wf4oADZmw97RnyhzOk0cA==","shasum":"a8a42170c28bea240f4c3f56c57e1f46487f88b9","tarball":"http://registry.npmjs.org/coffeescript/-/coffeescript-2.2.3.tgz","fileCount":23,"unpackedSize":663444},"engines":{"node":">=6"}},"2.2.4":{"name":"coffeescript","version":"2.2.4","dependencies":{},"devDependencies":{"babel-core":"~6.26.0","babel-preset-babili":"~0.1.4","babel-preset-env":"~1.6.1","babel-preset-minify":"^0.3.0","codemirror":"^5.35.0","docco":"~0.8.0","highlight.js":"~9.12.0","jison":">=0.4.18","markdown-it":"~8.4.1","underscore":"~1.8.3","webpack":"~4.1.1"},"bin":{"coffee":"./bin/coffee","cake":"./bin/cake"},"_hasShrinkwrap":false,"directories":{"lib":"./lib/coffeescript"},"dist":{"integrity":"sha512-YNi3ksTEP8AQBMlwx4TjrcSX7BMKDFaKR0czMhEIUuT8Qz3anwgYucWSYtSMX0QKxAurqq4p7annrHT5qXMaqA==","shasum":"427c038e17a125e52a79fdb3106761753b8585d2","tarball":"http://registry.npmjs.org/coffeescript/-/coffeescript-2.2.4.tgz","fileCount":23,"unpackedSize":663052},"engines":{"node":">=6"}},"2.3.0":{"name":"coffeescript","version":"2.3.0","dependencies":{},"devDependencies":{"babel-core":"~6.26.2","babel-preset-babili":"~0.1.4","babel-preset-env":"~1.6.1","babel-preset-minify":"^0.4.0","codemirror":"^5.37.0","docco":"~0.8.0","highlight.js":"~9.12.0","jison":">=0.4.18","markdown-it":"~8.4.1","underscore":"~1.9.0","webpack":"~4.6.0"},"bin":{"coffee":"./bin/coffee","cake":"./bin/cake"},"_hasShrinkwrap":false,"directories":{"lib":"./lib/coffeescript"},"dist":{"integrity":"sha512-M1AINTgv6EvFAK92LeaYdHUzsTE+j97kBQyLHjfnMz1jh21rJMjdTe471Zgs+qK7Tavpbh5e4pP2VxcRTFxm9A==","shasum":"d8d77ca5b110f540d52cbdc08e394942c9109994","tarball":"https://registry.npmjs.org/coffeescript/-/coffeescript-2.3.0.tgz","fileCount":23,"unpackedSize":657471,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa5Sc9CRA9TVsSAnZWagAA9C4P/juNGitTbqCN/6MX6SR3\nisAnbrRHI44si7oL7S8oSD+iouX0aggYyUbyvClKdQanQTb5LuHqO32/F91J\n6foedICcrCCQYdat2l5Pyl7+91GbAUu1oKtlbJNXvUFiPfuWX8r0N2LKv3vX\ndlFmP2X5JtwSI8urkSsd13zntVskQ8hKCYCjfjH0MbLxrWp9op6CC6rEZABN\nIXUc7hYvy+Msy9cGAaZ5sx+enjsFk6coWLuo/2DC5Smy4KfQS44LcarNMqQq\nt7UsJv+sK06Dd/d9PCjDjYj6hSyg7SF6rb7mr4Raq8DP4K4OhMw9pqeObiYM\nHebcUiMuUsuLzUJYxaPUpQcuCnaSMiJyWTFRSSjr+whUNZRxp+RwTcAgE6vO\nZVuMze7wzSmeFOjB8PRiK0emaOqEctxTg3HagK9j8PE+eI1ea47XJflYXW+O\nWJ2UvUTAYpSm84yjN3t9SFaUTa3WVn0OSdCeuHQptZYxzDpFPiHzvyjJx6Tc\nKW5/TcplckdGXQpBVbrivdoQ2IdrFrb/Z+LPFiTTCN5KRFu33mYVu9F8bKht\n5JjNa7GmEEY6euLxK5n0g/w5IH1jq8JT6SoRNHTIvfpjMudcbiPdJWXahhma\nG3RhT6lVIimVwenGm4A9WNoIzTWjIvO8rspcLCK+1pIHLCuUW75t6FgEfElf\nLu8w\r\n=IsWO\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=6"}},"2.3.1":{"name":"coffeescript","version":"2.3.1","dependencies":{},"devDependencies":{"babel-core":"6.26.3","babel-preset-env":"1.6.1","babel-preset-minify":"0.4.0","codemirror":"^5.37.0","docco":"~0.8.0","highlight.js":"~9.12.0","jison":">=0.4.18","markdown-it":"~8.4.1","underscore":"~1.9.0","webpack":"~4.6.0"},"bin":{"coffee":"./bin/coffee","cake":"./bin/cake"},"_hasShrinkwrap":false,"directories":{"lib":"./lib/coffeescript"},"dist":{"integrity":"sha512-DNJmSPMyiz+OjWYyuDXNBcFutDjP2TS2owsZ8YvT65hA8c5IdHWIBqdA3Yf/XHoK23d/f1HqLjQbEJJZJoeV1w==","shasum":"a25f69c251d25805c9842e57fc94bfc453ef6aed","tarball":"https://registry.npmjs.org/coffeescript/-/coffeescript-2.3.1.tgz","fileCount":24,"unpackedSize":666483,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbA6fTCRA9TVsSAnZWagAAgPkQAIScvFZKZaRcd8MnFUbM\nG6mnJQdxrl3b6sb3sT6MX5p8jT+3jTsxRNNvkDmTC/mBzIyQj4YeW8uZzt6J\n6mg2dK/k140PV8DT3aenYk8H/j0NHxYAcAwT5HW12tShzZsLECvL4NdGr3d6\nBMlsZJhomDqxE+giIt1UuuAHSEXoWZDV4dlhk1aQOGVfzWOW+TcyxdpGCQ0q\nH9ImHdcgUBxqe2yYwXpiQdM5A/YuezQxsbqAyFF47nky+QMy8oDeonSaFVaO\nfcPAGUh6Y+UjPim85BsOcHEWxQ3AGyvSvO2Q+SKkiCc7YfNiqmHeoojT+d+S\nyMXBvU+eW+cy+XOu2s6fCOWmgwb3a+3PWp7oDnOvwl/e7sv1ZCSTJB8Zcb0A\n/JcxezXWKd+63zjDv0choBgW9oQrVtCCylyvcY+896tKN1iIY6/iG21221in\neJoUPvqRDNa9YJQBQvNB+w4AcM8Bu+oH34wVltomy/PMwdsPJXKrSwqHL99o\nrrwMy80TJ/yreMF4+1pW8uS7ktN3sTiNgAIlbWh0+DMo5X+9zRitDsQ4C2pm\naTVTGqbm8AvP79m0hezGtReboqwpkbUPjm6LcsXccRXYD6I8xAfB28j6zU9L\n0ooQMvcwarc20ybCT8oYmX+/qX+0rd3JIEH2Kc4azYrytvNgjbwiGDsl38jX\n3tEN\r\n=cRxe\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=6"}},"2.3.2":{"name":"coffeescript","version":"2.3.2","dependencies":{},"devDependencies":{"@babel/core":"^7.0.0","@babel/preset-env":"^7.0.0","babel-preset-minify":"^0.4.3","codemirror":"^5.39.2","docco":"~0.8.0","highlight.js":"~9.12.0","jison":">=0.4.18","markdown-it":"~8.4.2","underscore":"~1.9.1","webpack":"~4.17.2"},"bin":{"coffee":"./bin/coffee","cake":"./bin/cake"},"_hasShrinkwrap":false,"directories":{"lib":"./lib/coffeescript"},"dist":{"integrity":"sha512-YObiFDoukx7qPBi/K0kUKyntEZDfBQiqs/DbrR1xzASKOBjGT7auD85/DiPeRr9k++lRj7l3uA9TNMLfyfcD/Q==","shasum":"e854a7020dfe47b7cf4dd412042e32ef1e269810","tarball":"https://registry.npmjs.org/coffeescript/-/coffeescript-2.3.2.tgz","fileCount":24,"unpackedSize":668288,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbo0ajCRA9TVsSAnZWagAA6qAP/3gZU9AijopMqeSi0cxn\nYvwf9SqJMELDNHovmd91Q3U41MUQj/H2Aj7I01f9rif8CU9iRyQGXJoKk2N2\nNx5TkP/oEYUwn0TzkiyfNiJZpfF0pJZPioe34ko7GX8+WNsTqGfu1mERfpN5\nhr3UbKQll2ysR+EYaoqvwBHZ8iojDNoEou5VrpI24KlSctHJHYhxPx7jyhzx\nbZFEGOtAHSwfDGSg+OLtHxpsUKNn8CZUqoIq15A9F+o0UR9w6WXu3GJdUk9c\nKEWWUHWdnmIKoOl+IzowDfm5mQOmx+UWlDtdr6aOQxznzVXz1pu0CFkp2e25\nc4Yv8rg+miQeF1Q7P4LowZutGWFxD/jEuSgQh8OXxRJRuGMFMS0otbCYQ7OX\n/qogo6YmI5tMPRQmwkKQC6xeGeVvcjTbSgK/8u0MPuNPZSk7FwN2AI92B/5I\nNjYfgdHLHt/AmfI1HjZQxBZgrfzQrA3ELFUnLF5NrNXJAxj7VhenlCuhayHS\ncoGMAhd8pfAhprIrdQamnwBwsDd/bf2dz0t1MPRRdnVvevrGCgOQol3zT8EU\naTGt+t4exnAtO29UqvvdoO23uwvr+VDkzFWP/y+kq5Z146gtFPk3mdNONyKm\noSUAzQPDHwdOyWLnwIx+mpPfCOlQqclMBOcc6y6YR0A/0JtINl5WnfcjK6Gx\nh5W0\r\n=MHpg\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=6"}}},"name":"coffeescript","dist-tags":{"latest":"2.3.2","next":"2.3.1","stable":"2.3.1"},"modified":"2018-09-20T07:05:09.306Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/b2/e7/90bf72e9d67123b794f87d58a7384f7abf1b5eb2cc172ec3000c4cc030a9ec554b8e475dc8f1fad5f92ab4a5599257ad4888a92508cd6b12ebdb62d001bd b/npm/.npm/_cacache/content-v2/sha512/b2/e7/90bf72e9d67123b794f87d58a7384f7abf1b5eb2cc172ec3000c4cc030a9ec554b8e475dc8f1fad5f92ab4a5599257ad4888a92508cd6b12ebdb62d001bd new file mode 100644 index 0000000..69f0d58 --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/b2/e7/90bf72e9d67123b794f87d58a7384f7abf1b5eb2cc172ec3000c4cc030a9ec554b8e475dc8f1fad5f92ab4a5599257ad4888a92508cd6b12ebdb62d001bd @@ -0,0 +1 @@ +{"versions":{"1.0.0":{"name":"rimraf","version":"1.0.0","directories":{},"dist":{"shasum":"5797e55b587c77fc3e5b61051e429d1b00310840","tarball":"http://registry.npmjs.org/rimraf/-/rimraf-1.0.0.tgz"},"engines":{"node":"*"}},"1.0.1":{"name":"rimraf","version":"1.0.1","dependencies":{},"devDependencies":{},"directories":{},"dist":{"shasum":"8ff61e034ccd6f5e687b3d4f4da9247c4da7dd46","tarball":"http://registry.npmjs.org/rimraf/-/rimraf-1.0.1.tgz"},"engines":{"node":"*"}},"1.0.2":{"name":"rimraf","version":"1.0.2","dependencies":{},"devDependencies":{},"directories":{},"dist":{"shasum":"4cc292a756559123ee9e4995cffb783e769b50a3","tarball":"http://registry.npmjs.org/rimraf/-/rimraf-1.0.2.tgz"},"engines":{"node":"*"}},"1.0.4":{"name":"rimraf","version":"1.0.4","dependencies":{},"devDependencies":{},"directories":{},"dist":{"shasum":"2137e3d9a45c547b8df9f1309b8fbca29ea20822","tarball":"http://registry.npmjs.org/rimraf/-/rimraf-1.0.4.tgz"},"engines":{"node":"*"}},"1.0.5":{"name":"rimraf","version":"1.0.5","dependencies":{},"devDependencies":{},"directories":{},"dist":{"shasum":"2c988219578bc569e461b9202bc22f5dbfa5b3e3","tarball":"http://registry.npmjs.org/rimraf/-/rimraf-1.0.5.tgz"},"engines":{"node":"*"}},"1.0.6":{"name":"rimraf","version":"1.0.6","dependencies":{},"devDependencies":{},"directories":{},"dist":{"shasum":"8e404afc4edc5ac544dce5441a148e52657e5860","tarball":"http://registry.npmjs.org/rimraf/-/rimraf-1.0.6.tgz"},"engines":{"node":"*"}},"1.0.7":{"name":"rimraf","version":"1.0.7","dependencies":{},"devDependencies":{},"directories":{},"dist":{"shasum":"9b664339fb366bf669d79672718336eba8d6adb4","tarball":"http://registry.npmjs.org/rimraf/-/rimraf-1.0.7.tgz"},"engines":{"node":"*"}},"1.0.8":{"name":"rimraf","version":"1.0.8","dependencies":{},"devDependencies":{},"directories":{},"dist":{"shasum":"d8808068156c5135b16842348304b92c86f23bd1","tarball":"http://registry.npmjs.org/rimraf/-/rimraf-1.0.8.tgz"},"engines":{"node":"*"}},"1.0.9":{"name":"rimraf","version":"1.0.9","dependencies":{},"devDependencies":{},"directories":{},"dist":{"shasum":"be4801ff76c2ba6f1c50c78e9700eb1d21f239f1","tarball":"http://registry.npmjs.org/rimraf/-/rimraf-1.0.9.tgz"},"engines":{"node":"*"}},"2.0.0":{"name":"rimraf","version":"2.0.0","dependencies":{"graceful-fs":"~1.1"},"optionalDependencies":{"graceful-fs":"~1.1"},"devDependencies":{},"directories":{},"dist":{"shasum":"61bafdc9d6b385e8de0101b4b47c3d01b856c1ee","tarball":"http://registry.npmjs.org/rimraf/-/rimraf-2.0.0.tgz"},"engines":{"node":"*"}},"2.0.1":{"name":"rimraf","version":"2.0.1","dependencies":{"graceful-fs":"~1.1"},"optionalDependencies":{"graceful-fs":"~1.1"},"devDependencies":{},"directories":{},"dist":{"shasum":"6e58b6e7d3980bd620618d0703d502f872078fee","tarball":"http://registry.npmjs.org/rimraf/-/rimraf-2.0.1.tgz"},"engines":{"node":"*"}},"2.0.2":{"name":"rimraf","version":"2.0.2","dependencies":{"graceful-fs":"~1.1"},"optionalDependencies":{"graceful-fs":"~1.1"},"devDependencies":{},"directories":{},"dist":{"shasum":"2a860f3f74bd7975002f73cb0b003b218ec351e4","tarball":"http://registry.npmjs.org/rimraf/-/rimraf-2.0.2.tgz"},"engines":{"node":"*"}},"2.0.3":{"name":"rimraf","version":"2.0.3","dependencies":{"graceful-fs":"~1.1"},"optionalDependencies":{"graceful-fs":"~1.1"},"directories":{},"dist":{"shasum":"f50a2965e7144e9afd998982f15df706730f56a9","tarball":"http://registry.npmjs.org/rimraf/-/rimraf-2.0.3.tgz"}},"2.1.0":{"name":"rimraf","version":"2.1.0","dependencies":{"graceful-fs":"~1.1"},"optionalDependencies":{"graceful-fs":"~1.1"},"directories":{},"dist":{"shasum":"6003214d56590b613791b457b4df6fb3170dc73b","tarball":"http://registry.npmjs.org/rimraf/-/rimraf-2.1.0.tgz"}},"2.1.1":{"name":"rimraf","version":"2.1.1","dependencies":{"graceful-fs":"~1.1"},"optionalDependencies":{"graceful-fs":"~1.1"},"directories":{},"dist":{"shasum":"ee9cec7e2d796ef59ceaa5f3a3024c225e630c61","tarball":"http://registry.npmjs.org/rimraf/-/rimraf-2.1.1.tgz"}},"2.1.2":{"name":"rimraf","version":"2.1.2","dependencies":{"graceful-fs":"~1.1"},"optionalDependencies":{"graceful-fs":"~1.1"},"directories":{},"dist":{"shasum":"82b9bedb9f88c39c43a20b01f209551b34a2ab76","tarball":"http://registry.npmjs.org/rimraf/-/rimraf-2.1.2.tgz"}},"2.1.3":{"name":"rimraf","version":"2.1.3","dependencies":{"graceful-fs":"~1"},"optionalDependencies":{"graceful-fs":"~1"},"directories":{},"dist":{"shasum":"23f9915e1935e2548fee061ae982316006f66322","tarball":"http://registry.npmjs.org/rimraf/-/rimraf-2.1.3.tgz"}},"2.1.4":{"name":"rimraf","version":"2.1.4","dependencies":{"graceful-fs":"~1"},"optionalDependencies":{"graceful-fs":"~1"},"directories":{},"dist":{"shasum":"5a6eb62eeda068f51ede50f29b3e5cd22f3d9bb2","tarball":"http://registry.npmjs.org/rimraf/-/rimraf-2.1.4.tgz"}},"2.2.0":{"name":"rimraf","version":"2.2.0","dependencies":{"graceful-fs":"~1"},"optionalDependencies":{"graceful-fs":"~1"},"bin":{"rimraf":"./bin.js"},"directories":{},"dist":{"shasum":"70797542e81a935849443d7b69bec612ca74c96e","tarball":"http://registry.npmjs.org/rimraf/-/rimraf-2.2.0.tgz"}},"2.2.1":{"name":"rimraf","version":"2.2.1","dependencies":{"graceful-fs":"~1"},"optionalDependencies":{"graceful-fs":"~1"},"bin":{"rimraf":"./bin.js"},"directories":{},"dist":{"shasum":"8f49c57874ce166b667fbfecac2cdf7f26d3d8a5","tarball":"http://registry.npmjs.org/rimraf/-/rimraf-2.2.1.tgz"}},"2.2.2":{"name":"rimraf","version":"2.2.2","dependencies":{"graceful-fs":"~2"},"optionalDependencies":{"graceful-fs":"~2"},"bin":{"rimraf":"./bin.js"},"directories":{},"dist":{"shasum":"d99ec41dc646e55bf7a7a44a255c28bef33a8abf","tarball":"http://registry.npmjs.org/rimraf/-/rimraf-2.2.2.tgz"}},"2.2.3":{"name":"rimraf","version":"2.2.3","dependencies":{"graceful-fs":"~2"},"optionalDependencies":{"graceful-fs":"~2"},"bin":{"rimraf":"./bin.js"},"directories":{},"dist":{"shasum":"ed60a43d480a1d576d0715aadf36181ffe3186c6","tarball":"http://registry.npmjs.org/rimraf/-/rimraf-2.2.3.tgz"}},"2.2.4":{"name":"rimraf","version":"2.2.4","dependencies":{"graceful-fs":"~2"},"optionalDependencies":{"graceful-fs":"~2"},"bin":{"rimraf":"./bin.js"},"directories":{},"dist":{"shasum":"9f0b530f829f7b655a6e4d2fd8cf4c042336ef58","tarball":"http://registry.npmjs.org/rimraf/-/rimraf-2.2.4.tgz"}},"2.2.5":{"name":"rimraf","version":"2.2.5","bin":{"rimraf":"./bin.js"},"directories":{},"dist":{"shasum":"4e5c4f667b121afa806d0c5b58920996f9478aa0","tarball":"http://registry.npmjs.org/rimraf/-/rimraf-2.2.5.tgz"}},"2.2.6":{"name":"rimraf","version":"2.2.6","bin":{"rimraf":"./bin.js"},"directories":{},"dist":{"shasum":"c59597569b14d956ad29cacc42bdddf5f0ea4f4c","tarball":"http://registry.npmjs.org/rimraf/-/rimraf-2.2.6.tgz"}},"2.2.8":{"name":"rimraf","version":"2.2.8","bin":{"rimraf":"./bin.js"},"directories":{},"dist":{"shasum":"e439be2aaee327321952730f99a8929e4fc50582","tarball":"http://registry.npmjs.org/rimraf/-/rimraf-2.2.8.tgz"}},"2.3.0":{"name":"rimraf","version":"2.3.0","dependencies":{"glob":"^4.4.1"},"bin":{"rimraf":"./bin.js"},"directories":{},"dist":{"shasum":"a5f0f3c702e39939be3ecbd1f7098f99750b5ed8","tarball":"http://registry.npmjs.org/rimraf/-/rimraf-2.3.0.tgz"}},"2.3.1":{"name":"rimraf","version":"2.3.1","dependencies":{"glob":"^4.4.2"},"bin":{"rimraf":"./bin.js"},"directories":{},"dist":{"shasum":"f83df78c168d5daf9f021e8e092e7a165898ee75","tarball":"http://registry.npmjs.org/rimraf/-/rimraf-2.3.1.tgz"}},"2.3.2":{"name":"rimraf","version":"2.3.2","dependencies":{"glob":"^4.4.2"},"bin":{"rimraf":"./bin.js"},"directories":{},"dist":{"shasum":"7304bd9275c401b89103b106b3531c1ef0c02fe9","tarball":"http://registry.npmjs.org/rimraf/-/rimraf-2.3.2.tgz"}},"2.3.3":{"name":"rimraf","version":"2.3.3","dependencies":{"glob":"^4.4.2"},"bin":{"rimraf":"./bin.js"},"directories":{},"dist":{"shasum":"d0073d8b3010611e8f3ad377b08e9a3c18b98f06","tarball":"http://registry.npmjs.org/rimraf/-/rimraf-2.3.3.tgz"}},"2.3.4":{"name":"rimraf","version":"2.3.4","dependencies":{"glob":"^4.4.2"},"bin":{"rimraf":"./bin.js"},"directories":{},"dist":{"shasum":"82d9bc1b2fcf31e205ac7b28138a025d08e9159a","tarball":"http://registry.npmjs.org/rimraf/-/rimraf-2.3.4.tgz"}},"2.4.0":{"name":"rimraf","version":"2.4.0","dependencies":{"glob":"^4.4.2"},"devDependencies":{"mkdirp":"^0.5.1","tap":"^1.2.0"},"bin":{"rimraf":"./bin.js"},"directories":{},"dist":{"shasum":"40ba0416037d8511ecb50f6b07cf8d18e658a864","tarball":"http://registry.npmjs.org/rimraf/-/rimraf-2.4.0.tgz"}},"2.4.1":{"name":"rimraf","version":"2.4.1","dependencies":{"glob":"^4.4.2"},"devDependencies":{"mkdirp":"^0.5.1","tap":"^1.2.0"},"bin":{"rimraf":"./bin.js"},"directories":{},"dist":{"shasum":"99ff3cc1d61d687b67489b9f97cfa9d3db3b9e48","tarball":"http://registry.npmjs.org/rimraf/-/rimraf-2.4.1.tgz"}},"2.4.2":{"name":"rimraf","version":"2.4.2","dependencies":{"glob":"^5.0.14"},"devDependencies":{"mkdirp":"^0.5.1","tap":"^1.3.1"},"bin":{"rimraf":"./bin.js"},"directories":{},"dist":{"shasum":"ab4f39b08b72eae07c3d9fe9f4831aebfc9f431d","tarball":"http://registry.npmjs.org/rimraf/-/rimraf-2.4.2.tgz"}},"2.4.3":{"name":"rimraf","version":"2.4.3","dependencies":{"glob":"^5.0.14"},"devDependencies":{"mkdirp":"^0.5.1","tap":"^1.3.1"},"bin":{"rimraf":"./bin.js"},"directories":{},"dist":{"shasum":"e5b51c9437a4c582adb955e9f28cf8d945e272af","tarball":"http://registry.npmjs.org/rimraf/-/rimraf-2.4.3.tgz"}},"2.4.4":{"name":"rimraf","version":"2.4.4","dependencies":{"glob":"^5.0.14"},"devDependencies":{"mkdirp":"^0.5.1","tap":"^1.3.1"},"bin":{"rimraf":"./bin.js"},"directories":{},"dist":{"shasum":"b528ce2ebe0e6d89fb03b265de11d61da0dbcf82","tarball":"http://registry.npmjs.org/rimraf/-/rimraf-2.4.4.tgz"}},"2.4.5":{"name":"rimraf","version":"2.4.5","dependencies":{"glob":"^6.0.1"},"devDependencies":{"mkdirp":"^0.5.1","tap":"^2.3.4"},"bin":{"rimraf":"./bin.js"},"directories":{},"dist":{"shasum":"ee710ce5d93a8fdb856fb5ea8ff0e2d75934b2da","tarball":"http://registry.npmjs.org/rimraf/-/rimraf-2.4.5.tgz"}},"2.5.0":{"name":"rimraf","version":"2.5.0","dependencies":{"glob":"^6.0.1"},"devDependencies":{"mkdirp":"^0.5.1","tap":"^2.3.4"},"bin":{"rimraf":"./bin.js"},"directories":{},"dist":{"shasum":"30c096cdf772e26bf3e1d2cff84c2196541a9bb6","tarball":"http://registry.npmjs.org/rimraf/-/rimraf-2.5.0.tgz"}},"2.5.1":{"name":"rimraf","version":"2.5.1","dependencies":{"glob":"^6.0.1"},"devDependencies":{"mkdirp":"^0.5.1","tap":"^5.1.1"},"bin":{"rimraf":"./bin.js"},"directories":{},"dist":{"shasum":"52e1e946f3f9b9b0d5d8988ba3191aaf2a2dbd43","tarball":"http://registry.npmjs.org/rimraf/-/rimraf-2.5.1.tgz"}},"2.5.2":{"name":"rimraf","version":"2.5.2","dependencies":{"glob":"^7.0.0"},"devDependencies":{"mkdirp":"^0.5.1","tap":"^5.1.1"},"bin":{"rimraf":"./bin.js"},"directories":{},"dist":{"shasum":"62ba947fa4c0b4363839aefecd4f0fbad6059726","tarball":"http://registry.npmjs.org/rimraf/-/rimraf-2.5.2.tgz"}},"2.5.3":{"name":"rimraf","version":"2.5.3","dependencies":{"glob":"^7.0.5"},"devDependencies":{"mkdirp":"^0.5.1","tap":"^6.1.1"},"bin":{"rimraf":"./bin.js"},"directories":{},"dist":{"shasum":"6e5efdda4aa2f03417f6b2a574aec29f4b652705","tarball":"http://registry.npmjs.org/rimraf/-/rimraf-2.5.3.tgz"}},"2.5.4":{"name":"rimraf","version":"2.5.4","dependencies":{"glob":"^7.0.5"},"devDependencies":{"mkdirp":"^0.5.1","tap":"^6.1.1"},"bin":{"rimraf":"./bin.js"},"directories":{},"dist":{"shasum":"96800093cbf1a0c86bd95b4625467535c29dfa04","tarball":"http://registry.npmjs.org/rimraf/-/rimraf-2.5.4.tgz"}},"2.6.0":{"name":"rimraf","version":"2.6.0","dependencies":{"glob":"^7.0.5"},"devDependencies":{"mkdirp":"^0.5.1","tap":"^10.1.2"},"bin":{"rimraf":"./bin.js"},"directories":{},"dist":{"shasum":"89b8a0fe432b9ff9ec9a925a00b6cdb3a91bbada","tarball":"https://registry.npmjs.org/rimraf/-/rimraf-2.6.0.tgz"}},"2.6.1":{"name":"rimraf","version":"2.6.1","dependencies":{"glob":"^7.0.5"},"devDependencies":{"mkdirp":"^0.5.1","tap":"^10.1.2"},"bin":{"rimraf":"./bin.js"},"directories":{},"dist":{"shasum":"c2338ec643df7a1b7fe5c54fa86f57428a55f33d","tarball":"https://registry.npmjs.org/rimraf/-/rimraf-2.6.1.tgz"}},"2.6.2":{"name":"rimraf","version":"2.6.2","dependencies":{"glob":"^7.0.5"},"devDependencies":{"mkdirp":"^0.5.1","tap":"^10.1.2"},"bin":{"rimraf":"./bin.js"},"directories":{},"dist":{"integrity":"sha512-lreewLK/BlghmxtfH36YYVg1i8IAce4TI7oao75I1g245+6BctqTVQiBP3YUJ9C6DQOXJmkYR9X9fCLtCOJc5w==","shasum":"2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36","tarball":"https://registry.npmjs.org/rimraf/-/rimraf-2.6.2.tgz"}}},"name":"rimraf","dist-tags":{"latest":"2.6.2"},"modified":"2018-08-29T02:22:39.608Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/b4/95/f35fa425f8a474c1efd26e66aefbdbe11c80c56597801f5cf2969635fe155a2d17b203360a88efe8875b209aba2f2070f84936814755277b8b3c6f43611d b/npm/.npm/_cacache/content-v2/sha512/b4/95/f35fa425f8a474c1efd26e66aefbdbe11c80c56597801f5cf2969635fe155a2d17b203360a88efe8875b209aba2f2070f84936814755277b8b3c6f43611d new file mode 100644 index 0000000..93020da --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/b4/95/f35fa425f8a474c1efd26e66aefbdbe11c80c56597801f5cf2969635fe155a2d17b203360a88efe8875b209aba2f2070f84936814755277b8b3c6f43611d @@ -0,0 +1 @@ +{"versions":{"1.0.0":{"name":"nopt","version":"1.0.0","dependencies":{"abbrev":"1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"a786d439b09c142dca74b0b29ef1458da50e37d8","tarball":"https://registry.npmjs.org/nopt/-/nopt-1.0.0.tgz","bin":{"0.4-darwin-10.7.0":{"shasum":"e0864df8d3e4d2b81ef268d8a50b2f1bccd39e54","tarball":"http://registry.npmjs.org/nopt/-/nopt-1.0.0-0.4-darwin-10.7.0.tgz"}}},"engines":{"node":"*"}},"1.0.1":{"name":"nopt","version":"1.0.1","dependencies":{"abbrev":"1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"585e38c61508b02b1ea2cc0028eef8c303079285","tarball":"https://registry.npmjs.org/nopt/-/nopt-1.0.1.tgz"},"engines":{"node":"*"}},"1.0.2":{"name":"nopt","version":"1.0.2","dependencies":{"abbrev":"1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"bb26ab771fb09411f716b122c12cd98fdc98f4d1","tarball":"https://registry.npmjs.org/nopt/-/nopt-1.0.2.tgz"},"engines":{"node":"*"}},"1.0.3":{"name":"nopt","version":"1.0.3","dependencies":{"abbrev":"1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"a5557211e05f4baad09bbf8e9d798072bff69166","tarball":"https://registry.npmjs.org/nopt/-/nopt-1.0.3.tgz"},"engines":{"node":"*"}},"1.0.4":{"name":"nopt","version":"1.0.4","dependencies":{"abbrev":"1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"023fc93f439094e662e2e4186345bfabda8eceda","tarball":"https://registry.npmjs.org/nopt/-/nopt-1.0.4.tgz"},"engines":{"node":"*"}},"1.0.5":{"name":"nopt","version":"1.0.5","dependencies":{"abbrev":"1"},"devDependencies":{},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"fc79e34a4e8862e9c413d2e1cac07ee645ac4cc8","tarball":"https://registry.npmjs.org/nopt/-/nopt-1.0.5.tgz"},"engines":{"node":"*"}},"1.0.6":{"name":"nopt","version":"1.0.6","dependencies":{"abbrev":"1"},"devDependencies":{},"bin":{"nopt":"./bin/nopt.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"37307cafcdccf78b954ec06dcef31b936b4d03df","tarball":"https://registry.npmjs.org/nopt/-/nopt-1.0.6.tgz"},"engines":{"node":"*"}},"1.0.7":{"name":"nopt","version":"1.0.7","dependencies":{"abbrev":"1"},"devDependencies":{},"bin":{"nopt":"./bin/nopt.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"cc72658b52a3f653a70883a1823dd8f3ddc57f75","tarball":"https://registry.npmjs.org/nopt/-/nopt-1.0.7.tgz"},"engines":{"node":"*"}},"1.0.8":{"name":"nopt","version":"1.0.8","dependencies":{"abbrev":"1"},"devDependencies":{},"bin":{"nopt":"./bin/nopt.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"d4ac752df307f1a02eb771c40ed23188e7ca44c6","tarball":"https://registry.npmjs.org/nopt/-/nopt-1.0.8.tgz"},"engines":{"node":"*"}},"1.0.9":{"name":"nopt","version":"1.0.9","dependencies":{"abbrev":"1"},"devDependencies":{},"bin":{"nopt":"./bin/nopt.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"3bc0d7cba7bfb0d5a676dbed7c0ebe48a4fd454e","tarball":"https://registry.npmjs.org/nopt/-/nopt-1.0.9.tgz"},"engines":{"node":"*"}},"1.0.10":{"name":"nopt","version":"1.0.10","dependencies":{"abbrev":"1"},"devDependencies":{},"bin":{"nopt":"./bin/nopt.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"6ddd21bd2a31417b92727dd585f8a6f37608ebee","tarball":"https://registry.npmjs.org/nopt/-/nopt-1.0.10.tgz"},"engines":{"node":"*"}},"2.0.0":{"name":"nopt","version":"2.0.0","dependencies":{"abbrev":"1"},"bin":{"nopt":"./bin/nopt.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"ca7416f20a5e3f9c3b86180f96295fa3d0b52e0d","tarball":"https://registry.npmjs.org/nopt/-/nopt-2.0.0.tgz"}},"2.1.0":{"name":"nopt","version":"2.1.0","dependencies":{"abbrev":"1"},"bin":{"nopt":"./bin/nopt.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"2334c03a00c1dcb22eb1c4a4c34ebde213ee49e2","tarball":"https://registry.npmjs.org/nopt/-/nopt-2.1.0.tgz"}},"2.1.1":{"name":"nopt","version":"2.1.1","dependencies":{"abbrev":"1"},"bin":{"nopt":"./bin/nopt.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"91eb7c4b017e7c00adcad1fd6d63944d0fdb75c1","tarball":"https://registry.npmjs.org/nopt/-/nopt-2.1.1.tgz"}},"2.1.2":{"name":"nopt","version":"2.1.2","dependencies":{"abbrev":"1"},"bin":{"nopt":"./bin/nopt.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"6cccd977b80132a07731d6e8ce58c2c8303cf9af","tarball":"https://registry.npmjs.org/nopt/-/nopt-2.1.2.tgz"}},"2.2.0":{"name":"nopt","version":"2.2.0","dependencies":{"abbrev":"1"},"devDependencies":{"tap":"~0.4.8"},"bin":{"nopt":"./bin/nopt.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"3d106676f3607ac466af9bf82bd707b1501d3bd5","tarball":"https://registry.npmjs.org/nopt/-/nopt-2.2.0.tgz"}},"2.2.1":{"name":"nopt","version":"2.2.1","dependencies":{"abbrev":"1"},"devDependencies":{"tap":"~0.4.8"},"bin":{"nopt":"./bin/nopt.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"2aa09b7d1768487b3b89a9c5aa52335bff0baea7","tarball":"https://registry.npmjs.org/nopt/-/nopt-2.2.1.tgz"}},"3.0.0":{"name":"nopt","version":"3.0.0","dependencies":{"abbrev":"1"},"devDependencies":{"tap":"~0.4.8"},"bin":{"nopt":"./bin/nopt.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"4fcf4bf09123d5ee6b2f70214a4d95789b875c79","tarball":"https://registry.npmjs.org/nopt/-/nopt-3.0.0.tgz"}},"3.0.1":{"name":"nopt","version":"3.0.1","dependencies":{"abbrev":"1"},"devDependencies":{"tap":"~0.4.8"},"bin":{"nopt":"./bin/nopt.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"bce5c42446a3291f47622a370abbf158fbbacbfd","tarball":"https://registry.npmjs.org/nopt/-/nopt-3.0.1.tgz"}},"3.0.2":{"name":"nopt","version":"3.0.2","dependencies":{"abbrev":"1"},"devDependencies":{"tap":"~0.4.8"},"bin":{"nopt":"./bin/nopt.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"a82a87f9d8c3df140fe78fb29657a7a774403b5e","tarball":"https://registry.npmjs.org/nopt/-/nopt-3.0.2.tgz"}},"3.0.3":{"name":"nopt","version":"3.0.3","dependencies":{"abbrev":"1"},"devDependencies":{"tap":"^1.2.0"},"bin":{"nopt":"./bin/nopt.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"0e9978f33016bae0b75e3748c03bbbb71da5c530","tarball":"https://registry.npmjs.org/nopt/-/nopt-3.0.3.tgz"}},"3.0.4":{"name":"nopt","version":"3.0.4","dependencies":{"abbrev":"1"},"devDependencies":{"tap":"^1.2.0"},"bin":{"nopt":"./bin/nopt.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"dd63bc9c72a6e4e85b85cdc0ca314598facede5e","tarball":"https://registry.npmjs.org/nopt/-/nopt-3.0.4.tgz"}},"3.0.5":{"name":"nopt","version":"3.0.5","dependencies":{"abbrev":"1"},"devDependencies":{"tap":"^1.2.0"},"bin":{"nopt":"./bin/nopt.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"34adf7482cf70b06d24693e094c2c1e2e7fab403","tarball":"https://registry.npmjs.org/nopt/-/nopt-3.0.5.tgz"}},"3.0.6":{"name":"nopt","version":"3.0.6","dependencies":{"abbrev":"1"},"devDependencies":{"tap":"^1.2.0"},"bin":{"nopt":"./bin/nopt.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"c6465dbf08abcd4db359317f79ac68a646b28ff9","tarball":"https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz"}},"4.0.0":{"name":"nopt","version":"4.0.0","dependencies":{"abbrev":"1","osenv":"^0.1.4"},"devDependencies":{"tap":"^8.0.1"},"bin":{"nopt":"./bin/nopt.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"a4f9c541d2f84e0e2288057125fefe7329836694","tarball":"https://registry.npmjs.org/nopt/-/nopt-4.0.0.tgz"}},"4.0.1":{"name":"nopt","version":"4.0.1","dependencies":{"abbrev":"1","osenv":"^0.1.4"},"devDependencies":{"tap":"^8.0.1"},"bin":{"nopt":"./bin/nopt.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"d0d4685afd5415193c8c7505602d0d17cd64474d","tarball":"https://registry.npmjs.org/nopt/-/nopt-4.0.1.tgz"}}},"name":"nopt","dist-tags":{"latest":"4.0.1"},"modified":"2017-10-18T13:37:23.601Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/b7/c0/5ff1e5a9de0e7a1644c50ae7d37175c8d35e96bbbaaae4644f178a9a637d7fabda08a5ee4b7820958133a30c6293f809c09f86e5cec058f13fb402e29520 b/npm/.npm/_cacache/content-v2/sha512/b7/c0/5ff1e5a9de0e7a1644c50ae7d37175c8d35e96bbbaaae4644f178a9a637d7fabda08a5ee4b7820958133a30c6293f809c09f86e5cec058f13fb402e29520 new file mode 100644 index 0000000..e6ad1da --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/b7/c0/5ff1e5a9de0e7a1644c50ae7d37175c8d35e96bbbaaae4644f178a9a637d7fabda08a5ee4b7820958133a30c6293f809c09f86e5cec058f13fb402e29520 @@ -0,0 +1 @@ +{"versions":{"1.1.0":{"name":"glob","version":"1.1.0","_hasShrinkwrap":false,"directories":{"lib":"./lib"},"dist":{"shasum":"b855e0709ddc7d9c5f884acc6155677b437ec135","tarball":"https://registry.npmjs.org/glob/-/glob-1.1.0.tgz"},"engines":{"node":"*"}},"2.0.9":{"name":"glob","version":"2.0.9","dependencies":{},"devDependencies":{},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"cc550540fed1001d82326e2f16763da4d20071f7","tarball":"https://registry.npmjs.org/glob/-/glob-2.0.9.tgz"},"engines":{"node":"0.4"}},"2.0.8":{"name":"glob","version":"2.0.8","dependencies":{},"devDependencies":{},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"5342337c3f194250e1d7625ed6b77b5195a41845","tarball":"https://registry.npmjs.org/glob/-/glob-2.0.8.tgz"},"engines":{"node":"0.4"}},"2.0.7":{"name":"glob","version":"2.0.7","dependencies":{},"devDependencies":{},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"4f2b7b496b7b72e5e680449d1279800b7db82459","tarball":"https://registry.npmjs.org/glob/-/glob-2.0.7.tgz"},"engines":{"node":"0.4"}},"2.1.0":{"name":"glob","version":"2.1.0","dependencies":{},"devDependencies":{},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"69fd2f3541a4802a2d928270c5caaaa0009552b0","tarball":"https://registry.npmjs.org/glob/-/glob-2.1.0.tgz"},"engines":{"node":"0.6"}},"3.0.0":{"name":"glob","version":"3.0.0","dependencies":{"fast-list":"1","minimatch":"0.1","graceful-fs":"~1.1.2","inherits":"1"},"optionalDependencies":{},"devDependencies":{"tap":"0.1","mkdirp":"0.2","rimraf":"1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"277715af94dec8c1096a34664bccc11cae0dcd5c","tarball":"https://registry.npmjs.org/glob/-/glob-3.0.0.tgz"},"engines":{"node":"*"}},"3.0.1":{"name":"glob","version":"3.0.1","dependencies":{"fast-list":"1","minimatch":"0.1","graceful-fs":"~1.1.2","inherits":"1"},"optionalDependencies":{},"devDependencies":{"tap":"0.1","mkdirp":"0.2","rimraf":"1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"90899b05973a70b1106b38bb260f537ebfac58ce","tarball":"https://registry.npmjs.org/glob/-/glob-3.0.1.tgz"},"engines":{"node":"*"}},"3.1.0":{"name":"glob","version":"3.1.0","dependencies":{"minimatch":"0.2","graceful-fs":"~1.1.2","inherits":"1"},"optionalDependencies":{},"devDependencies":{"tap":"0.1","mkdirp":"0.2","rimraf":"1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"0c042fd73dd483e52728e2946f40398f3600a51d","tarball":"https://registry.npmjs.org/glob/-/glob-3.1.0.tgz"},"engines":{"node":"*"}},"3.1.1":{"name":"glob","version":"3.1.1","dependencies":{"minimatch":"0.2","graceful-fs":"~1.1.2","inherits":"1"},"optionalDependencies":{},"devDependencies":{"tap":"0.1","mkdirp":"0.2","rimraf":"1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"e9bf369aacb3c449a55e01906ae7932b806589f9","tarball":"https://registry.npmjs.org/glob/-/glob-3.1.1.tgz"},"engines":{"node":"*"}},"3.1.2":{"name":"glob","version":"3.1.2","dependencies":{"minimatch":"0.2","graceful-fs":"~1.1.2","inherits":"1"},"optionalDependencies":{},"devDependencies":{"tap":"0.1","mkdirp":"0.2","rimraf":"1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"e99bda93662781bbdf334846e075ce257dbf031c","tarball":"https://registry.npmjs.org/glob/-/glob-3.1.2.tgz"},"engines":{"node":"*"}},"3.1.3":{"name":"glob","version":"3.1.3","dependencies":{"minimatch":"0.2","graceful-fs":"~1.1.2","inherits":"1"},"optionalDependencies":{},"devDependencies":{"tap":"0.1","mkdirp":"0.2","rimraf":"1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"03a5bb907b789e24f1aa31ea845a212f8099cf6e","tarball":"https://registry.npmjs.org/glob/-/glob-3.1.3.tgz"},"engines":{"node":"*"}},"3.1.4":{"name":"glob","version":"3.1.4","dependencies":{"minimatch":"0.2","graceful-fs":"~1.1.2","inherits":"1"},"optionalDependencies":{},"devDependencies":{"tap":"0.1","mkdirp":"0.2","rimraf":"1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"a2f0363e27f4f0add2633c2faf65feb91f8df2cf","tarball":"https://registry.npmjs.org/glob/-/glob-3.1.4.tgz"},"engines":{"node":"*"}},"3.1.5":{"name":"glob","version":"3.1.5","dependencies":{"minimatch":"0.2","graceful-fs":"~1.1.2","inherits":"1"},"optionalDependencies":{},"devDependencies":{"tap":"~0.2.3","mkdirp":"0","rimraf":"1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"26aa4feb912b1d22a1d83a4309c1a9f82cc5a2e0","tarball":"https://registry.npmjs.org/glob/-/glob-3.1.5.tgz"},"engines":{"node":"*"}},"3.1.6":{"name":"glob","version":"3.1.6","dependencies":{"minimatch":"0.2","graceful-fs":"~1.1.2","inherits":"1"},"optionalDependencies":{},"devDependencies":{"tap":"~0.2.3","mkdirp":"0","rimraf":"1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"46280e57c83a7225026a4d46dc2ca55b674d8a34","tarball":"https://registry.npmjs.org/glob/-/glob-3.1.6.tgz"},"engines":{"node":"*"}},"3.1.7":{"name":"glob","version":"3.1.7","dependencies":{"minimatch":"0.2","graceful-fs":"~1.1.2","inherits":"1"},"optionalDependencies":{},"devDependencies":{"tap":"~0.2.3","mkdirp":"0","rimraf":"1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"ded55665aa60fe02cecf876ca57bf5a405e161b8","tarball":"https://registry.npmjs.org/glob/-/glob-3.1.7.tgz"},"engines":{"node":"*"}},"3.1.9":{"name":"glob","version":"3.1.9","dependencies":{"minimatch":"0.2","graceful-fs":"~1.1.2","inherits":"1"},"optionalDependencies":{},"devDependencies":{"tap":"~0.2.3","mkdirp":"0","rimraf":"1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"e2b9003d46b6b7531b3d7b3b8bd6f774138c0b2d","tarball":"https://registry.npmjs.org/glob/-/glob-3.1.9.tgz"},"engines":{"node":"*"}},"3.1.10":{"name":"glob","version":"3.1.10","dependencies":{"minimatch":"0.2","graceful-fs":"~1.1.2","inherits":"1"},"devDependencies":{"tap":"~0.2.3","mkdirp":"0","rimraf":"1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"a789f184bc83c18b5b2da98c93f3bd4f343b7613","tarball":"https://registry.npmjs.org/glob/-/glob-3.1.10.tgz"},"engines":{"node":"*"}},"3.1.11":{"name":"glob","version":"3.1.11","dependencies":{"minimatch":"0.2","graceful-fs":"~1.1.2","inherits":"1"},"devDependencies":{"tap":"~0.2.3","mkdirp":"0","rimraf":"1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"c46ec5783444360b6435649712dd047bae3cadef","tarball":"https://registry.npmjs.org/glob/-/glob-3.1.11.tgz"},"engines":{"node":"*"}},"3.1.12":{"name":"glob","version":"3.1.12","dependencies":{"minimatch":"0.2","graceful-fs":"~1.1.2","inherits":"1"},"devDependencies":{"tap":"~0.2.3","mkdirp":"0","rimraf":"1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"4b3fd0889a68d9805f47ef4b3c6950e88455dc29","tarball":"https://registry.npmjs.org/glob/-/glob-3.1.12.tgz"},"engines":{"node":"*"}},"3.1.13":{"name":"glob","version":"3.1.13","dependencies":{"minimatch":"0.2","graceful-fs":"~1.1.2","inherits":"1"},"devDependencies":{"tap":"~0.3","mkdirp":"0","rimraf":"1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"ae3763e6070e6bcdabde7ef11bedec66666b6609","tarball":"https://registry.npmjs.org/glob/-/glob-3.1.13.tgz"},"engines":{"node":"*"}},"3.1.14":{"name":"glob","version":"3.1.14","dependencies":{"minimatch":"0.2","graceful-fs":"~1.1.2","inherits":"1"},"devDependencies":{"tap":"~0.3","mkdirp":"0","rimraf":"1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"f97a731c41da6695dc83944bbb2177e9a29b363d","tarball":"https://registry.npmjs.org/glob/-/glob-3.1.14.tgz"},"engines":{"node":"*"}},"3.1.15":{"name":"glob","version":"3.1.15","dependencies":{"minimatch":"0.2","graceful-fs":"~1.1.2","inherits":"1"},"devDependencies":{"tap":"~0.4.0","mkdirp":"0","rimraf":"1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"9a15a57627d92aeca41ae00bea8eac90452de0b1","tarball":"https://registry.npmjs.org/glob/-/glob-3.1.15.tgz"},"engines":{"node":"*"}},"3.1.16":{"name":"glob","version":"3.1.16","dependencies":{"minimatch":"0.2","graceful-fs":"~1.1.2","inherits":"1"},"devDependencies":{"tap":"~0.4.0","mkdirp":"0","rimraf":"1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"114e8fcfbdbe863ab694110cdcc1cd9b04ddd01e","tarball":"https://registry.npmjs.org/glob/-/glob-3.1.16.tgz"},"engines":{"node":"*"}},"3.1.17":{"name":"glob","version":"3.1.17","dependencies":{"minimatch":"0.2","graceful-fs":"~1.1.2","inherits":"1"},"devDependencies":{"tap":"~0.4.0","mkdirp":"0","rimraf":"1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"7dbe1d6f1e2ef039f6ba681616d39e135892088d","tarball":"https://registry.npmjs.org/glob/-/glob-3.1.17.tgz"},"engines":{"node":"*"}},"3.1.18":{"name":"glob","version":"3.1.18","dependencies":{"minimatch":"0.2","graceful-fs":"~1.2.0","inherits":"1"},"devDependencies":{"tap":"~0.4.0","mkdirp":"0","rimraf":"1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"276a2d773e3d02ef52a4eca2800913cc02208b25","tarball":"https://registry.npmjs.org/glob/-/glob-3.1.18.tgz"},"engines":{"node":"*"}},"3.1.19":{"name":"glob","version":"3.1.19","dependencies":{"minimatch":"0.2","graceful-fs":"~1.2.0","inherits":"1"},"devDependencies":{"tap":"~0.4.0","mkdirp":"0","rimraf":"1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"1fa6031c187d28bf714849bbd75482e9369eb43c","tarball":"https://registry.npmjs.org/glob/-/glob-3.1.19.tgz"},"engines":{"node":"*"}},"3.1.20":{"name":"glob","version":"3.1.20","dependencies":{"minimatch":"0.2","graceful-fs":"~1.2.0","inherits":"1"},"devDependencies":{"tap":"~0.4.0","mkdirp":"0","rimraf":"1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"4de526bcbf870dcf98269ad2afe81055faf21b60","tarball":"https://registry.npmjs.org/glob/-/glob-3.1.20.tgz"},"engines":{"node":"*"}},"3.1.21":{"name":"glob","version":"3.1.21","dependencies":{"minimatch":"~0.2.11","graceful-fs":"~1.2.0","inherits":"1"},"devDependencies":{"tap":"~0.4.0","mkdirp":"0","rimraf":"1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"d29e0a055dea5138f4d07ed40e8982e83c2066cd","tarball":"https://registry.npmjs.org/glob/-/glob-3.1.21.tgz"},"engines":{"node":"*"}},"3.2.0":{"name":"glob","version":"3.2.0","dependencies":{"minimatch":"~0.2.11","graceful-fs":"~1.2.0","inherits":"1"},"devDependencies":{"tap":"~0.4.0","mkdirp":"0","rimraf":"1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"ddec9ac2c56e116f4c340657e2bfe5d7b78b53a3","tarball":"https://registry.npmjs.org/glob/-/glob-3.2.0.tgz"},"engines":{"node":"*"}},"3.2.1":{"name":"glob","version":"3.2.1","dependencies":{"minimatch":"~0.2.11","graceful-fs":"~1.2.0","inherits":"1"},"devDependencies":{"tap":"~0.4.0","mkdirp":"0","rimraf":"1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"57af70ec73ba2323bfe3f29a067765db64c5d758","tarball":"https://registry.npmjs.org/glob/-/glob-3.2.1.tgz"},"engines":{"node":"*"}},"3.2.3":{"name":"glob","version":"3.2.3","dependencies":{"minimatch":"~0.2.11","graceful-fs":"~2.0.0","inherits":"2"},"devDependencies":{"tap":"~0.4.0","mkdirp":"0","rimraf":"1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"e313eeb249c7affaa5c475286b0e115b59839467","tarball":"https://registry.npmjs.org/glob/-/glob-3.2.3.tgz"},"engines":{"node":"*"}},"3.2.4":{"name":"glob","version":"3.2.4","dependencies":{"minimatch":"~0.2.11","inherits":"2"},"devDependencies":{"tap":"~0.4.0","mkdirp":"0","rimraf":"1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"673c00d7a5a80aa6b5e4eb16101f057e111f4122","tarball":"https://registry.npmjs.org/glob/-/glob-3.2.4.tgz"},"engines":{"node":"*"}},"3.2.5":{"name":"glob","version":"3.2.5","dependencies":{"minimatch":"~0.2.11","inherits":"2"},"devDependencies":{"tap":"~0.4.0","mkdirp":"0","rimraf":"1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"341c68efc0d99c1d8d90746d7b57c8de38700d77","tarball":"https://registry.npmjs.org/glob/-/glob-3.2.5.tgz"},"engines":{"node":"*"}},"3.2.6":{"name":"glob","version":"3.2.6","dependencies":{"minimatch":"~0.2.11","inherits":"2"},"devDependencies":{"tap":"~0.4.0","mkdirp":"0","rimraf":"1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"28c805b47bc6c19ba3059cbdf079b98ff62442f2","tarball":"https://registry.npmjs.org/glob/-/glob-3.2.6.tgz"},"engines":{"node":"*"}},"3.2.7":{"name":"glob","version":"3.2.7","dependencies":{"minimatch":"~0.2.11","inherits":"2"},"devDependencies":{"tap":"~0.4.0","mkdirp":"0","rimraf":"1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"275f39a0eee805694790924f36eac38e1db6d802","tarball":"https://registry.npmjs.org/glob/-/glob-3.2.7.tgz"},"engines":{"node":"*"}},"3.2.8":{"name":"glob","version":"3.2.8","dependencies":{"minimatch":"~0.2.11","inherits":"2"},"devDependencies":{"tap":"~0.4.0","mkdirp":"0","rimraf":"1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"5506f4311721bcc618c7d8dba144188750307073","tarball":"https://registry.npmjs.org/glob/-/glob-3.2.8.tgz"},"engines":{"node":"*"}},"3.2.9":{"name":"glob","version":"3.2.9","dependencies":{"minimatch":"~0.2.11","inherits":"2"},"devDependencies":{"tap":"~0.4.0","mkdirp":"0","rimraf":"1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"56af2289aa43d07d7702666480373eb814d91d40","tarball":"https://registry.npmjs.org/glob/-/glob-3.2.9.tgz"},"engines":{"node":"*"}},"3.2.10":{"name":"glob","version":"3.2.10","dependencies":{"inherits":"2","minimatch":"^0.3.0"},"devDependencies":{"tap":"~0.4.0","mkdirp":"0","rimraf":"1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"e229a4d843fdabca3dd8cdc96c456e29c6e79f13","tarball":"https://registry.npmjs.org/glob/-/glob-3.2.10.tgz"},"engines":{"node":"*"}},"3.2.11":{"name":"glob","version":"3.2.11","dependencies":{"inherits":"2","minimatch":"0.3"},"devDependencies":{"tap":"~0.4.0","mkdirp":"0","rimraf":"1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"4a973f635b9190f715d10987d5c00fd2815ebe3d","tarball":"https://registry.npmjs.org/glob/-/glob-3.2.11.tgz"},"engines":{"node":"*"}},"4.0.0":{"name":"glob","version":"4.0.0","dependencies":{"inherits":"2","minimatch":"^0.3.0"},"devDependencies":{"tap":"~0.4.0","mkdirp":"0","rimraf":"1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"63305c37caaef9d977da9a5d2250bf7f56a07c1d","tarball":"https://registry.npmjs.org/glob/-/glob-4.0.0.tgz"},"engines":{"node":"*"}},"4.0.1":{"name":"glob","version":"4.0.1","dependencies":{"inherits":"2","minimatch":"^0.3.0"},"devDependencies":{"tap":"~0.4.0","mkdirp":"0","rimraf":"1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"3fd646db1447a38535e16e39aaba65d08bc59140","tarball":"https://registry.npmjs.org/glob/-/glob-4.0.1.tgz"},"engines":{"node":"*"}},"4.0.2":{"name":"glob","version":"4.0.2","dependencies":{"inherits":"2","minimatch":"^0.3.0","once":"^1.3.0"},"devDependencies":{"tap":"~0.4.0","mkdirp":"0","rimraf":"1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"d57dbdf54984dd7635c8247d1f2ebde2e81f4ee1","tarball":"https://registry.npmjs.org/glob/-/glob-4.0.2.tgz"},"engines":{"node":"*"}},"4.0.3":{"name":"glob","version":"4.0.3","dependencies":{"inherits":"2","minimatch":"^0.3.0","once":"^1.3.0","graceful-fs":"^3.0.2"},"optionalDependencies":{"graceful-fs":"^3.0.2"},"devDependencies":{"tap":"~0.4.0","mkdirp":"0","rimraf":"1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"cb30c860359801cb7d56436976888fc4a09a35db","tarball":"https://registry.npmjs.org/glob/-/glob-4.0.3.tgz"},"engines":{"node":"*"}},"4.0.4":{"name":"glob","version":"4.0.4","dependencies":{"inherits":"2","minimatch":"^0.3.0","once":"^1.3.0","graceful-fs":"^3.0.2"},"optionalDependencies":{"graceful-fs":"^3.0.2"},"devDependencies":{"tap":"~0.4.0","mkdirp":"0","rimraf":"1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"730ce0190d87eca7812398018e21be712b4d69d2","tarball":"https://registry.npmjs.org/glob/-/glob-4.0.4.tgz"},"engines":{"node":"*"}},"4.0.5":{"name":"glob","version":"4.0.5","dependencies":{"inherits":"2","minimatch":"^1.0.0","once":"^1.3.0","graceful-fs":"^3.0.2"},"optionalDependencies":{"graceful-fs":"^3.0.2"},"devDependencies":{"tap":"~0.4.0","mkdirp":"0","rimraf":"1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"95e42c9efdb3ab1f4788fd7793dfded4a3378063","tarball":"https://registry.npmjs.org/glob/-/glob-4.0.5.tgz"},"engines":{"node":"*"}},"4.0.6":{"name":"glob","version":"4.0.6","dependencies":{"graceful-fs":"^3.0.2","inherits":"2","minimatch":"^1.0.0","once":"^1.3.0"},"devDependencies":{"tap":"~0.4.0","mkdirp":"0","rimraf":"1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"695c50bdd4e2fb5c5d370b091f388d3707e291a7","tarball":"https://registry.npmjs.org/glob/-/glob-4.0.6.tgz"},"engines":{"node":"*"}},"4.1.2-beta":{"name":"glob","version":"4.1.2-beta","dependencies":{"graceful-fs":"^3.0.2","inflight":"^1.0.4","inherits":"2","minimatch":"^1.0.0","once":"^1.3.0"},"devDependencies":{"mkdirp":"0","rimraf":"^2.2.8","tap":"~0.4.0","tick":"0.0.6"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"e75800b358138fb78d7b664bbe690d2a0dc5f26b","tarball":"https://registry.npmjs.org/glob/-/glob-4.1.2-beta.tgz"},"engines":{"node":"*"}},"4.1.2":{"name":"glob","version":"4.1.2","dependencies":{"graceful-fs":"^3.0.2","inflight":"^1.0.4","inherits":"2","minimatch":"^1.0.0","once":"^1.3.0"},"devDependencies":{"mkdirp":"0","rimraf":"^2.2.8","tap":"~0.4.0","tick":"0.0.6"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"02f574bfc533ae4c18776014a5070dced4ff25b8","tarball":"https://registry.npmjs.org/glob/-/glob-4.1.2.tgz"},"engines":{"node":"*"}},"4.1.3":{"name":"glob","version":"4.1.3","dependencies":{"graceful-fs":"^3.0.2","inflight":"^1.0.4","inherits":"2","minimatch":"^1.0.0","once":"^1.3.0"},"devDependencies":{"mkdirp":"0","rimraf":"^2.2.8","tap":"~0.4.0","tick":"0.0.6"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"80a6e1cec932cbea7e7188615328327b44ec308d","tarball":"https://registry.npmjs.org/glob/-/glob-4.1.3.tgz"},"engines":{"node":"*"}},"4.1.4":{"name":"glob","version":"4.1.4","dependencies":{"inflight":"^1.0.4","inherits":"2","minimatch":"^1.0.0","once":"^1.3.0"},"devDependencies":{"mkdirp":"0","rimraf":"^2.2.8","tap":"~0.4.0","tick":"0.0.6"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"2277e1ae742f5ca669aaf4d29d40a71f52447a2f","tarball":"https://registry.npmjs.org/glob/-/glob-4.1.4.tgz"},"engines":{"node":"*"}},"4.1.5":{"name":"glob","version":"4.1.5","dependencies":{"inflight":"^1.0.4","inherits":"2","minimatch":"^1.0.0","once":"^1.3.0"},"devDependencies":{"mkdirp":"0","rimraf":"^2.2.8","tap":"~0.4.0","tick":"0.0.6"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"d0bbc943d7fa0409a3450c9f9d6a5d6c4bbb1946","tarball":"https://registry.npmjs.org/glob/-/glob-4.1.5.tgz"},"engines":{"node":"*"}},"4.1.6":{"name":"glob","version":"4.1.6","dependencies":{"inflight":"^1.0.4","inherits":"2","minimatch":"^1.0.0","once":"^1.3.0"},"devDependencies":{"mkdirp":"0","rimraf":"^2.2.8","tap":"~0.4.0","tick":"0.0.6"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"1fc61e950d2bcf99f89db2982c4c1236d320c465","tarball":"https://registry.npmjs.org/glob/-/glob-4.1.6.tgz"},"engines":{"node":"*"}},"4.2.0":{"name":"glob","version":"4.2.0","dependencies":{"inflight":"^1.0.4","inherits":"2","minimatch":"^1.0.0","once":"^1.3.0"},"devDependencies":{"mkdirp":"0","rimraf":"^2.2.8","tap":"~0.4.0","tick":"0.0.6"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"6fdc41c7d23b5028055ecf899229587635b9b689","tarball":"https://registry.npmjs.org/glob/-/glob-4.2.0.tgz"},"engines":{"node":"*"}},"4.2.1":{"name":"glob","version":"4.2.1","dependencies":{"inflight":"^1.0.4","inherits":"2","minimatch":"^1.0.0","once":"^1.3.0"},"devDependencies":{"mkdirp":"0","rimraf":"^2.2.8","tap":"~0.4.0","tick":"0.0.6"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"aa04f06cca652ec724bc16c54cbdd42027d5c9f1","tarball":"https://registry.npmjs.org/glob/-/glob-4.2.1.tgz"},"engines":{"node":"*"}},"4.2.2":{"name":"glob","version":"4.2.2","dependencies":{"inflight":"^1.0.4","inherits":"2","minimatch":"^1.0.0","once":"^1.3.0"},"devDependencies":{"mkdirp":"0","rimraf":"^2.2.8","tap":"~0.4.0","tick":"0.0.6"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"ad2b047653a58c387e15deb43a19497f83fd2a80","tarball":"https://registry.npmjs.org/glob/-/glob-4.2.2.tgz"},"engines":{"node":"*"}},"4.3.0":{"name":"glob","version":"4.3.0","dependencies":{"inflight":"^1.0.4","inherits":"2","minimatch":"^2.0.0","once":"^1.3.0"},"devDependencies":{"mkdirp":"0","rimraf":"^2.2.8","tap":"~0.4.0","tick":"0.0.6"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"f997613c65db52e4118708d1276cfb9383d6fae7","tarball":"https://registry.npmjs.org/glob/-/glob-4.3.0.tgz"},"engines":{"node":"*"}},"4.3.1":{"name":"glob","version":"4.3.1","dependencies":{"inflight":"^1.0.4","inherits":"2","minimatch":"^2.0.1","once":"^1.3.0"},"devDependencies":{"mkdirp":"0","rimraf":"^2.2.8","tap":"~0.4.0","tick":"0.0.6"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"9d09096f89b4d30949e784e83f312af3ca04ec14","tarball":"https://registry.npmjs.org/glob/-/glob-4.3.1.tgz"},"engines":{"node":"*"}},"4.3.2":{"name":"glob","version":"4.3.2","dependencies":{"inflight":"^1.0.4","inherits":"2","minimatch":"^2.0.1","once":"^1.3.0"},"devDependencies":{"mkdirp":"0","rimraf":"^2.2.8","tap":"~0.4.0","tick":"0.0.6"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"351ec7dafc29256b253ad86cd6b48c5a3404b76d","tarball":"https://registry.npmjs.org/glob/-/glob-4.3.2.tgz"},"engines":{"node":"*"}},"4.3.3":{"name":"glob","version":"4.3.3","dependencies":{"inflight":"^1.0.4","inherits":"2","minimatch":"^2.0.1","once":"^1.3.0"},"devDependencies":{"mkdirp":"0","rimraf":"^2.2.8","tap":"~0.4.0","tick":"0.0.6"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"6e9caf6594d61ce49a3f0ac2c7ad7c73f07afbff","tarball":"https://registry.npmjs.org/glob/-/glob-4.3.3.tgz"},"engines":{"node":"*"}},"4.3.4":{"name":"glob","version":"4.3.4","dependencies":{"inflight":"^1.0.4","inherits":"2","minimatch":"^2.0.1","once":"^1.3.0"},"devDependencies":{"mkdirp":"0","rimraf":"^2.2.8","tap":"~0.4.0","tick":"0.0.6"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"97f3fca7200e6b369653ce4f68b894882cd6f44b","tarball":"https://registry.npmjs.org/glob/-/glob-4.3.4.tgz"},"engines":{"node":"*"}},"4.3.5":{"name":"glob","version":"4.3.5","dependencies":{"inflight":"^1.0.4","inherits":"2","minimatch":"^2.0.1","once":"^1.3.0"},"devDependencies":{"mkdirp":"0","rimraf":"^2.2.8","tap":"^0.5.0","tick":"0.0.6"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"80fbb08ca540f238acce5d11d1e9bc41e75173d3","tarball":"https://registry.npmjs.org/glob/-/glob-4.3.5.tgz"},"engines":{"node":"*"}},"4.4.0":{"name":"glob","version":"4.4.0","dependencies":{"inflight":"^1.0.4","inherits":"2","minimatch":"^2.0.1","once":"^1.3.0"},"devDependencies":{"mkdirp":"0","rimraf":"^2.2.8","tap":"^0.5.0","tick":"0.0.6"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"91d63dc1ed1d82b52ba2cb76044852ccafc2130f","tarball":"https://registry.npmjs.org/glob/-/glob-4.4.0.tgz"},"engines":{"node":"*"}},"4.4.2":{"name":"glob","version":"4.4.2","dependencies":{"inflight":"^1.0.4","inherits":"2","minimatch":"^2.0.1","once":"^1.3.0"},"devDependencies":{"mkdirp":"0","rimraf":"^2.2.8","tap":"^0.5.0","tick":"0.0.6"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"3ef93e297ee096c1b9b3ffb1d21025c78ab60548","tarball":"https://registry.npmjs.org/glob/-/glob-4.4.2.tgz"},"engines":{"node":"*"}},"4.5.0":{"name":"glob","version":"4.5.0","dependencies":{"inflight":"^1.0.4","inherits":"2","minimatch":"^2.0.1","once":"^1.3.0"},"devDependencies":{"mkdirp":"0","rimraf":"^2.2.8","tap":"^0.5.0","tick":"0.0.6"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"d6511322e9d5c9bc689f20eb7348f00489723882","tarball":"https://registry.npmjs.org/glob/-/glob-4.5.0.tgz"},"engines":{"node":"*"}},"5.0.0":{"name":"glob","version":"5.0.0","dependencies":{"inflight":"^1.0.4","inherits":"2","minimatch":"^2.0.1","once":"^1.3.0"},"devDependencies":{"mkdirp":"0","rimraf":"^2.2.8","tap":"^0.5.0","tick":"0.0.6"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"bb00d4e340932eb101dc2a30e4127ddd51ed15ed","tarball":"https://registry.npmjs.org/glob/-/glob-5.0.0.tgz"},"engines":{"node":"*"}},"4.5.1":{"name":"glob","version":"4.5.1","dependencies":{"inflight":"^1.0.4","inherits":"2","minimatch":"^2.0.1","once":"^1.3.0"},"devDependencies":{"mkdirp":"0","rimraf":"^2.2.8","tap":"^0.5.0","tick":"0.0.6"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"a5c7c6407ad7a8d272041c8102420790a45a65cb","tarball":"https://registry.npmjs.org/glob/-/glob-4.5.1.tgz"},"engines":{"node":"*"}},"5.0.1":{"name":"glob","version":"5.0.1","dependencies":{"inflight":"^1.0.4","inherits":"2","minimatch":"^2.0.1","once":"^1.3.0"},"devDependencies":{"mkdirp":"0","rimraf":"^2.2.8","tap":"^0.5.0","tick":"0.0.6"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"523a401ab9397f71b0ee4f25d72f20cbc1a15691","tarball":"https://registry.npmjs.org/glob/-/glob-5.0.1.tgz"},"engines":{"node":"*"}},"4.5.2":{"name":"glob","version":"4.5.2","dependencies":{"inflight":"^1.0.4","inherits":"2","minimatch":"^2.0.1","once":"^1.3.0"},"devDependencies":{"mkdirp":"0","rimraf":"^2.2.8","tap":"^0.5.0","tick":"0.0.6"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"1204118bab03289c654f8badaede29b52e07cdb4","tarball":"https://registry.npmjs.org/glob/-/glob-4.5.2.tgz"},"engines":{"node":"*"}},"5.0.2":{"name":"glob","version":"5.0.2","dependencies":{"inflight":"^1.0.4","inherits":"2","minimatch":"^2.0.1","once":"^1.3.0"},"devDependencies":{"mkdirp":"0","rimraf":"^2.2.8","tap":"^0.5.0","tick":"0.0.6"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"78ac7605fae5e739677af57bee0483269ff641c4","tarball":"https://registry.npmjs.org/glob/-/glob-5.0.2.tgz"},"engines":{"node":"*"}},"4.5.3":{"name":"glob","version":"4.5.3","dependencies":{"inflight":"^1.0.4","inherits":"2","minimatch":"^2.0.1","once":"^1.3.0"},"devDependencies":{"mkdirp":"0","rimraf":"^2.2.8","tap":"^0.5.0","tick":"0.0.6"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"c6cb73d3226c1efef04de3c56d012f03377ee15f","tarball":"https://registry.npmjs.org/glob/-/glob-4.5.3.tgz"},"engines":{"node":"*"}},"5.0.3":{"name":"glob","version":"5.0.3","dependencies":{"inflight":"^1.0.4","inherits":"2","minimatch":"^2.0.1","once":"^1.3.0"},"devDependencies":{"mkdirp":"0","rimraf":"^2.2.8","tap":"^0.5.0","tick":"0.0.6"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"15528c1c727e474a8e7731541c00b00ec802952d","tarball":"https://registry.npmjs.org/glob/-/glob-5.0.3.tgz"},"engines":{"node":"*"}},"5.0.4":{"name":"glob","version":"5.0.4","dependencies":{"inflight":"^1.0.4","inherits":"2","minimatch":"^2.0.1","once":"^1.3.0","path-is-absolute":"^1.0.0"},"devDependencies":{"mkdirp":"0","rimraf":"^2.2.8","tap":"^0.5.0","tick":"0.0.6"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"084cf799baba0970be616911ed57f14d515d0673","tarball":"https://registry.npmjs.org/glob/-/glob-5.0.4.tgz"},"engines":{"node":"*"}},"5.0.5":{"name":"glob","version":"5.0.5","dependencies":{"inflight":"^1.0.4","inherits":"2","minimatch":"^2.0.1","once":"^1.3.0","path-is-absolute":"^1.0.0"},"devDependencies":{"mkdirp":"0","rimraf":"^2.2.8","tap":"^0.5.0","tick":"0.0.6"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"784431e4e29a900ae0d47fba6aa1c7f16a8e7df7","tarball":"https://registry.npmjs.org/glob/-/glob-5.0.5.tgz"},"engines":{"node":"*"}},"5.0.6":{"name":"glob","version":"5.0.6","dependencies":{"inflight":"^1.0.4","inherits":"2","minimatch":"^2.0.1","once":"^1.3.0","path-is-absolute":"^1.0.0"},"devDependencies":{"mkdirp":"0","rimraf":"^2.2.8","tap":"^1.0.3","tick":"0.0.6"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"51f1377c8d5ba36015997655d22bd7d20246accd","tarball":"https://registry.npmjs.org/glob/-/glob-5.0.6.tgz"},"engines":{"node":"*"}},"5.0.7":{"name":"glob","version":"5.0.7","dependencies":{"inflight":"^1.0.4","inherits":"2","minimatch":"^2.0.1","once":"^1.3.0","path-is-absolute":"^1.0.0"},"devDependencies":{"mkdirp":"0","rimraf":"^2.2.8","tap":"^1.0.3","tick":"0.0.6"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"9748021208e3fd7c3bcc7167ddbd2f1f94676a43","tarball":"https://registry.npmjs.org/glob/-/glob-5.0.7.tgz"},"engines":{"node":"*"}},"5.0.9":{"name":"glob","version":"5.0.9","dependencies":{"inflight":"^1.0.4","inherits":"2","minimatch":"^2.0.1","once":"^1.3.0","path-is-absolute":"^1.0.0"},"devDependencies":{"mkdirp":"0","rimraf":"^2.2.8","tap":"^1.1.0","tick":"0.0.6"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"79d1051c65b75020c00d449aa3d242e1ab0aee78","tarball":"https://registry.npmjs.org/glob/-/glob-5.0.9.tgz"},"engines":{"node":"*"}},"5.0.10":{"name":"glob","version":"5.0.10","dependencies":{"inflight":"^1.0.4","inherits":"2","minimatch":"^2.0.1","once":"^1.3.0","path-is-absolute":"^1.0.0"},"devDependencies":{"mkdirp":"0","rimraf":"^2.2.8","tap":"^1.1.4","tick":"0.0.6"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"3ee350319f31f352cef6899a48f6b6b7834c6899","tarball":"https://registry.npmjs.org/glob/-/glob-5.0.10.tgz"},"engines":{"node":"*"}},"5.0.11":{"name":"glob","version":"5.0.11","dependencies":{"inflight":"^1.0.4","inherits":"2","minimatch":"^2.0.1","once":"^1.3.0","path-is-absolute":"^1.0.0"},"devDependencies":{"mkdirp":"0","rimraf":"^2.2.8","tap":"^1.1.4","tick":"0.0.6"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"ce1756b16ce00d804d8a890ab0951bd07cf0d2ae","tarball":"https://registry.npmjs.org/glob/-/glob-5.0.11.tgz"},"engines":{"node":"*"}},"5.0.12":{"name":"glob","version":"5.0.12","dependencies":{"inflight":"^1.0.4","inherits":"2","minimatch":"^2.0.1","once":"^1.3.0","path-is-absolute":"^1.0.0"},"devDependencies":{"mkdirp":"0","rimraf":"^2.2.8","tap":"^1.1.4","tick":"0.0.6"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"3861d827ae59ff38d206eb096659fb0800acee27","tarball":"https://registry.npmjs.org/glob/-/glob-5.0.12.tgz"},"engines":{"node":"*"}},"5.0.13":{"name":"glob","version":"5.0.13","dependencies":{"inflight":"^1.0.4","inherits":"2","minimatch":"^2.0.1","once":"^1.3.0","path-is-absolute":"^1.0.0"},"devDependencies":{"mkdirp":"0","rimraf":"^2.2.8","tap":"^1.1.4","tick":"0.0.6"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"0b6ffc3ac64eb90669f723a00a0ebb7281b33f8f","tarball":"https://registry.npmjs.org/glob/-/glob-5.0.13.tgz"},"engines":{"node":"*"}},"5.0.14":{"name":"glob","version":"5.0.14","dependencies":{"inflight":"^1.0.4","inherits":"2","minimatch":"^2.0.1","once":"^1.3.0","path-is-absolute":"^1.0.0"},"devDependencies":{"mkdirp":"0","rimraf":"^2.2.8","tap":"^1.1.4","tick":"0.0.6"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"a811d507acb605441edd6cd2622a3c6f06cc00e1","tarball":"https://registry.npmjs.org/glob/-/glob-5.0.14.tgz"},"engines":{"node":"*"}},"5.0.15":{"name":"glob","version":"5.0.15","dependencies":{"inflight":"^1.0.4","inherits":"2","minimatch":"2 || 3","once":"^1.3.0","path-is-absolute":"^1.0.0"},"devDependencies":{"mkdirp":"0","rimraf":"^2.2.8","tap":"^1.1.4","tick":"0.0.6"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"1bc936b9e02f4a603fcc222ecf7633d30b8b93b1","tarball":"https://registry.npmjs.org/glob/-/glob-5.0.15.tgz"},"engines":{"node":"*"}},"6.0.1":{"name":"glob","version":"6.0.1","dependencies":{"inflight":"^1.0.4","inherits":"2","minimatch":"2 || 3","once":"^1.3.0","path-is-absolute":"^1.0.0"},"devDependencies":{"mkdirp":"0","rimraf":"^2.2.8","tap":"^1.1.4","tick":"0.0.6"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"16a89b94ac361b2a670a0a141a21ad51b438d21d","tarball":"https://registry.npmjs.org/glob/-/glob-6.0.1.tgz"},"engines":{"node":"*"}},"6.0.2":{"name":"glob","version":"6.0.2","dependencies":{"inflight":"^1.0.4","inherits":"2","minimatch":"2 || 3","once":"^1.3.0","path-is-absolute":"^1.0.0"},"devDependencies":{"mkdirp":"0","rimraf":"^2.2.8","tap":"^1.1.4","tick":"0.0.6"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"4bfaf2d6f1d89a3d95e9d4660bd88faccce00565","tarball":"https://registry.npmjs.org/glob/-/glob-6.0.2.tgz"},"engines":{"node":"*"}},"6.0.3":{"name":"glob","version":"6.0.3","dependencies":{"inflight":"^1.0.4","inherits":"2","minimatch":"2 || 3","once":"^1.3.0","path-is-absolute":"^1.0.0"},"devDependencies":{"mkdirp":"0","rimraf":"^2.2.8","tap":"^1.1.4","tick":"0.0.6"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"5f02cd89587ce58b154ae0855de02a2e63986fca","tarball":"https://registry.npmjs.org/glob/-/glob-6.0.3.tgz"},"engines":{"node":"*"}},"6.0.4":{"name":"glob","version":"6.0.4","dependencies":{"inflight":"^1.0.4","inherits":"2","minimatch":"2 || 3","once":"^1.3.0","path-is-absolute":"^1.0.0"},"devDependencies":{"mkdirp":"0","rimraf":"^2.2.8","tap":"^5.0.0","tick":"0.0.6"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"0f08860f6a155127b2fadd4f9ce24b1aab6e4d22","tarball":"https://registry.npmjs.org/glob/-/glob-6.0.4.tgz"},"engines":{"node":"*"}},"7.0.0":{"name":"glob","version":"7.0.0","dependencies":{"inflight":"^1.0.4","inherits":"2","minimatch":"2 || 3","once":"^1.3.0","path-is-absolute":"^1.0.0"},"devDependencies":{"mkdirp":"0","rimraf":"^2.2.8","tap":"^5.0.0","tick":"0.0.6"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"3b20a357fffcf46bb384aed6f8ae9a647fdb6ac4","tarball":"https://registry.npmjs.org/glob/-/glob-7.0.0.tgz"},"engines":{"node":"*"}},"7.0.1":{"name":"glob","version":"7.0.1","dependencies":{"inflight":"^1.0.4","inherits":"2","minimatch":"2 || 3","once":"^1.3.0","path-is-absolute":"^1.0.0"},"devDependencies":{"mkdirp":"0","rimraf":"^2.2.8","tap":"^5.0.0","tick":"0.0.6"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"2bc2492088dd0e0da9b5b095d85978c86c2db52a","tarball":"https://registry.npmjs.org/glob/-/glob-7.0.1.tgz"},"engines":{"node":"*"}},"7.0.3":{"name":"glob","version":"7.0.3","dependencies":{"inflight":"^1.0.4","inherits":"2","minimatch":"2 || 3","once":"^1.3.0","path-is-absolute":"^1.0.0"},"devDependencies":{"mkdirp":"0","rimraf":"^2.2.8","tap":"^5.7.0","tick":"0.0.6"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"0aa235931a4a96ac13d60ffac2fb877bd6ed4f58","tarball":"https://registry.npmjs.org/glob/-/glob-7.0.3.tgz"},"engines":{"node":"*"}},"7.0.4":{"name":"glob","version":"7.0.4","dependencies":{"fs.realpath":"^1.0.0","inflight":"^1.0.4","inherits":"2","minimatch":"2 || 3","once":"^1.3.0","path-is-absolute":"^1.0.0"},"devDependencies":{"mkdirp":"0","rimraf":"^2.2.8","tap":"^5.7.0","tick":"0.0.6"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"3b44afa0943bdc31b2037b934791e2e084bcb7f6","tarball":"https://registry.npmjs.org/glob/-/glob-7.0.4.tgz"},"engines":{"node":"*"}},"7.0.5":{"name":"glob","version":"7.0.5","dependencies":{"fs.realpath":"^1.0.0","inflight":"^1.0.4","inherits":"2","minimatch":"^3.0.2","once":"^1.3.0","path-is-absolute":"^1.0.0"},"devDependencies":{"mkdirp":"0","rimraf":"^2.2.8","tap":"^5.7.0","tick":"0.0.6"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"b4202a69099bbb4d292a7c1b95b6682b67ebdc95","tarball":"https://registry.npmjs.org/glob/-/glob-7.0.5.tgz"},"engines":{"node":"*"}},"7.0.6":{"name":"glob","version":"7.0.6","dependencies":{"fs.realpath":"^1.0.0","inflight":"^1.0.4","inherits":"2","minimatch":"^3.0.2","once":"^1.3.0","path-is-absolute":"^1.0.0"},"devDependencies":{"mkdirp":"0","rimraf":"^2.2.8","tap":"^5.7.0","tick":"0.0.6"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"211bafaf49e525b8cd93260d14ab136152b3f57a","tarball":"https://registry.npmjs.org/glob/-/glob-7.0.6.tgz"},"engines":{"node":"*"}},"7.1.0":{"name":"glob","version":"7.1.0","dependencies":{"fs.realpath":"^1.0.0","inflight":"^1.0.4","inherits":"2","minimatch":"^3.0.2","once":"^1.3.0","path-is-absolute":"^1.0.0"},"devDependencies":{"mkdirp":"0","rimraf":"^2.2.8","tap":"^7.1.2","tick":"0.0.6"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"36add856d746d0d99e4cc2797bba1ae2c67272fd","tarball":"https://registry.npmjs.org/glob/-/glob-7.1.0.tgz"},"engines":{"node":"*"}},"7.1.1":{"name":"glob","version":"7.1.1","dependencies":{"fs.realpath":"^1.0.0","inflight":"^1.0.4","inherits":"2","minimatch":"^3.0.2","once":"^1.3.0","path-is-absolute":"^1.0.0"},"devDependencies":{"mkdirp":"0","rimraf":"^2.2.8","tap":"^7.1.2","tick":"0.0.6"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"805211df04faaf1c63a3600306cdf5ade50b2ec8","tarball":"https://registry.npmjs.org/glob/-/glob-7.1.1.tgz"},"engines":{"node":"*"}},"7.1.2":{"name":"glob","version":"7.1.2","dependencies":{"fs.realpath":"^1.0.0","inflight":"^1.0.4","inherits":"2","minimatch":"^3.0.4","once":"^1.3.0","path-is-absolute":"^1.0.0"},"devDependencies":{"mkdirp":"0","rimraf":"^2.2.8","tap":"^7.1.2","tick":"0.0.6"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==","shasum":"c19c9df9a028702d678612384a6552404c636d15","tarball":"https://registry.npmjs.org/glob/-/glob-7.1.2.tgz"},"engines":{"node":"*"}},"7.1.3":{"name":"glob","version":"7.1.3","dependencies":{"fs.realpath":"^1.0.0","inflight":"^1.0.4","inherits":"2","minimatch":"^3.0.4","once":"^1.3.0","path-is-absolute":"^1.0.0"},"devDependencies":{"mkdirp":"0","rimraf":"^2.2.8","tap":"^12.0.1","tick":"0.0.6"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ==","shasum":"3960832d3f1574108342dafd3a67b332c0969df1","tarball":"https://registry.npmjs.org/glob/-/glob-7.1.3.tgz","fileCount":7,"unpackedSize":55475,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbg4aBCRA9TVsSAnZWagAAFakQAJEEhQHnRwq2gcIVYfKv\nwVy9B0fSM6X2ezWpDOHPL6XiHV71AmvyTp3zVXYJctBG5hvyQFsgxtkCpwnt\n7AI+NzIa71tV1IIwkeRaW8jdjROKUg3AWdB/9TDwuJOW0ecyyguDPFfgc4Li\nNBA8lAubQKuFEYuv0zlkFbKM0ApfV9IDveTBjSN7gFaG/1FiNyrWhBe2h95M\nNGWGSlswJxNm9d7S8XtpuiBJckpbfnKni1MCgTN+0P0xlXZqhGozrHdULm2N\nAGTaOTyQKgJ1pN/8BVBP+xi88YKXeEQPptxF/SEdOni/NJqgnr+2Rue973yc\nYswdegLnPGvoUX0c9sP9Q7rGdl1N4o+j6Tc3r+s4leP3QMK6t0wUE/4RYLCm\nPKyNtHBID3cqo9EkjXp6s19W2ZnizlEWz9hIE6IfaQrRJdcW+6gCaU8eDGWQ\nIWA35PCdxrYsi2PTuPUXP1Ly+neqmjYuR8/MxH+FPZKWi8kobGFLaABb/CTy\nbq5JYDXAkww9a/G8VWQAjwaCCgXYqO0jjw10/Jp67a6XyJDNTzzK3hGs+CB9\nFXe/0lgn1el8PTBBXPZpNSAVA1FNtbnB9ZybsF0SYBsDV3YgDFoazG/OXvHG\nb5czE2492OGCjvQFrD/6hwr9umzu9efovdPG4IlolFx9gTngy2cIy8Lu08Vs\nrQef\r\n=zCIk\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":"*"}}},"name":"glob","dist-tags":{"latest":"7.1.3","legacy":"4.5.3"},"modified":"2018-08-27T05:05:07.669Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/b9/15/ad28572944d8b94f306ace9c6c25efc30376e0fb6be701f324b97ae88185a7f08ed24a5939d04f41045140fe824cd40f59cf9d570148ecaf288a6548dc3b b/npm/.npm/_cacache/content-v2/sha512/b9/15/ad28572944d8b94f306ace9c6c25efc30376e0fb6be701f324b97ae88185a7f08ed24a5939d04f41045140fe824cd40f59cf9d570148ecaf288a6548dc3b new file mode 100644 index 0000000..f0911b9 --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/b9/15/ad28572944d8b94f306ace9c6c25efc30376e0fb6be701f324b97ae88185a7f08ed24a5939d04f41045140fe824cd40f59cf9d570148ecaf288a6548dc3b @@ -0,0 +1 @@ +{"versions":{"1.0.0":{"name":"load-json-file","version":"1.0.0","dependencies":{"graceful-fs":"^4.1.2","parse-json":"^2.2.0","pify":"^1.1.0","pinkie-promise":"^1.0.0","strip-bom":"^2.0.0"},"devDependencies":{"ava":"*","xo":"*"},"directories":{},"dist":{"shasum":"2c73a18a5f862dece86e85225815ac512ff97c63","tarball":"http://registry.npmjs.org/load-json-file/-/load-json-file-1.0.0.tgz"},"engines":{"node":">=0.10.0"}},"1.0.1":{"name":"load-json-file","version":"1.0.1","dependencies":{"graceful-fs":"^4.1.2","parse-json":"^2.2.0","pify":"^2.0.0","pinkie-promise":"^1.0.0","strip-bom":"^2.0.0"},"devDependencies":{"ava":"*","xo":"*"},"directories":{},"dist":{"shasum":"d24e14be27f68a6aec0f82365b23e1014603fc19","tarball":"http://registry.npmjs.org/load-json-file/-/load-json-file-1.0.1.tgz"},"engines":{"node":">=0.10.0"}},"1.1.0":{"name":"load-json-file","version":"1.1.0","dependencies":{"graceful-fs":"^4.1.2","parse-json":"^2.2.0","pify":"^2.0.0","pinkie-promise":"^2.0.0","strip-bom":"^2.0.0"},"devDependencies":{"ava":"*","xo":"*"},"directories":{},"dist":{"shasum":"956905708d58b4bab4c2261b04f59f31c99374c0","tarball":"http://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz"},"engines":{"node":">=0.10.0"}},"2.0.0":{"name":"load-json-file","version":"2.0.0","dependencies":{"graceful-fs":"^4.1.2","parse-json":"^2.2.0","pify":"^2.0.0","strip-bom":"^3.0.0"},"devDependencies":{"ava":"*","xo":"*"},"directories":{},"dist":{"shasum":"7947e42149af80d696cbf797bcaabcfe1fe29ca8","tarball":"http://registry.npmjs.org/load-json-file/-/load-json-file-2.0.0.tgz"},"engines":{"node":">=4"}},"3.0.0":{"name":"load-json-file","version":"3.0.0","dependencies":{"graceful-fs":"^4.1.2","parse-json":"^3.0.0","pify":"^2.0.0","strip-bom":"^3.0.0"},"devDependencies":{"ava":"*","xo":"*"},"directories":{},"dist":{"shasum":"7eb3735d983a7ed2262ade4ff769af5369c5c440","tarball":"https://registry.npmjs.org/load-json-file/-/load-json-file-3.0.0.tgz"},"engines":{"node":">=4"}},"4.0.0":{"name":"load-json-file","version":"4.0.0","dependencies":{"graceful-fs":"^4.1.2","parse-json":"^4.0.0","pify":"^3.0.0","strip-bom":"^3.0.0"},"devDependencies":{"ava":"*","xo":"*"},"directories":{},"dist":{"shasum":"2f5f45ab91e33216234fd53adab668eb4ec0993b","tarball":"https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz"},"engines":{"node":">=4"}},"5.0.0":{"name":"load-json-file","version":"5.0.0","dependencies":{"graceful-fs":"^4.1.2","parse-json":"^4.0.0","pify":"^3.0.0","strip-bom":"^3.0.0"},"devDependencies":{"ava":"*","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-wWRJeA/YQ2s53fBSrPrr6gnSKmNcnk4TV4c40ITRGQ4uxpgPddBL9xNh3WxPjJHewwzo2rFkEJWt87OR/35MEw==","shasum":"5b5ef7cb6e1e337408e02fe01fe679ccc0cd18d5","tarball":"https://registry.npmjs.org/load-json-file/-/load-json-file-5.0.0.tgz","fileCount":4,"unpackedSize":3779,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa7reLCRA9TVsSAnZWagAAlT8P+waQvMXX4Rn6c4cWeS9B\nwzfp3NmStowq6nj5YaZfDhQxuQJ3Bi+LnLiA5hTNezZk4ihMPpk2w68JSeFL\nubTFlaAI9sRnUBSVATh3LzWgArOWgde4wvGGwHb4hAZ1wSUWFnfFxPl/Fh2i\n3PPyUd5mCqVvyWggN2uzm/skngmR8ISkSXgrhRo3zRtgPZnKIK8ucZKKfwiN\nua46ubSdbbqtiWA7gc2uWbXQx5qvkkSFoMz0TLHHtjyx5KjvLU7E6U8QTbG6\nFMAxNKIV4y0srAQF1+rs4f0KfsIKkO0jqJpG1v6SLYuRjtsRdeunCVGBK6dg\nqcF4c+2H+0lgyTAXbBhFGzWq6k/xCLUKVrYTbT7//AUodU07jyuAmkLT3mzb\nbVxaZq4Zeg9RZI5uv0ycGELRuMjFvApL6iFtzBlst24UZR4ok2iYqQo14t4t\nqY1VDP3s+1NYH7me+Rz4TXGrvSOTEovVC+sUKncXeEh8FJSuKeDeFzT1654x\nb2nQG5y7p2vgT0umeL5xlbRKfymDhWNBH0Ioua2T049nnPoc+QoJOyBuvZca\nzdK62A3Xzozz8ZfFrfbhjdgsjRxCaU7qcYjOKU3LMA2vYolziCKMKJAOIJ/K\nXUZS2GB9cyZ6pSdRoC0p/JjxZAAluXH5f3XTtaFZlDYIb+F6qG+zBs3dlCRG\nLNSF\r\n=uCMo\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=6"}},"5.1.0":{"name":"load-json-file","version":"5.1.0","dependencies":{"graceful-fs":"^4.1.2","parse-json":"^4.0.0","pify":"^3.0.0","strip-bom":"^3.0.0"},"devDependencies":{"ava":"*","tsd-check":"^0.2.1","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-+ggO8OpTviHQ/zoyFxLJglsu1CylXUt1vpGa+mIUeesCkTC0G+JO6rdTS1/WcGBZDC7Nejo1aZ9MxbqflpmO6Q==","shasum":"c062f048e0ee556bf7f535bb16f6e45bb9d06b18","tarball":"https://registry.npmjs.org/load-json-file/-/load-json-file-5.1.0.tgz","fileCount":5,"unpackedSize":5150,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJboIt1CRA9TVsSAnZWagAA5NcQAJo9TeSccsA2CJhMgzQ+\n1dy4kSwRO/U1F1V5qttLqFn1ow3cN2Zencc/McNAjayVoAkaIGK/Dvm1pCjx\nJc2laICjaLGfGpUdxSz0cUQp29TjFAVr91HpijV0rANV5enDeY1R/d+YNDT8\nnqPhBzUIKEZ7qJKimlcCSgm2sxM6ZqHTqzrIGflTDr34Y6jHr0nfteZcyuKC\n2HLRGLP48h21wilZ+9FZ1WWKEGjc/F9zUZ3vYjbqa7Rqg6+tdlzY4sh85u1N\n0HW20R5hbjcLTGSPq2kcMZnLIPCUU3TeA3rval3h/R7cmSpTypU/VKJZTjRG\nAqR2nSAR7/36aJyzdDKhmmdy8mcK2r7sn/kx3RkWejz4a8MHmj2n+2SDeMG7\nJg4qOEVFXHnY5Ioq/f8X0hS902H9wrf8+FplMYPKUKmQ6RIqpv/q6AUUYKZH\nkLS3M01yB2bYxUaIexC1py+zlSIQV6yL6ElaAANo4JAhi/W+zR2xw1pHmMr3\nrIsYI3ed5BU2fRpps7sBCpFcfGD8kKt8AlgOVWZ9GTHl2U6d/fYMaFOa9LF7\nkIupMMfCHBXV+bkYai9G6k/Xe+iqYA6gGuSr5HeNX2x0P8/384zGNJvqGHVP\nsQgbm9vk12vP8GdGBlCLh/J4mWsH+IV2GMcHCXMKQBmVWhSRFQODakfxyAEx\nBfrc\r\n=oBry\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=6"}}},"name":"load-json-file","dist-tags":{"latest":"5.1.0"},"modified":"2018-09-18T05:22:00.181Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/bb/7a/d5a0651c0f173be6fed91ec05ea3050fb250a7cb5744840778997a611d8a53748f6d79ca41033da0d5ab4efe3633439bf92a344489aaba1a886946e714a8 b/npm/.npm/_cacache/content-v2/sha512/bb/7a/d5a0651c0f173be6fed91ec05ea3050fb250a7cb5744840778997a611d8a53748f6d79ca41033da0d5ab4efe3633439bf92a344489aaba1a886946e714a8 new file mode 100644 index 0000000..1b8630d --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/bb/7a/d5a0651c0f173be6fed91ec05ea3050fb250a7cb5744840778997a611d8a53748f6d79ca41033da0d5ab4efe3633439bf92a344489aaba1a886946e714a8 @@ -0,0 +1 @@ +{"versions":{"1.0.0":{"name":"parse-json","version":"1.0.0","dependencies":{"cb2promise":"~1.0.0","ensure-async":"~1.0.0","errorifier":"~0.1.3"},"devDependencies":{"browserify":"*","coffee-script":"*","coffeeify":"*","gulp":"*","gulp-header":"*","gulp-uglify":"*","gulp-util":"*","mocha":"*","should":"*","vinyl-buffer":"*","vinyl-source-stream":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"d2b2abb5b86bb36fb50f3835a040109c5a3c9c37","tarball":"https://registry.npmjs.org/parse-json/-/parse-json-1.0.0.tgz"},"engines":{"node":">= 0.10.0","npm":">= 1.4.0"},"deprecated":"renamed into 'json-parse-async', use it better!"},"1.0.1":{"name":"parse-json","version":"1.0.1","dependencies":{"cb2promise":"~1.0.0","ensure-async":"~1.0.0","errorifier":"~0.1.3"},"devDependencies":{"browserify":"*","coffee-script":"*","coffeeify":"*","gulp":"*","gulp-header":"*","gulp-uglify":"*","gulp-util":"*","mocha":"*","should":"*","vinyl-buffer":"*","vinyl-source-stream":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"6fc95f7ba8d60a58ac4cd9ea8ec88374e85987e9","tarball":"https://registry.npmjs.org/parse-json/-/parse-json-1.0.1.tgz"},"engines":{"node":">= 0.10.0","npm":">= 1.4.0"},"deprecated":"renamed into 'json-parse-async', use it better!"},"2.0.0":{"name":"parse-json","version":"2.0.0","devDependencies":{"ava":"0.0.4","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"e59e30d2642041e9a359c99613c476b1133ca428","tarball":"https://registry.npmjs.org/parse-json/-/parse-json-2.0.0.tgz"},"engines":{"node":">=0.10.0"}},"2.1.0":{"name":"parse-json","version":"2.1.0","dependencies":{"error-ex":"^1.1.0"},"devDependencies":{"ava":"0.0.4","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"7125b5f3f679b3d1d5c7fc4cd561cc1f4576aacc","tarball":"https://registry.npmjs.org/parse-json/-/parse-json-2.1.0.tgz"},"engines":{"node":">=0.10.0"}},"2.2.0":{"name":"parse-json","version":"2.2.0","dependencies":{"error-ex":"^1.2.0"},"devDependencies":{"ava":"0.0.4","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"f480f40434ef80741f8469099f8dea18f55a4dc9","tarball":"https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz"},"engines":{"node":">=0.10.0"}},"3.0.0":{"name":"parse-json","version":"3.0.0","dependencies":{"error-ex":"^1.3.1"},"devDependencies":{"ava":"*","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"fa6f47b18e23826ead32f263e744d0e1e847fb13","tarball":"https://registry.npmjs.org/parse-json/-/parse-json-3.0.0.tgz"},"engines":{"node":">=4"}},"4.0.0":{"name":"parse-json","version":"4.0.0","dependencies":{"error-ex":"^1.3.1","json-parse-better-errors":"^1.0.1"},"devDependencies":{"ava":"*","nyc":"^11.2.1","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"be35f5425be1f7f6c747184f98a788cb99477ee0","tarball":"https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz"},"engines":{"node":">=4"}}},"name":"parse-json","dist-tags":{"latest":"4.0.0"},"modified":"2018-02-05T20:10:38.389Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/bb/f9/965a7fcd096a016f9b93b29e5728a14f742d191adf36af74bf15c8723f71cbb4ffae87d6d05e6c464d3d1d2caad1e48b014a073d4e045b53aadff5ef8327 b/npm/.npm/_cacache/content-v2/sha512/bb/f9/965a7fcd096a016f9b93b29e5728a14f742d191adf36af74bf15c8723f71cbb4ffae87d6d05e6c464d3d1d2caad1e48b014a073d4e045b53aadff5ef8327 new file mode 100644 index 0000000..2c053d0 --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/bb/f9/965a7fcd096a016f9b93b29e5728a14f742d191adf36af74bf15c8723f71cbb4ffae87d6d05e6c464d3d1d2caad1e48b014a073d4e045b53aadff5ef8327 @@ -0,0 +1 @@ +{"versions":{"1.0.0":{"name":"loud-rejection","version":"1.0.0","devDependencies":{"ava":"*","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"d7da07377ebe8c769c9a9dff42b226b085e83246","tarball":"https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.0.0.tgz"},"engines":{"node":">=0.10.0"}},"1.1.0":{"name":"loud-rejection","version":"1.1.0","dependencies":{"signal-exit":"^2.1.2"},"devDependencies":{"ava":"*","bluebird":"^3.0.5","coveralls":"^2.11.4","get-stream":"^1.0.0","nyc":"^3.2.2","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"0957bc749f83232d9dbe14739d98df4657bf1890","tarball":"https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.1.0.tgz"},"engines":{"node":">=0.10.0"}},"1.2.0":{"name":"loud-rejection","version":"1.2.0","dependencies":{"signal-exit":"^2.1.2"},"devDependencies":{"ava":"*","bluebird":"^3.0.5","coveralls":"^2.11.4","delay":"^1.0.0","get-stream":"^1.0.0","nyc":"^3.2.2","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"f4f87db6abec3b7fe47834531ecf6a011143e58d","tarball":"https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.2.0.tgz"},"engines":{"node":">=0.10.0"}},"1.2.1":{"name":"loud-rejection","version":"1.2.1","dependencies":{"array-find-index":"^1.0.0","signal-exit":"^2.1.2"},"devDependencies":{"ava":"*","bluebird":"^3.0.5","coveralls":"^2.11.4","delay":"^1.0.0","get-stream":"^1.0.0","nyc":"^5.0.1","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"90933e84ab2cde369830509357e9064ff7d8d187","tarball":"https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.2.1.tgz"},"engines":{"node":">=0.10.0"}},"1.3.0":{"name":"loud-rejection","version":"1.3.0","dependencies":{"array-find-index":"^1.0.0","signal-exit":"^2.1.2"},"devDependencies":{"ava":"*","bluebird":"^3.0.5","coveralls":"^2.11.4","delay":"^1.0.0","get-stream":"^1.0.0","nyc":"^5.0.1","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"f289a392f17d2baacf194d0a673004394433b115","tarball":"https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.3.0.tgz"},"engines":{"node":">=0.10.0"}},"1.4.0":{"name":"loud-rejection","version":"1.4.0","dependencies":{"currently-unhandled":"^0.4.1","signal-exit":"^2.1.2"},"devDependencies":{"ava":"*","bluebird":"^3.0.5","coveralls":"^2.11.4","delay":"^1.0.0","get-stream":"^2.0.0","nyc":"^6.2.1","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"f3304a19d2fec9c0bff47144154cb25f0289dc23","tarball":"https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.4.0.tgz"},"engines":{"node":">=0.10.0"}},"1.4.1":{"name":"loud-rejection","version":"1.4.1","dependencies":{"currently-unhandled":"^0.4.1","signal-exit":"^2.1.2"},"devDependencies":{"ava":"*","bluebird":"^3.0.5","coveralls":"^2.11.4","delay":"^1.0.0","get-stream":"^2.0.0","nyc":"^6.2.1","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"13f58c75b1430e65141cd075ace9a2ee575b236c","tarball":"https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.4.1.tgz"},"engines":{"node":">=0.10.0"}},"1.5.0":{"name":"loud-rejection","version":"1.5.0","dependencies":{"currently-unhandled":"^0.4.1","signal-exit":"^3.0.0"},"devDependencies":{"ava":"*","bluebird":"^3.0.5","coveralls":"^2.11.4","delay":"^1.0.0","get-stream":"^2.0.0","nyc":"^6.2.1","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"be90d8e74d945f6d8112069967a6c4a89173308a","tarball":"https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.5.0.tgz"},"engines":{"node":">=0.10.0"}},"1.6.0":{"name":"loud-rejection","version":"1.6.0","dependencies":{"currently-unhandled":"^0.4.1","signal-exit":"^3.0.0"},"devDependencies":{"ava":"*","bluebird":"^3.0.5","coveralls":"^2.11.4","delay":"^1.0.0","execa":"^0.4.0","get-stream":"^2.0.0","nyc":"^6.2.1","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"5b46f80147edee578870f086d04821cf998e551f","tarball":"https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.6.0.tgz"},"engines":{"node":">=0.10.0"}}},"name":"loud-rejection","dist-tags":{"latest":"1.6.0"},"modified":"2017-04-24T05:37:28.139Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/bf/73/179d901cbe7cb091350466898801cb657bb4575de79d391df5c3097b565ca85cee108bd6abbd27a73505a77b54dc4708422f51f02c8db56c4a9da63f3fac b/npm/.npm/_cacache/content-v2/sha512/bf/73/179d901cbe7cb091350466898801cb657bb4575de79d391df5c3097b565ca85cee108bd6abbd27a73505a77b54dc4708422f51f02c8db56c4a9da63f3fac new file mode 100644 index 0000000..4a960ad Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha512/bf/73/179d901cbe7cb091350466898801cb657bb4575de79d391df5c3097b565ca85cee108bd6abbd27a73505a77b54dc4708422f51f02c8db56c4a9da63f3fac differ diff --git a/npm/.npm/_cacache/content-v2/sha512/c1/19/0a9a8d269a9a756f4203f1c20b09d07f5be42e9d4639bc45775c75621b2689b960cc1a3043fe9681bfd6de9c2360e0bcbec75361cce360598508f61b4ec5 b/npm/.npm/_cacache/content-v2/sha512/c1/19/0a9a8d269a9a756f4203f1c20b09d07f5be42e9d4639bc45775c75621b2689b960cc1a3043fe9681bfd6de9c2360e0bcbec75361cce360598508f61b4ec5 new file mode 100644 index 0000000..548846c --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/c1/19/0a9a8d269a9a756f4203f1c20b09d07f5be42e9d4639bc45775c75621b2689b960cc1a3043fe9681bfd6de9c2360e0bcbec75361cce360598508f61b4ec5 @@ -0,0 +1 @@ +{"versions":{"1.0.0":{"name":"util-deprecate","version":"1.0.0","_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"3007af012c140eae26de05576ec22785cac3abf2","tarball":"https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.0.tgz"}},"1.0.1":{"name":"util-deprecate","version":"1.0.1","_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"3556a3d13c4c6aa7983d7e2425478197199b7881","tarball":"https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.1.tgz"}},"1.0.2":{"name":"util-deprecate","version":"1.0.2","_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"450d4dc9fa70de732762fbd2d4a28981419a0ccf","tarball":"https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz"}}},"name":"util-deprecate","dist-tags":{"latest":"1.0.2"},"modified":"2017-06-14T14:28:22.197Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/c1/5f/cb76f37945196bc4772e572b6d3ff8f3d998b7c32c31f589a8ccb1dbb8c7a949128013ae3ae63a0cf6978f592645b370191865e29c3d4526cada4c7ee683 b/npm/.npm/_cacache/content-v2/sha512/c1/5f/cb76f37945196bc4772e572b6d3ff8f3d998b7c32c31f589a8ccb1dbb8c7a949128013ae3ae63a0cf6978f592645b370191865e29c3d4526cada4c7ee683 new file mode 100644 index 0000000..d3a1f4f --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/c1/5f/cb76f37945196bc4772e572b6d3ff8f3d998b7c32c31f589a8ccb1dbb8c7a949128013ae3ae63a0cf6978f592645b370191865e29c3d4526cada4c7ee683 @@ -0,0 +1 @@ +{"versions":{"0.1.0":{"name":"iconv-lite","version":"0.1.0","dependencies":{},"devDependencies":{"vows":""},"directories":{},"dist":{"shasum":"bb686e9e87899523e69c313d01ffae9d7850e1eb","tarball":"http://registry.npmjs.org/iconv-lite/-/iconv-lite-0.1.0.tgz"},"engines":{"node":">=0.4.0"}},"0.1.1":{"name":"iconv-lite","version":"0.1.1","dependencies":{},"devDependencies":{"vows":"","iconv":""},"directories":{},"dist":{"shasum":"7844849646a553d2b65711d4e8e3188c2d0a5106","tarball":"http://registry.npmjs.org/iconv-lite/-/iconv-lite-0.1.1.tgz"},"engines":{"node":">=0.4.0"}},"0.1.2":{"name":"iconv-lite","version":"0.1.2","dependencies":{},"devDependencies":{"vows":"","iconv":""},"directories":{},"dist":{"shasum":"ae828cd32708a17258d6a558c653bde646e84d0a","tarball":"http://registry.npmjs.org/iconv-lite/-/iconv-lite-0.1.2.tgz"},"engines":{"node":">=0.4.0"}},"0.1.3":{"name":"iconv-lite","version":"0.1.3","dependencies":{},"optionalDependencies":{},"devDependencies":{"vows":"","iconv":""},"directories":{},"dist":{"shasum":"e5b1742382fb90f4900ec0076ac0b868d249615d","tarball":"http://registry.npmjs.org/iconv-lite/-/iconv-lite-0.1.3.tgz"},"engines":{"node":">=0.4.0"}},"0.1.4":{"name":"iconv-lite","version":"0.1.4","dependencies":{},"optionalDependencies":{},"devDependencies":{"vows":"","iconv":""},"directories":{},"dist":{"shasum":"d9d9f7f2902ae56c68c800c0d42822cc681e20af","tarball":"http://registry.npmjs.org/iconv-lite/-/iconv-lite-0.1.4.tgz"},"engines":{"node":">=0.4.0"}},"0.2.0":{"name":"iconv-lite","version":"0.2.0","dependencies":{},"optionalDependencies":{},"devDependencies":{"vows":"","iconv":""},"directories":{},"dist":{"shasum":"235d7ca31fbc40ddf1855bed5eb020f45251247c","tarball":"http://registry.npmjs.org/iconv-lite/-/iconv-lite-0.2.0.tgz"},"engines":{"node":">=0.4.0"}},"0.2.1":{"name":"iconv-lite","version":"0.2.1","devDependencies":{"vows":"","iconv":""},"directories":{},"dist":{"shasum":"011b31b8eeffc57b4cb65521b2a0858ce1ed8bfb","tarball":"http://registry.npmjs.org/iconv-lite/-/iconv-lite-0.2.1.tgz"},"engines":{"node":">=0.4.0"}},"0.2.3":{"name":"iconv-lite","version":"0.2.3","devDependencies":{"vows":"","iconv":"1.1"},"directories":{},"dist":{"shasum":"f6b14037951e3a334543932e9829dfd004168755","tarball":"http://registry.npmjs.org/iconv-lite/-/iconv-lite-0.2.3.tgz"},"engines":{"node":">=0.4.0"}},"0.2.4":{"name":"iconv-lite","version":"0.2.4","devDependencies":{"vows":"","iconv":"1.1"},"directories":{},"dist":{"shasum":"03659514658e27e4d1691a63e7aa01f1dca7f296","tarball":"http://registry.npmjs.org/iconv-lite/-/iconv-lite-0.2.4.tgz"},"engines":{"node":">=0.4.0"}},"0.2.5":{"name":"iconv-lite","version":"0.2.5","devDependencies":{"vows":"","iconv":"1.1"},"directories":{},"dist":{"shasum":"e9f2155037f4afd000c095b1d5ad8831c4c5eacc","tarball":"http://registry.npmjs.org/iconv-lite/-/iconv-lite-0.2.5.tgz"},"engines":{"node":">=0.4.0"}},"0.2.6":{"name":"iconv-lite","version":"0.2.6","devDependencies":{"vows":"","iconv":">=1.1"},"directories":{},"dist":{"shasum":"f4dc95055077fc0580bf829c3e75c20d55824a3e","tarball":"http://registry.npmjs.org/iconv-lite/-/iconv-lite-0.2.6.tgz"},"engines":{"node":">=0.4.0"}},"0.2.7":{"name":"iconv-lite","version":"0.2.7","devDependencies":{"vows":"","iconv":">=1.1"},"directories":{},"dist":{"shasum":"45be2390d27af4b7613aac4ee4d957e3f4cbdb54","tarball":"http://registry.npmjs.org/iconv-lite/-/iconv-lite-0.2.7.tgz"},"engines":{"node":">=0.4.0"}},"0.2.8":{"name":"iconv-lite","version":"0.2.8","devDependencies":{"vows":"","iconv":">=1.1"},"directories":{},"dist":{"shasum":"8b9ebdc6c0751742951d67786f6fd5c09a9e0109","tarball":"http://registry.npmjs.org/iconv-lite/-/iconv-lite-0.2.8.tgz"},"engines":{"node":">=0.4.0"}},"0.2.9":{"name":"iconv-lite","version":"0.2.9","devDependencies":{"vows":"","iconv":">=1.1"},"directories":{},"dist":{"shasum":"5788ae876660ddb663ab68a45fef14922e16998e","tarball":"http://registry.npmjs.org/iconv-lite/-/iconv-lite-0.2.9.tgz"},"engines":{"node":">=0.4.0"}},"0.2.10":{"name":"iconv-lite","version":"0.2.10","devDependencies":{"vows":"","iconv":">=1.1"},"directories":{},"dist":{"shasum":"8839fa77a9e4325a51ca0f8bae6b0cbd490f5a92","tarball":"http://registry.npmjs.org/iconv-lite/-/iconv-lite-0.2.10.tgz"},"engines":{"node":">=0.4.0"}},"0.2.11":{"name":"iconv-lite","version":"0.2.11","devDependencies":{"vows":"","iconv":">=1.1"},"directories":{},"dist":{"shasum":"1ce60a3a57864a292d1321ff4609ca4bb965adc8","tarball":"http://registry.npmjs.org/iconv-lite/-/iconv-lite-0.2.11.tgz"},"engines":{"node":">=0.4.0"}},"0.4.0-pre":{"name":"iconv-lite","version":"0.4.0-pre","devDependencies":{"mocha":"*","request":"*","unorm":"*","errto":"*","async":"*","iconv":"2.x"},"directories":{},"dist":{"shasum":"8ef26bada5b13a311ab299fd53a8685686826c8a","tarball":"http://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.0-pre.tgz"},"engines":{"node":">=0.8.0"}},"0.4.0-pre2":{"name":"iconv-lite","version":"0.4.0-pre2","devDependencies":{"mocha":"*","request":"*","unorm":"*","errto":"*","async":"*","iconv":"2.x"},"directories":{},"dist":{"shasum":"be0ec485136c00984825c8de63b0e22f7e23193e","tarball":"http://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.0-pre2.tgz"},"engines":{"node":">=0.8.0"}},"0.4.0-pre3":{"name":"iconv-lite","version":"0.4.0-pre3","devDependencies":{"mocha":"*","request":"*","unorm":"*","errto":"*","async":"*","iconv":"2.x"},"directories":{},"dist":{"shasum":"bfbdb354cecc2f54d58addda32d62817da843f6a","tarball":"http://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.0-pre3.tgz"},"engines":{"node":">=0.8.0"}},"0.4.0":{"name":"iconv-lite","version":"0.4.0","devDependencies":{"mocha":"*","request":"*","unorm":"*","errto":"*","async":"*","iconv":"~2.1.4"},"directories":{},"dist":{"shasum":"cc77430093c1298e35aba9e8fa38d09582fcdcb7","tarball":"http://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.0.tgz"},"engines":{"node":">=0.8.0"}},"0.4.1":{"name":"iconv-lite","version":"0.4.1","devDependencies":{"mocha":"*","request":"*","unorm":"*","errto":"*","async":"*","iconv":"~2.1.4"},"directories":{},"dist":{"shasum":"c9d4621aafb06b67979b79676ca99ac4c0378b1a","tarball":"http://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.1.tgz"},"engines":{"node":">=0.8.0"}},"0.4.2":{"name":"iconv-lite","version":"0.4.2","devDependencies":{"mocha":"*","request":"*","unorm":"*","errto":"*","async":"*","iconv":"~2.1.4"},"directories":{},"dist":{"shasum":"af57e14c2ccd8b27e945d7b4de071accd59f00bb","tarball":"http://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.2.tgz"},"engines":{"node":">=0.8.0"}},"0.4.3":{"name":"iconv-lite","version":"0.4.3","devDependencies":{"mocha":"*","request":"*","unorm":"*","errto":"*","async":"*","iconv":"~2.1.4"},"directories":{},"dist":{"shasum":"9e7887793b769cc695eb22d2546a4fd2d79b7a1e","tarball":"http://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.3.tgz"},"engines":{"node":">=0.8.0"}},"0.4.4":{"name":"iconv-lite","version":"0.4.4","devDependencies":{"mocha":"*","request":"*","unorm":"*","errto":"*","async":"*","iconv":"~2.1.4"},"directories":{},"dist":{"shasum":"e95f2e41db0735fc21652f7827a5ee32e63c83a8","tarball":"http://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.4.tgz"},"engines":{"node":">=0.8.0"}},"0.4.5":{"name":"iconv-lite","version":"0.4.5","devDependencies":{"mocha":"*","request":"2.47","unorm":"*","errto":"*","async":"*","istanbul":"*","iconv":"~2.1.4"},"directories":{},"dist":{"shasum":"9c574b70c30d615859f2064d2be4335ad6b1a8d6","tarball":"http://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.5.tgz"},"engines":{"node":">=0.8.0"}},"0.4.6":{"name":"iconv-lite","version":"0.4.6","devDependencies":{"mocha":"*","request":"2.47","unorm":"*","errto":"*","async":"*","istanbul":"*","iconv":"~2.1.4"},"directories":{},"dist":{"shasum":"e39c682610a791f3eedc27382ff49e263f91fa09","tarball":"http://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.6.tgz"},"engines":{"node":">=0.8.0"}},"0.4.7":{"name":"iconv-lite","version":"0.4.7","devDependencies":{"mocha":"*","request":"2.47","unorm":"*","errto":"*","async":"*","istanbul":"*","iconv":"2.1.4"},"directories":{},"dist":{"shasum":"89d32fec821bf8597f44609b4bc09bed5c209a23","tarball":"http://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.7.tgz"},"engines":{"node":">=0.8.0"}},"0.4.8":{"name":"iconv-lite","version":"0.4.8","devDependencies":{"mocha":"*","request":"2.47","unorm":"*","errto":"*","async":"*","istanbul":"*","iconv":"2.1.4"},"directories":{},"dist":{"shasum":"c6019a7595f2cefca702eab694a010bcd9298d20","tarball":"http://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.8.tgz"},"engines":{"node":">=0.8.0"}},"0.4.9":{"name":"iconv-lite","version":"0.4.9","devDependencies":{"mocha":"*","request":"2.47","unorm":"*","errto":"*","async":"*","istanbul":"*","iconv":"2.1"},"directories":{},"dist":{"shasum":"4d8b3c7f596c558ce95b4bd4562c874010a7df3e","tarball":"http://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.9.tgz"},"engines":{"node":">=0.8.0"}},"0.4.10":{"name":"iconv-lite","version":"0.4.10","devDependencies":{"mocha":"*","request":"2.47","unorm":"*","errto":"*","async":"*","istanbul":"*","iconv":"2.1"},"directories":{},"dist":{"shasum":"4f1a2562efd36d41c54d45c59999b590951796de","tarball":"http://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.10.tgz"},"engines":{"node":">=0.8.0"}},"0.4.11":{"name":"iconv-lite","version":"0.4.11","devDependencies":{"mocha":"*","request":"2.47","unorm":"*","errto":"*","async":"*","istanbul":"*","iconv":"2.1"},"directories":{},"dist":{"shasum":"2ecb42fd294744922209a2e7c404dac8793d8ade","tarball":"http://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.11.tgz"},"engines":{"node":">=0.8.0"}},"0.4.12":{"name":"iconv-lite","version":"0.4.12","devDependencies":{"mocha":"*","request":"2.47","unorm":"*","errto":"*","async":"*","istanbul":"*","iconv":"2.1"},"directories":{},"dist":{"shasum":"ef4bb2cb28f406d3c05fc89feea4504624b5ac87","tarball":"http://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.12.tgz"},"engines":{"node":">=0.8.0"}},"0.4.13":{"name":"iconv-lite","version":"0.4.13","devDependencies":{"mocha":"*","request":"2.47","unorm":"*","errto":"*","async":"*","istanbul":"*","iconv":"2.1"},"directories":{},"dist":{"shasum":"1f88aba4ab0b1508e8312acc39345f36e992e2f2","tarball":"http://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.13.tgz"},"engines":{"node":">=0.8.0"}},"0.4.14":{"name":"iconv-lite","version":"0.4.14","devDependencies":{"mocha":"*","request":"*","unorm":"*","errto":"*","async":"*","istanbul":"*","iconv":"*"},"directories":{},"dist":{"shasum":"0c4b78106835ecce149ffc7f1b588a9f23bf28e3","tarball":"http://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.14.tgz"},"engines":{"node":">=0.10.0"}},"0.4.15":{"name":"iconv-lite","version":"0.4.15","devDependencies":{"mocha":"*","request":"*","unorm":"*","errto":"*","async":"*","istanbul":"*","iconv":"*"},"directories":{},"dist":{"shasum":"fe265a218ac6a57cfe854927e9d04c19825eddeb","tarball":"http://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.15.tgz"},"engines":{"node":">=0.10.0"}},"0.4.16":{"name":"iconv-lite","version":"0.4.16","devDependencies":{"mocha":"*","request":"*","unorm":"*","errto":"*","async":"*","istanbul":"*","semver":"*","iconv":"*"},"directories":{},"dist":{"shasum":"65de3beeb39e2960d67f049f1634ffcbcde9014b","tarball":"https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.16.tgz"},"engines":{"node":">=0.10.0"}},"0.4.17":{"name":"iconv-lite","version":"0.4.17","devDependencies":{"mocha":"*","request":"*","unorm":"*","errto":"*","async":"*","istanbul":"*","semver":"*","iconv":"*"},"directories":{},"dist":{"shasum":"4fdaa3b38acbc2c031b045d0edcdfe1ecab18c8d","tarball":"https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.17.tgz"},"engines":{"node":">=0.10.0"}},"0.4.18":{"name":"iconv-lite","version":"0.4.18","devDependencies":{"mocha":"*","request":"*","unorm":"*","errto":"*","async":"*","istanbul":"*","semver":"*","iconv":"*"},"directories":{},"dist":{"integrity":"sha512-sr1ZQph3UwHTR0XftSbK85OvBbxe/abLGzEnPENCQwmHf7sck8Oyu4ob3LgBxWWxRoM+QszeUyl7jbqapu2TqA==","shasum":"23d8656b16aae6742ac29732ea8f0336a4789cf2","tarball":"https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.18.tgz"},"engines":{"node":">=0.10.0"}},"0.4.19":{"name":"iconv-lite","version":"0.4.19","devDependencies":{"mocha":"*","request":"*","unorm":"*","errto":"*","async":"*","istanbul":"*","semver":"*","iconv":"*"},"directories":{},"dist":{"integrity":"sha512-oTZqweIP51xaGPI4uPa56/Pri/480R+mo7SeU+YETByQNhDG55ycFyNLIgta9vXhILrxXDmF7ZGhqZIcuN0gJQ==","shasum":"f7468f60135f5e5dad3399c0a81be9a1603a082b","tarball":"https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.19.tgz"},"engines":{"node":">=0.10.0"}},"0.4.20":{"name":"iconv-lite","version":"0.4.20","dependencies":{"safer-buffer":"^2.1.0"},"devDependencies":{"mocha":"^3.1.0","request":"~2.81.0","unorm":"*","errto":"*","async":"*","istanbul":"*","semver":"*","iconv":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-YyvWZ7Konl8yQCyGdFub5XmVqQonxkFjDoExIY22RA0NI0pskdU6plSyaUnVyEL+RsOcz+LhPDclXsc02indDQ==","shasum":"c1f7a1dbd98de51f275776575ebfa67433d01d22","tarball":"http://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.20.tgz","fileCount":27,"unpackedSize":335838},"engines":{"node":">=0.10.0"}},"0.4.21":{"name":"iconv-lite","version":"0.4.21","dependencies":{"safer-buffer":"^2.1.0"},"devDependencies":{"mocha":"^3.1.0","request":"~2.81.0","unorm":"*","errto":"*","async":"*","istanbul":"*","semver":"*","iconv":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-En5V9za5mBt2oUA03WGD3TwDv0MKAruqsuxstbMUZaj9W9k/m1CV/9py3l0L5kw9Bln8fdHQmzHSYtvpvTLpKw==","shasum":"c47f8733d02171189ebc4a400f3218d348094798","tarball":"http://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.21.tgz","fileCount":27,"unpackedSize":335343},"engines":{"node":">=0.10.0"}},"0.4.22":{"name":"iconv-lite","version":"0.4.22","dependencies":{"safer-buffer":">= 2.1.2 < 3"},"devDependencies":{"mocha":"^3.1.0","request":"~2.81.0","unorm":"*","errto":"*","async":"*","istanbul":"*","semver":"*","iconv":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-1AinFBeDTnsvVEP+V1QBlHpM1UZZl7gWB6fcz7B1Ho+LI1dUh2sSrxoCfVt2PinRHzXAziSniEV3P7JbTDHcXA==","shasum":"c6b16b9d05bc6c307dc9303a820412995d2eea95","tarball":"https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.22.tgz","fileCount":27,"unpackedSize":335550,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa7kA9CRA9TVsSAnZWagAARFIP/jXu8+CmuVjFVeZcFzV0\nw5bKRhVRux7lUMBMVCDwz4BLGb/bob7qnLmwjxbeUuPfcZSwrdk397XtoD0T\nFavSzYqkbojvoGPkN8jo+ee7KX3hwv0Dki953NMWEUy8r5ECenb2BoveHl3u\nnHiGpv33OcjWbZgY7u6MXONvMEMVfUB8z0s12Vd6dbO3UMB6SYWwK+1Ex49f\nVfEBIgC8watumFKTnJBdCGvsdyJOrAeDvdXz3BZpnpDmA7UCl45+VdO8rwQF\nqESLt+YcUDcgfjxgDTr1VLo3ahULAZ7iGkCjFrB8A4+xHq8I448aZDbUoWND\n98dLkOJLNM1YnFULdlWv9PHQK2Dmn2c6MPQP7TvxOCHOIc0xWMfwpl2t5Z1s\nPt4hqaRGz3MAVzCc8/dOq5MWtwCqJXmotTzJ4q4EmdYyu33aEgIp+TO66oNp\nWbqP5zZjW/pdYh5uWvX9CUSO8B6uG951TC5hxmbG+fm07HyVymMWjPKLqi4C\n4e7kr5EjJ/B2o2oH4l4lpeBc/qZ9Oyr4m7bbfL9abMPs/jCGnmDW9UxFXp2G\nHYTYqR+pKynwhn85PpTGOaCJ2zHpAX9rEM8hqe3UUSTK+B2T5x3cNc6iWOlE\nlyWMNavUduZlB4LXTcpyjeRWmiwI70w8T3rxgfCoq/koFeIMLrd+U+VkP0Zl\nvmU0\r\n=ilVm\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=0.10.0"}},"0.4.23":{"name":"iconv-lite","version":"0.4.23","dependencies":{"safer-buffer":">= 2.1.2 < 3"},"devDependencies":{"mocha":"^3.1.0","request":"~2.81.0","unorm":"*","errto":"*","async":"*","istanbul":"*","semver":"*","iconv":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-neyTUVFtahjf0mB3dZT77u+8O0QB89jFdnBkd5P1JgYPbPaia3gXXOVL2fq8VyU2gMMD7SaN7QukTB/pmXYvDA==","shasum":"297871f63be507adcfbfca715d0cd0eed84e9a63","tarball":"https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.23.tgz","fileCount":27,"unpackedSize":335778,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa8NGhCRA9TVsSAnZWagAA5ZoP/2O9a5eki82Fy1DP/jJU\nx3nUceaekdMIiOFVtP3akk0Uvx00TeGIANH4qyLulwW0R1cYJyTP4T3eelON\nYzznGtHEGLlzKUS5y+ICOR+X0V6TujHPDU1AP6QTiqx7lMBiaqdEkBfKncRV\nti9SUSvewr+oj4q0+mnLgC+iGK+Sl3QyPcBeZQM5dn3T8nb1UeutQKsc/dAJ\nEjCju6fZyiUNPTPeS62hLoprTJXeRa6Rsg48alnVIlwAsfEYMSDuEkjnX7EV\nNe0P8AIEBvB4VJ9pcpOlzdp4uHKSNqUKBHfNTDn7yP2U0THhjXMYhlKgP6kx\nY516QoSyj2S4bUl2DTyfK6y9HtC//BMqaWgKKfOjQCiALYLTiOxNWGzXOH53\nl4Vtm4NBTVpEZiQBYnnfFZUb/1tI4rWzM4nJOq3sAVlC4V9NI22V3fw7AkLd\nuC5DCLsfU3l+HV5A7reFIn7WQuoBc2mzg5iZVYU+YDGbO1rj+O/s/Mn2hqc/\nNf0vMyr5CVHPIhFLf8cY4DZeX+IXyGVhbBNFvzGfpRwTel5ksEKAwKsVhJRs\nRkuLwtq2+fmbX0tvjKC31trK+MYXihYfM2fya0JXY9uUEueHYYDLS+G/eUJC\npSASKzTaJFsbzMHRMMUz9kkcVGW631eVtCWXGXBEgLRi3wCiwiS20eth4Zvr\nQJ6d\r\n=mBpw\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=0.10.0"}},"0.4.24":{"name":"iconv-lite","version":"0.4.24","dependencies":{"safer-buffer":">= 2.1.2 < 3"},"devDependencies":{"mocha":"^3.1.0","request":"~2.87.0","unorm":"*","errto":"*","async":"*","istanbul":"*","semver":"*","iconv":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==","shasum":"2022b4b25fbddc21d2f524974a474aafe733908b","tarball":"https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz","fileCount":26,"unpackedSize":335941,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbfcYwCRA9TVsSAnZWagAARlIQAJ0ml9Ow+Z9mHwP+vAM/\negB/zY3a6Mq2l0ediXft4nQDlVUspdYCXCu5vtwO0z9wao5VisC0RXnEoVoT\n8u2OddejmkpVcGuGKfVuTk/OdWt6Z8yHGIPxUoPzHUmDL3cjWxS/dPkdlBLA\n6X5Ix5kcHbR2mDS0moEO1Pjp6zWbFN8vzNXe6HBOhpN1Z6cm2ppNETG7JTTR\n3mPfp1HbEY6BA04avf0ZE+/snD6zM6nGZY5WGnWOiYdaEVi1Ol5GBjTeVB3z\nCRo8CSSS+wq/iggtSoR12lvAcQlsR0T+blzWNJ6w6lt1GuwKsWg2pdJbmGcC\nVIii/Cq7Sh4wFzLYkDkBudjUesKx6AbKA8EcO0/2im9quQpie/AXdpSKV/LH\nTgN3SDY5/90/8L0Kn0YIaYAxnNoHjN7vX4fGeFyzcbViArhud0vRzyp2gnVO\nK5I2z4tiO+lIKxaSSOSxSt7+x1Fkn9zU1/ZJuIiv31AuMaQVDrAbi5GjegLs\nv/UBrWxfvIYsoNX1rnZpf2+iHaRRCSgECcGZz2W/b5DAXhA5YA87KrDPn5Ut\nMEgRY9eehGAz7lzKt0Zfs/zmoCwfe6ZErAxNHKCsnjV6c9uSto8Jya0zfENG\n2Jhrsbyj1N9fECq8U1+E4GLhecrOCJzF7bJi7KeXo9isIZQt+BsPBgeYbzSJ\n9uVK\r\n=GkHx\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=0.10.0"}}},"name":"iconv-lite","dist-tags":{"latest":"0.4.24","bleeding":"0.4.0-pre3"},"modified":"2018-09-25T02:45:29.281Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/c2/c9/f621b1f25ad3e370a4060a7058b3ce62ab3b85d9cdf9235b007808877d324dbdff22a958b83bd7ee97de899fa5b724b24d4ca01f87e02a2ff6d082407bed b/npm/.npm/_cacache/content-v2/sha512/c2/c9/f621b1f25ad3e370a4060a7058b3ce62ab3b85d9cdf9235b007808877d324dbdff22a958b83bd7ee97de899fa5b724b24d4ca01f87e02a2ff6d082407bed new file mode 100644 index 0000000..0c7a1c9 --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/c2/c9/f621b1f25ad3e370a4060a7058b3ce62ab3b85d9cdf9235b007808877d324dbdff22a958b83bd7ee97de899fa5b724b24d4ca01f87e02a2ff6d082407bed @@ -0,0 +1 @@ +{"versions":{"1.0.0":{"name":"isexe","version":"1.0.0","devDependencies":{"mkdirp":"^0.5.1","rimraf":"^2.5.0","tap":"^5.0.1"},"_hasShrinkwrap":false,"directories":{"test":"test"},"dist":{"shasum":"9aa37a1d11d27b523bec4f8791b72af1ead44ee3","tarball":"https://registry.npmjs.org/isexe/-/isexe-1.0.0.tgz"}},"1.0.1":{"name":"isexe","version":"1.0.1","devDependencies":{"mkdirp":"^0.5.1","rimraf":"^2.5.0","tap":"^5.0.1"},"_hasShrinkwrap":false,"directories":{"test":"test"},"dist":{"shasum":"5db010ed38a649d12d5faf9884b3474002e66a65","tarball":"https://registry.npmjs.org/isexe/-/isexe-1.0.1.tgz"}},"1.1.0":{"name":"isexe","version":"1.1.0","devDependencies":{"mkdirp":"^0.5.1","rimraf":"^2.5.0","tap":"^5.1.2"},"_hasShrinkwrap":false,"directories":{"test":"test"},"dist":{"shasum":"3cdbafc1a3b16b11290ce4e9da58c781dc368931","tarball":"https://registry.npmjs.org/isexe/-/isexe-1.1.0.tgz"}},"1.1.1":{"name":"isexe","version":"1.1.1","devDependencies":{"mkdirp":"^0.5.1","rimraf":"^2.5.0","tap":"^5.1.2"},"_hasShrinkwrap":false,"directories":{"test":"test"},"dist":{"shasum":"f0d4793ed2fb5c46bfdeab760bbb965f4485a66c","tarball":"https://registry.npmjs.org/isexe/-/isexe-1.1.1.tgz"}},"1.1.2":{"name":"isexe","version":"1.1.2","devDependencies":{"mkdirp":"^0.5.1","rimraf":"^2.5.0","tap":"^5.1.2"},"_hasShrinkwrap":false,"directories":{"test":"test"},"dist":{"shasum":"36f3e22e60750920f5e7241a476a8c6a42275ad0","tarball":"https://registry.npmjs.org/isexe/-/isexe-1.1.2.tgz"}},"2.0.0":{"name":"isexe","version":"2.0.0","devDependencies":{"mkdirp":"^0.5.1","rimraf":"^2.5.0","tap":"^10.3.0"},"_hasShrinkwrap":false,"directories":{"test":"test"},"dist":{"shasum":"e8fbf374dc556ff8947a10dcb0572d633f2cfa10","tarball":"https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz"}}},"name":"isexe","dist-tags":{"latest":"2.0.0"},"modified":"2017-03-23T00:53:16.356Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/c5/83/9c966aa8cbe935e4bc0d167f022b46c683551ceb02a279f309a7ced4b1856d9c7874280e0fbe577de6df135cfc0f6c7b775a50fac92a3f3318a09de57a7a b/npm/.npm/_cacache/content-v2/sha512/c5/83/9c966aa8cbe935e4bc0d167f022b46c683551ceb02a279f309a7ced4b1856d9c7874280e0fbe577de6df135cfc0f6c7b775a50fac92a3f3318a09de57a7a new file mode 100644 index 0000000..e6adfea --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/c5/83/9c966aa8cbe935e4bc0d167f022b46c683551ceb02a279f309a7ced4b1856d9c7874280e0fbe577de6df135cfc0f6c7b775a50fac92a3f3318a09de57a7a @@ -0,0 +1 @@ +{"versions":{"0.0.0":{"name":"pinkie","version":"0.0.0","dependencies":{},"devDependencies":{"mocha":"*","promises-aplus-tests":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"4f5a4afb5336a4957e6affdcf93431e36f3bc270","tarball":"https://registry.npmjs.org/pinkie/-/pinkie-0.0.0.tgz"},"engines":{"node":">=0.10.0"}},"0.0.1":{"name":"pinkie","version":"0.0.1","dependencies":{},"devDependencies":{"mocha":"*","promises-aplus-tests":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"d829dd84053ac8d39bbacccf6bad98dfce163a83","tarball":"https://registry.npmjs.org/pinkie/-/pinkie-0.0.1.tgz"},"engines":{"node":">=0.10.0"}},"0.0.2":{"name":"pinkie","version":"0.0.2","dependencies":{},"devDependencies":{"mocha":"*","promises-aplus-tests":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"38d4aa2f720dd91ec7ddbf5c136bdde53d18d8ec","tarball":"https://registry.npmjs.org/pinkie/-/pinkie-0.0.2.tgz"},"engines":{"node":">=0.10.0"}},"1.0.0":{"name":"pinkie","version":"1.0.0","dependencies":{},"devDependencies":{"mocha":"*","promises-aplus-tests":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"5a47f28ba1015d0201bda7bf0f358e47bec8c7e4","tarball":"https://registry.npmjs.org/pinkie/-/pinkie-1.0.0.tgz"},"engines":{"node":">=0.10.0"}},"2.0.0":{"name":"pinkie","version":"2.0.0","devDependencies":{"coveralls":"^2.11.4","mocha":"*","nyc":"^3.2.2","promises-aplus-tests":"*","xo":"^0.10.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"51737918d16ab5859a90a5a031b6f7e0d6f245cc","tarball":"https://registry.npmjs.org/pinkie/-/pinkie-2.0.0.tgz"},"engines":{"node":">=0.10.0"}},"2.0.1":{"name":"pinkie","version":"2.0.1","devDependencies":{"core-assert":"^0.1.1","coveralls":"^2.11.4","mocha":"*","nyc":"^3.2.2","promises-aplus-tests":"*","xo":"^0.10.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"4236c86fc29f261c2045bbe81f78cbb2a5e8306c","tarball":"https://registry.npmjs.org/pinkie/-/pinkie-2.0.1.tgz"},"engines":{"node":">=0.10.0"}},"2.0.2":{"name":"pinkie","version":"2.0.2","devDependencies":{"core-assert":"^0.1.1","coveralls":"^2.11.4","mocha":"*","nyc":"^3.2.2","promises-aplus-tests":"*","xo":"^0.10.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"9ecc4e4c70dce2960505d62c9d008a0bbff8455b","tarball":"https://registry.npmjs.org/pinkie/-/pinkie-2.0.2.tgz"},"engines":{"node":">=0.10.0"}},"2.0.3":{"name":"pinkie","version":"2.0.3","devDependencies":{"core-assert":"^0.1.1","coveralls":"^2.11.4","mocha":"*","nyc":"^3.2.2","promises-aplus-tests":"*","xo":"^0.10.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"378e61d21cad58817deaee4b51495dce95c971d4","tarball":"https://registry.npmjs.org/pinkie/-/pinkie-2.0.3.tgz"},"engines":{"node":">=0.10.0"}},"2.0.4":{"name":"pinkie","version":"2.0.4","devDependencies":{"core-assert":"^0.1.1","coveralls":"^2.11.4","mocha":"*","nyc":"^3.2.2","promises-aplus-tests":"*","xo":"^0.10.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"72556b80cfa0d48a974e80e77248e80ed4f7f870","tarball":"https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz"},"engines":{"node":">=0.10.0"}}},"name":"pinkie","dist-tags":{"latest":"2.0.4"},"modified":"2018-01-11T02:17:10.107Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/c8/91/d5404872a8f2d44e0b7d07cdcf5eee96debc7832fbc7bd252f4e8a20a70a060ce510fb20eb4741d1a2dfb23827423bbbb8857de959fb7a91604172a87450 b/npm/.npm/_cacache/content-v2/sha512/c8/91/d5404872a8f2d44e0b7d07cdcf5eee96debc7832fbc7bd252f4e8a20a70a060ce510fb20eb4741d1a2dfb23827423bbbb8857de959fb7a91604172a87450 new file mode 100644 index 0000000..12d0073 Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha512/c8/91/d5404872a8f2d44e0b7d07cdcf5eee96debc7832fbc7bd252f4e8a20a70a060ce510fb20eb4741d1a2dfb23827423bbbb8857de959fb7a91604172a87450 differ diff --git a/npm/.npm/_cacache/content-v2/sha512/cb/be/afd4238c957a32078f0c2375b03a543dd99025bc925f35eb169d773e4e07e94bf8f12589915d78f7dc29f3fe9c70f095b8a0db0fcd70e1696aa72828b0c4 b/npm/.npm/_cacache/content-v2/sha512/cb/be/afd4238c957a32078f0c2375b03a543dd99025bc925f35eb169d773e4e07e94bf8f12589915d78f7dc29f3fe9c70f095b8a0db0fcd70e1696aa72828b0c4 new file mode 100644 index 0000000..c4774df --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/cb/be/afd4238c957a32078f0c2375b03a543dd99025bc925f35eb169d773e4e07e94bf8f12589915d78f7dc29f3fe9c70f095b8a0db0fcd70e1696aa72828b0c4 @@ -0,0 +1 @@ +{"versions":{"1.0.0":{"name":"spdx-expression-parse","version":"1.0.0","dependencies":{"spdx-exceptions":"^1.0.0","spdx-license-ids":"^1.0.0"},"devDependencies":{"defence-cli":"^1.0.1","jison":"^0.4.15"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"4fbb7e738c9e98fa0b0914dfd961ac6629fbcdef","tarball":"https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-1.0.0.tgz"}},"1.0.1":{"name":"spdx-expression-parse","version":"1.0.1","dependencies":{"spdx-exceptions":"^1.0.4","spdx-license-ids":"^1.0.0"},"devDependencies":{"defence-cli":"^1.0.1","jison":"^0.4.15","replace-require-self":"^1.0.0","uglify-js":"^2.4.24"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"bb4f2ed00d50473a949f7a333d84ecc1ab6d483d","tarball":"https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-1.0.1.tgz"}},"1.0.2":{"name":"spdx-expression-parse","version":"1.0.2","dependencies":{"spdx-exceptions":"^1.0.4","spdx-license-ids":"^1.0.0"},"devDependencies":{"defence-cli":"^1.0.1","jison":"^0.4.15","replace-require-self":"^1.0.0","uglify-js":"^2.4.24"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"d52b14b5e9670771440af225bcb563122ac452f6","tarball":"https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-1.0.2.tgz"}},"1.0.3":{"name":"spdx-expression-parse","version":"1.0.3","devDependencies":{"defence-cli":"^1.0.1","jison":"^0.4.15","replace-require-self":"^1.0.0","spdx-exceptions":"^1.0.4","spdx-license-ids":"^1.0.0","standard":"^8.0.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"ca3c3828c4fea8aa44997884b398fc5d67436442","tarball":"https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-1.0.3.tgz"}},"1.0.4":{"name":"spdx-expression-parse","version":"1.0.4","devDependencies":{"defence-cli":"^1.0.1","jison":"^0.4.15","replace-require-self":"^1.0.0","spdx-exceptions":"^1.0.4","spdx-license-ids":"^1.0.0","standard":"^8.0.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"9bdf2f20e1f40ed447fbe273266191fced51626c","tarball":"https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz"}},"2.0.0":{"name":"spdx-expression-parse","version":"2.0.0","dependencies":{"spdx-exceptions":"^2.0.0","spdx-license-ids":"^2.0.1"},"devDependencies":{"defence-cli":"^2.0.1","jison":"^0.4.15","replace-require-self":"^1.0.0","standard":"^10.0.2"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-jbUCw8KGLTtZudkXDI2rTkWJ++O+nUZ/cD2GVgdFab36Smu7L1+5TIOHpPPtQU4hV5kiE+eh15cJk4vZxLPy/g==","shasum":"aedf74790de7f5c4cfc0b271a213e72d5e2896b9","tarball":"https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-2.0.0.tgz"}},"2.0.1":{"name":"spdx-expression-parse","version":"2.0.1","dependencies":{"spdx-exceptions":"^2.0.0","spdx-license-ids":"^2.0.1"},"devDependencies":{"defence-cli":"^2.0.1","jison":"^0.4.15","replace-require-self":"^1.0.0","standard":"^10.0.2"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-uwTOyZVJS8xcEMfPApWDw2ZstSfdjrNuqzrz57p0FYx3Fiom76qBQUpeytoq1PZkCW6LytvO6vW9lf9nb2fClw==","shasum":"b33c8458cb85b7166981264745012e741b257bc8","tarball":"https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-2.0.1.tgz"}},"2.0.2":{"name":"spdx-expression-parse","version":"2.0.2","dependencies":{"spdx-exceptions":"^2.0.0","spdx-license-ids":"^2.0.1"},"devDependencies":{"defence-cli":"^2.0.1","mocha":"^3.4.2","replace-require-self":"^1.0.0","standard":"^10.0.2"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-oFxOkWCfFS0ltNp0H66gXlU4NF6bxg7RkoTYR0413t+yTY9zyj+AIWsjtN8dcVp6703ijDYBWBIARlJ7DkyP9Q==","shasum":"e2e0f229c057eac704c5a6d1c687eed66aca034b","tarball":"https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-2.0.2.tgz"}},"3.0.0":{"name":"spdx-expression-parse","version":"3.0.0","dependencies":{"spdx-exceptions":"^2.1.0","spdx-license-ids":"^3.0.0"},"devDependencies":{"defence-cli":"^2.0.1","mocha":"^3.4.2","replace-require-self":"^1.0.0","standard":"^10.0.2"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg==","shasum":"99e119b7a5da00e05491c9fa338b7904823b41d0","tarball":"https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz","fileCount":7,"unpackedSize":11871}}},"name":"spdx-expression-parse","dist-tags":{"latest":"3.0.0"},"modified":"2018-02-27T00:14:19.654Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/cc/22/b4086c0fa5a27d2a2f0e50807f4d8cf2ba4c43beb58a0b80e703a67a2023340c0e83ca77575b16e824501cf6516a3305b661350428584b19829dd4344aa3 b/npm/.npm/_cacache/content-v2/sha512/cc/22/b4086c0fa5a27d2a2f0e50807f4d8cf2ba4c43beb58a0b80e703a67a2023340c0e83ca77575b16e824501cf6516a3305b661350428584b19829dd4344aa3 new file mode 100644 index 0000000..1ae625b --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/cc/22/b4086c0fa5a27d2a2f0e50807f4d8cf2ba4c43beb58a0b80e703a67a2023340c0e83ca77575b16e824501cf6516a3305b661350428584b19829dd4344aa3 @@ -0,0 +1 @@ +{"versions":{"0.1.0":{"name":"indent-string","version":"0.1.0","dependencies":{"get-stdin":"^0.1.0","minimist":"^0.1.0","repeat-string":"^0.1.2"},"devDependencies":{"mocha":"*"},"bin":{"indent-string":"cli.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"96aa451da9ca664dea4dd039165eb72833b38542","tarball":"https://registry.npmjs.org/indent-string/-/indent-string-0.1.0.tgz"},"engines":{"node":">=0.10.0"}},"0.1.1":{"name":"indent-string","version":"0.1.1","dependencies":{"get-stdin":"^0.1.0","minimist":"^0.1.0","repeat-string":"^0.1.2"},"devDependencies":{"mocha":"*"},"bin":{"indent-string":"cli.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"875e858ca925d1ac66be89dff9619c81f93503e7","tarball":"https://registry.npmjs.org/indent-string/-/indent-string-0.1.1.tgz"},"engines":{"node":">=0.10.0"}},"0.1.2":{"name":"indent-string","version":"0.1.2","dependencies":{"get-stdin":"^0.1.0","minimist":"^0.1.0","repeat-string":"^0.1.2"},"devDependencies":{"mocha":"*"},"bin":{"indent-string":"cli.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"cecfceba741dce491996e8c7002f46524d550585","tarball":"https://registry.npmjs.org/indent-string/-/indent-string-0.1.2.tgz"},"engines":{"node":">=0.10.0"}},"0.1.3":{"name":"indent-string","version":"0.1.3","dependencies":{"get-stdin":"^0.1.0","minimist":"^0.1.0","repeat-string":"^0.1.2"},"devDependencies":{"mocha":"*"},"bin":{"indent-string":"cli.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"39f058d423e0ab401ef3701bdca02496be298091","tarball":"https://registry.npmjs.org/indent-string/-/indent-string-0.1.3.tgz"},"engines":{"node":">=0.10.0"}},"1.0.0":{"name":"indent-string","version":"1.0.0","dependencies":{"get-stdin":"^3.0.0","minimist":"^1.1.0","repeat-string":"^0.1.2"},"devDependencies":{"mocha":"*"},"bin":{"indent-string":"cli.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"184c42e1d1d0c1cb00c6bdb2b424fd9a431fddc4","tarball":"https://registry.npmjs.org/indent-string/-/indent-string-1.0.0.tgz"},"engines":{"node":">=0.10.0"}},"1.1.0":{"name":"indent-string","version":"1.1.0","dependencies":{"get-stdin":"^3.0.0","minimist":"^1.1.0","repeat-string":"^0.1.2"},"devDependencies":{"mocha":"*"},"bin":{"indent-string":"cli.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"c9bc3ea8b667511fae43152ba1a57bcd39ec192b","tarball":"https://registry.npmjs.org/indent-string/-/indent-string-1.1.0.tgz"},"engines":{"node":">=0.10.0"}},"1.2.0":{"name":"indent-string","version":"1.2.0","dependencies":{"get-stdin":"^3.0.0","minimist":"^1.1.0","repeating":"^1.1.0"},"devDependencies":{"mocha":"*"},"bin":{"indent-string":"cli.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"4d747797d66745bd54c6a289f5ce19f51750a4b9","tarball":"https://registry.npmjs.org/indent-string/-/indent-string-1.2.0.tgz"},"engines":{"node":">=0.10.0"}},"1.2.1":{"name":"indent-string","version":"1.2.1","dependencies":{"get-stdin":"^4.0.1","minimist":"^1.1.0","repeating":"^1.1.0"},"devDependencies":{"mocha":"*"},"bin":{"indent-string":"cli.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"294c5930792f8bb5b14462a4aa425b94f07d3a56","tarball":"https://registry.npmjs.org/indent-string/-/indent-string-1.2.1.tgz"},"engines":{"node":">=0.10.0"}},"1.2.2":{"name":"indent-string","version":"1.2.2","dependencies":{"get-stdin":"^4.0.1","minimist":"^1.1.0","repeating":"^1.1.0"},"devDependencies":{"mocha":"*"},"bin":{"indent-string":"cli.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"db99bcc583eb6abbb1e48dcbb1999a986041cb6b","tarball":"https://registry.npmjs.org/indent-string/-/indent-string-1.2.2.tgz"},"engines":{"node":">=0.10.0"}},"2.0.0":{"name":"indent-string","version":"2.0.0","dependencies":{"repeating":"^1.1.0"},"devDependencies":{"mocha":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"af509d6b6456f9ffc3aecd3ad52a15906bbb5826","tarball":"https://registry.npmjs.org/indent-string/-/indent-string-2.0.0.tgz"},"engines":{"node":">=0.10.0"}},"2.1.0":{"name":"indent-string","version":"2.1.0","dependencies":{"repeating":"^2.0.0"},"devDependencies":{"mocha":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"8e2d48348742121b4a8218b7a137e9a52049dc80","tarball":"https://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz"},"engines":{"node":">=0.10.0"}},"3.0.0":{"name":"indent-string","version":"3.0.0","dependencies":{"repeating":"^3.0.0"},"devDependencies":{"ava":"*","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"ddab23d32113ef04b67ab4cf4a0951c1a85fd60c","tarball":"https://registry.npmjs.org/indent-string/-/indent-string-3.0.0.tgz"},"engines":{"node":">=4"}},"3.1.0":{"name":"indent-string","version":"3.1.0","devDependencies":{"ava":"*","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"08ff4334603388399b329e6b9538dc7a3cf5de7d","tarball":"https://registry.npmjs.org/indent-string/-/indent-string-3.1.0.tgz"},"engines":{"node":">=4"}},"3.2.0":{"name":"indent-string","version":"3.2.0","devDependencies":{"ava":"*","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"4a5fd6d27cc332f37e5419a504dbb837105c9289","tarball":"https://registry.npmjs.org/indent-string/-/indent-string-3.2.0.tgz"},"engines":{"node":">=4"}}},"name":"indent-string","dist-tags":{"latest":"3.2.0"},"modified":"2017-07-23T17:37:41.202Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/cc/4e/1e1445752bf53587f8ec16f7a020a5cf59e3baf83b2b970ffbb931ccf968be0fba057a6fb8896c8e38130fd4eded019b0471743950447b8572153a620f0f b/npm/.npm/_cacache/content-v2/sha512/cc/4e/1e1445752bf53587f8ec16f7a020a5cf59e3baf83b2b970ffbb931ccf968be0fba057a6fb8896c8e38130fd4eded019b0471743950447b8572153a620f0f new file mode 100644 index 0000000..208f5c4 --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/cc/4e/1e1445752bf53587f8ec16f7a020a5cf59e3baf83b2b970ffbb931ccf968be0fba057a6fb8896c8e38130fd4eded019b0471743950447b8572153a620f0f @@ -0,0 +1 @@ +{"versions":{"1.0.0":{"name":"repeating","version":"1.0.0","dependencies":{"is-finite":"^1.0.0","meow":"^1.0.0"},"devDependencies":{"ava":"0.0.4"},"bin":{"repeating":"cli.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"7d3947cadbc73b3e3b3a71798f90b3f76185c85a","tarball":"https://registry.npmjs.org/repeating/-/repeating-1.0.0.tgz"},"engines":{"node":">=0.10.0"}},"1.0.1":{"name":"repeating","version":"1.0.1","dependencies":{"is-finite":"^1.0.0","meow":"^1.0.0"},"devDependencies":{"ava":"0.0.4"},"bin":{"repeating":"cli.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"f894e2bc284d8b4aaf83e9018f37a64279e5c377","tarball":"https://registry.npmjs.org/repeating/-/repeating-1.0.1.tgz"},"engines":{"node":">=0.10.0"}},"1.1.0":{"name":"repeating","version":"1.1.0","dependencies":{"is-finite":"^1.0.0","meow":"^1.0.0"},"devDependencies":{"ava":"0.0.4"},"bin":{"repeating":"cli.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"1977511fd1d58075dcb6abbbb2b627edd45e41dc","tarball":"https://registry.npmjs.org/repeating/-/repeating-1.1.0.tgz"},"engines":{"node":">=0.10.0"}},"1.1.1":{"name":"repeating","version":"1.1.1","dependencies":{"is-finite":"^1.0.0","meow":"^2.0.0"},"devDependencies":{"ava":"0.0.4"},"bin":{"repeating":"cli.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"2dfe71fb0baf78249e8ec6a537ec3dd63f48bb22","tarball":"https://registry.npmjs.org/repeating/-/repeating-1.1.1.tgz"},"engines":{"node":">=0.10.0"}},"1.1.2":{"name":"repeating","version":"1.1.2","dependencies":{"is-finite":"^1.0.0","meow":"^3.0.0"},"devDependencies":{"ava":"0.0.4"},"bin":{"repeating":"cli.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"dcced290c4d22df9818746eb5257679d27fe0283","tarball":"https://registry.npmjs.org/repeating/-/repeating-1.1.2.tgz"},"engines":{"node":">=0.10.0"}},"1.1.3":{"name":"repeating","version":"1.1.3","dependencies":{"is-finite":"^1.0.0"},"devDependencies":{"ava":"0.0.4"},"bin":{"repeating":"cli.js"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"3d4114218877537494f97f77f9785fab810fa4ac","tarball":"https://registry.npmjs.org/repeating/-/repeating-1.1.3.tgz"},"engines":{"node":">=0.10.0"}},"2.0.0":{"name":"repeating","version":"2.0.0","dependencies":{"is-finite":"^1.0.0"},"devDependencies":{"ava":"0.0.4","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"fd27d6d264d18fbebfaa56553dd7b82535a5034e","tarball":"https://registry.npmjs.org/repeating/-/repeating-2.0.0.tgz"},"engines":{"node":">=0.10.0"}},"2.0.1":{"name":"repeating","version":"2.0.1","dependencies":{"is-finite":"^1.0.0"},"devDependencies":{"ava":"*","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"5214c53a926d3552707527fbab415dbc08d06dda","tarball":"https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz"},"engines":{"node":">=0.10.0"}},"3.0.0":{"name":"repeating","version":"3.0.0","devDependencies":{"ava":"*","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"f4c376fdd2015761f6f96f4303b1224d581e802f","tarball":"https://registry.npmjs.org/repeating/-/repeating-3.0.0.tgz"},"engines":{"node":">=4"}}},"name":"repeating","dist-tags":{"latest":"3.0.0"},"modified":"2017-03-10T09:14:15.854Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/d5/b4/ee937add3df2b9c5fc1b7d3a56bc2df6bdd33face46c7ba5c8f6a40900436da8ccca73c6d9cf9e45718e33978b2ca1ce5a731f4a6a55e5f2381b32bc240a b/npm/.npm/_cacache/content-v2/sha512/d5/b4/ee937add3df2b9c5fc1b7d3a56bc2df6bdd33face46c7ba5c8f6a40900436da8ccca73c6d9cf9e45718e33978b2ca1ce5a731f4a6a55e5f2381b32bc240a new file mode 100644 index 0000000..69a3cf1 --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/d5/b4/ee937add3df2b9c5fc1b7d3a56bc2df6bdd33face46c7ba5c8f6a40900436da8ccca73c6d9cf9e45718e33978b2ca1ce5a731f4a6a55e5f2381b32bc240a @@ -0,0 +1 @@ +{"versions":{"1.1.1":{"name":"once","version":"1.1.1","dependencies":{},"devDependencies":{"tap":"~0.3.0"},"_hasShrinkwrap":false,"directories":{"test":"test"},"dist":{"shasum":"9db574933ccb08c3a7614d154032c09ea6f339e7","tarball":"https://registry.npmjs.org/once/-/once-1.1.1.tgz"}},"1.2.0":{"name":"once","version":"1.2.0","dependencies":{},"devDependencies":{"tap":"~0.3.0"},"_hasShrinkwrap":false,"directories":{"test":"test"},"dist":{"shasum":"de1905c636af874a8fba862d9aabddd1f920461c","tarball":"https://registry.npmjs.org/once/-/once-1.2.0.tgz"}},"1.3.0":{"name":"once","version":"1.3.0","dependencies":{},"devDependencies":{"tap":"~0.3.0"},"_hasShrinkwrap":false,"directories":{"test":"test"},"dist":{"shasum":"151af86bfc1f08c4b9f07d06ab250ffcbeb56581","tarball":"https://registry.npmjs.org/once/-/once-1.3.0.tgz"}},"1.3.1":{"name":"once","version":"1.3.1","dependencies":{"wrappy":"1"},"devDependencies":{"tap":"~0.3.0"},"_hasShrinkwrap":false,"directories":{"test":"test"},"dist":{"shasum":"f3f3e4da5b7d27b5c732969ee3e67e729457b31f","tarball":"https://registry.npmjs.org/once/-/once-1.3.1.tgz"}},"1.3.2":{"name":"once","version":"1.3.2","dependencies":{"wrappy":"1"},"devDependencies":{"tap":"~0.3.0"},"_hasShrinkwrap":false,"directories":{"test":"test"},"dist":{"shasum":"d8feeca93b039ec1dcdee7741c92bdac5e28081b","tarball":"https://registry.npmjs.org/once/-/once-1.3.2.tgz"}},"1.3.3":{"name":"once","version":"1.3.3","dependencies":{"wrappy":"1"},"devDependencies":{"tap":"^1.2.0"},"_hasShrinkwrap":false,"directories":{"test":"test"},"dist":{"shasum":"b2e261557ce4c314ec8304f3fa82663e4297ca20","tarball":"https://registry.npmjs.org/once/-/once-1.3.3.tgz"}},"1.4.0":{"name":"once","version":"1.4.0","dependencies":{"wrappy":"1"},"devDependencies":{"tap":"^7.0.1"},"_hasShrinkwrap":false,"directories":{"test":"test"},"dist":{"shasum":"583b1aa775961d4b113ac17d9c50baef9dd76bd1","tarball":"https://registry.npmjs.org/once/-/once-1.4.0.tgz"}}},"name":"once","dist-tags":{"latest":"1.4.0"},"modified":"2018-03-11T12:37:07.947Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/d6/6d/fee50bc361f47596dafc86389a88d8dd77119d416707d2bc3588a2a2427174fb1b604dace2ad24c6bbaf117213f28753819e0d5b0548cb997f2af4da680b b/npm/.npm/_cacache/content-v2/sha512/d6/6d/fee50bc361f47596dafc86389a88d8dd77119d416707d2bc3588a2a2427174fb1b604dace2ad24c6bbaf117213f28753819e0d5b0548cb997f2af4da680b new file mode 100644 index 0000000..e0f5d5b Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha512/d6/6d/fee50bc361f47596dafc86389a88d8dd77119d416707d2bc3588a2a2427174fb1b604dace2ad24c6bbaf117213f28753819e0d5b0548cb997f2af4da680b differ diff --git a/npm/.npm/_cacache/content-v2/sha512/d9/74/0009f1252a2f529556f509869d2835efa1a8cf80154f9ff80e40bad3bc774495a561afb6446ea25a46724b54d79a23870c10081509e04c285e8c5910c244 b/npm/.npm/_cacache/content-v2/sha512/d9/74/0009f1252a2f529556f509869d2835efa1a8cf80154f9ff80e40bad3bc774495a561afb6446ea25a46724b54d79a23870c10081509e04c285e8c5910c244 new file mode 100644 index 0000000..0c91e22 Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha512/d9/74/0009f1252a2f529556f509869d2835efa1a8cf80154f9ff80e40bad3bc774495a561afb6446ea25a46724b54d79a23870c10081509e04c285e8c5910c244 differ diff --git a/npm/.npm/_cacache/content-v2/sha512/dd/1a/cdd5760f58ac0b1f2442391b933f28c9e5f40b75dfdd98b94034e4804a2ba4fd545e365eb249d0ff02b0638af44690bf619adbd6557f1c85c53f70cbd003 b/npm/.npm/_cacache/content-v2/sha512/dd/1a/cdd5760f58ac0b1f2442391b933f28c9e5f40b75dfdd98b94034e4804a2ba4fd545e365eb249d0ff02b0638af44690bf619adbd6557f1c85c53f70cbd003 new file mode 100644 index 0000000..e87b3c1 --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/dd/1a/cdd5760f58ac0b1f2442391b933f28c9e5f40b75dfdd98b94034e4804a2ba4fd545e365eb249d0ff02b0638af44690bf619adbd6557f1c85c53f70cbd003 @@ -0,0 +1 @@ +{"versions":{"1.0.0":{"name":"grunt-known-options","version":"1.0.0","dependencies":{},"devDependencies":{},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"d838d9b30ae45857f8439a876d7c04f7845a957b","tarball":"https://registry.npmjs.org/grunt-known-options/-/grunt-known-options-1.0.0.tgz"},"engines":{"node":">=0.10.0"}},"1.1.0":{"name":"grunt-known-options","version":"1.1.0","dependencies":{},"devDependencies":{},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"a4274eeb32fa765da5a7a3b1712617ce3b144149","tarball":"https://registry.npmjs.org/grunt-known-options/-/grunt-known-options-1.1.0.tgz"},"engines":{"node":">=0.10.0"}},"1.1.1":{"name":"grunt-known-options","version":"1.1.1","dependencies":{},"devDependencies":{},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-cHwsLqoighpu7TuYj5RonnEuxGVFnztcUqTqp5rXFGYL4OuPFofwC4Ycg7n9fYwvK6F5WbYgeVOwph9Crs2fsQ==","shasum":"6cc088107bd0219dc5d3e57d91923f469059804d","tarball":"https://registry.npmjs.org/grunt-known-options/-/grunt-known-options-1.1.1.tgz","fileCount":4,"unpackedSize":4362,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbeMutCRA9TVsSAnZWagAA0QUP/RpEkssM1CmUPuKtMo6M\nq/pvWlzkIHZcNvPjnfn6YD9uKMnrqVhWjeBTS3tXElxoXIm8AnZNtdBigpaV\nHDQiJN7TWiOs7ek4yUMrlyvqxkTek16xwmzG2tqOdJ37xMfdb7F+SJQtoM/T\nfvCLrTf8EzzRnRwPloqYbonjfcq9VADhmWbO88EDqAzkpNzCDaclEAhIKSdL\nvbazVsBSW5hSG4YIo1HmH9TDbqXS3iDs2MKRM6o+CBH0ocErbd7Ajgka75tR\n7TWUw+QmBdGeS1//sQ31gvCtnvtYGP6nV/poYAeiVxSSMRG6nBbBxmjgymkL\n1Tk3rmvVSCJDv60riginjMpC6xb9+vnfBcSCGUvcj2gYLJMfrWVIeC6FAj7/\nak+K4lVUnG/+rahwR3+VqeiLsB3MsFxXE21qEt8oTHPMmWhSAO6jCXCi9a72\n3Nop7Q7rXHxGX3KlqIbJvdEbXNv2vXI/oYHsTYkenwaWM6BHRYFhyNAgzlF6\ngJ8ejIeawwWHaFVvSLIdNVEaGG1i0u7a9y6cB2pUtyQnaFB+mcrkt78N+JA/\nYpwecZqYWAyLffXA0Ere48uvb9WStU2t+dJbL1EjxhWvwAteyUfTm2xcmsIA\nxHodd3STmnrkvqdT5xBmKZ0xayLh6li8mw22H7S7XuyaDbxLZfuGTbG3vCPC\nhBb+\r\n=FO++\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=0.10.0"}}},"name":"grunt-known-options","dist-tags":{"latest":"1.1.1"},"modified":"2018-08-19T01:45:19.447Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/e2/5d/2a66f7c1218402a6746a1aa85136ad75147e9f63cc715ebb7a71d66782bfa5552f1451b86e352a19fe2e08a4bb033cc578ffd5999c456843e1b843c0adaf b/npm/.npm/_cacache/content-v2/sha512/e2/5d/2a66f7c1218402a6746a1aa85136ad75147e9f63cc715ebb7a71d66782bfa5552f1451b86e352a19fe2e08a4bb033cc578ffd5999c456843e1b843c0adaf new file mode 100644 index 0000000..84c7fdd --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/e2/5d/2a66f7c1218402a6746a1aa85136ad75147e9f63cc715ebb7a71d66782bfa5552f1451b86e352a19fe2e08a4bb033cc578ffd5999c456843e1b843c0adaf @@ -0,0 +1 @@ +{"versions":{"1.0.0":{"name":"has-flag","version":"1.0.0","devDependencies":{"ava":"0.0.4"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"9d9e793165ce017a00f00418c43f942a7b1d11fa","tarball":"https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz"},"engines":{"node":">=0.10.0"}},"2.0.0":{"name":"has-flag","version":"2.0.0","devDependencies":{"ava":"*","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"e8207af1cc7b30d446cc70b734b5e8be18f88d51","tarball":"https://registry.npmjs.org/has-flag/-/has-flag-2.0.0.tgz"},"engines":{"node":">=0.10.0"}},"3.0.0":{"name":"has-flag","version":"3.0.0","devDependencies":{"ava":"*","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"b5d454dc2199ae225699f3467e5a07f3b955bafd","tarball":"https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz"},"engines":{"node":">=4"}}},"name":"has-flag","dist-tags":{"latest":"3.0.0"},"modified":"2018-03-20T18:07:36.172Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/e3/65/34e7210832228d03de7e30730fd8201808461d43285a59f3753c9015eca7d3cd203c5b3577a3f35fa4f17ba550e13f1dbca0eec82b10c0efa30655baf610 b/npm/.npm/_cacache/content-v2/sha512/e3/65/34e7210832228d03de7e30730fd8201808461d43285a59f3753c9015eca7d3cd203c5b3577a3f35fa4f17ba550e13f1dbca0eec82b10c0efa30655baf610 new file mode 100644 index 0000000..60e52ad --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/e3/65/34e7210832228d03de7e30730fd8201808461d43285a59f3753c9015eca7d3cd203c5b3577a3f35fa4f17ba550e13f1dbca0eec82b10c0efa30655baf610 @@ -0,0 +1 @@ +{"versions":{"0.1.0":{"name":"grunt-legacy-util","version":"0.1.0","dependencies":{"hooker":"~0.2.3","async":"~0.1.22","lodash":"~0.9.2","exit":"~0.1.1","underscore.string":"~2.2.1","getobject":"~0.1.0","which":"~1.0.5","callbackify":"^0.1.1"},"devDependencies":{"grunt-contrib-jshint":"~0.6.4","grunt-contrib-nodeunit":"~0.2.0","grunt":"^0.4.2","temporary":"0.0.8"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"58c61a55912e1dbc3c5e761d48f25d45bc236d47","tarball":"https://registry.npmjs.org/grunt-legacy-util/-/grunt-legacy-util-0.1.0.tgz"},"engines":{"node":">= 0.8.0"}},"0.1.1":{"name":"grunt-legacy-util","version":"0.1.1","dependencies":{"hooker":"~0.2.3","async":"~0.1.22","lodash":"~0.9.2","exit":"~0.1.1","underscore.string":"~2.2.1","getobject":"~0.1.0","which":"~1.0.5"},"devDependencies":{"grunt-contrib-jshint":"~0.6.4","grunt-contrib-nodeunit":"~0.2.0","grunt":"~0.4.2","temporary":"0.0.8"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"67c779c5cf661985eb775eed45f93352f09f93e3","tarball":"https://registry.npmjs.org/grunt-legacy-util/-/grunt-legacy-util-0.1.1.tgz"},"engines":{"node":">= 0.8.0"}},"0.1.2":{"name":"grunt-legacy-util","version":"0.1.2","dependencies":{"hooker":"~0.2.3","async":"~0.1.22","lodash":"~0.9.2","exit":"~0.1.1","underscore.string":"~2.2.1","getobject":"~0.1.0","which":"~1.0.5"},"devDependencies":{"grunt-contrib-jshint":"~0.6.4","grunt-contrib-nodeunit":"~0.2.0","grunt":"0.4.2","temporary":"0.0.8"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"be84d337ef4a0137dc8566092a46528fd8957ebd","tarball":"https://registry.npmjs.org/grunt-legacy-util/-/grunt-legacy-util-0.1.2.tgz"},"engines":{"node":">= 0.8.0"}},"0.2.0":{"name":"grunt-legacy-util","version":"0.2.0","dependencies":{"hooker":"~0.2.3","async":"~0.1.22","lodash":"~0.9.2","exit":"~0.1.1","underscore.string":"~2.2.1","getobject":"~0.1.0","which":"~1.0.5"},"devDependencies":{"grunt-contrib-jshint":"~0.10.0","grunt-contrib-nodeunit":"~0.2.0","grunt":"~0.4.2","temporary":"0.0.8","grunt-contrib-watch":"~0.6.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"93324884dbf7e37a9ff7c026dff451d94a9e554b","tarball":"https://registry.npmjs.org/grunt-legacy-util/-/grunt-legacy-util-0.2.0.tgz"},"engines":{"node":">= 0.8.0"}},"1.0.0-rc1":{"name":"grunt-legacy-util","version":"1.0.0-rc1","dependencies":{"async":"~1.5.2","exit":"~0.1.1","getobject":"~0.1.0","hooker":"~0.2.3","lodash":"~4.3.0","underscore.string":"~3.2.3","which":"~1.2.1"},"devDependencies":{"grunt":"~0.4.5","grunt-contrib-jshint":"~0.12.0","grunt-contrib-nodeunit":"~0.4.1","grunt-contrib-watch":"~0.6.1","temporary":"0.0.8"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"e9d2ddf57d337b03263f62af07037ed729b3d7bb","tarball":"https://registry.npmjs.org/grunt-legacy-util/-/grunt-legacy-util-1.0.0-rc1.tgz"},"engines":{"node":">= 0.10.0"}},"1.0.0":{"name":"grunt-legacy-util","version":"1.0.0","dependencies":{"async":"~1.5.2","exit":"~0.1.1","getobject":"~0.1.0","hooker":"~0.2.3","lodash":"~4.3.0","underscore.string":"~3.2.3","which":"~1.2.1"},"devDependencies":{"grunt":"^0.4.5","grunt-cli":"^1.2.0","grunt-contrib-jshint":"^1.0.0","grunt-contrib-nodeunit":"^1.0.0","grunt-contrib-watch":"^1.0.0","temporary":"0.0.8"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"386aa78dc6ed50986c2b18957265b1b48abb9b86","tarball":"https://registry.npmjs.org/grunt-legacy-util/-/grunt-legacy-util-1.0.0.tgz"},"engines":{"node":">= 0.10.0"}},"1.1.0":{"name":"grunt-legacy-util","version":"1.1.0","dependencies":{"async":"~1.5.2","exit":"~0.1.1","getobject":"~0.1.0","hooker":"~0.2.3","lodash":"~4.17.10","underscore.string":"~3.3.4","which":"~1.3.0"},"devDependencies":{"grunt":"^1.0.2","grunt-cli":"^1.2.0","grunt-contrib-jshint":"^1.0.0","grunt-contrib-nodeunit":"^2.0.0","grunt-contrib-watch":"^1.0.0","temporary":"0.0.8"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-5NVkkOmHGPkvDO30ZqtzUHnH6l0Z9ZFvNNMU6oAElMTX1PzYFk5pcyiu/mpZZA2Y/kymqaPITTIy4Cd3gPl92Q==","shasum":"4ce8eeb4cc5c1a90bcb3a2644e2f9c0b11ad5ba0","tarball":"https://registry.npmjs.org/grunt-legacy-util/-/grunt-legacy-util-1.1.0.tgz","fileCount":22,"unpackedSize":41880,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbAM0MCRA9TVsSAnZWagAArOMP/Aq8kNY0GsFLh/IYJmdr\nJ54FlruCkT97HTiTu5kXBjm9xK3j7A+DWagCu7mDu+Dw9/i6blI1ar9m/6Fk\nSgoE8PYi1LD0JInq37WcwMJ40dHnxsoDNhFuJDeFPLqNAoTPAUuGJ3jYBtc3\nIZh0vX+9V5czwdQ2XIEV8atL9nscNrFsIi7xPP3zYdwyDTYN6ovr/Qax1vDn\nFwYXAA+bq7M8RSnOmO4bIWcu/jJNYMjAnz0jy/H2kLGumY8sQA14T9mXChyF\n3Bsqq9YGv7Tq7+/BTLzIHJcFS1JxNpasI0zWPqRrMQfHZsgM6wm4e46G3BeF\ntESu0XH8iPkHWjIn32iJqjNfM50Yz7zzfPOXjAxiOSDPTWKCKcRHV2MvbSlD\n4bSicvhn6pKVvAI350SDLdNpaO2U6EbN8NvYxsW1khme1pGL9zEQ8pQEImv6\nwo+s/QGOwv0PJBh9mHhD6BcLYqLFbpRDRYXOM1pccX7d25DrrMPtcGs1Rp8q\nRrL1Jt+2cmXxARfhDgnQZWKsn3B+5Dwh+ZsvpJHVdPk3is9LkcF/wuGSsMe9\nItgSYoY2D6xeRc6Ha2pHWb7iqAJmuwTfcz9kRodPG9NRGBGEtCKeq8Hj/V9s\nZ2rhWx87YcSq9duUti6z05JLb3UPAuelHVyGouO2S2A2hQC2wjAvUWFJTRy6\nXF3j\r\n=DEio\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">= 6"}},"1.1.1":{"name":"grunt-legacy-util","version":"1.1.1","dependencies":{"async":"~1.5.2","exit":"~0.1.1","getobject":"~0.1.0","hooker":"~0.2.3","lodash":"~4.17.10","underscore.string":"~3.3.4","which":"~1.3.0"},"devDependencies":{"grunt":"^1.0.2","grunt-cli":"^1.2.0","grunt-contrib-jshint":"^1.0.0","grunt-contrib-nodeunit":"^2.0.0","grunt-contrib-watch":"^1.0.0","temporary":"0.0.8"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-9zyA29w/fBe6BIfjGENndwoe1Uy31BIXxTH3s8mga0Z5Bz2Sp4UCjkeyv2tI449ymkx3x26B+46FV4fXEddl5A==","shasum":"e10624e7c86034e5b870c8a8616743f0a0845e42","tarball":"https://registry.npmjs.org/grunt-legacy-util/-/grunt-legacy-util-1.1.1.tgz","fileCount":22,"unpackedSize":42387,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbAzGsCRA9TVsSAnZWagAA/vcP/jHsSMWWwC5bzryT3f5H\nXxCNWVVsJ61NtgFyaNtKyXcMZz305mH6DNNaRAngSCJaGtB0gI0FIhHHdZVr\nMI/D/C5bVUukL1NetLPfJxT9ByxlZvlaLsiqQMCV5jiUMaVkbSgvVH1SoPm8\n4lledGMW4TrVtoBPAISLAUfZaidG/yWyhG7cy5LQqOrmnYZkSpFkYJe4N1I0\n1GCimKm3i/AyonysLrvncN5TA+x6Q3VxSNOc8HZ3VajIle/GQ6NXm3YRe2Cc\nj06FFXqxzPcD+9H5Vtn02WPabRaHTdGLuFEYbibEcb2+D/ssICXetM9rilm4\nPTnJ1N+j33AxqWXvKOeTFioHMVNw39MRSOjyGuwlTi6DjJTDSfZ9Lgtel4Qe\n2nLhWH5JMasCuN/dSgRF+4OnkOPOBCbT+CqkOA21yNkp22MQauf+ny/Zx0Ul\nwsjK25Xum9AU9hwXiQwxHR01Gw+Xf/41hRxze/tCbA3D5ol7D8vSKJEUUzra\nownUx3wjyt3zvqRy0J6As1QndAgkJE32IVNzqO1FVRnGQZ6KivnpKLsnthg9\nHbck+Y8f3UdY6gA6G2gM9BVbAiFkA5IUGaiagZQ5h00jONfKJGz6NoI8aqgA\n3AhluDxgc5gTYJtgPPuhpdOgT++XGZfc44KrrD9xtvB3Q9EABKu4g/YjdzOB\nwfIe\r\n=Wz7X\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">= 6"}}},"name":"grunt-legacy-util","dist-tags":{"latest":"1.1.1","rc1":"1.0.0-rc1"},"modified":"2018-05-21T20:53:02.820Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/e6/72/943a0ace9f0e0afda5357d37ea3ffe42260bdf3189fb737a0a99992c18c5dc2a2e1ce3f7642794ecddd4f5fd150018c4859ee563e3ed9f5d2258125eb215 b/npm/.npm/_cacache/content-v2/sha512/e6/72/943a0ace9f0e0afda5357d37ea3ffe42260bdf3189fb737a0a99992c18c5dc2a2e1ce3f7642794ecddd4f5fd150018c4859ee563e3ed9f5d2258125eb215 new file mode 100644 index 0000000..cb24f8d --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/e6/72/943a0ace9f0e0afda5357d37ea3ffe42260bdf3189fb737a0a99992c18c5dc2a2e1ce3f7642794ecddd4f5fd150018c4859ee563e3ed9f5d2258125eb215 @@ -0,0 +1 @@ +{"versions":{"1.0.0":{"name":"pinkie-promise","version":"1.0.0","dependencies":{"pinkie":"^1.0.0"},"devDependencies":{"mocha":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"d1da67f5482563bb7cf57f286ae2822ecfbf3670","tarball":"https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-1.0.0.tgz"},"engines":{"node":">=0.10.0"}},"2.0.0":{"name":"pinkie-promise","version":"2.0.0","dependencies":{"pinkie":"^2.0.0"},"devDependencies":{"mocha":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"4c83538de1f6e660c29e0a13446844f7a7e88259","tarball":"https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.0.tgz"},"engines":{"node":">=0.10.0"}},"2.0.1":{"name":"pinkie-promise","version":"2.0.1","dependencies":{"pinkie":"^2.0.0"},"devDependencies":{"mocha":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"2135d6dfa7a358c069ac9b178776288228450ffa","tarball":"https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz"},"engines":{"node":">=0.10.0"}}},"name":"pinkie-promise","dist-tags":{"latest":"2.0.1"},"modified":"2018-03-15T20:14:02.225Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/eb/a3/9725ba08ee8b5ba588d40a18a6a7d4f61de855f4a4a1ef157315909d1c208c728c133aef58dda25e87d2281c8e48b00bc2b9bcf24ab23b817634e9891613 b/npm/.npm/_cacache/content-v2/sha512/eb/a3/9725ba08ee8b5ba588d40a18a6a7d4f61de855f4a4a1ef157315909d1c208c728c133aef58dda25e87d2281c8e48b00bc2b9bcf24ab23b817634e9891613 new file mode 100644 index 0000000..08435be --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/eb/a3/9725ba08ee8b5ba588d40a18a6a7d4f61de855f4a4a1ef157315909d1c208c728c133aef58dda25e87d2281c8e48b00bc2b9bcf24ab23b817634e9891613 @@ -0,0 +1 @@ +{"versions":{"1.0.0":{"name":"escape-string-regexp","version":"1.0.0","devDependencies":{"mocha":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"0ca42ef5f3d8499fbc239fa0409ea849857d74c4","tarball":"https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.0.tgz"},"engines":{"node":">=0.10.0"}},"1.0.1":{"name":"escape-string-regexp","version":"1.0.1","devDependencies":{"mocha":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"78c76393afb84f102230d949a6125c7f3cf65904","tarball":"https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.1.tgz"},"engines":{"node":">=0.10.0"}},"1.0.2":{"name":"escape-string-regexp","version":"1.0.2","devDependencies":{"mocha":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"4dbc2fe674e71949caf3fb2695ce7f2dc1d9a8d1","tarball":"https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.2.tgz"},"engines":{"node":">=0.8.0"}},"1.0.3":{"name":"escape-string-regexp","version":"1.0.3","devDependencies":{"mocha":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"9e2d8b25bc2555c3336723750e03f099c2735bb5","tarball":"https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.3.tgz"},"engines":{"node":">=0.8.0"}},"1.0.4":{"name":"escape-string-regexp","version":"1.0.4","devDependencies":{"ava":"*","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"b85e679b46f72d03fbbe8a3bf7259d535c21b62f","tarball":"https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.4.tgz"},"engines":{"node":">=0.8.0"}},"1.0.5":{"name":"escape-string-regexp","version":"1.0.5","devDependencies":{"ava":"*","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"1b61c0562190a8dff6ae3bb2cf0200ca130b86d4","tarball":"https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz"},"engines":{"node":">=0.8.0"}}},"name":"escape-string-regexp","dist-tags":{"latest":"1.0.5"},"modified":"2018-03-08T17:41:53.097Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/ed/3f/c1c47d7dcdb7024daf1790c95b2b9953a355ad824162dc6bdd584c8db9ce157b1efff43a9b9e9b1fe0933275c7e3f470a0e335161532f765aea56a9839ff b/npm/.npm/_cacache/content-v2/sha512/ed/3f/c1c47d7dcdb7024daf1790c95b2b9953a355ad824162dc6bdd584c8db9ce157b1efff43a9b9e9b1fe0933275c7e3f470a0e335161532f765aea56a9839ff new file mode 100644 index 0000000..98f577b Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha512/ed/3f/c1c47d7dcdb7024daf1790c95b2b9953a355ad824162dc6bdd584c8db9ce157b1efff43a9b9e9b1fe0933275c7e3f470a0e335161532f765aea56a9839ff differ diff --git a/npm/.npm/_cacache/content-v2/sha512/ed/d1/47366a9e15212dd9906c0ab8a8aca9e7dd9da98fe7ddf64988e90a16c38fff0cbfa270405f73453ba890a2b2aad3b0a4e3c387cd172da95bd3aa4ad0fce2 b/npm/.npm/_cacache/content-v2/sha512/ed/d1/47366a9e15212dd9906c0ab8a8aca9e7dd9da98fe7ddf64988e90a16c38fff0cbfa270405f73453ba890a2b2aad3b0a4e3c387cd172da95bd3aa4ad0fce2 new file mode 100644 index 0000000..f01936b Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha512/ed/d1/47366a9e15212dd9906c0ab8a8aca9e7dd9da98fe7ddf64988e90a16c38fff0cbfa270405f73453ba890a2b2aad3b0a4e3c387cd172da95bd3aa4ad0fce2 differ diff --git a/npm/.npm/_cacache/content-v2/sha512/f0/27/aa63ef37cc77d588536373db3b67836b18c150fd1c1a57880af91797b27ae9fb16826410fa91139ba9352109c72719b06d95f4a1555b41e1b3370f365542 b/npm/.npm/_cacache/content-v2/sha512/f0/27/aa63ef37cc77d588536373db3b67836b18c150fd1c1a57880af91797b27ae9fb16826410fa91139ba9352109c72719b06d95f4a1555b41e1b3370f365542 new file mode 100644 index 0000000..c2a44bf --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/f0/27/aa63ef37cc77d588536373db3b67836b18c150fd1c1a57880af91797b27ae9fb16826410fa91139ba9352109c72719b06d95f4a1555b41e1b3370f365542 @@ -0,0 +1 @@ +{"versions":{"0.1.0":{"name":"color-convert","version":"0.1.0","dependencies":{},"devDependencies":{"browserify":">=1.0.0","uglify-js":"1.0.x"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"1d55fd8784288d323a6fcc31077f79b632a12ec9","tarball":"https://registry.npmjs.org/color-convert/-/color-convert-0.1.0.tgz"},"engines":{"node":"*"}},"0.2.0":{"name":"color-convert","version":"0.2.0","dependencies":{},"devDependencies":{"browserify":">=1.0.0","uglify-js":"1.0.x"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"004174fa511dac015ef29a796a97ab7cf095cea1","tarball":"https://registry.npmjs.org/color-convert/-/color-convert-0.2.0.tgz"},"engines":{"node":"*"}},"0.2.1":{"name":"color-convert","version":"0.2.1","dependencies":{},"devDependencies":{"browserify":">=1.0.0","uglify-js":"1.0.x"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"363cab23c94b31a0d64db71048b8c6a940f8c68c","tarball":"https://registry.npmjs.org/color-convert/-/color-convert-0.2.1.tgz"},"engines":{"node":"*"}},"0.3.0":{"name":"color-convert","version":"0.3.0","dependencies":{},"devDependencies":{"browserify":">=1.0.0","uglify-js":"1.0.x"},"directories":{},"dist":{"shasum":"b80a94e5791179ebe70b75284d95c6d43ad1367e","tarball":"https://registry.npmjs.org/color-convert/-/color-convert-0.3.0.tgz"},"engines":{"node":"*"}},"0.3.1":{"name":"color-convert","version":"0.3.1","dependencies":{},"devDependencies":{"browserify":">=1.0.0","uglify-js":"1.0.x"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"859d892b81dc849eb95cefea35084072cb362c68","tarball":"https://registry.npmjs.org/color-convert/-/color-convert-0.3.1.tgz"},"engines":{"node":"*"}},"0.3.4":{"name":"color-convert","version":"0.3.4","devDependencies":{"browserify":">=1.0.0","uglify-js":"1.0.x"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"e5e3ab2028a57bc68d904bbfbf2ed7fd5a31a26c","tarball":"https://registry.npmjs.org/color-convert/-/color-convert-0.3.4.tgz"}},"0.4.0":{"name":"color-convert","version":"0.4.0","devDependencies":{"browserify":">=1.0.0","uglify-js":"1.0.x"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"100207b7662987e3c5c7d7c491fbda0f58a692e1","tarball":"https://registry.npmjs.org/color-convert/-/color-convert-0.4.0.tgz"}},"0.5.0":{"name":"color-convert","version":"0.5.0","devDependencies":{"browserify":">=1.0.0","uglify-js":"1.0.x"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"4032cab2128c81670c7b394d77b6783f49caaaf7","tarball":"https://registry.npmjs.org/color-convert/-/color-convert-0.5.0.tgz"}},"0.5.1":{"name":"color-convert","version":"0.5.1","devDependencies":{"browserify":"^6.1.0","uglify-js":"1.0.x","grunt":"^0.4.5","grunt-contrib-uglify":"^0.6.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"ef672a5d7410f0328f28771aa1d3a52dcbe98bf5","tarball":"https://registry.npmjs.org/color-convert/-/color-convert-0.5.1.tgz"}},"0.5.2":{"name":"color-convert","version":"0.5.2","devDependencies":{"browserify":"^6.1.0","uglify-js":"1.0.x","grunt":"^0.4.5","grunt-contrib-uglify":"^0.6.0"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"febd9efc33674df3374ff8eeaec3bc56c79a9b35","tarball":"https://registry.npmjs.org/color-convert/-/color-convert-0.5.2.tgz"}},"0.5.3":{"name":"color-convert","version":"0.5.3","devDependencies":{},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"bdb6c69ce660fadffe0b0007cc447e1b9f7282bd","tarball":"https://registry.npmjs.org/color-convert/-/color-convert-0.5.3.tgz"}},"0.6.0":{"name":"color-convert","version":"0.6.0","devDependencies":{},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"e1fbd9e9c2602012b1116267e25d5295ab1addc1","tarball":"https://registry.npmjs.org/color-convert/-/color-convert-0.6.0.tgz"}},"0.7.0":{"name":"color-convert","version":"0.7.0","devDependencies":{"xo":"^0.11.2"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"f62db9abe719dfe10263a9c175824d8d2f956dcb","tarball":"https://registry.npmjs.org/color-convert/-/color-convert-0.7.0.tgz"}},"1.0.0":{"name":"color-convert","version":"1.0.0","devDependencies":{"chalk":"^1.1.1","xo":"^0.11.2"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"3c26fcd885d272d45beacf6e41baba75c89a8579","tarball":"https://registry.npmjs.org/color-convert/-/color-convert-1.0.0.tgz"}},"1.1.0":{"name":"color-convert","version":"1.1.0","devDependencies":{"chalk":"^1.1.1","xo":"^0.11.2"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"62b80961c1282f495177c5b49920072fed228f82","tarball":"https://registry.npmjs.org/color-convert/-/color-convert-1.1.0.tgz"}},"1.1.1":{"name":"color-convert","version":"1.1.1","devDependencies":{"chalk":"^1.1.1","xo":"^0.11.2"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"7fdb09212afef46d88e0fa080c4b1b9cb8d8564e","tarball":"https://registry.npmjs.org/color-convert/-/color-convert-1.1.1.tgz"}},"1.1.2":{"name":"color-convert","version":"1.1.2","devDependencies":{"chalk":"^1.1.1","xo":"^0.11.2"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"054024a472480dc345badb27cfe6de2eca9e4624","tarball":"https://registry.npmjs.org/color-convert/-/color-convert-1.1.2.tgz"}},"1.2.0":{"name":"color-convert","version":"1.2.0","devDependencies":{"chalk":"^1.1.1","xo":"^0.11.2"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"9c93f193d05fe1a4fb18b237d76662786646ab94","tarball":"https://registry.npmjs.org/color-convert/-/color-convert-1.2.0.tgz"}},"1.2.1":{"name":"color-convert","version":"1.2.1","devDependencies":{"chalk":"^1.1.1","xo":"^0.11.2"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"8599a9edc7dadbb7eb46d6b1e36ad7d742f5defa","tarball":"https://registry.npmjs.org/color-convert/-/color-convert-1.2.1.tgz"}},"1.2.2":{"name":"color-convert","version":"1.2.2","devDependencies":{"chalk":"^1.1.1","xo":"^0.11.2"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"efbe95697dd37d7eecfae1fd2cfbeb84cc25064e","tarball":"https://registry.npmjs.org/color-convert/-/color-convert-1.2.2.tgz"}},"1.3.0":{"name":"color-convert","version":"1.3.0","devDependencies":{"chalk":"^1.1.1","xo":"^0.11.2"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"4ff8595dee13e30270653a9725b1adce6c3d728f","tarball":"https://registry.npmjs.org/color-convert/-/color-convert-1.3.0.tgz"}},"1.3.1":{"name":"color-convert","version":"1.3.1","devDependencies":{"chalk":"^1.1.1","xo":"^0.11.2"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"c8ce797c96c62153994888ed9402959fdd2398f9","tarball":"https://registry.npmjs.org/color-convert/-/color-convert-1.3.1.tgz"}},"1.4.0":{"name":"color-convert","version":"1.4.0","devDependencies":{"chalk":"^1.1.1","xo":"^0.11.2"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"4ad8f531c31af5d8cbc5a4af2bb6000891d398e1","tarball":"https://registry.npmjs.org/color-convert/-/color-convert-1.4.0.tgz"}},"1.5.0":{"name":"color-convert","version":"1.5.0","devDependencies":{"chalk":"^1.1.1","xo":"^0.11.2"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"7a2b4efb4488df85bca6443cb038b7100fbe7de1","tarball":"https://registry.npmjs.org/color-convert/-/color-convert-1.5.0.tgz"}},"1.6.0":{"name":"color-convert","version":"1.6.0","dependencies":{"color-name":"^1.1.1"},"devDependencies":{"chalk":"^1.1.1","xo":"^0.11.2"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"7592755faf53938a05b1ea8e5374cab77d6dd190","tarball":"https://registry.npmjs.org/color-convert/-/color-convert-1.6.0.tgz"}},"1.7.0":{"name":"color-convert","version":"1.7.0","dependencies":{"color-name":"^1.1.1"},"devDependencies":{"chalk":"^1.1.1","xo":"^0.11.2"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"473bcddfa54b76a77a3d435aceccfbf3d99cbbb0","tarball":"https://registry.npmjs.org/color-convert/-/color-convert-1.7.0.tgz"}},"1.8.0":{"name":"color-convert","version":"1.8.0","dependencies":{"color-name":"^1.1.1"},"devDependencies":{"chalk":"^1.1.1","xo":"^0.11.2"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"123bc83c8194677fd508eeba0e0a1a5169ea424b","tarball":"https://registry.npmjs.org/color-convert/-/color-convert-1.8.0.tgz"},"deprecated":"This version uses faulty channel labels; please upgrade to 1.8.2"},"1.8.1":{"name":"color-convert","version":"1.8.1","dependencies":{"color-name":"^1.1.1"},"devDependencies":{"chalk":"^1.1.1","xo":"^0.11.2"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"840bd3844b690aeb7b9f6a59f70f940267e6bb94","tarball":"https://registry.npmjs.org/color-convert/-/color-convert-1.8.1.tgz"},"deprecated":"This version uses faulty channel labels; please upgrade to 1.8.2"},"1.8.2":{"name":"color-convert","version":"1.8.2","dependencies":{"color-name":"^1.1.1"},"devDependencies":{"chalk":"^1.1.1","xo":"^0.11.2"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"be868184d7c8631766d54e7078e2672d7c7e3339","tarball":"https://registry.npmjs.org/color-convert/-/color-convert-1.8.2.tgz"}},"1.9.0":{"name":"color-convert","version":"1.9.0","dependencies":{"color-name":"^1.1.1"},"devDependencies":{"chalk":"^1.1.1","xo":"^0.11.2"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"1accf97dd739b983bf994d56fec8f95853641b7a","tarball":"https://registry.npmjs.org/color-convert/-/color-convert-1.9.0.tgz"}},"1.9.1":{"name":"color-convert","version":"1.9.1","dependencies":{"color-name":"^1.1.1"},"devDependencies":{"chalk":"^1.1.1","xo":"^0.11.2"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-mjGanIiwQJskCC18rPR6OmrZ6fm2Lc7PeGFYwCmy5J34wC6F1PzdGL6xeMfmgicfYcNLGuVFA3WzXtIDCQSZxQ==","shasum":"c1261107aeb2f294ebffec9ed9ecad529a6097ed","tarball":"https://registry.npmjs.org/color-convert/-/color-convert-1.9.1.tgz"}},"1.9.2":{"name":"color-convert","version":"1.9.2","dependencies":{"color-name":"1.1.1"},"devDependencies":{"chalk":"1.1.1","xo":"0.11.2"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-3NUJZdhMhcdPn8vJ9v2UQJoH0qqoGUkYTgFEPZaPjEtwmmKUfNV46zZmgB2M5M4DCEQHMaCfWHCxiBflLm04Tg==","shasum":"49881b8fba67df12a96bdf3f56c0aab9e7913147","tarball":"https://registry.npmjs.org/color-convert/-/color-convert-1.9.2.tgz","fileCount":7,"unpackedSize":26964,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbHyBFCRA9TVsSAnZWagAAEt4P+QG7yaLhjk4RsjyN2ql+\nIFw0QwJ7kZnkHrFpl787XEOamf/Co/EoY1fj0ZV848wnGYu44RIk55Xp3ZFc\nWisi5QtGjOKyX1RueJ8Y1tYbEsQ/8jeAUEAPA+hj7P4ZPTJIkqkz3gC4qbz0\nsVbdA0h0kYzKw9cHOUQIBmPQFxuRPRoJcImkSK+YaFSatKDFWbMo4D5gEvCV\nY6xfCREm4cFD1Ql8jV89PQc93+qTAWdODCtsPPDRTmmspamzalIBmdOOMiEw\n9SC3YLOJK+8OytNR7fA3JPcxn1RFDpFNNuRF9DRjfYns2cwFd8LGoeZvvOYK\nHadq72Ox3x4etT+eDqrjM+IJxxjYPJSF3CWC8p8BZab1ZXk9K8h6VJm/o7/d\nS3JLtyUQREfGUmUonH5KUuOYXO7Z3RLu4G1amiqPAn5BvFUqHCGuf7qZ58vL\nZ487Lv9Wjwq523KpuYaKGJhX0Wz61e0oT0VXCbYLY9/Ih9pZYrlj2vhOZewF\nXm+vhEatUdHmhDG5ezMsagc0mm46h2TB7A6O66RFcv9K7PHal9XMxpqQslg1\nyOD23N/l7BTdf//A5DOd1qKNOz/D2GOD4zjSy31JSHyAPjPC63k1h2Tb3bcz\ntjKZANSBfc4QVGMV91RT1tn0g+xl+aKGFEaJNO35HBxmEDMfGrIdaE4zAG5X\nrWJM\r\n=KzXz\r\n-----END PGP SIGNATURE-----\r\n"}},"1.9.3":{"name":"color-convert","version":"1.9.3","dependencies":{"color-name":"1.1.3"},"devDependencies":{"chalk":"1.1.1","xo":"0.11.2"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==","shasum":"bb71850690e1f136567de629d2d5471deda4c1e8","tarball":"https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz","fileCount":7,"unpackedSize":26964,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbhN53CRA9TVsSAnZWagAAM64QAKN/CRQ/i6v2JtWVkAob\ntboJSXsnqa/T2ozTyI5UngXYdqk+33XF1EOeTCQ4Heay0zYk8MtMDk8GCIO0\naKHGzhgC5lKYXYJ+6AE/0C/047LdgTUqEbYriwTkYTa1FyozgLMghdkBLklF\nADEZ3elhqjuCJNhe/CIHfAVBrNt/b7t8O6zhQY/n53wA6tU9N6gJq2R5njML\n/bKF5JxEX6RITFxC5jqUQecyDf1uYt0B/0IJQEylsdN8JqNrL6IzrXjLI2Xp\n37zH5P17Adl2yqIuwIoqmjDxuTFcAjA02WNPj4D0h88h7C5kmVvS5x3FC+D4\nYVZAwIKCqeFtYOtTMvoLhXd3Zgc7OSEg+KLi9UR9CxQrP42/28Bi0guZGCua\nOj/Tr660U4+sKr5Y9tRdpE8J55pm/wELPntR9TwVj8qnq8+C9efo8hDxMGT9\nJ+GWrrGAtEHP0ffs4W3O/yn5QfWXUmyIueNg7CjFgYG2pgMwSKOVgKsVc+iQ\nP6/bDsk3exESageTtRxA3gIK279QIRtqY+4M2HV7lcL3l9nPhiD841o2mep4\nVIcNiR3SD3MeAr5DBZqJKNd1qxDLRAAnCTNLfrQBx5hHtXgm9wDKrZNTdOxF\npUvIxhDTbkKIAmfSAI4fpZxwsSP10PRMHdtRRmDahZU9Uyj5qY+KEDhOnotq\nKF7e\r\n=S0I7\r\n-----END PGP SIGNATURE-----\r\n"}}},"name":"color-convert","dist-tags":{"latest":"1.9.3"},"modified":"2018-08-28T05:32:41.790Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/f3/f3/01ffb08828ee34efd0cb46589fb1ca1ad29cd2557f9458319a8d44cd1a23b1d92bdd452b35f60ca7537862d8e46dea636aaf3fad1588ef6f63163e046682 b/npm/.npm/_cacache/content-v2/sha512/f3/f3/01ffb08828ee34efd0cb46589fb1ca1ad29cd2557f9458319a8d44cd1a23b1d92bdd452b35f60ca7537862d8e46dea636aaf3fad1588ef6f63163e046682 new file mode 100644 index 0000000..82fc442 --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/f3/f3/01ffb08828ee34efd0cb46589fb1ca1ad29cd2557f9458319a8d44cd1a23b1d92bdd452b35f60ca7537862d8e46dea636aaf3fad1588ef6f63163e046682 @@ -0,0 +1 @@ +{"versions":{"1.0.0":{"name":"is-finite","version":"1.0.0","devDependencies":{"ava":"0.0.3"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"2b1dbad1162cdca6a4dc89f12b2f3dae12393282","tarball":"https://registry.npmjs.org/is-finite/-/is-finite-1.0.0.tgz"},"engines":{"node":">=0.10.0"}},"1.0.1":{"name":"is-finite","version":"1.0.1","dependencies":{"number-is-nan":"^1.0.0"},"devDependencies":{"ava":"0.0.4"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"6438603eaebe2793948ff4a4262ec8db3d62597b","tarball":"https://registry.npmjs.org/is-finite/-/is-finite-1.0.1.tgz"},"engines":{"node":">=0.10.0"}},"1.0.2":{"name":"is-finite","version":"1.0.2","dependencies":{"number-is-nan":"^1.0.0"},"devDependencies":{"ava":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"cc6677695602be550ef11e8b4aa6305342b6d0aa","tarball":"https://registry.npmjs.org/is-finite/-/is-finite-1.0.2.tgz"},"engines":{"node":">=0.10.0"}}},"name":"is-finite","dist-tags":{"latest":"1.0.2"},"modified":"2016-09-30T07:44:16.955Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/f4/c8/6a31c1668b63d439467d54404768e32c32b0f21246b9de201706cd4613659bd6a8add3482d54b988ba86055ed6d61a88d98d2b6bbdbfbf8f515014374650 b/npm/.npm/_cacache/content-v2/sha512/f4/c8/6a31c1668b63d439467d54404768e32c32b0f21246b9de201706cd4613659bd6a8add3482d54b988ba86055ed6d61a88d98d2b6bbdbfbf8f515014374650 new file mode 100644 index 0000000..7931acc --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/f4/c8/6a31c1668b63d439467d54404768e32c32b0f21246b9de201706cd4613659bd6a8add3482d54b988ba86055ed6d61a88d98d2b6bbdbfbf8f515014374650 @@ -0,0 +1 @@ +{"versions":{"1.0.0":{"name":"map-obj","version":"1.0.0","devDependencies":{"ava":"0.0.4"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"bcbdf6756758763c182daf79e18094a2f1c85766","tarball":"https://registry.npmjs.org/map-obj/-/map-obj-1.0.0.tgz"},"engines":{"node":">=0.10.0"}},"1.0.1":{"name":"map-obj","version":"1.0.1","devDependencies":{"ava":"0.0.4"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"d933ceb9205d82bdcf4886f6742bdc2b4dea146d","tarball":"https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz"},"engines":{"node":">=0.10.0"}},"2.0.0":{"name":"map-obj","version":"2.0.0","devDependencies":{"ava":"*","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"a65cd29087a92598b8791257a523e021222ac1f9","tarball":"https://registry.npmjs.org/map-obj/-/map-obj-2.0.0.tgz"},"engines":{"node":">=4"}},"3.0.0":{"name":"map-obj","version":"3.0.0","devDependencies":{"ava":"*","xo":"*"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-Ot+2wruG8WqTbJngDxz0Ifm03y2pO4iL+brq/l+yEkGjUza03BnMQqX2XT//Jls8MOOl2VTHviAoLX+/nq/HXw==","shasum":"4221cc62360f88c0735f9e7c0813bd889657f490","tarball":"https://registry.npmjs.org/map-obj/-/map-obj-3.0.0.tgz","fileCount":4,"unpackedSize":3828,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbapFHCRA9TVsSAnZWagAASvIP/0rnvWwHNZAH8bWVBSC8\nAqJmb5GURwi3HxLfLzMdLWIErLn/oGhz2aALSZbEoiiDEP7fVJTWxtY5ihiv\nWd/fgi/iU4HFsuCyIl02nF0UiMDzFiU+09UhDfTQUZdKgYrH/UZ1K9NUxbzF\nn39PWz4FKqChUIX6yIzOyHrMTueQiuL0+AMDhId8naFiWV5jMwe5x6xuOOr1\nHeStv/Sug+LGgf+481CKidw2ZpaORq0GxcnOERSjR45aaWC36SbUjQiv7eFl\nIEvdZ9DMa7IOI2HewgGpp5clt/x9sv/uco69jAjunJbz/z+D6u17X2+Tiyce\ntVSgDTS1ipVv5kp8PHUwOIbaJytw+RVj8XXmVilMhoZdLBkWm3ENuWUxobFC\ntRxMeolAWg2wZ5Kurzyf9utCV4URdR1BC/+Wy+uE6kEsIwcb3fxTwOsQxCSF\nPu5nCscYsz4Sy8MBOZ+QaBFUjqZzf1gPXJll+eMHmGxhHNFl5QTJVMm6fCDo\ni3JW1BJVbzLap2Rs9Fzj9qyEOpi83bnt+w8KdoT5wE2OqeIMbKFMoRjBxYHn\nbt1PP5XeyOwZYZ6xh+7uQyIY2kVBb+mhKNbZRRVUtVgwYLaI3j1PH04q9csX\nvQ1Hn5CbS/KvWWXsR7C26s4rng902wYxNANUKI5wJwdjUXTapq0c26sEQvtb\nh9K/\r\n=gFyF\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">=6"}}},"name":"map-obj","dist-tags":{"latest":"3.0.0"},"modified":"2018-08-08T06:44:29.240Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/f6/38/d415b4cf7c4cb747f69dff6a0d6cab56f47828be5e4ed45bc558a90a6e5357a0dfcea2eebef7e28aa213cad7761cdff4f2ba7c96849a7a82f44d47f3cf03 b/npm/.npm/_cacache/content-v2/sha512/f6/38/d415b4cf7c4cb747f69dff6a0d6cab56f47828be5e4ed45bc558a90a6e5357a0dfcea2eebef7e28aa213cad7761cdff4f2ba7c96849a7a82f44d47f3cf03 new file mode 100644 index 0000000..d1f8535 Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha512/f6/38/d415b4cf7c4cb747f69dff6a0d6cab56f47828be5e4ed45bc558a90a6e5357a0dfcea2eebef7e28aa213cad7761cdff4f2ba7c96849a7a82f44d47f3cf03 differ diff --git a/npm/.npm/_cacache/content-v2/sha512/f6/fe/0a9625cde12a850f97cd141f0bbb91c06b4a218f7271e6f267ffa0a3e5c5b67f317b5040ed7492611ae4ac3ec7dcd6c9fde89c59838b03f97c0613e54684 b/npm/.npm/_cacache/content-v2/sha512/f6/fe/0a9625cde12a850f97cd141f0bbb91c06b4a218f7271e6f267ffa0a3e5c5b67f317b5040ed7492611ae4ac3ec7dcd6c9fde89c59838b03f97c0613e54684 new file mode 100644 index 0000000..d909b3a --- /dev/null +++ b/npm/.npm/_cacache/content-v2/sha512/f6/fe/0a9625cde12a850f97cd141f0bbb91c06b4a218f7271e6f267ffa0a3e5c5b67f317b5040ed7492611ae4ac3ec7dcd6c9fde89c59838b03f97c0613e54684 @@ -0,0 +1 @@ +{"versions":{"0.1.0":{"name":"is-arrayish","version":"0.1.0","devDependencies":{"coffee-script":"^1.9.3","coveralls":"^2.11.2","istanbul":"^0.3.17","mocha":"^2.2.5","should":"^7.0.1","xo":"^0.6.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"c49592c8ad839e697a8f1cb1c9c54d3ec14a8a68","tarball":"https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.1.0.tgz"}},"0.1.1":{"name":"is-arrayish","version":"0.1.1","devDependencies":{"coffee-script":"^1.9.3","coveralls":"^2.11.2","istanbul":"^0.3.17","mocha":"^2.2.5","should":"^7.0.1","xo":"^0.6.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"09534c70ed8149f3c55cf96d6cc37d0055140aa9","tarball":"https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.1.1.tgz"}},"0.2.0":{"name":"is-arrayish","version":"0.2.0","devDependencies":{"coffee-script":"^1.9.3","coveralls":"^2.11.2","istanbul":"^0.3.17","mocha":"^2.2.5","should":"^7.0.1","xo":"^0.6.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"12b44c2efd298c5ef2eea7f63f6de34a87efd5fd","tarball":"https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.0.tgz"}},"0.2.1":{"name":"is-arrayish","version":"0.2.1","devDependencies":{"coffee-script":"^1.9.3","coveralls":"^2.11.2","istanbul":"^0.3.17","mocha":"^2.2.5","should":"^7.0.1","xo":"^0.6.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"77c99840527aa8ecb1a8ba697b80645a7a926a9d","tarball":"https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz"}},"0.3.0":{"name":"is-arrayish","version":"0.3.0","devDependencies":{"coffee-script":"^1.9.3","coveralls":"^2.11.2","istanbul":"^0.3.17","mocha":"^2.2.5","should":"^7.0.1","xo":"^0.6.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"b687ade89150cc57d090db3c29fca1c7d1c770be","tarball":"https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.0.tgz"}},"0.3.1":{"name":"is-arrayish","version":"0.3.1","devDependencies":{"coffee-script":"^1.9.3","coveralls":"^2.11.2","istanbul":"^0.3.17","mocha":"^2.2.5","should":"^7.0.1","xo":"^0.6.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"shasum":"c2dfc386abaa0c3e33c48db3fe87059e69065efd","tarball":"https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.1.tgz"}},"0.3.2":{"name":"is-arrayish","version":"0.3.2","devDependencies":{"@zeit/eslint-config-node":"^0.3.0","@zeit/git-hooks":"^0.1.4","coffeescript":"^2.3.1","coveralls":"^3.0.1","eslint":"^4.19.1","istanbul":"^0.4.5","mocha":"^5.2.0","should":"^13.2.1"},"_hasShrinkwrap":false,"directories":{},"dist":{"integrity":"sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==","shasum":"4574a2ae56f7ab206896fb431eaeed066fdf8f03","tarball":"https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz","fileCount":5,"unpackedSize":54720,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbKLpKCRA9TVsSAnZWagAAFl4P/jzlgKRLsa41wcCqGj2h\nEaTcoT3zXf7HpaFzG+uCvgna+AKknEHNBgmQeLafM0seWWvAbV4OGq4J0nls\nbBDirWPBY1ohg8fDwle82PZe57b0OvGdkk+Q52oj26YI/b04gMV+0kpL1uTb\n26XlzPDR0wm9rIUKS3GqwrzU/7n5lSVXFUSHDPDFIn4QyzxG0IaYqB3FlY57\niOTT/XmyqZW70xORcQxTAXXYgp+KMsXA6hoS0ZGjIhYq+CbVjCVdEULIyrfz\nnuU/CmhtiuW24icBaqGjeEvFbM5fVnvNFkeMeWmDfJOVK83KyWLrtjHBbfVC\nU0wmdTDN8W/YtL4ZNXkVJwzph63BC0yAhRd1Db0yPL3Ymiz5a1STi439YxCp\nrPnKmNotFpit+UL6rQtMwOD6QG+FqY8HNzyRAZTwUo4UhMv+8N6pPygB+FZg\n+9xZdsWW8+GnFLmpyr0gEjgPu0CcPwczSEDTpka2sjks8MggmsF2nEZdBFgR\nszl4s8la/GxKgxuAkDr7kYQYea7PwWK412OyLeQG6wBdHDFN53/zjB/chLVw\nGdNvEt4+2g/igJSMzZpDb4e7L/DPF0Y3K3RRS8COMSBQL786D0FtjUNoh689\nGf54TxYlJEAjDaRNeVX6GYwjqIfeLsI9GXuI1iIDOo/Z1YoZQw9r/4acZDP5\n/uIe\r\n=cnL7\r\n-----END PGP SIGNATURE-----\r\n"}}},"name":"is-arrayish","dist-tags":{"latest":"0.3.2"},"modified":"2018-06-19T08:09:49.307Z"} \ No newline at end of file diff --git a/npm/.npm/_cacache/content-v2/sha512/f7/3c/80dbdc3f7c17ba0487e3184367770a1ed54cb7d41217c531f7b3c9a06b4679073d92a785028e47b2bf6b48e38f729a4c77c76e81fb8e855787d711d765e4 b/npm/.npm/_cacache/content-v2/sha512/f7/3c/80dbdc3f7c17ba0487e3184367770a1ed54cb7d41217c531f7b3c9a06b4679073d92a785028e47b2bf6b48e38f729a4c77c76e81fb8e855787d711d765e4 new file mode 100644 index 0000000..b043ccc Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha512/f7/3c/80dbdc3f7c17ba0487e3184367770a1ed54cb7d41217c531f7b3c9a06b4679073d92a785028e47b2bf6b48e38f729a4c77c76e81fb8e855787d711d765e4 differ diff --git a/npm/.npm/_cacache/content-v2/sha512/fc/9c/e664d3df2a8ae50abae6c56a903b8255a1d3be0d57795d7e0392870bff55a52e52952c4f7e49d1087a6a4e0310e158fcac2e57ba69fbe7fe183b0a4da4f6 b/npm/.npm/_cacache/content-v2/sha512/fc/9c/e664d3df2a8ae50abae6c56a903b8255a1d3be0d57795d7e0392870bff55a52e52952c4f7e49d1087a6a4e0310e158fcac2e57ba69fbe7fe183b0a4da4f6 new file mode 100644 index 0000000..9a5dd63 Binary files /dev/null and b/npm/.npm/_cacache/content-v2/sha512/fc/9c/e664d3df2a8ae50abae6c56a903b8255a1d3be0d57795d7e0392870bff55a52e52952c4f7e49d1087a6a4e0310e158fcac2e57ba69fbe7fe183b0a4da4f6 differ diff --git a/npm/.npm/_cacache/index-v5/00/5f/18224c2157be67c545ab9f5fde051127158e10b6eae5d7fc9efec64f4275 b/npm/.npm/_cacache/index-v5/00/5f/18224c2157be67c545ab9f5fde051127158e10b6eae5d7fc9efec64f4275 new file mode 100644 index 0000000..8d87f27 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/00/5f/18224c2157be67c545ab9f5fde051127158e10b6eae5d7fc9efec64f4275 @@ -0,0 +1,2 @@ + +821c18030d3355927ee9e301cf7e11225f576d9e {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/find-up","integrity":"sha512-pheqPgGHnG9tKk5jS6Zh12258SUvu4Wc33vRscILneXJi4vW26IQU7EX9bTmQZD6wButr6PsLZeG7wJxGy4lXg==","time":1540366553255,"size":3576,"metadata":{"url":"https://registry.npmjs.org/find-up","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:53 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["3576"],"connection":["keep-alive"],"set-cookie":["__cfduid=de37877763307c73cdce09f43308103f21540366553; expires=Thu, 24-Oct-19 07:35:53 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4edb9449aca-FRA"],"etag":["\"4cecdc4f8b8e51a562188294b778966c\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Mon, 18 Jun 2018 09:19:25 GMT"],"vary":["accept-encoding, accept"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/00/d5/071ea9e9c1631d7926c0b33fba7407b7169ffa151d7eb7fa25ef2fddad47 b/npm/.npm/_cacache/index-v5/00/d5/071ea9e9c1631d7926c0b33fba7407b7169ffa151d7eb7fa25ef2fddad47 new file mode 100644 index 0000000..41bd35d --- /dev/null +++ b/npm/.npm/_cacache/index-v5/00/d5/071ea9e9c1631d7926c0b33fba7407b7169ffa151d7eb7fa25ef2fddad47 @@ -0,0 +1,2 @@ + +a2161d13c45a433f821f48d888f1dc282a353598 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/async/-/async-1.5.2.tgz","integrity":"sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo=","time":1540366554234,"size":38923,"metadata":{"url":"https://registry.npmjs.org/async/-/async-1.5.2.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:async@https://registry.npmjs.org/async/-/async-1.5.2.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["38923"],"connection":["keep-alive"],"set-cookie":["__cfduid=d8ed73f7032d3c4f2f3fb0deda4c9d9b41540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f3dddf9aca-FRA"],"etag":["\"f8ccb67cf5f6e477dcfaecb631986630\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sat, 26 May 2018 17:31:28 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/01/42/263f99de2a31bc9291ca0c0799d0635cc6b3a6af6a66271f82cca1d7db74 b/npm/.npm/_cacache/index-v5/01/42/263f99de2a31bc9291ca0c0799d0635cc6b3a6af6a66271f82cca1d7db74 new file mode 100644 index 0000000..e444902 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/01/42/263f99de2a31bc9291ca0c0799d0635cc6b3a6af6a66271f82cca1d7db74 @@ -0,0 +1,2 @@ + +2729d047ef554aeaf4d1b562debc7de179687d58 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz","integrity":"sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=","time":1540366554956,"size":2074,"metadata":{"url":"https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:read-pkg@https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["2074"],"connection":["keep-alive"],"set-cookie":["__cfduid=d30ab153c77123272a42eeaa8a03b5dde1540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f7fe519726-FRA"],"etag":["\"c35de6ee14fc66999d84a2e20bdd478b\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 15:26:34 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/03/0e/a5de096d0c4ab6a28766f90f76a57fb5b3cd0007ef806b49ee73a1085880 b/npm/.npm/_cacache/index-v5/03/0e/a5de096d0c4ab6a28766f90f76a57fb5b3cd0007ef806b49ee73a1085880 new file mode 100644 index 0000000..20cf841 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/03/0e/a5de096d0c4ab6a28766f90f76a57fb5b3cd0007ef806b49ee73a1085880 @@ -0,0 +1,2 @@ + +b31204080e2ee7fe54a42c1c5cd32aff96e43576 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/grunt-known-options","integrity":"sha512-3RrN1XYPWKwLHyRCORuTPyjJ5fQLdd/dmLlANOSASiuk/VReNl6ySdD/ArBjivRGkL9hmtvWVX8chcU/cMvQAw==","time":1540366552766,"size":2122,"metadata":{"url":"https://registry.npmjs.org/grunt-known-options","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:52 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["2122"],"connection":["keep-alive"],"set-cookie":["__cfduid=d1d96ca40cad547a4e90ec6a48eaaaea91540366552; expires=Thu, 24-Oct-19 07:35:52 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4ea89a664c9-FRA"],"etag":["\"7b8c00062e5e14a9e936c869c57e029f\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 19 Aug 2018 01:45:20 GMT"],"vary":["accept-encoding, accept"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/03/87/421166c921d0547cfa62fb8708d21b55ad4632b2b2db5bd5443ee048866b b/npm/.npm/_cacache/index-v5/03/87/421166c921d0547cfa62fb8708d21b55ad4632b2b2db5bd5443ee048866b new file mode 100644 index 0000000..742ef4d --- /dev/null +++ b/npm/.npm/_cacache/index-v5/03/87/421166c921d0547cfa62fb8708d21b55ad4632b2b2db5bd5443ee048866b @@ -0,0 +1,2 @@ + +646607a18b567b7cd99480df9ffa68eb32464a69 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/findup-sync","integrity":"sha512-OJMm/+KPeC15squcStEBiGVvLeQEJC0EnLc5oZ6FPavqS1HYzIQHuXayok3OkjmoHa6tv4nZv/MhpTFtGwOPuw==","time":1540366552765,"size":6264,"metadata":{"url":"https://registry.npmjs.org/findup-sync","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:52 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["6264"],"connection":["keep-alive"],"set-cookie":["__cfduid=d916bbbe17a5070d79f5ad32f71fce5531540366552; expires=Thu, 24-Oct-19 07:35:52 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4ea8f1a9726-FRA"],"etag":["\"12ddc9c0a024a102861d16ee3d4c104d\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 00:41:56 GMT"],"vary":["accept-encoding, accept"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/03/ae/f47688f80447e366e508897bbb3f6c230eba6546477b7d069854c59abfcf b/npm/.npm/_cacache/index-v5/03/ae/f47688f80447e366e508897bbb3f6c230eba6546477b7d069854c59abfcf new file mode 100644 index 0000000..6e55fb6 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/03/ae/f47688f80447e366e508897bbb3f6c230eba6546477b7d069854c59abfcf @@ -0,0 +1,2 @@ + +b9eb0da962636d1f3ac43139f8f1ab92e4125f68 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.6.0.tgz","integrity":"sha1-W0b4AUft7leIcPCG0Eghz5mOVR8=","time":1540366554973,"size":2532,"metadata":{"url":"https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.6.0.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:loud-rejection@https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.6.0.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["2532"],"connection":["keep-alive"],"set-cookie":["__cfduid=d6ea2ed2ac12d5cfc0cecbadad40d90841540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f83fd39718-FRA"],"etag":["\"f4e5000493b48528f1805d7e633b112b\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 07:07:39 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/04/01/a04c785f8b2349df9c2e7280a5e9194b6995c89502b7ef0846cd6aa5d5b9 b/npm/.npm/_cacache/index-v5/04/01/a04c785f8b2349df9c2e7280a5e9194b6995c89502b7ef0846cd6aa5d5b9 new file mode 100644 index 0000000..dadcaad --- /dev/null +++ b/npm/.npm/_cacache/index-v5/04/01/a04c785f8b2349df9c2e7280a5e9194b6995c89502b7ef0846cd6aa5d5b9 @@ -0,0 +1,2 @@ + +ca536302bad5712f3edf3324c77529c0683dccd0 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/abbrev","integrity":"sha512-lk0BvHV8PWKsoHxtyCZ7GCJdv+BrFoiYx7DnR+YA9Uj/+hTg0/+JbwOB3aS7ZZtIGXdSQ28cmtnbnpCC/AAA2g==","time":1540366553977,"size":2050,"metadata":{"url":"https://registry.npmjs.org/abbrev","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:53 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["2050"],"connection":["keep-alive"],"set-cookie":["__cfduid=d162071ff706d63145bc32a7d93535d5f1540366553; expires=Thu, 24-Oct-19 07:35:53 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4f24b219726-FRA"],"etag":["\"1d13e4810a95009296c8eac7508c6298\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sat, 26 May 2018 16:03:07 GMT"],"vary":["accept-encoding, accept"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/04/2a/5363c96e6cd59b0bdb5206eaa04eda37e67518d41b1a66cfcf10c75a8235 b/npm/.npm/_cacache/index-v5/04/2a/5363c96e6cd59b0bdb5206eaa04eda37e67518d41b1a66cfcf10c75a8235 new file mode 100644 index 0000000..82ff191 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/04/2a/5363c96e6cd59b0bdb5206eaa04eda37e67518d41b1a66cfcf10c75a8235 @@ -0,0 +1,2 @@ + +262438ae1157118661c4464efa8fe31c626a6caa {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/spdx-license-ids","integrity":"sha512-F0OpSGTbRBgp0vavKdloYeXt1OiLKL3jFUFd71GZw7TSOf2dacTmNLAvoQnIvKN2NIU5GPjUSKuC+WpjmaNlZQ==","time":1540366553210,"size":8025,"metadata":{"url":"https://registry.npmjs.org/spdx-license-ids","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:53 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["8025"],"connection":["keep-alive"],"set-cookie":["__cfduid=d94c06b11e9ec5b66331af8f65a6f81ca1540366553; expires=Thu, 24-Oct-19 07:35:53 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4ed7ee0975c-FRA"],"etag":["\"f904b16f19fd5fe90c8bfc81ecc40916\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Fri, 07 Sep 2018 14:57:25 GMT"],"vary":["accept-encoding, accept"],"x-amz-meta-rev":["14-4c2d249ffbe2c186413b9b2ca2c478a5"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/05/4d/b9e061fc09d40fb3133fe137ccd3dd7e7612c56d8615c5dcafe9f00a6f65 b/npm/.npm/_cacache/index-v5/05/4d/b9e061fc09d40fb3133fe137ccd3dd7e7612c56d8615c5dcafe9f00a6f65 new file mode 100644 index 0000000..2551621 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/05/4d/b9e061fc09d40fb3133fe137ccd3dd7e7612c56d8615c5dcafe9f00a6f65 @@ -0,0 +1,2 @@ + +e96708509581bd11ec12d0d857240afbcfe7b578 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/eventemitter2","integrity":"sha512-VfJoYHR8veJPgnI/zbYJlRUqIrzt7xHmxRWnkTMRTEI0Hbjgo0xeIDgVglq0rhRDmXhydtmqjdhwbWKf8khM+w==","time":1540366552765,"size":12946,"metadata":{"url":"https://registry.npmjs.org/eventemitter2","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:52 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["12946"],"connection":["keep-alive"],"set-cookie":["__cfduid=d083fdb2433f56ba4f69a0fd933c1b47e1540366552; expires=Thu, 24-Oct-19 07:35:52 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4ea8c39c305-FRA"],"etag":["\"28d938498029aed22fd917c8c574d1e4\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Thu, 30 Aug 2018 19:24:12 GMT"],"vary":["accept-encoding, accept"],"x-amz-meta-rev":["143-22ef8b5d5afd618ff34e065fdc8c8f91"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/05/74/ad5eb961df98869e1dad24bfcb10d95340906656b3bd321cd3e60c0df865 b/npm/.npm/_cacache/index-v5/05/74/ad5eb961df98869e1dad24bfcb10d95340906656b3bd321cd3e60c0df865 new file mode 100644 index 0000000..5078c15 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/05/74/ad5eb961df98869e1dad24bfcb10d95340906656b3bd321cd3e60c0df865 @@ -0,0 +1,2 @@ + +298b3e6e92ed77e5ba6222d10581f49ed5cfaba5 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/grunt","integrity":"sha512-cKDpjRoQnA8k5ktUbT1GYRJyCWV0aYNUTm2lLZEo4iXHhFxGhcwgX5yekUueLY0SNRM1P/1aX/z5+7gLhsk/dQ==","time":1540366552676,"size":40847,"metadata":{"url":"https://registry.npmjs.org/grunt","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:52 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["40847"],"connection":["keep-alive"],"set-cookie":["__cfduid=d51d9d34a4ef13b9708ef716fe5e340fb1540366552; expires=Thu, 24-Oct-19 07:35:52 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4ea0997c2ab-FRA"],"etag":["\"0456768f0355d4c685f9221dc5968068\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Mon, 06 Aug 2018 14:29:44 GMT"],"vary":["accept-encoding, accept"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/06/e5/7e05a039711fd7f7d7b06c701885cdb32ea29663ac889fe4b51b65545fba b/npm/.npm/_cacache/index-v5/06/e5/7e05a039711fd7f7d7b06c701885cdb32ea29663ac889fe4b51b65545fba new file mode 100644 index 0000000..2dd5c1a --- /dev/null +++ b/npm/.npm/_cacache/index-v5/06/e5/7e05a039711fd7f7d7b06c701885cdb32ea29663ac889fe4b51b65545fba @@ -0,0 +1,2 @@ + +58950efc949ffe81dba613c62d309f699db8bf84 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/hooker/-/hooker-0.2.3.tgz","integrity":"sha1-uDT3I8xKJCqmWWNFnfbZhMXT2Vk=","time":1540366554811,"size":8673,"metadata":{"url":"https://registry.npmjs.org/hooker/-/hooker-0.2.3.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:hooker@https://registry.npmjs.org/hooker/-/hooker-0.2.3.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["8673"],"connection":["keep-alive"],"set-cookie":["__cfduid=d30ab153c77123272a42eeaa8a03b5dde1540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f69d969726-FRA"],"etag":["\"7854dc79999de84df2ae53583121755e\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 03:56:16 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/06/fd/7c77b8e62cc8a5284eb7338fe9503ca815b8d5461b0440f93deae9fb4f7f b/npm/.npm/_cacache/index-v5/06/fd/7c77b8e62cc8a5284eb7338fe9503ca815b8d5461b0440f93deae9fb4f7f new file mode 100644 index 0000000..1fe972b --- /dev/null +++ b/npm/.npm/_cacache/index-v5/06/fd/7c77b8e62cc8a5284eb7338fe9503ca815b8d5461b0440f93deae9fb4f7f @@ -0,0 +1,2 @@ + +0455b44246415b9769b4b99b182462af6f481a76 {"key":"pacote:range-manifest:https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz:sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366553432,"size":1,"metadata":{"id":"graceful-fs@4.1.11","manifest":{"name":"graceful-fs","version":"4.1.11","engines":{"node":">=0.4.0"},"dependencies":{},"optionalDependencies":{},"devDependencies":{"mkdirp":"^0.5.0","rimraf":"^2.2.8","tap":"^5.4.2"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz","_integrity":"sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=","_shasum":"0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658","_shrinkwrap":null,"bin":null,"_id":"graceful-fs@4.1.11"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/07/03/18f8f0e09d4c3ef5f73950a71f4b10ddca6824024adcb796639a7f376855 b/npm/.npm/_cacache/index-v5/07/03/18f8f0e09d4c3ef5f73950a71f4b10ddca6824024adcb796639a7f376855 new file mode 100644 index 0000000..45a6628 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/07/03/18f8f0e09d4c3ef5f73950a71f4b10ddca6824024adcb796639a7f376855 @@ -0,0 +1,2 @@ + +ae6641a25edea2395a587ccc13076a2e34dec7fc {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/findup-sync/-/findup-sync-0.3.0.tgz","integrity":"sha1-N5MKpdgWt3fANEXhlmzGeQpMCxY=","time":1540366554929,"size":2627,"metadata":{"url":"https://registry.npmjs.org/findup-sync/-/findup-sync-0.3.0.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:findup-sync@https://registry.npmjs.org/findup-sync/-/findup-sync-0.3.0.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["2627"],"connection":["keep-alive"],"set-cookie":["__cfduid=d03a71f0c2920c45343a559974cc820751540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f7bf43c2a6-FRA"],"etag":["\"610208f77cd8d9bc43d717a8ab916e93\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 00:41:56 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/07/75/3faf7e5abdadd460a24d6097fb5bac302aca6d86b0aaf1bda8ec15afc5a1 b/npm/.npm/_cacache/index-v5/07/75/3faf7e5abdadd460a24d6097fb5bac302aca6d86b0aaf1bda8ec15afc5a1 new file mode 100644 index 0000000..c1920fa --- /dev/null +++ b/npm/.npm/_cacache/index-v5/07/75/3faf7e5abdadd460a24d6097fb5bac302aca6d86b0aaf1bda8ec15afc5a1 @@ -0,0 +1,2 @@ + +b01cbea4625a1ffe0635d557154a5d04062b848a {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/dateformat/-/dateformat-1.0.12.tgz","integrity":"sha1-nxJLZ1lMk3/3BpMuSmQsyo27/uk=","time":1540366554923,"size":7203,"metadata":{"url":"https://registry.npmjs.org/dateformat/-/dateformat-1.0.12.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:dateformat@https://registry.npmjs.org/dateformat/-/dateformat-1.0.12.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["7203"],"connection":["keep-alive"],"set-cookie":["__cfduid=d73f41e2de42ab9ee857924620b161eaa1540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f7adc1975c-FRA"],"etag":["\"45aaa5034823f10d87fb54ec460e76cb\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sat, 26 May 2018 21:47:51 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/09/9a/52875c6133f15ad5a8e3a86d84498ff96a127b180b506e1b85cd3856d287 b/npm/.npm/_cacache/index-v5/09/9a/52875c6133f15ad5a8e3a86d84498ff96a127b180b506e1b85cd3856d287 new file mode 100644 index 0000000..a75205c --- /dev/null +++ b/npm/.npm/_cacache/index-v5/09/9a/52875c6133f15ad5a8e3a86d84498ff96a127b180b506e1b85cd3856d287 @@ -0,0 +1,2 @@ + +6944acbdc3a26b75f9e1bee602929abf93f3525e {"key":"pacote:range-manifest:http://registry.npmjs.org/async/-/async-1.5.2.tgz:sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo=","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366554236,"size":1,"metadata":{"id":"async@1.5.2","manifest":{"name":"async","version":"1.5.2","dependencies":{},"optionalDependencies":{},"devDependencies":{"benchmark":"github:bestiejs/benchmark.js","bluebird":"^2.9.32","chai":"^3.1.0","coveralls":"^2.11.2","es6-promise":"^2.3.0","jscs":"^1.13.1","jshint":"~2.8.0","karma":"^0.13.2","karma-browserify":"^4.2.1","karma-firefox-launcher":"^0.1.6","karma-mocha":"^0.2.0","karma-mocha-reporter":"^1.0.2","lodash":"^3.9.0","mkdirp":"~0.5.1","mocha":"^2.2.5","native-promise-only":"^0.8.0-a","nodeunit":">0.0.0","nyc":"^2.1.0","rsvp":"^3.0.18","semver":"^4.3.6","uglify-js":"~2.4.0","xyz":"^0.5.0","yargs":"~3.9.1"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"http://registry.npmjs.org/async/-/async-1.5.2.tgz","_integrity":"sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo=","_shasum":"ec6a61ae56480c0c3cb241c95618e20892f9672a","_shrinkwrap":null,"bin":null,"_id":"async@1.5.2"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/0a/b4/b98e1fed4b8dbd39bbfd8a703f06b6fe11c6e8439dcbb142cfde08491229 b/npm/.npm/_cacache/index-v5/0a/b4/b98e1fed4b8dbd39bbfd8a703f06b6fe11c6e8439dcbb142cfde08491229 new file mode 100644 index 0000000..e7d65cd --- /dev/null +++ b/npm/.npm/_cacache/index-v5/0a/b4/b98e1fed4b8dbd39bbfd8a703f06b6fe11c6e8439dcbb142cfde08491229 @@ -0,0 +1,2 @@ + +647e96fa2b8905f487aeb12f11a1a13d3b67c2e3 {"key":"pacote:range-manifest:https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz:sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366553431,"size":1,"metadata":{"id":"parse-json@2.2.0","manifest":{"name":"parse-json","version":"2.2.0","engines":{"node":">=0.10.0"},"dependencies":{"error-ex":"^1.2.0"},"optionalDependencies":{},"devDependencies":{"ava":"0.0.4","xo":"*"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz","_integrity":"sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=","_shasum":"f480f40434ef80741f8469099f8dea18f55a4dc9","_shrinkwrap":null,"bin":null,"_id":"parse-json@2.2.0"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/0b/4c/25f070dd01796dfc8b30c0b8befd7829d4a6fec0ed920fdba1efbde1092e b/npm/.npm/_cacache/index-v5/0b/4c/25f070dd01796dfc8b30c0b8befd7829d4a6fec0ed920fdba1efbde1092e new file mode 100644 index 0000000..ed71e8c --- /dev/null +++ b/npm/.npm/_cacache/index-v5/0b/4c/25f070dd01796dfc8b30c0b8befd7829d4a6fec0ed920fdba1efbde1092e @@ -0,0 +1,2 @@ + +2bf2c764ecb59431bfbb5734f2b4d9aa28830f75 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/repeating","integrity":"sha512-zE4eFEV1K/U1h/jsFvegIKXPWeO6+Dsrlw/7uTHM+Wi+D7oFem+4iWyOOBMP1O3tAZsEcXQ5UER7hXIVOmIPDw==","time":1540366553660,"size":3221,"metadata":{"url":"https://registry.npmjs.org/repeating","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:53 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["3221"],"connection":["keep-alive"],"set-cookie":["__cfduid=d94c06b11e9ec5b66331af8f65a6f81ca1540366553; expires=Thu, 24-Oct-19 07:35:53 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4f04940975c-FRA"],"etag":["\"715396f0b27478e23c9a8795757fe52a\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 15:49:56 GMT"],"vary":["accept-encoding, accept"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/0b/6a/0d581bd1d3cb7ad5fd7c5e188e37b54ac6f8d44026ddec738a501ca50d32 b/npm/.npm/_cacache/index-v5/0b/6a/0d581bd1d3cb7ad5fd7c5e188e37b54ac6f8d44026ddec738a501ca50d32 new file mode 100644 index 0000000..e00cd8b --- /dev/null +++ b/npm/.npm/_cacache/index-v5/0b/6a/0d581bd1d3cb7ad5fd7c5e188e37b54ac6f8d44026ddec738a501ca50d32 @@ -0,0 +1,2 @@ + +d6143b549995cae82afa3f158e1f20a74b49c77a {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/has-flag","integrity":"sha512-4l0qZvfBIYQCpnRqGqhRNq11FH6fY8xxXrt6cdZngr+lVS8UUbhuNSoZ/i4IpLsDPMV4/9WZnEVoQ+G4Q8Ctrw==","time":1540366554185,"size":946,"metadata":{"url":"https://registry.npmjs.org/has-flag","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["946"],"connection":["keep-alive"],"set-cookie":["__cfduid=d1be73ae2b1dc0b01b9c543ab79043d521540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4f39d2dc2ab-FRA"],"etag":["\"f3d847389869e8f57d250e02f332978e\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 03:34:16 GMT"],"vary":["accept-encoding, accept"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/0c/7d/91a112ef6e0ceb131f86767a545c2f25d003524de5aa65d5d6c9b6a651cf b/npm/.npm/_cacache/index-v5/0c/7d/91a112ef6e0ceb131f86767a545c2f25d003524de5aa65d5d6c9b6a651cf new file mode 100644 index 0000000..edeba5d --- /dev/null +++ b/npm/.npm/_cacache/index-v5/0c/7d/91a112ef6e0ceb131f86767a545c2f25d003524de5aa65d5d6c9b6a651cf @@ -0,0 +1,2 @@ + +5fe6e621297bf5083484635a35c095815a5dfd86 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/builtin-modules","integrity":"sha512-sL149dtbNhI+EXRIvjkNaU4jscubbDbF/HDL2Tv8PnKeV88aBS7La2ZQPNVHy9Mew/fXn2vCWv9u9ql2qnYLTQ==","time":1540366553169,"size":3090,"metadata":{"url":"https://registry.npmjs.org/builtin-modules","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:53 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["3090"],"connection":["keep-alive"],"set-cookie":["__cfduid=d10f089ced22f3a39637cb092ae406a3f1540366553; expires=Thu, 24-Oct-19 07:35:53 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4ed3869c2ab-FRA"],"etag":["\"a930b6025eded42230ef8d8d10f6f5f2\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 07:21:50 GMT"],"vary":["accept-encoding, accept"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/0d/31/cf76f60fbc313a8149350a85c51b71f268c3dd3e83c08859dcfb4e618aa2 b/npm/.npm/_cacache/index-v5/0d/31/cf76f60fbc313a8149350a85c51b71f268c3dd3e83c08859dcfb4e618aa2 new file mode 100644 index 0000000..88cc03f --- /dev/null +++ b/npm/.npm/_cacache/index-v5/0d/31/cf76f60fbc313a8149350a85c51b71f268c3dd3e83c08859dcfb4e618aa2 @@ -0,0 +1,2 @@ + +2511f46885ae309cb74dcdc8bd2f8e35fe887e42 {"key":"pacote:range-manifest:https://registry.npmjs.org/trim-newlines/-/trim-newlines-1.0.0.tgz:sha1-WIeWa7WCpFA6QetST301ARgVphM=","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366552992,"size":1,"metadata":{"id":"trim-newlines@1.0.0","manifest":{"name":"trim-newlines","version":"1.0.0","engines":{"node":">=0.10.0"},"dependencies":{},"optionalDependencies":{},"devDependencies":{"ava":"*","xo":"*"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/trim-newlines/-/trim-newlines-1.0.0.tgz","_integrity":"sha1-WIeWa7WCpFA6QetST301ARgVphM=","_shasum":"5887966bb582a4503a41eb524f7d35011815a613","_shrinkwrap":null,"bin":null,"_id":"trim-newlines@1.0.0"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/0d/87/9151b4ebe9a924f224ff428a83fdfa12994d0b6e9ac292a8787b701af29b b/npm/.npm/_cacache/index-v5/0d/87/9151b4ebe9a924f224ff428a83fdfa12994d0b6e9ac292a8787b701af29b new file mode 100644 index 0000000..0b67cdf --- /dev/null +++ b/npm/.npm/_cacache/index-v5/0d/87/9151b4ebe9a924f224ff428a83fdfa12994d0b6e9ac292a8787b701af29b @@ -0,0 +1,2 @@ + +ff352e3a673ee21c674458abccb9361153c79cf5 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz","integrity":"sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=","time":1540366554824,"size":1549,"metadata":{"url":"https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:map-obj@https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["1549"],"connection":["keep-alive"],"set-cookie":["__cfduid=d29702b643def93355e766461895e97631540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f69f0064a5-FRA"],"etag":["\"37177d9b5f137e6c99e8529812240f14\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 07:23:31 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/0d/a9/7c15dd468d3542aae7feeb19fcb1fa0fa6841e28a286cb60fcf08027b7be b/npm/.npm/_cacache/index-v5/0d/a9/7c15dd468d3542aae7feeb19fcb1fa0fa6841e28a286cb60fcf08027b7be new file mode 100644 index 0000000..99de146 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/0d/a9/7c15dd468d3542aae7feeb19fcb1fa0fa6841e28a286cb60fcf08027b7be @@ -0,0 +1,2 @@ + +3c602fd459667434cf14ff31a1d21c50855485bc {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz","integrity":"sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo=","time":1540366554982,"size":1584,"metadata":{"url":"https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:repeating@https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["1584"],"connection":["keep-alive"],"set-cookie":["__cfduid=da43aeca20ac5d92dd6c204520f291a5f1540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f86c0e643f-FRA"],"etag":["\"376233a6b60ab00afac4023629eabdb4\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 15:49:56 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/0e/94/bdaaf30d2267fb41361489a071c7faf3f1714d3f6df0f78e897c683c91b2 b/npm/.npm/_cacache/index-v5/0e/94/bdaaf30d2267fb41361489a071c7faf3f1714d3f6df0f78e897c683c91b2 new file mode 100644 index 0000000..2a5fe73 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/0e/94/bdaaf30d2267fb41361489a071c7faf3f1714d3f6df0f78e897c683c91b2 @@ -0,0 +1,2 @@ + +13a050c7931726e4da2faf6f9ddc5a48362f490b {"key":"pacote:range-manifest:https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz:sha1-FQStJSMVjKpA20onh8sBQRmU6k8=","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366553917,"size":1,"metadata":{"id":"fs.realpath@1.0.0","manifest":{"name":"fs.realpath","version":"1.0.0","dependencies":{},"optionalDependencies":{},"devDependencies":{},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz","_integrity":"sha1-FQStJSMVjKpA20onh8sBQRmU6k8=","_shasum":"1504ad2523158caa40db4a2787cb01411994ea4f","_shrinkwrap":null,"bin":null,"_id":"fs.realpath@1.0.0"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/13/d4/e61be7a7ea5ae89ba00e1a183777c1cec71a881e691d2d1bb6818ce31077 b/npm/.npm/_cacache/index-v5/13/d4/e61be7a7ea5ae89ba00e1a183777c1cec71a881e691d2d1bb6818ce31077 new file mode 100644 index 0000000..92d2212 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/13/d4/e61be7a7ea5ae89ba00e1a183777c1cec71a881e691d2d1bb6818ce31077 @@ -0,0 +1,2 @@ + +ea9949a0b6d70865e036d8552bbc98b5cbd914fb {"key":"pacote:range-manifest:https://registry.npmjs.org/underscore.string/-/underscore.string-3.3.5.tgz:sha512-g+dpmgn+XBneLmXXo+sGlW5xQEt4ErkS3mgeN2GFbremYeMBSJKr9Wf2KJplQVaiPY/f7FN6atosWYNm9ovrYg==","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366554206,"size":1,"metadata":{"id":"underscore.string@3.3.5","manifest":{"name":"underscore.string","version":"3.3.5","engines":{"node":"*"},"dependencies":{"sprintf-js":"^1.0.3","util-deprecate":"^1.0.2"},"optionalDependencies":{},"devDependencies":{"browserify":"^13.0.0","browserify-header":"^0.9.2","eslint":"^1.10.3","istanbul":"^0.4.2","mocha":"^2.1.0","mocha-lcov-reporter":"^1.0.0","replace":"^0.3.0","uglifyjs":"^2.4.10","underscore":"^1.7.0"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/underscore.string/-/underscore.string-3.3.5.tgz","_integrity":"sha512-g+dpmgn+XBneLmXXo+sGlW5xQEt4ErkS3mgeN2GFbremYeMBSJKr9Wf2KJplQVaiPY/f7FN6atosWYNm9ovrYg==","_shasum":"fc2ad255b8bd309e239cbc5816fd23a9b7ea4023","_shrinkwrap":null,"bin":null,"_id":"underscore.string@3.3.5"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/13/ec/2beec1b1ea4a773b7e444068011c58085a802e2d35f5f6ff233eb0d8e630 b/npm/.npm/_cacache/index-v5/13/ec/2beec1b1ea4a773b7e444068011c58085a802e2d35f5f6ff233eb0d8e630 new file mode 100644 index 0000000..d880062 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/13/ec/2beec1b1ea4a773b7e444068011c58085a802e2d35f5f6ff233eb0d8e630 @@ -0,0 +1,2 @@ + +e0d8a35098168c876f63a987035395c560dcd82c {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz","integrity":"sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==","time":1540366554817,"size":11423,"metadata":{"url":"https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:minimatch@https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["binary/octet-stream"],"content-length":["11423"],"connection":["keep-alive"],"set-cookie":["__cfduid=d2e1012549802f341c12faf47ff24aa141540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f69d97c26f-FRA"],"etag":["\"6a2c6f3ffed6ed50faaff89ef8eab0a0\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Tue, 05 Jun 2018 13:47:29 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/13/f5/352db4def9f305acdf0907671f77015ee9c6d78551abc1f931e74cfbdf2b b/npm/.npm/_cacache/index-v5/13/f5/352db4def9f305acdf0907671f77015ee9c6d78551abc1f931e74cfbdf2b new file mode 100644 index 0000000..244f9eb --- /dev/null +++ b/npm/.npm/_cacache/index-v5/13/f5/352db4def9f305acdf0907671f77015ee9c6d78551abc1f931e74cfbdf2b @@ -0,0 +1,2 @@ + +470360cb9da1efefb50b61c6a25d3dc24fab3258 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/validate-npm-package-license","integrity":"sha512-Y+FI1xeqE22YKe9e84HSmho40dN+MWsS6Mj9hcJKuxiDyvUxfvvcHIc4UoxO3BF6SI0uIVbZw+wI44G5N6Gd4A==","time":1540366553123,"size":5573,"metadata":{"url":"https://registry.npmjs.org/validate-npm-package-license","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:53 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["5573"],"connection":["keep-alive"],"set-cookie":["__cfduid=de37877763307c73cdce09f43308103f21540366553; expires=Thu, 24-Oct-19 07:35:53 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4ecd8b49aca-FRA"],"etag":["\"d98ef3cfbfa04340f1b8d1f30ab675c0\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 05 Aug 2018 16:59:07 GMT"],"vary":["accept-encoding, accept"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/14/49/7d33f0897d663f0b0ddfdb8bc2da3e751da4c793007d4c9ec983492326ec b/npm/.npm/_cacache/index-v5/14/49/7d33f0897d663f0b0ddfdb8bc2da3e751da4c793007d4c9ec983492326ec new file mode 100644 index 0000000..69b9247 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/14/49/7d33f0897d663f0b0ddfdb8bc2da3e751da4c793007d4c9ec983492326ec @@ -0,0 +1,2 @@ + +cc0207360de698b9480125b90beff324785d83e0 {"key":"pacote:range-manifest:http://registry.npmjs.org/is-builtin-module/-/is-builtin-module-1.0.0.tgz:sha1-VAVy0096wxGfj3bDDLwbHgN6/74=","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366553154,"size":1,"metadata":{"id":"is-builtin-module@1.0.0","manifest":{"name":"is-builtin-module","version":"1.0.0","engines":{"node":">=0.10.0"},"dependencies":{"builtin-modules":"^1.0.0"},"optionalDependencies":{},"devDependencies":{"ava":"0.0.4"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"http://registry.npmjs.org/is-builtin-module/-/is-builtin-module-1.0.0.tgz","_integrity":"sha1-VAVy0096wxGfj3bDDLwbHgN6/74=","_shasum":"540572d34f7ac3119f8f76c30cbc1b1e037affbe","_shrinkwrap":null,"bin":null,"_id":"is-builtin-module@1.0.0"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/14/f7/87042931e5944467d47331c350feb4384bf9143ab6ceebf7108a55905843 b/npm/.npm/_cacache/index-v5/14/f7/87042931e5944467d47331c350feb4384bf9143ab6ceebf7108a55905843 new file mode 100644 index 0000000..bab617c --- /dev/null +++ b/npm/.npm/_cacache/index-v5/14/f7/87042931e5944467d47331c350feb4384bf9143ab6ceebf7108a55905843 @@ -0,0 +1,2 @@ + +f25a1e9485ddcad76636f5dc127cfc463e99a60e {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz","integrity":"sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=","time":1540366554811,"size":2263,"metadata":{"url":"https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:concat-map@https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["2263"],"connection":["keep-alive"],"set-cookie":["__cfduid=d826af7cbebbb0044471c51c9c0d72ea51540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f69f762762-FRA"],"etag":["\"d11d2d19ce6c3d9326cb3e987e8bcd23\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sat, 26 May 2018 20:40:55 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/15/20/76b3581b55a479ddc3abc4a3c89bae72516843d01355e81acf5c7543fe94 b/npm/.npm/_cacache/index-v5/15/20/76b3581b55a479ddc3abc4a3c89bae72516843d01355e81acf5c7543fe94 new file mode 100644 index 0000000..712d9ad --- /dev/null +++ b/npm/.npm/_cacache/index-v5/15/20/76b3581b55a479ddc3abc4a3c89bae72516843d01355e81acf5c7543fe94 @@ -0,0 +1,2 @@ + +ddc783e30c04451852a680dba22a7e6cf0f21a2f {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz","integrity":"sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==","time":1540366553504,"size":3555,"metadata":{"url":"https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:error-ex@https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:53 GMT"],"content-type":["application/octet-stream"],"content-length":["3555"],"connection":["keep-alive"],"set-cookie":["__cfduid=dd01a88914b5a1bfe9a28649f6170dfda1540366553; expires=Thu, 24-Oct-19 07:35:53 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4ef4db0972c-FRA"],"etag":["\"5d2c673565060037f9e04d7975d04feb\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Tue, 19 Jun 2018 06:22:09 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/18/10/45d988fc79125c5dd6587d3d8d998e0994ec03e205e16298f13352585667 b/npm/.npm/_cacache/index-v5/18/10/45d988fc79125c5dd6587d3d8d998e0994ec03e205e16298f13352585667 new file mode 100644 index 0000000..e3a7b0d --- /dev/null +++ b/npm/.npm/_cacache/index-v5/18/10/45d988fc79125c5dd6587d3d8d998e0994ec03e205e16298f13352585667 @@ -0,0 +1,2 @@ + +22ee4f9eaada7669e3c7969237afdb8ec3a7aac9 {"key":"pacote:range-manifest:https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz:sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366553294,"size":1,"metadata":{"id":"path-exists@2.1.0","manifest":{"name":"path-exists","version":"2.1.0","engines":{"node":">=0.10.0"},"dependencies":{"pinkie-promise":"^2.0.0"},"optionalDependencies":{},"devDependencies":{"ava":"*","xo":"*"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz","_integrity":"sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=","_shasum":"0feb6c64f0fc518d9a754dd5efb62c7022761f4b","_shrinkwrap":null,"bin":null,"_id":"path-exists@2.1.0"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/19/2c/96b0bfc0390e3364e2f28343a002202395acd27d5d24d4347f21bc135ca4 b/npm/.npm/_cacache/index-v5/19/2c/96b0bfc0390e3364e2f28343a002202395acd27d5d24d4347f21bc135ca4 new file mode 100644 index 0000000..1c7dba1 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/19/2c/96b0bfc0390e3364e2f28343a002202395acd27d5d24d4347f21bc135ca4 @@ -0,0 +1,2 @@ + +5c6e0a78a489080ac31d6676670735ee961a4945 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/number-is-nan","integrity":"sha512-Mbpt/8rbR8xNG+7KSOIgBGnRZLq3pUpXMhDNOYeJT3LH18M8x8dlGIoGrP6AdTzQoNlirqNKMH6vUyBg29XwRw==","time":1540366553697,"size":692,"metadata":{"url":"https://registry.npmjs.org/number-is-nan","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:53 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["692"],"connection":["keep-alive"],"set-cookie":["__cfduid=d162071ff706d63145bc32a7d93535d5f1540366553; expires=Thu, 24-Oct-19 07:35:53 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4f08a659726-FRA"],"etag":["\"d337de6ab31e08f9661858494fd2e0e9\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 10:51:31 GMT"],"vary":["accept-encoding, accept"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/1a/8a/5a53540668ad6b539fd5ff50f3295ecb87c13cbde5b7c90861ef5c9f5fca b/npm/.npm/_cacache/index-v5/1a/8a/5a53540668ad6b539fd5ff50f3295ecb87c13cbde5b7c90861ef5c9f5fca new file mode 100644 index 0000000..f59caef --- /dev/null +++ b/npm/.npm/_cacache/index-v5/1a/8a/5a53540668ad6b539fd5ff50f3295ecb87c13cbde5b7c90861ef5c9f5fca @@ -0,0 +1,2 @@ + +010b93b7c01dee0422c41463c7ae2324a803e7c2 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/async","integrity":"sha512-Wy7N5jdbq+9s5nNjHwDWHlQ2RBgSdHVbYGZ9oS/U3l4dmZEVTJhRRo9kgFF8Db34IoAJZXCfRILedsMRq7hM7g==","time":1540366554213,"size":45483,"metadata":{"url":"https://registry.npmjs.org/async","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["45483"],"connection":["keep-alive"],"set-cookie":["__cfduid=d3abd8568f1d2eff909e6fcbe7233bf0d1540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4f3bf7164c9-FRA"],"etag":["\"2dd8c38f2c5b0770eb42091ace27bae2\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Mon, 01 Oct 2018 09:55:24 GMT"],"vary":["accept-encoding, accept"],"x-amz-meta-rev":["1641-654ef0f63373f34b90069f4b756848b6"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/1a/f2/dd3ad81b7f4445a985ef00289c57c3bc1682695c29d5d925f7daf80c769c b/npm/.npm/_cacache/index-v5/1a/f2/dd3ad81b7f4445a985ef00289c57c3bc1682695c29d5d925f7daf80c769c new file mode 100644 index 0000000..d09e7f2 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/1a/f2/dd3ad81b7f4445a985ef00289c57c3bc1682695c29d5d925f7daf80c769c @@ -0,0 +1,2 @@ + +406d30b8919185bbc1bd734868d533c59c46e685 {"key":"pacote:range-manifest:https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz:sha1-xkZdvwirzU2zWTF/eaxopkayj/k=","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366552823,"size":1,"metadata":{"id":"nopt@3.0.6","manifest":{"name":"nopt","version":"3.0.6","dependencies":{"abbrev":"1"},"optionalDependencies":{},"devDependencies":{"tap":"^1.2.0"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz","_integrity":"sha1-xkZdvwirzU2zWTF/eaxopkayj/k=","_shasum":"c6465dbf08abcd4db359317f79ac68a646b28ff9","_shrinkwrap":null,"bin":{"nopt":"./bin/nopt.js"},"_id":"nopt@3.0.6"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/1a/fd/532a4c7bf52c908d567ded2bb11b0f3282f0733d0d079a5291c2f72e0077 b/npm/.npm/_cacache/index-v5/1a/fd/532a4c7bf52c908d567ded2bb11b0f3282f0733d0d079a5291c2f72e0077 new file mode 100644 index 0000000..7b095ad --- /dev/null +++ b/npm/.npm/_cacache/index-v5/1a/fd/532a4c7bf52c908d567ded2bb11b0f3282f0733d0d079a5291c2f72e0077 @@ -0,0 +1,2 @@ + +fd5435d317a17d79c3e774a90adc95f10f19607c {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz","integrity":"sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=","time":1540366554937,"size":1676,"metadata":{"url":"https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:wrappy@https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["1676"],"connection":["keep-alive"],"set-cookie":["__cfduid=da7c425ed9d70c5453385f8ca1689521c1540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f7e862c300-FRA"],"etag":["\"567b1699cfae49cb20f598571a6c90c7\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 22:18:40 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/1b/15/2ed036cc76081b7f1bfb3aa59d491eb3b3602c9381ec8d81435ceecf56b5 b/npm/.npm/_cacache/index-v5/1b/15/2ed036cc76081b7f1bfb3aa59d491eb3b3602c9381ec8d81435ceecf56b5 new file mode 100644 index 0000000..7da5f6c --- /dev/null +++ b/npm/.npm/_cacache/index-v5/1b/15/2ed036cc76081b7f1bfb3aa59d491eb3b3602c9381ec8d81435ceecf56b5 @@ -0,0 +1,2 @@ + +d4123a73e142f9bd06d70db5096ec5bfb821c94f {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz","integrity":"sha1-FQStJSMVjKpA20onh8sBQRmU6k8=","time":1540366554817,"size":4434,"metadata":{"url":"https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:fs.realpath@https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["4434"],"connection":["keep-alive"],"set-cookie":["__cfduid=dad6e6c2363a90473d21a023cbfc1ac061540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f6bf0d974a-FRA"],"etag":["\"9f790d7180667e1d8d1110f2cf321b62\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 01:17:56 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/1b/d1/631df59da38ec5c0cd1981120c74ed2c031b9f1447719abc5d8e2a39491c b/npm/.npm/_cacache/index-v5/1b/d1/631df59da38ec5c0cd1981120c74ed2c031b9f1447719abc5d8e2a39491c new file mode 100644 index 0000000..f7ccf00 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/1b/d1/631df59da38ec5c0cd1981120c74ed2c031b9f1447719abc5d8e2a39491c @@ -0,0 +1,2 @@ + +c99def994e5e58b6c474dc57d5352f5f4cb80e54 {"key":"pacote:range-manifest:https://registry.npmjs.org/grunt-cli/-/grunt-cli-1.2.0.tgz:sha1-VisRnrsGndtGSs4oRVAb6Xs1tqg=","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366552781,"size":1,"metadata":{"id":"grunt-cli@1.2.0","manifest":{"name":"grunt-cli","version":"1.2.0","engines":{"node":">=0.10.0"},"dependencies":{"findup-sync":"~0.3.0","grunt-known-options":"~1.1.0","nopt":"~3.0.6","resolve":"~1.1.0"},"optionalDependencies":{},"devDependencies":{"grunt":"~0.4.5","grunt-contrib-jshint":"~1.0.0"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/grunt-cli/-/grunt-cli-1.2.0.tgz","_integrity":"sha1-VisRnrsGndtGSs4oRVAb6Xs1tqg=","_shasum":"562b119ebb069ddb464ace2845501be97b35b6a8","_shrinkwrap":null,"bin":{"grunt":"bin/grunt"},"_id":"grunt-cli@1.2.0"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/1c/26/7d74e78cb51f0180888ef9e8b38894b6761ac961f7aeac9fe4eb503ff8f5 b/npm/.npm/_cacache/index-v5/1c/26/7d74e78cb51f0180888ef9e8b38894b6761ac961f7aeac9fe4eb503ff8f5 new file mode 100644 index 0000000..d9597e6 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/1c/26/7d74e78cb51f0180888ef9e8b38894b6761ac961f7aeac9fe4eb503ff8f5 @@ -0,0 +1,2 @@ + +12f4115e2bc0afcf99b5ba280f651fd19c6e5a27 {"key":"pacote:range-manifest:https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.6.0.tgz:sha1-W0b4AUft7leIcPCG0Eghz5mOVR8=","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366552992,"size":1,"metadata":{"id":"loud-rejection@1.6.0","manifest":{"name":"loud-rejection","version":"1.6.0","engines":{"node":">=0.10.0"},"dependencies":{"currently-unhandled":"^0.4.1","signal-exit":"^3.0.0"},"optionalDependencies":{},"devDependencies":{"ava":"*","bluebird":"^3.0.5","coveralls":"^2.11.4","delay":"^1.0.0","execa":"^0.4.0","get-stream":"^2.0.0","nyc":"^6.2.1","xo":"*"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.6.0.tgz","_integrity":"sha1-W0b4AUft7leIcPCG0Eghz5mOVR8=","_shasum":"5b46f80147edee578870f086d04821cf998e551f","_shrinkwrap":null,"bin":null,"_id":"loud-rejection@1.6.0"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/1c/6d/0b8f05bc8a48caf10cca323e9b1164e01c8923823e1511898780805ed53c b/npm/.npm/_cacache/index-v5/1c/6d/0b8f05bc8a48caf10cca323e9b1164e01c8923823e1511898780805ed53c new file mode 100644 index 0000000..3e74150 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/1c/6d/0b8f05bc8a48caf10cca323e9b1164e01c8923823e1511898780805ed53c @@ -0,0 +1,2 @@ + +6ee4b6fc7bdd191eb3bb7fd1600061f6a35adc88 {"key":"pacote:range-manifest:https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz:sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366554100,"size":1,"metadata":{"id":"escape-string-regexp@1.0.5","manifest":{"name":"escape-string-regexp","version":"1.0.5","engines":{"node":">=0.8.0"},"dependencies":{},"optionalDependencies":{},"devDependencies":{"ava":"*","xo":"*"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz","_integrity":"sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=","_shasum":"1b61c0562190a8dff6ae3bb2cf0200ca130b86d4","_shrinkwrap":null,"bin":null,"_id":"escape-string-regexp@1.0.5"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/1c/d9/8399929df7cb126e9be9fbe9f932e263a4a66f2164348a5adea1463fc89c b/npm/.npm/_cacache/index-v5/1c/d9/8399929df7cb126e9be9fbe9f932e263a4a66f2164348a5adea1463fc89c new file mode 100644 index 0000000..7f0f712 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/1c/d9/8399929df7cb126e9be9fbe9f932e263a4a66f2164348a5adea1463fc89c @@ -0,0 +1,2 @@ + +4f29327bfa4cb59eca19d9cb61f9b803f5f9a0e0 {"key":"pacote:range-manifest:https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz:sha512-Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg==","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366553188,"size":1,"metadata":{"id":"spdx-expression-parse@3.0.0","manifest":{"name":"spdx-expression-parse","version":"3.0.0","dependencies":{"spdx-exceptions":"^2.1.0","spdx-license-ids":"^3.0.0"},"optionalDependencies":{},"devDependencies":{"defence-cli":"^2.0.1","mocha":"^3.4.2","replace-require-self":"^1.0.0","standard":"^10.0.2"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz","_integrity":"sha512-Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg==","_shasum":"99e119b7a5da00e05491c9fa338b7904823b41d0","_shrinkwrap":null,"bin":null,"_id":"spdx-expression-parse@3.0.0"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/1e/8e/3344b9a0e50c4ee58940c8b3bbfe43625d758b334d65a54f72d7397dff94 b/npm/.npm/_cacache/index-v5/1e/8e/3344b9a0e50c4ee58940c8b3bbfe43625d758b334d65a54f72d7397dff94 new file mode 100644 index 0000000..3bfc487 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/1e/8e/3344b9a0e50c4ee58940c8b3bbfe43625d758b334d65a54f72d7397dff94 @@ -0,0 +1,2 @@ + +7f30f44d325ad9b4a3083658c38629fa9c5b2723 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/rimraf/-/rimraf-2.6.2.tgz","integrity":"sha512-lreewLK/BlghmxtfH36YYVg1i8IAce4TI7oao75I1g245+6BctqTVQiBP3YUJ9C6DQOXJmkYR9X9fCLtCOJc5w==","time":1540366552864,"size":5535,"metadata":{"url":"https://registry.npmjs.org/rimraf/-/rimraf-2.6.2.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:rimraf@https://registry.npmjs.org/rimraf/-/rimraf-2.6.2.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:52 GMT"],"content-type":["application/octet-stream"],"content-length":["5535"],"connection":["keep-alive"],"set-cookie":["__cfduid=d301621c8972e3d48a19bcb9c2e4e4df61540366552; expires=Thu, 24-Oct-19 07:35:52 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4eb3d2c975c-FRA"],"etag":["\"4857fcfd1cb6231e3aa1b4e8c0ad56cb\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 16:05:59 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/1f/76/9c8e4f3558dd7214320e720f99dfe0c5ebc632d1120a2c43af5ca44ec24b b/npm/.npm/_cacache/index-v5/1f/76/9c8e4f3558dd7214320e720f99dfe0c5ebc632d1120a2c43af5ca44ec24b new file mode 100644 index 0000000..4b75cd9 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/1f/76/9c8e4f3558dd7214320e720f99dfe0c5ebc632d1120a2c43af5ca44ec24b @@ -0,0 +1,2 @@ + +46595e238e3877354aaf2e4d029248b1b9b574c7 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/grunt-cli/-/grunt-cli-1.2.0.tgz","integrity":"sha1-VisRnrsGndtGSs4oRVAb6Xs1tqg=","time":1540366554916,"size":3836,"metadata":{"url":"https://registry.npmjs.org/grunt-cli/-/grunt-cli-1.2.0.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:grunt-cli@https://registry.npmjs.org/grunt-cli/-/grunt-cli-1.2.0.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["3836"],"connection":["keep-alive"],"set-cookie":["__cfduid=d30ab153c77123272a42eeaa8a03b5dde1540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f79e2c9726-FRA"],"etag":["\"4fadc065f28ab1a6d1468ed6b4565d87\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 02:51:22 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/20/17/d5fa167b278e5fed01910ca691cbc73749d2c9e7cc4c4db1d634cb5a273a b/npm/.npm/_cacache/index-v5/20/17/d5fa167b278e5fed01910ca691cbc73749d2c9e7cc4c4db1d634cb5a273a new file mode 100644 index 0000000..28a8147 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/20/17/d5fa167b278e5fed01910ca691cbc73749d2c9e7cc4c4db1d634cb5a273a @@ -0,0 +1,2 @@ + +2b9951e11c57b4fc510046aa38ce1bc61c7c8eab {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/is-utf8","integrity":"sha512-q//G7op921lkV3K9PvdJHkrEoV+hMpzQOMyUTtAv0GSpCfZOBJHq1qlQCiiBDBTkG/93WgXcw7oatXQH4HocMg==","time":1540366553564,"size":739,"metadata":{"url":"https://registry.npmjs.org/is-utf8","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:53 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["739"],"connection":["keep-alive"],"set-cookie":["__cfduid=dd2517331d9fb312ea2a2b85acaa273931540366553; expires=Thu, 24-Oct-19 07:35:53 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4efac049738-FRA"],"etag":["\"903da77afd9325dcfad04f5450113086\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 04:59:57 GMT"],"vary":["accept-encoding, accept"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/20/b1/c8624121be154ffe49749f35c6eafad2fb4903d464c33a2785af1315206f b/npm/.npm/_cacache/index-v5/20/b1/c8624121be154ffe49749f35c6eafad2fb4903d464c33a2785af1315206f new file mode 100644 index 0000000..a505225 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/20/b1/c8624121be154ffe49749f35c6eafad2fb4903d464c33a2785af1315206f @@ -0,0 +1,2 @@ + +f7249ea5618355ba6293f07b4213853f17486098 {"key":"pacote:range-manifest:https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz:sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366554354,"size":1,"metadata":{"id":"argparse@1.0.10","manifest":{"name":"argparse","version":"1.0.10","dependencies":{"sprintf-js":"~1.0.2"},"optionalDependencies":{},"devDependencies":{"eslint":"^2.13.1","istanbul":"^0.4.5","mocha":"^3.1.0","ndoc":"^5.0.1"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz","_integrity":"sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==","_shasum":"bcd6791ea5ae09725e17e5ad988134cd40b3d911","_shrinkwrap":null,"bin":null,"_id":"argparse@1.0.10"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/21/c1/4c970e9a82aec748113f3646509820e29e91418ea4d3ca7acea975e88182 b/npm/.npm/_cacache/index-v5/21/c1/4c970e9a82aec748113f3646509820e29e91418ea4d3ca7acea975e88182 new file mode 100644 index 0000000..0b02f42 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/21/c1/4c970e9a82aec748113f3646509820e29e91418ea4d3ca7acea975e88182 @@ -0,0 +1,2 @@ + +7fda1fe8a6043e88c9716fa59175c5eb78b04542 {"key":"pacote:range-manifest:https://registry.npmjs.org/glob/-/glob-5.0.15.tgz:sha1-G8k2ueAvSmA/zCIuz3Yz0wuLk7E=","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366553708,"size":1,"metadata":{"id":"glob@5.0.15","manifest":{"name":"glob","version":"5.0.15","engines":{"node":"*"},"dependencies":{"inflight":"^1.0.4","inherits":"2","minimatch":"2 || 3","once":"^1.3.0","path-is-absolute":"^1.0.0"},"optionalDependencies":{},"devDependencies":{"mkdirp":"0","rimraf":"^2.2.8","tap":"^1.1.4","tick":"0.0.6"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/glob/-/glob-5.0.15.tgz","_integrity":"sha1-G8k2ueAvSmA/zCIuz3Yz0wuLk7E=","_shasum":"1bc936b9e02f4a603fcc222ecf7633d30b8b93b1","_shrinkwrap":null,"bin":null,"_id":"glob@5.0.15"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/23/76/f7afbc9eb60823c417e5dd1dd2f56b61e1b85cdd840120ff5644e6b03358 b/npm/.npm/_cacache/index-v5/23/76/f7afbc9eb60823c417e5dd1dd2f56b61e1b85cdd840120ff5644e6b03358 new file mode 100644 index 0000000..1d99f3e --- /dev/null +++ b/npm/.npm/_cacache/index-v5/23/76/f7afbc9eb60823c417e5dd1dd2f56b61e1b85cdd840120ff5644e6b03358 @@ -0,0 +1,2 @@ + +e19e1f0fe0bb73fbf7b5279f2a0a9d0c6f11f8fb {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz","integrity":"sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=","time":1540366554817,"size":3756,"metadata":{"url":"https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:isexe@https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["3756"],"connection":["keep-alive"],"set-cookie":["__cfduid=d5d0c3f99159a053b861fa0a37bdca4e81540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f6ac65bf16-FRA"],"etag":["\"02bf57881fa200bcd6501e4ded2b1b3a\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 05:00:28 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/25/5e/e8321d61d4731578a250b240981ac3bb550d2ad726b8e9822f1ca03d43ca b/npm/.npm/_cacache/index-v5/25/5e/e8321d61d4731578a250b240981ac3bb550d2ad726b8e9822f1ca03d43ca new file mode 100644 index 0000000..57ccb90 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/25/5e/e8321d61d4731578a250b240981ac3bb550d2ad726b8e9822f1ca03d43ca @@ -0,0 +1,2 @@ + +9c418c1ef2b2672ab4510646defe0edd26c52b4c {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/once","integrity":"sha512-1bTuk3rdPfK5xfwbfTpWvC32vdM/rORse6XI9qQJAENtqMzKc8bZz55FcY4zl4ssoc5acx9KalXl8jgbMrwkCg==","time":1540366553753,"size":2035,"metadata":{"url":"https://registry.npmjs.org/once","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:53 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["2035"],"connection":["keep-alive"],"set-cookie":["__cfduid=dd01a88914b5a1bfe9a28649f6170dfda1540366553; expires=Thu, 24-Oct-19 07:35:53 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4f0ce7c972c-FRA"],"etag":["\"0e1db9168702a952554ee49aaa0b6723\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 11:11:26 GMT"],"vary":["accept-encoding, accept"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/26/a9/368acf683b2ce55417193aa047c28e380b79459ae042d79d75e9ab465620 b/npm/.npm/_cacache/index-v5/26/a9/368acf683b2ce55417193aa047c28e380b79459ae042d79d75e9ab465620 new file mode 100644 index 0000000..d12944c --- /dev/null +++ b/npm/.npm/_cacache/index-v5/26/a9/368acf683b2ce55417193aa047c28e380b79459ae042d79d75e9ab465620 @@ -0,0 +1,2 @@ + +b8a0309e6c60d4a0de940481feed17d3d63f3786 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/exit","integrity":"sha512-JaFiwYjbI2jkpSQW30CLG36g7RZyiZ08UDtwbJqO4kPJYz7A2PFRLlQotFdwRzST1Z7maBCrPxlRRvqsVLIWIw==","time":1540366552765,"size":1268,"metadata":{"url":"https://registry.npmjs.org/exit","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:52 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["1268"],"connection":["keep-alive"],"set-cookie":["__cfduid=dab9bec03d12fc16c78d0819fe3b48b2a1540366552; expires=Thu, 24-Oct-19 07:35:52 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4ea8c6bc2a6-FRA"],"etag":["\"d0ede9c3e183173cf433ab61eeae6938\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 00:05:47 GMT"],"vary":["accept-encoding, accept"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/27/5c/3257d65dd466765be53e042cdf6f31f7497a6bf4b7cb4d2c6f99fdede68b b/npm/.npm/_cacache/index-v5/27/5c/3257d65dd466765be53e042cdf6f31f7497a6bf4b7cb4d2c6f99fdede68b new file mode 100644 index 0000000..cc1748d --- /dev/null +++ b/npm/.npm/_cacache/index-v5/27/5c/3257d65dd466765be53e042cdf6f31f7497a6bf4b7cb4d2c6f99fdede68b @@ -0,0 +1,2 @@ + +9eddb94a0162b4693769aae8365adec72ba8a528 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz","integrity":"sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8=","time":1540366554679,"size":1973,"metadata":{"url":"https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:builtin-modules@https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["1973"],"connection":["keep-alive"],"set-cookie":["__cfduid=d30ab153c77123272a42eeaa8a03b5dde1540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f61d489726-FRA"],"etag":["\"31e45d747577630f57118c9360e1e8ea\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sat, 26 May 2018 19:09:35 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/27/b6/bc1d086124331680bbaa5c4c1b8d244d40fc2dad68e9fe8dcd4f002638ec b/npm/.npm/_cacache/index-v5/27/b6/bc1d086124331680bbaa5c4c1b8d244d40fc2dad68e9fe8dcd4f002638ec new file mode 100644 index 0000000..3b772e9 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/27/b6/bc1d086124331680bbaa5c4c1b8d244d40fc2dad68e9fe8dcd4f002638ec @@ -0,0 +1,2 @@ + +2e5ba15eaeafdfef46c6abe7adc8828b3e813fae {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/safer-buffer","integrity":"sha512-SQ8SMfsMFMYgN0jtFInsaEwwj0Y5fcONV6lzPdVqgkm3/2dikbLUtKS5Dcn1sXumTdXakZRmTgj4ymk6e4QWYw==","time":1540366554308,"size":2685,"metadata":{"url":"https://registry.npmjs.org/safer-buffer","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["2685"],"connection":["keep-alive"],"set-cookie":["__cfduid=d3571117028a618f068c81ce728e19c941540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4f448db972c-FRA"],"etag":["\"5d958aca0f46014cd1ee7c81de70d799\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 16:29:44 GMT"],"vary":["accept-encoding, accept"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/27/de/84b1e51ad0f9ce7856564bce717e548d4a6b413dd6b3db31692402a6e171 b/npm/.npm/_cacache/index-v5/27/de/84b1e51ad0f9ce7856564bce717e548d4a6b413dd6b3db31692402a6e171 new file mode 100644 index 0000000..28fc3e4 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/27/de/84b1e51ad0f9ce7856564bce717e548d4a6b413dd6b3db31692402a6e171 @@ -0,0 +1,2 @@ + +b224a571298d81cf10745d02060b81ceb6f73197 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/escape-string-regexp","integrity":"sha512-66OXJboI7otbpYjUChimp9T2HehV9KSh7xVzFZCdHCCMcowTOu9Y3aJeh9IoHI5IsAvCubzySrI7gXY06YkWEw==","time":1540366554089,"size":2007,"metadata":{"url":"https://registry.npmjs.org/escape-string-regexp","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["2007"],"connection":["keep-alive"],"set-cookie":["__cfduid=d9869d033067b7009920f4fd40f223fae1540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4f2ecc2c305-FRA"],"etag":["\"27196e1529b274227baeb27f2da71af5\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sat, 26 May 2018 23:42:59 GMT"],"vary":["accept-encoding, accept"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/27/f2/37937052bed33f902f2cfceeca56d75ba537ca6a4ea2fb578f9f19950db0 b/npm/.npm/_cacache/index-v5/27/f2/37937052bed33f902f2cfceeca56d75ba537ca6a4ea2fb578f9f19950db0 new file mode 100644 index 0000000..8f9a924 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/27/f2/37937052bed33f902f2cfceeca56d75ba537ca6a4ea2fb578f9f19950db0 @@ -0,0 +1,2 @@ + +8ac49b56e4758205612c3bcee2abe2e3aade8782 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/grunt-known-options/-/grunt-known-options-1.1.1.tgz","integrity":"sha512-cHwsLqoighpu7TuYj5RonnEuxGVFnztcUqTqp5rXFGYL4OuPFofwC4Ycg7n9fYwvK6F5WbYgeVOwph9Crs2fsQ==","time":1540366554808,"size":2183,"metadata":{"url":"https://registry.npmjs.org/grunt-known-options/-/grunt-known-options-1.1.1.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:grunt-known-options@https://registry.npmjs.org/grunt-known-options/-/grunt-known-options-1.1.1.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["2183"],"connection":["keep-alive"],"set-cookie":["__cfduid=d5caf33469da280b991841a330d9e37a61540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f699456355-FRA"],"etag":["\"f65cd81985e014bb923a311ae209def4\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 19 Aug 2018 01:45:20 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/29/8d/40bbe6e4069639e77867007367a3704aa118d8c51da69028e4d2fc7c1d74 b/npm/.npm/_cacache/index-v5/29/8d/40bbe6e4069639e77867007367a3704aa118d8c51da69028e4d2fc7c1d74 new file mode 100644 index 0000000..69fdc15 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/29/8d/40bbe6e4069639e77867007367a3704aa118d8c51da69028e4d2fc7c1d74 @@ -0,0 +1,2 @@ + +f3bdecfb8d8f8cc55ad68b06dd0ee4af7f67de04 {"key":"pacote:range-manifest:https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz:sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366554058,"size":1,"metadata":{"id":"chalk@2.4.1","manifest":{"name":"chalk","version":"2.4.1","engines":{"node":">=4"},"dependencies":{"ansi-styles":"^3.2.1","escape-string-regexp":"^1.0.5","supports-color":"^5.3.0"},"optionalDependencies":{},"devDependencies":{"ava":"*","coveralls":"^3.0.0","execa":"^0.9.0","flow-bin":"^0.68.0","import-fresh":"^2.0.0","matcha":"^0.7.0","nyc":"^11.0.2","resolve-from":"^4.0.0","typescript":"^2.5.3","xo":"*"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz","_integrity":"sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==","_shasum":"18c49ab16a037b6eb0152cc83e3471338215b66e","_shrinkwrap":null,"bin":null,"_id":"chalk@2.4.1"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/2a/94/333c6a1b59cd47506e0b729f3401d3caac5ec48cddc7e54bf11d97301fb0 b/npm/.npm/_cacache/index-v5/2a/94/333c6a1b59cd47506e0b729f3401d3caac5ec48cddc7e54bf11d97301fb0 new file mode 100644 index 0000000..719ed6c --- /dev/null +++ b/npm/.npm/_cacache/index-v5/2a/94/333c6a1b59cd47506e0b729f3401d3caac5ec48cddc7e54bf11d97301fb0 @@ -0,0 +1,2 @@ + +6b0b99209fd6de422222ca172991dc73c5e1a3b7 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/balanced-match","integrity":"sha512-aJ39XkRGuynBhSqLJXwfBqUD/q4xMBNFp0wdGqcVTdpR2UFzFgfN7RJ9SEPmeF2DwqdWtFCm33MlKWKH+thc7g==","time":1540366553860,"size":3005,"metadata":{"url":"https://registry.npmjs.org/balanced-match","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:53 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["3005"],"connection":["keep-alive"],"set-cookie":["__cfduid=de37877763307c73cdce09f43308103f21540366553; expires=Thu, 24-Oct-19 07:35:53 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4f17c369aca-FRA"],"etag":["\"29bbdedd780d88d8e84fd28e370fad32\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sat, 26 May 2018 18:06:43 GMT"],"vary":["accept-encoding, accept"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/2e/63/78cbbfafe6379d3023d4053fa94b2dd6b1bb31259c690eb88f8316ed3fea b/npm/.npm/_cacache/index-v5/2e/63/78cbbfafe6379d3023d4053fa94b2dd6b1bb31259c690eb88f8316ed3fea new file mode 100644 index 0000000..5e90761 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/2e/63/78cbbfafe6379d3023d4053fa94b2dd6b1bb31259c690eb88f8316ed3fea @@ -0,0 +1,2 @@ + +36bbf0c7f6f90a93eee855e25b90f3490007aa05 {"key":"pacote:range-manifest:https://registry.npmjs.org/rimraf/-/rimraf-2.6.2.tgz:sha512-lreewLK/BlghmxtfH36YYVg1i8IAce4TI7oao75I1g245+6BctqTVQiBP3YUJ9C6DQOXJmkYR9X9fCLtCOJc5w==","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366552868,"size":1,"metadata":{"id":"rimraf@2.6.2","manifest":{"name":"rimraf","version":"2.6.2","dependencies":{"glob":"^7.0.5"},"optionalDependencies":{},"devDependencies":{"mkdirp":"^0.5.1","tap":"^10.1.2"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/rimraf/-/rimraf-2.6.2.tgz","_integrity":"sha512-lreewLK/BlghmxtfH36YYVg1i8IAce4TI7oao75I1g245+6BctqTVQiBP3YUJ9C6DQOXJmkYR9X9fCLtCOJc5w==","_shasum":"2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36","_shrinkwrap":null,"bin":{"rimraf":"./bin.js"},"_id":"rimraf@2.6.2"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/2f/bc/7b39ce6ea43619038b3f98c9498c8b6a418f64d46a2985618046b4374dd7 b/npm/.npm/_cacache/index-v5/2f/bc/7b39ce6ea43619038b3f98c9498c8b6a418f64d46a2985618046b4374dd7 new file mode 100644 index 0000000..552148e --- /dev/null +++ b/npm/.npm/_cacache/index-v5/2f/bc/7b39ce6ea43619038b3f98c9498c8b6a418f64d46a2985618046b4374dd7 @@ -0,0 +1,2 @@ + +89d687cb2dae888bf688ab498b00895ab4aa9ee0 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/is-finite","integrity":"sha512-8/MB/7CIKO4079DLRlifscoa0pzSVX+UWDGajUTNGiOx2SvdRSs19gynU3hi2ORt6mNqrz+tFYjvb2MWPgRmgg==","time":1540366553678,"size":1031,"metadata":{"url":"https://registry.npmjs.org/is-finite","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:53 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["1031"],"connection":["keep-alive"],"set-cookie":["__cfduid=d71c09ad4c392680cd6cdb95f6f73b04e1540366553; expires=Thu, 24-Oct-19 07:35:53 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4f06b5997da-FRA"],"etag":["\"f0f628f54074e06c7e5dc410eb437442\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 04:59:00 GMT"],"vary":["accept-encoding, accept"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/30/bb/76827b8e4ebb7c5c20cef5b94756e8565ae17072a249a65466cec5fe2a8b b/npm/.npm/_cacache/index-v5/30/bb/76827b8e4ebb7c5c20cef5b94756e8565ae17072a249a65466cec5fe2a8b new file mode 100644 index 0000000..ec11efa --- /dev/null +++ b/npm/.npm/_cacache/index-v5/30/bb/76827b8e4ebb7c5c20cef5b94756e8565ae17072a249a65466cec5fe2a8b @@ -0,0 +1,2 @@ + +04e766b07127c6821259b0714dd0f61b63300814 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz","integrity":"sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==","time":1540366554953,"size":5675,"metadata":{"url":"https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:validate-npm-package-license@https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["5675"],"connection":["keep-alive"],"set-cookie":["__cfduid=df67e5ef319aa7f039fce7c6b156185dd1540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f7fc70236c-FRA"],"etag":["\"c84f22a6bf1922d9d2a65c9779b3eea8\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 05 Aug 2018 16:59:07 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/31/0b/f9e32ed48edabc0db6fd82ed8c5079f3e178c73fb58ea59bcf1a1e94dd6e b/npm/.npm/_cacache/index-v5/31/0b/f9e32ed48edabc0db6fd82ed8c5079f3e178c73fb58ea59bcf1a1e94dd6e new file mode 100644 index 0000000..329ae48 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/31/0b/f9e32ed48edabc0db6fd82ed8c5079f3e178c73fb58ea59bcf1a1e94dd6e @@ -0,0 +1,2 @@ + +69984b85ef812cd9b423af91a3cefc134aeee0f0 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/underscore.string/-/underscore.string-3.3.5.tgz","integrity":"sha512-g+dpmgn+XBneLmXXo+sGlW5xQEt4ErkS3mgeN2GFbremYeMBSJKr9Wf2KJplQVaiPY/f7FN6atosWYNm9ovrYg==","time":1540366554956,"size":39235,"metadata":{"url":"https://registry.npmjs.org/underscore.string/-/underscore.string-3.3.5.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:underscore.string@https://registry.npmjs.org/underscore.string/-/underscore.string-3.3.5.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["39235"],"connection":["keep-alive"],"set-cookie":["__cfduid=d1e30761586934ebe9a214d9ae7797ade1540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f80f0596b8-FRA"],"etag":["\"2349440bd76cc81a32f75154729b6cab\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Thu, 04 Oct 2018 18:21:36 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/31/20/9d6575278fa0bb7b353910ebc03d48865688de412e018c873bc220bf7ed6 b/npm/.npm/_cacache/index-v5/31/20/9d6575278fa0bb7b353910ebc03d48865688de412e018c873bc220bf7ed6 new file mode 100644 index 0000000..f2a2172 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/31/20/9d6575278fa0bb7b353910ebc03d48865688de412e018c873bc220bf7ed6 @@ -0,0 +1,2 @@ + +5c6607a5e2666e63a8aae4c9d0bc2c9502ce5d97 {"key":"pacote:range-manifest:https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz:sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E=","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366553083,"size":1,"metadata":{"id":"array-find-index@1.0.2","manifest":{"name":"array-find-index","version":"1.0.2","engines":{"node":">=0.10.0"},"dependencies":{},"optionalDependencies":{},"devDependencies":{"ava":"*","xo":"*"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz","_integrity":"sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E=","_shasum":"df010aa1287e164bbda6f9723b0a96a1ec4187a1","_shrinkwrap":null,"bin":null,"_id":"array-find-index@1.0.2"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/32/6b/af6f5b7eadcf38b5d869dfe74234908deeccff79bda5075a1045d1e81725 b/npm/.npm/_cacache/index-v5/32/6b/af6f5b7eadcf38b5d869dfe74234908deeccff79bda5075a1045d1e81725 new file mode 100644 index 0000000..659ffb7 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/32/6b/af6f5b7eadcf38b5d869dfe74234908deeccff79bda5075a1045d1e81725 @@ -0,0 +1,2 @@ + +bbc1bfb56f740966421bc5d8cb07eda60abc1dd6 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/redent/-/redent-1.0.0.tgz","integrity":"sha1-z5Fqsf1fHxbfsggi3W7H9zDCr94=","time":1540366554959,"size":1611,"metadata":{"url":"https://registry.npmjs.org/redent/-/redent-1.0.0.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:redent@https://registry.npmjs.org/redent/-/redent-1.0.0.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["1611"],"connection":["keep-alive"],"set-cookie":["__cfduid=da5c3cee460fbe400eb5f132ba9e5d6cc1540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f81ea197b6-FRA"],"etag":["\"0f4b59bab77f651ab745700416010906\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 15:32:21 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/36/c5/9c3fe2b4d0a38b7ff2089089771344b7becb00d75e52660f3362ca181661 b/npm/.npm/_cacache/index-v5/36/c5/9c3fe2b4d0a38b7ff2089089771344b7becb00d75e52660f3362ca181661 new file mode 100644 index 0000000..2e5d0e4 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/36/c5/9c3fe2b4d0a38b7ff2089089771344b7becb00d75e52660f3362ca181661 @@ -0,0 +1,2 @@ + +36153e77fbfaca14c902ae8f582c9d58066b39e9 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/is-arrayish","integrity":"sha512-9v4KliXN4SqFD5fNFB8Lu5HAa0ohj3Jx5vJn/6Cj5cW2fzF7UEDtdJJhGuSsPsfc1sn96JxZg4sD+XwGE+VGhA==","time":1540366553537,"size":3761,"metadata":{"url":"https://registry.npmjs.org/is-arrayish","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:53 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["3761"],"connection":["keep-alive"],"set-cookie":["__cfduid=d10f089ced22f3a39637cb092ae406a3f1540366553; expires=Thu, 24-Oct-19 07:35:53 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4ef7c9ec2ab-FRA"],"etag":["\"74317da6f2ee0c1a8208dee7e5e96e1f\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Tue, 19 Jun 2018 08:09:50 GMT"],"vary":["accept-encoding, accept"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/36/c7/3f28d91cb9f58d2d08bd84bb7df553955b7add37acb3ac105967103da3cb b/npm/.npm/_cacache/index-v5/36/c7/3f28d91cb9f58d2d08bd84bb7df553955b7add37acb3ac105967103da3cb new file mode 100644 index 0000000..e9213b0 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/36/c7/3f28d91cb9f58d2d08bd84bb7df553955b7add37acb3ac105967103da3cb @@ -0,0 +1,2 @@ + +6db481ad6caa2ad3275eafab30f6f21c3b0de031 {"key":"pacote:range-manifest:https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz:sha1-mI3zP+qxke95mmE2nddsF635V+o=","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366553058,"size":1,"metadata":{"id":"currently-unhandled@0.4.1","manifest":{"name":"currently-unhandled","version":"0.4.1","engines":{"node":">=0.10.0"},"dependencies":{"array-find-index":"^1.0.1"},"optionalDependencies":{},"devDependencies":{"ava":"^0.15.1","bluebird":"^3.4.0","browserify":"^13.0.1","coveralls":"^2.11.9","delay":"^1.3.1","is-ci":"^1.0.8","karma":"^0.13.22","karma-browserify":"^5.0.5","karma-chrome-launcher":"^1.0.1","karma-firefox-launcher":"^1.0.0","karma-mocha":"^1.0.1","mocha":"^2.5.3","nyc":"^6.4.0","watchify":"^3.7.0","xo":"^0.15.0"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz","_integrity":"sha1-mI3zP+qxke95mmE2nddsF635V+o=","_shasum":"988df33feab191ef799a61369dd76c17adf957ea","_shrinkwrap":null,"bin":null,"_id":"currently-unhandled@0.4.1"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/39/ff/09c17d16bc47f31d832073b29eef3afdf091830a284193bbcd0925783026 b/npm/.npm/_cacache/index-v5/39/ff/09c17d16bc47f31d832073b29eef3afdf091830a284193bbcd0925783026 new file mode 100644 index 0000000..7774b9c --- /dev/null +++ b/npm/.npm/_cacache/index-v5/39/ff/09c17d16bc47f31d832073b29eef3afdf091830a284193bbcd0925783026 @@ -0,0 +1,2 @@ + +91a5ddd2e95ffa233a4d83fb3e391c2df70ca4ce {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz","integrity":"sha1-MIvur/3ygRkFHvodkyITyRuPkuc=","time":1540366553002,"size":1730,"metadata":{"url":"https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:camelcase-keys@https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:52 GMT"],"content-type":["application/octet-stream"],"content-length":["1730"],"connection":["keep-alive"],"set-cookie":["__cfduid=d1d6eab0d2e22adc5e523253c58c0bf391540366552; expires=Thu, 24-Oct-19 07:35:52 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4ec3be2972c-FRA"],"etag":["\"b3f6f896421197055b519c5b801300ed\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sat, 26 May 2018 19:19:00 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/3a/14/5e36da1ba7265a7d21a539dd3d52d4972d8597e3fbce1963da86c84ac4bb b/npm/.npm/_cacache/index-v5/3a/14/5e36da1ba7265a7d21a539dd3d52d4972d8597e3fbce1963da86c84ac4bb new file mode 100644 index 0000000..ecaabad --- /dev/null +++ b/npm/.npm/_cacache/index-v5/3a/14/5e36da1ba7265a7d21a539dd3d52d4972d8597e3fbce1963da86c84ac4bb @@ -0,0 +1,2 @@ + +313b10a97ef031d5237ac39c87d1cfd9dce51241 {"key":"pacote:range-manifest:https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz:sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366553392,"size":1,"metadata":{"id":"path-type@1.1.0","manifest":{"name":"path-type","version":"1.1.0","engines":{"node":">=0.10.0"},"dependencies":{"graceful-fs":"^4.1.2","pify":"^2.0.0","pinkie-promise":"^2.0.0"},"optionalDependencies":{},"devDependencies":{"ava":"*","xo":"*"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz","_integrity":"sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=","_shasum":"59c44f7ee491da704da415da5a4070ba4f8fe441","_shrinkwrap":null,"bin":null,"_id":"path-type@1.1.0"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/3a/48/099937fc1adb3fe8f39130113c74a03b909c0cfe1ba05792e0e670c25d56 b/npm/.npm/_cacache/index-v5/3a/48/099937fc1adb3fe8f39130113c74a03b909c0cfe1ba05792e0e670c25d56 new file mode 100644 index 0000000..3950731 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/3a/48/099937fc1adb3fe8f39130113c74a03b909c0cfe1ba05792e0e670c25d56 @@ -0,0 +1,2 @@ + +b9d532c3d4edce82f1ccad905d58d883ef72cb05 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/spdx-expression-parse","integrity":"sha512-y76v1COMlXoyB48MI3WwOlQ92ZAlvJJfNesWnXc+TgfpS/jxJYmRXXj33Cnz/pxw8JW4oNsPzXDhaWqnKCiwxA==","time":1540366553187,"size":4469,"metadata":{"url":"https://registry.npmjs.org/spdx-expression-parse","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:53 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["4469"],"connection":["keep-alive"],"set-cookie":["__cfduid=dd2517331d9fb312ea2a2b85acaa273931540366553; expires=Thu, 24-Oct-19 07:35:53 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4ed5ae29738-FRA"],"etag":["\"27423d7c28afa24470a255b91a1b9aaf\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 17:57:29 GMT"],"vary":["accept-encoding, accept"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/3a/e4/0ccb6ddb13c29a13a5743ba17b8328488a1bdebac660f49b3df51660ed34 b/npm/.npm/_cacache/index-v5/3a/e4/0ccb6ddb13c29a13a5743ba17b8328488a1bdebac660f49b3df51660ed34 new file mode 100644 index 0000000..c6dbaf3 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/3a/e4/0ccb6ddb13c29a13a5743ba17b8328488a1bdebac660f49b3df51660ed34 @@ -0,0 +1,2 @@ + +4c81a97c9d7d0fadc35367c3c52a31ef39f8476c {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/error-ex","integrity":"sha512-f2m05qbkIou6wl9REwza1r51GTOK4G8baI0hWQhOMArzw81x+6QnH05v2ToSJZfDT+XrF7Ds8UxTwa1AgcrGCg==","time":1540366553481,"size":6902,"metadata":{"url":"https://registry.npmjs.org/error-ex","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:53 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["6902"],"connection":["keep-alive"],"set-cookie":["__cfduid=db7fad9ba0ab25aa016f38fdec4afc4c21540366553; expires=Thu, 24-Oct-19 07:35:53 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4ef2db0c2a6-FRA"],"etag":["\"5045f079d2412d4cbf4322f866efc6a5\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Tue, 19 Jun 2018 06:22:08 GMT"],"vary":["accept-encoding, accept"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/3b/1b/94fe8b8e60d472f903f31475b69e214c54e36039c4401d662f236d628fbc b/npm/.npm/_cacache/index-v5/3b/1b/94fe8b8e60d472f903f31475b69e214c54e36039c4401d662f236d628fbc new file mode 100644 index 0000000..9b64e0d --- /dev/null +++ b/npm/.npm/_cacache/index-v5/3b/1b/94fe8b8e60d472f903f31475b69e214c54e36039c4401d662f236d628fbc @@ -0,0 +1,2 @@ + +a9b408155bac5ced23732ba76dbe34a75b167831 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.0.2.tgz","integrity":"sha512-q9hedtzyXHr5S0A1vEPoK/7l8NpfkFYTq6iCY+Pno2ZbdZR6WexZFtqeVGkGxW3TEJMN914Z55EnAGMmenlIQQ==","time":1540366554956,"size":6881,"metadata":{"url":"https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.0.2.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:spdx-correct@https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.0.2.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["6881"],"connection":["keep-alive"],"set-cookie":["__cfduid=ddd183c0bafb27c5e300c64cce828e7281540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f81e5e9ad0-FRA"],"etag":["\"f61639615470aaf1e44e28fefa537d57\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Thu, 04 Oct 2018 19:51:57 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/3b/a0/7428be212239e968fea4e79d709663078786b4d3f059c7c0a6a9c5af7d36 b/npm/.npm/_cacache/index-v5/3b/a0/7428be212239e968fea4e79d709663078786b4d3f059c7c0a6a9c5af7d36 new file mode 100644 index 0000000..22cfa13 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/3b/a0/7428be212239e968fea4e79d709663078786b4d3f059c7c0a6a9c5af7d36 @@ -0,0 +1,2 @@ + +f60937a4a93fce91f690eedfb0210d4aa4b58515 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz","integrity":"sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=","time":1540366554817,"size":1922,"metadata":{"url":"https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:path-exists@https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["1922"],"connection":["keep-alive"],"set-cookie":["__cfduid=d73f41e2de42ab9ee857924620b161eaa1540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f69d1f975c-FRA"],"etag":["\"4cc32b19e220e3ca0f4d14844996dc56\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 11:56:44 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/3c/8f/ece8487b57e0cf728a34ce15c55aa2c7aeaa5906df279426275a8607ff5a b/npm/.npm/_cacache/index-v5/3c/8f/ece8487b57e0cf728a34ce15c55aa2c7aeaa5906df279426275a8607ff5a new file mode 100644 index 0000000..8988b62 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/3c/8f/ece8487b57e0cf728a34ce15c55aa2c7aeaa5906df279426275a8607ff5a @@ -0,0 +1,2 @@ + +8434f2f59477be5e91d9224cb3d92f81dd16cad4 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/coffeescript","integrity":"sha512-sNdbkW4r6fyf+SJNgUskM3455XxGy+OckXkPfACwk6vvZROYyLImPz1o+hE8o2gCnoNEvC3f3muWGwZKGWSr8g==","time":1540366552730,"size":34296,"metadata":{"url":"https://registry.npmjs.org/coffeescript","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:52 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["34296"],"connection":["keep-alive"],"set-cookie":["__cfduid=d51d9d34a4ef13b9708ef716fe5e340fb1540366552; expires=Thu, 24-Oct-19 07:35:52 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4ea7accc2ab-FRA"],"etag":["\"32e222786d33a7120172ae2d05d53c1e\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Thu, 20 Sep 2018 07:05:10 GMT"],"vary":["accept-encoding, accept"],"x-amz-meta-rev":["132-6043d0aaccefccc6e7b7be589d1442d5"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/3d/dd/3e8c6b6c875addf2057fb5fa152fff0fab217f78a8e51c0aa457a925bf12 b/npm/.npm/_cacache/index-v5/3d/dd/3e8c6b6c875addf2057fb5fa152fff0fab217f78a8e51c0aa457a925bf12 new file mode 100644 index 0000000..4210e9d --- /dev/null +++ b/npm/.npm/_cacache/index-v5/3d/dd/3e8c6b6c875addf2057fb5fa152fff0fab217f78a8e51c0aa457a925bf12 @@ -0,0 +1,2 @@ + +96c098e70e2e47fda21019cb2eb062a5eb626d91 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz","integrity":"sha1-F0uSaHNVNP+8es5r9TpanhtcX18=","time":1540366554811,"size":1882,"metadata":{"url":"https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:path-is-absolute@https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["1882"],"connection":["keep-alive"],"set-cookie":["__cfduid=d5e261c8f8fb9a411f0fd8f9a054ada581540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f69be6c29c-FRA"],"etag":["\"18bfccb10294ae19e7eb616ed1c05176\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 11:56:47 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/3e/08/f06dd79020ab71420a41a29130d9ad7971ea0637eba856cf2e043e69088e b/npm/.npm/_cacache/index-v5/3e/08/f06dd79020ab71420a41a29130d9ad7971ea0637eba856cf2e043e69088e new file mode 100644 index 0000000..c1bce2b --- /dev/null +++ b/npm/.npm/_cacache/index-v5/3e/08/f06dd79020ab71420a41a29130d9ad7971ea0637eba856cf2e043e69088e @@ -0,0 +1,2 @@ + +c8163a07fb9476626efe6b69d0e7e868cc00d5ed {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/array-find-index","integrity":"sha512-SlTfsW5eIeGPkxuklTBAnd9dl4QfdNcFUmlZzghoXpqf9OX6MiHJSLvjBZ6PGVMHpu3xs0zGxezNb/tM2t+ODw==","time":1540366553081,"size":1036,"metadata":{"url":"https://registry.npmjs.org/array-find-index","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:53 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["1036"],"connection":["keep-alive"],"set-cookie":["__cfduid=d71c09ad4c392680cd6cdb95f6f73b04e1540366553; expires=Thu, 24-Oct-19 07:35:53 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4eca8f797da-FRA"],"etag":["\"3c5055965cfd3b262c993125382a2419\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sat, 26 May 2018 17:22:03 GMT"],"vary":["accept-encoding, accept"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/40/8d/dfbc293be9aec60d486ecfadc25eaa8563d97ba697984a0d25240d19a373 b/npm/.npm/_cacache/index-v5/40/8d/dfbc293be9aec60d486ecfadc25eaa8563d97ba697984a0d25240d19a373 new file mode 100644 index 0000000..3948c8f --- /dev/null +++ b/npm/.npm/_cacache/index-v5/40/8d/dfbc293be9aec60d486ecfadc25eaa8563d97ba697984a0d25240d19a373 @@ -0,0 +1,2 @@ + +1ee22feee27791cbdc05e52608d68decc707db70 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/pify","integrity":"sha512-W/eF5Md9wGcYrhVb05UyxH4e4109JPInIOZjYy4eWfvu2pmk77W70BgJPPFZStt8fLw9LxgDPLAOpsuPC1enpQ==","time":1540366553426,"size":5092,"metadata":{"url":"https://registry.npmjs.org/pify","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:53 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["5092"],"connection":["keep-alive"],"set-cookie":["__cfduid=d162071ff706d63145bc32a7d93535d5f1540366553; expires=Thu, 24-Oct-19 07:35:53 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4eec9719726-FRA"],"etag":["\"5b56651acb7518adffb39433a8ca858c\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Mon, 22 Oct 2018 12:59:03 GMT"],"vary":["accept-encoding, accept"],"x-amz-meta-rev":["76-a594bcee016c0f14a6a1a63062d3ab05"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/45/c6/c014c88a40735f1e78ee49f836b3a541bd3ba3b26054c3e6ee6679ed0d23 b/npm/.npm/_cacache/index-v5/45/c6/c014c88a40735f1e78ee49f836b3a541bd3ba3b26054c3e6ee6679ed0d23 new file mode 100644 index 0000000..ac3cbfe --- /dev/null +++ b/npm/.npm/_cacache/index-v5/45/c6/c014c88a40735f1e78ee49f836b3a541bd3ba3b26054c3e6ee6679ed0d23 @@ -0,0 +1,2 @@ + +a0fd404ba4f190a521484a70b274ace54ecaa333 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz","integrity":"sha1-mI3zP+qxke95mmE2nddsF635V+o=","time":1540366554811,"size":2513,"metadata":{"url":"https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:currently-unhandled@https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["2513"],"connection":["keep-alive"],"set-cookie":["__cfduid=d1e30761586934ebe9a214d9ae7797ade1540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f69e3696b8-FRA"],"etag":["\"4d7fef46fe3f9cd383d06ced6a46499c\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sat, 26 May 2018 21:32:28 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/47/5a/05e9e84703321d2601783d1717db301ea27095550342a378b560bbd3e9c2 b/npm/.npm/_cacache/index-v5/47/5a/05e9e84703321d2601783d1717db301ea27095550342a378b560bbd3e9c2 new file mode 100644 index 0000000..f0ad832 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/47/5a/05e9e84703321d2601783d1717db301ea27095550342a378b560bbd3e9c2 @@ -0,0 +1,2 @@ + +74ee6e6abb81279dc986351a202bb63039ce7463 {"key":"pacote:range-manifest:https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz:sha1-ITXW36ejWMBprJsXh3YogihFD/o=","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366553293,"size":1,"metadata":{"id":"pinkie-promise@2.0.1","manifest":{"name":"pinkie-promise","version":"2.0.1","engines":{"node":">=0.10.0"},"dependencies":{"pinkie":"^2.0.0"},"optionalDependencies":{},"devDependencies":{"mocha":"*"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz","_integrity":"sha1-ITXW36ejWMBprJsXh3YogihFD/o=","_shasum":"2135d6dfa7a358c069ac9b178776288228450ffa","_shrinkwrap":null,"bin":null,"_id":"pinkie-promise@2.0.1"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/48/99/566ceee5e9a8a54c845eaed8e5ebe50bc4532e0ba7a8cefe33f8910b56c1 b/npm/.npm/_cacache/index-v5/48/99/566ceee5e9a8a54c845eaed8e5ebe50bc4532e0ba7a8cefe33f8910b56c1 new file mode 100644 index 0000000..59d9b7e --- /dev/null +++ b/npm/.npm/_cacache/index-v5/48/99/566ceee5e9a8a54c845eaed8e5ebe50bc4532e0ba7a8cefe33f8910b56c1 @@ -0,0 +1,2 @@ + +20498c8f44f5ef6f4f7c242be956beafca39b449 {"key":"pacote:range-manifest:https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz:sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366553822,"size":1,"metadata":{"id":"brace-expansion@1.1.11","manifest":{"name":"brace-expansion","version":"1.1.11","dependencies":{"balanced-match":"^1.0.0","concat-map":"0.0.1"},"optionalDependencies":{},"devDependencies":{"matcha":"^0.7.0","tape":"^4.6.0"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz","_integrity":"sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==","_shasum":"3c7fcbf529d87226f3d2f52b966ff5271eb441dd","_shrinkwrap":null,"bin":null,"_id":"brace-expansion@1.1.11"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/49/63/a189047b15f3f2177f73203563b65a7ff95ffb1999f1ea1bd332014d74fe b/npm/.npm/_cacache/index-v5/49/63/a189047b15f3f2177f73203563b65a7ff95ffb1999f1ea1bd332014d74fe new file mode 100644 index 0000000..73b374c --- /dev/null +++ b/npm/.npm/_cacache/index-v5/49/63/a189047b15f3f2177f73203563b65a7ff95ffb1999f1ea1bd332014d74fe @@ -0,0 +1,2 @@ + +ef0da8cb0ab35d8ca0e0ab6683205fd3351970f9 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/grunt-legacy-util","integrity":"sha512-42U05yEIMiKNA95+MHMP2CAYCEYdQyhaWfN1PJAV7KfTzSA8WzV3o/NfpPF7pVDhPx28oO7IKxDA76MGVbr2EA==","time":1540366552766,"size":6892,"metadata":{"url":"https://registry.npmjs.org/grunt-legacy-util","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:52 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["6892"],"connection":["keep-alive"],"set-cookie":["__cfduid=df6f72caf769c9ecc2bc51db62d6f8ef91540366552; expires=Thu, 24-Oct-19 07:35:52 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4ea8ea09aca-FRA"],"etag":["\"534da71be8492467b627a68daed0d165\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 02:57:32 GMT"],"vary":["accept-encoding, accept"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/4a/c3/7408bd3b7e201d83eaa3dd950c92aafe6db31a0a6ace52dfbe4f45f1e3a3 b/npm/.npm/_cacache/index-v5/4a/c3/7408bd3b7e201d83eaa3dd950c92aafe6db31a0a6ace52dfbe4f45f1e3a3 new file mode 100644 index 0000000..7c3dbca --- /dev/null +++ b/npm/.npm/_cacache/index-v5/4a/c3/7408bd3b7e201d83eaa3dd950c92aafe6db31a0a6ace52dfbe4f45f1e3a3 @@ -0,0 +1,2 @@ + +3a7c63b4e87112eebfbc8c9f28e03de71a7d973a {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/hosted-git-info","integrity":"sha512-UduqkrANHTQgOmfnxPt0oRrFD5HQ4RTD4DT26zs+zYORFPQZJfY5mgv2bPUWUqSPNS5Mg/tW+V4S2e53/RCScw==","time":1540366553123,"size":12548,"metadata":{"url":"https://registry.npmjs.org/hosted-git-info","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:53 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["12548"],"connection":["keep-alive"],"set-cookie":["__cfduid=db7fad9ba0ab25aa016f38fdec4afc4c21540366553; expires=Thu, 24-Oct-19 07:35:53 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4ecd8ddc2a6-FRA"],"etag":["\"41c98d10dfd0be47437b0f86070cb554\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sat, 07 Jul 2018 01:02:52 GMT"],"vary":["accept-encoding, accept"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/4c/23/29ccd231dd78269bdc899e2a6db1de00b1eebf2fd46b555edc4431e0bd6c b/npm/.npm/_cacache/index-v5/4c/23/29ccd231dd78269bdc899e2a6db1de00b1eebf2fd46b555edc4431e0bd6c new file mode 100644 index 0000000..9dcf3ec --- /dev/null +++ b/npm/.npm/_cacache/index-v5/4c/23/29ccd231dd78269bdc899e2a6db1de00b1eebf2fd46b555edc4431e0bd6c @@ -0,0 +1,2 @@ + +a1c09e3f71a1a4692e516066b96a96ccbd784fa3 {"key":"pacote:range-manifest:https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz:sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366553982,"size":1,"metadata":{"id":"abbrev@1.1.1","manifest":{"name":"abbrev","version":"1.1.1","dependencies":{},"optionalDependencies":{},"devDependencies":{"tap":"^10.1"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz","_integrity":"sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==","_shasum":"f8f2c887ad10bf67f634f005b6987fed3179aac8","_shrinkwrap":null,"bin":null,"_id":"abbrev@1.1.1"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/4c/81/c53ba246c8bc38201cddda4ac317fd8ea1777353537967686ed6a1d7a9fb b/npm/.npm/_cacache/index-v5/4c/81/c53ba246c8bc38201cddda4ac317fd8ea1777353537967686ed6a1d7a9fb new file mode 100644 index 0000000..59d010d --- /dev/null +++ b/npm/.npm/_cacache/index-v5/4c/81/c53ba246c8bc38201cddda4ac317fd8ea1777353537967686ed6a1d7a9fb @@ -0,0 +1,2 @@ + +07f385148ff9fa6678ed7b9b7457f1f972e53be6 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/spdx-exceptions","integrity":"sha512-RUFUF5E5/2TU3hue+o9kYo9dW2w5QpWicF3vX8TJ73ILRdJNw9mjCW+VH4BDGoyEr4tdbCY8f6380GRxjiA6CA==","time":1540366553230,"size":3345,"metadata":{"url":"https://registry.npmjs.org/spdx-exceptions","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:53 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["3345"],"connection":["keep-alive"],"set-cookie":["__cfduid=d71c09ad4c392680cd6cdb95f6f73b04e1540366553; expires=Thu, 24-Oct-19 07:35:53 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4ed998197da-FRA"],"etag":["\"e61e7597ccae53c7092c7d1193b53739\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Mon, 01 Oct 2018 16:10:14 GMT"],"vary":["accept-encoding, accept"],"x-amz-meta-rev":["9-249a547c0fb21d34e165cadfe5212a55"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/4c/c4/ef186d8b26329cfb0cdd3969d015a3ce749d76fb273f01441fb13c7e65b8 b/npm/.npm/_cacache/index-v5/4c/c4/ef186d8b26329cfb0cdd3969d015a3ce749d76fb273f01441fb13c7e65b8 new file mode 100644 index 0000000..a1e06ca --- /dev/null +++ b/npm/.npm/_cacache/index-v5/4c/c4/ef186d8b26329cfb0cdd3969d015a3ce749d76fb273f01441fb13c7e65b8 @@ -0,0 +1,2 @@ + +47261884f18657ee0b4d670b70ef64206daf8f7e {"key":"pacote:range-manifest:https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz:sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366552821,"size":1,"metadata":{"id":"iconv-lite@0.4.24","manifest":{"name":"iconv-lite","version":"0.4.24","engines":{"node":">=0.10.0"},"dependencies":{"safer-buffer":">= 2.1.2 < 3"},"optionalDependencies":{},"devDependencies":{"mocha":"^3.1.0","request":"~2.87.0","unorm":"*","errto":"*","async":"*","istanbul":"*","semver":"*","iconv":"*"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz","_integrity":"sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==","_shasum":"2022b4b25fbddc21d2f524974a474aafe733908b","_shrinkwrap":null,"bin":null,"_id":"iconv-lite@0.4.24"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/4d/f8/b86fde8b1e7369d959970bb9c4dd9b2dbf24e71673bcd978edebc71f9647 b/npm/.npm/_cacache/index-v5/4d/f8/b86fde8b1e7369d959970bb9c4dd9b2dbf24e71673bcd978edebc71f9647 new file mode 100644 index 0000000..5f8a7a2 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/4d/f8/b86fde8b1e7369d959970bb9c4dd9b2dbf24e71673bcd978edebc71f9647 @@ -0,0 +1,2 @@ + +868d4d2a1dc041ece52f159d0ea2594eb11e4b51 {"key":"pacote:range-manifest:https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz:sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366554098,"size":1,"metadata":{"id":"supports-color@5.5.0","manifest":{"name":"supports-color","version":"5.5.0","engines":{"node":">=4"},"dependencies":{"has-flag":"^3.0.0"},"optionalDependencies":{},"devDependencies":{"ava":"^0.25.0","import-fresh":"^2.0.0","xo":"^0.20.0"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz","_integrity":"sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==","_shasum":"e2e69a44ac8772f78a1ec0b35b689df6530efc8f","_shrinkwrap":null,"bin":null,"_id":"supports-color@5.5.0"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/4e/26/1c2abc214f4c4a414beaccf94423473aa23ccdcb65d03fe4ea49aad85a6e b/npm/.npm/_cacache/index-v5/4e/26/1c2abc214f4c4a414beaccf94423473aa23ccdcb65d03fe4ea49aad85a6e new file mode 100644 index 0000000..5a9a7e4 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/4e/26/1c2abc214f4c4a414beaccf94423473aa23ccdcb65d03fe4ea49aad85a6e @@ -0,0 +1,2 @@ + +a421da84e976546e67112510c16bb772de6b9602 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/grunt-cli","integrity":"sha512-j5vSeLlu7gMItlOH//hLKPHNWUEOf+BY0ftc8/FiNEMmUMcW5+VtB6sp4cgRG11URvszuFVXGkAbZJX/+gyEvw==","time":1540366552767,"size":10848,"metadata":{"url":"https://registry.npmjs.org/grunt-cli","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:52 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["10848"],"connection":["keep-alive"],"set-cookie":["__cfduid=df389fe0c3fd8ffd46a700dabd98a27c71540366552; expires=Thu, 24-Oct-19 07:35:52 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4ea89b39738-FRA"],"etag":["\"dac74f3ccb4718e794e39a215b4561f9\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 19 Aug 2018 03:56:38 GMT"],"vary":["accept-encoding, accept"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/50/20/f55e6e49226f7b27116bf96f812ba2731eb6f7300b715bd66b06265c6cf9 b/npm/.npm/_cacache/index-v5/50/20/f55e6e49226f7b27116bf96f812ba2731eb6f7300b715bd66b06265c6cf9 new file mode 100644 index 0000000..dc7569a --- /dev/null +++ b/npm/.npm/_cacache/index-v5/50/20/f55e6e49226f7b27116bf96f812ba2731eb6f7300b715bd66b06265c6cf9 @@ -0,0 +1,2 @@ + +ad2473977b01f7ec0c484af9fbebe90ab667e9c9 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/spdx-correct","integrity":"sha512-SzMtx9G080nkSD0cLzXzFoqpL4CQQVAy3IoFpxAwIxXUf5Kgp/GdcbNMxFjGPCqfs02nDI936SYwQOtIxMdZ9g==","time":1540366553192,"size":8814,"metadata":{"url":"https://registry.npmjs.org/spdx-correct","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:53 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["8814"],"connection":["keep-alive"],"set-cookie":["__cfduid=d9dcfcc7e2ca203ea1b61eeff9aa0f9851540366553; expires=Thu, 24-Oct-19 07:35:53 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4ed5a00c305-FRA"],"etag":["\"30f8066f06d11a50d6a79efe3ef34bbe\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Thu, 04 Oct 2018 19:51:57 GMT"],"vary":["accept-encoding, accept"],"x-amz-meta-rev":["17-9cbe614f8d75abb96b54e31a85358c53"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/50/2a/230beb98424818ea3db41e9bede6a6673c020252a2bccd7ebd5274720e0e b/npm/.npm/_cacache/index-v5/50/2a/230beb98424818ea3db41e9bede6a6673c020252a2bccd7ebd5274720e0e new file mode 100644 index 0000000..1dd4332 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/50/2a/230beb98424818ea3db41e9bede6a6673c020252a2bccd7ebd5274720e0e @@ -0,0 +1,2 @@ + +490d73ddf0958cce88749cc59d9eeb75fa26d607 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz","integrity":"sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=","time":1540366552837,"size":4991,"metadata":{"url":"https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:mkdirp@https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:52 GMT"],"content-type":["application/octet-stream"],"content-length":["4991"],"connection":["keep-alive"],"set-cookie":["__cfduid=df389fe0c3fd8ffd46a700dabd98a27c71540366552; expires=Thu, 24-Oct-19 07:35:52 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4eb2a079738-FRA"],"etag":["\"21765e2a281e8baa6e50b5e57578d232\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 08:12:45 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/50/97/64e728860cbe2df82aff17c58837fefa13d2af4d49eeeda88360944d94fb b/npm/.npm/_cacache/index-v5/50/97/64e728860cbe2df82aff17c58837fefa13d2af4d49eeeda88360944d94fb new file mode 100644 index 0000000..4ef54e9 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/50/97/64e728860cbe2df82aff17c58837fefa13d2af4d49eeeda88360944d94fb @@ -0,0 +1,2 @@ + +23ff4ccae33d41ccbfd1841671958c758215ddf2 {"key":"pacote:range-manifest:https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz:sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366553784,"size":1,"metadata":{"id":"wrappy@1.0.2","manifest":{"name":"wrappy","version":"1.0.2","dependencies":{},"optionalDependencies":{},"devDependencies":{"tap":"^2.3.1"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz","_integrity":"sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=","_shasum":"b5243d8f3ec1aa35f1364605bc0d1036e30ab69f","_shrinkwrap":null,"bin":null,"_id":"wrappy@1.0.2"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/50/d8/ee9579f995155298d1bffcc51c5419a935d6daf3d5b4484dd9ce1596e858 b/npm/.npm/_cacache/index-v5/50/d8/ee9579f995155298d1bffcc51c5419a935d6daf3d5b4484dd9ce1596e858 new file mode 100644 index 0000000..e0afaa1 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/50/d8/ee9579f995155298d1bffcc51c5419a935d6daf3d5b4484dd9ce1596e858 @@ -0,0 +1,2 @@ + +cc63a9367d9535c77d94997b24b9a603c9f0da0b {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/glob/-/glob-7.0.6.tgz","integrity":"sha1-IRuvr0nlJbjNkyYNFKsTYVKz9Xo=","time":1540366554916,"size":15398,"metadata":{"url":"https://registry.npmjs.org/glob/-/glob-7.0.6.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:glob@https://registry.npmjs.org/glob/-/glob-7.0.6.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["15398"],"connection":["keep-alive"],"set-cookie":["__cfduid=d95ea88f44a652b9813abc16a7de3dbcd1540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f7bfe397da-FRA"],"etag":["\"3d01364ce8af4f4351cb50be14ec1341\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 02:29:16 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/51/04/db5eaba497e1f7107e4bac42658bc1d07c9947a1a0b95a93990ed495635f b/npm/.npm/_cacache/index-v5/51/04/db5eaba497e1f7107e4bac42658bc1d07c9947a1a0b95a93990ed495635f new file mode 100644 index 0000000..bb9312a --- /dev/null +++ b/npm/.npm/_cacache/index-v5/51/04/db5eaba497e1f7107e4bac42658bc1d07c9947a1a0b95a93990ed495635f @@ -0,0 +1,2 @@ + +8ea8f064acb4e6cae9c54186c4bfb065f432fd95 {"key":"pacote:range-manifest:http://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz:sha1-MIvur/3ygRkFHvodkyITyRuPkuc=","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366553003,"size":1,"metadata":{"id":"camelcase-keys@2.1.0","manifest":{"name":"camelcase-keys","version":"2.1.0","engines":{"node":">=0.10.0"},"dependencies":{"camelcase":"^2.0.0","map-obj":"^1.0.0"},"optionalDependencies":{},"devDependencies":{"ava":"*","xo":"*"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"http://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz","_integrity":"sha1-MIvur/3ygRkFHvodkyITyRuPkuc=","_shasum":"308beeaffdf28119051efa1d932213c91b8f92e7","_shrinkwrap":null,"bin":null,"_id":"camelcase-keys@2.1.0"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/53/20/f4397c2195922d703dd0c836a3568cabfec43cc2a21ac016f461688229c1 b/npm/.npm/_cacache/index-v5/53/20/f4397c2195922d703dd0c836a3568cabfec43cc2a21ac016f461688229c1 new file mode 100644 index 0000000..6890103 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/53/20/f4397c2195922d703dd0c836a3568cabfec43cc2a21ac016f461688229c1 @@ -0,0 +1,2 @@ + +4835a744d235fffab23bf1f4a9effce96e0b992a {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/sprintf-js","integrity":"sha512-kJB7DZAo5dcr66BK9C1aBxGlYqAAUA2V+A4e9a2GH2J421e7WVd2dy0/nUJQXM0jVWzMd+C9U+CwHhAB+nMlrw==","time":1540366554254,"size":2257,"metadata":{"url":"https://registry.npmjs.org/sprintf-js","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["2257"],"connection":["keep-alive"],"set-cookie":["__cfduid=d9869d033067b7009920f4fd40f223fae1540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4f3ff1ac305-FRA"],"etag":["\"b5726b8e7b473b035be425671133713b\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 18:03:31 GMT"],"vary":["accept-encoding, accept"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/54/3d/50abec64d81d131ab725ae1b3f52bb6ed3fedf1bcd3ff19ff8574e6e2109 b/npm/.npm/_cacache/index-v5/54/3d/50abec64d81d131ab725ae1b3f52bb6ed3fedf1bcd3ff19ff8574e6e2109 new file mode 100644 index 0000000..d402cc3 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/54/3d/50abec64d81d131ab725ae1b3f52bb6ed3fedf1bcd3ff19ff8574e6e2109 @@ -0,0 +1,2 @@ + +3149f8e4f17f3bb8e5189f28870ba2b60c533aad {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/nopt","integrity":"sha512-tJXzX6Ql+KR0we/Sbmau+9vhHIDFZZeAH1zylpY1/hVaLReyAzYKiO/oh1sgmrovIHD4STaBR1Une4s8b0NhHQ==","time":1540366552814,"size":7762,"metadata":{"url":"https://registry.npmjs.org/nopt","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:52 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["7762"],"connection":["keep-alive"],"set-cookie":["__cfduid=d1d96ca40cad547a4e90ec6a48eaaaea91540366552; expires=Thu, 24-Oct-19 07:35:52 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4eae9df64c9-FRA"],"etag":["\"3612e2c53206752a198852aa00cf8bd3\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 10:32:48 GMT"],"vary":["accept-encoding, accept"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/56/7b/c5baeb198da14962d21d0cd752f073410fe7e8fefe2efc248224d26d483f b/npm/.npm/_cacache/index-v5/56/7b/c5baeb198da14962d21d0cd752f073410fe7e8fefe2efc248224d26d483f new file mode 100644 index 0000000..2931e9d --- /dev/null +++ b/npm/.npm/_cacache/index-v5/56/7b/c5baeb198da14962d21d0cd752f073410fe7e8fefe2efc248224d26d483f @@ -0,0 +1,2 @@ + +0d8efaebfa9a88b67050ea80b99a41b6f53e68a1 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/strip-indent","integrity":"sha512-IITSDV48S72j0j/rzsNXUbuptWQixOghNi4ke9ELOqmGNbFzTUkX5Kr7kM+VxoSL9Tby3ssIK1pd1suu1T0nxw==","time":1540366553604,"size":2493,"metadata":{"url":"https://registry.npmjs.org/strip-indent","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:53 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["2493"],"connection":["keep-alive"],"set-cookie":["__cfduid=de37877763307c73cdce09f43308103f21540366553; expires=Thu, 24-Oct-19 07:35:53 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4efeb3e9aca-FRA"],"etag":["\"7584f12978a29f85fe231d980092cdef\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 18:26:03 GMT"],"vary":["accept-encoding, accept"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/56/b5/20b5a098270deb60cf28935422522e5aa18afc60ca1c8530213e2da2a0f4 b/npm/.npm/_cacache/index-v5/56/b5/20b5a098270deb60cf28935422522e5aa18afc60ca1c8530213e2da2a0f4 new file mode 100644 index 0000000..e103d63 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/56/b5/20b5a098270deb60cf28935422522e5aa18afc60ca1c8530213e2da2a0f4 @@ -0,0 +1,2 @@ + +d9f2820070311ecaa6a12faf21519ece51a61ce7 {"key":"pacote:range-manifest:https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz:sha1-F0uSaHNVNP+8es5r9TpanhtcX18=","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366552827,"size":1,"metadata":{"id":"path-is-absolute@1.0.1","manifest":{"name":"path-is-absolute","version":"1.0.1","engines":{"node":">=0.10.0"},"dependencies":{},"optionalDependencies":{},"devDependencies":{"xo":"^0.16.0"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz","_integrity":"sha1-F0uSaHNVNP+8es5r9TpanhtcX18=","_shasum":"174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f","_shrinkwrap":null,"bin":null,"_id":"path-is-absolute@1.0.1"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/56/c7/b1041352e5900470f0a710be1b5ca17ee2b11b7bdda49903ec741e022551 b/npm/.npm/_cacache/index-v5/56/c7/b1041352e5900470f0a710be1b5ca17ee2b11b7bdda49903ec741e022551 new file mode 100644 index 0000000..97c47a7 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/56/c7/b1041352e5900470f0a710be1b5ca17ee2b11b7bdda49903ec741e022551 @@ -0,0 +1,2 @@ + +4c0afb892203e33f94c180784e885d79286c2ec5 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/signal-exit","integrity":"sha512-EBMUgRx++A61fcHm6zrYoPp3Wlc0Qw0FPHhDW3C/q2RhJeWf0Jo8yqNL4rMPPqQkTROyePy6iu7cUaYCGvA+Uw==","time":1540366553050,"size":4811,"metadata":{"url":"https://registry.npmjs.org/signal-exit","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:53 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["4811"],"connection":["keep-alive"],"set-cookie":["__cfduid=dd2517331d9fb312ea2a2b85acaa273931540366553; expires=Thu, 24-Oct-19 07:35:53 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4ec7a929738-FRA"],"etag":["\"aad68c1d4c25ca665adbed743044e3f2\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 17:16:56 GMT"],"vary":["accept-encoding, accept"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/56/d0/390030f6bedab65e8a708b5add3315976e1ae46141292184f4a48e191d74 b/npm/.npm/_cacache/index-v5/56/d0/390030f6bedab65e8a708b5add3315976e1ae46141292184f4a48e191d74 new file mode 100644 index 0000000..a372941 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/56/d0/390030f6bedab65e8a708b5add3315976e1ae46141292184f4a48e191d74 @@ -0,0 +1,2 @@ + +cbe839af17c27b664cca759e95c5af1eb7c1194f {"key":"pacote:range-manifest:http://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz:sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366553396,"size":1,"metadata":{"id":"load-json-file@1.1.0","manifest":{"name":"load-json-file","version":"1.1.0","engines":{"node":">=0.10.0"},"dependencies":{"graceful-fs":"^4.1.2","parse-json":"^2.2.0","pify":"^2.0.0","pinkie-promise":"^2.0.0","strip-bom":"^2.0.0"},"optionalDependencies":{},"devDependencies":{"ava":"*","xo":"*"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"http://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz","_integrity":"sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=","_shasum":"956905708d58b4bab4c2261b04f59f31c99374c0","_shrinkwrap":null,"bin":null,"_id":"load-json-file@1.1.0"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/57/b5/7e5659830d201eb18a5b89193162b7f1a17a6596e01c0ab66e4544592af2 b/npm/.npm/_cacache/index-v5/57/b5/7e5659830d201eb18a5b89193162b7f1a17a6596e01c0ab66e4544592af2 new file mode 100644 index 0000000..40865e5 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/57/b5/7e5659830d201eb18a5b89193162b7f1a17a6596e01c0ab66e4544592af2 @@ -0,0 +1,2 @@ + +30087cf5502b95c8b7720d4a1d7dcd3dcd980c89 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz","integrity":"sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=","time":1540366553006,"size":7724,"metadata":{"url":"https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:minimist@https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:52 GMT"],"content-type":["application/octet-stream"],"content-length":["7724"],"connection":["keep-alive"],"set-cookie":["__cfduid=d51d9d34a4ef13b9708ef716fe5e340fb1540366552; expires=Thu, 24-Oct-19 07:35:52 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4ec2e13c2ab-FRA"],"etag":["\"344ebc739f4f61c755e56a24031a8c02\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 08:07:34 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/58/a5/6d71d817cd71ea8bc2e2e79c5772127a9c3d907475b75365f896af73af56 b/npm/.npm/_cacache/index-v5/58/a5/6d71d817cd71ea8bc2e2e79c5772127a9c3d907475b75365f896af73af56 new file mode 100644 index 0000000..5e4208b --- /dev/null +++ b/npm/.npm/_cacache/index-v5/58/a5/6d71d817cd71ea8bc2e2e79c5772127a9c3d907475b75365f896af73af56 @@ -0,0 +1,2 @@ + +90d9061f617f793cc3972ba1e2ca12c07d118998 {"key":"pacote:range-manifest:https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz:sha1-tdRU3CGZriJWmfNGfloH87lVuv0=","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366554186,"size":1,"metadata":{"id":"has-flag@3.0.0","manifest":{"name":"has-flag","version":"3.0.0","engines":{"node":">=4"},"dependencies":{},"optionalDependencies":{},"devDependencies":{"ava":"*","xo":"*"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz","_integrity":"sha1-tdRU3CGZriJWmfNGfloH87lVuv0=","_shasum":"b5d454dc2199ae225699f3467e5a07f3b955bafd","_shrinkwrap":null,"bin":null,"_id":"has-flag@3.0.0"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/59/51/7d1dc2a7e1aaff52246d8b7a7b786596d31911b4285b62a65039fab15143 b/npm/.npm/_cacache/index-v5/59/51/7d1dc2a7e1aaff52246d8b7a7b786596d31911b4285b62a65039fab15143 new file mode 100644 index 0000000..7bbcc14 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/59/51/7d1dc2a7e1aaff52246d8b7a7b786596d31911b4285b62a65039fab15143 @@ -0,0 +1,2 @@ + +0b34bd6c09d6beb8efdf582e60b114e5d4a6325e {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/resolve","integrity":"sha512-OgPTykbvkco3EpC+FH4C/h7TQSr0zFOjtuhMolifCN8KtkxABpg4J9F+C7mRQJwwKXaWlrXElNLGsBuPr2/ScQ==","time":1540366553949,"size":19946,"metadata":{"url":"https://registry.npmjs.org/resolve","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:53 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["19946"],"connection":["keep-alive"],"set-cookie":["__cfduid=d71c09ad4c392680cd6cdb95f6f73b04e1540366553; expires=Thu, 24-Oct-19 07:35:53 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4f20c9097da-FRA"],"etag":["\"7c3050b89371248aeb71cb6dbc35031e\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 17 Jun 2018 18:27:44 GMT"],"vary":["accept-encoding, accept"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/5a/48/bbb35bbb8b6286046f943e05d42eaf46fb15a57c38a1231028a2ee81f49f b/npm/.npm/_cacache/index-v5/5a/48/bbb35bbb8b6286046f943e05d42eaf46fb15a57c38a1231028a2ee81f49f new file mode 100644 index 0000000..035ec0d --- /dev/null +++ b/npm/.npm/_cacache/index-v5/5a/48/bbb35bbb8b6286046f943e05d42eaf46fb15a57c38a1231028a2ee81f49f @@ -0,0 +1,2 @@ + +8bdc046818807b86e11e8ed7432fa21949f9c2c7 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz","integrity":"sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=","time":1540366553393,"size":1825,"metadata":{"url":"https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:load-json-file@https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:53 GMT"],"content-type":["application/octet-stream"],"content-length":["1825"],"connection":["keep-alive"],"set-cookie":["__cfduid=d9dcfcc7e2ca203ea1b61eeff9aa0f9851540366553; expires=Thu, 24-Oct-19 07:35:53 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4ee8c7cc305-FRA"],"etag":["\"939784db9c3c72c26262cebef2f9b631\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 06:55:07 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/5d/ad/1cb61ae613816d5f049cd87dd24009e364126f73726b1f8eab2350fec505 b/npm/.npm/_cacache/index-v5/5d/ad/1cb61ae613816d5f049cd87dd24009e364126f73726b1f8eab2350fec505 new file mode 100644 index 0000000..eb579a1 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/5d/ad/1cb61ae613816d5f049cd87dd24009e364126f73726b1f8eab2350fec505 @@ -0,0 +1,2 @@ + +c8b142cc603d4ca791d51fb7deae203291645a0e {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/brace-expansion","integrity":"sha512-jeIRpwIIvQHzmRloJJbsgVJFMc1pElirenNmUYZi5FGnt/9DQUX1Uz+e4I3n/C/3dFm3hVsIBGeC3VoynHto6g==","time":1540366553815,"size":5689,"metadata":{"url":"https://registry.npmjs.org/brace-expansion","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:53 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["5689"],"connection":["keep-alive"],"set-cookie":["__cfduid=dd2517331d9fb312ea2a2b85acaa273931540366553; expires=Thu, 24-Oct-19 07:35:53 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4f13cb79738-FRA"],"etag":["\"4a5af4153c3a9271cebc611d850b515e\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Tue, 05 Jun 2018 13:49:02 GMT"],"vary":["accept-encoding, accept"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/5e/43/a30ad099873a75c4c9afbbd6078580fbc51c99e36ee87aaef4564b997420 b/npm/.npm/_cacache/index-v5/5e/43/a30ad099873a75c4c9afbbd6078580fbc51c99e36ee87aaef4564b997420 new file mode 100644 index 0000000..ebc188d --- /dev/null +++ b/npm/.npm/_cacache/index-v5/5e/43/a30ad099873a75c4c9afbbd6078580fbc51c99e36ee87aaef4564b997420 @@ -0,0 +1,2 @@ + +6eab2e29ff15ebbfd2c5e7f20d0b109e46285ebc {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/exit/-/exit-0.1.2.tgz","integrity":"sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=","time":1540366554811,"size":15295,"metadata":{"url":"https://registry.npmjs.org/exit/-/exit-0.1.2.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:exit@https://registry.npmjs.org/exit/-/exit-0.1.2.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["15295"],"connection":["keep-alive"],"set-cookie":["__cfduid=da8cd9cfbf91a37bf36e0897c9aea37651540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f69c1dbf2a-FRA"],"etag":["\"a7ebd2d01676648c8ffdbb2608123cfe\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 00:05:47 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/5f/57/67c3b0c63ea4198903509c050bb99de2eabd6a2fba583067c4f587dc25f7 b/npm/.npm/_cacache/index-v5/5f/57/67c3b0c63ea4198903509c050bb99de2eabd6a2fba583067c4f587dc25f7 new file mode 100644 index 0000000..9bfad07 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/5f/57/67c3b0c63ea4198903509c050bb99de2eabd6a2fba583067c4f587dc25f7 @@ -0,0 +1,2 @@ + +caaa86b554578a446b43d2cb2b514f17cbd30178 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz","integrity":"sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ==","time":1540366554956,"size":9918,"metadata":{"url":"https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:chalk@https://registry.npmjs.org/chalk/-/chalk-2.4.1.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["9918"],"connection":["keep-alive"],"set-cookie":["__cfduid=dad6e6c2363a90473d21a023cbfc1ac061540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f80fbe974a-FRA"],"etag":["\"7ccea26b076af76f44c2631a928e15c6\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sat, 26 May 2018 19:40:46 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/5f/9f/806619189a43b20c76e461711bc2316f4cc47b75b325d605981b96ebf955 b/npm/.npm/_cacache/index-v5/5f/9f/806619189a43b20c76e461711bc2316f4cc47b75b325d605981b96ebf955 new file mode 100644 index 0000000..5d48d6e --- /dev/null +++ b/npm/.npm/_cacache/index-v5/5f/9f/806619189a43b20c76e461711bc2316f4cc47b75b325d605981b96ebf955 @@ -0,0 +1,2 @@ + +35968fd0fb9798fc3cbfc3e1585a4780b72a3d07 {"key":"pacote:range-manifest:https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz:sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo=","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366553663,"size":1,"metadata":{"id":"repeating@2.0.1","manifest":{"name":"repeating","version":"2.0.1","engines":{"node":">=0.10.0"},"dependencies":{"is-finite":"^1.0.0"},"optionalDependencies":{},"devDependencies":{"ava":"*","xo":"*"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz","_integrity":"sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo=","_shasum":"5214c53a926d3552707527fbab415dbc08d06dda","_shrinkwrap":null,"bin":null,"_id":"repeating@2.0.1"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/60/75/b04f932bf0c8a04c5be518dd86973f80ae1a0ede5004bc0b6b65d4e92959 b/npm/.npm/_cacache/index-v5/60/75/b04f932bf0c8a04c5be518dd86973f80ae1a0ede5004bc0b6b65d4e92959 new file mode 100644 index 0000000..7e55945 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/60/75/b04f932bf0c8a04c5be518dd86973f80ae1a0ede5004bc0b6b65d4e92959 @@ -0,0 +1,2 @@ + +aeba150bc2a1a4f8b12466a7ca8025728f8b9eab {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/fs.realpath","integrity":"sha512-NrxgaKw9zGkhipO41o3Dn5ieBKfVGIX4VxC0odO51Sj5Y348DfZYg8qdZbO3KfWd32+XddLUzPYddurPIbLgjg==","time":1540366553913,"size":632,"metadata":{"url":"https://registry.npmjs.org/fs.realpath","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:53 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["632"],"connection":["keep-alive"],"set-cookie":["__cfduid=d94c06b11e9ec5b66331af8f65a6f81ca1540366553; expires=Thu, 24-Oct-19 07:35:53 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4f1da32975c-FRA"],"etag":["\"7eb8c793f34f5acfdfc7d4967b02123b\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 01:17:56 GMT"],"vary":["accept-encoding, accept"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/60/8c/b74a2ae1c6978d635a1a21438c553d956a762176742b2749d09db964bf4d b/npm/.npm/_cacache/index-v5/60/8c/b74a2ae1c6978d635a1a21438c553d956a762176742b2749d09db964bf4d new file mode 100644 index 0000000..d3cd95c --- /dev/null +++ b/npm/.npm/_cacache/index-v5/60/8c/b74a2ae1c6978d635a1a21438c553d956a762176742b2749d09db964bf4d @@ -0,0 +1,2 @@ + +b2518e68fbd1642a93c699738f98ebcfb8a18579 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz","integrity":"sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=","time":1540366554811,"size":2028,"metadata":{"url":"https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:inherits@https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["2028"],"connection":["keep-alive"],"set-cookie":["__cfduid=dfe56e639af333dff84473326f1c9fbeb1540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f69fa6c283-FRA"],"etag":["\"5fab4bb68d920d26a1029377bb99fa46\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 04:40:10 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/61/86/40d9643cdf43595a8d97c6cf0b5ea8ea9456c007a5ee0f8145bfdf78a2ea b/npm/.npm/_cacache/index-v5/61/86/40d9643cdf43595a8d97c6cf0b5ea8ea9456c007a5ee0f8145bfdf78a2ea new file mode 100644 index 0000000..328ae19 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/61/86/40d9643cdf43595a8d97c6cf0b5ea8ea9456c007a5ee0f8145bfdf78a2ea @@ -0,0 +1,2 @@ + +4641a881444c0d378a44544c535bfac8bde85b9e {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz","integrity":"sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==","time":1540366554679,"size":29761,"metadata":{"url":"https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:argparse@https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["29761"],"connection":["keep-alive"],"set-cookie":["__cfduid=d8ed73f7032d3c4f2f3fb0deda4c9d9b41540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f61fa59aca-FRA"],"etag":["\"d96ffb030eff598e8f3eb48b6257bdaf\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sat, 26 May 2018 17:20:15 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/62/51/13c3bd52d9809c94c083d4d3d92621a025ddfccfa9554c2e8168092535fc b/npm/.npm/_cacache/index-v5/62/51/13c3bd52d9809c94c083d4d3d92621a025ddfccfa9554c2e8168092535fc new file mode 100644 index 0000000..3cbb6d4 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/62/51/13c3bd52d9809c94c083d4d3d92621a025ddfccfa9554c2e8168092535fc @@ -0,0 +1,2 @@ + +6f9eba783a282ec4a530d64c468f1c45a2374d12 {"key":"pacote:range-manifest:https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.1.tgz:sha512-TfOfPcYGBB5sDuPn3deByxPhmfegAhpDYKSOXZQN81Oyrrif8ZCodOLzK3AesELnCx03kikhyDwh0pfvvQvF8w==","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366553211,"size":1,"metadata":{"id":"spdx-license-ids@3.0.1","manifest":{"name":"spdx-license-ids","version":"3.0.1","dependencies":{},"optionalDependencies":{},"devDependencies":{"@shinnn/eslint-config-node":"^6.0.0","chalk":"^2.4.1","eslint":"^5.4.0","get-spdx-license-ids":"^2.1.0","rmfr":"^2.0.0","tape":"^4.9.1"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.1.tgz","_integrity":"sha512-TfOfPcYGBB5sDuPn3deByxPhmfegAhpDYKSOXZQN81Oyrrif8ZCodOLzK3AesELnCx03kikhyDwh0pfvvQvF8w==","_shasum":"e2a303236cac54b04031fa7a5a79c7e701df852f","_shrinkwrap":null,"bin":null,"_id":"spdx-license-ids@3.0.1"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/62/9e/772cd16e6d1d45ddfc00cd0094f905d4b0b0929b45defe4ce5aa382fb2a3 b/npm/.npm/_cacache/index-v5/62/9e/772cd16e6d1d45ddfc00cd0094f905d4b0b0929b45defe4ce5aa382fb2a3 new file mode 100644 index 0000000..e6a2792 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/62/9e/772cd16e6d1d45ddfc00cd0094f905d4b0b0929b45defe4ce5aa382fb2a3 @@ -0,0 +1,2 @@ + +15c4bf5fdbc5bb5ce346df2a608038a0ad41480f {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/strip-bom","integrity":"sha512-b4DqL9IxZH4AuGj1/ePQjLrjfu8bb208PkIP/Aso13KSD0fTqXFgQeu4/zWZwo6B+k3jY+442e382CNjw/2/Vw==","time":1540366553424,"size":2897,"metadata":{"url":"https://registry.npmjs.org/strip-bom","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:53 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["2897"],"connection":["keep-alive"],"set-cookie":["__cfduid=de37877763307c73cdce09f43308103f21540366553; expires=Thu, 24-Oct-19 07:35:53 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4eeca4a9aca-FRA"],"etag":["\"6e901c8d673ba82de22d5d47daf87497\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 18:26:01 GMT"],"vary":["accept-encoding, accept"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/63/0e/1e2b6d5532f06418976aa11c07a32a0ea0e0aa26f8f348d9c5de4efb3417 b/npm/.npm/_cacache/index-v5/63/0e/1e2b6d5532f06418976aa11c07a32a0ea0e0aa26f8f348d9c5de4efb3417 new file mode 100644 index 0000000..7c376ea --- /dev/null +++ b/npm/.npm/_cacache/index-v5/63/0e/1e2b6d5532f06418976aa11c07a32a0ea0e0aa26f8f348d9c5de4efb3417 @@ -0,0 +1,2 @@ + +0c2805a3a67887b3a003e2d3c58f52f6b24e5207 {"key":"pacote:range-manifest:https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz:sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8=","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366553028,"size":1,"metadata":{"id":"camelcase@2.1.1","manifest":{"name":"camelcase","version":"2.1.1","engines":{"node":">=0.10.0"},"dependencies":{},"optionalDependencies":{},"devDependencies":{"ava":"*","xo":"*"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz","_integrity":"sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8=","_shasum":"7c1d16d679a1bbe59ca02cacecfb011e201f5a1f","_shrinkwrap":null,"bin":null,"_id":"camelcase@2.1.1"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/64/5e/df9faa6085b9006bd64e60242dbb4ec14e784dbdec60200330786b82b5d5 b/npm/.npm/_cacache/index-v5/64/5e/df9faa6085b9006bd64e60242dbb4ec14e784dbdec60200330786b82b5d5 new file mode 100644 index 0000000..41e135c --- /dev/null +++ b/npm/.npm/_cacache/index-v5/64/5e/df9faa6085b9006bd64e60242dbb4ec14e784dbdec60200330786b82b5d5 @@ -0,0 +1,2 @@ + +9d674610190945cd16b96703b67c95283c332b5f {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/is-builtin-module","integrity":"sha512-iozakoDYAO8YbyNrbj59g4Z0o2vQA/EY+KMiJpf37V27FlHsWoB7cfNqLDdhVBWWZsDEpcXMuPnK6K3GxMJv/Q==","time":1540366553122,"size":2294,"metadata":{"url":"https://registry.npmjs.org/is-builtin-module","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:53 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["2294"],"connection":["keep-alive"],"set-cookie":["__cfduid=d162071ff706d63145bc32a7d93535d5f1540366553; expires=Thu, 24-Oct-19 07:35:53 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4ecd88a9726-FRA"],"etag":["\"753bfe4658cf439fa7b24afec5a76b72\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Wed, 19 Sep 2018 17:03:18 GMT"],"vary":["accept-encoding, accept"],"x-amz-meta-rev":["5-65879177e6b1140fc169ad5bdb9ef7d4"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/64/f7/7ef90d3e76879b2410fd5ce80d1e138567b4dda086389582961cf2208589 b/npm/.npm/_cacache/index-v5/64/f7/7ef90d3e76879b2410fd5ce80d1e138567b4dda086389582961cf2208589 new file mode 100644 index 0000000..daebf4e --- /dev/null +++ b/npm/.npm/_cacache/index-v5/64/f7/7ef90d3e76879b2410fd5ce80d1e138567b4dda086389582961cf2208589 @@ -0,0 +1,2 @@ + +ebbd358cd4abf5ff74fe3413723f75435bb66861 {"key":"pacote:range-manifest:http://registry.npmjs.org/pify/-/pify-2.3.0.tgz:sha1-7RQaasBDqEnqWISY59yosVMw6Qw=","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366553464,"size":1,"metadata":{"id":"pify@2.3.0","manifest":{"name":"pify","version":"2.3.0","engines":{"node":">=0.10.0"},"dependencies":{},"optionalDependencies":{},"devDependencies":{"ava":"*","pinkie-promise":"^1.0.0","v8-natives":"0.0.2","xo":"*"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"http://registry.npmjs.org/pify/-/pify-2.3.0.tgz","_integrity":"sha1-7RQaasBDqEnqWISY59yosVMw6Qw=","_shasum":"ed141a6ac043a849ea588498e7dca8b15330e90c","_shrinkwrap":null,"bin":null,"_id":"pify@2.3.0"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/65/a5/b8b4f91e3e4be0ad4181656b37e741730a9e7123146e5a5bf612c9d6d379 b/npm/.npm/_cacache/index-v5/65/a5/b8b4f91e3e4be0ad4181656b37e741730a9e7123146e5a5bf612c9d6d379 new file mode 100644 index 0000000..9cd0398 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/65/a5/b8b4f91e3e4be0ad4181656b37e741730a9e7123146e5a5bf612c9d6d379 @@ -0,0 +1,2 @@ + +428df05e6b3d0454ea6b36d1ff112e6bf5dd5679 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/camelcase-keys","integrity":"sha512-QowJKZeQlZe9eDvSsOQntdbiKLcjnY4tvoAnh3TuRNGdggl7T63WJJmEhKFB2ik/LyVvz9ND8Y+e6P9jxRtNPg==","time":1540366552980,"size":3981,"metadata":{"url":"https://registry.npmjs.org/camelcase-keys","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:52 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["3981"],"connection":["keep-alive"],"set-cookie":["__cfduid=dab9bec03d12fc16c78d0819fe3b48b2a1540366552; expires=Thu, 24-Oct-19 07:35:52 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4ebeef9c2a6-FRA"],"etag":["\"b4187613c1eed2b2196644144eb2cb41\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Tue, 16 Oct 2018 11:12:10 GMT"],"vary":["accept-encoding, accept"],"x-amz-meta-rev":["17-8670815587e927101a3de2935bb5ab69"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/66/bb/6e46437afeb8672e0c5f43269086aa41b0fdfeab2d0d495ef1f544f2b327 b/npm/.npm/_cacache/index-v5/66/bb/6e46437afeb8672e0c5f43269086aa41b0fdfeab2d0d495ef1f544f2b327 new file mode 100644 index 0000000..01b33cb --- /dev/null +++ b/npm/.npm/_cacache/index-v5/66/bb/6e46437afeb8672e0c5f43269086aa41b0fdfeab2d0d495ef1f544f2b327 @@ -0,0 +1,2 @@ + +7dee41bbb2143989b4dafd35863cd00f083a0795 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/minimist","integrity":"sha512-MQf+yr8L8DTPSJvRPJQFD9I9mHOXdIvFafIwibju0rd4tLucrSwS2WDv7XYdU7LFdrHQVfM/6a4qvz9YozYuQQ==","time":1540366552979,"size":4811,"metadata":{"url":"https://registry.npmjs.org/minimist","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:52 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["4811"],"connection":["keep-alive"],"set-cookie":["__cfduid=d51d9d34a4ef13b9708ef716fe5e340fb1540366552; expires=Thu, 24-Oct-19 07:35:52 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4ebed5ec2ab-FRA"],"etag":["\"6ac983f9cc4cfd0b628eec7b1027a92d\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Thu, 27 Sep 2018 08:51:15 GMT"],"vary":["accept-encoding, accept"],"x-amz-meta-rev":["552-74643d5de0aa7b335a0397f4286df41b"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/67/5f/28c12321d8b73cabed8e5f6d334222738f3757d989855c298742f545c38d b/npm/.npm/_cacache/index-v5/67/5f/28c12321d8b73cabed8e5f6d334222738f3757d989855c298742f545c38d new file mode 100644 index 0000000..6665cab --- /dev/null +++ b/npm/.npm/_cacache/index-v5/67/5f/28c12321d8b73cabed8e5f6d334222738f3757d989855c298742f545c38d @@ -0,0 +1,2 @@ + +ec5a00a1e6bb6b98de701c39a20c79b06a32bc31 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/semver","integrity":"sha512-Bpki2OVWsKjERM08qtLTGInFsystpRrljHwfSGMCB7QgH4nEJKLYijL4x45+uMoXsA3ohT9+V/6j4IcvgN+n8w==","time":1540366553123,"size":21691,"metadata":{"url":"https://registry.npmjs.org/semver","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:53 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["21691"],"connection":["keep-alive"],"set-cookie":["__cfduid=dc5fb3f0ece7d1c527a0bd46eeb0ffd731540366553; expires=Thu, 24-Oct-19 07:35:53 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4ecdada64c9-FRA"],"etag":["\"7e83451063f960aaf0d53f82dc63cd34\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Wed, 10 Oct 2018 23:52:36 GMT"],"vary":["accept-encoding, accept"],"x-amz-meta-rev":["350-3d4f6af10a49a3b9df94737f9cb9e7d5"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/68/4d/9ce3bb536f5fbfa745fb2ca6b39938a64e570f2071bc39fb9c2d6025d730 b/npm/.npm/_cacache/index-v5/68/4d/9ce3bb536f5fbfa745fb2ca6b39938a64e570f2071bc39fb9c2d6025d730 new file mode 100644 index 0000000..5ec6dac --- /dev/null +++ b/npm/.npm/_cacache/index-v5/68/4d/9ce3bb536f5fbfa745fb2ca6b39938a64e570f2071bc39fb9c2d6025d730 @@ -0,0 +1,2 @@ + +961997be50346b849af978d089f6aaadac04a196 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/glob/-/glob-5.0.15.tgz","integrity":"sha1-G8k2ueAvSmA/zCIuz3Yz0wuLk7E=","time":1540366554929,"size":14800,"metadata":{"url":"https://registry.npmjs.org/glob/-/glob-5.0.15.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:glob@https://registry.npmjs.org/glob/-/glob-5.0.15.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["14800"],"connection":["keep-alive"],"set-cookie":["__cfduid=d3abd8568f1d2eff909e6fcbe7233bf0d1540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f7ba0164c9-FRA"],"etag":["\"0cebea179bafc9a046dec681fa1e17b5\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 02:29:15 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/69/54/60a55ded85a1b74cedccd25d60dbce8fb78626de077ba512c3c83b92965b b/npm/.npm/_cacache/index-v5/69/54/60a55ded85a1b74cedccd25d60dbce8fb78626de077ba512c3c83b92965b new file mode 100644 index 0000000..7d2ac98 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/69/54/60a55ded85a1b74cedccd25d60dbce8fb78626de077ba512c3c83b92965b @@ -0,0 +1,2 @@ + +1c48645602cd770bfbaebd916ba15276918c4a34 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz","integrity":"sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=","time":1540366554679,"size":10330,"metadata":{"url":"https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:sprintf-js@https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["10330"],"connection":["keep-alive"],"set-cookie":["__cfduid=d73f41e2de42ab9ee857924620b161eaa1540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f61cb9975c-FRA"],"etag":["\"8e6b31a052754055683e4a35a317feab\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 18:03:32 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/69/87/5de7034b115c389d9ff45727fbb973aeb506983a90a37f10990c33e2ff11 b/npm/.npm/_cacache/index-v5/69/87/5de7034b115c389d9ff45727fbb973aeb506983a90a37f10990c33e2ff11 new file mode 100644 index 0000000..ab0f007 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/69/87/5de7034b115c389d9ff45727fbb973aeb506983a90a37f10990c33e2ff11 @@ -0,0 +1,2 @@ + +3936fc257567097b3a4f870829af8a4319ecf96d {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/getobject/-/getobject-0.1.0.tgz","integrity":"sha1-BHpEl4n6Fg0Bj1SG7ZEyC27HiFw=","time":1540366554808,"size":3166,"metadata":{"url":"https://registry.npmjs.org/getobject/-/getobject-0.1.0.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:getobject@https://registry.npmjs.org/getobject/-/getobject-0.1.0.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["3166"],"connection":["keep-alive"],"set-cookie":["__cfduid=d3571117028a618f068c81ce728e19c941540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f6aa5f972c-FRA"],"etag":["\"c5b52b4d195cac82ef527b139d4abc62\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 02:12:26 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/69/d6/3d4786ed33ca64f51f6795fb93a44eabefb62fec32013e61ba1ae9152521 b/npm/.npm/_cacache/index-v5/69/d6/3d4786ed33ca64f51f6795fb93a44eabefb62fec32013e61ba1ae9152521 new file mode 100644 index 0000000..9235dcc --- /dev/null +++ b/npm/.npm/_cacache/index-v5/69/d6/3d4786ed33ca64f51f6795fb93a44eabefb62fec32013e61ba1ae9152521 @@ -0,0 +1,2 @@ + +0cd58b0ff3fe62d85845976b7cf759ecb1d60411 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz","integrity":"sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=","time":1540366554719,"size":2060,"metadata":{"url":"https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:find-up@https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["2060"],"connection":["keep-alive"],"set-cookie":["__cfduid=d3abd8568f1d2eff909e6fcbe7233bf0d1540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f6592e64c9-FRA"],"etag":["\"c5c3ff7b1ec7ab9eb8d205cee67491f3\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 00:41:40 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/69/ed/a2af6b42df3519455e357a11fb361fae447f50de041392d92c38ce1fdb3f b/npm/.npm/_cacache/index-v5/69/ed/a2af6b42df3519455e357a11fb361fae447f50de041392d92c38ce1fdb3f new file mode 100644 index 0000000..3a162f1 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/69/ed/a2af6b42df3519455e357a11fb361fae447f50de041392d92c38ce1fdb3f @@ -0,0 +1,2 @@ + +b6509203b8d7870ca9144d45cb3032d357c1b4f8 {"key":"pacote:range-manifest:https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz:sha512-2XQACfElKi9SlVb1CYadKDXvoajPgBVPn/gOQLrTvHdElaVhr7ZEbqJaRnJLVNeaI4cMEAgVCeBMKF6MWRDCRA==","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366553232,"size":1,"metadata":{"id":"spdx-exceptions@2.2.0","manifest":{"name":"spdx-exceptions","version":"2.2.0","dependencies":{},"optionalDependencies":{},"devDependencies":{},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz","_integrity":"sha512-2XQACfElKi9SlVb1CYadKDXvoajPgBVPn/gOQLrTvHdElaVhr7ZEbqJaRnJLVNeaI4cMEAgVCeBMKF6MWRDCRA==","_shasum":"2ea450aee74f2a89bfb94519c07fcd6f41322977","_shrinkwrap":null,"bin":null,"_id":"spdx-exceptions@2.2.0"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/69/f2/2347a66070815e251e04aa3bd8fa662ee642f005ab4a5c7cb58e400c88ad b/npm/.npm/_cacache/index-v5/69/f2/2347a66070815e251e04aa3bd8fa662ee642f005ab4a5c7cb58e400c88ad new file mode 100644 index 0000000..b6c11ca --- /dev/null +++ b/npm/.npm/_cacache/index-v5/69/f2/2347a66070815e251e04aa3bd8fa662ee642f005ab4a5c7cb58e400c88ad @@ -0,0 +1,2 @@ + +febe93d0c092d8aa4596f53bd6de0f092078704f {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/indent-string","integrity":"sha512-zCK0CGwPpaJ9Ki8OUIB/TYzyukxDvrWKC4DnA6Z6ICM0DA6DyndXWxboJFAc9lFqMwW2YTUEKFhLGYKd1DRKow==","time":1540366553638,"size":5360,"metadata":{"url":"https://registry.npmjs.org/indent-string","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:53 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["5360"],"connection":["keep-alive"],"set-cookie":["__cfduid=d9dcfcc7e2ca203ea1b61eeff9aa0f9851540366553; expires=Thu, 24-Oct-19 07:35:53 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4efef43c305-FRA"],"etag":["\"c2cd4c87a94d58a8155d9c02c6566ea9\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 04:36:54 GMT"],"vary":["accept-encoding, accept"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/6b/f4/9e845476c976b8f9b91dc89b232bf40c00b5ff1d1bd141e780de532e76c0 b/npm/.npm/_cacache/index-v5/6b/f4/9e845476c976b8f9b91dc89b232bf40c00b5ff1d1bd141e780de532e76c0 new file mode 100644 index 0000000..6df3852 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/6b/f4/9e845476c976b8f9b91dc89b232bf40c00b5ff1d1bd141e780de532e76c0 @@ -0,0 +1,2 @@ + +6061bf368282b1b43dbba0173164281f4a2ff371 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/get-stdin","integrity":"sha512-WazxXNzXp+yH9T/jRFk8qXXdIcQZgx5dmBcwSNNQNDhCPTygyd9fP5UtMWyTahBo1EuK5GuzjiOVb/4se5XkMA==","time":1540366552899,"size":3555,"metadata":{"url":"https://registry.npmjs.org/get-stdin","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:52 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["3555"],"connection":["keep-alive"],"set-cookie":["__cfduid=d1d6eab0d2e22adc5e523253c58c0bf391540366552; expires=Thu, 24-Oct-19 07:35:52 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4eb8b98972c-FRA"],"etag":["\"5ad8e61248348fd67d9c9a61d3accebd\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 02:11:48 GMT"],"vary":["accept-encoding, accept"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/6c/6f/8e7e8934679b7b49b8240b1f2dcb66c25a5bd17f9629f8fe0ea634cab93c b/npm/.npm/_cacache/index-v5/6c/6f/8e7e8934679b7b49b8240b1f2dcb66c25a5bd17f9629f8fe0ea634cab93c new file mode 100644 index 0000000..4275a35 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/6c/6f/8e7e8934679b7b49b8240b1f2dcb66c25a5bd17f9629f8fe0ea634cab93c @@ -0,0 +1,2 @@ + +6176bf97beced1f26ff4a682f817014d67e12fce {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz","integrity":"sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=","time":1540366554956,"size":2246,"metadata":{"url":"https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:util-deprecate@https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["2246"],"connection":["keep-alive"],"set-cookie":["__cfduid=da8cd9cfbf91a37bf36e0897c9aea37651540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f80d3cbf2a-FRA"],"etag":["\"280e304a953ba3a89f52cc6ad616b284\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 20:38:18 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/6c/9f/f01e3d07996f1ffa85287159053d5f670c42cbffe04acd7ef1b7bb4f1c16 b/npm/.npm/_cacache/index-v5/6c/9f/f01e3d07996f1ffa85287159053d5f670c42cbffe04acd7ef1b7bb4f1c16 new file mode 100644 index 0000000..e727b6d --- /dev/null +++ b/npm/.npm/_cacache/index-v5/6c/9f/f01e3d07996f1ffa85287159053d5f670c42cbffe04acd7ef1b7bb4f1c16 @@ -0,0 +1,2 @@ + +ad83713bfdffd44a0a470c0d0d8d949d34a3823b {"key":"pacote:range-manifest:https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.4.0.tgz:sha512-9jjUFbTPfEy3R/ad/2oNbKtW9Hgovl5O1FvFWKkKblNXoN/Oou6+9+KKohPK13Yc3/TyunyWhJp6gvRNR/PPAw==","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366552991,"size":1,"metadata":{"id":"normalize-package-data@2.4.0","manifest":{"name":"normalize-package-data","version":"2.4.0","dependencies":{"hosted-git-info":"^2.1.4","is-builtin-module":"^1.0.0","semver":"2 || 3 || 4 || 5","validate-npm-package-license":"^3.0.1"},"optionalDependencies":{},"devDependencies":{"async":"^1.5.0","tap":"^2.2.0","underscore":"^1.8.3"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.4.0.tgz","_integrity":"sha512-9jjUFbTPfEy3R/ad/2oNbKtW9Hgovl5O1FvFWKkKblNXoN/Oou6+9+KKohPK13Yc3/TyunyWhJp6gvRNR/PPAw==","_shasum":"12f95a307d58352075a04907b84ac8be98ac012f","_shrinkwrap":null,"bin":null,"_id":"normalize-package-data@2.4.0"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/6d/83/04b563f9f41a3ba3b7df4541c2da4dc131b47234e904a7eebf0037238c08 b/npm/.npm/_cacache/index-v5/6d/83/04b563f9f41a3ba3b7df4541c2da4dc131b47234e904a7eebf0037238c08 new file mode 100644 index 0000000..c762dde --- /dev/null +++ b/npm/.npm/_cacache/index-v5/6d/83/04b563f9f41a3ba3b7df4541c2da4dc131b47234e904a7eebf0037238c08 @@ -0,0 +1,2 @@ + +f302fc083a5878a7c26a21fa235d3f6dcec4d16d {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/pify/-/pify-2.3.0.tgz","integrity":"sha1-7RQaasBDqEnqWISY59yosVMw6Qw=","time":1540366553463,"size":2793,"metadata":{"url":"https://registry.npmjs.org/pify/-/pify-2.3.0.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:pify@https://registry.npmjs.org/pify/-/pify-2.3.0.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:53 GMT"],"content-type":["application/octet-stream"],"content-length":["2793"],"connection":["keep-alive"],"set-cookie":["__cfduid=dc5fb3f0ece7d1c527a0bd46eeb0ffd731540366553; expires=Thu, 24-Oct-19 07:35:53 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4ef0c1a64c9-FRA"],"etag":["\"475310192b9d153240ac82eb66b827e8\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 12:16:11 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/6e/b1/c81eae2ea9279d3b437e3f28781f3b1c9ad7d4c45f048d1b0d90bcbe389f b/npm/.npm/_cacache/index-v5/6e/b1/c81eae2ea9279d3b437e3f28781f3b1c9ad7d4c45f048d1b0d90bcbe389f new file mode 100644 index 0000000..a73697a --- /dev/null +++ b/npm/.npm/_cacache/index-v5/6e/b1/c81eae2ea9279d3b437e3f28781f3b1c9ad7d4c45f048d1b0d90bcbe389f @@ -0,0 +1,2 @@ + +5b42ff31cb3e3e7b95ca33576e6f99cf4338421c {"key":"pacote:range-manifest:https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz:sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366552991,"size":1,"metadata":{"id":"read-pkg-up@1.0.1","manifest":{"name":"read-pkg-up","version":"1.0.1","engines":{"node":">=0.10.0"},"dependencies":{"find-up":"^1.0.0","read-pkg":"^1.0.0"},"optionalDependencies":{},"devDependencies":{"ava":"*","xo":"*"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz","_integrity":"sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=","_shasum":"9d63c13276c065918d57f002a57f40a1b643fb02","_shrinkwrap":null,"bin":null,"_id":"read-pkg-up@1.0.1"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/72/3a/61366483b6ce85b1f495fe57b085fd9e4c17029572a9d587d5cfe5a0f501 b/npm/.npm/_cacache/index-v5/72/3a/61366483b6ce85b1f495fe57b085fd9e4c17029572a9d587d5cfe5a0f501 new file mode 100644 index 0000000..a088a7f --- /dev/null +++ b/npm/.npm/_cacache/index-v5/72/3a/61366483b6ce85b1f495fe57b085fd9e4c17029572a9d587d5cfe5a0f501 @@ -0,0 +1,2 @@ + +998fed3a726f2cd6125fcf4c42f83f3ce7ffaa72 {"key":"pacote:range-manifest:https://registry.npmjs.org/hooker/-/hooker-0.2.3.tgz:sha1-uDT3I8xKJCqmWWNFnfbZhMXT2Vk=","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366554032,"size":1,"metadata":{"id":"hooker@0.2.3","manifest":{"name":"hooker","version":"0.2.3","engines":{"node":"*"},"dependencies":{},"optionalDependencies":{},"devDependencies":{"grunt":"~0.2.1"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/hooker/-/hooker-0.2.3.tgz","_integrity":"sha1-uDT3I8xKJCqmWWNFnfbZhMXT2Vk=","_shasum":"b834f723cc4a242aa65963459df6d984c5d3d959","_shrinkwrap":null,"bin":null,"_id":"hooker@0.2.3"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/73/25/c8b577d75b2c740f6e9048689d36fa395bb4c5518f0be60f330bc6b63436 b/npm/.npm/_cacache/index-v5/73/25/c8b577d75b2c740f6e9048689d36fa395bb4c5518f0be60f330bc6b63436 new file mode 100644 index 0000000..8d4a727 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/73/25/c8b577d75b2c740f6e9048689d36fa395bb4c5518f0be60f330bc6b63436 @@ -0,0 +1,2 @@ + +62d474b543bbeeeed9f1abc000713c058a4d9740 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/currently-unhandled","integrity":"sha512-aQqpfLqOuwhJA5bq6+MbHsWKEEk8nEktdHHF/eO3BnZ10KXW/5LoKIAdYGZWypX5SeuwczLnviwGNn78ysbW7Q==","time":1540366553050,"size":2049,"metadata":{"url":"https://registry.npmjs.org/currently-unhandled","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:53 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["2049"],"connection":["keep-alive"],"set-cookie":["__cfduid=d94c06b11e9ec5b66331af8f65a6f81ca1540366553; expires=Thu, 24-Oct-19 07:35:53 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4ec7e45975c-FRA"],"etag":["\"7ce67278dee1c64959087c556bd1ccc1\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sat, 26 May 2018 21:32:28 GMT"],"vary":["accept-encoding, accept"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/73/69/75837500831e819003d12a5b56e541d57b994fcc733b7ddade76af2fee0f b/npm/.npm/_cacache/index-v5/73/69/75837500831e819003d12a5b56e541d57b994fcc733b7ddade76af2fee0f new file mode 100644 index 0000000..46af9a8 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/73/69/75837500831e819003d12a5b56e541d57b994fcc733b7ddade76af2fee0f @@ -0,0 +1,2 @@ + +f0babc8bacc25a9681dd2f79209f48b4096cbd69 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.1.tgz","integrity":"sha1-Nr54Mgr+WAH2zqPueLblqrlA6gw=","time":1540366554959,"size":13611,"metadata":{"url":"https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.1.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:sprintf-js@https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.1.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["13611"],"connection":["keep-alive"],"set-cookie":["__cfduid=d52d463b52f27a85ec8ca1ec14882e7ad1540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f8194ebec6-FRA"],"etag":["\"6155992a5230fe5302f381d2287456bc\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 18:03:32 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/75/fb/ce0b9ba82729f441c255806c099cefecbe2d729d82106cb31ce76ae7aa0d b/npm/.npm/_cacache/index-v5/75/fb/ce0b9ba82729f441c255806c099cefecbe2d729d82106cb31ce76ae7aa0d new file mode 100644 index 0000000..1a2a809 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/75/fb/ce0b9ba82729f441c255806c099cefecbe2d729d82106cb31ce76ae7aa0d @@ -0,0 +1,2 @@ + +e2f5d8168ddbf871e1ce60d0d4cb36390297eda6 {"key":"pacote:range-manifest:https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz:sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366553429,"size":1,"metadata":{"id":"strip-bom@2.0.0","manifest":{"name":"strip-bom","version":"2.0.0","engines":{"node":">=0.10.0"},"dependencies":{"is-utf8":"^0.2.0"},"optionalDependencies":{},"devDependencies":{"mocha":"*"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz","_integrity":"sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=","_shasum":"6219a85616520491f35788bdbf1447a99c7e6b0e","_shrinkwrap":null,"bin":null,"_id":"strip-bom@2.0.0"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/76/03/991c29c30ecf23fb228abf436e7b78cf5b03036c2f670b3d4719ae02217f b/npm/.npm/_cacache/index-v5/76/03/991c29c30ecf23fb228abf436e7b78cf5b03036c2f670b3d4719ae02217f new file mode 100644 index 0000000..1026954 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/76/03/991c29c30ecf23fb228abf436e7b78cf5b03036c2f670b3d4719ae02217f @@ -0,0 +1,2 @@ + +f97a7de789408dcb0e4e20694b137f267180ff79 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-1.0.0.tgz","integrity":"sha1-VAVy0096wxGfj3bDDLwbHgN6/74=","time":1540366553153,"size":1549,"metadata":{"url":"https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-1.0.0.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:is-builtin-module@https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-1.0.0.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:53 GMT"],"content-type":["application/octet-stream"],"content-length":["1549"],"connection":["keep-alive"],"set-cookie":["__cfduid=dd01a88914b5a1bfe9a28649f6170dfda1540366553; expires=Thu, 24-Oct-19 07:35:53 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4ed1c65972c-FRA"],"etag":["\"a6c53331b3734b716c760d7b4d816ef6\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 04:58:41 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/79/b5/994974c2f912cb58efddfe100f6cbbe4b7276079f55f2258f00371a93bc6 b/npm/.npm/_cacache/index-v5/79/b5/994974c2f912cb58efddfe100f6cbbe4b7276079f55f2258f00371a93bc6 new file mode 100644 index 0000000..c0901ef --- /dev/null +++ b/npm/.npm/_cacache/index-v5/79/b5/994974c2f912cb58efddfe100f6cbbe4b7276079f55f2258f00371a93bc6 @@ -0,0 +1,2 @@ + +84be1dfe697b1c87ebf4760ccfe066b576b9e443 {"key":"pacote:range-manifest:https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz:sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366552821,"size":1,"metadata":{"id":"minimatch@3.0.4","manifest":{"name":"minimatch","version":"3.0.4","engines":{"node":"*"},"dependencies":{"brace-expansion":"^1.1.7"},"optionalDependencies":{},"devDependencies":{"tap":"^10.3.2"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz","_integrity":"sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==","_shasum":"5166e286457f03306064be5497e8dbb0c3d32083","_shrinkwrap":null,"bin":null,"_id":"minimatch@3.0.4"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/7b/38/b5f785193fcc58a4bdc2836ab779f9316878210d87501003fa8d76c05e73 b/npm/.npm/_cacache/index-v5/7b/38/b5f785193fcc58a4bdc2836ab779f9316878210d87501003fa8d76c05e73 new file mode 100644 index 0000000..50fe1a2 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/7b/38/b5f785193fcc58a4bdc2836ab779f9316878210d87501003fa8d76c05e73 @@ -0,0 +1,2 @@ + +b55d4d94be11276922b18b414abd469c3a2d29f7 {"key":"pacote:range-manifest:http://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz:sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366552838,"size":1,"metadata":{"id":"mkdirp@0.5.1","manifest":{"name":"mkdirp","version":"0.5.1","dependencies":{"minimist":"0.0.8"},"optionalDependencies":{},"devDependencies":{"tap":"1","mock-fs":"2 >=2.7.0"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"http://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz","_integrity":"sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=","_shasum":"30057438eac6cf7f8c4767f38648d6697d75c903","_shrinkwrap":null,"bin":{"mkdirp":"bin/cmd.js"},"_id":"mkdirp@0.5.1"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/7b/60/54203137fdb93ac9b986f512b4ba5a514b661a45ffb74656541fd2714aaf b/npm/.npm/_cacache/index-v5/7b/60/54203137fdb93ac9b986f512b4ba5a514b661a45ffb74656541fd2714aaf new file mode 100644 index 0000000..9a53cc2 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/7b/60/54203137fdb93ac9b986f512b4ba5a514b661a45ffb74656541fd2714aaf @@ -0,0 +1,2 @@ + +da1c94dd309809f1ce0b844296050d1ddebfec6b {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/map-obj","integrity":"sha512-9MhqMcFmi2PUOUZ9VEBHaOMsMrDyEka53iAXBs1GE2Wb1qit00gtVLmIuoYFXtbWGojZjStrvb+/j1FQFDdGUA==","time":1540366552981,"size":2264,"metadata":{"url":"https://registry.npmjs.org/map-obj","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:52 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["2264"],"connection":["keep-alive"],"set-cookie":["__cfduid=df6f72caf769c9ecc2bc51db62d6f8ef91540366552; expires=Thu, 24-Oct-19 07:35:52 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4ebefcb9aca-FRA"],"etag":["\"0851fd6561b924a242839a8e8e76281c\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Wed, 08 Aug 2018 06:44:30 GMT"],"vary":["accept-encoding, accept"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/7b/ac/c489575ae642ddb514aa02f33a47d895cefe34fcf8af1c52c7a9581a7ecc b/npm/.npm/_cacache/index-v5/7b/ac/c489575ae642ddb514aa02f33a47d895cefe34fcf8af1c52c7a9581a7ecc new file mode 100644 index 0000000..2d70c8e --- /dev/null +++ b/npm/.npm/_cacache/index-v5/7b/ac/c489575ae642ddb514aa02f33a47d895cefe34fcf8af1c52c7a9581a7ecc @@ -0,0 +1,2 @@ + +21f87a17b3283bd3f5a6bfab986f6fda982b4dc1 {"key":"pacote:range-manifest:https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz:sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4=","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366552904,"size":1,"metadata":{"id":"get-stdin@4.0.1","manifest":{"name":"get-stdin","version":"4.0.1","engines":{"node":">=0.10.0"},"dependencies":{},"optionalDependencies":{},"devDependencies":{"ava":"0.0.4","buffer-equal":"0.0.1"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz","_integrity":"sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4=","_shasum":"b968c6b0a04384324902e8bf1a5df32579a450fe","_shrinkwrap":null,"bin":null,"_id":"get-stdin@4.0.1"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/7d/8f/423d7e791f7fedd6bef784f0f467761c619f209ce9c788f08b63e968a880 b/npm/.npm/_cacache/index-v5/7d/8f/423d7e791f7fedd6bef784f0f467761c619f209ce9c788f08b63e968a880 new file mode 100644 index 0000000..8bc1457 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/7d/8f/423d7e791f7fedd6bef784f0f467761c619f209ce9c788f08b63e968a880 @@ -0,0 +1,2 @@ + +8272d73a4eb63f856bcccdea06837a93b18ac1a7 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/once/-/once-1.4.0.tgz","integrity":"sha1-WDsap3WWHUsROsF9nFC6753Xa9E=","time":1540366554947,"size":1979,"metadata":{"url":"https://registry.npmjs.org/once/-/once-1.4.0.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:once@https://registry.npmjs.org/once/-/once-1.4.0.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["1979"],"connection":["keep-alive"],"set-cookie":["__cfduid=d826af7cbebbb0044471c51c9c0d72ea51540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f7e8322762-FRA"],"etag":["\"fac2afc3cbe5e133d7a5c34ec3f862ac\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 11:11:26 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/7e/51/f6dfcbea329da23ce1a2d84a3faad65b780fc7e5eea899bd0ec2d8546c27 b/npm/.npm/_cacache/index-v5/7e/51/f6dfcbea329da23ce1a2d84a3faad65b780fc7e5eea899bd0ec2d8546c27 new file mode 100644 index 0000000..fa65cec --- /dev/null +++ b/npm/.npm/_cacache/index-v5/7e/51/f6dfcbea329da23ce1a2d84a3faad65b780fc7e5eea899bd0ec2d8546c27 @@ -0,0 +1,2 @@ + +dc3e5217d7829442dc7cb815dfbb346d75258121 {"key":"pacote:range-manifest:https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz:sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366554126,"size":1,"metadata":{"id":"color-convert@1.9.3","manifest":{"name":"color-convert","version":"1.9.3","dependencies":{"color-name":"1.1.3"},"optionalDependencies":{},"devDependencies":{"chalk":"1.1.1","xo":"0.11.2"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz","_integrity":"sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==","_shasum":"bb71850690e1f136567de629d2d5471deda4c1e8","_shrinkwrap":null,"bin":null,"_id":"color-convert@1.9.3"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/7e/ca/1a6ae17597829626fd88ab4b079c041182c2938b0509f22edaa8c9066351 b/npm/.npm/_cacache/index-v5/7e/ca/1a6ae17597829626fd88ab4b079c041182c2938b0509f22edaa8c9066351 new file mode 100644 index 0000000..746ca57 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/7e/ca/1a6ae17597829626fd88ab4b079c041182c2938b0509f22edaa8c9066351 @@ -0,0 +1,2 @@ + +b7e0adf02ebcc38cc2f1993a57108cfc789b47ad {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/path-type","integrity":"sha512-PNCYF2aGVvzZCCtRpq8cgfYL8rkNch1Ki7OGgWPx3PnvBjoe6lAWfV8/6z4zZ0Db/2G0hmJ2+JuIN4L8XjnGeA==","time":1540366553382,"size":1584,"metadata":{"url":"https://registry.npmjs.org/path-type","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:53 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["1584"],"connection":["keep-alive"],"set-cookie":["__cfduid=dd2517331d9fb312ea2a2b85acaa273931540366553; expires=Thu, 24-Oct-19 07:35:53 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4ee6b589738-FRA"],"etag":["\"91460c36380c943a81dfd3a80817f059\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 11:56:56 GMT"],"vary":["accept-encoding, accept"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/7f/04/757eaddf39a721a1b986f9d837146191e1eae3882a51c3852c8172f35bd8 b/npm/.npm/_cacache/index-v5/7f/04/757eaddf39a721a1b986f9d837146191e1eae3882a51c3852c8172f35bd8 new file mode 100644 index 0000000..9a55a50 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/7f/04/757eaddf39a721a1b986f9d837146191e1eae3882a51c3852c8172f35bd8 @@ -0,0 +1,2 @@ + +b5d5c681acf723b3afb64d33b831ebdd276c98b6 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/semver/-/semver-5.6.0.tgz","integrity":"sha512-RS9R6R35NYgQn++fkDWaOmqGoj4Ek9gGs+DPxNUZKuwE183xjJroKvyo1IzVFeXvUrvmALy6FWD5xrdJT25gMg==","time":1540366554970,"size":16548,"metadata":{"url":"https://registry.npmjs.org/semver/-/semver-5.6.0.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:semver@https://registry.npmjs.org/semver/-/semver-5.6.0.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["16548"],"connection":["keep-alive"],"set-cookie":["__cfduid=d7b53e407ce89920713386b640db133d41540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f83ab426de-FRA"],"etag":["\"eca17b7f421d773596bdec20bf69a901\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Wed, 10 Oct 2018 23:52:36 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/7f/c5/95d459af2a25350114a171a629844478ab714a2cf3115a4b9a2e20a3a8c2 b/npm/.npm/_cacache/index-v5/7f/c5/95d459af2a25350114a171a629844478ab714a2cf3115a4b9a2e20a3a8c2 new file mode 100644 index 0000000..139d55e --- /dev/null +++ b/npm/.npm/_cacache/index-v5/7f/c5/95d459af2a25350114a171a629844478ab714a2cf3115a4b9a2e20a3a8c2 @@ -0,0 +1,2 @@ + +6288dc2fe0bf48421735d5c47f5a2f28b671f9b7 {"key":"pacote:range-manifest:https://registry.npmjs.org/esprima/-/esprima-2.7.3.tgz:sha1-luO3DVd59q1JzQMmc9HDEnZ7pYE=","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366554356,"size":1,"metadata":{"id":"esprima@2.7.3","manifest":{"name":"esprima","version":"2.7.3","engines":{"node":">=0.10.0"},"dependencies":{},"optionalDependencies":{},"devDependencies":{"codecov.io":"~0.1.6","escomplex-js":"1.2.0","eslint":"~1.7.2","everything.js":"~1.0.3","glob":"^5.0.15","istanbul":"~0.4.0","jscs":"~2.3.5","json-diff":"~0.3.1","karma":"^0.13.11","karma-chrome-launcher":"^0.2.1","karma-detect-browsers":"^2.0.2","karma-firefox-launcher":"^0.1.6","karma-ie-launcher":"^0.2.0","karma-mocha":"^0.2.0","karma-safari-launcher":"^0.1.1","karma-sauce-launcher":"^0.2.14","lodash":"^3.10.0","mocha":"^2.3.3","node-tick-processor":"~0.0.2","regenerate":"~1.2.1","temp":"~0.8.3","unicode-7.0.0":"~0.1.5"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/esprima/-/esprima-2.7.3.tgz","_integrity":"sha1-luO3DVd59q1JzQMmc9HDEnZ7pYE=","_shasum":"96e3b70d5779f6ad49cd032673d1c312767ba581","_shrinkwrap":null,"bin":{"esparse":"./bin/esparse.js","esvalidate":"./bin/esvalidate.js"},"_id":"esprima@2.7.3"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/81/6a/c30584697d18e9c317dd1004d0d9c2cff9a186609810408c4edcac363535 b/npm/.npm/_cacache/index-v5/81/6a/c30584697d18e9c317dd1004d0d9c2cff9a186609810408c4edcac363535 new file mode 100644 index 0000000..bcb8030 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/81/6a/c30584697d18e9c317dd1004d0d9c2cff9a186609810408c4edcac363535 @@ -0,0 +1,2 @@ + +73715c22cd4d668afebf71c4862ef43841dbd9e8 {"key":"pacote:range-manifest:https://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz:sha1-ji1INIdCEhtKghi3oTfppSBJ3IA=","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366553639,"size":1,"metadata":{"id":"indent-string@2.1.0","manifest":{"name":"indent-string","version":"2.1.0","engines":{"node":">=0.10.0"},"dependencies":{"repeating":"^2.0.0"},"optionalDependencies":{},"devDependencies":{"mocha":"*"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz","_integrity":"sha1-ji1INIdCEhtKghi3oTfppSBJ3IA=","_shasum":"8e2d48348742121b4a8218b7a137e9a52049dc80","_shrinkwrap":null,"bin":null,"_id":"indent-string@2.1.0"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/83/ef/aff47278d7ef72e864717a2bb5e09eca947c1b761d2a3f590af1b5f1b379 b/npm/.npm/_cacache/index-v5/83/ef/aff47278d7ef72e864717a2bb5e09eca947c1b761d2a3f590af1b5f1b379 new file mode 100644 index 0000000..3d0d390 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/83/ef/aff47278d7ef72e864717a2bb5e09eca947c1b761d2a3f590af1b5f1b379 @@ -0,0 +1,2 @@ + +efa842825cc33982a05b8d49dc45a31606fd731e {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/minimatch","integrity":"sha512-PStdJtHW6dZE80smbKZ7Sw6HI+4XVFYCn1a5uNlGrwt5U2qN4JeOVVzWXnFMheBLGbQt4HUBENMNL93IKqCGZw==","time":1540366552814,"size":17140,"metadata":{"url":"https://registry.npmjs.org/minimatch","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:52 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["17140"],"connection":["keep-alive"],"set-cookie":["__cfduid=d916bbbe17a5070d79f5ad32f71fce5531540366552; expires=Thu, 24-Oct-19 07:35:52 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4eaef679726-FRA"],"etag":["\"234d21e7c3bcb9161047a794c0d1fb9c\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Tue, 05 Jun 2018 13:47:29 GMT"],"vary":["accept-encoding, accept"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/84/70/37427ec7c27873065c5bde21c0e309bf1b614007f13c4bda3e116878acc7 b/npm/.npm/_cacache/index-v5/84/70/37427ec7c27873065c5bde21c0e309bf1b614007f13c4bda3e116878acc7 new file mode 100644 index 0000000..b34f21c --- /dev/null +++ b/npm/.npm/_cacache/index-v5/84/70/37427ec7c27873065c5bde21c0e309bf1b614007f13c4bda3e116878acc7 @@ -0,0 +1,2 @@ + +6764a827628de0fab1da83f5d1078a2ce42320e9 {"key":"pacote:range-manifest:https://registry.npmjs.org/redent/-/redent-1.0.0.tgz:sha1-z5Fqsf1fHxbfsggi3W7H9zDCr94=","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366552991,"size":1,"metadata":{"id":"redent@1.0.0","manifest":{"name":"redent","version":"1.0.0","engines":{"node":">=0.10.0"},"dependencies":{"indent-string":"^2.1.0","strip-indent":"^1.0.1"},"optionalDependencies":{},"devDependencies":{"ava":"*","xo":"*"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/redent/-/redent-1.0.0.tgz","_integrity":"sha1-z5Fqsf1fHxbfsggi3W7H9zDCr94=","_shasum":"cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde","_shrinkwrap":null,"bin":null,"_id":"redent@1.0.0"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/84/82/3fa8cdf58bf2fe359b6df055ad5f7a24f3495b4fd8f6d64768a5ec8335c3 b/npm/.npm/_cacache/index-v5/84/82/3fa8cdf58bf2fe359b6df055ad5f7a24f3495b4fd8f6d64768a5ec8335c3 new file mode 100644 index 0000000..371b431 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/84/82/3fa8cdf58bf2fe359b6df055ad5f7a24f3495b4fd8f6d64768a5ec8335c3 @@ -0,0 +1,2 @@ + +b12974d359faf32080bb6e3669b6714ee68fcd40 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/path-exists","integrity":"sha512-bdS01e9KxcEFhG4bq14QHj44DvdJA6pWJ87QUw8KHsjs1K4RkAIuEtev2gAVcDg7wNLm30NL0VY0O2ynRT1R1g==","time":1540366553289,"size":1356,"metadata":{"url":"https://registry.npmjs.org/path-exists","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:53 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["1356"],"connection":["keep-alive"],"set-cookie":["__cfduid=dc5fb3f0ece7d1c527a0bd46eeb0ffd731540366553; expires=Thu, 24-Oct-19 07:35:53 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4edfb9864c9-FRA"],"etag":["\"b27082f08417b7103d7a5889f3bdda83\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 11:56:44 GMT"],"vary":["accept-encoding, accept"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/84/99/a4fd8fd0e1912060fd27d4c4d6a543dd0bb43a004159a1067a9f4fea505f b/npm/.npm/_cacache/index-v5/84/99/a4fd8fd0e1912060fd27d4c4d6a543dd0bb43a004159a1067a9f4fea505f new file mode 100644 index 0000000..208ed9d --- /dev/null +++ b/npm/.npm/_cacache/index-v5/84/99/a4fd8fd0e1912060fd27d4c4d6a543dd0bb43a004159a1067a9f4fea505f @@ -0,0 +1,2 @@ + +64e8689e6f4ee1f53df19612d917e843e6a2fc6c {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/parse-json","integrity":"sha512-u3rVoGUcDxc75v7ZHsBeowUPslCny1dEhAd4mXphHYpTdI9tecpBAz2g1atO/jYzQ5v5KjREiaq6GohpRucUqA==","time":1540366553425,"size":3008,"metadata":{"url":"https://registry.npmjs.org/parse-json","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:53 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["3008"],"connection":["keep-alive"],"set-cookie":["__cfduid=d71c09ad4c392680cd6cdb95f6f73b04e1540366553; expires=Thu, 24-Oct-19 07:35:53 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4eeca4497da-FRA"],"etag":["\"146f313b50a5f7e4e817e7652f79d6d5\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 11:51:47 GMT"],"vary":["accept-encoding, accept"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/85/7f/73533187d1a0e7f803852d84478a390ee870dda682ff13a49bace582e282 b/npm/.npm/_cacache/index-v5/85/7f/73533187d1a0e7f803852d84478a390ee870dda682ff13a49bace582e282 new file mode 100644 index 0000000..1828fb9 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/85/7f/73533187d1a0e7f803852d84478a390ee870dda682ff13a49bace582e282 @@ -0,0 +1,2 @@ + +9b8162353fc8cc66d87579a19c116312eb126bed {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/path-is-absolute","integrity":"sha512-l8jc+bMLd/fijf4edZlC3t3+41hjtLRPquPKP9rqgqxRXWWD+t9pPG0hWbD0oYzTYyU3uwTWmL7WVp3NqFwv1w==","time":1540366552825,"size":684,"metadata":{"url":"https://registry.npmjs.org/path-is-absolute","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:52 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["684"],"connection":["keep-alive"],"set-cookie":["__cfduid=df6f72caf769c9ecc2bc51db62d6f8ef91540366552; expires=Thu, 24-Oct-19 07:35:52 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4eb0f509aca-FRA"],"etag":["\"cc98b122971bc4ee843692d05283d033\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 11:56:47 GMT"],"vary":["accept-encoding, accept"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/85/e8/62bb0eee7c81dc0a064df57ee4bc3ef332c5f3e0cf654b5c582da024f5f3 b/npm/.npm/_cacache/index-v5/85/e8/62bb0eee7c81dc0a064df57ee4bc3ef332c5f3e0cf654b5c582da024f5f3 new file mode 100644 index 0000000..fd02820 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/85/e8/62bb0eee7c81dc0a064df57ee4bc3ef332c5f3e0cf654b5c582da024f5f3 @@ -0,0 +1,2 @@ + +156b3cfbab4ce5a68eb2b5fd8935ba5bef376c76 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/decamelize","integrity":"sha512-TXyXpp0hnWHBLYgUPjR7jc4Yp6UzXZxYXSKKdv8e6F8LDHE35xKvk7SWTBKrhYSMBVzR6dznY3aUB1wgod2Tqw==","time":1540366552981,"size":2023,"metadata":{"url":"https://registry.npmjs.org/decamelize","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:52 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["2023"],"connection":["keep-alive"],"set-cookie":["__cfduid=d1d96ca40cad547a4e90ec6a48eaaaea91540366552; expires=Thu, 24-Oct-19 07:35:52 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4ebea6764c9-FRA"],"etag":["\"3f66e75a574dae2f9bbb3052f198569d\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Tue, 05 Jun 2018 13:48:39 GMT"],"vary":["accept-encoding, accept"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/86/98/a8936f10c9dda851efbc0c4187632d6b8f867897decadc73c7e801670070 b/npm/.npm/_cacache/index-v5/86/98/a8936f10c9dda851efbc0c4187632d6b8f867897decadc73c7e801670070 new file mode 100644 index 0000000..4a7237e --- /dev/null +++ b/npm/.npm/_cacache/index-v5/86/98/a8936f10c9dda851efbc0c4187632d6b8f867897decadc73c7e801670070 @@ -0,0 +1,2 @@ + +b53ba1f43f2ca8003e6983d11b6d58d0ab941978 {"key":"pacote:range-manifest:https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz:sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366554360,"size":1,"metadata":{"id":"sprintf-js@1.0.3","manifest":{"name":"sprintf-js","version":"1.0.3","dependencies":{},"optionalDependencies":{},"devDependencies":{"mocha":"*","grunt":"*","grunt-contrib-watch":"*","grunt-contrib-uglify":"*"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz","_integrity":"sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=","_shasum":"04e6926f662895354f3dd015203633b857297e2c","_shrinkwrap":null,"bin":null,"_id":"sprintf-js@1.0.3"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/86/a2/5b27bb74c4b5717e38015bd570d651f9a9ebdd15044c34b5717193654f28 b/npm/.npm/_cacache/index-v5/86/a2/5b27bb74c4b5717e38015bd570d651f9a9ebdd15044c34b5717193654f28 new file mode 100644 index 0000000..fc5abce --- /dev/null +++ b/npm/.npm/_cacache/index-v5/86/a2/5b27bb74c4b5717e38015bd570d651f9a9ebdd15044c34b5717193654f28 @@ -0,0 +1,2 @@ + +1bf6285f01278efc0e20bc35718f75cde00a78b5 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/iconv-lite","integrity":"sha512-wV/LdvN5RRlrxHcuVyttP/jz2Zi3wywx9YmozLHbuMepSRKAE6465joM9pePWSZFs3AZGGXinD1FJsraTH7mgw==","time":1540366552814,"size":18316,"metadata":{"url":"https://registry.npmjs.org/iconv-lite","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:52 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["18316"],"connection":["keep-alive"],"set-cookie":["__cfduid=d1d6eab0d2e22adc5e523253c58c0bf391540366552; expires=Thu, 24-Oct-19 07:35:52 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4eaeb47972c-FRA"],"etag":["\"d03792a9621d61ec70c0a706361745f9\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Tue, 25 Sep 2018 02:45:30 GMT"],"vary":["accept-encoding, accept"],"x-amz-meta-rev":["203-dfc269cf159bfa106fed31cd2a92c44f"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/86/d4/cdd6d90f9cc86254b9d817a815ac6df79ca99e76fc8bbcf2ed1a39dd9a1d b/npm/.npm/_cacache/index-v5/86/d4/cdd6d90f9cc86254b9d817a815ac6df79ca99e76fc8bbcf2ed1a39dd9a1d new file mode 100644 index 0000000..f5cb456 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/86/d4/cdd6d90f9cc86254b9d817a815ac6df79ca99e76fc8bbcf2ed1a39dd9a1d @@ -0,0 +1,2 @@ + +169279a96f898399775c44c32158b90ca0121d3f {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz","integrity":"sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=","time":1540366554817,"size":2646,"metadata":{"url":"https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:is-arrayish@https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["2646"],"connection":["keep-alive"],"set-cookie":["__cfduid=dd5f065bb2930ab9f1d5e74acc6c77a3a1540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f69d34c2ba-FRA"],"etag":["\"4bbbacda455ab73d86f5eda908989f24\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 04:58:36 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/86/df/24e888de8c94c67026f3974571f3072a9ff5276007cbd45ef80215795ecb b/npm/.npm/_cacache/index-v5/86/df/24e888de8c94c67026f3974571f3072a9ff5276007cbd45ef80215795ecb new file mode 100644 index 0000000..840b6c7 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/86/df/24e888de8c94c67026f3974571f3072a9ff5276007cbd45ef80215795ecb @@ -0,0 +1,2 @@ + +fa56c46f2661083d164fdeb71f45e5a8a7281a27 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/which/-/which-1.3.1.tgz","integrity":"sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==","time":1540366554951,"size":4174,"metadata":{"url":"https://registry.npmjs.org/which/-/which-1.3.1.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:which@https://registry.npmjs.org/which/-/which-1.3.1.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["4174"],"connection":["keep-alive"],"set-cookie":["__cfduid=db260eb8fef0541fca9793e23179b35211540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f7ece9c274-FRA"],"etag":["\"3077f0c321098e78b78ddd6b4b2789e5\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 21:56:33 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/87/07/207190ca488eb7fce28e124fa8a484a6baa6b5930787d16192cefe6c73cb b/npm/.npm/_cacache/index-v5/87/07/207190ca488eb7fce28e124fa8a484a6baa6b5930787d16192cefe6c73cb new file mode 100644 index 0000000..40b8ea8 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/87/07/207190ca488eb7fce28e124fa8a484a6baa6b5930787d16192cefe6c73cb @@ -0,0 +1,2 @@ + +d07e6dd96494860aaf1a36784aaade9953aa91b8 {"key":"pacote:range-manifest:https://registry.npmjs.org/semver/-/semver-5.6.0.tgz:sha512-RS9R6R35NYgQn++fkDWaOmqGoj4Ek9gGs+DPxNUZKuwE183xjJroKvyo1IzVFeXvUrvmALy6FWD5xrdJT25gMg==","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366553134,"size":1,"metadata":{"id":"semver@5.6.0","manifest":{"name":"semver","version":"5.6.0","dependencies":{},"optionalDependencies":{},"devDependencies":{"tap":"^12.0.1"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/semver/-/semver-5.6.0.tgz","_integrity":"sha512-RS9R6R35NYgQn++fkDWaOmqGoj4Ek9gGs+DPxNUZKuwE183xjJroKvyo1IzVFeXvUrvmALy6FWD5xrdJT25gMg==","_shasum":"7e74256fbaa49c75aa7c7a205cc22799cac80004","_shrinkwrap":null,"bin":{"semver":"./bin/semver"},"_id":"semver@5.6.0"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/87/1c/898e8f900dd1cf99385af3af2255ed6d972f2ee1a52776c682f56281ac88 b/npm/.npm/_cacache/index-v5/87/1c/898e8f900dd1cf99385af3af2255ed6d972f2ee1a52776c682f56281ac88 new file mode 100644 index 0000000..32ad304 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/87/1c/898e8f900dd1cf99385af3af2255ed6d972f2ee1a52776c682f56281ac88 @@ -0,0 +1,2 @@ + +865eaff0b4349278b80ab0b0e210931a3a8db6c0 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/hooker","integrity":"sha512-kTd4o5oyr01TC+W4wDFvVzAvwP1zSxJ33gXfO43TY6NVHnWVAkXibAyEy1oy+7b5jljzl+u91dfk6fphklcPuw==","time":1540366554018,"size":413,"metadata":{"url":"https://registry.npmjs.org/hooker","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["413"],"connection":["keep-alive"],"set-cookie":["__cfduid=dd01a88914b5a1bfe9a28649f6170dfda1540366553; expires=Thu, 24-Oct-19 07:35:53 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4f27fb8972c-FRA"],"etag":["\"4ee070c8045ffc8fc74604d4e610a12c\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Fri, 03 Aug 2018 00:44:07 GMT"],"vary":["accept-encoding, accept"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/87/55/e56d34b37c3170079064597cabb288d076b0d0468eaba3b8a0cf8686ce1f b/npm/.npm/_cacache/index-v5/87/55/e56d34b37c3170079064597cabb288d076b0d0468eaba3b8a0cf8686ce1f new file mode 100644 index 0000000..1761a7f --- /dev/null +++ b/npm/.npm/_cacache/index-v5/87/55/e56d34b37c3170079064597cabb288d076b0d0468eaba3b8a0cf8686ce1f @@ -0,0 +1,2 @@ + +f670177624abeb602c293c44b1139902cc2f63fd {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz","integrity":"sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==","time":1540366554984,"size":12035,"metadata":{"url":"https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:safer-buffer@https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["12035"],"connection":["keep-alive"],"set-cookie":["__cfduid=d377277069c5d420070ec48589a8d47731540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f84f6ec2a1-FRA"],"etag":["\"1ea31bbc681f283e6148edd28904b3b3\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 16:29:44 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/87/7b/de43fdfbe18f43f1810723b5cf5ee3d5a63e0a7be1d1bc0a2e32f3447722 b/npm/.npm/_cacache/index-v5/87/7b/de43fdfbe18f43f1810723b5cf5ee3d5a63e0a7be1d1bc0a2e32f3447722 new file mode 100644 index 0000000..8d9ae40 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/87/7b/de43fdfbe18f43f1810723b5cf5ee3d5a63e0a7be1d1bc0a2e32f3447722 @@ -0,0 +1,2 @@ + +78ec7109cabc1d2f5ed5dd00eb3b1524b4115661 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/colors","integrity":"sha512-qFbbAWP5lYl4HUykFJ5Us9t6DAr2P+RQbvPb4zfrAOKoJgXQMStxYcxAPmsJllXcSwuUMyjft6uc0yy28po5ig==","time":1540366554017,"size":14267,"metadata":{"url":"https://registry.npmjs.org/colors","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["14267"],"connection":["keep-alive"],"set-cookie":["__cfduid=db7fad9ba0ab25aa016f38fdec4afc4c21540366553; expires=Thu, 24-Oct-19 07:35:53 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4f27c82c2a6-FRA"],"etag":["\"e900a3cb512b9887db616b3af71308a5\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Wed, 22 Aug 2018 18:48:54 GMT"],"vary":["accept-encoding, accept"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/88/7f/9976a6fa114253b07e4f75f339a670328ab06f1c05542c939256e63fb773 b/npm/.npm/_cacache/index-v5/88/7f/9976a6fa114253b07e4f75f339a670328ab06f1c05542c939256e63fb773 new file mode 100644 index 0000000..3b83816 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/88/7f/9976a6fa114253b07e4f75f339a670328ab06f1c05542c939256e63fb773 @@ -0,0 +1,2 @@ + +ac37603f4a27f3068846e690dffa19b0634610aa {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/pinkie","integrity":"sha512-xYOclmqoy+k15LwNFn8CK0bGg1Uc6wKiefMJp87UsYVtnHh0KA4Pvld95t8TXPwPbHt3WlD6ySo/MxigneV6eg==","time":1540366553333,"size":3214,"metadata":{"url":"https://registry.npmjs.org/pinkie","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:53 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["3214"],"connection":["keep-alive"],"set-cookie":["__cfduid=dd01a88914b5a1bfe9a28649f6170dfda1540366553; expires=Thu, 24-Oct-19 07:35:53 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4ee2d18972c-FRA"],"etag":["\"3f9cd7fb1a8e52d6c0ecafc41e1b97a9\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 12:18:14 GMT"],"vary":["accept-encoding, accept"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/89/08/cb1ce32590f6289de2aaa755390738eb311e82db05d29c22836982193185 b/npm/.npm/_cacache/index-v5/89/08/cb1ce32590f6289de2aaa755390738eb311e82db05d29c22836982193185 new file mode 100644 index 0000000..82cb29d --- /dev/null +++ b/npm/.npm/_cacache/index-v5/89/08/cb1ce32590f6289de2aaa755390738eb311e82db05d29c22836982193185 @@ -0,0 +1,2 @@ + +57e357e2f65a796a98906da1eac7ad211de7497c {"key":"pacote:version-manifest:https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz:sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366553880,"size":1,"metadata":{"id":"concat-map@0.0.1","manifest":{"name":"concat-map","version":"0.0.1","dependencies":{},"optionalDependencies":{},"devDependencies":{"tape":"~2.4.0"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz","_integrity":"sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=","_shasum":"d8a96bd77fd68df7793a73036a3ba0d5405d477b","_shrinkwrap":null,"bin":null,"_id":"concat-map@0.0.1"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/89/20/0c05de77d574cd3cefd131119e8696f7cc5c765d324d0f6aa685b93704ff b/npm/.npm/_cacache/index-v5/89/20/0c05de77d574cd3cefd131119e8696f7cc5c765d324d0f6aa685b93704ff new file mode 100644 index 0000000..70ff1e7 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/89/20/0c05de77d574cd3cefd131119e8696f7cc5c765d324d0f6aa685b93704ff @@ -0,0 +1,2 @@ + +873c2dceab75851540589ab8be36306c0ddc3cda {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/js-yaml","integrity":"sha512-pfmaHtKnz7E7HeQgHv484eBb4n33IdQMOr54QdY59dMItsRMNEKufbWV1MNdYbpL2qXDS3wUvzuYNkAckWgu0A==","time":1540366552814,"size":27507,"metadata":{"url":"https://registry.npmjs.org/js-yaml","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:52 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["27507"],"connection":["keep-alive"],"set-cookie":["__cfduid=d083fdb2433f56ba4f69a0fd933c1b47e1540366552; expires=Thu, 24-Oct-19 07:35:52 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4eaed1ac305-FRA"],"etag":["\"b07e338f73a0fc4922a9ef7df1193676\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Thu, 02 Aug 2018 09:53:03 GMT"],"vary":["accept-encoding, accept"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/89/f2/c5e0a83946ee4869fbc432ef13a35aa6a3f30fb37c4c8afc39d7e5365c62 b/npm/.npm/_cacache/index-v5/89/f2/c5e0a83946ee4869fbc432ef13a35aa6a3f30fb37c4c8afc39d7e5365c62 new file mode 100644 index 0000000..86bbc23 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/89/f2/c5e0a83946ee4869fbc432ef13a35aa6a3f30fb37c4c8afc39d7e5365c62 @@ -0,0 +1,2 @@ + +02466d9ddd75016425472949c299a3af87b1d363 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz","integrity":"sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=","time":1540366554817,"size":7905,"metadata":{"url":"https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:graceful-fs@https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["7905"],"connection":["keep-alive"],"set-cookie":["__cfduid=d78a8c830593e44627c2c74d6509e5f9b1540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f6984abf02-FRA"],"etag":["\"7d9d43be3cd972a0de7779b43ece4edd\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 02:39:27 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/8a/07/a142158234dde07ba4872295d4e1f727b72f58306627b2ebb309036f4575 b/npm/.npm/_cacache/index-v5/8a/07/a142158234dde07ba4872295d4e1f727b72f58306627b2ebb309036f4575 new file mode 100644 index 0000000..7db12a4 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/8a/07/a142158234dde07ba4872295d4e1f727b72f58306627b2ebb309036f4575 @@ -0,0 +1,2 @@ + +716dd1dd42661fe9e3be892d8576a549c18684dc {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz","integrity":"sha1-xkZdvwirzU2zWTF/eaxopkayj/k=","time":1540366554817,"size":10314,"metadata":{"url":"https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:nopt@https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["10314"],"connection":["keep-alive"],"set-cookie":["__cfduid=d377277069c5d420070ec48589a8d47731540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f6ac11c2a1-FRA"],"etag":["\"e24bde8a613e223786acfee7ab3a623b\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 10:32:49 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/8a/3d/d3ea4d92d91ac1dc76b6ad174e8a28cd1edaf219a12ff19bf3d852b275e6 b/npm/.npm/_cacache/index-v5/8a/3d/d3ea4d92d91ac1dc76b6ad174e8a28cd1edaf219a12ff19bf3d852b275e6 new file mode 100644 index 0000000..9af98f1 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/8a/3d/d3ea4d92d91ac1dc76b6ad174e8a28cd1edaf219a12ff19bf3d852b275e6 @@ -0,0 +1,2 @@ + +5f01befe32692d3d34887531e5de0fdb6b59d824 {"key":"pacote:range-manifest:https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz:sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366554262,"size":1,"metadata":{"id":"util-deprecate@1.0.2","manifest":{"name":"util-deprecate","version":"1.0.2","dependencies":{},"optionalDependencies":{},"devDependencies":{},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz","_integrity":"sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=","_shasum":"450d4dc9fa70de732762fbd2d4a28981419a0ccf","_shrinkwrap":null,"bin":null,"_id":"util-deprecate@1.0.2"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/8b/34/a8f118b858c2160fcc7f1963c43030709e0dbc86c031b46751d35f996f7f b/npm/.npm/_cacache/index-v5/8b/34/a8f118b858c2160fcc7f1963c43030709e0dbc86c031b46751d35f996f7f new file mode 100644 index 0000000..93b3cd7 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/8b/34/a8f118b858c2160fcc7f1963c43030709e0dbc86c031b46751d35f996f7f @@ -0,0 +1,2 @@ + +4895f702b14d97c48ba27c81663787a56e70c213 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/trim-newlines","integrity":"sha512-QFu7CYPVFY0R1ImPj5qB7Hlf4YyYJSsL0TxpoKCGEihdflcPHFxQ541Nbi+ijxEHFt3lvkWaGRdfWMgSlITBvw==","time":1540366552981,"size":701,"metadata":{"url":"https://registry.npmjs.org/trim-newlines","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:52 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["701"],"connection":["keep-alive"],"set-cookie":["__cfduid=d916bbbe17a5070d79f5ad32f71fce5531540366552; expires=Thu, 24-Oct-19 07:35:52 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4ebfff79726-FRA"],"etag":["\"d85aff5595a702f399ac34383c660199\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 19:53:56 GMT"],"vary":["accept-encoding, accept"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/8b/b6/5a9f167e7dcb5db69d142d0d19f5bf0f7ee894d441e9d987d8713670865c b/npm/.npm/_cacache/index-v5/8b/b6/5a9f167e7dcb5db69d142d0d19f5bf0f7ee894d441e9d987d8713670865c new file mode 100644 index 0000000..f766d4e --- /dev/null +++ b/npm/.npm/_cacache/index-v5/8b/b6/5a9f167e7dcb5db69d142d0d19f5bf0f7ee894d441e9d987d8713670865c @@ -0,0 +1,2 @@ + +30f807b51295a7e3f20f0b2f0de134c1632c1633 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/esprima","integrity":"sha512-BuGlQ/PJ7K7hcZlA5XNn2S4FT5FVJp3g+r9/nkm8ZYtauddCOov7ySqg1xawoJcCAREvTS2zmSOKkvZF5OghDw==","time":1540366554350,"size":26291,"metadata":{"url":"https://registry.npmjs.org/esprima","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["26291"],"connection":["keep-alive"],"set-cookie":["__cfduid=d2cace63d1bde5dd0b76e714594e2e9ec1540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4f48e219738-FRA"],"etag":["\"749196b4df8914f71da304d308ef22e8\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Fri, 13 Jul 2018 08:39:20 GMT"],"vary":["accept-encoding, accept"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/8d/2c/bf742c29757d7367d6a3aeb1fdc6d85b963e45fd23b6557f6f3b2b98eb14 b/npm/.npm/_cacache/index-v5/8d/2c/bf742c29757d7367d6a3aeb1fdc6d85b963e45fd23b6557f6f3b2b98eb14 new file mode 100644 index 0000000..8c65ddc --- /dev/null +++ b/npm/.npm/_cacache/index-v5/8d/2c/bf742c29757d7367d6a3aeb1fdc6d85b963e45fd23b6557f6f3b2b98eb14 @@ -0,0 +1,2 @@ + +41a8ad76d6d2f42688bb0376995dfaa4d823a003 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/color-convert","integrity":"sha512-8CeqY+83zHfViFNjc9s7Z4NrGMFQ/RwaV4gK+ReXsnrp+xaCZBD6kRObqTUhCccnGbBtlfShVVtB4bM3DzZVQg==","time":1540366554124,"size":12483,"metadata":{"url":"https://registry.npmjs.org/color-convert","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["12483"],"connection":["keep-alive"],"set-cookie":["__cfduid=d95ea88f44a652b9813abc16a7de3dbcd1540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4f32d2497da-FRA"],"etag":["\"38409cac2c125d2802c32677c088c3d8\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Tue, 28 Aug 2018 05:32:43 GMT"],"vary":["accept-encoding, accept"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/8e/58/1ce1355f39c75fa063f8dc1c958c11d57446438253b206afc18efb9f28c9 b/npm/.npm/_cacache/index-v5/8e/58/1ce1355f39c75fa063f8dc1c958c11d57446438253b206afc18efb9f28c9 new file mode 100644 index 0000000..c258d23 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/8e/58/1ce1355f39c75fa063f8dc1c958c11d57446438253b206afc18efb9f28c9 @@ -0,0 +1,2 @@ + +7cb0b47e1ab7ecd8c0e93e6408625a6e836f0b7b {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/ansi-styles","integrity":"sha512-macaS8+7uKlayj1Fs0f1vajlxvkPNqQGpnpFe/TpgLBRYaZTrSuf8FUCiieeFFgQXnGuUdZFa1S0eof9POrFAg==","time":1540366554089,"size":4682,"metadata":{"url":"https://registry.npmjs.org/ansi-styles","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["4682"],"connection":["keep-alive"],"set-cookie":["__cfduid=d8ed73f7032d3c4f2f3fb0deda4c9d9b41540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4f2ed489aca-FRA"],"etag":["\"e29c8119baaf181ce667c628094614eb\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sat, 26 May 2018 16:54:20 GMT"],"vary":["accept-encoding, accept"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/8f/1a/96bf11bcf9e8331b2ebc58be6c741ecd814c347ec8601237fa23be73456c b/npm/.npm/_cacache/index-v5/8f/1a/96bf11bcf9e8331b2ebc58be6c741ecd814c347ec8601237fa23be73456c new file mode 100644 index 0000000..9e1609e --- /dev/null +++ b/npm/.npm/_cacache/index-v5/8f/1a/96bf11bcf9e8331b2ebc58be6c741ecd814c347ec8601237fa23be73456c @@ -0,0 +1,2 @@ + +59e00aab96fd5078739857fbefdf6cab3338535b {"key":"pacote:range-manifest:http://registry.npmjs.org/eventemitter2/-/eventemitter2-0.4.14.tgz:sha1-j2G3XN4BKy6esoTUVFWDtWQ7Yas=","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366552823,"size":1,"metadata":{"id":"eventemitter2@0.4.14","manifest":{"name":"eventemitter2","version":"0.4.14","dependencies":{},"optionalDependencies":{},"devDependencies":{"nodeunit":"*","benchmark":">= 0.2.2"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"http://registry.npmjs.org/eventemitter2/-/eventemitter2-0.4.14.tgz","_integrity":"sha1-j2G3XN4BKy6esoTUVFWDtWQ7Yas=","_shasum":"8f61b75cde012b2e9eb284d4545583b5643b61ab","_shrinkwrap":null,"bin":null,"_id":"eventemitter2@0.4.14"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/90/2f/d2a52ab1a2f4493433f26b054bb2ddf92d43c9700300ca1f6fcbf1e63321 b/npm/.npm/_cacache/index-v5/90/2f/d2a52ab1a2f4493433f26b054bb2ddf92d43c9700300ca1f6fcbf1e63321 new file mode 100644 index 0000000..973fa2a --- /dev/null +++ b/npm/.npm/_cacache/index-v5/90/2f/d2a52ab1a2f4493433f26b054bb2ddf92d43c9700300ca1f6fcbf1e63321 @@ -0,0 +1,2 @@ + +6c7a00ccbb459cfc3cf1628724ee7639c0d00040 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/js-yaml/-/js-yaml-3.5.5.tgz","integrity":"sha1-A3fDgBfKvHMisNH7zSWkkWQfL74=","time":1540366554829,"size":68365,"metadata":{"url":"https://registry.npmjs.org/js-yaml/-/js-yaml-3.5.5.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:js-yaml@https://registry.npmjs.org/js-yaml/-/js-yaml-3.5.5.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["binary/octet-stream"],"content-length":["68365"],"connection":["keep-alive"],"set-cookie":["__cfduid=d3571117028a618f068c81ce728e19c941540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f6faa8972c-FRA"],"etag":["\"3f1e9d70d74374561a0be57291ca2540\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Tue, 05 Jun 2018 13:46:42 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/90/ab/2fe9658ad3b6cb6cd8f3f691af7c79b655fb067b1012275183c2c40bc24a b/npm/.npm/_cacache/index-v5/90/ab/2fe9658ad3b6cb6cd8f3f691af7c79b655fb067b1012275183c2c40bc24a new file mode 100644 index 0000000..bf222f1 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/90/ab/2fe9658ad3b6cb6cd8f3f691af7c79b655fb067b1012275183c2c40bc24a @@ -0,0 +1,2 @@ + +7286247611c1ebbcbfcd9032d31c89bc3a123da6 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/eventemitter2/-/eventemitter2-0.4.14.tgz","integrity":"sha1-j2G3XN4BKy6esoTUVFWDtWQ7Yas=","time":1540366552815,"size":6949,"metadata":{"url":"https://registry.npmjs.org/eventemitter2/-/eventemitter2-0.4.14.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:eventemitter2@https://registry.npmjs.org/eventemitter2/-/eventemitter2-0.4.14.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:52 GMT"],"content-type":["application/octet-stream"],"content-length":["6949"],"connection":["keep-alive"],"set-cookie":["__cfduid=d06c1732a8767ba97469df63446cebc7f1540366552; expires=Thu, 24-Oct-19 07:35:52 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4ead82797da-FRA"],"etag":["\"2746e27dcd0806b458e0aaef2ef94230\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 00:01:54 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/91/27/f806eee9a12eb15d6c79ebfee2c0abd15154dcf1749c0bb8012ac75eb5d5 b/npm/.npm/_cacache/index-v5/91/27/f806eee9a12eb15d6c79ebfee2c0abd15154dcf1749c0bb8012ac75eb5d5 new file mode 100644 index 0000000..4e4ffae --- /dev/null +++ b/npm/.npm/_cacache/index-v5/91/27/f806eee9a12eb15d6c79ebfee2c0abd15154dcf1749c0bb8012ac75eb5d5 @@ -0,0 +1,2 @@ + +d80eaecbe83801d4598e662cd524a5236385b7ac {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/isexe","integrity":"sha512-wsn2IbHyWtPjcKQGCnBYs85iqzuF2c35I1sAeAiHfTJNvf8iqVi4O9ful96Jn6W3JLJNTKAfh+AqL/bQgkB77Q==","time":1540366554281,"size":1845,"metadata":{"url":"https://registry.npmjs.org/isexe","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["1845"],"connection":["keep-alive"],"set-cookie":["__cfduid=d30ab153c77123272a42eeaa8a03b5dde1540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4f42c1d9726-FRA"],"etag":["\"5ecbeb8ada52657cff786b7a12dbe3c8\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 05:00:28 GMT"],"vary":["accept-encoding, accept"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/91/d0/533b0b0b908863ff49983848fa58e98ba37bf78e94035c57c910825ae7cf b/npm/.npm/_cacache/index-v5/91/d0/533b0b0b908863ff49983848fa58e98ba37bf78e94035c57c910825ae7cf new file mode 100644 index 0000000..29b4ad1 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/91/d0/533b0b0b908863ff49983848fa58e98ba37bf78e94035c57c910825ae7cf @@ -0,0 +1,2 @@ + +5dff5b6e271918339fede21441413764eaa67bd9 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/mkdirp","integrity":"sha512-M/pGHJFdVFtqiLiZCh0ivv7u10GRqAn79hmoHOTK5NhOgFE+u/T2XE8q+quJgo1tG1H/wmMA/oFsO11aIZomeg==","time":1540366552815,"size":5911,"metadata":{"url":"https://registry.npmjs.org/mkdirp","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:52 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["5911"],"connection":["keep-alive"],"set-cookie":["__cfduid=dab9bec03d12fc16c78d0819fe3b48b2a1540366552; expires=Thu, 24-Oct-19 07:35:52 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4eaed13c2a6-FRA"],"etag":["\"89fd817fb948ce36511a6303ba0ca36e\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Wed, 29 Aug 2018 02:22:27 GMT"],"vary":["accept-encoding, accept"],"x-amz-meta-rev":["446-c68b572886c7d6646d7ac814de0b9783"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/93/3b/192f923bb67a4610509ef94eab61b58fb7f8cb981138c9a7135621ea7958 b/npm/.npm/_cacache/index-v5/93/3b/192f923bb67a4610509ef94eab61b58fb7f8cb981138c9a7135621ea7958 new file mode 100644 index 0000000..5a1a5fe --- /dev/null +++ b/npm/.npm/_cacache/index-v5/93/3b/192f923bb67a4610509ef94eab61b58fb7f8cb981138c9a7135621ea7958 @@ -0,0 +1,2 @@ + +f57f20a838488cc486f4bdb55348532f28be3467 {"key":"pacote:range-manifest:https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz:sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366553745,"size":1,"metadata":{"id":"inflight@1.0.6","manifest":{"name":"inflight","version":"1.0.6","dependencies":{"once":"^1.3.0","wrappy":"1"},"optionalDependencies":{},"devDependencies":{"tap":"^7.1.2"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz","_integrity":"sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=","_shasum":"49bd6331d7d02d0c09bc910a1075ba8165b56df9","_shrinkwrap":null,"bin":null,"_id":"inflight@1.0.6"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/93/df/c181351e6120e3451516dfbd5f3733ac84b132a88e550f5a0a549d93a3b4 b/npm/.npm/_cacache/index-v5/93/df/c181351e6120e3451516dfbd5f3733ac84b132a88e550f5a0a549d93a3b4 new file mode 100644 index 0000000..ccc8097 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/93/df/c181351e6120e3451516dfbd5f3733ac84b132a88e550f5a0a549d93a3b4 @@ -0,0 +1,2 @@ + +4a8ec21b99781c56d33cb43ec90dd1eafb8de5d5 {"key":"pacote:range-manifest:https://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz:sha1-DHlipq3vp7vUrDZkYKY4VSrhoKI=","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366553606,"size":1,"metadata":{"id":"strip-indent@1.0.1","manifest":{"name":"strip-indent","version":"1.0.1","engines":{"node":">=0.10.0"},"dependencies":{"get-stdin":"^4.0.1"},"optionalDependencies":{},"devDependencies":{"mocha":"*"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz","_integrity":"sha1-DHlipq3vp7vUrDZkYKY4VSrhoKI=","_shasum":"0c7962a6adefa7bbd4ac366460a638552ae1a0a2","_shrinkwrap":null,"bin":{"strip-indent":"cli.js"},"_id":"strip-indent@1.0.1"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/93/f4/73fcfb082eb88972eed44aa129d8b9f3e3ecbb93b2988d009c9452be3799 b/npm/.npm/_cacache/index-v5/93/f4/73fcfb082eb88972eed44aa129d8b9f3e3ecbb93b2988d009c9452be3799 new file mode 100644 index 0000000..1c363d6 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/93/f4/73fcfb082eb88972eed44aa129d8b9f3e3ecbb93b2988d009c9452be3799 @@ -0,0 +1,2 @@ + +c834082de8972dd3e80f01051fddf985f4b30c73 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/grunt-legacy-util/-/grunt-legacy-util-1.1.1.tgz","integrity":"sha512-9zyA29w/fBe6BIfjGENndwoe1Uy31BIXxTH3s8mga0Z5Bz2Sp4UCjkeyv2tI449ymkx3x26B+46FV4fXEddl5A==","time":1540366554897,"size":11309,"metadata":{"url":"https://registry.npmjs.org/grunt-legacy-util/-/grunt-legacy-util-1.1.1.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:grunt-legacy-util@https://registry.npmjs.org/grunt-legacy-util/-/grunt-legacy-util-1.1.1.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["11309"],"connection":["keep-alive"],"set-cookie":["__cfduid=d8ed73f7032d3c4f2f3fb0deda4c9d9b41540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f798f29aca-FRA"],"etag":["\"c1e746953a80315fa408555486272990\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 02:57:32 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/94/77/aecad0add90bb875616f50ed0d767dd5e187d8b81c5be67eb033b42e8d2f b/npm/.npm/_cacache/index-v5/94/77/aecad0add90bb875616f50ed0d767dd5e187d8b81c5be67eb033b42e8d2f new file mode 100644 index 0000000..32eacf4 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/94/77/aecad0add90bb875616f50ed0d767dd5e187d8b81c5be67eb033b42e8d2f @@ -0,0 +1,2 @@ + +ab74a54bc4250b42c434bdf2a9feed0f1dc23386 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/meow","integrity":"sha512-jGiHHMWzNdoE3yL2rrUo+ThEslmspelPdwEb4NebSrAh3xSMJMA2qafg+d6LfU1WVv5l8thvspasR93C884Xlw==","time":1540366552898,"size":9025,"metadata":{"url":"https://registry.npmjs.org/meow","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:52 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["9025"],"connection":["keep-alive"],"set-cookie":["__cfduid=d083fdb2433f56ba4f69a0fd933c1b47e1540366552; expires=Thu, 24-Oct-19 07:35:52 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4eb8e4bc305-FRA"],"etag":["\"b00eed3c35546276d83faab71a6949b4\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Thu, 18 Oct 2018 08:03:11 GMT"],"vary":["accept-encoding, accept"],"x-amz-meta-rev":["114-812d9bdb72526c9549c4ea363cdd33bc"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/94/c1/3b824cf5c0354e7c857c4299b32250b4b2a41e619d766df8fec568eb34ed b/npm/.npm/_cacache/index-v5/94/c1/3b824cf5c0354e7c857c4299b32250b4b2a41e619d766df8fec568eb34ed new file mode 100644 index 0000000..91bc843 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/94/c1/3b824cf5c0354e7c857c4299b32250b4b2a41e619d766df8fec568eb34ed @@ -0,0 +1,2 @@ + +af83d5a700c50e395ea8b33b44a58ddd8e120102 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz","integrity":"sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs=","time":1540366554977,"size":9640,"metadata":{"url":"https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:resolve@https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["9640"],"connection":["keep-alive"],"set-cookie":["__cfduid=d5d0c3f99159a053b861fa0a37bdca4e81540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f84d2fbf16-FRA"],"etag":["\"a456797891e5a1fa68386af76cd1b265\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 15:56:07 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/95/1a/cf14557fd52d92be61464776c1ddcbbd46cc424663e32e2084ae4c5d9bc6 b/npm/.npm/_cacache/index-v5/95/1a/cf14557fd52d92be61464776c1ddcbbd46cc424663e32e2084ae4c5d9bc6 new file mode 100644 index 0000000..f535708 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/95/1a/cf14557fd52d92be61464776c1ddcbbd46cc424663e32e2084ae4c5d9bc6 @@ -0,0 +1,2 @@ + +52cbb1f2683696f281117c9956f2eab7049dd7b8 {"key":"pacote:range-manifest:https://registry.npmjs.org/dateformat/-/dateformat-1.0.12.tgz:sha1-nxJLZ1lMk3/3BpMuSmQsyo27/uk=","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366552777,"size":1,"metadata":{"id":"dateformat@1.0.12","manifest":{"name":"dateformat","version":"1.0.12","engines":{"node":"*"},"dependencies":{"get-stdin":"^4.0.1","meow":"^3.3.0"},"optionalDependencies":{},"devDependencies":{"underscore":"1.7.0","mocha":"2.0.1"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/dateformat/-/dateformat-1.0.12.tgz","_integrity":"sha1-nxJLZ1lMk3/3BpMuSmQsyo27/uk=","_shasum":"9f124b67594c937ff706932e4a642cca8dbbfee9","_shrinkwrap":null,"bin":{"dateformat":"bin/cli.js"},"_id":"dateformat@1.0.12"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/95/78/3bfae590f509f8f0da9b20fb86f5b9d5865653c18f4960f9b17c312e7ba7 b/npm/.npm/_cacache/index-v5/95/78/3bfae590f509f8f0da9b20fb86f5b9d5865653c18f4960f9b17c312e7ba7 new file mode 100644 index 0000000..255a7e9 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/95/78/3bfae590f509f8f0da9b20fb86f5b9d5865653c18f4960f9b17c312e7ba7 @@ -0,0 +1,2 @@ + +f22850976976bcee4c8b1bcd209df7d0044c9acd {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz","integrity":"sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=","time":1540366554817,"size":1628,"metadata":{"url":"https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:is-utf8@https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["1628"],"connection":["keep-alive"],"set-cookie":["__cfduid=ddd183c0bafb27c5e300c64cce828e7281540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f69d6a9ad0-FRA"],"etag":["\"7c483523b33b0640efedcc6561c545e2\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 04:59:57 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/95/d7/7df96a2fefc730181d4524b5a68a3f836ce57277da8149748f86537dc55b b/npm/.npm/_cacache/index-v5/95/d7/7df96a2fefc730181d4524b5a68a3f836ce57277da8149748f86537dc55b new file mode 100644 index 0000000..4ebbceb --- /dev/null +++ b/npm/.npm/_cacache/index-v5/95/d7/7df96a2fefc730181d4524b5a68a3f836ce57277da8149748f86537dc55b @@ -0,0 +1,2 @@ + +09aad8dd0952d76d4137ebcd2988de1944d51145 {"key":"pacote:range-manifest:https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz:sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366553134,"size":1,"metadata":{"id":"validate-npm-package-license@3.0.4","manifest":{"name":"validate-npm-package-license","version":"3.0.4","dependencies":{"spdx-correct":"^3.0.0","spdx-expression-parse":"^3.0.0"},"optionalDependencies":{},"devDependencies":{"defence-cli":"^2.0.1","replace-require-self":"^1.0.0"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz","_integrity":"sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==","_shasum":"fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a","_shrinkwrap":null,"bin":null,"_id":"validate-npm-package-license@3.0.4"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/96/1d/1351d206d5c2f3b78184eef6a9d9024431971130295f6b08be547e1c09bf b/npm/.npm/_cacache/index-v5/96/1d/1351d206d5c2f3b78184eef6a9d9024431971130295f6b08be547e1c09bf new file mode 100644 index 0000000..5c8da0c --- /dev/null +++ b/npm/.npm/_cacache/index-v5/96/1d/1351d206d5c2f3b78184eef6a9d9024431971130295f6b08be547e1c09bf @@ -0,0 +1,2 @@ + +bd91d8c276c05b186734cea1cb0cbaf7afd51d11 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz","integrity":"sha1-DHlipq3vp7vUrDZkYKY4VSrhoKI=","time":1540366554959,"size":2117,"metadata":{"url":"https://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:strip-indent@https://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["2117"],"connection":["keep-alive"],"set-cookie":["__cfduid=d38a25c796fba0a6cd2497c5b40e7cdb71540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f81a4c6499-FRA"],"etag":["\"d7a9dcf1d9ba70fcd08441f58d3b7c13\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 18:26:03 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/96/8f/69c4d22dd4200d518a84c07a77eee9c21c0c4d1c1354f5cd6b1c8b99398c b/npm/.npm/_cacache/index-v5/96/8f/69c4d22dd4200d518a84c07a77eee9c21c0c4d1c1354f5cd6b1c8b99398c new file mode 100644 index 0000000..d8e8a8f --- /dev/null +++ b/npm/.npm/_cacache/index-v5/96/8f/69c4d22dd4200d518a84c07a77eee9c21c0c4d1c1354f5cd6b1c8b99398c @@ -0,0 +1,2 @@ + +a4db997a185453294d6a06b48ca8ad0476103515 {"key":"pacote:range-manifest:https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz:sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366553264,"size":1,"metadata":{"id":"find-up@1.1.2","manifest":{"name":"find-up","version":"1.1.2","engines":{"node":">=0.10.0"},"dependencies":{"path-exists":"^2.0.0","pinkie-promise":"^2.0.0"},"optionalDependencies":{},"devDependencies":{"ava":"*","tempfile":"^1.1.1","xo":"*"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz","_integrity":"sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=","_shasum":"6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f","_shrinkwrap":null,"bin":null,"_id":"find-up@1.1.2"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/98/2a/9969a2e7e5bda23e5e31127740543773cf780fa8dae3b4a4c488e3faf184 b/npm/.npm/_cacache/index-v5/98/2a/9969a2e7e5bda23e5e31127740543773cf780fa8dae3b4a4c488e3faf184 new file mode 100644 index 0000000..2a0ac0e --- /dev/null +++ b/npm/.npm/_cacache/index-v5/98/2a/9969a2e7e5bda23e5e31127740543773cf780fa8dae3b4a4c488e3faf184 @@ -0,0 +1,2 @@ + +9cb93f81af7e63c0b311309bfd098d87893d9435 {"key":"pacote:range-manifest:https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz:sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366553700,"size":1,"metadata":{"id":"number-is-nan@1.0.1","manifest":{"name":"number-is-nan","version":"1.0.1","engines":{"node":">=0.10.0"},"dependencies":{},"optionalDependencies":{},"devDependencies":{"ava":"*"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz","_integrity":"sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=","_shasum":"097b602b53422a522c1afb8790318336941a011d","_shrinkwrap":null,"bin":null,"_id":"number-is-nan@1.0.1"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/98/52/21b3ba08bcc303544aec4951cf9ab02db8da0a2a65ad8bfc711dab7ab0f3 b/npm/.npm/_cacache/index-v5/98/52/21b3ba08bcc303544aec4951cf9ab02db8da0a2a65ad8bfc711dab7ab0f3 new file mode 100644 index 0000000..18138e0 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/98/52/21b3ba08bcc303544aec4951cf9ab02db8da0a2a65ad8bfc711dab7ab0f3 @@ -0,0 +1,2 @@ + +421cd53f02c75f8da56c3189e006db3faf1f2782 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz","integrity":"sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8=","time":1540366554679,"size":1967,"metadata":{"url":"https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:camelcase@https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["1967"],"connection":["keep-alive"],"set-cookie":["__cfduid=d3571117028a618f068c81ce728e19c941540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f619f6972c-FRA"],"etag":["\"219dfe1eec3f9eaefff687dd09196776\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sat, 26 May 2018 19:19:00 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/98/b9/9df995206d9cde6b11eae3f75a7585ef70a0fba620ab0d8b0e9623ce5bbf b/npm/.npm/_cacache/index-v5/98/b9/9df995206d9cde6b11eae3f75a7585ef70a0fba620ab0d8b0e9623ce5bbf new file mode 100644 index 0000000..ac857b0 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/98/b9/9df995206d9cde6b11eae3f75a7585ef70a0fba620ab0d8b0e9623ce5bbf @@ -0,0 +1,2 @@ + +148248e4dd34d228bf7869a8c6fd19d17f6fbca3 {"key":"pacote:range-manifest:http://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz:sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366553007,"size":1,"metadata":{"id":"minimist@1.2.0","manifest":{"name":"minimist","version":"1.2.0","dependencies":{},"optionalDependencies":{},"devDependencies":{"covert":"^1.0.0","tap":"~0.4.0","tape":"^3.5.0"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"http://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz","_integrity":"sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=","_shasum":"a35008b20f41383eec1fb914f4cd5df79a264284","_shrinkwrap":null,"bin":null,"_id":"minimist@1.2.0"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/98/f9/ff47ba9ab2ebfb7cd755b4ed85f2ba38bebee0bdc01ef336460bc19214af b/npm/.npm/_cacache/index-v5/98/f9/ff47ba9ab2ebfb7cd755b4ed85f2ba38bebee0bdc01ef336460bc19214af new file mode 100644 index 0000000..85d613a --- /dev/null +++ b/npm/.npm/_cacache/index-v5/98/f9/ff47ba9ab2ebfb7cd755b4ed85f2ba38bebee0bdc01ef336460bc19214af @@ -0,0 +1,2 @@ + +5aef5dbc8400c9a5d7bd0ee0282e8b4003ca0a0a {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/which","integrity":"sha512-X24ZEPoOBMiOarbTw9FKv3c0K4gYytQLPHk9qpsmhhUXs+Xl+3TO8KTfu8ZHVjVAvo7Ldrrptwe3v2dJDPj2mw==","time":1540366554220,"size":10141,"metadata":{"url":"https://registry.npmjs.org/which","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["10141"],"connection":["keep-alive"],"set-cookie":["__cfduid=d73f41e2de42ab9ee857924620b161eaa1540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4f3bb4e975c-FRA"],"etag":["\"7118cedbd66ec56f652733f475d6a346\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Tue, 26 Jun 2018 21:47:06 GMT"],"vary":["accept-encoding, accept"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/99/2c/9bf4d51a710cdd02df3634dff88bb0edf84ef0048486b30421c6b5984683 b/npm/.npm/_cacache/index-v5/99/2c/9bf4d51a710cdd02df3634dff88bb0edf84ef0048486b30421c6b5984683 new file mode 100644 index 0000000..38be830 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/99/2c/9bf4d51a710cdd02df3634dff88bb0edf84ef0048486b30421c6b5984683 @@ -0,0 +1,2 @@ + +4bf965df45042093720312dae1f402ed38fe85ee {"key":"pacote:range-manifest:https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.1.tgz:sha1-Nr54Mgr+WAH2zqPueLblqrlA6gw=","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366554255,"size":1,"metadata":{"id":"sprintf-js@1.1.1","manifest":{"name":"sprintf-js","version":"1.1.1","dependencies":{},"optionalDependencies":{},"devDependencies":{"benchmark":"^2.1.4","eslint":"3.19.0","gulp":"^3.9.1","gulp-benchmark":"^1.1.1","gulp-eslint":"^3.0.1","gulp-header":"^1.8.8","gulp-mocha":"^4.3.1","gulp-rename":"^1.2.2","gulp-sourcemaps":"^2.6.0","gulp-uglify":"^3.0.0","mocha":"^3.4.2"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.1.tgz","_integrity":"sha1-Nr54Mgr+WAH2zqPueLblqrlA6gw=","_shasum":"36be78320afe5801f6cea3ee78b6e5aab940ea0c","_shrinkwrap":null,"bin":null,"_id":"sprintf-js@1.1.1"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/99/a9/8e746181ef13bc400da207da412881206f4d2004d75453373f6ee7b25ffa b/npm/.npm/_cacache/index-v5/99/a9/8e746181ef13bc400da207da412881206f4d2004d75453373f6ee7b25ffa new file mode 100644 index 0000000..ac2d87d --- /dev/null +++ b/npm/.npm/_cacache/index-v5/99/a9/8e746181ef13bc400da207da412881206f4d2004d75453373f6ee7b25ffa @@ -0,0 +1,2 @@ + +cfd3e90d11cbd8f44362f140a92f0e6e89ad3448 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz","integrity":"sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=","time":1540366554960,"size":3967,"metadata":{"url":"https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:signal-exit@https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["3967"],"connection":["keep-alive"],"set-cookie":["__cfduid=d2e1012549802f341c12faf47ff24aa141540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f838edc26f-FRA"],"etag":["\"2d22e0df3cbe7d0f55058ff48556034c\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 17:16:56 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/99/c2/9dc6c023b0d9b4465fcb1dd082fe8a925694f3c2e8d6499d5381a311df61 b/npm/.npm/_cacache/index-v5/99/c2/9dc6c023b0d9b4465fcb1dd082fe8a925694f3c2e8d6499d5381a311df61 new file mode 100644 index 0000000..395bf98 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/99/c2/9dc6c023b0d9b4465fcb1dd082fe8a925694f3c2e8d6499d5381a311df61 @@ -0,0 +1,2 @@ + +8441f1aa244f04240aef56c0a0565d36816f8386 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/load-json-file","integrity":"sha512-uRWtKFcpRNi5TzBqzpxsJe/DA3bg+2vnAfMkuXrogYWn8I7SSlk50E9BBFFA/oJM1A9Zz51XAUjsryiKZUjcOw==","time":1540366553362,"size":5367,"metadata":{"url":"https://registry.npmjs.org/load-json-file","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:53 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["5367"],"connection":["keep-alive"],"set-cookie":["__cfduid=d10f089ced22f3a39637cb092ae406a3f1540366553; expires=Thu, 24-Oct-19 07:35:53 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4ee6ab4c2ab-FRA"],"etag":["\"dc28cdc283e14c8d86331212e1f59ad4\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Tue, 18 Sep 2018 05:22:01 GMT"],"vary":["accept-encoding, accept"],"x-amz-meta-rev":["19-2d2fc06ac7576c6b6312302c24a01d49"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/99/e5/56f69c7bfd0eaa74a55621338bdc3a3bb83241af5c0665456051d5fdbd52 b/npm/.npm/_cacache/index-v5/99/e5/56f69c7bfd0eaa74a55621338bdc3a3bb83241af5c0665456051d5fdbd52 new file mode 100644 index 0000000..58e16b1 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/99/e5/56f69c7bfd0eaa74a55621338bdc3a3bb83241af5c0665456051d5fdbd52 @@ -0,0 +1,2 @@ + +9cb1ab53e78c518863080114d983c131209b3e1a {"key":"pacote:range-manifest:https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz:sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366553508,"size":1,"metadata":{"id":"error-ex@1.3.2","manifest":{"name":"error-ex","version":"1.3.2","dependencies":{"is-arrayish":"^0.2.1"},"optionalDependencies":{},"devDependencies":{"coffee-script":"^1.9.3","coveralls":"^2.11.2","istanbul":"^0.3.17","mocha":"^2.2.5","should":"^7.0.1","xo":"^0.7.1"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz","_integrity":"sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==","_shasum":"b4ac40648107fdcdcfae242f428bea8a14d4f1bf","_shrinkwrap":null,"bin":null,"_id":"error-ex@1.3.2"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/9a/93/52260200c1cfef9a01ef14c9d7c5572d5a36b8f84d841852d3b54b30fa3a b/npm/.npm/_cacache/index-v5/9a/93/52260200c1cfef9a01ef14c9d7c5572d5a36b8f84d841852d3b54b30fa3a new file mode 100644 index 0000000..8b3268c --- /dev/null +++ b/npm/.npm/_cacache/index-v5/9a/93/52260200c1cfef9a01ef14c9d7c5572d5a36b8f84d841852d3b54b30fa3a @@ -0,0 +1,2 @@ + +53a7af02f6c5572d0ca0e255817c3a0e323e1f82 {"key":"pacote:range-manifest:https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz:sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366554313,"size":1,"metadata":{"id":"safer-buffer@2.1.2","manifest":{"name":"safer-buffer","version":"2.1.2","dependencies":{},"optionalDependencies":{},"devDependencies":{"standard":"^11.0.1","tape":"^4.9.0"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz","_integrity":"sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==","_shasum":"44fa161b0187b9549dd84bb91802f9bd8385cd6a","_shrinkwrap":null,"bin":null,"_id":"safer-buffer@2.1.2"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/9a/fc/baddd71f459a50b3c710a007fa7d59fa62febef98033b7331374bf02db64 b/npm/.npm/_cacache/index-v5/9a/fc/baddd71f459a50b3c710a007fa7d59fa62febef98033b7331374bf02db64 new file mode 100644 index 0000000..fc19bcf --- /dev/null +++ b/npm/.npm/_cacache/index-v5/9a/fc/baddd71f459a50b3c710a007fa7d59fa62febef98033b7331374bf02db64 @@ -0,0 +1,2 @@ + +3f10ed8e9adb9b2022a762b76ecd673d030da0ac {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz","integrity":"sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=","time":1540366554811,"size":1578,"metadata":{"url":"https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:escape-string-regexp@https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["1578"],"connection":["keep-alive"],"set-cookie":["__cfduid=dff0d89327c6130cc1cad03f4809875e71540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f69cf4c2b5-FRA"],"etag":["\"02440084832abe665260d5db1da1dd9e\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sat, 26 May 2018 23:42:59 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/9b/b8/d45062af43674e433f967d20768d308ed6ce195be6acadfb7cfd21d11e67 b/npm/.npm/_cacache/index-v5/9b/b8/d45062af43674e433f967d20768d308ed6ce195be6acadfb7cfd21d11e67 new file mode 100644 index 0000000..6a0d5ea --- /dev/null +++ b/npm/.npm/_cacache/index-v5/9b/b8/d45062af43674e433f967d20768d308ed6ce195be6acadfb7cfd21d11e67 @@ -0,0 +1,2 @@ + +0b7da3ebc467771c9c828ce8c21a1d42acce3a54 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz","integrity":"sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=","time":1540366554937,"size":2041,"metadata":{"url":"https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:inflight@https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["2041"],"connection":["keep-alive"],"set-cookie":["__cfduid=dff0d89327c6130cc1cad03f4809875e71540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f7cf40c2b5-FRA"],"etag":["\"dd31215ede2e0da80f8e31c9f93d8ace\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 04:39:14 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/9c/b1/fff150691ce095677426e98bb894621ce4a88097d4b2c5c342224e1852ae b/npm/.npm/_cacache/index-v5/9c/b1/fff150691ce095677426e98bb894621ce4a88097d4b2c5c342224e1852ae new file mode 100644 index 0000000..b8a0938 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/9c/b1/fff150691ce095677426e98bb894621ce4a88097d4b2c5c342224e1852ae @@ -0,0 +1,2 @@ + +8197767ad9893e99f0f51c6ecce73517fd76157d {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz","integrity":"sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==","time":1540366554861,"size":185241,"metadata":{"url":"https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:iconv-lite@https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["185241"],"connection":["keep-alive"],"set-cookie":["__cfduid=d2cace63d1bde5dd0b76e714594e2e9ec1540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f74f9a9738-FRA"],"etag":["\"fd75d1bd67b550ece627b2ef307d775d\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Wed, 22 Aug 2018 20:23:17 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/9f/10/a9b11c13c250baab2ab8b3f4d3c741d0e99ba4f3b3f56060c4e8478082aa b/npm/.npm/_cacache/index-v5/9f/10/a9b11c13c250baab2ab8b3f4d3c741d0e99ba4f3b3f56060c4e8478082aa new file mode 100644 index 0000000..fab9c67 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/9f/10/a9b11c13c250baab2ab8b3f4d3c741d0e99ba4f3b3f56060c4e8478082aa @@ -0,0 +1,2 @@ + +362c0ad4c9cd57300bd9d971c556254fb6cac9d5 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/redent","integrity":"sha512-OPE2HQbdXLG/FMMA7EnjTTjKU5rLmn8GzvvQnkrWjxPO8GDozLFeSPuO3CuUONJkdPqw1lO8mE8RniW9zRV3Qg==","time":1540366552979,"size":784,"metadata":{"url":"https://registry.npmjs.org/redent","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:52 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["784"],"connection":["keep-alive"],"set-cookie":["__cfduid=d1d6eab0d2e22adc5e523253c58c0bf391540366552; expires=Thu, 24-Oct-19 07:35:52 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4ebebb8972c-FRA"],"etag":["\"b2858c2d491d33ac75c1ea9249f02996\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 15:32:21 GMT"],"vary":["accept-encoding, accept"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/a0/8a/b452b90c8641577a3b560e2794161524f57638a60f65bd5c5f503ea4b8cc b/npm/.npm/_cacache/index-v5/a0/8a/b452b90c8641577a3b560e2794161524f57638a60f65bd5c5f503ea4b8cc new file mode 100644 index 0000000..4859be6 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/a0/8a/b452b90c8641577a3b560e2794161524f57638a60f65bd5c5f503ea4b8cc @@ -0,0 +1,2 @@ + +09dff8407e1d61ba4ddc07f2a199fa0892e007f7 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/trim-newlines/-/trim-newlines-1.0.0.tgz","integrity":"sha1-WIeWa7WCpFA6QetST301ARgVphM=","time":1540366554953,"size":1610,"metadata":{"url":"https://registry.npmjs.org/trim-newlines/-/trim-newlines-1.0.0.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:trim-newlines@https://registry.npmjs.org/trim-newlines/-/trim-newlines-1.0.0.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["1610"],"connection":["keep-alive"],"set-cookie":["__cfduid=d5e261c8f8fb9a411f0fd8f9a054ada581540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f81fdbc29c-FRA"],"etag":["\"f2491c6545e9f7e2a4096606a53c7def\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 19:53:56 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/a1/ff/6532bc014331c9b572482a4bd805bf54a7ff8b4ca179b1c811aff3dec690 b/npm/.npm/_cacache/index-v5/a1/ff/6532bc014331c9b572482a4bd805bf54a7ff8b4ca179b1c811aff3dec690 new file mode 100644 index 0000000..8fee07b --- /dev/null +++ b/npm/.npm/_cacache/index-v5/a1/ff/6532bc014331c9b572482a4bd805bf54a7ff8b4ca179b1c811aff3dec690 @@ -0,0 +1,2 @@ + +8acfdf1b8c6e7a5c14ba9bfe649cbaddd6284d7d {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz","integrity":"sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==","time":1540366554808,"size":4239,"metadata":{"url":"https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:brace-expansion@https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["binary/octet-stream"],"content-length":["4239"],"connection":["keep-alive"],"set-cookie":["__cfduid=d52d463b52f27a85ec8ca1ec14882e7ad1540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f6982abec6-FRA"],"etag":["\"02822e3db48e8c5b844fa309fa2cc56b\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Tue, 05 Jun 2018 13:49:02 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/a2/34/4b7eed767e420f6102007df9ae620530526ee37b6f9ca252fa0fec5dbeff b/npm/.npm/_cacache/index-v5/a2/34/4b7eed767e420f6102007df9ae620530526ee37b6f9ca252fa0fec5dbeff new file mode 100644 index 0000000..874645b --- /dev/null +++ b/npm/.npm/_cacache/index-v5/a2/34/4b7eed767e420f6102007df9ae620530526ee37b6f9ca252fa0fec5dbeff @@ -0,0 +1,2 @@ + +dd9857b0cc3fa35610c92155fda2dd1ac03e06ba {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz","integrity":"sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=","time":1540366554953,"size":2072,"metadata":{"url":"https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:read-pkg-up@https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["2072"],"connection":["keep-alive"],"set-cookie":["__cfduid=dfe56e639af333dff84473326f1c9fbeb1540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f7fb14c283-FRA"],"etag":["\"02cc53c7512931912dcbdcd9c1d55265\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 15:26:34 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/a3/a5/81ae3a020d0ed386b5f75c4b70d3798066e80cd259666442eb0364025ac4 b/npm/.npm/_cacache/index-v5/a3/a5/81ae3a020d0ed386b5f75c4b70d3798066e80cd259666442eb0364025ac4 new file mode 100644 index 0000000..5c71c31 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/a3/a5/81ae3a020d0ed386b5f75c4b70d3798066e80cd259666442eb0364025ac4 @@ -0,0 +1,2 @@ + +86411c98157a4ed2bd297525bba168f512ac7fe1 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/rimraf","integrity":"sha512-sueQv3Lp1nEjt5T4fVinOE96vxtesswXLsMADEzAMKnsVUuOR13I8frV+Sq0pVmSV61IiKklCM1rEuvbYtABvQ==","time":1540366552829,"size":12512,"metadata":{"url":"https://registry.npmjs.org/rimraf","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:52 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["12512"],"connection":["keep-alive"],"set-cookie":["__cfduid=d51d9d34a4ef13b9708ef716fe5e340fb1540366552; expires=Thu, 24-Oct-19 07:35:52 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4eb1be8c2ab-FRA"],"etag":["\"74065ee370d504939d055dd05678e600\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Wed, 29 Aug 2018 02:22:40 GMT"],"vary":["accept-encoding, accept"],"x-amz-meta-rev":["448-ae433336ff49fa2b1970ac91827c0643"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/a4/4a/eab00a995f40a39b270b439e6904a04be7a1a58119acf4d088978cd35470 b/npm/.npm/_cacache/index-v5/a4/4a/eab00a995f40a39b270b439e6904a04be7a1a58119acf4d088978cd35470 new file mode 100644 index 0000000..22e81a6 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/a4/4a/eab00a995f40a39b270b439e6904a04be7a1a58119acf4d088978cd35470 @@ -0,0 +1,2 @@ + +8136de74130b93b2a4699880900c449a8903882e {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz","integrity":"sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E=","time":1540366554679,"size":1685,"metadata":{"url":"https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:array-find-index@https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["1685"],"connection":["keep-alive"],"set-cookie":["__cfduid=d9869d033067b7009920f4fd40f223fae1540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f61b72c305-FRA"],"etag":["\"32a8721a9617cd4e6198101821b0c823\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sat, 26 May 2018 17:22:03 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/a5/17/6717c7e0b649c630900e7959acdbec30c6dbb3e42f96de273d0a228d30ee b/npm/.npm/_cacache/index-v5/a5/17/6717c7e0b649c630900e7959acdbec30c6dbb3e42f96de273d0a228d30ee new file mode 100644 index 0000000..54943e3 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/a5/17/6717c7e0b649c630900e7959acdbec30c6dbb3e42f96de273d0a228d30ee @@ -0,0 +1,2 @@ + +bb8549f8bcae56f9f48514b79fddf3a674b61296 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz","integrity":"sha512-Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg==","time":1540366554964,"size":4460,"metadata":{"url":"https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:spdx-expression-parse@https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["4460"],"connection":["keep-alive"],"set-cookie":["__cfduid=d3571117028a618f068c81ce728e19c941540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f81b5d972c-FRA"],"etag":["\"c114b2b4eab7f0338e597c9fb885ae5c\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 17:57:29 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/a5/8c/414f13db4c48261f34a612171fb2dbf6f8038922a14f185c0e5bf158e277 b/npm/.npm/_cacache/index-v5/a5/8c/414f13db4c48261f34a612171fb2dbf6f8038922a14f185c0e5bf158e277 new file mode 100644 index 0000000..cf7816c --- /dev/null +++ b/npm/.npm/_cacache/index-v5/a5/8c/414f13db4c48261f34a612171fb2dbf6f8038922a14f185c0e5bf158e277 @@ -0,0 +1,2 @@ + +19445950decbc63975573874544507a511c03391 {"key":"pacote:range-manifest:https://registry.npmjs.org/findup-sync/-/findup-sync-0.3.0.tgz:sha1-N5MKpdgWt3fANEXhlmzGeQpMCxY=","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366552777,"size":1,"metadata":{"id":"findup-sync@0.3.0","manifest":{"name":"findup-sync","version":"0.3.0","engines":{"node":">= 0.6.0"},"dependencies":{"glob":"~5.0.0"},"optionalDependencies":{},"devDependencies":{"grunt":"~0.4.4","grunt-contrib-jshint":"~0.9.2","grunt-contrib-nodeunit":"~0.3.3"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/findup-sync/-/findup-sync-0.3.0.tgz","_integrity":"sha1-N5MKpdgWt3fANEXhlmzGeQpMCxY=","_shasum":"37930aa5d816b777c03445e1966cc6790a4c0b16","_shrinkwrap":null,"bin":null,"_id":"findup-sync@0.3.0"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/a7/01/86c3c02f7e71c116090f7c976842706fbb58a5da57984fa6956cb4f3198e b/npm/.npm/_cacache/index-v5/a7/01/86c3c02f7e71c116090f7c976842706fbb58a5da57984fa6956cb4f3198e new file mode 100644 index 0000000..48b47ac --- /dev/null +++ b/npm/.npm/_cacache/index-v5/a7/01/86c3c02f7e71c116090f7c976842706fbb58a5da57984fa6956cb4f3198e @@ -0,0 +1,2 @@ + +db15303da60100150c9fc5bb2eaa012f80d27369 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.7.1.tgz","integrity":"sha512-7T/BxH19zbcCTa8XkMlbK5lTo1WtgkFi3GvdWEyNuc4Vex7/9Dqbnpsf4JMydcfj9HCg4zUWFTL3Za6lapg5/w==","time":1540366554803,"size":6427,"metadata":{"url":"https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.7.1.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:hosted-git-info@https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.7.1.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["6427"],"connection":["keep-alive"],"set-cookie":["__cfduid=d1e30761586934ebe9a214d9ae7797ade1540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f69e3896b8-FRA"],"etag":["\"9cdb1257b29c6d0ab393e69ecb390b0e\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sat, 07 Jul 2018 01:02:52 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/a7/1a/969cb0bf7534a6ff7074a4470b0875249377d1b96e9526dd7fbd5dd5122d b/npm/.npm/_cacache/index-v5/a7/1a/969cb0bf7534a6ff7074a4470b0875249377d1b96e9526dd7fbd5dd5122d new file mode 100644 index 0000000..50cc027 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/a7/1a/969cb0bf7534a6ff7074a4470b0875249377d1b96e9526dd7fbd5dd5122d @@ -0,0 +1,2 @@ + +dddc86e97bebec33cbad047a4a4ea72d965dddae {"key":"pacote:range-manifest:https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.7.1.tgz:sha512-7T/BxH19zbcCTa8XkMlbK5lTo1WtgkFi3GvdWEyNuc4Vex7/9Dqbnpsf4JMydcfj9HCg4zUWFTL3Za6lapg5/w==","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366553134,"size":1,"metadata":{"id":"hosted-git-info@2.7.1","manifest":{"name":"hosted-git-info","version":"2.7.1","dependencies":{},"optionalDependencies":{},"devDependencies":{"standard":"^11.0.1","standard-version":"^4.3.0","tap":"^12.0.1"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.7.1.tgz","_integrity":"sha512-7T/BxH19zbcCTa8XkMlbK5lTo1WtgkFi3GvdWEyNuc4Vex7/9Dqbnpsf4JMydcfj9HCg4zUWFTL3Za6lapg5/w==","_shasum":"97f236977bd6e125408930ff6de3eec6281ec047","_shrinkwrap":null,"bin":null,"_id":"hosted-git-info@2.7.1"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/a7/d2/6f63d12a5c0d995017191fa7940d236e1b4737219b5240857157a3ce6aff b/npm/.npm/_cacache/index-v5/a7/d2/6f63d12a5c0d995017191fa7940d236e1b4737219b5240857157a3ce6aff new file mode 100644 index 0000000..2db2437 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/a7/d2/6f63d12a5c0d995017191fa7940d236e1b4737219b5240857157a3ce6aff @@ -0,0 +1,2 @@ + +d34c6c224ed4c6e2f502b98cd2c832e9b1dfecb2 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/coffeescript/-/coffeescript-1.10.0.tgz","integrity":"sha1-56qDAZF+9iGzXYo580jc3R234z4=","time":1540366552770,"size":70633,"metadata":{"url":"https://registry.npmjs.org/coffeescript/-/coffeescript-1.10.0.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:coffeescript@https://registry.npmjs.org/coffeescript/-/coffeescript-1.10.0.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:52 GMT"],"content-type":["application/octet-stream"],"content-length":["70633"],"connection":["keep-alive"],"set-cookie":["__cfduid=d51d9d34a4ef13b9708ef716fe5e340fb1540366552; expires=Thu, 24-Oct-19 07:35:52 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4ea9affc2ab-FRA"],"etag":["\"79c2c0a8b000b581ee32932b661665cb\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sat, 26 May 2018 20:14:57 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/a7/db/b977fe451f2c53183cd056a68a9cc6e6f1fbd54d41eea108608fcc027bc2 b/npm/.npm/_cacache/index-v5/a7/db/b977fe451f2c53183cd056a68a9cc6e6f1fbd54d41eea108608fcc027bc2 new file mode 100644 index 0000000..49db841 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/a7/db/b977fe451f2c53183cd056a68a9cc6e6f1fbd54d41eea108608fcc027bc2 @@ -0,0 +1,2 @@ + +854d9c669dd1f89f4ce2162096ca1a4aaa5a3acf {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz","integrity":"sha1-clVrgM+g1IqXToDnckjoDtT3+HA=","time":1540366554803,"size":3935,"metadata":{"url":"https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:pinkie@https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["3935"],"connection":["keep-alive"],"set-cookie":["__cfduid=dd5f065bb2930ab9f1d5e74acc6c77a3a1540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f6ad38c2ba-FRA"],"etag":["\"41b57c993d8571d9211d5b6c1c75ba7b\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 12:18:14 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/aa/9b/8b6d9e0f45dde1c6af2a4fc211f9b3a74f14041dc04a8a20490a478660b2 b/npm/.npm/_cacache/index-v5/aa/9b/8b6d9e0f45dde1c6af2a4fc211f9b3a74f14041dc04a8a20490a478660b2 new file mode 100644 index 0000000..1665bef --- /dev/null +++ b/npm/.npm/_cacache/index-v5/aa/9b/8b6d9e0f45dde1c6af2a4fc211f9b3a74f14041dc04a8a20490a478660b2 @@ -0,0 +1,2 @@ + +2d0b2caa2a29b1ecda0c76b40f19993a9867878e {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz","integrity":"sha1-ibTRmasr7kneFk6gK4nORi1xt2c=","time":1540366554703,"size":2566,"metadata":{"url":"https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:balanced-match@https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["2566"],"connection":["keep-alive"],"set-cookie":["__cfduid=d95ea88f44a652b9813abc16a7de3dbcd1540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f61ef697da-FRA"],"etag":["\"83d3f9f047e9700f6c4ac4028c4c5c53\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sat, 26 May 2018 18:06:43 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/ab/11/786d144223e2e9f9b916cd3343e1ca6230edf9bb8d009afcd390842d613a b/npm/.npm/_cacache/index-v5/ab/11/786d144223e2e9f9b916cd3343e1ca6230edf9bb8d009afcd390842d613a new file mode 100644 index 0000000..9beaa30 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/ab/11/786d144223e2e9f9b916cd3343e1ca6230edf9bb8d009afcd390842d613a @@ -0,0 +1,2 @@ + +29756a5bbb6fe85940d9577af75975f3af38096f {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz","integrity":"sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=","time":1540366554982,"size":1798,"metadata":{"url":"https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:path-type@https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["1798"],"connection":["keep-alive"],"set-cookie":["__cfduid=d29702b643def93355e766461895e97631540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f86fb064a5-FRA"],"etag":["\"e14c138690b623db36532ff609b81b08\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 11:56:56 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/ab/a3/6abc84291759cb5b5ed9f06186f33ea909a68cd960206d57e16032623327 b/npm/.npm/_cacache/index-v5/ab/a3/6abc84291759cb5b5ed9f06186f33ea909a68cd960206d57e16032623327 new file mode 100644 index 0000000..8fcd332 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/ab/a3/6abc84291759cb5b5ed9f06186f33ea909a68cd960206d57e16032623327 @@ -0,0 +1,2 @@ + +e65f2955ae6cf37113d7e40a2605ff3f91340328 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/util-deprecate","integrity":"sha512-wRkKmo0mmpp1b0ID8cILCdB/W+QunUY5vEV3XHViGyaJuWDMGjBD/paBv9benCNg4Ly+x1NhzONgWYUI9htOxQ==","time":1540366554261,"size":809,"metadata":{"url":"https://registry.npmjs.org/util-deprecate","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["809"],"connection":["keep-alive"],"set-cookie":["__cfduid=d95ea88f44a652b9813abc16a7de3dbcd1540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4f40dd197da-FRA"],"etag":["\"c42b8bc286f92a4e6d7fc48a6dd6f182\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 20:38:18 GMT"],"vary":["accept-encoding, accept"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/ac/4c/71e880f5d5c742e0e3807e7f3c398e920dd019bbf723586f0a7342715580 b/npm/.npm/_cacache/index-v5/ac/4c/71e880f5d5c742e0e3807e7f3c398e920dd019bbf723586f0a7342715580 new file mode 100644 index 0000000..332c695 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/ac/4c/71e880f5d5c742e0e3807e7f3c398e920dd019bbf723586f0a7342715580 @@ -0,0 +1,2 @@ + +333d3e6b6e4fd1e3f2e40e7248be822ba7bc41fe {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz","integrity":"sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==","time":1540366554951,"size":3067,"metadata":{"url":"https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:supports-color@https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["3067"],"connection":["keep-alive"],"set-cookie":["__cfduid=d5caf33469da280b991841a330d9e37a61540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f809e86355-FRA"],"etag":["\"17b1003344e0e0d2719205be85946698\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Mon, 20 Aug 2018 04:37:41 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/ac/ba/f22fa31b850d07f8d92263849db0d7019715081c71c9f9d45d4e901eec73 b/npm/.npm/_cacache/index-v5/ac/ba/f22fa31b850d07f8d92263849db0d7019715081c71c9f9d45d4e901eec73 new file mode 100644 index 0000000..5514a7b --- /dev/null +++ b/npm/.npm/_cacache/index-v5/ac/ba/f22fa31b850d07f8d92263849db0d7019715081c71c9f9d45d4e901eec73 @@ -0,0 +1,2 @@ + +a41cda0b5e53a317b33f2bfdbdebb7deeab290ba {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/lodash","integrity":"sha512-iKoU3/OrTO/BkUHbW9n9W/mHQywsg6fC50K6brWzyvePC/kEHFwI2G9QkpFYAZW0iEGYVU3+y3ixs26ZkacufQ==","time":1540366554019,"size":25583,"metadata":{"url":"https://registry.npmjs.org/lodash","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["25583"],"connection":["keep-alive"],"set-cookie":["__cfduid=d10f089ced22f3a39637cb092ae406a3f1540366553; expires=Thu, 24-Oct-19 07:35:53 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4f27a9dc2ab-FRA"],"etag":["\"5422884dca3ea2e4edb381e3690ea8e7\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Mon, 22 Oct 2018 15:56:14 GMT"],"vary":["accept-encoding, accept"],"x-amz-meta-rev":["2456-199aea805b297f9fa99db8c258c2d3c8"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/ad/57/7ca6d392c6ab89683c4e748a1e346caa3442eac25da32e76ff7464a315c2 b/npm/.npm/_cacache/index-v5/ad/57/7ca6d392c6ab89683c4e748a1e346caa3442eac25da32e76ff7464a315c2 new file mode 100644 index 0000000..17f576c --- /dev/null +++ b/npm/.npm/_cacache/index-v5/ad/57/7ca6d392c6ab89683c4e748a1e346caa3442eac25da32e76ff7464a315c2 @@ -0,0 +1,2 @@ + +d6b809295ba8acfc9f3120444858c685a0174d63 {"key":"pacote:range-manifest:https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz:sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366553569,"size":1,"metadata":{"id":"is-utf8@0.2.1","manifest":{"name":"is-utf8","version":"0.2.1","dependencies":{},"optionalDependencies":{},"devDependencies":{},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz","_integrity":"sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=","_shasum":"4b0da1442104d1b336340e80797e865cf39f7d72","_shrinkwrap":null,"bin":null,"_id":"is-utf8@0.2.1"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/b0/05/26e07e6d729fc135bf35f3205b1119ba1cec7b23ab0618776b036f464683 b/npm/.npm/_cacache/index-v5/b0/05/26e07e6d729fc135bf35f3205b1119ba1cec7b23ab0618776b036f464683 new file mode 100644 index 0000000..ebf8f19 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/b0/05/26e07e6d729fc135bf35f3205b1119ba1cec7b23ab0618776b036f464683 @@ -0,0 +1,2 @@ + +7ea0b9c055a0afaaf36f6b315c3562e0c0e21a0f {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/wrappy","integrity":"sha512-qDxHWn6od5exJwtQHqUHqrbE3kV3vnEW9VhVUKSo1IU6Zn9eZi+o1yv2Y6yiwmjegemFh9pQ9kRJGk4DXt+pUg==","time":1540366553780,"size":929,"metadata":{"url":"https://registry.npmjs.org/wrappy","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:53 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["929"],"connection":["keep-alive"],"set-cookie":["__cfduid=d10f089ced22f3a39637cb092ae406a3f1540366553; expires=Thu, 24-Oct-19 07:35:53 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4f10fa0c2ab-FRA"],"etag":["\"0afef45e426827ff756c98a7cb6e001f\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 22:18:40 GMT"],"vary":["accept-encoding, accept"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/b1/cd/31cd49632059fd2c007f32608caf29ebe32b533478261667d35f71dee110 b/npm/.npm/_cacache/index-v5/b1/cd/31cd49632059fd2c007f32608caf29ebe32b533478261667d35f71dee110 new file mode 100644 index 0000000..d58e721 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/b1/cd/31cd49632059fd2c007f32608caf29ebe32b533478261667d35f71dee110 @@ -0,0 +1,2 @@ + +30a451bbe5ad807e4f8bf987b605912452ba58f1 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/read-pkg","integrity":"sha512-lwVzBtallqniYL17m4smRFUC3SB7xcu52lWyCTV0TF1H1KruXT3sadBhMlTYIjqO/BlLlGjSNBEBPic4Lgc7mg==","time":1540366553254,"size":3440,"metadata":{"url":"https://registry.npmjs.org/read-pkg","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:53 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["3440"],"connection":["keep-alive"],"set-cookie":["__cfduid=d162071ff706d63145bc32a7d93535d5f1540366553; expires=Thu, 24-Oct-19 07:35:53 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4edb8f09726-FRA"],"etag":["\"f2d7c3d6960bcdc3c45a3c7b70c21355\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Tue, 26 Jun 2018 04:11:00 GMT"],"vary":["accept-encoding, accept"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/b3/e3/591dea1ccbbe3794eb214fa459a5d15c2c01aba7b392a8694346ebee879c b/npm/.npm/_cacache/index-v5/b3/e3/591dea1ccbbe3794eb214fa459a5d15c2c01aba7b392a8694346ebee879c new file mode 100644 index 0000000..1792b9a --- /dev/null +++ b/npm/.npm/_cacache/index-v5/b3/e3/591dea1ccbbe3794eb214fa459a5d15c2c01aba7b392a8694346ebee879c @@ -0,0 +1,2 @@ + +3ee7300e0ba781d6598632eab42f5ee51fc00a9f {"key":"pacote:range-manifest:http://registry.npmjs.org/meow/-/meow-3.7.0.tgz:sha1-cstmi0JSKCkKu/qFaJJYcwioAfs=","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366552926,"size":1,"metadata":{"id":"meow@3.7.0","manifest":{"name":"meow","version":"3.7.0","engines":{"node":">=0.10.0"},"dependencies":{"camelcase-keys":"^2.0.0","decamelize":"^1.1.2","loud-rejection":"^1.0.0","map-obj":"^1.0.1","minimist":"^1.1.3","normalize-package-data":"^2.3.4","object-assign":"^4.0.1","read-pkg-up":"^1.0.1","redent":"^1.0.0","trim-newlines":"^1.0.0"},"optionalDependencies":{},"devDependencies":{"ava":"*","execa":"^0.1.1","indent-string":"^2.1.0","xo":"*"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"http://registry.npmjs.org/meow/-/meow-3.7.0.tgz","_integrity":"sha1-cstmi0JSKCkKu/qFaJJYcwioAfs=","_shasum":"72cb668b425228290abbfa856892587308a801fb","_shrinkwrap":null,"bin":null,"_id":"meow@3.7.0"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/b6/63/4bad0120b47a53e2e3f34b8782bb471614b0dac63d941194764a42eeeefe b/npm/.npm/_cacache/index-v5/b6/63/4bad0120b47a53e2e3f34b8782bb471614b0dac63d941194764a42eeeefe new file mode 100644 index 0000000..81b0c3e --- /dev/null +++ b/npm/.npm/_cacache/index-v5/b6/63/4bad0120b47a53e2e3f34b8782bb471614b0dac63d941194764a42eeeefe @@ -0,0 +1,2 @@ + +aa8fbbab1973f3315f227ba8c0b106b2ac75225d {"key":"pacote:tag-manifest:https://registry.npmjs.org/grunt/-/grunt-1.0.3.tgz:sha512-/JzmZNPfKorlCrrmxWqQO4JVodO+DVd5XX4DkocL/1WlLlKVLE9+SdEIempOAxDhWPysLle6afvn/hg7Ck2k9g==","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366552683,"size":1,"metadata":{"id":"grunt@1.0.3","manifest":{"name":"grunt","version":"1.0.3","engines":{"node":">=0.10.0"},"dependencies":{"coffeescript":"~1.10.0","dateformat":"~1.0.12","eventemitter2":"~0.4.13","exit":"~0.1.1","findup-sync":"~0.3.0","glob":"~7.0.0","grunt-cli":"~1.2.0","grunt-known-options":"~1.1.0","grunt-legacy-log":"~2.0.0","grunt-legacy-util":"~1.1.1","iconv-lite":"~0.4.13","js-yaml":"~3.5.2","minimatch":"~3.0.2","mkdirp":"~0.5.1","nopt":"~3.0.6","path-is-absolute":"~1.0.0","rimraf":"~2.6.2"},"optionalDependencies":{},"devDependencies":{"difflet":"~1.0.1","eslint-config-grunt":"~1.0.1","grunt-contrib-nodeunit":"~2.0.0","grunt-contrib-watch":"~1.1.0","grunt-eslint":"~18.1.0","temporary":"~0.0.4","through2":"~2.0.0"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/grunt/-/grunt-1.0.3.tgz","_integrity":"sha512-/JzmZNPfKorlCrrmxWqQO4JVodO+DVd5XX4DkocL/1WlLlKVLE9+SdEIempOAxDhWPysLle6afvn/hg7Ck2k9g==","_shasum":"b3c99260c51d1b42835766e796527b60f7bba374","_shrinkwrap":null,"bin":{"grunt":"bin/grunt"},"_id":"grunt@1.0.3"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/b6/9f/b9d8007b2251bef08cec2baa8b268b5870fa9011eeaa3743acb14543da0b b/npm/.npm/_cacache/index-v5/b6/9f/b9d8007b2251bef08cec2baa8b268b5870fa9011eeaa3743acb14543da0b new file mode 100644 index 0000000..4683309 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/b6/9f/b9d8007b2251bef08cec2baa8b268b5870fa9011eeaa3743acb14543da0b @@ -0,0 +1,2 @@ + +4076b15316e37d99218dacb25a55eaa23043d5e8 {"key":"pacote:range-manifest:https://registry.npmjs.org/grunt-legacy-log/-/grunt-legacy-log-2.0.0.tgz:sha512-1m3+5QvDYfR1ltr8hjiaiNjddxGdQWcH0rw1iKKiQnF0+xtgTazirSTGu68RchPyh1OBng1bBUjLmX8q9NpoCw==","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366552777,"size":1,"metadata":{"id":"grunt-legacy-log@2.0.0","manifest":{"name":"grunt-legacy-log","version":"2.0.0","engines":{"node":">= 0.10.0"},"dependencies":{"colors":"~1.1.2","grunt-legacy-log-utils":"~2.0.0","hooker":"~0.2.3","lodash":"~4.17.5"},"optionalDependencies":{},"devDependencies":{"grunt":"^1.0.1","grunt-cli":"^1.2.0","grunt-contrib-jshint":"^1.0.0","grunt-contrib-nodeunit":"^2.0.0","grunt-contrib-watch":"^1.0.0"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/grunt-legacy-log/-/grunt-legacy-log-2.0.0.tgz","_integrity":"sha512-1m3+5QvDYfR1ltr8hjiaiNjddxGdQWcH0rw1iKKiQnF0+xtgTazirSTGu68RchPyh1OBng1bBUjLmX8q9NpoCw==","_shasum":"c8cd2c6c81a4465b9bbf2d874d963fef7a59ffb9","_shrinkwrap":null,"bin":null,"_id":"grunt-legacy-log@2.0.0"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/b7/8a/c06c6adca970dbcb5dd8554dbc0eebbe67b3c097d9f5cc963ed615e4c544 b/npm/.npm/_cacache/index-v5/b7/8a/c06c6adca970dbcb5dd8554dbc0eebbe67b3c097d9f5cc963ed615e4c544 new file mode 100644 index 0000000..2eb52f1 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/b7/8a/c06c6adca970dbcb5dd8554dbc0eebbe67b3c097d9f5cc963ed615e4c544 @@ -0,0 +1,2 @@ + +e7eac06a87bd405accadb56e2d0a4add65161c1f {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/getobject","integrity":"sha512-iwAR/XqxMfHdfReymDekjOjc9bbtCm/GvTJGvysuvxeszqDQ8XuHhlvvDqMk2Pr/WOPeUIV62Gp0uAAvIGIzbQ==","time":1540366554210,"size":485,"metadata":{"url":"https://registry.npmjs.org/getobject","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["485"],"connection":["keep-alive"],"set-cookie":["__cfduid=d03a71f0c2920c45343a559974cc820751540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4f3bf1cc2a6-FRA"],"etag":["\"5007d5ef1f29e6059639751be3543063\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 02:12:26 GMT"],"vary":["accept-encoding, accept"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/b8/cb/b15ab5207951d81b92fe468b6bf0678d17319d77502d968ff25df93a32a5 b/npm/.npm/_cacache/index-v5/b8/cb/b15ab5207951d81b92fe468b6bf0678d17319d77502d968ff25df93a32a5 new file mode 100644 index 0000000..0c07416 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/b8/cb/b15ab5207951d81b92fe468b6bf0678d17319d77502d968ff25df93a32a5 @@ -0,0 +1,2 @@ + +f15a5f9a8664db64eccfab8d5649ee7f19ded2ac {"key":"pacote:range-manifest:https://registry.npmjs.org/getobject/-/getobject-0.1.0.tgz:sha1-BHpEl4n6Fg0Bj1SG7ZEyC27HiFw=","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366554213,"size":1,"metadata":{"id":"getobject@0.1.0","manifest":{"name":"getobject","version":"0.1.0","engines":{"node":">= 0.8.0"},"dependencies":{},"optionalDependencies":{},"devDependencies":{"grunt-contrib-jshint":"~0.1.1","grunt-contrib-nodeunit":"~0.1.2","grunt-contrib-watch":"~0.2.0","grunt":"~0.4.1"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/getobject/-/getobject-0.1.0.tgz","_integrity":"sha1-BHpEl4n6Fg0Bj1SG7ZEyC27HiFw=","_shasum":"047a449789fa160d018f5486ed91320b6ec7885c","_shrinkwrap":null,"bin":null,"_id":"getobject@0.1.0"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/ba/37/d72f83b15ead23084dc51dbe988c5c1e9f43188f71c6285150f1362edb41 b/npm/.npm/_cacache/index-v5/ba/37/d72f83b15ead23084dc51dbe988c5c1e9f43188f71c6285150f1362edb41 new file mode 100644 index 0000000..c75e60b --- /dev/null +++ b/npm/.npm/_cacache/index-v5/ba/37/d72f83b15ead23084dc51dbe988c5c1e9f43188f71c6285150f1362edb41 @@ -0,0 +1,2 @@ + +3c4d91ecc3e0277f5ce8a95cdbeab88026418c65 {"key":"pacote:range-manifest:https://registry.npmjs.org/js-yaml/-/js-yaml-3.5.5.tgz:sha1-A3fDgBfKvHMisNH7zSWkkWQfL74=","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366552821,"size":1,"metadata":{"id":"js-yaml@3.5.5","manifest":{"name":"js-yaml","version":"3.5.5","dependencies":{"argparse":"^1.0.2","esprima":"^2.6.0"},"optionalDependencies":{},"devDependencies":{"ansi":"*","benchmark":"*","browserify":"^13.0.0","codemirror":"^5.10.0","eslint":"^2.0.0-rc.1","istanbul":"*","mocha":"*","uglify-js":"^2.6.1"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/js-yaml/-/js-yaml-3.5.5.tgz","_integrity":"sha1-A3fDgBfKvHMisNH7zSWkkWQfL74=","_shasum":"0377c38017cabc7322b0d1fbcd25a491641f2fbe","_shrinkwrap":null,"bin":{"js-yaml":"bin/js-yaml.js"},"_id":"js-yaml@3.5.5"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/ba/e3/efcefe4cb28e81a51233b1590fa3980c105563f8958ec8edb9f4b32e5a33 b/npm/.npm/_cacache/index-v5/ba/e3/efcefe4cb28e81a51233b1590fa3980c105563f8958ec8edb9f4b32e5a33 new file mode 100644 index 0000000..4b10ffb --- /dev/null +++ b/npm/.npm/_cacache/index-v5/ba/e3/efcefe4cb28e81a51233b1590fa3980c105563f8958ec8edb9f4b32e5a33 @@ -0,0 +1,2 @@ + +4160e3e1ba292362bb611a381a83d64eabe245a0 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/grunt/-/grunt-1.0.3.tgz","integrity":"sha512-/JzmZNPfKorlCrrmxWqQO4JVodO+DVd5XX4DkocL/1WlLlKVLE9+SdEIempOAxDhWPysLle6afvn/hg7Ck2k9g==","time":1540366554829,"size":22836,"metadata":{"url":"https://registry.npmjs.org/grunt/-/grunt-1.0.3.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:grunt@https://registry.npmjs.org/grunt/-/grunt-1.0.3.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["22836"],"connection":["keep-alive"],"set-cookie":["__cfduid=d1be73ae2b1dc0b01b9c543ab79043d521540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f6fbefc2ab-FRA"],"etag":["\"b4d6f565d8c50df2a6e00fb162a511b5\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Mon, 04 Jun 2018 00:25:16 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/bc/04/99a8986b7d29b0f613fb3d1285f0acee39ae9dfbd0d54451ab1d15cb77b8 b/npm/.npm/_cacache/index-v5/bc/04/99a8986b7d29b0f613fb3d1285f0acee39ae9dfbd0d54451ab1d15cb77b8 new file mode 100644 index 0000000..70cdd00 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/bc/04/99a8986b7d29b0f613fb3d1285f0acee39ae9dfbd0d54451ab1d15cb77b8 @@ -0,0 +1,2 @@ + +dd2a15376df0e7246e36812e01eced725154109c {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/grunt-legacy-log-utils","integrity":"sha512-hoga4juhrLL7wsmM+FXQ3+1mbZvJBduKBT1daei8kjuQ7weX/O2heQPpC55DgJbP0IZczDxDDkgVCUpmM7PR8A==","time":1540366554018,"size":4753,"metadata":{"url":"https://registry.npmjs.org/grunt-legacy-log-utils","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["4753"],"connection":["keep-alive"],"set-cookie":["__cfduid=dc5fb3f0ece7d1c527a0bd46eeb0ffd731540366553; expires=Thu, 24-Oct-19 07:35:53 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4f27eb164c9-FRA"],"etag":["\"6f69c57a3ac85a1eb7fc77c9540068f7\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 02:57:31 GMT"],"vary":["accept-encoding, accept"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/bc/37/002495ce268779c00c01aec8ee7cf93a0133a1284a2238cd7e0de8ed14d2 b/npm/.npm/_cacache/index-v5/bc/37/002495ce268779c00c01aec8ee7cf93a0133a1284a2238cd7e0de8ed14d2 new file mode 100644 index 0000000..486e170 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/bc/37/002495ce268779c00c01aec8ee7cf93a0133a1284a2238cd7e0de8ed14d2 @@ -0,0 +1,2 @@ + +bfbb63e679cfeae3c286eadb9a72ffdbc02d058d {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz","integrity":"sha1-ji1INIdCEhtKghi3oTfppSBJ3IA=","time":1540366554979,"size":1759,"metadata":{"url":"https://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:indent-string@https://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["1759"],"connection":["keep-alive"],"set-cookie":["__cfduid=d78a8c830593e44627c2c74d6509e5f9b1540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f8599abf02-FRA"],"etag":["\"1afab9a67a328c6addbac5953be670f8\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 04:36:54 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/bd/07/97f654ce9a98cf6335c8a28e21fc1cb4a19f995734c6c633a5384a30c288 b/npm/.npm/_cacache/index-v5/bd/07/97f654ce9a98cf6335c8a28e21fc1cb4a19f995734c6c633a5384a30c288 new file mode 100644 index 0000000..e9de19a --- /dev/null +++ b/npm/.npm/_cacache/index-v5/bd/07/97f654ce9a98cf6335c8a28e21fc1cb4a19f995734c6c633a5384a30c288 @@ -0,0 +1,2 @@ + +ad260033d55332f14ce73635ed84a7ba9e2df674 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.4.0.tgz","integrity":"sha512-9jjUFbTPfEy3R/ad/2oNbKtW9Hgovl5O1FvFWKkKblNXoN/Oou6+9+KKohPK13Yc3/TyunyWhJp6gvRNR/PPAw==","time":1540366554947,"size":8671,"metadata":{"url":"https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.4.0.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:normalize-package-data@https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.4.0.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["8671"],"connection":["keep-alive"],"set-cookie":["__cfduid=d1e30761586934ebe9a214d9ae7797ade1540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f7ff0196b8-FRA"],"etag":["\"1bf521673d514ff5d2459ec9cbb9a17f\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 10:33:44 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/bd/0c/0e641cfa290c803c6169ffebb7e57ae87123b92e65169921043e86ee4ed2 b/npm/.npm/_cacache/index-v5/bd/0c/0e641cfa290c803c6169ffebb7e57ae87123b92e65169921043e86ee4ed2 new file mode 100644 index 0000000..8eead77 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/bd/0c/0e641cfa290c803c6169ffebb7e57ae87123b92e65169921043e86ee4ed2 @@ -0,0 +1,2 @@ + +c9729011cec68c9829ebddd1653717b0c698a802 {"key":"pacote:range-manifest:https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz:sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366553542,"size":1,"metadata":{"id":"is-arrayish@0.2.1","manifest":{"name":"is-arrayish","version":"0.2.1","dependencies":{},"optionalDependencies":{},"devDependencies":{"coffee-script":"^1.9.3","coveralls":"^2.11.2","istanbul":"^0.3.17","mocha":"^2.2.5","should":"^7.0.1","xo":"^0.6.1"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz","_integrity":"sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=","_shasum":"77c99840527aa8ecb1a8ba697b80645a7a926a9d","_shrinkwrap":null,"bin":null,"_id":"is-arrayish@0.2.1"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/bd/dd/ce112e5d1b05b7ebb441f2f98ea3ea35a7dc86b17f3f6d9c2f7a4645399c b/npm/.npm/_cacache/index-v5/bd/dd/ce112e5d1b05b7ebb441f2f98ea3ea35a7dc86b17f3f6d9c2f7a4645399c new file mode 100644 index 0000000..2f499ee --- /dev/null +++ b/npm/.npm/_cacache/index-v5/bd/dd/ce112e5d1b05b7ebb441f2f98ea3ea35a7dc86b17f3f6d9c2f7a4645399c @@ -0,0 +1,2 @@ + +f1c7789d0f9227a639a73c5e469c69054914a423 {"key":"pacote:range-manifest:https://registry.npmjs.org/colors/-/colors-1.1.2.tgz:sha1-FopHAXVran9RoSzgyXv6KMCE7WM=","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366554031,"size":1,"metadata":{"id":"colors@1.1.2","manifest":{"name":"colors","version":"1.1.2","engines":{"node":">=0.1.90"},"dependencies":{},"optionalDependencies":{},"devDependencies":{},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/colors/-/colors-1.1.2.tgz","_integrity":"sha1-FopHAXVran9RoSzgyXv6KMCE7WM=","_shasum":"168a4701756b6a7f51a12ce0c97bfa28c084ed63","_shrinkwrap":null,"bin":null,"_id":"colors@1.1.2"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/be/2b/fb6bffd4126b24e65791f5941d8a3ff0703f95a97ab71d14556f7a636819 b/npm/.npm/_cacache/index-v5/be/2b/fb6bffd4126b24e65791f5941d8a3ff0703f95a97ab71d14556f7a636819 new file mode 100644 index 0000000..70315ab --- /dev/null +++ b/npm/.npm/_cacache/index-v5/be/2b/fb6bffd4126b24e65791f5941d8a3ff0703f95a97ab71d14556f7a636819 @@ -0,0 +1,2 @@ + +7672ef8807b6504df209f416689ef7aad7d803b9 {"key":"pacote:range-manifest:https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz:sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366552992,"size":1,"metadata":{"id":"map-obj@1.0.1","manifest":{"name":"map-obj","version":"1.0.1","engines":{"node":">=0.10.0"},"dependencies":{},"optionalDependencies":{},"devDependencies":{"ava":"0.0.4"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz","_integrity":"sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=","_shasum":"d933ceb9205d82bdcf4886f6742bdc2b4dea146d","_shrinkwrap":null,"bin":null,"_id":"map-obj@1.0.1"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/bf/e8/1e88468aa69e988602eb95c9d1beb210250a433ee283bf92c5a8b84e1f01 b/npm/.npm/_cacache/index-v5/bf/e8/1e88468aa69e988602eb95c9d1beb210250a433ee283bf92c5a8b84e1f01 new file mode 100644 index 0000000..6b86b1f --- /dev/null +++ b/npm/.npm/_cacache/index-v5/bf/e8/1e88468aa69e988602eb95c9d1beb210250a433ee283bf92c5a8b84e1f01 @@ -0,0 +1,2 @@ + +4406b98aabf469ddc5ae04b2131f1d5fb2748240 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz","integrity":"sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=","time":1540366554395,"size":5990,"metadata":{"url":"https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:minimist@https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["5990"],"connection":["keep-alive"],"set-cookie":["__cfduid=d03a71f0c2920c45343a559974cc820751540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f4c958c2a6-FRA"],"etag":["\"2cf431b6650eef21fbace17b133be31e\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 08:07:34 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/c0/29/d8db7bde0689e9b36363087acb352910fb4051c22aeb6aef591d3220efea b/npm/.npm/_cacache/index-v5/c0/29/d8db7bde0689e9b36363087acb352910fb4051c22aeb6aef591d3220efea new file mode 100644 index 0000000..7cc5d9d --- /dev/null +++ b/npm/.npm/_cacache/index-v5/c0/29/d8db7bde0689e9b36363087acb352910fb4051c22aeb6aef591d3220efea @@ -0,0 +1,2 @@ + +59f5cc0fe2041537037725b41f788f56d578faa3 {"key":"pacote:range-manifest:https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz:sha1-ibTRmasr7kneFk6gK4nORi1xt2c=","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366553863,"size":1,"metadata":{"id":"balanced-match@1.0.0","manifest":{"name":"balanced-match","version":"1.0.0","dependencies":{},"optionalDependencies":{},"devDependencies":{"matcha":"^0.7.0","tape":"^4.6.0"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz","_integrity":"sha1-ibTRmasr7kneFk6gK4nORi1xt2c=","_shasum":"89b4d199ab2bee49de164ea02b89ce462d71b767","_shrinkwrap":null,"bin":null,"_id":"balanced-match@1.0.0"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/c0/42/ed6a53773a82278174035feafc3eecdaa5d451bbe310c51890218455bf08 b/npm/.npm/_cacache/index-v5/c0/42/ed6a53773a82278174035feafc3eecdaa5d451bbe310c51890218455bf08 new file mode 100644 index 0000000..12832e7 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/c0/42/ed6a53773a82278174035feafc3eecdaa5d451bbe310c51890218455bf08 @@ -0,0 +1,2 @@ + +57a146c1f77868e555ba3bbf14c3bc65ede5128d {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz","integrity":"sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=","time":1540366554811,"size":1691,"metadata":{"url":"https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:decamelize@https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["binary/octet-stream"],"content-length":["1691"],"connection":["keep-alive"],"set-cookie":["__cfduid=da7c425ed9d70c5453385f8ca1689521c1540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f69df2c300-FRA"],"etag":["\"330932e4de0e60c36114facb6d3dfafa\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Tue, 05 Jun 2018 13:48:39 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/c1/30/4f91adb097e82d3674037d7bef24b61365157caff37ec8bec19ce2c8d577 b/npm/.npm/_cacache/index-v5/c1/30/4f91adb097e82d3674037d7bef24b61365157caff37ec8bec19ce2c8d577 new file mode 100644 index 0000000..48205d4 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/c1/30/4f91adb097e82d3674037d7bef24b61365157caff37ec8bec19ce2c8d577 @@ -0,0 +1,2 @@ + +5e40aaa078bf0517a7fa35a434dd6f6d64fbe2de {"key":"pacote:range-manifest:https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz:sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366554283,"size":1,"metadata":{"id":"isexe@2.0.0","manifest":{"name":"isexe","version":"2.0.0","dependencies":{},"optionalDependencies":{},"devDependencies":{"mkdirp":"^0.5.1","rimraf":"^2.5.0","tap":"^10.3.0"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz","_integrity":"sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=","_shasum":"e8fbf374dc556ff8947a10dcb0572d633f2cfa10","_shrinkwrap":null,"bin":null,"_id":"isexe@2.0.0"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/c2/39/9b34cec968aafc72c8311d8e7665a36e7c4e09289fa5de0358633b37e060 b/npm/.npm/_cacache/index-v5/c2/39/9b34cec968aafc72c8311d8e7665a36e7c4e09289fa5de0358633b37e060 new file mode 100644 index 0000000..a867416 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/c2/39/9b34cec968aafc72c8311d8e7665a36e7c4e09289fa5de0358633b37e060 @@ -0,0 +1,2 @@ + +ead0b1489f69d27a696bf26c8a23a13b64c2e3b5 {"key":"pacote:range-manifest:https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz:sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366554099,"size":1,"metadata":{"id":"ansi-styles@3.2.1","manifest":{"name":"ansi-styles","version":"3.2.1","engines":{"node":">=4"},"dependencies":{"color-convert":"^1.9.0"},"optionalDependencies":{},"devDependencies":{"ava":"*","babel-polyfill":"^6.23.0","svg-term-cli":"^2.1.1","xo":"*"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz","_integrity":"sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==","_shasum":"41fbb20243e50b12be0f04b8dedbf07520ce841d","_shrinkwrap":null,"bin":null,"_id":"ansi-styles@3.2.1"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/c2/c1/724f135b5d42453d7a6aca855dc0e7f46f95b5174d2b9c3c70f09c91d8c6 b/npm/.npm/_cacache/index-v5/c2/c1/724f135b5d42453d7a6aca855dc0e7f46f95b5174d2b9c3c70f09c91d8c6 new file mode 100644 index 0000000..73754b9 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/c2/c1/724f135b5d42453d7a6aca855dc0e7f46f95b5174d2b9c3c70f09c91d8c6 @@ -0,0 +1,2 @@ + +882bd270f20381936c2396a143ff98cafc34548e {"key":"pacote:range-manifest:https://registry.npmjs.org/which/-/which-1.3.1.tgz:sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366554222,"size":1,"metadata":{"id":"which@1.3.1","manifest":{"name":"which","version":"1.3.1","dependencies":{"isexe":"^2.0.0"},"optionalDependencies":{},"devDependencies":{"mkdirp":"^0.5.0","rimraf":"^2.6.2","tap":"^12.0.1"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/which/-/which-1.3.1.tgz","_integrity":"sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==","_shasum":"a45043d54f5805316da8d62f9f50918d3da70b0a","_shrinkwrap":null,"bin":{"which":"./bin/which"},"_id":"which@1.3.1"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/c5/02/217191f45d7ed27dc5cad8d3a05e23fc88c5dd4b7a7f867b30b7eb7cc06a b/npm/.npm/_cacache/index-v5/c5/02/217191f45d7ed27dc5cad8d3a05e23fc88c5dd4b7a7f867b30b7eb7cc06a new file mode 100644 index 0000000..cb711e7 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/c5/02/217191f45d7ed27dc5cad8d3a05e23fc88c5dd4b7a7f867b30b7eb7cc06a @@ -0,0 +1,2 @@ + +dba7b3e480757cc8678ad2117268a749dac7fae2 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz","integrity":"sha1-ITXW36ejWMBprJsXh3YogihFD/o=","time":1540366554817,"size":1532,"metadata":{"url":"https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:pinkie-promise@https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["1532"],"connection":["keep-alive"],"set-cookie":["__cfduid=da5c3cee460fbe400eb5f132ba9e5d6cc1540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f69de297b6-FRA"],"etag":["\"d6cf74027e88ca54043e91d59629a656\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 12:18:14 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/c5/aa/e95d015d781c87be2624a9ab47e8ec4c837d810d460caff18786393fe403 b/npm/.npm/_cacache/index-v5/c5/aa/e95d015d781c87be2624a9ab47e8ec4c837d810d460caff18786393fe403 new file mode 100644 index 0000000..20693b1 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/c5/aa/e95d015d781c87be2624a9ab47e8ec4c837d810d460caff18786393fe403 @@ -0,0 +1,2 @@ + +747d1cd914e043b5e862b48d92f5331094c9b345 {"key":"pacote:range-manifest:https://registry.npmjs.org/lodash/-/lodash-4.17.11.tgz:sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg==","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366554034,"size":1,"metadata":{"id":"lodash@4.17.11","manifest":{"name":"lodash","version":"4.17.11","dependencies":{},"optionalDependencies":{},"devDependencies":{},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/lodash/-/lodash-4.17.11.tgz","_integrity":"sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg==","_shasum":"b39ea6229ef607ecd89e2c8df12536891cac9b8d","_shrinkwrap":null,"bin":null,"_id":"lodash@4.17.11"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/c5/d8/439fc20b646328e2d645424e8be8529fbd82f976377739d9b3a15ba49154 b/npm/.npm/_cacache/index-v5/c5/d8/439fc20b646328e2d645424e8be8529fbd82f976377739d9b3a15ba49154 new file mode 100644 index 0000000..cbbb595 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/c5/d8/439fc20b646328e2d645424e8be8529fbd82f976377739d9b3a15ba49154 @@ -0,0 +1,2 @@ + +080ea88786e4d9a0e0b88badf3bf4bfb59e67261 {"key":"pacote:version-manifest:http://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz:sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366554397,"size":1,"metadata":{"id":"minimist@0.0.8","manifest":{"name":"minimist","version":"0.0.8","dependencies":{},"optionalDependencies":{},"devDependencies":{"tape":"~1.0.4","tap":"~0.4.0"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"http://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz","_integrity":"sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=","_shasum":"857fcabfc3397d2625b8228262e86aa7a011b05d","_shrinkwrap":null,"bin":null,"_id":"minimist@0.0.8"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/c6/8d/541e8223d13159d9b4de3ade3d890bba794c4518f355b7c49dffda7e0009 b/npm/.npm/_cacache/index-v5/c6/8d/541e8223d13159d9b4de3ade3d890bba794c4518f355b7c49dffda7e0009 new file mode 100644 index 0000000..e2d9f62 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/c6/8d/541e8223d13159d9b4de3ade3d890bba794c4518f355b7c49dffda7e0009 @@ -0,0 +1,2 @@ + +4c68e74ce6a13682ef540b0a4ee723d0dbf0c343 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/lodash/-/lodash-4.17.11.tgz","integrity":"sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg==","time":1540366554824,"size":305584,"metadata":{"url":"https://registry.npmjs.org/lodash/-/lodash-4.17.11.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:lodash@https://registry.npmjs.org/lodash/-/lodash-4.17.11.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["305584"],"connection":["keep-alive"],"set-cookie":["__cfduid=da43aeca20ac5d92dd6c204520f291a5f1540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f69acc643f-FRA"],"etag":["\"c502761dd3f233a6994145a8a4d16264\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Wed, 12 Sep 2018 18:32:21 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/c6/fc/0c82e6fea3443602e7c7659c85202fe263becfe2ba20ef85d7b1b8a07216 b/npm/.npm/_cacache/index-v5/c6/fc/0c82e6fea3443602e7c7659c85202fe263becfe2ba20ef85d7b1b8a07216 new file mode 100644 index 0000000..37b90ba --- /dev/null +++ b/npm/.npm/_cacache/index-v5/c6/fc/0c82e6fea3443602e7c7659c85202fe263becfe2ba20ef85d7b1b8a07216 @@ -0,0 +1,2 @@ + +5b1085e0a105bef446dbb436d2ede12a5c83c6f4 {"key":"pacote:range-manifest:https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz:sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366553746,"size":1,"metadata":{"id":"inherits@2.0.3","manifest":{"name":"inherits","version":"2.0.3","dependencies":{},"optionalDependencies":{},"devDependencies":{"tap":"^7.1.0"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz","_integrity":"sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=","_shasum":"633c2c83e3da42a502f52466022480f4208261de","_shrinkwrap":null,"bin":null,"_id":"inherits@2.0.3"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/c9/b4/8fb5aa3261e9f3bdcc0a9acb27728f5b76586fa203b5e96ea820be4edf2a b/npm/.npm/_cacache/index-v5/c9/b4/8fb5aa3261e9f3bdcc0a9acb27728f5b76586fa203b5e96ea820be4edf2a new file mode 100644 index 0000000..4c5622b --- /dev/null +++ b/npm/.npm/_cacache/index-v5/c9/b4/8fb5aa3261e9f3bdcc0a9acb27728f5b76586fa203b5e96ea820be4edf2a @@ -0,0 +1,2 @@ + +1fd410eb937ce18eb4ae411eb134027fa8fa9223 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/is-finite/-/is-finite-1.0.2.tgz","integrity":"sha1-zGZ3aVYCvlUO8R6LSqYwU0K20Ko=","time":1540366554817,"size":1515,"metadata":{"url":"https://registry.npmjs.org/is-finite/-/is-finite-1.0.2.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:is-finite@https://registry.npmjs.org/is-finite/-/is-finite-1.0.2.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["1515"],"connection":["keep-alive"],"set-cookie":["__cfduid=d7b53e407ce89920713386b640db133d41540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f699b526de-FRA"],"etag":["\"6742f458277b72bc33c854872fa117e0\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 04:59:00 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/ca/f8/5fdf8973f1896e77c07a4919f6166c6a04ef8354c5efb0156670a06d24e3 b/npm/.npm/_cacache/index-v5/ca/f8/5fdf8973f1896e77c07a4919f6166c6a04ef8354c5efb0156670a06d24e3 new file mode 100644 index 0000000..b398202 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/ca/f8/5fdf8973f1896e77c07a4919f6166c6a04ef8354c5efb0156670a06d24e3 @@ -0,0 +1,2 @@ + +b25a958885f81280beb21cbba9d418d7b4f23033 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/chalk","integrity":"sha512-hMhN+xvjVxizMdoRDqjdRGfL+Uh/EPldXdW/8JNX09YcrH45NobIrS/5MMdBrzdJBU3bXXDJYbiKirqbmkm4hA==","time":1540366554055,"size":13389,"metadata":{"url":"https://registry.npmjs.org/chalk","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["13389"],"connection":["keep-alive"],"set-cookie":["__cfduid=d2cace63d1bde5dd0b76e714594e2e9ec1540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4f2cd669738-FRA"],"etag":["\"4f359cca783c744c10830b1c1f503608\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Mon, 01 Oct 2018 09:55:14 GMT"],"vary":["accept-encoding, accept"],"x-amz-meta-rev":["1127-0cdb4a3b57193b99a6aaca9082398a42"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/cc/04/8f8ea2992ae922e5d4b90e6cbfd4a8195476e4f7673d8af146a78020f1df b/npm/.npm/_cacache/index-v5/cc/04/8f8ea2992ae922e5d4b90e6cbfd4a8195476e4f7673d8af146a78020f1df new file mode 100644 index 0000000..1f133d9 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/cc/04/8f8ea2992ae922e5d4b90e6cbfd4a8195476e4f7673d8af146a78020f1df @@ -0,0 +1,2 @@ + +e67cd6bfb9b2e05fd2296fc7e135391f265e625f {"key":"pacote:range-manifest:https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz:sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366553058,"size":1,"metadata":{"id":"signal-exit@3.0.2","manifest":{"name":"signal-exit","version":"3.0.2","dependencies":{},"optionalDependencies":{},"devDependencies":{"chai":"^3.5.0","coveralls":"^2.11.10","nyc":"^8.1.0","standard":"^7.1.2","standard-version":"^2.3.0","tap":"^8.0.1"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz","_integrity":"sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=","_shasum":"b5fdc08f1287ea1178628e415e25132b73646c6d","_shrinkwrap":null,"bin":null,"_id":"signal-exit@3.0.2"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/d0/a2/9b5933a9df317b031c4407f0d9cae19a4d56f253f7746786597a52daa76d b/npm/.npm/_cacache/index-v5/d0/a2/9b5933a9df317b031c4407f0d9cae19a4d56f253f7746786597a52daa76d new file mode 100644 index 0000000..7286fa7 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/d0/a2/9b5933a9df317b031c4407f0d9cae19a4d56f253f7746786597a52daa76d @@ -0,0 +1,2 @@ + +f8424ccd86c62c64a49cf49559803e97870cb556 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/graceful-fs","integrity":"sha512-Cr1OnPFVs/eVlprELJt/hG3dcFNkKm93xtsyRT6Ety8BHYH3QD4rFCahzx2dnMaMDA8rj4OeSd37rcvJw07gJQ==","time":1540366553426,"size":19881,"metadata":{"url":"https://registry.npmjs.org/graceful-fs","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:53 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["19881"],"connection":["keep-alive"],"set-cookie":["__cfduid=d94c06b11e9ec5b66331af8f65a6f81ca1540366553; expires=Thu, 24-Oct-19 07:35:53 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4eec835975c-FRA"],"etag":["\"65690d9e1d3dcf6790d4c10f4a00f8bb\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 02:39:26 GMT"],"vary":["accept-encoding, accept"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/d2/d1/3aaa4a384f655f1c348a3bb9012eca1e3314a9e40b1acd200d84fc70d18d b/npm/.npm/_cacache/index-v5/d2/d1/3aaa4a384f655f1c348a3bb9012eca1e3314a9e40b1acd200d84fc70d18d new file mode 100644 index 0000000..ff615e5 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/d2/d1/3aaa4a384f655f1c348a3bb9012eca1e3314a9e40b1acd200d84fc70d18d @@ -0,0 +1,2 @@ + +b952287f600d60ec47e6396be7ca26470af0ddcb {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/esprima/-/esprima-2.7.3.tgz","integrity":"sha1-luO3DVd59q1JzQMmc9HDEnZ7pYE=","time":1540366554824,"size":41051,"metadata":{"url":"https://registry.npmjs.org/esprima/-/esprima-2.7.3.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:esprima@https://registry.npmjs.org/esprima/-/esprima-2.7.3.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["41051"],"connection":["keep-alive"],"set-cookie":["__cfduid=dd0e4c6cf89df8849199333a8771c7e8d1540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f6c99f97c2-FRA"],"etag":["\"7f35adc35a730eb9b3bf6614b40e37d6\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sat, 26 May 2018 23:55:51 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/d4/07/69a9e4a9f67ceaa957167bb5f4bc0cef818cc33cc3db352ccf0bc5efe290 b/npm/.npm/_cacache/index-v5/d4/07/69a9e4a9f67ceaa957167bb5f4bc0cef818cc33cc3db352ccf0bc5efe290 new file mode 100644 index 0000000..6eaf968 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/d4/07/69a9e4a9f67ceaa957167bb5f4bc0cef818cc33cc3db352ccf0bc5efe290 @@ -0,0 +1,2 @@ + +115a9bc33e00b4959b87212c93fa4e3e58dcd6c6 {"key":"pacote:range-manifest:https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz:sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8=","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366553171,"size":1,"metadata":{"id":"builtin-modules@1.1.1","manifest":{"name":"builtin-modules","version":"1.1.1","engines":{"node":">=0.10.0"},"dependencies":{},"optionalDependencies":{},"devDependencies":{"ava":"*","xo":"*"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz","_integrity":"sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8=","_shasum":"270f076c5a72c02f5b65a47df94c5fe3a278892f","_shrinkwrap":null,"bin":null,"_id":"builtin-modules@1.1.1"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/d4/2e/a4af34a298e185ff2f3cede2ffed42e05c8125bb4b431cbff27c49a80e22 b/npm/.npm/_cacache/index-v5/d4/2e/a4af34a298e185ff2f3cede2ffed42e05c8125bb4b431cbff27c49a80e22 new file mode 100644 index 0000000..d4cd275 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/d4/2e/a4af34a298e185ff2f3cede2ffed42e05c8125bb4b431cbff27c49a80e22 @@ -0,0 +1,2 @@ + +6d965bd7d598340313fb214dc1f9889bc6c2de18 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz","integrity":"sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4=","time":1540366554817,"size":978,"metadata":{"url":"https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:get-stdin@https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["978"],"connection":["keep-alive"],"set-cookie":["__cfduid=d38a25c796fba0a6cd2497c5b40e7cdb71540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f6997c6499-FRA"],"etag":["\"b09eb47b3afe929e00cd24599f9fc295\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 02:11:49 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/d5/02/a4d888268ff14e42946cd7c95823ef41e95209674fd2846654b819ae5f83 b/npm/.npm/_cacache/index-v5/d5/02/a4d888268ff14e42946cd7c95823ef41e95209674fd2846654b819ae5f83 new file mode 100644 index 0000000..8d9da2d --- /dev/null +++ b/npm/.npm/_cacache/index-v5/d5/02/a4d888268ff14e42946cd7c95823ef41e95209674fd2846654b819ae5f83 @@ -0,0 +1,2 @@ + +65e3f14e9aa176d1e45e233c96399530a3189246 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/read-pkg-up","integrity":"sha512-K7neoSPI1btpfb1dZRPLxz/NEcwwG0w9orwvcyQfOKrPiMe6RIk3tjTwYynbtTnRBdsT8RJFd95ROcbQJOyC/g==","time":1540366552980,"size":2545,"metadata":{"url":"https://registry.npmjs.org/read-pkg-up","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:52 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["2545"],"connection":["keep-alive"],"set-cookie":["__cfduid=d083fdb2433f56ba4f69a0fd933c1b47e1540366552; expires=Thu, 24-Oct-19 07:35:52 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4ebef1ec305-FRA"],"etag":["\"10ba63b759c3449d47248ae913cedc5f\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Mon, 18 Jun 2018 11:46:13 GMT"],"vary":["accept-encoding, accept"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/d5/0c/24e2e5ce0d053d72356aec00cb3bcb62cf36429c906b157eb9cc0e771599 b/npm/.npm/_cacache/index-v5/d5/0c/24e2e5ce0d053d72356aec00cb3bcb62cf36429c906b157eb9cc0e771599 new file mode 100644 index 0000000..0c85655 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/d5/0c/24e2e5ce0d053d72356aec00cb3bcb62cf36429c906b157eb9cc0e771599 @@ -0,0 +1,2 @@ + +fa5d76e9b9308b3da952442eccbbb167c3fd385a {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/normalize-package-data","integrity":"sha512-JF1pdF/MRhd40YERMYvg8pUHog2QZI3DUU2raDU0grkk08+XxBEkgXjPogl5GHIhQLJB/dUJ+qOomB+QvxFHXw==","time":1540366552979,"size":19879,"metadata":{"url":"https://registry.npmjs.org/normalize-package-data","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:52 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["19879"],"connection":["keep-alive"],"set-cookie":["__cfduid=df389fe0c3fd8ffd46a700dabd98a27c71540366552; expires=Thu, 24-Oct-19 07:35:52 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4ebea529738-FRA"],"etag":["\"9201a79c1f0c799d8c33687201356bbc\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 10:33:44 GMT"],"vary":["accept-encoding, accept"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/d5/38/a9ab488fe53ee776ca1ae77fa1661792023378047f7cff235c5cc1953dd6 b/npm/.npm/_cacache/index-v5/d5/38/a9ab488fe53ee776ca1ae77fa1661792023378047f7cff235c5cc1953dd6 new file mode 100644 index 0000000..17c3966 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/d5/38/a9ab488fe53ee776ca1ae77fa1661792023378047f7cff235c5cc1953dd6 @@ -0,0 +1,2 @@ + +4b93aba536ff520a6d585df4fc269a6eac857221 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz","integrity":"sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=","time":1540366554811,"size":1464,"metadata":{"url":"https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:number-is-nan@https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["1464"],"connection":["keep-alive"],"set-cookie":["__cfduid=db260eb8fef0541fca9793e23179b35211540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f69a96c274-FRA"],"etag":["\"1c192095065e6b72a7e20a747b110469\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 10:51:31 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/d5/55/7e5d753c337fad3b231b00a2c64345b62bd1a9635be6afb1b4339e792b1e b/npm/.npm/_cacache/index-v5/d5/55/7e5d753c337fad3b231b00a2c64345b62bd1a9635be6afb1b4339e792b1e new file mode 100644 index 0000000..525a078 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/d5/55/7e5d753c337fad3b231b00a2c64345b62bd1a9635be6afb1b4339e792b1e @@ -0,0 +1,2 @@ + +fd9fe8452a429a7032ad6f5d0468a00260c32757 {"key":"pacote:range-manifest:https://registry.npmjs.org/grunt-legacy-util/-/grunt-legacy-util-1.1.1.tgz:sha512-9zyA29w/fBe6BIfjGENndwoe1Uy31BIXxTH3s8mga0Z5Bz2Sp4UCjkeyv2tI449ymkx3x26B+46FV4fXEddl5A==","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366552778,"size":1,"metadata":{"id":"grunt-legacy-util@1.1.1","manifest":{"name":"grunt-legacy-util","version":"1.1.1","engines":{"node":">= 6"},"dependencies":{"async":"~1.5.2","exit":"~0.1.1","getobject":"~0.1.0","hooker":"~0.2.3","lodash":"~4.17.10","underscore.string":"~3.3.4","which":"~1.3.0"},"optionalDependencies":{},"devDependencies":{"grunt":"^1.0.2","grunt-cli":"^1.2.0","grunt-contrib-jshint":"^1.0.0","grunt-contrib-nodeunit":"^2.0.0","grunt-contrib-watch":"^1.0.0","temporary":"0.0.8"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/grunt-legacy-util/-/grunt-legacy-util-1.1.1.tgz","_integrity":"sha512-9zyA29w/fBe6BIfjGENndwoe1Uy31BIXxTH3s8mga0Z5Bz2Sp4UCjkeyv2tI449ymkx3x26B+46FV4fXEddl5A==","_shasum":"e10624e7c86034e5b870c8a8616743f0a0845e42","_shrinkwrap":null,"bin":null,"_id":"grunt-legacy-util@1.1.1"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/d8/61/f9968059db743a2b4dab44c5b2baced8c2ecd6155705b97a7c7c85e6a72c b/npm/.npm/_cacache/index-v5/d8/61/f9968059db743a2b4dab44c5b2baced8c2ecd6155705b97a7c7c85e6a72c new file mode 100644 index 0000000..1b4c243 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/d8/61/f9968059db743a2b4dab44c5b2baced8c2ecd6155705b97a7c7c85e6a72c @@ -0,0 +1,2 @@ + +e50a1d95dd6521709b6d03d21e607e99144f07ac {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/underscore.string","integrity":"sha512-G1gh1QpVOJQPHckAd1R8Pjg1IzXhIC5Pnpn0D/JKpk0Gi15373yYa4qhcSbws9/6B80mqAgkfXUGrFvUC0vnEA==","time":1540366554205,"size":14106,"metadata":{"url":"https://registry.npmjs.org/underscore.string","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["14106"],"connection":["keep-alive"],"set-cookie":["__cfduid=d2cace63d1bde5dd0b76e714594e2e9ec1540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4f3bdc29738-FRA"],"etag":["\"6238423c4ec1d3feceab65924f188f10\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Thu, 04 Oct 2018 18:21:36 GMT"],"vary":["accept-encoding, accept"],"x-amz-meta-rev":["147-9cb3c78b5bd1ee90b9e44c416dd8776d"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/d8/90/fe1e5bf54c6111708a78cd66613e0a69271ab056e9925db28b5d49664f6e b/npm/.npm/_cacache/index-v5/d8/90/fe1e5bf54c6111708a78cd66613e0a69271ab056e9925db28b5d49664f6e new file mode 100644 index 0000000..e7d90a7 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/d8/90/fe1e5bf54c6111708a78cd66613e0a69271ab056e9925db28b5d49664f6e @@ -0,0 +1,2 @@ + +3291151922bf2f242454ce92e70b89cbde1d9439 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/object-assign","integrity":"sha512-oauGWM8bId7hZxVvhvzzqUb+J67zM7szxGZH5jtWwslyGF1v1PMRcHxhSDSUGa+70zXg1hcDW/mNrqsXEEpw1Q==","time":1540366552979,"size":5271,"metadata":{"url":"https://registry.npmjs.org/object-assign","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:52 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["5271"],"connection":["keep-alive"],"set-cookie":["__cfduid=d301621c8972e3d48a19bcb9c2e4e4df61540366552; expires=Thu, 24-Oct-19 07:35:52 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4ebede2975c-FRA"],"etag":["\"88c9572f0b8f498591d9378a939616f2\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 10:57:26 GMT"],"vary":["accept-encoding, accept"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/d8/bb/66d25d447e03e6861ba02b08510ed76cd7d0e16cebfb54265d50c853d8ff b/npm/.npm/_cacache/index-v5/d8/bb/66d25d447e03e6861ba02b08510ed76cd7d0e16cebfb54265d50c853d8ff new file mode 100644 index 0000000..1bbaa60 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/d8/bb/66d25d447e03e6861ba02b08510ed76cd7d0e16cebfb54265d50c853d8ff @@ -0,0 +1,2 @@ + +bacf9f3b748e6a42fbbee23b3d7387d7daf7e1f8 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/pinkie-promise","integrity":"sha512-5nKUOgrOnw4K/aU1fTfqP/5CJgvfMYn7c3oKmZksGMXcKi4c4/dkJ5Ts3dT1/RUAGMSFnuVj4+2fXSJYEl6yFQ==","time":1540366553289,"size":1100,"metadata":{"url":"https://registry.npmjs.org/pinkie-promise","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:53 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["1100"],"connection":["keep-alive"],"set-cookie":["__cfduid=db7fad9ba0ab25aa016f38fdec4afc4c21540366553; expires=Thu, 24-Oct-19 07:35:53 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4edfb59c2a6-FRA"],"etag":["\"6721354f28288d4f473449e0de5bd146\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 12:18:14 GMT"],"vary":["accept-encoding, accept"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/d9/b8/8d6364d8539334c21d67fb33140dfd2537af82ef3b3d3099bd53e52100e9 b/npm/.npm/_cacache/index-v5/d9/b8/8d6364d8539334c21d67fb33140dfd2537af82ef3b3d3099bd53e52100e9 new file mode 100644 index 0000000..7d40f2e --- /dev/null +++ b/npm/.npm/_cacache/index-v5/d9/b8/8d6364d8539334c21d67fb33140dfd2537af82ef3b3d3099bd53e52100e9 @@ -0,0 +1,2 @@ + +c07fc28b2e016a2a8c695e8ce5671a6da877e72f {"key":"pacote:range-manifest:https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz:sha1-clVrgM+g1IqXToDnckjoDtT3+HA=","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366553338,"size":1,"metadata":{"id":"pinkie@2.0.4","manifest":{"name":"pinkie","version":"2.0.4","engines":{"node":">=0.10.0"},"dependencies":{},"optionalDependencies":{},"devDependencies":{"core-assert":"^0.1.1","coveralls":"^2.11.4","mocha":"*","nyc":"^3.2.2","promises-aplus-tests":"*","xo":"^0.10.1"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz","_integrity":"sha1-clVrgM+g1IqXToDnckjoDtT3+HA=","_shasum":"72556b80cfa0d48a974e80e77248e80ed4f7f870","_shrinkwrap":null,"bin":null,"_id":"pinkie@2.0.4"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/da/d8/985afc22b0bc89825c302a158e91d8a9db417204168d0bad707b27d49e06 b/npm/.npm/_cacache/index-v5/da/d8/985afc22b0bc89825c302a158e91d8a9db417204168d0bad707b27d49e06 new file mode 100644 index 0000000..1a623a4 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/da/d8/985afc22b0bc89825c302a158e91d8a9db417204168d0bad707b27d49e06 @@ -0,0 +1,2 @@ + +0b18155000cf84f7778e255784b1ce1dd1d34108 {"key":"pacote:range-manifest:https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz:sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366552991,"size":1,"metadata":{"id":"object-assign@4.1.1","manifest":{"name":"object-assign","version":"4.1.1","engines":{"node":">=0.10.0"},"dependencies":{},"optionalDependencies":{},"devDependencies":{"ava":"^0.16.0","lodash":"^4.16.4","matcha":"^0.7.0","xo":"^0.16.0"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz","_integrity":"sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=","_shasum":"2109adc7965887cfc05cbbd442cac8bfbb360863","_shrinkwrap":null,"bin":null,"_id":"object-assign@4.1.1"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/dd/03/456ce7d8bffee20c3acf7e18ef6501b637d59a6fa3fa7bac5ed160b6be3f b/npm/.npm/_cacache/index-v5/dd/03/456ce7d8bffee20c3acf7e18ef6501b637d59a6fa3fa7bac5ed160b6be3f new file mode 100644 index 0000000..1de9009 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/dd/03/456ce7d8bffee20c3acf7e18ef6501b637d59a6fa3fa7bac5ed160b6be3f @@ -0,0 +1,2 @@ + +c014fba4e9461df061cbb9c4fc8df4ce2b39a195 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz","integrity":"sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=","time":1540366554169,"size":4071,"metadata":{"url":"https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:color-name@https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["4071"],"connection":["keep-alive"],"set-cookie":["__cfduid=d3571117028a618f068c81ce728e19c941540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f3786e972c-FRA"],"etag":["\"b45186c4fe76a2450ec484149ade0066\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sat, 26 May 2018 20:17:20 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/dd/6e/25aae047c0b95fb003be3b2cc1b80728ab5007640f97c9966481a8e971c1 b/npm/.npm/_cacache/index-v5/dd/6e/25aae047c0b95fb003be3b2cc1b80728ab5007640f97c9966481a8e971c1 new file mode 100644 index 0000000..1df7a3c --- /dev/null +++ b/npm/.npm/_cacache/index-v5/dd/6e/25aae047c0b95fb003be3b2cc1b80728ab5007640f97c9966481a8e971c1 @@ -0,0 +1,2 @@ + +9d4f5c6e4fbb729cf633a7bdc124f2a085d1e31f {"key":"pacote:range-manifest:https://registry.npmjs.org/grunt-legacy-log-utils/-/grunt-legacy-log-utils-2.0.1.tgz:sha512-o7uHyO/J+i2tXG8r2bZNlVk20vlIFJ9IEYyHMCQGfWYru8Jv3wTqKZzvV30YW9rWEjq0eP3cflQ1qWojIe9VFA==","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366554032,"size":1,"metadata":{"id":"grunt-legacy-log-utils@2.0.1","manifest":{"name":"grunt-legacy-log-utils","version":"2.0.1","engines":{"node":">=6"},"dependencies":{"chalk":"~2.4.1","lodash":"~4.17.10"},"optionalDependencies":{},"devDependencies":{"grunt":"~1.0.2","grunt-cli":"~1.2.0","grunt-contrib-jshint":"~1.1.0","grunt-contrib-nodeunit":"~2.0.0","grunt-contrib-watch":"~1.1.0"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/grunt-legacy-log-utils/-/grunt-legacy-log-utils-2.0.1.tgz","_integrity":"sha512-o7uHyO/J+i2tXG8r2bZNlVk20vlIFJ9IEYyHMCQGfWYru8Jv3wTqKZzvV30YW9rWEjq0eP3cflQ1qWojIe9VFA==","_shasum":"d2f442c7c0150065d9004b08fd7410d37519194e","_shrinkwrap":null,"bin":null,"_id":"grunt-legacy-log-utils@2.0.1"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/e0/2f/cf69ca655e19dff5bc8cd655f79ff639f5713cfea409f8205ccd18646fb9 b/npm/.npm/_cacache/index-v5/e0/2f/cf69ca655e19dff5bc8cd655f79ff639f5713cfea409f8205ccd18646fb9 new file mode 100644 index 0000000..7a23ef9 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/e0/2f/cf69ca655e19dff5bc8cd655f79ff639f5713cfea409f8205ccd18646fb9 @@ -0,0 +1,2 @@ + +9f5b255499daaf98fa73c471ed4946dfbdaf95cb {"key":"pacote:range-manifest:https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz:sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs=","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366553955,"size":1,"metadata":{"id":"resolve@1.1.7","manifest":{"name":"resolve","version":"1.1.7","dependencies":{},"optionalDependencies":{},"devDependencies":{"tape":"^3.5.0","tap":"0.4.13"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz","_integrity":"sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs=","_shasum":"203114d82ad2c5ed9e8e0411b3932875e889e97b","_shrinkwrap":null,"bin":null,"_id":"resolve@1.1.7"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/e1/2c/d82b68277243e1022df78ac477e828454d66349e93d8b15d395c3689b1a3 b/npm/.npm/_cacache/index-v5/e1/2c/d82b68277243e1022df78ac477e828454d66349e93d8b15d395c3689b1a3 new file mode 100644 index 0000000..379e449 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/e1/2c/d82b68277243e1022df78ac477e828454d66349e93d8b15d395c3689b1a3 @@ -0,0 +1,2 @@ + +8001f948bbe693aff730085beef2879f2b216822 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/inflight","integrity":"sha512-cw7gLKwlLhrhIuU4VTNDxafF5p1RhChqu81kK1beItJKMkwYMGSk8sS+fZ13kzVSYLypq+MXlmaYmV0iYEiw/g==","time":1540366553740,"size":2159,"metadata":{"url":"https://registry.npmjs.org/inflight","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:53 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["2159"],"connection":["keep-alive"],"set-cookie":["__cfduid=dc5fb3f0ece7d1c527a0bd46eeb0ffd731540366553; expires=Thu, 24-Oct-19 07:35:53 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4f0cd8c64c9-FRA"],"etag":["\"30173223ba95a68ad6e5c794a1dfcca7\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 04:39:13 GMT"],"vary":["accept-encoding, accept"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/e1/9e/9439a333d23e3831879393b072c8ef9b3b2768cbc4e0ffc17daa45c47728 b/npm/.npm/_cacache/index-v5/e1/9e/9439a333d23e3831879393b072c8ef9b3b2768cbc4e0ffc17daa45c47728 new file mode 100644 index 0000000..5f8172c --- /dev/null +++ b/npm/.npm/_cacache/index-v5/e1/9e/9439a333d23e3831879393b072c8ef9b3b2768cbc4e0ffc17daa45c47728 @@ -0,0 +1,2 @@ + +85b30abd719dc2a23343411ed441899bb122b8c2 {"key":"pacote:range-manifest:https://registry.npmjs.org/glob/-/glob-7.0.6.tgz:sha1-IRuvr0nlJbjNkyYNFKsTYVKz9Xo=","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366552781,"size":1,"metadata":{"id":"glob@7.0.6","manifest":{"name":"glob","version":"7.0.6","engines":{"node":"*"},"dependencies":{"fs.realpath":"^1.0.0","inflight":"^1.0.4","inherits":"2","minimatch":"^3.0.2","once":"^1.3.0","path-is-absolute":"^1.0.0"},"optionalDependencies":{},"devDependencies":{"mkdirp":"0","rimraf":"^2.2.8","tap":"^5.7.0","tick":"0.0.6"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/glob/-/glob-7.0.6.tgz","_integrity":"sha1-IRuvr0nlJbjNkyYNFKsTYVKz9Xo=","_shasum":"211bafaf49e525b8cd93260d14ab136152b3f57a","_shrinkwrap":null,"bin":null,"_id":"glob@7.0.6"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/e3/19/4e717a7291b5dd5ca225d7af96a7e53c214e4d8c1568ce5094a10bf0396b b/npm/.npm/_cacache/index-v5/e3/19/4e717a7291b5dd5ca225d7af96a7e53c214e4d8c1568ce5094a10bf0396b new file mode 100644 index 0000000..dc7309d --- /dev/null +++ b/npm/.npm/_cacache/index-v5/e3/19/4e717a7291b5dd5ca225d7af96a7e53c214e4d8c1568ce5094a10bf0396b @@ -0,0 +1,2 @@ + +9062a5d55c800c95b843fd27fe515cb5df506a03 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/concat-map","integrity":"sha512-RjAOkaMd9SM+wxyKb52oMkzgLVploBXl+kBJc+rBeOtFD0gJXymS0q7vPzil+37Ff8KuyHdZqyia2MgLpvbr0w==","time":1540366553877,"size":757,"metadata":{"url":"https://registry.npmjs.org/concat-map","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:53 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["757"],"connection":["keep-alive"],"set-cookie":["__cfduid=d9dcfcc7e2ca203ea1b61eeff9aa0f9851540366553; expires=Thu, 24-Oct-19 07:35:53 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4f19a41c305-FRA"],"etag":["\"14d37e77943eedc9b306c06c2b6c121f\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sat, 26 May 2018 20:40:55 GMT"],"vary":["accept-encoding, accept"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/e3/58/397d908d2499f1d377f9edd5cb64505120ea0d7ed25c8bc22ba795469cba b/npm/.npm/_cacache/index-v5/e3/58/397d908d2499f1d377f9edd5cb64505120ea0d7ed25c8bc22ba795469cba new file mode 100644 index 0000000..2041d9f --- /dev/null +++ b/npm/.npm/_cacache/index-v5/e3/58/397d908d2499f1d377f9edd5cb64505120ea0d7ed25c8bc22ba795469cba @@ -0,0 +1,2 @@ + +8818cf0ba2637b9fbb56c68c9b277ad56dcad317 {"key":"pacote:range-manifest:https://registry.npmjs.org/once/-/once-1.4.0.tgz:sha1-WDsap3WWHUsROsF9nFC6753Xa9E=","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366553758,"size":1,"metadata":{"id":"once@1.4.0","manifest":{"name":"once","version":"1.4.0","dependencies":{"wrappy":"1"},"optionalDependencies":{},"devDependencies":{"tap":"^7.0.1"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/once/-/once-1.4.0.tgz","_integrity":"sha1-WDsap3WWHUsROsF9nFC6753Xa9E=","_shasum":"583b1aa775961d4b113ac17d9c50baef9dd76bd1","_shrinkwrap":null,"bin":null,"_id":"once@1.4.0"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/e4/94/93b8de52deebae0492f687a349d097ed0b3cada10b77f539dd1f3b0c6aca b/npm/.npm/_cacache/index-v5/e4/94/93b8de52deebae0492f687a349d097ed0b3cada10b77f539dd1f3b0c6aca new file mode 100644 index 0000000..68bd0e4 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/e4/94/93b8de52deebae0492f687a349d097ed0b3cada10b77f539dd1f3b0c6aca @@ -0,0 +1,2 @@ + +14214057751ce480a1becece33c449a1da44093c {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/argparse","integrity":"sha512-mGI3HSmqAahbYvRXwah01+f2IqMmFv49obl+UTV9icorctFS+xumdTNZ677Q3K6ZrB5GrH9TYszX9p0d5FrjBw==","time":1540366554343,"size":9855,"metadata":{"url":"https://registry.npmjs.org/argparse","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["9855"],"connection":["keep-alive"],"set-cookie":["__cfduid=d1be73ae2b1dc0b01b9c543ab79043d521540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4f48f28c2ab-FRA"],"etag":["\"2fe6d57199ff17a510b8caeb0ec67bf9\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sat, 26 May 2018 17:20:15 GMT"],"vary":["accept-encoding, accept"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/e6/34/2d2466c5485bd7ddba032cf76e912a53df3ec4c70c03d71ef334f761eb57 b/npm/.npm/_cacache/index-v5/e6/34/2d2466c5485bd7ddba032cf76e912a53df3ec4c70c03d71ef334f761eb57 new file mode 100644 index 0000000..089eb45 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/e6/34/2d2466c5485bd7ddba032cf76e912a53df3ec4c70c03d71ef334f761eb57 @@ -0,0 +1,2 @@ + +4d3f33dc8d6b96f0ad3abcdcb99ab192695087f5 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/meow/-/meow-3.7.0.tgz","integrity":"sha1-cstmi0JSKCkKu/qFaJJYcwioAfs=","time":1540366552922,"size":3611,"metadata":{"url":"https://registry.npmjs.org/meow/-/meow-3.7.0.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:meow@https://registry.npmjs.org/meow/-/meow-3.7.0.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:52 GMT"],"content-type":["application/octet-stream"],"content-length":["3611"],"connection":["keep-alive"],"set-cookie":["__cfduid=d916bbbe17a5070d79f5ad32f71fce5531540366552; expires=Thu, 24-Oct-19 07:35:52 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4ebafb19726-FRA"],"etag":["\"9aa94b33a2ac7ee0494259c0ad716211\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 07:49:25 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/e6/37/c9e69f5074e9a22c766ffcc622280d4e580d2ee0238f670f28199487dd44 b/npm/.npm/_cacache/index-v5/e6/37/c9e69f5074e9a22c766ffcc622280d4e580d2ee0238f670f28199487dd44 new file mode 100644 index 0000000..46fa5c5 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/e6/37/c9e69f5074e9a22c766ffcc622280d4e580d2ee0238f670f28199487dd44 @@ -0,0 +1,2 @@ + +7e0ab6a29cc5aa62c1554699cd46da0d903b8a5b {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/supports-color","integrity":"sha512-XpsxI3wE26zfzL2vqv7HZlOO5utMWzZVp6Lw/dgLmDQO+mdJ008JFJsTxSc4KG9UN/RQyxR5jWz+a8/WmQl1CQ==","time":1540366554088,"size":14297,"metadata":{"url":"https://registry.npmjs.org/supports-color","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["14297"],"connection":["keep-alive"],"set-cookie":["__cfduid=d73f41e2de42ab9ee857924620b161eaa1540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4f2eacf975c-FRA"],"etag":["\"2310b867ace49ec7b8630f52d79ca479\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Mon, 20 Aug 2018 04:37:41 GMT"],"vary":["accept-encoding, accept"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/e8/7b/0817eb9f1646f60b27e507cd62e9e466ab147621279b2b9c754664d522ad b/npm/.npm/_cacache/index-v5/e8/7b/0817eb9f1646f60b27e507cd62e9e466ab147621279b2b9c754664d522ad new file mode 100644 index 0000000..9a3a8ae --- /dev/null +++ b/npm/.npm/_cacache/index-v5/e8/7b/0817eb9f1646f60b27e507cd62e9e466ab147621279b2b9c754664d522ad @@ -0,0 +1,2 @@ + +56cc47acaf03d165090d4bb23fbe36d2977bcc60 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/camelcase","integrity":"sha512-b63SzyMhfuMZjVLJn/Cggas5PR5H60LojPq3gx9be4b9H7bfe4I2vdf1zWZfv/q0t69CPey+0wdTnNgJSKtXIA==","time":1540366553026,"size":4233,"metadata":{"url":"https://registry.npmjs.org/camelcase","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:53 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["4233"],"connection":["keep-alive"],"set-cookie":["__cfduid=d9dcfcc7e2ca203ea1b61eeff9aa0f9851540366553; expires=Thu, 24-Oct-19 07:35:53 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4ec5fecc305-FRA"],"etag":["\"ddf976016b5f5c9f054edab54e50db81\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sat, 26 May 2018 19:19:00 GMT"],"vary":["accept-encoding, accept"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/e9/ac/4fd1e78c75409d811873b9ecbdd0c683eaff5a4ac09b4982633c2de39767 b/npm/.npm/_cacache/index-v5/e9/ac/4fd1e78c75409d811873b9ecbdd0c683eaff5a4ac09b4982633c2de39767 new file mode 100644 index 0000000..4915274 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/e9/ac/4fd1e78c75409d811873b9ecbdd0c683eaff5a4ac09b4982633c2de39767 @@ -0,0 +1,2 @@ + +39d3e7708ec72c4025c71d967079f8d53857b6ff {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/loud-rejection","integrity":"sha512-u/mWWn/NCWoBb5uTsp5XKKFPdC0ZGt82r3S/FchyP3HLtP+uh9bQXmxGTT0dLKrR5IsBSgc9TgRbU6rf9e+DJw==","time":1540366552980,"size":4102,"metadata":{"url":"https://registry.npmjs.org/loud-rejection","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:52 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["4102"],"connection":["keep-alive"],"set-cookie":["__cfduid=d06c1732a8767ba97469df63446cebc7f1540366552; expires=Thu, 24-Oct-19 07:35:52 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4ebe88f97da-FRA"],"etag":["\"69122db178b67d4164f66033caa3acc7\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 07:07:39 GMT"],"vary":["accept-encoding, accept"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/e9/ea/b24a3f560a4af334178b1eacce07f81122f87175ca4512d81b4871c12a80 b/npm/.npm/_cacache/index-v5/e9/ea/b24a3f560a4af334178b1eacce07f81122f87175ca4512d81b4871c12a80 new file mode 100644 index 0000000..2419bec --- /dev/null +++ b/npm/.npm/_cacache/index-v5/e9/ea/b24a3f560a4af334178b1eacce07f81122f87175ca4512d81b4871c12a80 @@ -0,0 +1,2 @@ + +12a40b49794a18df9686f1d994fabafbf3330d0a {"key":"pacote:range-manifest:https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.0.2.tgz:sha512-q9hedtzyXHr5S0A1vEPoK/7l8NpfkFYTq6iCY+Pno2ZbdZR6WexZFtqeVGkGxW3TEJMN914Z55EnAGMmenlIQQ==","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366553193,"size":1,"metadata":{"id":"spdx-correct@3.0.2","manifest":{"name":"spdx-correct","version":"3.0.2","dependencies":{"spdx-expression-parse":"^3.0.0","spdx-license-ids":"^3.0.0"},"optionalDependencies":{},"devDependencies":{"defence-cli":"^2.0.1","replace-require-self":"^1.0.0","standard":"^11.0.0","standard-markdown":"^4.0.2","tape":"^4.9.0"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.0.2.tgz","_integrity":"sha512-q9hedtzyXHr5S0A1vEPoK/7l8NpfkFYTq6iCY+Pno2ZbdZR6WexZFtqeVGkGxW3TEJMN914Z55EnAGMmenlIQQ==","_shasum":"19bb409e91b47b1ad54159243f7312a858db3c2e","_shrinkwrap":null,"bin":null,"_id":"spdx-correct@3.0.2"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/ea/a1/8fd403cbd93717f962bd024ec4798c35baa6e512a09e702750578a369cb9 b/npm/.npm/_cacache/index-v5/ea/a1/8fd403cbd93717f962bd024ec4798c35baa6e512a09e702750578a369cb9 new file mode 100644 index 0000000..0028137 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/ea/a1/8fd403cbd93717f962bd024ec4798c35baa6e512a09e702750578a369cb9 @@ -0,0 +1,2 @@ + +5057340a9ab0b7ee086e8922a2dcd9023977d405 {"key":"pacote:range-manifest:https://registry.npmjs.org/grunt-known-options/-/grunt-known-options-1.1.1.tgz:sha512-cHwsLqoighpu7TuYj5RonnEuxGVFnztcUqTqp5rXFGYL4OuPFofwC4Ycg7n9fYwvK6F5WbYgeVOwph9Crs2fsQ==","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366552777,"size":1,"metadata":{"id":"grunt-known-options@1.1.1","manifest":{"name":"grunt-known-options","version":"1.1.1","engines":{"node":">=0.10.0"},"dependencies":{},"optionalDependencies":{},"devDependencies":{},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/grunt-known-options/-/grunt-known-options-1.1.1.tgz","_integrity":"sha512-cHwsLqoighpu7TuYj5RonnEuxGVFnztcUqTqp5rXFGYL4OuPFofwC4Ycg7n9fYwvK6F5WbYgeVOwph9Crs2fsQ==","_shasum":"6cc088107bd0219dc5d3e57d91923f469059804d","_shrinkwrap":null,"bin":null,"_id":"grunt-known-options@1.1.1"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/ed/b8/21f3b978a3a22da2c741a07872da75d54875dd2620f1fbe58f0b0f9d92a9 b/npm/.npm/_cacache/index-v5/ed/b8/21f3b978a3a22da2c741a07872da75d54875dd2620f1fbe58f0b0f9d92a9 new file mode 100644 index 0000000..82ffc1a --- /dev/null +++ b/npm/.npm/_cacache/index-v5/ed/b8/21f3b978a3a22da2c741a07872da75d54875dd2620f1fbe58f0b0f9d92a9 @@ -0,0 +1,2 @@ + +ebd837fefa4aa6db7ffb069d17b33cc74847a5cb {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz","integrity":"sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=","time":1540366554821,"size":2675,"metadata":{"url":"https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:object-assign@https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["2675"],"connection":["keep-alive"],"set-cookie":["__cfduid=d6ea2ed2ac12d5cfc0cecbadad40d90841540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f69ee49718-FRA"],"etag":["\"4f52c397ba44c57bcf6ed38d7f2c3f8e\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 10:57:26 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/ed/de/6c7001f2ccdead887cab489ab1f1f892b9abdd457dc66cd9c88da1112229 b/npm/.npm/_cacache/index-v5/ed/de/6c7001f2ccdead887cab489ab1f1f892b9abdd457dc66cd9c88da1112229 new file mode 100644 index 0000000..9ae7cb7 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/ed/de/6c7001f2ccdead887cab489ab1f1f892b9abdd457dc66cd9c88da1112229 @@ -0,0 +1,2 @@ + +2f4e5437ee8168ea2ddd57b335d842f742b7eac9 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/grunt-legacy-log","integrity":"sha512-DzMRYW4P14Z00SV9lxDaiN53tdRa+92BgCphlnLTPHaWhdNAiWW0Adc+UE+Y6fKGGzZhP8HVhfFnKJoqQ++e3Q==","time":1540366552765,"size":7247,"metadata":{"url":"https://registry.npmjs.org/grunt-legacy-log","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:52 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["7247"],"connection":["keep-alive"],"set-cookie":["__cfduid=d1d6eab0d2e22adc5e523253c58c0bf391540366552; expires=Thu, 24-Oct-19 07:35:52 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4ea8b0a972c-FRA"],"etag":["\"f76357139de0e8e5130f19b9c75d9037\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 02:57:31 GMT"],"vary":["accept-encoding, accept"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/ee/41/9d919883ff80d9d4ae1af85440fde90b96e1c924a26f5324a09ed77e3e9e b/npm/.npm/_cacache/index-v5/ee/41/9d919883ff80d9d4ae1af85440fde90b96e1c924a26f5324a09ed77e3e9e new file mode 100644 index 0000000..47e9d55 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/ee/41/9d919883ff80d9d4ae1af85440fde90b96e1c924a26f5324a09ed77e3e9e @@ -0,0 +1,2 @@ + +de868750d18da7d704d0fa1babac3c82d9a4a593 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/glob","integrity":"sha512-t8Bf8eWp3g56FkTFCufTcXXI016Wu7qq5GRPF4qaY31/q9oIpe5LeCCVgTOjDGKT+AnAn4blzsBY8T+0AuKVIA==","time":1540366552768,"size":38592,"metadata":{"url":"https://registry.npmjs.org/glob","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:52 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["38592"],"connection":["keep-alive"],"set-cookie":["__cfduid=d301621c8972e3d48a19bcb9c2e4e4df61540366552; expires=Thu, 24-Oct-19 07:35:52 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4ea8cac975c-FRA"],"etag":["\"28a376f7b2306f7302d92809ff226a6e\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Mon, 27 Aug 2018 05:05:09 GMT"],"vary":["accept-encoding, accept"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/ee/47/02714e9e61ca394444a92772fe85340de8bd216b58f59e1af25d5618303f b/npm/.npm/_cacache/index-v5/ee/47/02714e9e61ca394444a92772fe85340de8bd216b58f59e1af25d5618303f new file mode 100644 index 0000000..fc076f2 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/ee/47/02714e9e61ca394444a92772fe85340de8bd216b58f59e1af25d5618303f @@ -0,0 +1,2 @@ + +f59de6a1e27bbfc92e2f790fec4f5c62b15f5e8c {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz","integrity":"sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==","time":1540366554679,"size":8882,"metadata":{"url":"https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:color-convert@https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["8882"],"connection":["keep-alive"],"set-cookie":["__cfduid=d1be73ae2b1dc0b01b9c543ab79043d521540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f61a1cc2ab-FRA"],"etag":["\"b4f847ea1c00c2fdf3e4ff91864b1b1f\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Tue, 28 Aug 2018 05:32:43 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/ee/51/d5ee7241a358d5c013c75b8c4496196fdfd737ce39d6310b60ee8b22e262 b/npm/.npm/_cacache/index-v5/ee/51/d5ee7241a358d5c013c75b8c4496196fdfd737ce39d6310b60ee8b22e262 new file mode 100644 index 0000000..82f0387 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/ee/51/d5ee7241a358d5c013c75b8c4496196fdfd737ce39d6310b60ee8b22e262 @@ -0,0 +1,2 @@ + +a9dbab5a16cba1cc67b9a07d6b575931aac6a78b {"key":"pacote:range-manifest:https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz:sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366553262,"size":1,"metadata":{"id":"read-pkg@1.1.0","manifest":{"name":"read-pkg","version":"1.1.0","engines":{"node":">=0.10.0"},"dependencies":{"load-json-file":"^1.0.0","normalize-package-data":"^2.3.2","path-type":"^1.0.0"},"optionalDependencies":{},"devDependencies":{"ava":"*","xo":"*"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz","_integrity":"sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=","_shasum":"f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28","_shrinkwrap":null,"bin":null,"_id":"read-pkg@1.1.0"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/f0/2a/d1e94af13c124d2707d9fe234d0b1dc1ddfa02855763a0206517f7e1d281 b/npm/.npm/_cacache/index-v5/f0/2a/d1e94af13c124d2707d9fe234d0b1dc1ddfa02855763a0206517f7e1d281 new file mode 100644 index 0000000..d7181fc --- /dev/null +++ b/npm/.npm/_cacache/index-v5/f0/2a/d1e94af13c124d2707d9fe234d0b1dc1ddfa02855763a0206517f7e1d281 @@ -0,0 +1,2 @@ + +db064c92b15932c7d0cd855364ef882534a069e6 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/colors/-/colors-1.1.2.tgz","integrity":"sha1-FopHAXVran9RoSzgyXv6KMCE7WM=","time":1540366554679,"size":8212,"metadata":{"url":"https://registry.npmjs.org/colors/-/colors-1.1.2.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:colors@https://registry.npmjs.org/colors/-/colors-1.1.2.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["8212"],"connection":["keep-alive"],"set-cookie":["__cfduid=d03a71f0c2920c45343a559974cc820751540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f62c52c2a6-FRA"],"etag":["\"857f6a9262e4da1a5ca252d74f1cf4c4\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sat, 26 May 2018 20:17:54 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/f0/58/21312e095aeb1383dd25ad625b12edc044647ebeca9946f4ab828a7442d0 b/npm/.npm/_cacache/index-v5/f0/58/21312e095aeb1383dd25ad625b12edc044647ebeca9946f4ab828a7442d0 new file mode 100644 index 0000000..1625a69 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/f0/58/21312e095aeb1383dd25ad625b12edc044647ebeca9946f4ab828a7442d0 @@ -0,0 +1,2 @@ + +a87c5457ac8b0787502b150e2ab76be205e32876 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz","integrity":"sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=","time":1540366554959,"size":1789,"metadata":{"url":"https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:strip-bom@https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["1789"],"connection":["keep-alive"],"set-cookie":["__cfduid=dd5f065bb2930ab9f1d5e74acc6c77a3a1540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f81877c2ba-FRA"],"etag":["\"3fa008815fc843fd20aa6f15330ebcfb\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 18:26:01 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/f1/1e/4c1b99bf6e9734ced0a34731e55adb37e13e5ca35cb4ec5933263cf71e98 b/npm/.npm/_cacache/index-v5/f1/1e/4c1b99bf6e9734ced0a34731e55adb37e13e5ca35cb4ec5933263cf71e98 new file mode 100644 index 0000000..70a3abd --- /dev/null +++ b/npm/.npm/_cacache/index-v5/f1/1e/4c1b99bf6e9734ced0a34731e55adb37e13e5ca35cb4ec5933263cf71e98 @@ -0,0 +1,2 @@ + +af137c73c88c2e225f19fdb97e211779122d9a3e {"key":"pacote:range-manifest:https://registry.npmjs.org/exit/-/exit-0.1.2.tgz:sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366552778,"size":1,"metadata":{"id":"exit@0.1.2","manifest":{"name":"exit","version":"0.1.2","engines":{"node":">= 0.8.0"},"dependencies":{},"optionalDependencies":{},"devDependencies":{"grunt-contrib-jshint":"~0.6.4","grunt-contrib-nodeunit":"~0.2.0","grunt-contrib-watch":"~0.5.3","grunt":"~0.4.1","which":"~1.0.5"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/exit/-/exit-0.1.2.tgz","_integrity":"sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=","_shasum":"0632638f8d877cc82107d30a0fff1a17cba1cd0c","_shrinkwrap":null,"bin":null,"_id":"exit@0.1.2"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/f1/75/91238e32e2ac4d9c4976deec39a2e6ca85c0c678a4466a50ca4412272a7c b/npm/.npm/_cacache/index-v5/f1/75/91238e32e2ac4d9c4976deec39a2e6ca85c0c678a4466a50ca4412272a7c new file mode 100644 index 0000000..493581f --- /dev/null +++ b/npm/.npm/_cacache/index-v5/f1/75/91238e32e2ac4d9c4976deec39a2e6ca85c0c678a4466a50ca4412272a7c @@ -0,0 +1,2 @@ + +936651e5a49d1b7d9164532b57a42ed6f0cf2387 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz","integrity":"sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==","time":1540366554665,"size":3808,"metadata":{"url":"https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:ansi-styles@https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["3808"],"connection":["keep-alive"],"set-cookie":["__cfduid=d2cace63d1bde5dd0b76e714594e2e9ec1540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f61f1d9738-FRA"],"etag":["\"32f5aaf7b10b2d222566c733fb1cab0a\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sat, 26 May 2018 16:54:20 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/f1/7c/24b553eccc6cf81c888554564cbe8ccdb5ee779ac35bc3a430a5a7750617 b/npm/.npm/_cacache/index-v5/f1/7c/24b553eccc6cf81c888554564cbe8ccdb5ee779ac35bc3a430a5a7750617 new file mode 100644 index 0000000..e6ba0e7 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/f1/7c/24b553eccc6cf81c888554564cbe8ccdb5ee779ac35bc3a430a5a7750617 @@ -0,0 +1,2 @@ + +6063b5978896f2f4b1b09bd4a4b82104442d5462 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/grunt-legacy-log-utils/-/grunt-legacy-log-utils-2.0.1.tgz","integrity":"sha512-o7uHyO/J+i2tXG8r2bZNlVk20vlIFJ9IEYyHMCQGfWYru8Jv3wTqKZzvV30YW9rWEjq0eP3cflQ1qWojIe9VFA==","time":1540366554951,"size":2083,"metadata":{"url":"https://registry.npmjs.org/grunt-legacy-log-utils/-/grunt-legacy-log-utils-2.0.1.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:grunt-legacy-log-utils@https://registry.npmjs.org/grunt-legacy-log-utils/-/grunt-legacy-log-utils-2.0.1.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["2083"],"connection":["keep-alive"],"set-cookie":["__cfduid=dd5f065bb2930ab9f1d5e74acc6c77a3a1540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f8085fc2ba-FRA"],"etag":["\"a43db5e73749611f5597512c0771f24a\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 02:57:31 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/f2/3c/1c79abdced79951257dabca02e144d20a105eb60113c0f31c0df105f3a18 b/npm/.npm/_cacache/index-v5/f2/3c/1c79abdced79951257dabca02e144d20a105eb60113c0f31c0df105f3a18 new file mode 100644 index 0000000..ac1791a --- /dev/null +++ b/npm/.npm/_cacache/index-v5/f2/3c/1c79abdced79951257dabca02e144d20a105eb60113c0f31c0df105f3a18 @@ -0,0 +1,2 @@ + +f8749fc6d427fbaace60e1442ceb68516f3115e8 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/color-name","integrity":"sha512-ltKQ+vstvyf284sNXgznddEYg5/hlo0a2HQNb54kYXh/jVvIx1H4Jgk7wFhRqX6fY+EVGAwM0nV6eE+hWi8Gcg==","time":1540366554141,"size":2967,"metadata":{"url":"https://registry.npmjs.org/color-name","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["2967"],"connection":["keep-alive"],"set-cookie":["__cfduid=d30ab153c77123272a42eeaa8a03b5dde1540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4f34bc09726-FRA"],"etag":["\"05197fca3e7084273316253af1661949\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Fri, 21 Sep 2018 10:49:00 GMT"],"vary":["accept-encoding, accept"],"x-amz-meta-rev":["12-1795f7f186aac2332a307b4a3cf92223"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/f2/bd/d2cf4975f2aeaff2cf9821384d314926fd8032f77cb968ad6b44489f139c b/npm/.npm/_cacache/index-v5/f2/bd/d2cf4975f2aeaff2cf9821384d314926fd8032f77cb968ad6b44489f139c new file mode 100644 index 0000000..f26fceb --- /dev/null +++ b/npm/.npm/_cacache/index-v5/f2/bd/d2cf4975f2aeaff2cf9821384d314926fd8032f77cb968ad6b44489f139c @@ -0,0 +1,2 @@ + +dfc37da69905f595dc6ab9b7e13484f311b9ce30 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz","integrity":"sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==","time":1540366554669,"size":2301,"metadata":{"url":"https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:abbrev@https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["2301"],"connection":["keep-alive"],"set-cookie":["__cfduid=d3abd8568f1d2eff909e6fcbe7233bf0d1540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f608e664c9-FRA"],"etag":["\"a2177e7d2ad8d263e6c38e6fe8dd6f79\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sat, 26 May 2018 16:03:07 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/f4/0f/7c64bd1a51b0a25b7a58489ebfee96e8d718617d5b6a39e5cea74e3bddc9 b/npm/.npm/_cacache/index-v5/f4/0f/7c64bd1a51b0a25b7a58489ebfee96e8d718617d5b6a39e5cea74e3bddc9 new file mode 100644 index 0000000..9ff8ab0 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/f4/0f/7c64bd1a51b0a25b7a58489ebfee96e8d718617d5b6a39e5cea74e3bddc9 @@ -0,0 +1,2 @@ + +3f76834645c0a09f2a56faea7fafc249a1810362 {"key":"pacote:range-manifest:https://registry.npmjs.org/coffeescript/-/coffeescript-1.10.0.tgz:sha1-56qDAZF+9iGzXYo580jc3R234z4=","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366552779,"size":1,"metadata":{"id":"coffeescript@1.10.0","manifest":{"name":"coffeescript","version":"1.10.0","engines":{"node":">=0.8.0"},"dependencies":{},"optionalDependencies":{},"devDependencies":{"uglify-js":"~2.2","jison":">=0.2.0","highlight.js":"~8.0.0","underscore":"~1.5.2","docco":"~0.7.0"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/coffeescript/-/coffeescript-1.10.0.tgz","_integrity":"sha1-56qDAZF+9iGzXYo580jc3R234z4=","_shasum":"e7aa8301917ef621b35d8a39f348dcdd1db7e33e","_shrinkwrap":null,"bin":{"coffee":"./bin/coffee","cake":"./bin/cake"},"_id":"coffeescript@1.10.0"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/f5/c8/587fc8a4c05260f4409cfabc1b98dfa369df84daae2e16a5b83263489483 b/npm/.npm/_cacache/index-v5/f5/c8/587fc8a4c05260f4409cfabc1b98dfa369df84daae2e16a5b83263489483 new file mode 100644 index 0000000..739cbb2 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/f5/c8/587fc8a4c05260f4409cfabc1b98dfa369df84daae2e16a5b83263489483 @@ -0,0 +1,2 @@ + +b5f1c9592f8c8806fffacc2b6d9916b0d72678c3 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz","integrity":"sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=","time":1540366554817,"size":9910,"metadata":{"url":"https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:parse-json@https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["9910"],"connection":["keep-alive"],"set-cookie":["__cfduid=d124e4b1016b594aa009d8069833522391540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f69f6096be-FRA"],"etag":["\"9b98b48019fa25c226348737831cf130\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 11:51:47 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/f5/ca/5c289077623fa0612494817e43dc6f389fb8afbcc9e6128a5457a10fde33 b/npm/.npm/_cacache/index-v5/f5/ca/5c289077623fa0612494817e43dc6f389fb8afbcc9e6128a5457a10fde33 new file mode 100644 index 0000000..2759630 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/f5/ca/5c289077623fa0612494817e43dc6f389fb8afbcc9e6128a5457a10fde33 @@ -0,0 +1,2 @@ + +dce7b5937b4ce6db55be3877f82853bedbbfff71 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz","integrity":"sha512-2XQACfElKi9SlVb1CYadKDXvoajPgBVPn/gOQLrTvHdElaVhr7ZEbqJaRnJLVNeaI4cMEAgVCeBMKF6MWRDCRA==","time":1540366554972,"size":1427,"metadata":{"url":"https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:spdx-exceptions@https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["1427"],"connection":["keep-alive"],"set-cookie":["__cfduid=d73f41e2de42ab9ee857924620b161eaa1540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f83e4b975c-FRA"],"etag":["\"b3ff5fb03c5d839740b0b809896543a9\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Mon, 01 Oct 2018 16:10:14 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/f6/39/6937febb8a6ecf9f79c34d2106422552064047e04e1fbd642554bf0c0df2 b/npm/.npm/_cacache/index-v5/f6/39/6937febb8a6ecf9f79c34d2106422552064047e04e1fbd642554bf0c0df2 new file mode 100644 index 0000000..8891329 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/f6/39/6937febb8a6ecf9f79c34d2106422552064047e04e1fbd642554bf0c0df2 @@ -0,0 +1,2 @@ + +6a435d91546ba6eb7e98b188b190231dc1282c94 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.1.tgz","integrity":"sha512-TfOfPcYGBB5sDuPn3deByxPhmfegAhpDYKSOXZQN81Oyrrif8ZCodOLzK3AesELnCx03kikhyDwh0pfvvQvF8w==","time":1540366554956,"size":2914,"metadata":{"url":"https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.1.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:spdx-license-ids@https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.1.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["2914"],"connection":["keep-alive"],"set-cookie":["__cfduid=d124e4b1016b594aa009d8069833522391540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f8183a96be-FRA"],"etag":["\"0555bc0f5cca6b3e80bce4de8f413a02\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Fri, 07 Sep 2018 14:57:25 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/f8/d2/4d76dca503e10daa41a20c8bb53ed6a8accba9a0dd7c96f219fda3e06791 b/npm/.npm/_cacache/index-v5/f8/d2/4d76dca503e10daa41a20c8bb53ed6a8accba9a0dd7c96f219fda3e06791 new file mode 100644 index 0000000..595e9ac --- /dev/null +++ b/npm/.npm/_cacache/index-v5/f8/d2/4d76dca503e10daa41a20c8bb53ed6a8accba9a0dd7c96f219fda3e06791 @@ -0,0 +1,2 @@ + +d55b13b12cfb92f94d7bb27bdf2c1dfe568d2952 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/grunt-legacy-log/-/grunt-legacy-log-2.0.0.tgz","integrity":"sha512-1m3+5QvDYfR1ltr8hjiaiNjddxGdQWcH0rw1iKKiQnF0+xtgTazirSTGu68RchPyh1OBng1bBUjLmX8q9NpoCw==","time":1540366554907,"size":10009,"metadata":{"url":"https://registry.npmjs.org/grunt-legacy-log/-/grunt-legacy-log-2.0.0.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:grunt-legacy-log@https://registry.npmjs.org/grunt-legacy-log/-/grunt-legacy-log-2.0.0.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["10009"],"connection":["keep-alive"],"set-cookie":["__cfduid=d9869d033067b7009920f4fd40f223fae1540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f79df3c305-FRA"],"etag":["\"339e9268753ab6787f213b708aeb6527\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 02:57:32 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/f9/ac/0def87158bd7921270df3b7f6c497519ffd759a17385567375df704bfe3e b/npm/.npm/_cacache/index-v5/f9/ac/0def87158bd7921270df3b7f6c497519ffd759a17385567375df704bfe3e new file mode 100644 index 0000000..d3bc39f --- /dev/null +++ b/npm/.npm/_cacache/index-v5/f9/ac/0def87158bd7921270df3b7f6c497519ffd759a17385567375df704bfe3e @@ -0,0 +1,2 @@ + +78f2a54abfaaf44448087bf82bf1cd1cab9daa53 {"key":"pacote:range-manifest:https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz:sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366552991,"size":1,"metadata":{"id":"decamelize@1.2.0","manifest":{"name":"decamelize","version":"1.2.0","engines":{"node":">=0.10.0"},"dependencies":{},"optionalDependencies":{},"devDependencies":{"ava":"*","xo":"*"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz","_integrity":"sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=","_shasum":"f6534d15148269b20352e7bee26f501f9a191290","_shrinkwrap":null,"bin":null,"_id":"decamelize@1.2.0"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/fa/ae/fdf2f47812ddd1d5678d6a2d8083a017a59e2b1983b3183d2f7b7f7df008 b/npm/.npm/_cacache/index-v5/fa/ae/fdf2f47812ddd1d5678d6a2d8083a017a59e2b1983b3183d2f7b7f7df008 new file mode 100644 index 0000000..5d3ad77 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/fa/ae/fdf2f47812ddd1d5678d6a2d8083a017a59e2b1983b3183d2f7b7f7df008 @@ -0,0 +1,2 @@ + +7256e71efd884baad749895227239eeed9195e51 {"key":"pacote:version-manifest:https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz:sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366554170,"size":1,"metadata":{"id":"color-name@1.1.3","manifest":{"name":"color-name","version":"1.1.3","dependencies":{},"optionalDependencies":{},"devDependencies":{},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz","_integrity":"sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=","_shasum":"a7d0558bd89c42f795dd42328f740831ca53bc25","_shrinkwrap":null,"bin":null,"_id":"color-name@1.1.3"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/fb/1a/bfe39985eff0853e5b36aca33f7ef9d19ba88137aab60a7e018f2a10b905 b/npm/.npm/_cacache/index-v5/fb/1a/bfe39985eff0853e5b36aca33f7ef9d19ba88137aab60a7e018f2a10b905 new file mode 100644 index 0000000..c756795 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/fb/1a/bfe39985eff0853e5b36aca33f7ef9d19ba88137aab60a7e018f2a10b905 @@ -0,0 +1,2 @@ + +65bce54bb6c4412ddf4dba0e903f5bbe537d810c {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/dateformat","integrity":"sha512-Na1o5USlt/NIIObNATDXVD3oBsCJvQpuqVSCxb4Pdg8ap5Oe9IZKch2gPPnXYl4MXmManmZhbcioqvQ12PALWA==","time":1540366552765,"size":6937,"metadata":{"url":"https://registry.npmjs.org/dateformat","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:52 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["6937"],"connection":["keep-alive"],"set-cookie":["__cfduid=d06c1732a8767ba97469df63446cebc7f1540366552; expires=Thu, 24-Oct-19 07:35:52 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4ea8ff997da-FRA"],"etag":["\"dbbeab2351aee7533e638601b8331476\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sat, 26 May 2018 21:47:51 GMT"],"vary":["accept-encoding, accept"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/fc/f8/655533b6b38940be3e7862e72e145d239d0e7f4e48fbc5406dda6ad7af92 b/npm/.npm/_cacache/index-v5/fc/f8/655533b6b38940be3e7862e72e145d239d0e7f4e48fbc5406dda6ad7af92 new file mode 100644 index 0000000..2d91dae --- /dev/null +++ b/npm/.npm/_cacache/index-v5/fc/f8/655533b6b38940be3e7862e72e145d239d0e7f4e48fbc5406dda6ad7af92 @@ -0,0 +1,2 @@ + +3baf575cff817a7b047a3b4e5f3ac1ba1626b511 {"key":"pacote:range-manifest:https://registry.npmjs.org/is-finite/-/is-finite-1.0.2.tgz:sha1-zGZ3aVYCvlUO8R6LSqYwU0K20Ko=","integrity":"sha512-C2EkHXwXvLsbrucJTRS3xFHv7Mf/y9klmKDxPTE8yevCoH5h8Ae69Y+/lP+ahpW91crnzgO78elOk2E6APJfIQ==","time":1540366553680,"size":1,"metadata":{"id":"is-finite@1.0.2","manifest":{"name":"is-finite","version":"1.0.2","engines":{"node":">=0.10.0"},"dependencies":{"number-is-nan":"^1.0.0"},"optionalDependencies":{},"devDependencies":{"ava":"*"},"bundleDependencies":false,"peerDependencies":{},"deprecated":false,"_resolved":"https://registry.npmjs.org/is-finite/-/is-finite-1.0.2.tgz","_integrity":"sha1-zGZ3aVYCvlUO8R6LSqYwU0K20Ko=","_shasum":"cc6677695602be550ef11e8b4aa6305342b6d0aa","_shrinkwrap":null,"bin":null,"_id":"is-finite@1.0.2"},"type":"finalized-manifest"}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/fd/2e/6ead8880f4d02a536a570e21b13b4e7c9700082833e556cd53e9e92bfd1b b/npm/.npm/_cacache/index-v5/fd/2e/6ead8880f4d02a536a570e21b13b4e7c9700082833e556cd53e9e92bfd1b new file mode 100644 index 0000000..58a5c74 --- /dev/null +++ b/npm/.npm/_cacache/index-v5/fd/2e/6ead8880f4d02a536a570e21b13b4e7c9700082833e556cd53e9e92bfd1b @@ -0,0 +1,2 @@ + +b57f8720c77ec387953f0185f18786e9b294a340 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz","integrity":"sha1-tdRU3CGZriJWmfNGfloH87lVuv0=","time":1540366554811,"size":1751,"metadata":{"url":"https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["tarball"],"pacote-pkg-id":["registry:has-flag@https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:54 GMT"],"content-type":["application/octet-stream"],"content-length":["1751"],"connection":["keep-alive"],"set-cookie":["__cfduid=df67e5ef319aa7f039fce7c6b156185dd1540366554; expires=Thu, 24-Oct-19 07:35:54 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=432000"],"accept-ranges":["bytes"],"cf-ray":["46eac4f69b9e236c-FRA"],"etag":["\"1fa1fa951639c7058277abcecca86922\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Sun, 27 May 2018 03:34:16 GMT"],"vary":["Accept-Encoding"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/_cacache/index-v5/ff/d3/eca629ba696cac5a91e13f61bb768d7cbf82072f798d17071572ab3943f2 b/npm/.npm/_cacache/index-v5/ff/d3/eca629ba696cac5a91e13f61bb768d7cbf82072f798d17071572ab3943f2 new file mode 100644 index 0000000..4b369de --- /dev/null +++ b/npm/.npm/_cacache/index-v5/ff/d3/eca629ba696cac5a91e13f61bb768d7cbf82072f798d17071572ab3943f2 @@ -0,0 +1,2 @@ + +9facab5b6b3df3f6e20852394109ecafbd9904fb {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/inherits","integrity":"sha512-IYLqxPg+UPO2qovqVhxd/r3B1mlB4tp4WvQG4EXeVqD8QiA0yn+iq1+pkCLGuGAgPrSFPOhfFfJrlshLjZ5zIA==","time":1540366553739,"size":1494,"metadata":{"url":"https://registry.npmjs.org/inherits","reqHeaders":{"connection":["keep-alive"],"user-agent":["npm/6.4.1 node/v8.10.0 linux x64"],"npm-in-ci":["false"],"npm-scope":[""],"npm-session":["40184fd56f065db3"],"referer":["install grunt"],"pacote-req-type":["packument"],"pacote-pkg-id":["registry:manifest"],"accept":["application/vnd.npm.install-v1+json; q=1.0, application/json; q=0.8, */*"]},"resHeaders":{"date":["Wed, 24 Oct 2018 07:35:53 GMT"],"content-type":["application/vnd.npm.install-v1+json"],"content-length":["1494"],"connection":["keep-alive"],"set-cookie":["__cfduid=db7fad9ba0ab25aa016f38fdec4afc4c21540366553; expires=Thu, 24-Oct-19 07:35:53 GMT; path=/; domain=.registry.npmjs.org; HttpOnly"],"cf-cache-status":["HIT"],"cache-control":["max-age=300"],"accept-ranges":["bytes"],"cf-ray":["46eac4f0c90cc2a6-FRA"],"etag":["\"419f7e0699d401599186150793ffd002\""],"expect-ct":["max-age=604800, report-uri=\"https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct\""],"last-modified":["Fri, 03 Aug 2018 00:38:04 GMT"],"vary":["accept-encoding, accept"],"server":["cloudflare"],"x-fetch-attempts":["1"]}}} \ No newline at end of file diff --git a/npm/.npm/anonymous-cli-metrics.json b/npm/.npm/anonymous-cli-metrics.json new file mode 100644 index 0000000..d76691a --- /dev/null +++ b/npm/.npm/anonymous-cli-metrics.json @@ -0,0 +1 @@ +{"metricId":"09ca130d-8727-4d7b-b283-c359d8d24adf","metrics":{"from":"2018-10-24T07:35:55.468Z","to":"2018-10-24T07:35:55.468Z","successfulInstalls":1,"failedInstalls":0}} \ No newline at end of file diff --git a/npm/.npm/index-v5/34/8e/30c54cce758990bcd1b33114c4aa8a9e5a25c152ac39d9feab22b7e13e00 b/npm/.npm/index-v5/34/8e/30c54cce758990bcd1b33114c4aa8a9e5a25c152ac39d9feab22b7e13e00 new file mode 100644 index 0000000..4bd1e05 --- /dev/null +++ b/npm/.npm/index-v5/34/8e/30c54cce758990bcd1b33114c4aa8a9e5a25c152ac39d9feab22b7e13e00 @@ -0,0 +1,2 @@ + +fa1765431d85ce0a70edbe40f46641122cee2e31 {"key":"make-fetch-happen:request-cache:https://registry.npmjs.org/-/npm/v1/security/audits/quick","integrity":null,"time":1540366555463} \ No newline at end of file diff --git a/oh-my-zsh/.oh-my-zsh/CONTRIBUTING.md b/oh-my-zsh/.oh-my-zsh/CONTRIBUTING.md new file mode 100644 index 0000000..ac263fd --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/CONTRIBUTING.md @@ -0,0 +1,123 @@ +# CONTRIBUTING GUIDELINES + +Oh-My-Zsh is a community-driven project. Contribution is welcome, encouraged and appreciated. +It is also essential for the development of the project. + +These guidelines are an attempt at better addressing the huge amount of pending +issues and pull requests. Please read them closely. + +Foremost, be so kind as to [search](#use-the-search-luke). This ensures any contribution +you would make is not already covered. + +* [Issues](#reporting-issues) + * [You have a problem](#you-have-a-problem) + * [You have a suggestion](#you-have-a-suggestion) +* [Pull Requests](#submitting-pull-requests) + * [Getting started](#getting-started) + * [You have a solution](#you-have-a-solution) + * [You have an addition](#you-have-an-addition) +* [Information sources (_aka_ search)](#use-the-search-luke) + +**BONUS:** [Volunteering](#you-have-spare-time-to-volunteer) + +## Reporting Issues + +### You have a problem + +Please be so kind as to [search](#use-the-search-luke) for any open issue already covering +your problem. + +If you find one, comment on it so we can know there are more people experiencing it. + +If not, look at the [Troubleshooting](https://github.com/robbyrussell/oh-my-zsh/wiki/Troubleshooting) +page for instructions on how to gather data to better debug your problem. + +Then, you can go ahead and create an issue with as much detail as you can provide. +It should include the data gathered as indicated above, along with: + +1. How to reproduce the problem +2. What the correct behavior should be +3. What the actual behavior is + +Please copy to anyone relevant (_eg_ plugin maintainers) by mentioning their GitHub handle +(starting with `@`) in your message. + +We will do our very best to help you. + +### You have a suggestion + +Please be so kind as to [search](#use-the-search-luke) for any open issue already covering +your suggestion. + +If you find one, comment on it so we can know there are more people supporting it. + +If not, you can go ahead and create an issue. Please copy to anyone relevant (_eg_ plugin +maintainers) by mentioning their GitHub handle (starting with `@`) in your message. + +## Submitting Pull Requests + +### Getting started + +You should be familiar with the basics of +[contributing on GitHub](https://help.github.com/articles/using-pull-requests) and have a fork +[properly set up](https://github.com/robbyrussell/oh-my-zsh/wiki/Contribution-Technical-Practices). + +You MUST always create PRs with _a dedicated branch_ based on the latest upstream tree. + +If you create your own PR, please make sure you do it right. Also be so kind as to reference +any issue that would be solved in the PR description body, +[for instance](https://help.github.com/articles/closing-issues-via-commit-messages/) +_"Fixes #XXXX"_ for issue number XXXX. + +### You have a solution + +Please be so kind as to [search](#use-the-search-luke) for any open issue already covering +your [problem](#you-have-a-problem), and any pending/merged/rejected PR covering your solution. + +If the solution is already reported, try it out and +1 the pull request if the +solution works ok. On the other hand, if you think your solution is better, post +it with a reference to the other one so we can have both solutions to compare. + +If not, then go ahead and submit a PR. Please copy to anyone relevant (e.g. plugin +maintainers) by mentioning their GitHub handle (starting with `@`) in your message. + +### You have an addition + +Please [do not](https://github.com/robbyrussell/oh-my-zsh/wiki/Themes#dont-send-us-your-theme-for-now) +send themes for now. + +Please be so kind as to [search](#use-the-search-luke) for any pending, merged or rejected Pull Requests +covering or related to what you want to add. + +If you find one, try it out and work with the author on a common solution. + +If not, then go ahead and submit a PR. Please copy to anyone relevant (_eg_ plugin +maintainers) by mentioning their GitHub handle (starting with `@`) in your message. + +For any extensive change, _eg_ a new plugin, you will have to find testers to +1 your PR. + +---- + +## Use the Search, Luke + +_May the Force (of past experiences) be with you_ + +GitHub offers [many search features](https://help.github.com/articles/searching-github/) +to help you check whether a similar contribution to yours already exists. Please search +before making any contribution, it avoids duplicates and eases maintenance. Trust me, +that works 90% of the time. + +You can also take a look at the [FAQ](https://github.com/robbyrussell/oh-my-zsh/wiki/FAQ) +to be sure your contribution has not already come up. + +If all fails, your thing has probably not been reported yet, so you can go ahead +and [create an issue](#reporting-issues) or [submit a PR](#submitting-pull-requests). + +---- + +### You have spare time to volunteer + +Very nice!! :) + +Please have a look at the [Volunteer](https://github.com/robbyrussell/oh-my-zsh/wiki/Volunteers) +page for instructions on where to start and more. diff --git a/oh-my-zsh/.oh-my-zsh/LICENSE.txt b/oh-my-zsh/.oh-my-zsh/LICENSE.txt new file mode 100644 index 0000000..7af38f2 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/LICENSE.txt @@ -0,0 +1,22 @@ +The MIT License (MIT) + +Copyright (c) 2009-2018 Robby Russell and contributors +See the full list at https://github.com/robbyrussell/oh-my-zsh/contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/oh-my-zsh/.oh-my-zsh/README.md b/oh-my-zsh/.oh-my-zsh/README.md new file mode 100644 index 0000000..b3651a9 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/README.md @@ -0,0 +1,251 @@ +

+ Oh My Zsh +

+ +Oh My Zsh is an open source, community-driven framework for managing your [zsh](https://www.zsh.org/) configuration. + +Sounds boring. Let's try again. + +__Oh My Zsh will not make you a 10x developer...but you might feel like one.__ + +Once installed, your terminal shell will become the talk of the town _or your money back!_ With each keystroke in your command prompt, you'll take advantage of the hundreds of powerful plugins and beautiful themes. Strangers will come up to you in cafés and ask you, _"that is amazing! are you some sort of genius?"_ + +Finally, you'll begin to get the sort of attention that you have always felt you deserved. ...or maybe you'll use the time that you're saving to start flossing more often. 😬 + +To learn more, visit [ohmyz.sh](https://ohmyz.sh) and follow [@ohmyzsh](https://twitter.com/ohmyzsh) on Twitter. + +## Getting Started + +### Prerequisites + +__Disclaimer:__ _Oh My Zsh works best on macOS and Linux._ + +* Unix-like operating system (macOS or Linux) +* [Zsh](https://www.zsh.org) should be installed (v4.3.9 or more recent). If not pre-installed (`zsh --version` to confirm), check the following instruction here: [Installing ZSH](https://github.com/robbyrussell/oh-my-zsh/wiki/Installing-ZSH) +* `curl` or `wget` should be installed +* `git` should be installed + +### Basic Installation + +Oh My Zsh is installed by running one of the following commands in your terminal. You can install this via the command-line with either `curl` or `wget`. + +#### via curl + +```shell +sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" +``` + +#### via wget + +```shell +sh -c "$(wget https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)" +``` + +## Using Oh My Zsh + +### Plugins + +Oh My Zsh comes with a shitload of plugins to take advantage of. You can take a look in the [plugins](https://github.com/robbyrussell/oh-my-zsh/tree/master/plugins) directory and/or the [wiki](https://github.com/robbyrussell/oh-my-zsh/wiki/Plugins) to see what's currently available. + +#### Enabling Plugins + +Once you spot a plugin (or several) that you'd like to use with Oh My Zsh, you'll need to enable them in the `.zshrc` file. You'll find the zshrc file in your `$HOME` directory. Open it with your favorite text editor and you'll see a spot to list all the plugins you want to load. + +```shell +vi ~/.zshrc +``` + +For example, this might begin to look like this: + +```shell +plugins=( + git + bundler + dotenv + osx + rake + rbenv + ruby +) +``` + +#### Using Plugins + +Most plugins (should! we're working on this) include a __README__, which documents how to use them. + +### Themes + +We'll admit it. Early in the Oh My Zsh world, we may have gotten a bit too theme happy. We have over one hundred themes now bundled. Most of them have [screenshots](https://wiki.github.com/robbyrussell/oh-my-zsh/themes) on the wiki. Check them out! + +#### Selecting a Theme + +_Robby's theme is the default one. It's not the fanciest one. It's not the simplest one. It's just the right one (for him)._ + +Once you find a theme that you'd like to use, you will need to edit the `~/.zshrc` file. You'll see an environment variable (all caps) in there that looks like: + +```shell +ZSH_THEME="robbyrussell" +``` + +To use a different theme, simply change the value to match the name of your desired theme. For example: + +```shell +ZSH_THEME="agnoster" # (this is one of the fancy ones) +# see https://github.com/robbyrussell/oh-my-zsh/wiki/Themes#agnoster +``` + +_Note: many themes require installing the [Powerline Fonts](https://github.com/powerline/fonts) in order to render properly._ + +Open up a new terminal window and your prompt should look something like this: + +![Agnoster theme](https://cloud.githubusercontent.com/assets/2618447/6316862/70f58fb6-ba03-11e4-82c9-c083bf9a6574.png) + +In case you did not find a suitable theme for your needs, please have a look at the wiki for [more of them](https://github.com/robbyrussell/oh-my-zsh/wiki/External-themes). + +If you're feeling feisty, you can let the computer select one randomly for you each time you open a new terminal window. + + +```shell +ZSH_THEME="random" # (...please let it be pie... please be some pie..) +``` + +And if you want to pick random theme from a list of your favorite themes: + +```shell +ZSH_THEME_RANDOM_CANDIDATES=( + "robbyrussell" + "agnoster" +) +``` + +## Advanced Topics + +If you're the type that likes to get their hands dirty, these sections might resonate. + +### Advanced Installation + +Some users may want to change the default path, or manually install Oh My Zsh. + +#### Custom Directory + +The default location is `~/.oh-my-zsh` (hidden in your home directory) + +If you'd like to change the install directory with the `ZSH` environment variable, either by running `export ZSH=/your/path` before installing, or by setting it before the end of the install pipeline like this: + +```shell +export ZSH="$HOME/.dotfiles/oh-my-zsh"; sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)" +``` + +#### Manual Installation + +##### 1. Clone the repository: + +```shell +git clone https://github.com/robbyrussell/oh-my-zsh.git ~/.oh-my-zsh +``` + +##### 2. *Optionally*, backup your existing `~/.zshrc` file: + +```shell +cp ~/.zshrc ~/.zshrc.orig +``` + +##### 3. Create a new zsh configuration file + +You can create a new zsh config file by copying the template that we have included for you. + +```shell +cp ~/.oh-my-zsh/templates/zshrc.zsh-template ~/.zshrc +``` + +##### 4. Change your default shell + +```shell +chsh -s /bin/zsh +``` + +##### 5. Initialize your new zsh configuration + +Once you open up a new terminal window, it should load zsh with Oh My Zsh's configuration. + +### Installation Problems + +If you have any hiccups installing, here are a few common fixes. + +* You _might_ need to modify your `PATH` in `~/.zshrc` if you're not able to find some commands after switching to `oh-my-zsh`. +* If you installed manually or changed the install location, check the `ZSH` environment variable in `~/.zshrc`. + +### Custom Plugins and Themes + +If you want to override any of the default behaviors, just add a new file (ending in `.zsh`) in the `custom/` directory. + +If you have many functions that go well together, you can put them as a `XYZ.plugin.zsh` file in the `custom/plugins/` directory and then enable this plugin. + +If you would like to override the functionality of a plugin distributed with Oh My Zsh, create a plugin of the same name in the `custom/plugins/` directory and it will be loaded instead of the one in `plugins/`. + +## Getting Updates + +By default, you will be prompted to check for upgrades every few weeks. If you would like `oh-my-zsh` to automatically upgrade itself without prompting you, set the following in your `~/.zshrc`: + +```shell +DISABLE_UPDATE_PROMPT=true +``` + +To disable automatic upgrades, set the following in your `~/.zshrc`: + +```shell +DISABLE_AUTO_UPDATE=true +``` + +### Manual Updates + +If you'd like to upgrade at any point in time (maybe someone just released a new plugin and you don't want to wait a week?) you just need to run: + +```shell +upgrade_oh_my_zsh +``` + +Magic! 🎉 + +## Uninstalling Oh My Zsh + +Oh My Zsh isn't for everyone. We'll miss you, but we want to make this an easy breakup. + +If you want to uninstall `oh-my-zsh`, just run `uninstall_oh_my_zsh` from the command-line. It will remove itself and revert your previous `bash` or `zsh` configuration. + +## Contributing + +I'm far from being a [Zsh](https://www.zsh.org/) expert and suspect there are many ways to improve – if you have ideas on how to make the configuration easier to maintain (and faster), don't hesitate to fork and send pull requests! + +We also need people to test out pull-requests. So take a look through [the open issues](https://github.com/robbyrussell/oh-my-zsh/issues) and help where you can. + +### Do NOT send us themes + +We have (more than) enough themes for the time being. Please add your theme to the [external themes](https://github.com/robbyrussell/oh-my-zsh/wiki/External-themes) wiki page. + +## Contributors + +Oh My Zsh has a vibrant community of happy users and delightful contributors. Without all the time and help from our contributors, it wouldn't be so awesome. + +Thank you so much! + +## Follow Us + +We're on the social media. + +* [@ohmyzsh](https://twitter.com/ohmyzsh) on Twitter. You should follow it. +* [Oh My Zsh](https://www.facebook.com/Oh-My-Zsh-296616263819290/) on Facebook. + +## Merchandise + +We have [stickers](https://shop.planetargon.com/products/ohmyzsh-stickers-set-of-3-stickers) and [shirts](https://shop.planetargon.com/products/ohmyzsh-t-shirts) for you to show off your love of Oh My Zsh. Again, this will help you become the talk of the town! + +## License + +Oh My Zsh is released under the [MIT license](LICENSE.txt). + +## About Planet Argon + +![Planet Argon](https://pa-github-assets.s3.amazonaws.com/PARGON_logo_digital_COL-small.jpg) + +Oh My Zsh was started by the team at [Planet Argon](https://www.planetargon.com/?utm_source=github), a [Ruby on Rails development agency](https://www.planetargon.com/skills/ruby-on-rails-development?utm_source=github). Check out our [other open source projects](https://www.planetargon.com/open-source?utm_source=github). diff --git a/oh-my-zsh/.oh-my-zsh/cache/.gitkeep b/oh-my-zsh/.oh-my-zsh/cache/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/oh-my-zsh/.oh-my-zsh/cache/.zsh-update b/oh-my-zsh/.oh-my-zsh/cache/.zsh-update new file mode 100644 index 0000000..18989a9 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/cache/.zsh-update @@ -0,0 +1 @@ +LAST_EPOCH=17853 diff --git a/oh-my-zsh/.oh-my-zsh/custom/example.zsh b/oh-my-zsh/.oh-my-zsh/custom/example.zsh new file mode 100644 index 0000000..c505a96 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/custom/example.zsh @@ -0,0 +1,10 @@ +# You can put files here to add functionality separated per file, which +# will be ignored by git. +# Files on the custom/ directory will be automatically loaded by the init +# script, in alphabetical order. + +# For example: add yourself some shortcuts to projects you often work on. +# +# brainstormr=~/Projects/development/planetargon/brainstormr +# cd $brainstormr +# diff --git a/oh-my-zsh/.oh-my-zsh/custom/plugins/example/example.plugin.zsh b/oh-my-zsh/.oh-my-zsh/custom/plugins/example/example.plugin.zsh new file mode 100644 index 0000000..406f274 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/custom/plugins/example/example.plugin.zsh @@ -0,0 +1,2 @@ +# Add your own custom plugins in the custom/plugins directory. Plugins placed +# here will override ones with the same name in the main plugins directory. diff --git a/oh-my-zsh/.oh-my-zsh/custom/themes/example.zsh-theme b/oh-my-zsh/.oh-my-zsh/custom/themes/example.zsh-theme new file mode 100644 index 0000000..ef8f1c6 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/custom/themes/example.zsh-theme @@ -0,0 +1,4 @@ +# Put your custom themes in this folder. +# Example: + +PROMPT="%{$fg[red]%}%n%{$reset_color%}@%{$fg[blue]%}%m %{$fg[yellow]%}%~ %{$reset_color%}%% " diff --git a/oh-my-zsh/.oh-my-zsh/custom/themes/spaceship-prompt b/oh-my-zsh/.oh-my-zsh/custom/themes/spaceship-prompt new file mode 160000 index 0000000..2e36433 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/custom/themes/spaceship-prompt @@ -0,0 +1 @@ +Subproject commit 2e36433aa0aae917986d52b66822be962b3791a7 diff --git a/oh-my-zsh/.oh-my-zsh/custom/themes/spaceship.zsh-theme b/oh-my-zsh/.oh-my-zsh/custom/themes/spaceship.zsh-theme new file mode 120000 index 0000000..11f9eb4 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/custom/themes/spaceship.zsh-theme @@ -0,0 +1 @@ +/home/fosslinux/.oh-my-zsh/custom/themes/spaceship-prompt/spaceship.zsh-theme \ No newline at end of file diff --git a/oh-my-zsh/.oh-my-zsh/lib/bzr.zsh b/oh-my-zsh/.oh-my-zsh/lib/bzr.zsh new file mode 100644 index 0000000..005a165 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/lib/bzr.zsh @@ -0,0 +1,10 @@ +## Bazaar integration +## Just works with the GIT integration just add $(bzr_prompt_info) to the PROMPT +function bzr_prompt_info() { + BZR_CB=`bzr nick 2> /dev/null | grep -v "ERROR" | cut -d ":" -f2 | awk -F / '{print "bzr::"$1}'` + if [ -n "$BZR_CB" ]; then + BZR_DIRTY="" + [[ -n `bzr status` ]] && BZR_DIRTY=" %{$fg[red]%} * %{$fg[green]%}" + echo "$ZSH_THEME_SCM_PROMPT_PREFIX$BZR_CB$BZR_DIRTY$ZSH_THEME_GIT_PROMPT_SUFFIX" + fi +} \ No newline at end of file diff --git a/oh-my-zsh/.oh-my-zsh/lib/clipboard.zsh b/oh-my-zsh/.oh-my-zsh/lib/clipboard.zsh new file mode 100644 index 0000000..2c93d1b --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/lib/clipboard.zsh @@ -0,0 +1,86 @@ +# System clipboard integration +# +# This file has support for doing system clipboard copy and paste operations +# from the command line in a generic cross-platform fashion. +# +# On OS X and Windows, the main system clipboard or "pasteboard" is used. On other +# Unix-like OSes, this considers the X Windows CLIPBOARD selection to be the +# "system clipboard", and the X Windows `xclip` command must be installed. + +# clipcopy - Copy data to clipboard +# +# Usage: +# +# | clipcopy - copies stdin to clipboard +# +# clipcopy - copies a file's contents to clipboard +# +function clipcopy() { + emulate -L zsh + local file=$1 + if [[ $OSTYPE == darwin* ]]; then + if [[ -z $file ]]; then + pbcopy + else + cat $file | pbcopy + fi + elif [[ $OSTYPE == cygwin* ]]; then + if [[ -z $file ]]; then + cat > /dev/clipboard + else + cat $file > /dev/clipboard + fi + else + if (( $+commands[xclip] )); then + if [[ -z $file ]]; then + xclip -in -selection clipboard + else + xclip -in -selection clipboard $file + fi + elif (( $+commands[xsel] )); then + if [[ -z $file ]]; then + xsel --clipboard --input + else + cat "$file" | xsel --clipboard --input + fi + else + print "clipcopy: Platform $OSTYPE not supported or xclip/xsel not installed" >&2 + return 1 + fi + fi +} + +# clippaste - "Paste" data from clipboard to stdout +# +# Usage: +# +# clippaste - writes clipboard's contents to stdout +# +# clippaste | - pastes contents and pipes it to another process +# +# clippaste > - paste contents to a file +# +# Examples: +# +# # Pipe to another process +# clippaste | grep foo +# +# # Paste to a file +# clippaste > file.txt +function clippaste() { + emulate -L zsh + if [[ $OSTYPE == darwin* ]]; then + pbpaste + elif [[ $OSTYPE == cygwin* ]]; then + cat /dev/clipboard + else + if (( $+commands[xclip] )); then + xclip -out -selection clipboard + elif (( $+commands[xsel] )); then + xsel --clipboard --output + else + print "clipcopy: Platform $OSTYPE not supported or xclip/xsel not installed" >&2 + return 1 + fi + fi +} diff --git a/oh-my-zsh/.oh-my-zsh/lib/compfix.zsh b/oh-my-zsh/.oh-my-zsh/lib/compfix.zsh new file mode 100644 index 0000000..68decc1 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/lib/compfix.zsh @@ -0,0 +1,44 @@ +# Handle completions insecurities (i.e., completion-dependent directories with +# insecure ownership or permissions) by: +# +# * Human-readably notifying the user of these insecurities. +function handle_completion_insecurities() { + # List of the absolute paths of all unique insecure directories, split on + # newline from compaudit()'s output resembling: + # + # There are insecure directories: + # /usr/share/zsh/site-functions + # /usr/share/zsh/5.0.6/functions + # /usr/share/zsh + # /usr/share/zsh/5.0.6 + # + # Since the ignorable first line is printed to stderr and thus not captured, + # stderr is squelched to prevent this output from leaking to the user. + local -aU insecure_dirs + insecure_dirs=( ${(f@):-"$(compaudit 2>/dev/null)"} ) + + # If no such directories exist, get us out of here. + (( ! ${#insecure_dirs} )) && return + + # List ownership and permissions of all insecure directories. + print "[oh-my-zsh] Insecure completion-dependent directories detected:" + ls -ld "${(@)insecure_dirs}" + + cat < +# +# Usage: +# +# omz_diagnostic_dump [-v] [-V] [file] +# +# NOTE: This is a work in progress. Its interface and behavior are going to change, +# and probably in non-back-compatible ways. +# +# Outputs a bunch of information about the state and configuration of +# oh-my-zsh, zsh, and the user's system. This is intended to provide a +# bunch of context for diagnosing your own or a third party's problems, and to +# be suitable for posting to public bug reports. +# +# The output is human-readable and its format may change over time. It is not +# suitable for parsing. All the output is in one single file so it can be posted +# as a gist or bug comment on GitHub. GitHub doesn't support attaching tarballs +# or other files to bugs; otherwise, this would probably have an option to produce +# tarballs that contain copies of the config and customization files instead of +# catting them all in to one file. +# +# This is intended to be widely portable, and run anywhere that oh-my-zsh does. +# Feel free to report any portability issues as bugs. +# +# This is written in a defensive style so it still works (and can detect) cases when +# basic functionality like echo and which have been redefined. In particular, almost +# everything is invoked with "builtin" or "command", to work in the face of user +# redefinitions. +# +# OPTIONS +# +# [file] Specifies the output file. If not given, a file in the current directory +# is selected automatically. +# +# -v Increase the verbosity of the dump output. May be specified multiple times. +# Verbosity levels: +# 0 - Basic info, shell state, omz configuration, git state +# 1 - (default) Adds key binding info and configuration file contents +# 2 - Adds zcompdump file contents +# +# -V Reduce the verbosity of the dump output. May be specified multiple times. +# +# TODO: +# * Multi-file capture +# * Add automatic gist uploading +# * Consider whether to move default output file location to TMPDIR. More robust +# but less user friendly. +# + +autoload -Uz is-at-least + +function omz_diagnostic_dump() { + emulate -L zsh + + builtin echo "Generating diagnostic dump; please be patient..." + + local thisfcn=omz_diagnostic_dump + local -A opts + local opt_verbose opt_noverbose opt_outfile + local timestamp=$(date +%Y%m%d-%H%M%S) + local outfile=omz_diagdump_$timestamp.txt + builtin zparseopts -A opts -D -- "v+=opt_verbose" "V+=opt_noverbose" + local verbose n_verbose=${#opt_verbose} n_noverbose=${#opt_noverbose} + (( verbose = 1 + n_verbose - n_noverbose )) + + if [[ ${#*} > 0 ]]; then + opt_outfile=$1 + fi + if [[ ${#*} > 1 ]]; then + builtin echo "$thisfcn: error: too many arguments" >&2 + return 1 + fi + if [[ -n "$opt_outfile" ]]; then + outfile="$opt_outfile" + fi + + # Always write directly to a file so terminal escape sequences are + # captured cleanly + _omz_diag_dump_one_big_text &> "$outfile" + if [[ $? != 0 ]]; then + builtin echo "$thisfcn: error while creating diagnostic dump; see $outfile for details" + fi + + builtin echo + builtin echo Diagnostic dump file created at: "$outfile" + builtin echo + builtin echo To share this with OMZ developers, post it as a gist on GitHub + builtin echo at "https://gist.github.com" and share the link to the gist. + builtin echo + builtin echo "WARNING: This dump file contains all your zsh and omz configuration files," + builtin echo "so don't share it publicly if there's sensitive information in them." + builtin echo + +} + +function _omz_diag_dump_one_big_text() { + local program programs progfile md5 + + builtin echo oh-my-zsh diagnostic dump + builtin echo + builtin echo $outfile + builtin echo + + # Basic system and zsh information + command date + command uname -a + builtin echo OSTYPE=$OSTYPE + builtin echo ZSH_VERSION=$ZSH_VERSION + builtin echo User: $USER + builtin echo umask: $(umask) + builtin echo + _omz_diag_dump_os_specific_version + builtin echo + + # Installed programs + programs=(sh zsh ksh bash sed cat grep ls find git posh) + local progfile="" extra_str="" sha_str="" + for program in $programs; do + extra_str="" sha_str="" + progfile=$(builtin which $program) + if [[ $? == 0 ]]; then + if [[ -e $progfile ]]; then + if builtin whence shasum &>/dev/null; then + sha_str=($(command shasum $progfile)) + sha_str=$sha_str[1] + extra_str+=" SHA $sha_str" + fi + if [[ -h "$progfile" ]]; then + extra_str+=" ( -> ${progfile:A} )" + fi + fi + builtin printf '%-9s %-20s %s\n' "$program is" "$progfile" "$extra_str" + else + builtin echo "$program: not found" + fi + done + builtin echo + builtin echo Command Versions: + builtin echo "zsh: $(zsh --version)" + builtin echo "this zsh session: $ZSH_VERSION" + builtin echo "bash: $(bash --version | command grep bash)" + builtin echo "git: $(git --version)" + builtin echo "grep: $(grep --version)" + builtin echo + + # Core command definitions + _omz_diag_dump_check_core_commands || return 1 + builtin echo + + # ZSH Process state + builtin echo Process state: + builtin echo pwd: $PWD + if builtin whence pstree &>/dev/null; then + builtin echo Process tree for this shell: + pstree -p $$ + else + ps -fT + fi + builtin set | command grep -a '^\(ZSH\|plugins\|TERM\|LC_\|LANG\|precmd\|chpwd\|preexec\|FPATH\|TTY\|DISPLAY\|PATH\)\|OMZ' + builtin echo + #TODO: Should this include `env` instead of or in addition to `export`? + builtin echo Exported: + builtin echo $(builtin export | command sed 's/=.*//') + builtin echo + builtin echo Locale: + command locale + builtin echo + + # Zsh installation and configuration + builtin echo Zsh configuration: + builtin echo setopt: $(builtin setopt) + builtin echo + builtin echo zstyle: + builtin zstyle + builtin echo + builtin echo 'compaudit output:' + compaudit + builtin echo + builtin echo '$fpath directories:' + command ls -lad $fpath + builtin echo + + # Oh-my-zsh installation + builtin echo oh-my-zsh installation: + command ls -ld ~/.z* + command ls -ld ~/.oh* + builtin echo + builtin echo oh-my-zsh git state: + (cd $ZSH && builtin echo "HEAD: $(git rev-parse HEAD)" && git remote -v && git status | command grep "[^[:space:]]") + if [[ $verbose -ge 1 ]]; then + (cd $ZSH && git reflog --date=default | command grep pull) + fi + builtin echo + if [[ -e $ZSH_CUSTOM ]]; then + local custom_dir=$ZSH_CUSTOM + if [[ -h $custom_dir ]]; then + custom_dir=$(cd $custom_dir && pwd -P) + fi + builtin echo "oh-my-zsh custom dir:" + builtin echo " $ZSH_CUSTOM ($custom_dir)" + (cd ${custom_dir:h} && command find ${custom_dir:t} -name .git -prune -o -print) + builtin echo + fi + + # Key binding and terminal info + if [[ $verbose -ge 1 ]]; then + builtin echo "bindkey:" + builtin bindkey + builtin echo + builtin echo "infocmp:" + command infocmp -L + builtin echo + fi + + # Configuration file info + local zdotdir=${ZDOTDIR:-$HOME} + builtin echo "Zsh configuration files:" + local cfgfile cfgfiles + # Some files for bash that zsh does not use are intentionally included + # to help with diagnosing behavior differences between bash and zsh + cfgfiles=( /etc/zshenv /etc/zprofile /etc/zshrc /etc/zlogin /etc/zlogout + $zdotdir/.zshenv $zdotdir/.zprofile $zdotdir/.zshrc $zdotdir/.zlogin $zdotdir/.zlogout + ~/.zsh.pre-oh-my-zsh + /etc/bashrc /etc/profile ~/.bashrc ~/.profile ~/.bash_profile ~/.bash_logout ) + command ls -lad $cfgfiles 2>&1 + builtin echo + if [[ $verbose -ge 1 ]]; then + for cfgfile in $cfgfiles; do + _omz_diag_dump_echo_file_w_header $cfgfile + done + fi + builtin echo + builtin echo "Zsh compdump files:" + local dumpfile dumpfiles + command ls -lad $zdotdir/.zcompdump* + dumpfiles=( $zdotdir/.zcompdump*(N) ) + if [[ $verbose -ge 2 ]]; then + for dumpfile in $dumpfiles; do + _omz_diag_dump_echo_file_w_header $dumpfile + done + fi + +} + +function _omz_diag_dump_check_core_commands() { + builtin echo "Core command check:" + local redefined name builtins externals reserved_words + redefined=() + # All the zsh non-module builtin commands + # These are taken from the zsh reference manual for 5.0.2 + # Commands from modules should not be included. + # (For back-compatibility, if any of these are newish, they should be removed, + # or at least made conditional on the version of the current running zsh.) + # "history" is also excluded because OMZ is known to redefine that + reserved_words=( do done esac then elif else fi for case if while function + repeat time until select coproc nocorrect foreach end '!' '[[' '{' '}' + ) + builtins=( alias autoload bg bindkey break builtin bye cd chdir command + comparguments compcall compctl compdescribe compfiles compgroups compquote comptags + comptry compvalues continue dirs disable disown echo echotc echoti emulate + enable eval exec exit false fc fg functions getln getopts hash + jobs kill let limit log logout noglob popd print printf + pushd pushln pwd r read rehash return sched set setopt shift + source suspend test times trap true ttyctl type ulimit umask unalias + unfunction unhash unlimit unset unsetopt vared wait whence where which zcompile + zle zmodload zparseopts zregexparse zstyle ) + if is-at-least 5.1; then + reserved_word+=( declare export integer float local readonly typeset ) + else + builtins+=( declare export integer float local readonly typeset ) + fi + builtins_fatal=( builtin command local ) + externals=( zsh ) + for name in $reserved_words; do + if [[ $(builtin whence -w $name) != "$name: reserved" ]]; then + builtin echo "reserved word '$name' has been redefined" + builtin which $name + redefined+=$name + fi + done + for name in $builtins; do + if [[ $(builtin whence -w $name) != "$name: builtin" ]]; then + builtin echo "builtin '$name' has been redefined" + builtin which $name + redefined+=$name + fi + done + for name in $externals; do + if [[ $(builtin whence -w $name) != "$name: command" ]]; then + builtin echo "command '$name' has been redefined" + builtin which $name + redefined+=$name + fi + done + + if [[ -n "$redefined" ]]; then + builtin echo "SOME CORE COMMANDS HAVE BEEN REDEFINED: $redefined" + else + builtin echo "All core commands are defined normally" + fi + +} + +function _omz_diag_dump_echo_file_w_header() { + local file=$1 + if [[ ( -f $file || -h $file ) ]]; then + builtin echo "========== $file ==========" + if [[ -h $file ]]; then + builtin echo "========== ( => ${file:A} ) ==========" + fi + command cat $file + builtin echo "========== end $file ==========" + builtin echo + elif [[ -d $file ]]; then + builtin echo "File '$file' is a directory" + elif [[ ! -e $file ]]; then + builtin echo "File '$file' does not exist" + else + command ls -lad "$file" + fi +} + +function _omz_diag_dump_os_specific_version() { + local osname osver version_file version_files + case "$OSTYPE" in + darwin*) + osname=$(command sw_vers -productName) + osver=$(command sw_vers -productVersion) + builtin echo "OS Version: $osname $osver build $(sw_vers -buildVersion)" + ;; + cygwin) + command systeminfo | command head -4 | command tail -2 + ;; + esac + + if builtin which lsb_release >/dev/null; then + builtin echo "OS Release: $(command lsb_release -s -d)" + fi + + version_files=( /etc/*-release(N) /etc/*-version(N) /etc/*_version(N) ) + for version_file in $version_files; do + builtin echo "$version_file:" + command cat "$version_file" + builtin echo + done +} + diff --git a/oh-my-zsh/.oh-my-zsh/lib/directories.zsh b/oh-my-zsh/.oh-my-zsh/lib/directories.zsh new file mode 100644 index 0000000..14064b8 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/lib/directories.zsh @@ -0,0 +1,30 @@ +# Changing/making/removing directory +setopt auto_pushd +setopt pushd_ignore_dups +setopt pushdminus + +alias -g ...='../..' +alias -g ....='../../..' +alias -g .....='../../../..' +alias -g ......='../../../../..' + +alias -- -='cd -' +alias 1='cd -' +alias 2='cd -2' +alias 3='cd -3' +alias 4='cd -4' +alias 5='cd -5' +alias 6='cd -6' +alias 7='cd -7' +alias 8='cd -8' +alias 9='cd -9' + +alias md='mkdir -p' +alias rd=rmdir +alias d='dirs -v | head -10' + +# List directory contents +alias lsa='ls -lah' +alias l='ls -lah' +alias ll='ls -lh' +alias la='ls -lAh' diff --git a/oh-my-zsh/.oh-my-zsh/lib/functions.zsh b/oh-my-zsh/.oh-my-zsh/lib/functions.zsh new file mode 100644 index 0000000..4ef8920 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/lib/functions.zsh @@ -0,0 +1,229 @@ +function zsh_stats() { + fc -l 1 | awk '{CMD[$2]++;count++;}END { for (a in CMD)print CMD[a] " " CMD[a]/count*100 "% " a;}' | grep -v "./" | column -c3 -s " " -t | sort -nr | nl | head -n20 +} + +function uninstall_oh_my_zsh() { + env ZSH=$ZSH sh $ZSH/tools/uninstall.sh +} + +function upgrade_oh_my_zsh() { + env ZSH=$ZSH sh $ZSH/tools/upgrade.sh +} + +function take() { + mkdir -p $@ && cd ${@:$#} +} + +function open_command() { + local open_cmd + + # define the open command + case "$OSTYPE" in + darwin*) open_cmd='open' ;; + cygwin*) open_cmd='cygstart' ;; + linux*) ! [[ $(uname -a) =~ "Microsoft" ]] && open_cmd='xdg-open' || { + open_cmd='cmd.exe /c start ""' + [[ -e "$1" ]] && { 1="$(wslpath -w "${1:a}")" || return 1 } + } ;; + msys*) open_cmd='start ""' ;; + *) echo "Platform $OSTYPE not supported" + return 1 + ;; + esac + + # don't use nohup on OSX + if [[ "$OSTYPE" == darwin* ]]; then + ${=open_cmd} "$@" &>/dev/null + else + nohup ${=open_cmd} "$@" &>/dev/null + fi +} + +# +# Get the value of an alias. +# +# Arguments: +# 1. alias - The alias to get its value from +# STDOUT: +# The value of alias $1 (if it has one). +# Return value: +# 0 if the alias was found, +# 1 if it does not exist +# +function alias_value() { + (( $+aliases[$1] )) && echo $aliases[$1] +} + +# +# Try to get the value of an alias, +# otherwise return the input. +# +# Arguments: +# 1. alias - The alias to get its value from +# STDOUT: +# The value of alias $1, or $1 if there is no alias $1. +# Return value: +# Always 0 +# +function try_alias_value() { + alias_value "$1" || echo "$1" +} + +# +# Set variable "$1" to default value "$2" if "$1" is not yet defined. +# +# Arguments: +# 1. name - The variable to set +# 2. val - The default value +# Return value: +# 0 if the variable exists, 3 if it was set +# +function default() { + test `typeset +m "$1"` && return 0 + typeset -g "$1"="$2" && return 3 +} + +# +# Set environment variable "$1" to default value "$2" if "$1" is not yet defined. +# +# Arguments: +# 1. name - The env variable to set +# 2. val - The default value +# Return value: +# 0 if the env variable exists, 3 if it was set +# +function env_default() { + env | grep -q "^$1=" && return 0 + export "$1=$2" && return 3 +} + + +# Required for $langinfo +zmodload zsh/langinfo + +# URL-encode a string +# +# Encodes a string using RFC 2396 URL-encoding (%-escaped). +# See: https://www.ietf.org/rfc/rfc2396.txt +# +# By default, reserved characters and unreserved "mark" characters are +# not escaped by this function. This allows the common usage of passing +# an entire URL in, and encoding just special characters in it, with +# the expectation that reserved and mark characters are used appropriately. +# The -r and -m options turn on escaping of the reserved and mark characters, +# respectively, which allows arbitrary strings to be fully escaped for +# embedding inside URLs, where reserved characters might be misinterpreted. +# +# Prints the encoded string on stdout. +# Returns nonzero if encoding failed. +# +# Usage: +# omz_urlencode [-r] [-m] [-P] +# +# -r causes reserved characters (;/?:@&=+$,) to be escaped +# +# -m causes "mark" characters (_.!~*''()-) to be escaped +# +# -P causes spaces to be encoded as '%20' instead of '+' +function omz_urlencode() { + emulate -L zsh + zparseopts -D -E -a opts r m P + + local in_str=$1 + local url_str="" + local spaces_as_plus + if [[ -z $opts[(r)-P] ]]; then spaces_as_plus=1; fi + local str="$in_str" + + # URLs must use UTF-8 encoding; convert str to UTF-8 if required + local encoding=$langinfo[CODESET] + local safe_encodings + safe_encodings=(UTF-8 utf8 US-ASCII) + if [[ -z ${safe_encodings[(r)$encoding]} ]]; then + str=$(echo -E "$str" | iconv -f $encoding -t UTF-8) + if [[ $? != 0 ]]; then + echo "Error converting string from $encoding to UTF-8" >&2 + return 1 + fi + fi + + # Use LC_CTYPE=C to process text byte-by-byte + local i byte ord LC_ALL=C + export LC_ALL + local reserved=';/?:@&=+$,' + local mark='_.!~*''()-' + local dont_escape="[A-Za-z0-9" + if [[ -z $opts[(r)-r] ]]; then + dont_escape+=$reserved + fi + # $mark must be last because of the "-" + if [[ -z $opts[(r)-m] ]]; then + dont_escape+=$mark + fi + dont_escape+="]" + + # Implemented to use a single printf call and avoid subshells in the loop, + # for performance (primarily on Windows). + local url_str="" + for (( i = 1; i <= ${#str}; ++i )); do + byte="$str[i]" + if [[ "$byte" =~ "$dont_escape" ]]; then + url_str+="$byte" + else + if [[ "$byte" == " " && -n $spaces_as_plus ]]; then + url_str+="+" + else + ord=$(( [##16] #byte )) + url_str+="%$ord" + fi + fi + done + echo -E "$url_str" +} + +# URL-decode a string +# +# Decodes a RFC 2396 URL-encoded (%-escaped) string. +# This decodes the '+' and '%' escapes in the input string, and leaves +# other characters unchanged. Does not enforce that the input is a +# valid URL-encoded string. This is a convenience to allow callers to +# pass in a full URL or similar strings and decode them for human +# presentation. +# +# Outputs the encoded string on stdout. +# Returns nonzero if encoding failed. +# +# Usage: +# omz_urldecode - prints decoded string followed by a newline +function omz_urldecode { + emulate -L zsh + local encoded_url=$1 + + # Work bytewise, since URLs escape UTF-8 octets + local caller_encoding=$langinfo[CODESET] + local LC_ALL=C + export LC_ALL + + # Change + back to ' ' + local tmp=${encoded_url:gs/+/ /} + # Protect other escapes to pass through the printf unchanged + tmp=${tmp:gs/\\/\\\\/} + # Handle %-escapes by turning them into `\xXX` printf escapes + tmp=${tmp:gs/%/\\x/} + local decoded + eval "decoded=\$'$tmp'" + + # Now we have a UTF-8 encoded string in the variable. We need to re-encode + # it if caller is in a non-UTF-8 locale. + local safe_encodings + safe_encodings=(UTF-8 utf8 US-ASCII) + if [[ -z ${safe_encodings[(r)$caller_encoding]} ]]; then + decoded=$(echo -E "$decoded" | iconv -f UTF-8 -t $caller_encoding) + if [[ $? != 0 ]]; then + echo "Error converting string from UTF-8 to $caller_encoding" >&2 + return 1 + fi + fi + + echo -E "$decoded" +} diff --git a/oh-my-zsh/.oh-my-zsh/lib/git.zsh b/oh-my-zsh/.oh-my-zsh/lib/git.zsh new file mode 100644 index 0000000..b923731 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/lib/git.zsh @@ -0,0 +1,221 @@ +# Outputs current branch info in prompt format +function git_prompt_info() { + local ref + if [[ "$(command git config --get oh-my-zsh.hide-status 2>/dev/null)" != "1" ]]; then + ref=$(command git symbolic-ref HEAD 2> /dev/null) || \ + ref=$(command git rev-parse --short HEAD 2> /dev/null) || return 0 + echo "$ZSH_THEME_GIT_PROMPT_PREFIX${ref#refs/heads/}$(parse_git_dirty)$ZSH_THEME_GIT_PROMPT_SUFFIX" + fi +} + +# Checks if working tree is dirty +function parse_git_dirty() { + local STATUS='' + local -a FLAGS + FLAGS=('--porcelain') + if [[ "$(command git config --get oh-my-zsh.hide-dirty)" != "1" ]]; then + if [[ $POST_1_7_2_GIT -gt 0 ]]; then + FLAGS+='--ignore-submodules=dirty' + fi + if [[ "$DISABLE_UNTRACKED_FILES_DIRTY" == "true" ]]; then + FLAGS+='--untracked-files=no' + fi + STATUS=$(command git status ${FLAGS} 2> /dev/null | tail -n1) + fi + if [[ -n $STATUS ]]; then + echo "$ZSH_THEME_GIT_PROMPT_DIRTY" + else + echo "$ZSH_THEME_GIT_PROMPT_CLEAN" + fi +} + +# Gets the difference between the local and remote branches +function git_remote_status() { + local remote ahead behind git_remote_status git_remote_status_detailed + remote=${$(command git rev-parse --verify ${hook_com[branch]}@{upstream} --symbolic-full-name 2>/dev/null)/refs\/remotes\/} + if [[ -n ${remote} ]]; then + ahead=$(command git rev-list ${hook_com[branch]}@{upstream}..HEAD 2>/dev/null | wc -l) + behind=$(command git rev-list HEAD..${hook_com[branch]}@{upstream} 2>/dev/null | wc -l) + + if [[ $ahead -eq 0 ]] && [[ $behind -eq 0 ]]; then + git_remote_status="$ZSH_THEME_GIT_PROMPT_EQUAL_REMOTE" + elif [[ $ahead -gt 0 ]] && [[ $behind -eq 0 ]]; then + git_remote_status="$ZSH_THEME_GIT_PROMPT_AHEAD_REMOTE" + git_remote_status_detailed="$ZSH_THEME_GIT_PROMPT_AHEAD_REMOTE_COLOR$ZSH_THEME_GIT_PROMPT_AHEAD_REMOTE$((ahead))%{$reset_color%}" + elif [[ $behind -gt 0 ]] && [[ $ahead -eq 0 ]]; then + git_remote_status="$ZSH_THEME_GIT_PROMPT_BEHIND_REMOTE" + git_remote_status_detailed="$ZSH_THEME_GIT_PROMPT_BEHIND_REMOTE_COLOR$ZSH_THEME_GIT_PROMPT_BEHIND_REMOTE$((behind))%{$reset_color%}" + elif [[ $ahead -gt 0 ]] && [[ $behind -gt 0 ]]; then + git_remote_status="$ZSH_THEME_GIT_PROMPT_DIVERGED_REMOTE" + git_remote_status_detailed="$ZSH_THEME_GIT_PROMPT_AHEAD_REMOTE_COLOR$ZSH_THEME_GIT_PROMPT_AHEAD_REMOTE$((ahead))%{$reset_color%}$ZSH_THEME_GIT_PROMPT_BEHIND_REMOTE_COLOR$ZSH_THEME_GIT_PROMPT_BEHIND_REMOTE$((behind))%{$reset_color%}" + fi + + if [[ -n $ZSH_THEME_GIT_PROMPT_REMOTE_STATUS_DETAILED ]]; then + git_remote_status="$ZSH_THEME_GIT_PROMPT_REMOTE_STATUS_PREFIX$remote$git_remote_status_detailed$ZSH_THEME_GIT_PROMPT_REMOTE_STATUS_SUFFIX" + fi + + echo $git_remote_status + fi +} + +# Outputs the name of the current branch +# Usage example: git pull origin $(git_current_branch) +# Using '--quiet' with 'symbolic-ref' will not cause a fatal error (128) if +# it's not a symbolic ref, but in a Git repo. +function git_current_branch() { + local ref + ref=$(command git symbolic-ref --quiet HEAD 2> /dev/null) + local ret=$? + if [[ $ret != 0 ]]; then + [[ $ret == 128 ]] && return # no git repo. + ref=$(command git rev-parse --short HEAD 2> /dev/null) || return + fi + echo ${ref#refs/heads/} +} + + +# Gets the number of commits ahead from remote +function git_commits_ahead() { + if command git rev-parse --git-dir &>/dev/null; then + local commits="$(git rev-list --count @{upstream}..HEAD 2>/dev/null)" + if [[ -n "$commits" && "$commits" != 0 ]]; then + echo "$ZSH_THEME_GIT_COMMITS_AHEAD_PREFIX$commits$ZSH_THEME_GIT_COMMITS_AHEAD_SUFFIX" + fi + fi +} + +# Gets the number of commits behind remote +function git_commits_behind() { + if command git rev-parse --git-dir &>/dev/null; then + local commits="$(git rev-list --count HEAD..@{upstream} 2>/dev/null)" + if [[ -n "$commits" && "$commits" != 0 ]]; then + echo "$ZSH_THEME_GIT_COMMITS_BEHIND_PREFIX$commits$ZSH_THEME_GIT_COMMITS_BEHIND_SUFFIX" + fi + fi +} + +# Outputs if current branch is ahead of remote +function git_prompt_ahead() { + if [[ -n "$(command git rev-list origin/$(git_current_branch)..HEAD 2> /dev/null)" ]]; then + echo "$ZSH_THEME_GIT_PROMPT_AHEAD" + fi +} + +# Outputs if current branch is behind remote +function git_prompt_behind() { + if [[ -n "$(command git rev-list HEAD..origin/$(git_current_branch) 2> /dev/null)" ]]; then + echo "$ZSH_THEME_GIT_PROMPT_BEHIND" + fi +} + +# Outputs if current branch exists on remote or not +function git_prompt_remote() { + if [[ -n "$(command git show-ref origin/$(git_current_branch) 2> /dev/null)" ]]; then + echo "$ZSH_THEME_GIT_PROMPT_REMOTE_EXISTS" + else + echo "$ZSH_THEME_GIT_PROMPT_REMOTE_MISSING" + fi +} + +# Formats prompt string for current git commit short SHA +function git_prompt_short_sha() { + local SHA + SHA=$(command git rev-parse --short HEAD 2> /dev/null) && echo "$ZSH_THEME_GIT_PROMPT_SHA_BEFORE$SHA$ZSH_THEME_GIT_PROMPT_SHA_AFTER" +} + +# Formats prompt string for current git commit long SHA +function git_prompt_long_sha() { + local SHA + SHA=$(command git rev-parse HEAD 2> /dev/null) && echo "$ZSH_THEME_GIT_PROMPT_SHA_BEFORE$SHA$ZSH_THEME_GIT_PROMPT_SHA_AFTER" +} + +# Get the status of the working tree +function git_prompt_status() { + local INDEX STATUS + INDEX=$(command git status --porcelain -b 2> /dev/null) + STATUS="" + if $(echo "$INDEX" | command grep -E '^\?\? ' &> /dev/null); then + STATUS="$ZSH_THEME_GIT_PROMPT_UNTRACKED$STATUS" + fi + if $(echo "$INDEX" | grep '^A ' &> /dev/null); then + STATUS="$ZSH_THEME_GIT_PROMPT_ADDED$STATUS" + elif $(echo "$INDEX" | grep '^M ' &> /dev/null); then + STATUS="$ZSH_THEME_GIT_PROMPT_ADDED$STATUS" + elif $(echo "$INDEX" | grep '^MM ' &> /dev/null); then + STATUS="$ZSH_THEME_GIT_PROMPT_ADDED$STATUS" + fi + if $(echo "$INDEX" | grep '^ M ' &> /dev/null); then + STATUS="$ZSH_THEME_GIT_PROMPT_MODIFIED$STATUS" + elif $(echo "$INDEX" | grep '^AM ' &> /dev/null); then + STATUS="$ZSH_THEME_GIT_PROMPT_MODIFIED$STATUS" + elif $(echo "$INDEX" | grep '^MM ' &> /dev/null); then + STATUS="$ZSH_THEME_GIT_PROMPT_MODIFIED$STATUS" + elif $(echo "$INDEX" | grep '^ T ' &> /dev/null); then + STATUS="$ZSH_THEME_GIT_PROMPT_MODIFIED$STATUS" + fi + if $(echo "$INDEX" | grep '^R ' &> /dev/null); then + STATUS="$ZSH_THEME_GIT_PROMPT_RENAMED$STATUS" + fi + if $(echo "$INDEX" | grep '^ D ' &> /dev/null); then + STATUS="$ZSH_THEME_GIT_PROMPT_DELETED$STATUS" + elif $(echo "$INDEX" | grep '^D ' &> /dev/null); then + STATUS="$ZSH_THEME_GIT_PROMPT_DELETED$STATUS" + elif $(echo "$INDEX" | grep '^AD ' &> /dev/null); then + STATUS="$ZSH_THEME_GIT_PROMPT_DELETED$STATUS" + fi + if $(command git rev-parse --verify refs/stash >/dev/null 2>&1); then + STATUS="$ZSH_THEME_GIT_PROMPT_STASHED$STATUS" + fi + if $(echo "$INDEX" | grep '^UU ' &> /dev/null); then + STATUS="$ZSH_THEME_GIT_PROMPT_UNMERGED$STATUS" + fi + if $(echo "$INDEX" | grep '^## [^ ]\+ .*ahead' &> /dev/null); then + STATUS="$ZSH_THEME_GIT_PROMPT_AHEAD$STATUS" + fi + if $(echo "$INDEX" | grep '^## [^ ]\+ .*behind' &> /dev/null); then + STATUS="$ZSH_THEME_GIT_PROMPT_BEHIND$STATUS" + fi + if $(echo "$INDEX" | grep '^## [^ ]\+ .*diverged' &> /dev/null); then + STATUS="$ZSH_THEME_GIT_PROMPT_DIVERGED$STATUS" + fi + echo $STATUS +} + +# Compares the provided version of git to the version installed and on path +# Outputs -1, 0, or 1 if the installed version is less than, equal to, or +# greater than the input version, respectively. +function git_compare_version() { + local INPUT_GIT_VERSION INSTALLED_GIT_VERSION i + INPUT_GIT_VERSION=(${(s/./)1}) + INSTALLED_GIT_VERSION=($(command git --version 2>/dev/null)) + INSTALLED_GIT_VERSION=(${(s/./)INSTALLED_GIT_VERSION[3]}) + + for i in {1..3}; do + if [[ $INSTALLED_GIT_VERSION[$i] -gt $INPUT_GIT_VERSION[$i] ]]; then + echo 1 + return 0 + fi + if [[ $INSTALLED_GIT_VERSION[$i] -lt $INPUT_GIT_VERSION[$i] ]]; then + echo -1 + return 0 + fi + done + echo 0 +} + +# Outputs the name of the current user +# Usage example: $(git_current_user_name) +function git_current_user_name() { + command git config user.name 2>/dev/null +} + +# Outputs the email of the current user +# Usage example: $(git_current_user_email) +function git_current_user_email() { + command git config user.email 2>/dev/null +} + +# This is unlikely to change so make it all statically assigned +POST_1_7_2_GIT=$(git_compare_version "1.7.2") +# Clean up the namespace slightly by removing the checker function +unfunction git_compare_version diff --git a/oh-my-zsh/.oh-my-zsh/lib/grep.zsh b/oh-my-zsh/.oh-my-zsh/lib/grep.zsh new file mode 100644 index 0000000..abc1650 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/lib/grep.zsh @@ -0,0 +1,28 @@ +# is x grep argument available? +grep-flag-available() { + echo | grep $1 "" >/dev/null 2>&1 +} + +GREP_OPTIONS="" + +# color grep results +if grep-flag-available --color=auto; then + GREP_OPTIONS+=" --color=auto" +fi + +# ignore VCS folders (if the necessary grep flags are available) +VCS_FOLDERS="{.bzr,CVS,.git,.hg,.svn}" + +if grep-flag-available --exclude-dir=.cvs; then + GREP_OPTIONS+=" --exclude-dir=$VCS_FOLDERS" +elif grep-flag-available --exclude=.cvs; then + GREP_OPTIONS+=" --exclude=$VCS_FOLDERS" +fi + +# export grep settings +alias grep="grep $GREP_OPTIONS" + +# clean up +unset GREP_OPTIONS +unset VCS_FOLDERS +unfunction grep-flag-available diff --git a/oh-my-zsh/.oh-my-zsh/lib/history.zsh b/oh-my-zsh/.oh-my-zsh/lib/history.zsh new file mode 100644 index 0000000..d8bbd41 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/lib/history.zsh @@ -0,0 +1,40 @@ +## History wrapper +function omz_history { + local clear list + zparseopts -E c=clear l=list + + if [[ -n "$clear" ]]; then + # if -c provided, clobber the history file + echo -n >| "$HISTFILE" + echo >&2 History file deleted. Reload the session to see its effects. + elif [[ -n "$list" ]]; then + # if -l provided, run as if calling `fc' directly + builtin fc "$@" + else + # unless a number is provided, show all history events (starting from 1) + [[ ${@[-1]} = *[0-9]* ]] && builtin fc -l "$@" || builtin fc -l "$@" 1 + fi +} + +# Timestamp format +case $HIST_STAMPS in + "mm/dd/yyyy") alias history='omz_history -f' ;; + "dd.mm.yyyy") alias history='omz_history -E' ;; + "yyyy-mm-dd") alias history='omz_history -i' ;; + "") alias history='omz_history' ;; + *) alias history="omz_history -t '$HIST_STAMPS'" ;; +esac + +## History file configuration +[ -z "$HISTFILE" ] && HISTFILE="$HOME/.zsh_history" +HISTSIZE=50000 +SAVEHIST=10000 + +## History command configuration +setopt extended_history # record timestamp of command in HISTFILE +setopt hist_expire_dups_first # delete duplicates first when HISTFILE size exceeds HISTSIZE +setopt hist_ignore_dups # ignore duplicated commands history list +setopt hist_ignore_space # ignore commands that start with space +setopt hist_verify # show command with history expansion to user before running it +setopt inc_append_history # add commands to HISTFILE in order of execution +setopt share_history # share command history data diff --git a/oh-my-zsh/.oh-my-zsh/lib/key-bindings.zsh b/oh-my-zsh/.oh-my-zsh/lib/key-bindings.zsh new file mode 100644 index 0000000..0e056dc --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/lib/key-bindings.zsh @@ -0,0 +1,93 @@ +# http://zsh.sourceforge.net/Doc/Release/Zsh-Line-Editor.html +# http://zsh.sourceforge.net/Doc/Release/Zsh-Line-Editor.html#Zle-Builtins +# http://zsh.sourceforge.net/Doc/Release/Zsh-Line-Editor.html#Standard-Widgets + +# Make sure that the terminal is in application mode when zle is active, since +# only then values from $terminfo are valid +if (( ${+terminfo[smkx]} )) && (( ${+terminfo[rmkx]} )); then + function zle-line-init() { + echoti smkx + } + function zle-line-finish() { + echoti rmkx + } + zle -N zle-line-init + zle -N zle-line-finish +fi + +bindkey -e # Use emacs key bindings + +bindkey '\ew' kill-region # [Esc-w] - Kill from the cursor to the mark +bindkey -s '\el' 'ls\n' # [Esc-l] - run command: ls +bindkey '^r' history-incremental-search-backward # [Ctrl-r] - Search backward incrementally for a specified string. The string may begin with ^ to anchor the search to the beginning of the line. +if [[ "${terminfo[kpp]}" != "" ]]; then + bindkey "${terminfo[kpp]}" up-line-or-history # [PageUp] - Up a line of history +fi +if [[ "${terminfo[knp]}" != "" ]]; then + bindkey "${terminfo[knp]}" down-line-or-history # [PageDown] - Down a line of history +fi + +# start typing + [Up-Arrow] - fuzzy find history forward +if [[ "${terminfo[kcuu1]}" != "" ]]; then + autoload -U up-line-or-beginning-search + zle -N up-line-or-beginning-search + bindkey "${terminfo[kcuu1]}" up-line-or-beginning-search +fi +# start typing + [Down-Arrow] - fuzzy find history backward +if [[ "${terminfo[kcud1]}" != "" ]]; then + autoload -U down-line-or-beginning-search + zle -N down-line-or-beginning-search + bindkey "${terminfo[kcud1]}" down-line-or-beginning-search +fi + +if [[ "${terminfo[khome]}" != "" ]]; then + bindkey "${terminfo[khome]}" beginning-of-line # [Home] - Go to beginning of line +fi +if [[ "${terminfo[kend]}" != "" ]]; then + bindkey "${terminfo[kend]}" end-of-line # [End] - Go to end of line +fi + +bindkey ' ' magic-space # [Space] - do history expansion + +bindkey '^[[1;5C' forward-word # [Ctrl-RightArrow] - move forward one word +bindkey '^[[1;5D' backward-word # [Ctrl-LeftArrow] - move backward one word + +if [[ "${terminfo[kcbt]}" != "" ]]; then + bindkey "${terminfo[kcbt]}" reverse-menu-complete # [Shift-Tab] - move through the completion menu backwards +fi + +bindkey '^?' backward-delete-char # [Backspace] - delete backward +if [[ "${terminfo[kdch1]}" != "" ]]; then + bindkey "${terminfo[kdch1]}" delete-char # [Delete] - delete forward +else + bindkey "^[[3~" delete-char + bindkey "^[3;5~" delete-char + bindkey "\e[3~" delete-char +fi + +# Edit the current command line in $EDITOR +autoload -U edit-command-line +zle -N edit-command-line +bindkey '\C-x\C-e' edit-command-line + +# file rename magick +bindkey "^[m" copy-prev-shell-word + +# consider emacs keybindings: + +#bindkey -e ## emacs key bindings +# +#bindkey '^[[A' up-line-or-search +#bindkey '^[[B' down-line-or-search +#bindkey '^[^[[C' emacs-forward-word +#bindkey '^[^[[D' emacs-backward-word +# +#bindkey -s '^X^Z' '%-^M' +#bindkey '^[e' expand-cmd-path +#bindkey '^[^I' reverse-menu-complete +#bindkey '^X^N' accept-and-infer-next-history +#bindkey '^W' kill-region +#bindkey '^I' complete-word +## Fix weird sequence that rxvt produces +#bindkey -s '^[[Z' '\t' +# diff --git a/oh-my-zsh/.oh-my-zsh/lib/misc.zsh b/oh-my-zsh/.oh-my-zsh/lib/misc.zsh new file mode 100644 index 0000000..f45c107 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/lib/misc.zsh @@ -0,0 +1,41 @@ +## Load smart urls if available +# bracketed-paste-magic is known buggy in zsh 5.1.1 (only), so skip it there; see #4434 +autoload -Uz is-at-least +if [[ $ZSH_VERSION != 5.1.1 ]]; then + for d in $fpath; do + if [[ -e "$d/url-quote-magic" ]]; then + if is-at-least 5.1; then + autoload -Uz bracketed-paste-magic + zle -N bracketed-paste bracketed-paste-magic + fi + autoload -Uz url-quote-magic + zle -N self-insert url-quote-magic + break + fi + done +fi + +## jobs +setopt long_list_jobs + +env_default 'PAGER' 'less' +env_default 'LESS' '-R' + +## super user alias +alias _='sudo' +alias please='sudo' + +## more intelligent acking for ubuntu users +if which ack-grep &> /dev/null; then + alias afind='ack-grep -il' +else + alias afind='ack -il' +fi + +# only define LC_CTYPE if undefined +if [[ -z "$LC_CTYPE" && -z "$LC_ALL" ]]; then + export LC_CTYPE=${LANG%%:*} # pick the first entry from LANG +fi + +# recognize comments +setopt interactivecomments diff --git a/oh-my-zsh/.oh-my-zsh/lib/nvm.zsh b/oh-my-zsh/.oh-my-zsh/lib/nvm.zsh new file mode 100644 index 0000000..4a8b681 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/lib/nvm.zsh @@ -0,0 +1,9 @@ +# get the node.js version +function nvm_prompt_info() { + [[ -f "$NVM_DIR/nvm.sh" ]] || return + local nvm_prompt + nvm_prompt=$(node -v 2>/dev/null) + [[ "${nvm_prompt}x" == "x" ]] && return + nvm_prompt=${nvm_prompt:1} + echo "${ZSH_THEME_NVM_PROMPT_PREFIX}${nvm_prompt}${ZSH_THEME_NVM_PROMPT_SUFFIX}" +} diff --git a/oh-my-zsh/.oh-my-zsh/lib/prompt_info_functions.zsh b/oh-my-zsh/.oh-my-zsh/lib/prompt_info_functions.zsh new file mode 100644 index 0000000..1d5c23e --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/lib/prompt_info_functions.zsh @@ -0,0 +1,33 @@ +# *_prompt_info functions for usage in your prompt +# +# Plugin creators, please add your *_prompt_info function to the list +# of dummy implementations to help theme creators not receiving errors +# without the need of implementing conditional clauses. +# +# See also lib/bzr.zsh, lib/git.zsh and lib/nvm.zsh for +# git_prompt_info, bzr_prompt_info and nvm_prompt_info + +# Dummy implementations that return false to prevent command_not_found +# errors with themes, that implement these functions +# Real implementations will be used when the respective plugins are loaded +function chruby_prompt_info hg_prompt_info pyenv_prompt_info \ + rbenv_prompt_info svn_prompt_info vi_mode_prompt_info \ + virtualenv_prompt_info jenv_prompt_info { + return 1 +} + +# oh-my-zsh supports an rvm prompt by default +# get the name of the rvm ruby version +function rvm_prompt_info() { + [ -f $HOME/.rvm/bin/rvm-prompt ] || return 1 + local rvm_prompt + rvm_prompt=$($HOME/.rvm/bin/rvm-prompt ${=ZSH_THEME_RVM_PROMPT_OPTIONS} 2>/dev/null) + [[ "${rvm_prompt}x" == "x" ]] && return 1 + echo "${ZSH_THEME_RVM_PROMPT_PREFIX:=(}${rvm_prompt}${ZSH_THEME_RVM_PROMPT_SUFFIX:=)}" +} + +# use this to enable users to see their ruby version, no matter which +# version management system they use +function ruby_prompt_info() { + echo $(rvm_prompt_info || rbenv_prompt_info || chruby_prompt_info) +} diff --git a/oh-my-zsh/.oh-my-zsh/lib/spectrum.zsh b/oh-my-zsh/.oh-my-zsh/lib/spectrum.zsh new file mode 100644 index 0000000..312ab22 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/lib/spectrum.zsh @@ -0,0 +1,37 @@ +#! /bin/zsh +# A script to make using 256 colors in zsh less painful. +# P.C. Shyamshankar +# Copied from https://github.com/sykora/etc/blob/master/zsh/functions/spectrum/ + +typeset -AHg FX FG BG + +FX=( + reset "%{%}" + bold "%{%}" no-bold "%{%}" + italic "%{%}" no-italic "%{%}" + underline "%{%}" no-underline "%{%}" + blink "%{%}" no-blink "%{%}" + reverse "%{%}" no-reverse "%{%}" +) + +for color in {000..255}; do + FG[$color]="%{[38;5;${color}m%}" + BG[$color]="%{[48;5;${color}m%}" +done + + +ZSH_SPECTRUM_TEXT=${ZSH_SPECTRUM_TEXT:-Arma virumque cano Troiae qui primus ab oris} + +# Show all 256 colors with color number +function spectrum_ls() { + for code in {000..255}; do + print -P -- "$code: %{$FG[$code]%}$ZSH_SPECTRUM_TEXT%{$reset_color%}" + done +} + +# Show all 256 colors where the background is set to specific color +function spectrum_bls() { + for code in {000..255}; do + print -P -- "$code: %{$BG[$code]%}$ZSH_SPECTRUM_TEXT%{$reset_color%}" + done +} diff --git a/oh-my-zsh/.oh-my-zsh/lib/termsupport.zsh b/oh-my-zsh/.oh-my-zsh/lib/termsupport.zsh new file mode 100644 index 0000000..87d55ee --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/lib/termsupport.zsh @@ -0,0 +1,105 @@ +# Set terminal window and tab/icon title +# +# usage: title short_tab_title [long_window_title] +# +# See: http://www.faqs.org/docs/Linux-mini/Xterm-Title.html#ss3.1 +# Fully supports screen, iterm, and probably most modern xterm and rxvt +# (In screen, only short_tab_title is used) +# Limited support for Apple Terminal (Terminal can't set window and tab separately) +function title { + emulate -L zsh + setopt prompt_subst + + [[ "$EMACS" == *term* ]] && return + + # if $2 is unset use $1 as default + # if it is set and empty, leave it as is + : ${2=$1} + + case "$TERM" in + cygwin|xterm*|putty*|rxvt*|ansi) + print -Pn "\e]2;$2:q\a" # set window name + print -Pn "\e]1;$1:q\a" # set tab name + ;; + screen*) + print -Pn "\ek$1:q\e\\" # set screen hardstatus + ;; + *) + if [[ "$TERM_PROGRAM" == "iTerm.app" ]]; then + print -Pn "\e]2;$2:q\a" # set window name + print -Pn "\e]1;$1:q\a" # set tab name + else + # Try to use terminfo to set the title + # If the feature is available set title + if [[ -n "$terminfo[fsl]" ]] && [[ -n "$terminfo[tsl]" ]]; then + echoti tsl + print -Pn "$1" + echoti fsl + fi + fi + ;; + esac +} + +ZSH_THEME_TERM_TAB_TITLE_IDLE="%15<..<%~%<<" #15 char left truncated PWD +ZSH_THEME_TERM_TITLE_IDLE="%n@%m: %~" +# Avoid duplication of directory in terminals with independent dir display +if [[ "$TERM_PROGRAM" == Apple_Terminal ]]; then + ZSH_THEME_TERM_TITLE_IDLE="%n@%m" +fi + +# Runs before showing the prompt +function omz_termsupport_precmd { + emulate -L zsh + + if [[ "$DISABLE_AUTO_TITLE" == true ]]; then + return + fi + + title $ZSH_THEME_TERM_TAB_TITLE_IDLE $ZSH_THEME_TERM_TITLE_IDLE +} + +# Runs before executing the command +function omz_termsupport_preexec { + emulate -L zsh + setopt extended_glob + + if [[ "$DISABLE_AUTO_TITLE" == true ]]; then + return + fi + + # cmd name only, or if this is sudo or ssh, the next cmd + local CMD=${1[(wr)^(*=*|sudo|ssh|mosh|rake|-*)]:gs/%/%%} + local LINE="${2:gs/%/%%}" + + title '$CMD' '%100>...>$LINE%<<' +} + +precmd_functions+=(omz_termsupport_precmd) +preexec_functions+=(omz_termsupport_preexec) + + +# Keep Apple Terminal.app's current working directory updated +# Based on this answer: https://superuser.com/a/315029 +# With extra fixes to handle multibyte chars and non-UTF-8 locales + +if [[ "$TERM_PROGRAM" == "Apple_Terminal" ]] && [[ -z "$INSIDE_EMACS" ]]; then + # Emits the control sequence to notify Terminal.app of the cwd + # Identifies the directory using a file: URI scheme, including + # the host name to disambiguate local vs. remote paths. + function update_terminalapp_cwd() { + emulate -L zsh + + # Percent-encode the pathname. + local URL_PATH="$(omz_urlencode -P $PWD)" + [[ $? != 0 ]] && return 1 + + # Undocumented Terminal.app-specific control sequence + printf '\e]7;%s\a' "file://$HOST$URL_PATH" + } + + # Use a precmd hook instead of a chpwd hook to avoid contaminating output + precmd_functions+=(update_terminalapp_cwd) + # Run once to get initial cwd set + update_terminalapp_cwd +fi diff --git a/oh-my-zsh/.oh-my-zsh/lib/theme-and-appearance.zsh b/oh-my-zsh/.oh-my-zsh/lib/theme-and-appearance.zsh new file mode 100644 index 0000000..96f34aa --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/lib/theme-and-appearance.zsh @@ -0,0 +1,55 @@ +# ls colors +autoload -U colors && colors + +# Enable ls colors +export LSCOLORS="Gxfxcxdxbxegedabagacad" + +# TODO organise this chaotic logic + +if [[ "$DISABLE_LS_COLORS" != "true" ]]; then + # Find the option for using colors in ls, depending on the version + if [[ "$OSTYPE" == netbsd* ]]; then + # On NetBSD, test if "gls" (GNU ls) is installed (this one supports colors); + # otherwise, leave ls as is, because NetBSD's ls doesn't support -G + gls --color -d . &>/dev/null && alias ls='gls --color=tty' + elif [[ "$OSTYPE" == openbsd* ]]; then + # On OpenBSD, "gls" (ls from GNU coreutils) and "colorls" (ls from base, + # with color and multibyte support) are available from ports. "colorls" + # will be installed on purpose and can't be pulled in by installing + # coreutils, so prefer it to "gls". + gls --color -d . &>/dev/null && alias ls='gls --color=tty' + colorls -G -d . &>/dev/null && alias ls='colorls -G' + elif [[ "$OSTYPE" == darwin* ]]; then + # this is a good alias, it works by default just using $LSCOLORS + ls -G . &>/dev/null && alias ls='ls -G' + + # only use coreutils ls if there is a dircolors customization present ($LS_COLORS or .dircolors file) + # otherwise, gls will use the default color scheme which is ugly af + [[ -n "$LS_COLORS" || -f "$HOME/.dircolors" ]] && gls --color -d . &>/dev/null && alias ls='gls --color=tty' + else + # For GNU ls, we use the default ls color theme. They can later be overwritten by themes. + if [[ -z "$LS_COLORS" ]]; then + (( $+commands[dircolors] )) && eval "$(dircolors -b)" + fi + + ls --color -d . &>/dev/null && alias ls='ls --color=tty' || { ls -G . &>/dev/null && alias ls='ls -G' } + + # Take advantage of $LS_COLORS for completion as well. + zstyle ':completion:*' list-colors "${(s.:.)LS_COLORS}" + fi +fi + +setopt auto_cd +setopt multios +setopt prompt_subst + +[[ -n "$WINDOW" ]] && SCREEN_NO="%B$WINDOW%b " || SCREEN_NO="" + +# Apply theming defaults +PS1="%n@%m:%~%# " + +# git theming default: Variables for theming the git info prompt +ZSH_THEME_GIT_PROMPT_PREFIX="git:(" # Prefix at the very beginning of the prompt, before the branch name +ZSH_THEME_GIT_PROMPT_SUFFIX=")" # At the very end of the prompt +ZSH_THEME_GIT_PROMPT_DIRTY="*" # Text to display if the branch is dirty +ZSH_THEME_GIT_PROMPT_CLEAN="" # Text to display if the branch is clean diff --git a/oh-my-zsh/.oh-my-zsh/log/.gitkeep b/oh-my-zsh/.oh-my-zsh/log/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/oh-my-zsh/.oh-my-zsh/oh-my-zsh.sh b/oh-my-zsh/.oh-my-zsh/oh-my-zsh.sh new file mode 100644 index 0000000..d7c68d3 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/oh-my-zsh.sh @@ -0,0 +1,119 @@ +# Set ZSH_CACHE_DIR to the path where cache files should be created +# or else we will use the default cache/ +if [[ -z "$ZSH_CACHE_DIR" ]]; then + ZSH_CACHE_DIR="$ZSH/cache" +fi + +# Migrate .zsh-update file to $ZSH_CACHE_DIR +if [ -f ~/.zsh-update ] && [ ! -f ${ZSH_CACHE_DIR}/.zsh-update ]; then + mv ~/.zsh-update ${ZSH_CACHE_DIR}/.zsh-update +fi + +# Check for updates on initial load... +if [ "$DISABLE_AUTO_UPDATE" != "true" ]; then + env ZSH=$ZSH ZSH_CACHE_DIR=$ZSH_CACHE_DIR DISABLE_UPDATE_PROMPT=$DISABLE_UPDATE_PROMPT zsh -f $ZSH/tools/check_for_upgrade.sh +fi + +# Initializes Oh My Zsh + +# add a function path +fpath=($ZSH/functions $ZSH/completions $fpath) + +# Load all stock functions (from $fpath files) called below. +autoload -U compaudit compinit + +# Set ZSH_CUSTOM to the path where your custom config files +# and plugins exists, or else we will use the default custom/ +if [[ -z "$ZSH_CUSTOM" ]]; then + ZSH_CUSTOM="$ZSH/custom" +fi + + +# Load all of the config files in ~/oh-my-zsh that end in .zsh +# TIP: Add files you don't want in git to .gitignore +for config_file ($ZSH/lib/*.zsh); do + custom_config_file="${ZSH_CUSTOM}/lib/${config_file:t}" + [ -f "${custom_config_file}" ] && config_file=${custom_config_file} + source $config_file +done + + +is_plugin() { + local base_dir=$1 + local name=$2 + test -f $base_dir/plugins/$name/$name.plugin.zsh \ + || test -f $base_dir/plugins/$name/_$name +} +# Add all defined plugins to fpath. This must be done +# before running compinit. +for plugin ($plugins); do + if is_plugin $ZSH_CUSTOM $plugin; then + fpath=($ZSH_CUSTOM/plugins/$plugin $fpath) + elif is_plugin $ZSH $plugin; then + fpath=($ZSH/plugins/$plugin $fpath) + fi +done + +# Figure out the SHORT hostname +if [[ "$OSTYPE" = darwin* ]]; then + # macOS's $HOST changes with dhcp, etc. Use ComputerName if possible. + SHORT_HOST=$(scutil --get ComputerName 2>/dev/null) || SHORT_HOST=${HOST/.*/} +else + SHORT_HOST=${HOST/.*/} +fi + +# Save the location of the current completion dump file. +if [ -z "$ZSH_COMPDUMP" ]; then + ZSH_COMPDUMP="${ZDOTDIR:-${HOME}}/.zcompdump-${SHORT_HOST}-${ZSH_VERSION}" +fi + +if [[ $ZSH_DISABLE_COMPFIX != true ]]; then + # If completion insecurities exist, warn the user + if ! compaudit &>/dev/null; then + handle_completion_insecurities + fi + # Load only from secure directories + compinit -i -d "${ZSH_COMPDUMP}" +else + # If the user wants it, load from all found directories + compinit -u -d "${ZSH_COMPDUMP}" +fi + +# Load all of the plugins that were defined in ~/.zshrc +for plugin ($plugins); do + if [ -f $ZSH_CUSTOM/plugins/$plugin/$plugin.plugin.zsh ]; then + source $ZSH_CUSTOM/plugins/$plugin/$plugin.plugin.zsh + elif [ -f $ZSH/plugins/$plugin/$plugin.plugin.zsh ]; then + source $ZSH/plugins/$plugin/$plugin.plugin.zsh + fi +done + +# Load all of your custom configurations from custom/ +for config_file ($ZSH_CUSTOM/*.zsh(N)); do + source $config_file +done +unset config_file + +# Load the theme +if [[ "$ZSH_THEME" == "random" ]]; then + if [[ "${(t)ZSH_THEME_RANDOM_CANDIDATES}" = "array" ]] && [[ "${#ZSH_THEME_RANDOM_CANDIDATES[@]}" -gt 0 ]]; then + themes=($ZSH/themes/${^ZSH_THEME_RANDOM_CANDIDATES}.zsh-theme) + else + themes=($ZSH/themes/*zsh-theme) + fi + N=${#themes[@]} + ((N=(RANDOM%N)+1)) + RANDOM_THEME=${themes[$N]} + source "$RANDOM_THEME" + echo "[oh-my-zsh] Random theme '$RANDOM_THEME' loaded..." +else + if [ ! "$ZSH_THEME" = "" ]; then + if [ -f "$ZSH_CUSTOM/$ZSH_THEME.zsh-theme" ]; then + source "$ZSH_CUSTOM/$ZSH_THEME.zsh-theme" + elif [ -f "$ZSH_CUSTOM/themes/$ZSH_THEME.zsh-theme" ]; then + source "$ZSH_CUSTOM/themes/$ZSH_THEME.zsh-theme" + else + source "$ZSH/themes/$ZSH_THEME.zsh-theme" + fi + fi +fi diff --git a/oh-my-zsh/.oh-my-zsh/plugins/adb/README.md b/oh-my-zsh/.oh-my-zsh/plugins/adb/README.md new file mode 100644 index 0000000..83dcc72 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/adb/README.md @@ -0,0 +1,8 @@ +# adb autocomplete plugin + +* Adds autocomplete options for all adb commands. +* Add autocomplete for `adb -s` + +## Requirements + +In order to make this work, you will need to have the Android adb tools set up in your path. diff --git a/oh-my-zsh/.oh-my-zsh/plugins/adb/_adb b/oh-my-zsh/.oh-my-zsh/plugins/adb/_adb new file mode 100644 index 0000000..e3c20d7 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/adb/_adb @@ -0,0 +1,62 @@ +#compdef adb +#autoload + +# in order to make this work, you will need to have the android adb tools + +# adb zsh completion, based on homebrew completion + +local -a _1st_arguments +_1st_arguments=( +'bugreport:return all information from the device that should be included in a bug report.' +'connect:connect to a device via TCP/IP Port 5555 is default.' +'devices:list all connected devices' +'disconnect:disconnect from a TCP/IP device. Port 5555 is default.' +'emu:run emulator console command' +'forward:forward socket connections' +'get-devpath:print the device path' +'get-serialno:print the serial number of the device' +'get-state:print the current state of the device: offline | bootloader | device' +'help:show the help message' +'install:push this package file to the device and install it' +'jdwp:list PIDs of processes hosting a JDWP transport' +'keygen:generate adb public/private key' +'kill-server:kill the server if it is running' +'logcat:view device log' +'pull:copy file/dir from device' +'push:copy file/dir to device' +'reboot:reboots the device, optionally into the bootloader or recovery program' +'reboot-bootloader:reboots the device into the bootloader' +'remount:remounts the partitions on the device read-write' +'root:restarts the adbd daemon with root permissions' +'sideload:push a ZIP to device and install it' +'shell:run remote shell interactively' +'sync:copy host->device only if changed (-l means list but dont copy)' +'start-server:ensure that there is a server running' +'tcpip:restart host adb in tcpip mode' +'uninstall:remove this app package from the device' +'usb:restart the adbd daemon listing on USB' +'version:show version num' +'wait-for-device:block until device is online' +) + +local expl +local -a pkgs installed_pkgs + +_arguments \ + '-s[devices]:specify device:->specify_device' \ + '*:: :->subcmds' && return 0 + +case "$state" in + specify_device) + _values -C 'devices' ${$(adb devices -l|awk 'NR>1&& $1 \ + {sub(/ +/," ",$0);gsub(":","\\:",$1); printf "%s[%s] ",$1, $NF}'):-""} + return + ;; +esac + +if (( CURRENT == 1 )); then + _describe -t commands "adb subcommand" _1st_arguments + return +fi + +_files \ No newline at end of file diff --git a/oh-my-zsh/.oh-my-zsh/plugins/ant/README.md b/oh-my-zsh/.oh-my-zsh/plugins/ant/README.md new file mode 100644 index 0000000..5f88984 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/ant/README.md @@ -0,0 +1,12 @@ +# Ant + +This plugin provides completion for [Ant](https://ant.apache.org/). + +To use it add ant to the plugins array in your zshrc file. + +```bash +plugins=(... ant) +``` + +It caches ant targets in a file named `.ant_targets`, you might want to add that to +your `.gitignore` file. diff --git a/oh-my-zsh/.oh-my-zsh/plugins/ant/ant.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/ant/ant.plugin.zsh new file mode 100644 index 0000000..0b738c9 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/ant/ant.plugin.zsh @@ -0,0 +1,16 @@ +_ant_does_target_list_need_generating () { + [ ! -f .ant_targets ] && return 0; + [ build.xml -nt .ant_targets ] && return 0; + return 1; +} + +_ant () { + if [ -f build.xml ]; then + if _ant_does_target_list_need_generating; then + ant -p | awk -F " " 'NR > 5 { print lastTarget }{lastTarget = $1}' > .ant_targets + fi + compadd -- `cat .ant_targets` + fi +} + +compdef _ant ant diff --git a/oh-my-zsh/.oh-my-zsh/plugins/apache2-macports/README.md b/oh-my-zsh/.oh-my-zsh/plugins/apache2-macports/README.md new file mode 100644 index 0000000..099fc8d --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/apache2-macports/README.md @@ -0,0 +1,19 @@ +## APACHE2 MACPORTS PLUGIN + + +--- + +### FEATURES + +| Alias | Function | Description | +|:--------------:|:-------------------------------------------------------------------------------|----------------------:| +| apache2restart | sudo /opt/local/etc/LaunchDaemons/org.macports.apache2/apache2.wrapper restart | Restart apache daemon | +| apache2start | sudo /opt/local/etc/LaunchDaemons/org.macports.apache2/apache2.wrapper start | Start apache daemon | +| apache2stop | sudo /opt/local/etc/LaunchDaemons/org.macports.apache2/apache2.wrapper stop | Stop apache daemon | + +--- + +### CONTRIBUTORS + - Alexander Rinass (alex@rinass.net) + +--- diff --git a/oh-my-zsh/.oh-my-zsh/plugins/apache2-macports/apache2-macports.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/apache2-macports/apache2-macports.plugin.zsh new file mode 100644 index 0000000..1caa4cf --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/apache2-macports/apache2-macports.plugin.zsh @@ -0,0 +1,6 @@ +# commands to control local apache2 server installation +# paths are for osx installation via macports + +alias apache2start='sudo /opt/local/etc/LaunchDaemons/org.macports.apache2/apache2.wrapper start' +alias apache2stop='sudo /opt/local/etc/LaunchDaemons/org.macports.apache2/apache2.wrapper stop' +alias apache2restart='sudo /opt/local/etc/LaunchDaemons/org.macports.apache2/apache2.wrapper restart' diff --git a/oh-my-zsh/.oh-my-zsh/plugins/arcanist/README.md b/oh-my-zsh/.oh-my-zsh/plugins/arcanist/README.md new file mode 100644 index 0000000..4bb8c80 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/arcanist/README.md @@ -0,0 +1,5 @@ +## arcanist + +**Maintainer:** [@emzar](https://github.com/emzar) + +This plugin adds many useful aliases. diff --git a/oh-my-zsh/.oh-my-zsh/plugins/arcanist/arcanist.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/arcanist/arcanist.plugin.zsh new file mode 100644 index 0000000..3f4eb07 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/arcanist/arcanist.plugin.zsh @@ -0,0 +1,21 @@ +# +# Aliases +# (sorted alphabetically) +# + +alias ara='arc amend' +alias arb='arc branch' +alias arco='arc cover' +alias arci='arc commit' + +alias ard='arc diff' +alias ardnu='arc diff --nounit' +alias ardnupc='arc diff --nounit --plan-changes' +alias ardpc='arc diff --plan-changes' + +alias are='arc export' +alias arh='arc help' +alias arl='arc land' +alias arli='arc lint' +alias arls='arc list' +alias arpa='arc patch' diff --git a/oh-my-zsh/.oh-my-zsh/plugins/archlinux/README.md b/oh-my-zsh/.oh-my-zsh/plugins/archlinux/README.md new file mode 100644 index 0000000..7ebe8e5 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/archlinux/README.md @@ -0,0 +1,146 @@ +# Archlinux plugin + +## Features + +#### YAY + +| Alias | Command | Description | +|---------|------------------------------------|---------------------------------------------------------------------| +| yaconf | yay -Pg | Print current configuration | +| yain | yay -S | Install packages from the repositories | +| yains | yay -U | Install a package from a local file | +| yainsd | yay -S --asdeps | Install packages as dependencies of another package | +| yaloc | yay -Qi | Display information about a package in the local database | +| yalocs | yay -Qs | Search for packages in the local database | +| yalst | yay -Qe | List installed packages including from AUR (tagged as "local") | +| yamir | yay -Syy | Force refresh of all package lists after updating mirrorlist | +| yaorph | yay -Qtd | Remove orphans using yaourt | +| yare | yay -R | Remove packages, keeping its settings and dependencies | +| yarem | yay -Rns | Remove packages, including its settings and unneeded dependencies | +| yarep | yay -Si | Display information about a package in the repositories | +| yareps | yay -Ss | Search for packages in the repositories | +| yaupg | yay -Syu | Sync with repositories before upgrading packages | +| yasu | yay -Syu --no-confirm | Same as `yaupg`, but without confirmation | + +#### TRIZEN + +| Alias | Command | Description | +|---------|------------------------------------|---------------------------------------------------------------------| +| trconf | trizen -C | Fix all configuration files with vimdiff | +| trin | trizen -S | Install packages from the repositories | +| trins | trizen -U | Install a package from a local file | +| trinsd | trizen -S --asdeps | Install packages as dependencies of another package | +| trloc | trizen -Qi | Display information about a package in the local database | +| trlocs | trizen -Qs | Search for packages in the local database | +| trlst | trizen -Qe | List installed packages including from AUR (tagged as "local") | +| trmir | trizen -Syy | Force refresh of all package lists after updating mirrorlist | +| trorph | trizen -Qtd | Remove orphans using yaourt | +| trre | trizen -R | Remove packages, keeping its settings and dependencies | +| trrem | trizen -Rns | Remove packages, including its settings and unneeded dependencies | +| trrep | trizen -Si | Display information about a package in the repositories | +| trreps | trizen -Ss | Search for packages in the repositories | +| trupd | trizen -Sy && sudo abs && sudo aur | Update and refresh local package, ABS and AUR databases | +| trupd | trizen -Sy && sudo abs | Update and refresh the local package and ABS databases | +| trupd | trizen -Sy && sudo aur | Update and refresh the local package and AUR databases | +| trupd | trizen -Sy | Update and refresh the local package database | +| trupg | trizen -Syua | Sync with repositories before upgrading all packages (from AUR too) | +| trsu | trizen -Syua --no-confirm | Same as `trupg`, but without confirmation | +| upgrade | trizen -Syu | Sync with repositories before upgrading packages | + +#### YAOURT + +| Alias | Command | Description | +|---------|------------------------------------|---------------------------------------------------------------------| +| yaconf | yaourt -C | Fix all configuration files with vimdiff | +| yain | yaourt -S | Install packages from the repositories | +| yains | yaourt -U | Install a package from a local file | +| yainsd | yaourt -S --asdeps | Install packages as dependencies of another package | +| yaloc | yaourt -Qi | Display information about a package in the local database | +| yalocs | yaourt -Qs | Search for packages in the local database | +| yalst | yaourt -Qe | List installed packages including from AUR (tagged as "local") | +| yamir | yaourt -Syy | Force refresh of all package lists after updating mirrorlist | +| yaorph | yaourt -Qtd | Remove orphans using yaourt | +| yare | yaourt -R | Remove packages, keeping its settings and dependencies | +| yarem | yaourt -Rns | Remove packages, including its settings and unneeded dependencies | +| yarep | yaourt -Si | Display information about a package in the repositories | +| yareps | yaourt -Ss | Search for packages in the repositories | +| yaupd | yaourt -Sy && sudo abs && sudo aur | Update and refresh local package, ABS and AUR databases | +| yaupd | yaourt -Sy && sudo abs | Update and refresh the local package and ABS databases | +| yaupd | yaourt -Sy && sudo aur | Update and refresh the local package and AUR databases | +| yaupd | yaourt -Sy | Update and refresh the local package database | +| yaupg | yaourt -Syua | Sync with repositories before upgrading all packages (from AUR too) | +| yasu | yaourt -Syua --no-confirm | Same as `yaupg`, but without confirmation | +| upgrade | yaourt -Syu | Sync with repositories before upgrading packages | + +#### PACAUR + +| Alias | Command | Description | +|---------|------------------------------------|---------------------------------------------------------------------| +| pain | pacaur -S | Install packages from the repositories | +| pains | pacaur -U | Install a package from a local file | +| painsd | pacaur -S --asdeps | Install packages as dependencies of another package | +| paloc | pacaur -Qi | Display information about a package in the local database | +| palocs | pacaur -Qs | Search for packages in the local database | +| palst | pacaur -Qe | List installed packages including from AUR (tagged as "local") | +| pamir | pacaur -Syy | Force refresh of all package lists after updating mirrorlist | +| paorph | pacaur -Qtd | Remove orphans using pacaur | +| pare | pacaur -R | Remove packages, keeping its settings and dependencies | +| parem | pacaur -Rns | Remove packages, including its settings and unneeded dependencies | +| parep | pacaur -Si | Display information about a package in the repositories | +| pareps | pacaur -Ss | Search for packages in the repositories | +| paupd | pacaur -Sy && sudo abs && sudo aur | Update and refresh local package, ABS and AUR databases | +| paupd | pacaur -Sy && sudo abs | Update and refresh the local package and ABS databases | +| paupd | pacaur -Sy && sudo aur | Update and refresh the local package and AUR databases | +| paupd | pacaur -Sy | Update and refresh the local package database | +| paupg | pacaur -Syua | Sync with repositories before upgrading all packages (from AUR too) | +| pasu | pacaur -Syua --no-confirm | Same as `paupg`, but without confirmation | +| upgrade | pacaur -Syu | Sync with repositories before upgrading packages | + +#### PACMAN + +| Alias | Command | Description | +|--------------|-----------------------------------------|--------------------------------------------------------------| +| pacin | sudo pacman -S | Install packages from the repositories | +| pacins | sudo pacman -U | Install a package from a local file | +| pacinsd | sudo pacman -S --asdeps | Install packages as dependencies of another package | +| pacloc | pacman -Qi | Display information about a package in the local database | +| paclocs | pacman -Qs | Search for packages in the local database | +| paclsorphans | sudo pacman -Qdt | List all orphaned packages | +| pacmir | sudo pacman -Syy | Force refresh of all package lists after updating mirrorlist | +| pacre | sudo pacman -R | Remove packages, keeping its settings and dependencies | +| pacrem | sudo pacman -Rns | Remove packages, including its settings and dependencies | +| pacrep | pacman -Si | Display information about a package in the repositories | +| pacreps | pacman -Ss | Search for packages in the repositories | +| pacrmorphans | sudo pacman -Rs $(pacman -Qtdq) | Delete all orphaned packages | +| pacupd | sudo pacman -Sy && sudo abs && sudo aur | Update and refresh the local package, ABS and AUR databases | +| pacupd | sudo pacman -Sy && sudo abs | Update and refresh the local package and ABS databases | +| pacupd | sudo pacman -Sy && sudo aur | Update and refresh the local package and AUR databases | +| pacupd | sudo pacman -Sy | Update and refresh the local package database | +| pacupg | sudo pacman -Syu | Sync with repositories before upgrading packages | +| upgrade | sudo pacman -Syu | Sync with repositories before upgrading packages | +| pacfileupg | sudo pacman -Fy | Download fresh package databases from the server | +| pacfiles | pacman -Fs | Search package file names for matching strings | +| pacls | pacman -Ql | List files in a package | +| pacown | pacman -Qo | Show which package owns a file | + +| Function | Description | +|----------------|------------------------------------------------------| +| pacdisowned | List all disowned files in your system | +| paclist | List all installed packages with a short description | +| pacmanallkeys | Get all keys for developers and trusted users | +| pacmansignkeys | Locally trust all keys passed as parameters | +| pacweb | Open the website of an ArchLinux package | + +--- + +## Contributors + +- Benjamin Boudreau - dreurmail@gmail.com +- Celso Miranda - contacto@celsomiranda.net +- KhasMek - Boushh@gmail.com +- Martin Putniorz - mputniorz@gmail.com +- MatthR3D - matthr3d@gmail.com +- ornicar - thibault.duplessis@gmail.com +- Juraj Fiala - doctorjellyface@riseup.net +- Majora320 (Moses Miller) - Majora320@gmail.com +- Ybalrid (Arthur Brainville) - ybalrid@ybalrid.info diff --git a/oh-my-zsh/.oh-my-zsh/plugins/archlinux/archlinux.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/archlinux/archlinux.plugin.zsh new file mode 100644 index 0000000..e0101c7 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/archlinux/archlinux.plugin.zsh @@ -0,0 +1,219 @@ +if (( $+commands[trizen] )); then + alias trconf='trizen -C' + alias trupg='trizen -Syua' + alias trsu='trizen -Syua --noconfirm' + alias trin='trizen -S' + alias trins='trizen -U' + alias trre='trizen -R' + alias trrem='trizen -Rns' + alias trrep='trizen -Si' + alias trreps='trizen -Ss' + alias trloc='trizen -Qi' + alias trlocs='trizen -Qs' + alias trlst='trizen -Qe' + alias trorph='trizen -Qtd' + alias trinsd='trizen -S --asdeps' + alias trmir='trizen -Syy' + + + if (( $+commands[abs] && $+commands[aur] )); then + alias trupd='trizen -Sy && sudo abs && sudo aur' + elif (( $+commands[abs] )); then + alias trupd='trizen -Sy && sudo abs' + elif (( $+commands[aur] )); then + alias trupd='trizen -Sy && sudo aur' + else + alias trupd='trizen -Sy' + fi +fi + +if (( $+commands[yaourt] )); then + alias yaconf='yaourt -C' + alias yaupg='yaourt -Syua' + alias yasu='yaourt -Syua --noconfirm' + alias yain='yaourt -S' + alias yains='yaourt -U' + alias yare='yaourt -R' + alias yarem='yaourt -Rns' + alias yarep='yaourt -Si' + alias yareps='yaourt -Ss' + alias yaloc='yaourt -Qi' + alias yalocs='yaourt -Qs' + alias yalst='yaourt -Qe' + alias yaorph='yaourt -Qtd' + alias yainsd='yaourt -S --asdeps' + alias yamir='yaourt -Syy' + + + if (( $+commands[abs] && $+commands[aur] )); then + alias yaupd='yaourt -Sy && sudo abs && sudo aur' + elif (( $+commands[abs] )); then + alias yaupd='yaourt -Sy && sudo abs' + elif (( $+commands[aur] )); then + alias yaupd='yaourt -Sy && sudo aur' + else + alias yaupd='yaourt -Sy' + fi +fi + +if (( $+commands[yay] )); then + alias yaconf='yay -Pg' + alias yaupg='yay -Syu' + alias yasu='yay -Syu --noconfirm' + alias yain='yay -S' + alias yains='yay -U' + alias yare='yay -R' + alias yarem='yay -Rns' + alias yarep='yay -Si' + alias yareps='yay -Ss' + alias yaloc='yay -Qi' + alias yalocs='yay -Qs' + alias yalst='yay -Qe' + alias yaorph='yay -Qtd' + alias yainsd='yay -S --asdeps' + alias yamir='yay -Syy' + + + if (( $+commands[abs] && $+commands[aur] )); then + alias yaupd='yay -Sy && sudo abs && sudo aur' + elif (( $+commands[abs] )); then + alias yaupd='yay -Sy && sudo abs' + elif (( $+commands[aur] )); then + alias yaupd='yay -Sy && sudo aur' + else + alias yaupd='yay -Sy' + fi +fi + +if (( $+commands[pacaur] )); then + alias paupg='pacaur -Syu' + alias pasu='pacaur -Syu --noconfirm' + alias pain='pacaur -S' + alias pains='pacaur -U' + alias pare='pacaur -R' + alias parem='pacaur -Rns' + alias parep='pacaur -Si' + alias pareps='pacaur -Ss' + alias paloc='pacaur -Qi' + alias palocs='pacaur -Qs' + alias palst='pacaur -Qe' + alias paorph='pacaur -Qtd' + alias painsd='pacaur -S --asdeps' + alias pamir='pacaur -Syy' + + if (( $+commands[abs] && $+commands[aur] )); then + alias paupd='pacaur -Sy && sudo abs && sudo aur' + elif (( $+commands[abs] )); then + alias paupd='pacaur -Sy && sudo abs' + elif (( $+commands[aur] )); then + alias paupd='pacaur -Sy && sudo aur' + else + alias paupd='pacaur -Sy' + fi +fi + +if (( $+commands[trizen] )); then + function upgrade() { + trizen -Syu + } +elif (( $+commands[pacaur] )); then + function upgrade() { + pacaur -Syu + } +elif (( $+commands[yaourt] )); then + function upgrade() { + yaourt -Syu + } +elif (( $+commands[yay] )); then + function upgrade() { + yay -Syu + } +else + function upgrade() { + sudo pacman -Syu + } +fi + +# Pacman - https://wiki.archlinux.org/index.php/Pacman_Tips +alias pacupg='sudo pacman -Syu' +alias pacin='sudo pacman -S' +alias pacins='sudo pacman -U' +alias pacre='sudo pacman -R' +alias pacrem='sudo pacman -Rns' +alias pacrep='pacman -Si' +alias pacreps='pacman -Ss' +alias pacloc='pacman -Qi' +alias paclocs='pacman -Qs' +alias pacinsd='sudo pacman -S --asdeps' +alias pacmir='sudo pacman -Syy' +alias paclsorphans='sudo pacman -Qdt' +alias pacrmorphans='sudo pacman -Rs $(pacman -Qtdq)' +alias pacfileupg='sudo pacman -Fy' +alias pacfiles='pacman -Fs' +alias pacls='pacman -Ql' +alias pacown='pacman -Qo' + + +if (( $+commands[abs] && $+commands[aur] )); then + alias pacupd='sudo pacman -Sy && sudo abs && sudo aur' +elif (( $+commands[abs] )); then + alias pacupd='sudo pacman -Sy && sudo abs' +elif (( $+commands[aur] )); then + alias pacupd='sudo pacman -Sy && sudo aur' +else + alias pacupd='sudo pacman -Sy' +fi + +function paclist() { + # Source: https://bbs.archlinux.org/viewtopic.php?id=93683 + LC_ALL=C pacman -Qei $(pacman -Qu | cut -d " " -f 1) | \ + awk 'BEGIN {FS=":"} /^Name/{printf("\033[1;36m%s\033[1;37m", $2)} /^Description/{print $2}' +} + +function pacdisowned() { + emulate -L zsh + + tmp=${TMPDIR-/tmp}/pacman-disowned-$UID-$$ + db=$tmp/db + fs=$tmp/fs + + mkdir "$tmp" + trap 'rm -rf "$tmp"' EXIT + + pacman -Qlq | sort -u > "$db" + + find /bin /etc /lib /sbin /usr ! -name lost+found \ + \( -type d -printf '%p/\n' -o -print \) | sort > "$fs" + + comm -23 "$fs" "$db" +} + +function pacmanallkeys() { + emulate -L zsh + curl -s https://www.archlinux.org/people/{developers,trustedusers}/ | \ + awk -F\" '(/pgp.mit.edu/) { sub(/.*search=0x/,""); print $1}' | \ + xargs sudo pacman-key --recv-keys +} + +function pacmansignkeys() { + emulate -L zsh + for key in $*; do + sudo pacman-key --recv-keys $key + sudo pacman-key --lsign-key $key + printf 'trust\n3\n' | sudo gpg --homedir /etc/pacman.d/gnupg \ + --no-permission-warning --command-fd 0 --edit-key $key + done +} + +if (( $+commands[xdg-open] )); then + function pacweb() { + pkg="$1" + infos="$(pacman -Si "$pkg")" + if [[ -z "$infos" ]]; then + return + fi + repo="$(grep '^Repo' <<< "$infos" | grep -oP '[^ ]+$')" + arch="$(grep '^Arch' <<< "$infos" | grep -oP '[^ ]+$')" + xdg-open "https://www.archlinux.org/packages/$repo/$arch/$pkg/" &>/dev/null + } +fi diff --git a/oh-my-zsh/.oh-my-zsh/plugins/asdf/README.md b/oh-my-zsh/.oh-my-zsh/plugins/asdf/README.md new file mode 100644 index 0000000..e8aa976 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/asdf/README.md @@ -0,0 +1,27 @@ +## asdf + +**Maintainer:** [@RobLoach](https://github.com/RobLoach) + +Adds integration with [asdf](https://github.com/asdf-vm/asdf), the extendable version manager, with support for Ruby, Node.js, Elixir, Erlang and more. + +### Installation + +1. Enable the plugin by adding it to your `plugins` definition in `~/.zshrc`. + + ``` + plugins=(asdf) + ``` + +2. [Install asdf](https://github.com/asdf-vm/asdf#setup) by running the following: + ``` + git clone https://github.com/asdf-vm/asdf.git ~/.asdf + ``` + +### Usage + +See the [asdf usage documentation](https://github.com/asdf-vm/asdf#usage) for information on how to use asdf: + +``` +asdf plugin-add nodejs git@github.com:asdf-vm/asdf-nodejs.git +asdf install nodejs 5.9.1 +``` diff --git a/oh-my-zsh/.oh-my-zsh/plugins/asdf/asdf.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/asdf/asdf.plugin.zsh new file mode 100644 index 0000000..75395c7 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/asdf/asdf.plugin.zsh @@ -0,0 +1,17 @@ +# Find where asdf should be installed +ASDF_DIR="${ASDF_DIR:-$HOME/.asdf}" + +# If not found, check for Homebrew package +if [[ ! -d $ASDF_DIR ]] && (( $+commands[brew] )); then + ASDF_DIR="$(brew --prefix asdf)" +fi + +# Load command +if [[ -f "$ASDF_DIR/asdf.sh" ]]; then + . "$ASDF_DIR/asdf.sh" + + # Load completions + if [[ -f "$ASDF_DIR/completions/asdf.bash" ]]; then + . "$ASDF_DIR/completions/asdf.bash" + fi +fi diff --git a/oh-my-zsh/.oh-my-zsh/plugins/autoenv/autoenv.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/autoenv/autoenv.plugin.zsh new file mode 100644 index 0000000..3c1b0fa --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/autoenv/autoenv.plugin.zsh @@ -0,0 +1,43 @@ +# Activates autoenv or reports its failure +() { +if ! type autoenv_init >/dev/null; then + for d (~/.autoenv ~/.local/bin /usr/local/opt/autoenv /usr/local/bin); do + if [[ -e $d/activate.sh ]]; then + autoenv_dir=$d + break + fi + done + if [[ -z $autoenv_dir ]]; then + cat <&2 +-------- AUTOENV --------- +Could not locate autoenv installation. +Please check if autoenv is correctly installed. +In the meantime the autoenv plugin is DISABLED. +-------------------------- +END + return 1 + fi + source $autoenv_dir/activate.sh +fi +} +[[ $? != 0 ]] && return $? + +# The use_env call below is a reusable command to activate/create a new Python +# virtualenv, requiring only a single declarative line of code in your .env files. +# It only performs an action if the requested virtualenv is not the current one. + +use_env() { + typeset venv + venv="$1" + if [[ "${VIRTUAL_ENV:t}" != "$venv" ]]; then + if workon | grep -q "$venv"; then + workon "$venv" + else + echo -n "Create virtualenv $venv now? (Yn) " + read answer + if [[ "$answer" == "Y" ]]; then + mkvirtualenv "$venv" + fi + fi + fi +} diff --git a/oh-my-zsh/.oh-my-zsh/plugins/autojump/README.md b/oh-my-zsh/.oh-my-zsh/plugins/autojump/README.md new file mode 100644 index 0000000..18ff793 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/autojump/README.md @@ -0,0 +1,11 @@ +# Autojump plugin + +This plugin loads the [autojump navigation tool](https://github.com/wting/autojump). + +To use it, add `autojump` to the plugins array in your zshrc file: + +```zsh +plugins=(... autojump) +``` + +More info on the usage: https://github.com/wting/autojump diff --git a/oh-my-zsh/.oh-my-zsh/plugins/autojump/autojump.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/autojump/autojump.plugin.zsh new file mode 100644 index 0000000..c0af676 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/autojump/autojump.plugin.zsh @@ -0,0 +1,23 @@ +if [ $commands[autojump] ]; then # check if autojump is installed + if [ -f $HOME/.autojump/etc/profile.d/autojump.zsh ]; then # manual user-local installation + . $HOME/.autojump/etc/profile.d/autojump.zsh + elif [ -f $HOME/.autojump/share/autojump/autojump.zsh ]; then # another manual user-local installation + . $HOME/.autojump/share/autojump/autojump.zsh + elif [ -f $HOME/.nix-profile/etc/profile.d/autojump.zsh ]; then # nix installation + . $HOME/.nix-profile/etc/profile.d/autojump.zsh + elif [ -f /run/current-system/sw/share/autojump/autojump.zsh ]; then # nixos installation + . /run/current-system/sw/share/autojump/autojump.zsh + elif [ -f /usr/share/autojump/autojump.zsh ]; then # debian and ubuntu package + . /usr/share/autojump/autojump.zsh + elif [ -f /etc/profile.d/autojump.zsh ]; then # manual installation + . /etc/profile.d/autojump.zsh + elif [ -f /etc/profile.d/autojump.sh ]; then # gentoo installation + . /etc/profile.d/autojump.sh + elif [ -f /usr/local/share/autojump/autojump.zsh ]; then # freebsd installation + . /usr/local/share/autojump/autojump.zsh + elif [ -f /opt/local/etc/profile.d/autojump.sh ]; then # mac os x with ports + . /opt/local/etc/profile.d/autojump.sh + elif [ $commands[brew] -a -f `brew --prefix`/etc/autojump.sh ]; then # mac os x with brew + . `brew --prefix`/etc/autojump.sh + fi +fi diff --git a/oh-my-zsh/.oh-my-zsh/plugins/autopep8/README.md b/oh-my-zsh/.oh-my-zsh/plugins/autopep8/README.md new file mode 100644 index 0000000..02bbb9a --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/autopep8/README.md @@ -0,0 +1,8 @@ +# autopep8 plugin + +This plugin adds completion for [autopep8](https://pypi.org/project/autopep8/), a tool that automatically formats Python code to conform to the [PEP 8](http://www.python.org/dev/peps/pep-0008/) style guide. + +To use it, add autopep8 to the plugins array of your zshrc file: +``` +plugins=(... autopep8) +``` diff --git a/oh-my-zsh/.oh-my-zsh/plugins/autopep8/_autopep8 b/oh-my-zsh/.oh-my-zsh/plugins/autopep8/_autopep8 new file mode 100644 index 0000000..c14d06d --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/autopep8/_autopep8 @@ -0,0 +1,32 @@ +#compdef autopep8 +# +# this is zsh completion function file. +# generated by genzshcomp(ver: 0.5.1) +# + +typeset -A opt_args +local context state line + +_arguments -s -S \ + "--help[show this help message and exit]:" \ + "-h[show this help message and exit]:" \ + "--version[show program's version number and exit]:" \ + "--verbose[print verbose messages; multiple -v result in more verbose messages]" \ + "-v[print verbose messages; multiple -v result in more verbose messages]" \ + "--diff[print the diff for the fixed source]" \ + "-d[print the diff for the fixed source]" \ + "--in-place[make changes to files in place]" \ + "-i[make changes to files in place]" \ + "--recursive[run recursively; must be used with --in-place or --diff]" \ + "-r[run recursively; must be used with --in-place or --diff]" \ + "--jobs[number of parallel jobs; match CPU count if value is less than 1]::n number of parallel jobs; match CPU count if value is:_files" \ + "-j[number of parallel jobs; match CPU count if value is less than 1]::n number of parallel jobs; match CPU count if value is:_files" \ + "--pep8-passes[maximum number of additional pep8 passes (default: 100)]::n:_files" \ + "-p[maximum number of additional pep8 passes (default: 100)]::n:_files" \ + "-a[-a result in more aggressive changes]::result:_files" \ + "--exclude[exclude files/directories that match these comma- separated globs]::globs:_files" \ + "--list-fixes[list codes for fixes; used by --ignore and --select]" \ + "--ignore[do not fix these errors/warnings (default E226,E24)]::errors:_files" \ + "--select[fix only these errors/warnings (e.g. E4,W)]::errors:_files" \ + "--max-line-length[set maximum allowed line length (default: 79)]::n:_files" \ + "*::args:_files" diff --git a/oh-my-zsh/.oh-my-zsh/plugins/aws/README.md b/oh-my-zsh/.oh-my-zsh/plugins/aws/README.md new file mode 100644 index 0000000..8a45199 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/aws/README.md @@ -0,0 +1,20 @@ +# aws + +This plugin provides completion support for [awscli](https://docs.aws.amazon.com/cli/latest/reference/index.html) +and a few utilities to manage AWS profiles: a function to change profiles with autocompletion support +and a function to get the current AWS profile. The current AWS profile is also displayed in `RPROMPT`. + +To use it, add `aws` to the plugins array in your zshrc file. + +```zsh +plugins=(... aws) +``` + +## Plugin commands + +* `asp `: Sets `AWS_PROFILE` and `AWS_DEFAULT_PROFILE` (legacy) to ``. +It also adds it to your RPROMPT. + +* `agp`: Gets the current value of `AWS_PROFILE`. + +* `aws_profiles`: Lists the available profiles in the file referenced in `AWS_CONFIG_FILE` (default: ~/.aws/config). Used to provide completion for the `asp` function. diff --git a/oh-my-zsh/.oh-my-zsh/plugins/aws/aws.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/aws/aws.plugin.zsh new file mode 100644 index 0000000..f78e96c --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/aws/aws.plugin.zsh @@ -0,0 +1,49 @@ +_homebrew-installed() { + type brew &> /dev/null + _xit=$? + if [ $_xit -eq 0 ];then + # ok , we have brew installed + # speculatively we check default brew prefix + if [ -h /usr/local/opt/awscli ];then + _brew_prefix="/usr/local/opt/awscli" + else + # ok , it is not default prefix + # this call to brew is expensive ( about 400 ms ), so at least let's make it only once + _brew_prefix=$(brew --prefix awscli) + fi + return 0 + else + return $_xit + fi +} + +_awscli-homebrew-installed() { + [ -r $_brew_prefix/libexec/bin/aws_zsh_completer.sh ] &> /dev/null +} + +function agp { + echo $AWS_PROFILE +} + +function asp { + local rprompt=${RPROMPT//} + + export AWS_DEFAULT_PROFILE=$1 + export AWS_PROFILE=$1 + + export RPROMPT="$rprompt" +} + +function aws_profiles { + reply=($(grep profile "${AWS_CONFIG_FILE:-$HOME/.aws/config}"|sed -e 's/.*profile \([a-zA-Z0-9_\.-]*\).*/\1/')) +} +compctl -K aws_profiles asp + +if which aws_zsh_completer.sh &>/dev/null; then + _aws_zsh_completer_path=$(which aws_zsh_completer.sh 2>/dev/null) +elif _homebrew-installed && _awscli-homebrew-installed; then + _aws_zsh_completer_path=$_brew_prefix/libexec/bin/aws_zsh_completer.sh +fi + +[ -n "$_aws_zsh_completer_path" ] && [ -x $_aws_zsh_completer_path ] && source $_aws_zsh_completer_path +unset _aws_zsh_completer_path diff --git a/oh-my-zsh/.oh-my-zsh/plugins/battery/README.md b/oh-my-zsh/.oh-my-zsh/plugins/battery/README.md new file mode 100644 index 0000000..b7a13a7 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/battery/README.md @@ -0,0 +1,13 @@ +# Battery Plugin + +This plugin adds some functions you can use to display battery information in your custom theme. + +To use, add `battery` to the list of plugins in your `.zshrc` file: + +`plugins=(... battery)` + +Then, add the `battery_pct_prompt` function to your custom theme. For example: + +``` +RPROMPT='$(battery_pct_prompt)' +``` diff --git a/oh-my-zsh/.oh-my-zsh/plugins/battery/battery.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/battery/battery.plugin.zsh new file mode 100644 index 0000000..8f398cf --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/battery/battery.plugin.zsh @@ -0,0 +1,160 @@ +########################################### +# Battery plugin for oh-my-zsh # +# Original Author: Peter hoeg (peterhoeg) # +# Email: peter@speartail.com # +########################################### +# Author: Sean Jones (neuralsandwich) # +# Email: neuralsandwich@gmail.com # +# Modified to add support for Apple Mac # +########################################### + +if [[ "$OSTYPE" = darwin* ]] ; then + + function battery_pct() { + local smart_battery_status="$(ioreg -rc "AppleSmartBattery")" + typeset -F maxcapacity=$(echo $smart_battery_status | grep '^.*"MaxCapacity"\ =\ ' | sed -e 's/^.*"MaxCapacity"\ =\ //') + typeset -F currentcapacity=$(echo $smart_battery_status | grep '^.*"CurrentCapacity"\ =\ ' | sed -e 's/^.*CurrentCapacity"\ =\ //') + integer i=$(((currentcapacity/maxcapacity) * 100)) + echo $i + } + + function plugged_in() { + [ $(ioreg -rc AppleSmartBattery | grep -c '^.*"ExternalConnected"\ =\ Yes') -eq 1 ] + } + + function battery_pct_remaining() { + if plugged_in ; then + echo "External Power" + else + battery_pct + fi + } + + function battery_time_remaining() { + local smart_battery_status="$(ioreg -rc "AppleSmartBattery")" + if [[ $(echo $smart_battery_status | grep -c '^.*"ExternalConnected"\ =\ No') -eq 1 ]] ; then + timeremaining=$(echo $smart_battery_status | grep '^.*"AvgTimeToEmpty"\ =\ ' | sed -e 's/^.*"AvgTimeToEmpty"\ =\ //') + if [ $timeremaining -gt 720 ] ; then + echo "::" + else + echo "~$((timeremaining / 60)):$((timeremaining % 60))" + fi + else + echo "∞" + fi + } + + function battery_pct_prompt () { + if [[ $(ioreg -rc AppleSmartBattery | grep -c '^.*"ExternalConnected"\ =\ No') -eq 1 ]] ; then + b=$(battery_pct_remaining) + if [ $b -gt 50 ] ; then + color='green' + elif [ $b -gt 20 ] ; then + color='yellow' + else + color='red' + fi + echo "%{$fg[$color]%}[$(battery_pct_remaining)%%]%{$reset_color%}" + else + echo "∞" + fi + } + + function battery_is_charging() { + [[ $(ioreg -rc "AppleSmartBattery"| grep '^.*"IsCharging"\ =\ ' | sed -e 's/^.*"IsCharging"\ =\ //') == "Yes" ]] + } + +elif [[ "$OSTYPE" = linux* ]] ; then + + function battery_is_charging() { + ! [[ $(acpi 2>/dev/null | grep -c '^Battery.*Discharging') -gt 0 ]] + } + + function battery_pct() { + if (( $+commands[acpi] )) ; then + echo "$(acpi 2>/dev/null | cut -f2 -d ',' | tr -cd '[:digit:]')" + fi + } + + function battery_pct_remaining() { + if [ ! $(battery_is_charging) ] ; then + battery_pct + else + echo "External Power" + fi + } + + function battery_time_remaining() { + if [[ $(acpi 2>/dev/null | grep -c '^Battery.*Discharging') -gt 0 ]] ; then + echo $(acpi 2>/dev/null | cut -f3 -d ',') + fi + } + + function battery_pct_prompt() { + b=$(battery_pct_remaining) + if [[ $(acpi 2>/dev/null | grep -c '^Battery.*Discharging') -gt 0 ]] ; then + if [ $b -gt 50 ] ; then + color='green' + elif [ $b -gt 20 ] ; then + color='yellow' + else + color='red' + fi + echo "%{$fg[$color]%}$(battery_pct_remaining)%%%{$reset_color%}" + else + echo "∞" + fi + } + +else + # Empty functions so we don't cause errors in prompts + function battery_pct_remaining() { + } + + function battery_time_remaining() { + } + + function battery_pct_prompt() { + } +fi + +function battery_level_gauge() { + local gauge_slots=${BATTERY_GAUGE_SLOTS:-10}; + local green_threshold=${BATTERY_GREEN_THRESHOLD:-6}; + local yellow_threshold=${BATTERY_YELLOW_THRESHOLD:-4}; + local color_green=${BATTERY_COLOR_GREEN:-%F{green}}; + local color_yellow=${BATTERY_COLOR_YELLOW:-%F{yellow}}; + local color_red=${BATTERY_COLOR_RED:-%F{red}}; + local color_reset=${BATTERY_COLOR_RESET:-%{%f%k%b%}}; + local battery_prefix=${BATTERY_GAUGE_PREFIX:-'['}; + local battery_suffix=${BATTERY_GAUGE_SUFFIX:-']'}; + local filled_symbol=${BATTERY_GAUGE_FILLED_SYMBOL:-'▶'}; + local empty_symbol=${BATTERY_GAUGE_EMPTY_SYMBOL:-'▷'}; + local charging_color=${BATTERY_CHARGING_COLOR:-$color_yellow}; + local charging_symbol=${BATTERY_CHARGING_SYMBOL:-'⚡'}; + + local battery_remaining_percentage=$(battery_pct); + + if [[ $battery_remaining_percentage =~ [0-9]+ ]]; then + local filled=$(((( $battery_remaining_percentage + $gauge_slots - 1) / $gauge_slots))); + local empty=$(($gauge_slots - $filled)); + + if [[ $filled -gt $green_threshold ]]; then local gauge_color=$color_green; + elif [[ $filled -gt $yellow_threshold ]]; then local gauge_color=$color_yellow; + else local gauge_color=$color_red; + fi + else + local filled=$gauge_slots; + local empty=0; + filled_symbol=${BATTERY_UNKNOWN_SYMBOL:-'.'}; + fi + + local charging=' ' && battery_is_charging && charging=$charging_symbol; + + printf ${charging_color//\%/\%\%}$charging${color_reset//\%/\%\%}${battery_prefix//\%/\%\%}${gauge_color//\%/\%\%} + printf ${filled_symbol//\%/\%\%}'%.0s' {1..$filled} + [[ $filled -lt $gauge_slots ]] && printf ${empty_symbol//\%/\%\%}'%.0s' {1..$empty} + printf ${color_reset//\%/\%\%}${battery_suffix//\%/\%\%}${color_reset//\%/\%\%} +} + + diff --git a/oh-my-zsh/.oh-my-zsh/plugins/bbedit/README.md b/oh-my-zsh/.oh-my-zsh/plugins/bbedit/README.md new file mode 100644 index 0000000..263c54c --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/bbedit/README.md @@ -0,0 +1,20 @@ +## bbedit + +Plugin for BBEdit, an HTML and text editor for Mac OS X + +### Requirements + + * [BBEdit](https://www.barebones.com/products/bbedit/) + * [BBEdit Command-Line Tools](https://www.barebones.com/support/bbedit/cmd-line-tools.html) + +### Usage + + * If the `bb` command is called without an argument, launch BBEdit + + * If `bb` is passed a directory, cd to it and open it in BBEdit + + * If `bb` is passed a file, open it in BBEdit + + * If `bbpb` create a new BBEdit document with the contents of the clipboard + + * If `bbd` alias for BBEdit diff tool diff --git a/oh-my-zsh/.oh-my-zsh/plugins/bbedit/bbedit.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/bbedit/bbedit.plugin.zsh new file mode 100644 index 0000000..fe9e72c --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/bbedit/bbedit.plugin.zsh @@ -0,0 +1,21 @@ +alias bbpb='pbpaste | bbedit --clean --view-top' + +alias bbd=bbdiff + +# +# If the bb command is called without an argument, launch BBEdit +# If bb is passed a directory, cd to it and open it in BBEdit +# If bb is passed a file, open it in BBEdit +# +function bb() { + if [[ -z "$1" ]] + then + bbedit --launch + else + bbedit "$1" + if [[ -d "$1" ]] + then + cd "$1" + fi + fi +} diff --git a/oh-my-zsh/.oh-my-zsh/plugins/bgnotify/README.md b/oh-my-zsh/.oh-my-zsh/plugins/bgnotify/README.md new file mode 100644 index 0000000..1d8fac5 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/bgnotify/README.md @@ -0,0 +1,54 @@ +# bgnotify zsh plugin + +cross-platform background notifications for long running commands! Supports OSX and Ubuntu linux. + +Standalone homepage: [t413/zsh-background-notify](https://github.com/t413/zsh-background-notify) + +---------------------------------- + +## How to use! + +Just add bgnotify to your plugins list in your `.zshrc` + +- On OS X you'll need [terminal-notifier](https://github.com/alloy/terminal-notifier) + * `brew install terminal-notifier` (or `gem install terminal-notifier`) +- On ubuntu you're already all set! +- On windows you can use [notifu](https://www.paralint.com/projects/notifu/) or the Cygwin Ports libnotify package + + +## Screenshots + +**Linux** + +![screenshot from 2014-11-07 15 58 36](https://cloud.githubusercontent.com/assets/326829/4962187/256b465c-66da-11e4-927d-cc2fc105e31f.png) + +**OS X** + +![screenshot 2014-11-08 14 15 12](https://cloud.githubusercontent.com/assets/326829/4965780/19fa3eac-6795-11e4-8ed6-0355711123a9.png) + +**Windows** + +![screenshot from 2014-11-07 15 55 00](https://cloud.githubusercontent.com/assets/326829/4962159/a2625ca0-66d9-11e4-9e91-c5834913190e.png) + + +## Configuration + +One can configure a few things: + +- `bgnotify_threshold` sets the notification threshold time (default 6 seconds) +- `function bgnotify_formatted` lets you change the notification + +Use these by adding a function definition before the your call to source. Example: + +~~~ sh +bgnotify_threshold=4 ## set your own notification threshold + +function bgnotify_formatted { + ## $1=exit_status, $2=command, $3=elapsed_time + [ $1 -eq 0 ] && title="Holy Smokes Batman!" || title="Holy Graf Zeppelin!" + bgnotify "$title -- after $3 s" "$2"; +} + +plugins=(git bgnotify) ## add to plugins list +source $ZSH/oh-my-zsh.sh ## existing source call +~~~ diff --git a/oh-my-zsh/.oh-my-zsh/plugins/bgnotify/bgnotify.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/bgnotify/bgnotify.plugin.zsh new file mode 100644 index 0000000..b3a6890 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/bgnotify/bgnotify.plugin.zsh @@ -0,0 +1,77 @@ +#!/usr/bin/env zsh + +## setup ## + +[[ -o interactive ]] || return #interactive only! +zmodload zsh/datetime || { print "can't load zsh/datetime"; return } # faster than date() +autoload -Uz add-zsh-hook || { print "can't add zsh hook!"; return } + +(( ${+bgnotify_threshold} )) || bgnotify_threshold=5 #default 10 seconds + + +## definitions ## + +if ! (type bgnotify_formatted | grep -q 'function'); then ## allow custom function override + function bgnotify_formatted { ## args: (exit_status, command, elapsed_seconds) + elapsed="$(( $3 % 60 ))s" + (( $3 >= 60 )) && elapsed="$((( $3 % 3600) / 60 ))m $elapsed" + (( $3 >= 3600 )) && elapsed="$(( $3 / 3600 ))h $elapsed" + [ $1 -eq 0 ] && bgnotify "#win (took $elapsed)" "$2" || bgnotify "#fail (took $elapsed)" "$2" + } +fi + +currentWindowId () { + if hash osascript 2>/dev/null; then #osx + osascript -e 'tell application (path to frontmost application as text) to id of front window' 2&> /dev/null || echo "0" + elif (hash notify-send 2>/dev/null || hash kdialog 2>/dev/null); then #ubuntu! + xprop -root 2> /dev/null | awk '/NET_ACTIVE_WINDOW/{print $5;exit} END{exit !$5}' || echo "0" + else + echo $EPOCHSECONDS #fallback for windows + fi +} + +bgnotify () { ## args: (title, subtitle) + if hash terminal-notifier 2>/dev/null; then #osx + [[ "$TERM_PROGRAM" == 'iTerm.app' ]] && term_id='com.googlecode.iterm2'; + [[ "$TERM_PROGRAM" == 'Apple_Terminal' ]] && term_id='com.apple.terminal'; + ## now call terminal-notifier, (hopefully with $term_id!) + [ -z "$term_id" ] && terminal-notifier -message "$2" -title "$1" >/dev/null || + terminal-notifier -message "$2" -title "$1" -activate "$term_id" -sender "$term_id" >/dev/null + elif hash growlnotify 2>/dev/null; then #osx growl + growlnotify -m "$1" "$2" + elif hash notify-send 2>/dev/null; then #ubuntu gnome! + notify-send "$1" "$2" + elif hash kdialog 2>/dev/null; then #ubuntu kde! + kdialog --title "$1" --passivepopup "$2" 5 + elif hash notifu 2>/dev/null; then #cygwyn support! + notifu /m "$2" /p "$1" + fi +} + + +## Zsh hooks ## + +bgnotify_begin() { + bgnotify_timestamp=$EPOCHSECONDS + bgnotify_lastcmd="$1" + bgnotify_windowid=$(currentWindowId) +} + +bgnotify_end() { + didexit=$? + elapsed=$(( EPOCHSECONDS - bgnotify_timestamp )) + past_threshold=$(( elapsed >= bgnotify_threshold )) + if (( bgnotify_timestamp > 0 )) && (( past_threshold )); then + if [ $(currentWindowId) != "$bgnotify_windowid" ]; then + print -n "\a" + bgnotify_formatted "$didexit" "$bgnotify_lastcmd" "$elapsed" + fi + fi + bgnotify_timestamp=0 #reset it to 0! +} + +## only enable if a local (non-ssh) connection +if [ -z "$SSH_CLIENT" ] && [ -z "$SSH_TTY" ]; then + add-zsh-hook preexec bgnotify_begin + add-zsh-hook precmd bgnotify_end +fi diff --git a/oh-my-zsh/.oh-my-zsh/plugins/boot2docker/README.md b/oh-my-zsh/.oh-my-zsh/plugins/boot2docker/README.md new file mode 100644 index 0000000..9551e23 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/boot2docker/README.md @@ -0,0 +1,6 @@ +## Boot2docker autocomplete plugin + +- Adds autocomplete options for all boot2docker commands. + + +Maintainer : Manfred Touron ([@moul](https://github.com/moul)) diff --git a/oh-my-zsh/.oh-my-zsh/plugins/boot2docker/_boot2docker b/oh-my-zsh/.oh-my-zsh/plugins/boot2docker/_boot2docker new file mode 100644 index 0000000..3116bd1 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/boot2docker/_boot2docker @@ -0,0 +1,73 @@ +#compdef boot2docker + +# Boot2docker autocompletion for oh-my-zsh +# Requires: Boot2docker installed +# Author: Manfred Touron (@moul) + +local -a _1st_arguments +_1st_arguments=( + "init":"Create a new Boot2Docker VM." + "up":"Start VM from any states." + "start":"Start VM from any states." + "boot":"Start VM from any states." + "ssh":"[ssh-command] Login to VM via SSH." + "save":"Suspend VM and save state to disk." + "suspend":"Suspend VM and save state to disk." + "down":"Gracefully shutdown the VM." + "stop":"Gracefully shutdown the VM." + "halt":"Gracefully shutdown the VM." + "restart":"Gracefully reboot the VM." + "poweroff":"Forcefully power off the VM (may corrupt disk image)." + "reset":"Forcefully power cycle the VM (may corrupt disk image)." + "delete":"Delete Boot2Docker VM and its disk image." + "destroy":"Delete Boot2Docker VM and its disk image." + "config":"Show selected profile file settings." + "cfg":"Show selected profile file settings." + "info":"Display detailed information of VM." + "ip":"Display the IP address of the VM's Host-only network." + "socket":"Display the DOCKER_HOST socket to connect to." + "shellinit":"Display the shell command to set up the Docker client." + "status":"Display current state of VM." + "download":"Download Boot2Docker ISO image." + "upgrade":"Upgrade the Boot2Docker ISO image (restart if running)." + "version":"Display version information." +) + +_arguments \ + '(--basevmdk)--basevmdk[Path to VMDK to use as base for persistent partition]' \ + '(--cpus)'{-c,--cpus}'[number of CPUs for boot2docker.]' \ + '(--clobber)--clobber[overwrite Docker client binary on boot2docker upgrade]' \ + '(--dhcp)--dhcp[enable VirtualBox host-only network DHCP.]' \ + '(--dhcpip)--dhcpip[VirtualBox host-only network DHCP server address.]' \ + '(-s --disksize)'{-s,--disksize}'[boot2docker disk image size (in MB).]' \ + '(--dockerport)--dockerport[host Docker port (forward to port 2376 in VM). (deprecated - use with care)]' \ + '(--driver)--driver[hypervisor driver.]' \ + '(--force-upgrade-download)--force-upgrade-download[always download on boot2docker upgrade, never skip.]' \ + '(--hostip)--hostip[VirtualBox host-only network IP address.]' \ + '(--iso)--iso[path to boot2docker ISO image.]' \ + '(--iso-url)--iso-url[/api.github.com/repos/boot2docker/boot2docker/releases": source URL to provision the boot2docker ISO image.]' \ + '(--lowerip)--lowerip[VirtualBox host-only network DHCP lower bound.]' \ + '(--memory)'{-m,--memory}'[virtual machine memory size (in MB).]' \ + '(--netmask)--netmask[VirtualBox host-only network mask.]' \ + '(--no-dummy)--no-dummy[Example parameter for the dummy driver.]' \ + '(--retries)--retries[number of port knocking retries during 'start']' \ + '(--serial)--serial[try serial console to get IP address (experimental)]' \ + '(--serialfile)--serialfile[path to the serial socket/pipe.]' \ + '(--ssh)--ssh[path to SSH client utility.]' \ + '(--ssh-keygen)--ssh-keygen[path to ssh-keygen utility.]' \ + '(--sshkey)--sshkey[path to SSH key to use.]' \ + '(--sshport)--sshport[host SSH port (forward to port 22 in VM).]' \ + '(--upperip)--upperip[VirtualBox host-only network DHCP upper bound.]' \ + '(--vbm)--vbm[path to VirtualBox management utility.]' \ + '(--vbox-share)--vbox-share[(defaults to "/Users=Users" if no shares are specified; use "disable" to explicitly prevent any shares from being created) List of directories to share during "up|start|boot" via VirtualBox Guest Additions, with optional labels]' \ + '(--verbose)'{-v,--verbose}'[display verbose command invocations.]' \ + '(--vm)--vm[virtual machine name.]' \ + '(--waittime)--waittime[Time in milliseconds to wait between port knocking retries during 'start']' \ + '*:: :->subcmds' && return 0 + +#_arguments '*:: :->command' + +if (( CURRENT == 1 )); then + _describe -t commands "boot2docker command" _1st_arguments + return +fi diff --git a/oh-my-zsh/.oh-my-zsh/plugins/bower/README.md b/oh-my-zsh/.oh-my-zsh/plugins/bower/README.md new file mode 100644 index 0000000..743b6a0 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/bower/README.md @@ -0,0 +1,18 @@ +# Bower plugin + +This plugin adds completion for [Bower](https://bower.io/) and a few useful aliases for common Bower commands. + +To use it, add `bower` to the plugins array in your zshrc file: + +``` +plugins=(... bower) +``` + +## Aliases + +| Alias | Command | Description | +|-------|-----------------|--------------------------------------------------------| +| bi | `bower install` | Installs the project dependencies listed in bower.json | +| bl | `bower list` | List local packages and possible updates | +| bs | `bower search` | Finds all packages or a specific package. | + diff --git a/oh-my-zsh/.oh-my-zsh/plugins/bower/_bower b/oh-my-zsh/.oh-my-zsh/plugins/bower/_bower new file mode 100644 index 0000000..ae0ca4a --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/bower/_bower @@ -0,0 +1,58 @@ + + +# Credits to npm's awesome completion utility. +# +# Bower completion script, based on npm completion script. + +###-begin-bower-completion-### +# +# Installation: bower completion >> ~/.bashrc (or ~/.zshrc) +# Or, maybe: bower completion > /usr/local/etc/bash_completion.d/bower +# + +COMP_WORDBREAKS=${COMP_WORDBREAKS/=/} +COMP_WORDBREAKS=${COMP_WORDBREAKS/@/} +export COMP_WORDBREAKS + +if type complete &>/dev/null; then + _bower_completion () { + local si="$IFS" + IFS=$'\n' COMPREPLY=($(COMP_CWORD="$COMP_CWORD" \ + COMP_LINE="$COMP_LINE" \ + COMP_POINT="$COMP_POINT" \ + bower completion -- "${COMP_WORDS[@]}" \ + 2>/dev/null)) || return $? + IFS="$si" + } + complete -F _bower_completion bower +elif type compdef &>/dev/null; then + _bower_completion() { + si=$IFS + compadd -- $(COMP_CWORD=$((CURRENT-1)) \ + COMP_LINE=$BUFFER \ + COMP_POINT=0 \ + bower completion -- "${words[@]}" \ + 2>/dev/null) + IFS=$si + } + compdef _bower_completion bower +elif type compctl &>/dev/null; then + _bower_completion () { + local cword line point words si + read -Ac words + read -cn cword + let cword-=1 + read -l line + read -ln point + si="$IFS" + IFS=$'\n' reply=($(COMP_CWORD="$cword" \ + COMP_LINE="$line" \ + COMP_POINT="$point" \ + bower completion -- "${words[@]}" \ + 2>/dev/null)) || return $? + IFS="$si" + } + compctl -K _bower_completion bower +fi +###-end-bower-completion-### + diff --git a/oh-my-zsh/.oh-my-zsh/plugins/bower/bower.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/bower/bower.plugin.zsh new file mode 100644 index 0000000..6019b9d --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/bower/bower.plugin.zsh @@ -0,0 +1,82 @@ +alias bi="bower install" +alias bl="bower list" +alias bs="bower search" + +_bower_installed_packages () { + bower_package_list=$(bower ls --no-color 2>/dev/null| awk 'NR>3{print p}{p=$0}'| cut -d ' ' -f 2|sed 's/#.*//') +} +_bower () +{ + local -a _1st_arguments _no_color _dopts _save_dev _force_lastest _production + local expl + typeset -A opt_args + + _no_color=('--no-color[Do not print colors (available in all commands)]') + + _dopts=( + '(--save)--save[Save installed packages into the project"s bower.json dependencies]' + '(--force)--force[Force fetching remote resources even if a local copy exists on disk]' + ) + + _save_dev=('(--save-dev)--save-dev[Save installed packages into the project"s bower.json devDependencies]') + + _force_lastest=('(--force-latest)--force-latest[Force latest version on conflict]') + + _production=('(--production)--production[Do not install project devDependencies]') + + _1st_arguments=( + 'cache-clean:Clean the Bower cache, or the specified package caches' \ + 'help:Display help information about Bower' \ + 'info:Version info and description of a particular package' \ + 'init:Interactively create a bower.json file' \ + 'install:Install a package locally' \ + 'link:Symlink a package folder' \ + 'lookup:Look up a package URL by name' \ + 'register:Register a package' \ + 'search:Search for a package by name' \ + 'uninstall:Remove a package' \ + 'update:Update a package' \ + {ls,list}:'[List all installed packages]' + ) + _arguments \ + $_no_color \ + '*:: :->subcmds' && return 0 + + if (( CURRENT == 1 )); then + _describe -t commands "bower subcommand" _1st_arguments + return + fi + + case "$words[1]" in + install) + _arguments \ + $_dopts \ + $_save_dev \ + $_force_lastest \ + $_no_color \ + $_production + ;; + update) + _arguments \ + $_dopts \ + $_no_color \ + $_force_lastest + _bower_installed_packages + compadd "$@" $(echo $bower_package_list) + ;; + uninstall) + _arguments \ + $_no_color \ + $_dopts + _bower_installed_packages + compadd "$@" $(echo $bower_package_list) + ;; + *) + _arguments \ + $_no_color \ + ;; + esac + +} + +compdef _bower bower diff --git a/oh-my-zsh/.oh-my-zsh/plugins/branch/README.md b/oh-my-zsh/.oh-my-zsh/plugins/branch/README.md new file mode 100644 index 0000000..56ab8da --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/branch/README.md @@ -0,0 +1,33 @@ +# Branch + +Displays the current Git or Mercurial branch fast. + +## Speed test + +### Mercurial + +```shell +$ time hg branch +0.11s user 0.14s system 70% cpu 0.355 total +``` + +### Branch plugin + +```shell +$ time zsh /tmp/branch_prompt_info_test.zsh +0.00s user 0.01s system 78% cpu 0.014 total +``` + +## Usage + +Edit your theme file (eg.: `~/.oh-my-zsh/theme/robbyrussell.zsh-theme`) +adding `$(branch_prompt_info)` in your prompt like this: + +```diff +- PROMPT='${ret_status}%{$fg_bold[green]%}%p %{$fg[cyan]%}%c %{$fg_bold[blue]%}$(git_prompt_info)%{$fg_bold[blue]%} % %{$reset_color%}' ++ PROMPT='${ret_status}%{$fg_bold[green]%}%p %{$fg[cyan]%}%c %{$fg_bold[blue]%}$(git_prompt_info)$(branch_prompt_info)%{$fg_bold[blue]%} % %{$reset_color%}' +``` + +## Maintainer + +Victor Torres () diff --git a/oh-my-zsh/.oh-my-zsh/plugins/branch/branch.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/branch/branch.plugin.zsh new file mode 100644 index 0000000..2e5659b --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/branch/branch.plugin.zsh @@ -0,0 +1,31 @@ +# Branch: displays the current Git or Mercurial branch fast. +# Victor Torres +# Oct 2, 2015 + +function branch_prompt_info() { + # Defines path as current directory + local current_dir=$PWD + # While current path is not root path + while [[ $current_dir != '/' ]] + do + # Git repository + if [[ -d "${current_dir}/.git" ]] + then + echo '±' ${"$(<"$current_dir/.git/HEAD")"##*/} + return; + fi + # Mercurial repository + if [[ -d "${current_dir}/.hg" ]] + then + if [[ -f "$current_dir/.hg/branch" ]] + then + echo '☿' $(<"$current_dir/.hg/branch") + else + echo '☿ default' + fi + return; + fi + # Defines path as parent directory and keeps looking for :) + current_dir="${current_dir:h}" + done +} diff --git a/oh-my-zsh/.oh-my-zsh/plugins/brew/README.md b/oh-my-zsh/.oh-my-zsh/plugins/brew/README.md new file mode 100644 index 0000000..aab55ea --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/brew/README.md @@ -0,0 +1,19 @@ +# brew plugin + +The plugin adds several aliases for common [brew](https://brew.sh) commands. + +To use it, add `brew` to the plugins array of your zshrc file: +``` +plugins=(... brew) +``` + +## Aliases + +| Alias | Command | Description | +|--------|----------------------|---------------| +| brewp | `brew pin` | Pin a specified formulae, preventing them from being upgraded when issuing the brew upgrade command. | +| brews | `brew list -1` | List installed formulae, one entry per line, or the installed files for a given formulae. | +| brewsp | `brew list --pinned` | Show the versions of pinned formulae, or only the specified (pinned) formulae if formulae are given. | +| bubo | `brew update && brew outdated` | Fetch the newest version of Homebrew and all formulae, then list outdated formulae. | +| bubc | `brew upgrade && brew cleanup` | Upgrade outdated, unpinned brews (with existing install options), then removes stale lock files and outdated downloads for formulae and casks, and removes old versions of installed formulae. | +| bubu | `bubo && bubc` | Updates Homebrew, lists outdated formulae, upgrades oudated and unpinned formulae, and removes stale and outdated downloads and versions. | diff --git a/oh-my-zsh/.oh-my-zsh/plugins/brew/brew.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/brew/brew.plugin.zsh new file mode 100644 index 0000000..60b81f8 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/brew/brew.plugin.zsh @@ -0,0 +1,22 @@ +alias brewp='brew pin' +alias brews='brew list -1' +alias brewsp='brew list --pinned' +alias bubo='brew update && brew outdated' +alias bubc='brew upgrade && brew cleanup' +alias bubu='bubo && bubc' + +if command mkdir "$ZSH_CACHE_DIR/.brew-completion-message" 2>/dev/null; then + print -P '%F{yellow}'Oh My Zsh brew plugin: + cat <<-'EOF' + + With the advent of their 1.0 release, Homebrew has decided to bundle + the zsh completion as part of the brew installation, so we no longer + ship it with the brew plugin; now it only has brew aliases. + + If you find that brew completion no longer works, make sure you have + your Homebrew installation fully up to date. + + You will only see this message once. + EOF + print -P '%f' +fi diff --git a/oh-my-zsh/.oh-my-zsh/plugins/bundler/README.md b/oh-my-zsh/.oh-my-zsh/plugins/bundler/README.md new file mode 100644 index 0000000..dc2f170 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/bundler/README.md @@ -0,0 +1,52 @@ +# Bundler + +- adds completion for basic bundler commands +- adds short aliases for common bundler commands + - `be` aliased to `bundle exec`. + It also supports aliases (if `rs` is `rails server`, `be rs` will bundle-exec `rails server`). + - `bl` aliased to `bundle list` + - `bp` aliased to `bundle package` + - `bo` aliased to `bundle open` + - `bout` aliased to `bundle outdated` + - `bu` aliased to `bundle update` + - `bi` aliased to `bundle install --jobs=` (only for bundler `>= 1.4.0`) +- adds a wrapper for common gems: + - looks for a binstub under `./bin/` and executes it (if present) + - calls `bundle exec ` otherwise + +Common gems wrapped by default (by name of the executable): +`annotate`, `cap`, `capify`, `cucumber`, `foodcritic`, `guard`, `hanami`, `irb`, `jekyll`, `kitchen`, `knife`, `middleman`, `nanoc`, `pry`, `puma`, `rackup`, `rainbows`, `rake`, `rspec`, `shotgun`, `sidekiq`, `spec`, `spork`, `spring`, `strainer`, `tailor`, `taps`, `thin`, `thor`, `unicorn` and `unicorn_rails`. + +## Configuration + +Please use the exact name of the executable and not the gem name. + +### Add additional gems to be wrapped + +Add this before the plugin-list in your `.zshrc`: +```sh +BUNDLED_COMMANDS=(rubocop) +plugins=(... bundler ...) +``` +This will add the wrapper for the `rubocop` gem (i.e. the executable). + + +### Exclude gems from being wrapped + +Add this before the plugin-list in your `.zshrc`: +```sh +UNBUNDLED_COMMANDS=(foreman spin) +plugins=(... bundler ...) +``` +This will exclude the `foreman` and `spin` gems (i.e. their executable) from being wrapped. + +## Excluded gems + +These gems should not be called with `bundle exec`. Please see [issue #2923](https://github.com/robbyrussell/oh-my-zsh/pull/2923) on GitHub for clarification. + +`berks` +`foreman` +`mailcatcher` +`rails` +`ruby` +`spin` diff --git a/oh-my-zsh/.oh-my-zsh/plugins/bundler/_bundler b/oh-my-zsh/.oh-my-zsh/plugins/bundler/_bundler new file mode 100644 index 0000000..ba647ab --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/bundler/_bundler @@ -0,0 +1,104 @@ +#compdef bundle + +local curcontext="$curcontext" state line _gems _opts ret=1 + +_arguments -C -A "-v" -A "--version" \ + '(- 1 *)'{-v,--version}'[display version information]' \ + '1: :->cmds' \ + '*:: :->args' && ret=0 + +case $state in + cmds) + _values "bundle command" \ + "install[Install the gems specified by the Gemfile or Gemfile.lock]" \ + "update[Update dependencies to their latest versions]" \ + "package[Package the .gem files required by your application]" \ + "exec[Execute a script in the context of the current bundle]" \ + "config[Specify and read configuration options for bundler]" \ + "check[Determine whether the requirements for your application are installed]" \ + "list[Show all of the gems in the current bundle]" \ + "show[Show the source location of a particular gem in the bundle]" \ + "outdated[Show all of the outdated gems in the current bundle]" \ + "console[Start an IRB session in the context of the current bundle]" \ + "open[Open an installed gem in the editor]" \ + "viz[Generate a visual representation of your dependencies]" \ + "init[Generate a simple Gemfile, placed in the current directory]" \ + "gem[Create a simple gem, suitable for development with bundler]" \ + "platform[Displays platform compatibility information]" \ + "clean[Cleans up unused gems in your bundler directory]" \ + "help[Describe available tasks or one specific task]" + ret=0 + ;; + args) + case $line[1] in + help) + _values 'commands' \ + 'install' \ + 'update' \ + 'package' \ + 'exec' \ + 'config' \ + 'check' \ + 'list' \ + 'show' \ + 'outdated' \ + 'console' \ + 'open' \ + 'viz' \ + 'init' \ + 'gem' \ + 'platform' \ + 'help' && ret=0 + ;; + install) + _arguments \ + '(--no-color)--no-color[disable colorization in output]' \ + '(--local)--local[do not attempt to connect to rubygems.org]' \ + '(--quiet)--quiet[only output warnings and errors]' \ + '(--gemfile)--gemfile=-[use the specified gemfile instead of Gemfile]:gemfile' \ + '(--system)--system[install to the system location]' \ + '(--deployment)--deployment[install using defaults tuned for deployment environments]' \ + '(--frozen)--frozen[do not allow the Gemfile.lock to be updated after this install]' \ + '(--path)--path=-[specify a different path than the system default]:path:_files' \ + '(--binstubs)--binstubs=-[generate bin stubs for bundled gems to ./bin]:directory:_files' \ + '(--without)--without=-[exclude gems that are part of the specified named group]:groups' + ret=0 + ;; + exec) + _normal && ret=0 + ;; + clean) + _arguments \ + '(--force)--force[forces clean even if --path is not set]' \ + '(--dry-run)--dry-run[only print out changes, do not actually clean gems]' \ + '(--no-color)--no-color[Disable colorization in output]' \ + '(--verbose)--verbose[Enable verbose output mode]' + ret=0 + ;; + outdated) + _arguments \ + '(--pre)--pre[Check for newer pre-release gems]' \ + '(--source)--source[Check against a specific source]' \ + '(--local)--local[Do not attempt to fetch gems remotely and use the gem cache instead]' \ + '(--no-color)--no-color[Disable colorization in output]' \ + '(--verbose)--verbose[Enable verbose output mode]' + ret=0 + ;; + (open|show) + _gems=( $(bundle show 2> /dev/null | sed -e '/^ \*/!d; s/^ \* \([^ ]*\) .*/\1/') ) + if [[ $_gems != "" ]]; then + _values 'gems' $_gems && ret=0 + fi + ;; + *) + _opts=( $(bundle help $line[1] | sed -e '/^ \[-/!d; s/^ \[\(-[^=]*\)=.*/\1/') ) + _opts+=( $(bundle help $line[1] | sed -e '/^ -/!d; s/^ \(-.\), \[\(-[^=]*\)=.*/\1 \2/') ) + if [[ $_opts != "" ]]; then + _values 'options' $_opts && ret=0 + fi + ;; + esac + ;; +esac + +return ret diff --git a/oh-my-zsh/.oh-my-zsh/plugins/bundler/bundler.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/bundler/bundler.plugin.zsh new file mode 100644 index 0000000..668e15d --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/bundler/bundler.plugin.zsh @@ -0,0 +1,115 @@ +alias be="bundle exec" +alias bl="bundle list" +alias bp="bundle package" +alias bo="bundle open" +alias bout="bundle outdated" +alias bu="bundle update" +alias bi="bundle_install" +alias bcn="bundle clean" + +bundled_commands=( + annotate + cap + capify + cucumber + foodcritic + guard + hanami + irb + jekyll + kitchen + knife + middleman + nanoc + pry + puma + rackup + rainbows + rake + rspec + shotgun + sidekiq + spec + spork + spring + strainer + tailor + taps + thin + thor + unicorn + unicorn_rails +) + +# Remove $UNBUNDLED_COMMANDS from the bundled_commands list +for cmd in $UNBUNDLED_COMMANDS; do + bundled_commands=(${bundled_commands#$cmd}); +done + +# Add $BUNDLED_COMMANDS to the bundled_commands list +for cmd in $BUNDLED_COMMANDS; do + bundled_commands+=($cmd); +done + +## Functions + +bundle_install() { + if ! _bundler-installed; then + echo "Bundler is not installed" + elif ! _within-bundled-project; then + echo "Can't 'bundle install' outside a bundled project" + else + local bundler_version=`bundle version | cut -d' ' -f3` + if [[ $bundler_version > '1.4.0' || $bundler_version = '1.4.0' ]]; then + if [[ "$OSTYPE" = (darwin|freebsd)* ]] + then + local cores_num="$(sysctl -n hw.ncpu)" + else + local cores_num="$(nproc)" + fi + bundle install --jobs=$cores_num $@ + else + bundle install $@ + fi + fi +} + +_bundler-installed() { + which bundle > /dev/null 2>&1 +} + +_within-bundled-project() { + local check_dir="$PWD" + while [ "$check_dir" != "/" ]; do + [ -f "$check_dir/Gemfile" ] && return + check_dir="$(dirname $check_dir)" + done + false +} + +_binstubbed() { + [ -f "./bin/${1}" ] +} + +_run-with-bundler() { + if _bundler-installed && _within-bundled-project; then + if _binstubbed $1; then + ./bin/$@ + else + bundle exec $@ + fi + else + $@ + fi +} + +## Main program +for cmd in $bundled_commands; do + eval "function unbundled_$cmd () { $cmd \$@ }" + eval "function bundled_$cmd () { _run-with-bundler $cmd \$@}" + alias $cmd=bundled_$cmd + + if which _$cmd > /dev/null 2>&1; then + compdef _$cmd bundled_$cmd=$cmd + fi +done diff --git a/oh-my-zsh/.oh-my-zsh/plugins/bwana/README.md b/oh-my-zsh/.oh-my-zsh/plugins/bwana/README.md new file mode 100644 index 0000000..8cbeaa3 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/bwana/README.md @@ -0,0 +1,9 @@ +# Bwana + +This plugin provides a function to open `man` pages directly with [Bwana](https://www.bruji.com/bwana/). + +To use it add bwana to the plugins array in your zshrc file. + +```bash +plugins=(... bwana) +``` diff --git a/oh-my-zsh/.oh-my-zsh/plugins/bwana/bwana.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/bwana/bwana.plugin.zsh new file mode 100644 index 0000000..b9a0479 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/bwana/bwana.plugin.zsh @@ -0,0 +1,13 @@ +# +# Requires https://www.bruji.com/bwana/ +# +if [[ -e /Applications/Bwana.app ]] || + ( system_profiler -detailLevel mini SPApplicationsDataType | grep -q Bwana ) +then + function man() { + open "man:$1" + } +else + echo "Bwana lets you read man files in Safari through a man: URI scheme" + echo "To use it within Zsh, install it from https://www.bruji.com/bwana/" +fi diff --git a/oh-my-zsh/.oh-my-zsh/plugins/cabal/README.md b/oh-my-zsh/.oh-my-zsh/plugins/cabal/README.md new file mode 100644 index 0000000..b1106c4 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/cabal/README.md @@ -0,0 +1,9 @@ +# Cabal + +This plugin provides completion for [Cabal](https://www.haskell.org/cabal/), a build tool for Haskell. It +also provides a function `cabal_sandbox_info` that prints whether the current working directory is in a sandbox. + +To use it, add cabal to the plugins array of your zshrc file: +``` +plugins=(... cabal) +``` diff --git a/oh-my-zsh/.oh-my-zsh/plugins/cabal/cabal.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/cabal/cabal.plugin.zsh new file mode 100644 index 0000000..a9a05b0 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/cabal/cabal.plugin.zsh @@ -0,0 +1,93 @@ +function cabal_sandbox_info() { + cabal_files=(*.cabal(N)) + if [ $#cabal_files -gt 0 ]; then + if [ -f cabal.sandbox.config ]; then + echo "%{$fg[green]%}sandboxed%{$reset_color%}" + else + echo "%{$fg[red]%}not sandboxed%{$reset_color%}" + fi + fi +} + +function _cabal_commands() { + local ret=1 state + _arguments ':subcommand:->subcommand' && ret=0 + + case $state in + subcommand) + subcommands=( + "bench:Run the benchmark, if any (configure with UserHooks)" + "build:Compile all targets or specific target." + "check:Check the package for common mistakes" + "clean:Clean up after a build" + "copy:Copy the files into the install locations" + "configure:Prepare to build the package" + "exec:Run a command with the cabal environment" + "fetch:Downloads packages for later installation" + "freeze:Freeze dependencies." + "get:Gets a package's source code" + "haddock:Generate Haddock HTML documentation" + "help:Help about commands" + "hscolour:Generate HsColour colourised code, in HTML format" + "info:Display detailed information about a particular package" + "init:Interactively create a .cabal file" + "install:Installs a list of packages" + "list:List packages matching a search string" + "register:Register this package with the compiler" + "repl:Open an interpreter session for the given target" + "report:Upload build reports to a remote server" + "run:Runs the compiled executable" + "sandbox:Create/modify/delete a sandbox" + "sdist:Generate a source distribution file (.tar.gz)" + "test:Run the test suite, if any (configure with UserHooks)" + "unpack:Unpacks packages for user inspection" + "update:Updates list of known packages" + "upload:Uploads source packages to Hackage" + ) + _describe -t subcommands 'cabal subcommands' subcommands && ret=0 + esac + + return ret +} + +compdef _cabal_commands cabal + +function _cab_commands() { + local ret=1 state + _arguments ':subcommand:->subcommand' && ret=0 + + case $state in + subcommand) + subcommands=( + "sync:Fetch the latest package index" + "install:Install packages" + "uninstall:Uninstall packages" + "installed:List installed packages" + "configure:Configure a cabal package" + "build:Build a cabal package" + "clean:Clean up a build directory" + "outdated:Display outdated packages" + "info:Display information of a package" + "sdist:Make tar.gz for source distribution" + "upload:Uploading tar.gz to HackageDB" + "get:Untar a package in the current directory" + "deps:Show dependencies of this package" + "revdeps:Show reverse dependencies of this package" + "check:Check consistency of packages" + "genpaths:Generate Paths_.hs" + "search:Search available packages by package name" + "add:Add a source directory" + "test:Run tests" + "bench:Run benchmarks" + "doc:Generate manuals" + "ghci:Run GHCi (with a sandbox)" + "init:Initialize a sandbox" + "help:Display the help message of the command" + ) + _describe -t subcommands 'cab subcommands' subcommands && ret=0 + esac + + return ret +} + +command -v cab >/dev/null 2>&1 && { compdef _cab_commands cab } diff --git a/oh-my-zsh/.oh-my-zsh/plugins/cake/cake.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/cake/cake.plugin.zsh new file mode 100644 index 0000000..2370df9 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/cake/cake.plugin.zsh @@ -0,0 +1,33 @@ +# Set this to 1 if you want to cache the tasks +_cake_cache_task_list=1 + +# Cache filename +_cake_task_cache_file='.cake_task_cache' + +_cake_get_target_list () { + cake | grep '^cake ' | sed -e "s/cake \([^ ]*\) .*/\1/" | grep -v '^$' +} + +_cake_does_target_list_need_generating () { + + if [ ${_cake_cache_task_list} -eq 0 ]; then + return 1; + fi + + [ ! -f ${_cake_task_cache_file} ] && return 0; + [ Cakefile -nt ${_cake_task_cache_file} ] && return 0; + return 1; +} + +_cake () { + if [ -f Cakefile ]; then + if _cake_does_target_list_need_generating; then + _cake_get_target_list > ${_cake_task_cache_file} + compadd `cat ${_cake_task_cache_file}` + else + compadd `_cake_get_target_list` + fi + fi +} + +compdef _cake cake diff --git a/oh-my-zsh/.oh-my-zsh/plugins/cakephp3/cakephp3.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/cakephp3/cakephp3.plugin.zsh new file mode 100644 index 0000000..dbfbeba --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/cakephp3/cakephp3.plugin.zsh @@ -0,0 +1,38 @@ +# CakePHP 3 basic command completion +_cakephp3_get_command_list () { + bin/cake Completion commands +} + +_cakephp3_get_sub_command_list () { + bin/cake Completion subcommands ${words[2]} +} + +_cakephp3_get_3rd_argument () { + bin/cake ${words[2]} ${words[3]} | \grep '\-\ '| \awk '{print $2}' +} + +_cakephp3 () { + local -a has3rdargument + has3rdargument=("all" "controller" "fixture" "model" "template") + if [ -f bin/cake ]; then + if (( CURRENT == 2 )); then + compadd $(_cakephp3_get_command_list) + fi + if (( CURRENT == 3 )); then + compadd $(_cakephp3_get_sub_command_list) + fi + if (( CURRENT == 4 )); then + if [[ ${has3rdargument[(i)${words[3]}]} -le ${#has3rdargument} ]]; then + compadd $(_cakephp3_get_3rd_argument) + fi + fi + fi +} + +compdef _cakephp3 bin/cake +compdef _cakephp3 cake + +#Alias +alias c3='bin/cake' +alias c3cache='bin/cake orm_cache clear' +alias c3migrate='bin/cake migrations migrate' diff --git a/oh-my-zsh/.oh-my-zsh/plugins/capistrano/README.md b/oh-my-zsh/.oh-my-zsh/plugins/capistrano/README.md new file mode 100644 index 0000000..335b794 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/capistrano/README.md @@ -0,0 +1,14 @@ +# Capistrano + +This plugin provides completion for [Capistrano](https://capistranorb.com/). + +To use it add capistrano to the plugins array in your zshrc file. + +```bash +plugins=(... capistrano) +``` + +For a working completion use the `capit` command instead of `cap`, because cap is a +[reserved word in zsh](http://zsh.sourceforge.net/Doc/Release/Zsh-Modules.html#The-zsh_002fcap-Module). + +`capit` automatically runs cap with bundler if a Gemfile is found. diff --git a/oh-my-zsh/.oh-my-zsh/plugins/capistrano/_capistrano b/oh-my-zsh/.oh-my-zsh/plugins/capistrano/_capistrano new file mode 100644 index 0000000..a79e47b --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/capistrano/_capistrano @@ -0,0 +1,49 @@ +#compdef capit +#autoload + +# Added `capit` because `cap` is a reserved word. `cap` completion doesn't work. +# http://zsh.sourceforge.net/Doc/Release/Zsh-Modules.html#The-zsh_002fcap-Module + +local curcontext="$curcontext" state line ret=1 +local -a _configs + +_arguments -C \ + '1: :->cmds' \ + '2:: :->args' && ret=0 + +_cap_tasks() { + if [[ -f config/deploy.rb || -f Capfile ]]; then + if [[ ! -f .cap_tasks~ ]]; then + capit --tasks | sed 's/\(\[\)\(.*\)\(\]\)/\2:/' | awk '{command=$2; $1=$2=$3=""; gsub(/^[ \t\r\n]+/, "", $0); gsub(":", "\\:", command); print command"["$0"]"}' > .cap_tasks~ + fi + + OLD_IFS=$IFS + IFS=$'\n' + _values 'cap commands' $(< .cap_tasks~) + IFS=$OLD_IFS + # zmodload zsh/mapfile + # _values ${(f)mapfile[.cap_tasks~]} + fi +} + +_cap_stages() { + compadd $(find config/deploy -name \*.rb | cut -d/ -f3 | sed s:.rb::g) +} + +case $state in + cmds) + # check if it uses multistage + if [[ -d config/deploy ]]; then + _cap_stages + else + _cap_tasks + fi + ret=0 + ;; + args) + _cap_tasks + ret=0 + ;; +esac + +return ret diff --git a/oh-my-zsh/.oh-my-zsh/plugins/capistrano/capistrano.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/capistrano/capistrano.plugin.zsh new file mode 100644 index 0000000..8195728 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/capistrano/capistrano.plugin.zsh @@ -0,0 +1,11 @@ +# Added `capit` because `cap` is a reserved word. `cap` completion doesn't work. +# http://zsh.sourceforge.net/Doc/Release/Zsh-Modules.html#The-zsh_002fcap-Module + +function capit() { + if [ -f Gemfile ] + then + bundle exec cap $* + else + cap $* + fi +} diff --git a/oh-my-zsh/.oh-my-zsh/plugins/cargo/README.md b/oh-my-zsh/.oh-my-zsh/plugins/cargo/README.md new file mode 100644 index 0000000..5fa688d --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/cargo/README.md @@ -0,0 +1,11 @@ +# cargo + +This plugin adds completion for the Rust build tool [`cargo`](https://github.com/rust-lang/cargo). + +To use it, add `cargo` to the plugins array in your zshrc file: + +```zsh +plugins=(... cargo) +``` + +Updated on October 4th, 2016. diff --git a/oh-my-zsh/.oh-my-zsh/plugins/cargo/_cargo b/oh-my-zsh/.oh-my-zsh/plugins/cargo/_cargo new file mode 100644 index 0000000..54e709c --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/cargo/_cargo @@ -0,0 +1,500 @@ +#compdef cargo + +typeset -A opt_args +autoload -U regexp-replace + +_cargo() { + +_arguments \ + '(- 1 *)'{-h,--help}'[show help message]' \ + '(- 1 *)'{-V,--version}'[show version information]' \ + '(- 1 *)'--list'[list installed commands]' \ + '(- 1 *)'--explain'[Run `rustc --explain CODE`]' \ + '(- 1 *)'{-v,--verbose}'[use verbose output]' \ + '(- 1 *)'--color'[colorization option]' \ + '(- 1 *)'--frozen'[Require Cargo.lock and cache are up to date]' \ + '(- 1 *)'--locked'[Require Cargo.lock is up to date]' \ + '1: :_cargo_cmds' \ + '*:: :->args' + +case $state in + args) + case $words[1] in + bench) + _arguments \ + '--features=[space separated feature list]' \ + '--all-features[enable all available features]' \ + '(-h, --help)'{-h,--help}'[show help message]' \ + '(-j, --jobs)'{-j,--jobs}'[number of parallel jobs, defaults to # of CPUs]' \ + "${command_scope_spec[@]}" \ + '--manifest-path=[path to manifest]: :_files -/' \ + '--no-default-features[do not build the default features]' \ + '--no-run[compile but do not run]' \ + '(-p,--package)'{-p=,--package=}'[package to run benchmarks for]:packages:_get_package_names' \ + '--target=[target triple]' \ + '(-v, --verbose)'{-v,--verbose}'[use verbose output]' \ + '(-q, --quiet)'{-q,--quiet}'[no output printed to stdout]' \ + '--color=:colorization option:(auto always never)' \ + ;; + + build) + _arguments \ + '--features=[space separated feature list]' \ + '--all-features[enable all available features]' \ + '(-h, --help)'{-h,--help}'[show help message]' \ + '(-j, --jobs)'{-j,--jobs}'[number of parallel jobs, defaults to # of CPUs]' \ + "${command_scope_spec[@]}" \ + '--manifest-path=[path to manifest]: :_files -/' \ + '--no-default-features[do not build the default features]' \ + '(-p,--package)'{-p=,--package=}'[package to build]:packages:_get_package_names' \ + '--release=[build in release mode]' \ + '--target=[target triple]' \ + '(-v, --verbose)'{-v,--verbose}'[use verbose output]' \ + '(-q, --quiet)'{-q,--quiet}'[no output printed to stdout]' \ + '--color=:colorization option:(auto always never)' \ + ;; + + clean) + _arguments \ + '(-h, --help)'{-h,--help}'[show help message]' \ + '--manifest-path=[path to manifest]: :_files -/' \ + '(-p,--package)'{-p=,--package=}'[package to clean]:packages:_get_package_names' \ + '(-q, --quiet)'{-q,--quiet}'[no output printed to stdout]' \ + '--release[whether or not to clean release artifacts]' \ + '--target=[target triple(default:all)]' \ + '(-v, --verbose)'{-v,--verbose}'[use verbose output]' \ + '--color=:colorization option:(auto always never)' \ + ;; + + doc) + _arguments \ + '--features=[space separated feature list]' \ + '--all-features[enable all available features]' \ + '(-h, --help)'{-h,--help}'[show help message]' \ + '(-j, --jobs)'{-j,--jobs}'[number of parallel jobs, defaults to # of CPUs]' \ + '--manifest-path=[path to manifest]: :_files -/' \ + '--no-deps[do not build docs for dependencies]' \ + '--no-default-features[do not build the default features]' \ + '--open[open docs in browser after the build]' \ + '(-p, --package)'{-p,--package}'=[package to document]' \ + '(-q, --quiet)'{-q,--quiet}'[no output printed to stdout]' \ + '--release[build artifacts in release mode, with optimizations]' \ + '--target=[build for the target triple]' \ + '(-v, --verbose)'{-v,--verbose}'[use verbose output]' \ + '--color=:colorization option:(auto always never)' \ + ;; + + fetch) + _arguments \ + '(-h, --help)'{-h,--help}'[show help message]' \ + '--manifest-path=[path to manifest]: :_files -/' \ + '(-q, --quiet)'{-q,--quiet}'[no output printed to stdout]' \ + '(-v, --verbose)'{-v,--verbose}'[use verbose output]' \ + '--color=:colorization option:(auto always never)' \ + ;; + + generate-lockfile) + _arguments \ + '(-h, --help)'{-h,--help}'[show help message]' \ + '--manifest-path=[path to manifest]: :_files -/' \ + '(-q, --quiet)'{-q,--quiet}'[no output printed to stdout]' \ + '(-v, --verbose)'{-v,--verbose}'[use verbose output]' \ + '--color=:colorization option:(auto always never)' \ + ;; + + git-checkout) + _arguments \ + '(-h, --help)'{-h,--help}'[show help message]' \ + 'q(-q, --quiet)'{-q,--quiet}'[no output printed to stdout]' \ + '--reference=[REF]' \ + '--url=[URL]' \ + '(-v, --verbose)'{-v,--verbose}'[use verbose output]' \ + '--color=:colorization option:(auto always never)' \ + ;; + + help) + _arguments \ + '(-h, --help)'{-h,--help}'[show help message]' \ + '*: :_cargo_cmds' \ + ;; + + init) + _arguments \ + '--bin[use binary template]' \ + '--vcs:initialize a new repo with a given VCS:(git hg none)' \ + '(-h, --help)'{-h,--help}'[show help message]' \ + '--name=[set the resulting package name]' \ + '(-q, --quiet)'{-q,--quiet}'[no output printed to stdout]' \ + '(-v, --verbose)'{-v,--verbose}'[use verbose output]' \ + '--color=:colorization option:(auto always never)' \ + ;; + + install) + _arguments \ + '--bin=[only install the specified binary]' \ + '--branch=[branch to use when installing from git]' \ + '--color=:colorization option:(auto always never)' \ + '--debug[build in debug mode instead of release mode]' \ + '--example[install the specified example instead of binaries]' \ + '--features=[space separated feature list]' \ + '--all-features[enable all available features]' \ + '--git=[URL from which to install the crate]' \ + '(-h, --help)'{-h,--help}'[show help message]' \ + '(-j, --jobs)'{-j,--jobs}'[number of parallel jobs, defaults to # of CPUs]' \ + '--no-default-features[do not build the default features]' \ + '--path=[local filesystem path to crate to install]' \ + '(-q, --quiet)'{-q,--quiet}'[no output printed to stdout]' \ + '--rev=[specific commit to use when installing from git]' \ + '--root=[directory to install packages into]' \ + '--tag=[tag to use when installing from git]' \ + '(-v, --verbose)'{-v,--verbose}'[use verbose output]' \ + '--vers=[version to install from crates.io]' \ + ;; + + locate-project) + _arguments \ + '(-h, --help)'{-h,--help}'[show help message]' \ + '--manifest-path=[path to manifest]: :_files -/' \ + ;; + + login) + _arguments \ + '(-h, --help)'{-h,--help}'[show help message]' \ + '--host=[Host to set the token for]' \ + '(-q, --quiet)'{-q,--quiet}'[no output printed to stdout]' \ + '(-v, --verbose)'{-v,--verbose}'[use verbose output]' \ + '--color=:colorization option:(auto always never)' \ + ;; + + metadata) + _arguments \ + '(-h, --help)'{-h,--help}'[show help message]' \ + '(-q, --quiet)'{-q,--quiet}'[no output printed to stdout]' \ + '(-v, --verbose)'{-v,--verbose}'[use verbose output]' \ + "--no-deps[output information only about the root package and don't fetch dependencies]" \ + '--no-default-features[do not include the default feature]' \ + '--manifest-path=[path to manifest]: :_files -/' \ + '--features=[space separated feature list]' \ + '--all-features[enable all available features]' \ + '--format-version=[format version(default: 1)]' \ + '--color=:colorization option:(auto always never)' \ + ;; + + new) + _arguments \ + '--bin[use binary template]' \ + '--vcs:initialize a new repo with a given VCS:(git hg none)' \ + '(-h, --help)'{-h,--help}'[show help message]' \ + '--name=[set the resulting package name]' \ + '(-q, --quiet)'{-q,--quiet}'[no output printed to stdout]' \ + '(-v, --verbose)'{-v,--verbose}'[use verbose output]' \ + '--color=:colorization option:(auto always never)' \ + ;; + + owner) + _arguments \ + '(-a, --add)'{-a,--add}'[add owner LOGIN]' \ + '(-h, --help)'{-h,--help}'[show help message]' \ + '--index[registry index]' \ + '(-l, --list)'{-l,--list}'[list owners of a crate]' \ + '(-q, --quiet)'{-q,--quiet}'[no output printed to stdout]' \ + '(-r, --remove)'{-r,--remove}'[remove owner LOGIN]' \ + '--token[API token to use when authenticating]' \ + '(-v, --verbose)'{-v,--verbose}'[use verbose output]' \ + '--color=:colorization option:(auto always never)' \ + ;; + + package) + _arguments \ + '(-h, --help)'{-h,--help}'[show help message]' \ + '(-l, --list)'{-l,--list}'[print files included in a package without making one]' \ + '--manifest-path=[path to manifest]: :_files -/' \ + '--no-metadata[ignore warnings about a lack of human-usable metadata]' \ + '--no-verify[do not build to verify contents]' \ + '(-q, --quiet)'{-q,--quiet}'[no output printed to stdout]' \ + '(-v, --verbose)'{-v,--verbose}'[use verbose output]' \ + '--color=:colorization option:(auto always never)' \ + ;; + + pkgid) + _arguments \ + '(-h, --help)'{-h,--help}'[show help message]' \ + '--manifest-path=[path to manifest]: :_files -/' \ + '(-q, --quiet)'{-q,--quiet}'[no output printed to stdout]' \ + '(-v, --verbose)'{-v,--verbose}'[use verbose output]' \ + '--color=:colorization option:(auto always never)' \ + ;; + + publish) + _arguments \ + '(-h, --help)'{-h,--help}'[show help message]' \ + '--host=[Host to set the token for]' \ + '--manifest-path=[path to manifest]: :_files -/' \ + '--no-verify[Do not verify tarball until before publish]' \ + '(-q, --quiet)'{-q,--quiet}'[no output printed to stdout]' \ + '--token[token to use when uploading]' \ + '(-v, --verbose)'{-v,--verbose}'[use verbose output]' \ + '--color=:colorization option:(auto always never)' \ + ;; + + read-manifest) + _arguments \ + '(-h, --help)'{-h,--help}'[show help message]' \ + '--manifest-path=[path to manifest]: :_files -/' \ + '(-v, --verbose)'{-v,--verbose}'[use verbose output]' \ + '--color=:colorization option:(auto always never)' \ + ;; + + run) + _arguments \ + '--example=[name of the bin target]' \ + '--features=[space separated feature list]' \ + '--all-features[enable all available features]' \ + '(-h, --help)'{-h,--help}'[show help message]' \ + '(-j, --jobs)'{-j,--jobs}'[number of parallel jobs, defaults to # of CPUs]' \ + '--manifest-path=[path to manifest]: :_files -/' \ + '--bin=[name of the bin target]' \ + '--no-default-features[do not build the default features]' \ + '(-q, --quiet)'{-q,--quiet}'[no output printed to stdout]' \ + '--release=[build in release mode]' \ + '--target=[target triple]' \ + '(-v, --verbose)'{-v,--verbose}'[use verbose output]' \ + '--color=:colorization option:(auto always never)' \ + '*: :_normal' \ + ;; + + rustc) + _arguments \ + '--color=:colorization option:(auto always never)' \ + '--features=[features to compile for the package]' \ + '--all-features[enable all available features]' \ + '(-h, --help)'{-h,--help}'[show help message]' \ + '(-j, --jobs)'{-j,--jobs}'=[number of parallel jobs, defaults to # of CPUs]' \ + '--manifest-path=[path to the manifest to fetch dependencies for]' \ + '--no-default-features[do not compile default features for the package]' \ + '(-p, --package)'{-p,--package}'=[profile to compile for]' \ + '--profile=[profile to build the selected target for]' \ + '(-q, --quiet)'{-q,--quiet}'[no output printed to stdout]' \ + '--release[build artifacts in release mode, with optimizations]' \ + '--target=[target triple which compiles will be for]' \ + '(-v, --verbose)'{-v,--verbose}'[use verbose output]' \ + "${command_scope_spec[@]}" \ + ;; + + rustdoc) + _arguments \ + '--color=:colorization option:(auto always never)' \ + '--features=[space-separated list of features to also build]' \ + '--all-features[enable all available features]' \ + '(-h, --help)'{-h,--help}'[show help message]' \ + '(-j, --jobs)'{-j,--jobs}'=[number of parallel jobs, defaults to # of CPUs]' \ + '--manifest-path=[path to the manifest to document]' \ + '--no-default-features[do not build the `default` feature]' \ + '--open[open the docs in a browser after the operation]' \ + '(-p, --package)'{-p,--package}'=[package to document]' \ + '(-q, --quiet)'{-q,--quiet}'[no output printed to stdout]' \ + '--release[build artifacts in release mode, with optimizations]' \ + '--target=[build for the target triple]' \ + '(-v, --verbose)'{-v,--verbose}'[use verbose output]' \ + "${command_scope_spec[@]}" \ + ;; + + search) + _arguments \ + '--color=:colorization option:(auto always never)' \ + '(-h, --help)'{-h,--help}'[show help message]' \ + '--host=[host of a registry to search in]' \ + '--limit=[limit the number of results]' \ + '(-q, --quiet)'{-q,--quiet}'[no output printed to stdout]' \ + '(-v, --verbose)'{-v,--verbose}'[use verbose output]' \ + ;; + + test) + _arguments \ + '--features=[space separated feature list]' \ + '--all-features[enable all available features]' \ + '(-h, --help)'{-h,--help}'[show help message]' \ + '(-j, --jobs)'{-j,--jobs}'[number of parallel jobs, defaults to # of CPUs]' \ + '--manifest-path=[path to manifest]: :_files -/' \ + '--test=[test name]: :_test_names' \ + '--no-default-features[do not build the default features]' \ + '--no-fail-fast[run all tests regardless of failure]' \ + '--no-run[compile but do not run]' \ + '(-p,--package)'{-p=,--package=}'[package to run tests for]:packages:_get_package_names' \ + '(-q, --quiet)'{-q,--quiet}'[no output printed to stdout]' \ + '--release[build artifacts in release mode, with optimizations]' \ + '--target=[target triple]' \ + '(-v, --verbose)'{-v,--verbose}'[use verbose output]' \ + '--color=:colorization option:(auto always never)' \ + '1: :_test_names' \ + ;; + + uninstall) + _arguments \ + '--bin=[only uninstall the binary NAME]' \ + '--color=:colorization option:(auto always never)' \ + '(-h, --help)'{-h,--help}'[show help message]' \ + '(-q, --quiet)'{-q,--quiet}'[less output printed to stdout]' \ + '--root=[directory to uninstall packages from]' \ + '(-v, --verbose)'{-v,--verbose}'[use verbose output]' \ + ;; + + update) + _arguments \ + '--aggressive=[force dependency update]' \ + '(-h, --help)'{-h,--help}'[show help message]' \ + '--manifest-path=[path to manifest]: :_files -/' \ + '(-p,--package)'{-p=,--package=}'[package to update]:packages:__get_package_names' \ + '--precise=[update single dependency to PRECISE]: :' \ + '(-q, --quiet)'{-q,--quiet}'[no output printed to stdout]' \ + '(-v, --verbose)'{-v,--verbose}'[use verbose output]' \ + '--color=:colorization option:(auto always never)' \ + ;; + + verify-project) + _arguments \ + '(-h, --help)'{-h,--help}'[show help message]' \ + '--manifest-path=[path to manifest]: :_files -/' \ + '(-q, --quiet)'{-q,--quiet}'[no output printed to stdout]' \ + '(-v, --verbose)'{-v,--verbose}'[use verbose output]' \ + '--color=:colorization option:(auto always never)' \ + ;; + + version) + _arguments \ + '(-h, --help)'{-h,--help}'[show help message]' \ + '(-v, --verbose)'{-v,--verbose}'[use verbose output]' \ + '--color=:colorization option:(auto always never)' \ + ;; + + yank) + _arguments \ + '(-h, --help)'{-h,--help}'[show help message]' \ + '--index[registry index]' \ + '(-q, --quiet)'{-q,--quiet}'[no output printed to stdout]' \ + '--token[API token to use when authenticating]' \ + '--undo[undo a yank, putting a version back into the index]' \ + '(-v, --verbose)'{-v,--verbose}'[use verbose output]' \ + '--color=:colorization option:(auto always never)' \ + '--vers[yank version]' \ + ;; + esac + ;; +esac +} + +_cargo_cmds(){ +local -a commands;commands=( +'bench:execute all benchmarks of a local package' +'build:compile the current project' +'clean:remove generated artifacts' +'doc:build package documentation' +'fetch:fetch package dependencies' +'generate-lockfile:create lockfile' +'git-checkout:git checkout' +'help:get help for commands' +'init:create new project in current directory' +'install:install a Rust binary' +'locate-project:print "Cargo.toml" location' +'login:login to remote server' +'metadata:the metadata for a project in json' +'new:create a new project' +'owner:manage the owners of a crate on the registry' +'package:assemble local package into a distributable tarball' +'pkgid:print a fully qualified package specification' +'publish:upload package to the registry' +'read-manifest:print manifest in JSON format' +'run:run the main binary of the local package' +'rustc:compile a package and all of its dependencies' +'rustdoc:build documentation for a package' +'search:search packages on crates.io' +'test:execute all unit and tests of a local package' +'uninstall:remove a Rust binary' +'update:update dependencies' +'verify-project:check Cargo.toml' +'version:show version information' +'yank:remove pushed file from index' +) +_describe 'command' commands + +} + + +#FIXME: Disabled until fixed +#gets package names from the manifest file +_get_package_names() +{ +} + +#TODO:see if it makes sense to have 'locate-project' to have non-json output. +#strips package name from json stuff +_locate_manifest(){ +local manifest=`cargo locate-project 2>/dev/null` +regexp-replace manifest '\{"root":"|"\}' '' +echo $manifest +} + +# Extracts the values of "name" from the array given in $1 and shows them as +# command line options for completion +_get_names_from_array() +{ + local -a filelist; + local manifest=$(_locate_manifest) + if [[ -z $manifest ]]; then + return 0 + fi + + local last_line + local -a names; + local in_block=false + local block_name=$1 + names=() + while read line + do + if [[ $last_line == "[[$block_name]]" ]]; then + in_block=true + else + if [[ $last_line =~ '.*\[\[.*' ]]; then + in_block=false + fi + fi + + if [[ $in_block == true ]]; then + if [[ $line =~ '.*name.*=' ]]; then + regexp-replace line '^.*name *= *|"' "" + names+=$line + fi + fi + + last_line=$line + done < $manifest + _describe $block_name names + +} + +#Gets the test names from the manifest file +_test_names() +{ + _get_names_from_array "test" +} + +#Gets the bench names from the manifest file +_benchmark_names() +{ + _get_names_from_array "bench" +} + +# These flags are mutally exclusive specifiers for the scope of a command; as +# they are used in multiple places without change, they are expanded into the +# appropriate command's `_arguments` where appropriate. +set command_scope_spec +command_scope_spec=( + '(--bin --example --test --lib)--bench=[benchmark name]: :_benchmark_names' + '(--bench --bin --test --lib)--example=[example name]' + '(--bench --example --test --lib)--bin=[binary name]' + '(--bench --bin --example --test)--lib=[library name]' + '(--bench --bin --example --lib)--test=[test name]' +) + + +_cargo diff --git a/oh-my-zsh/.oh-my-zsh/plugins/cask/README.md b/oh-my-zsh/.oh-my-zsh/plugins/cask/README.md new file mode 100644 index 0000000..e1335c1 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/cask/README.md @@ -0,0 +1,15 @@ +# Cask plugin + +[Cask](https://github.com/cask/cask) is a project management tool for Emacs that helps +automate the package development cycle; development, dependencies, testing, building, +packaging and more. + +This plugin loads `cask` completion from non-standard locations, such as if installed +via Homebrew or others. To enable it, add `cask` to your plugins array: + +```zsh +plugins=(... cask) +``` + +Make sure you have the `cask` directory in your `$PATH` before loading Oh My Zsh, +otherwise you'll get a "command not found" error. diff --git a/oh-my-zsh/.oh-my-zsh/plugins/cask/cask.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/cask/cask.plugin.zsh new file mode 100644 index 0000000..29120b3 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/cask/cask.plugin.zsh @@ -0,0 +1,26 @@ +() { + emulate -L zsh + + if ! (( $+commands[cask] )); then + print "zsh cask plugin: cask command not found" >&2 + return + fi + + cask_base=${commands[cask]:h:h} + + # Plain cask installation location (for Cask 0.7.2 and earlier) + comp_files=($cask_base/etc/cask_completion.zsh) + + # Mac Homebrew installs the completion in a different location + if (( $+commands[brew] )); then + comp_files+=($(brew --prefix)/share/zsh/site-functions/cask_completion.zsh) + fi + + # Load first found file + for f in $comp_files; do + if [[ -f "$f" ]]; then + source "$f" + break + fi + done +} diff --git a/oh-my-zsh/.oh-my-zsh/plugins/catimg/README.md b/oh-my-zsh/.oh-my-zsh/plugins/catimg/README.md new file mode 100644 index 0000000..2fc28a1 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/catimg/README.md @@ -0,0 +1,35 @@ +# catimg + +Plugin for displaying images on the terminal using the the `catimg.sh` script provided by [posva](https://github.com/posva/catimg) + +## Requirements + +- `convert` (ImageMagick) + +## Enabling the plugin + +1. Open your `.zshrc` file and add `catimg` in the plugins section: + + ```zsh + plugins=( + # all your enabled plugins + catimg + ) + ``` + +2. Reload the source file or restart your Terminal session: + + ```console + $ source ~/.zshrc + $ + ``` + +## Functions + +| Function | Description | +| -------- | ---------------------------------------- | +| `catimg` | Displays the given image on the terminal | + +## Usage examples + +[![asciicast](https://asciinema.org/a/204702.png)](https://asciinema.org/a/204702) diff --git a/oh-my-zsh/.oh-my-zsh/plugins/catimg/catimg.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/catimg/catimg.plugin.zsh new file mode 100644 index 0000000..5f58ecd --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/catimg/catimg.plugin.zsh @@ -0,0 +1,17 @@ +################################################################################ +# catimg script by Eduardo San Martin Morote aka Posva # +# https://posva.net # +# # +# Ouput the content of an image to the stdout using the 256 colors of the # +# terminal. # +# Github: https://github.com/posva/catimg # +################################################################################ + + +function catimg() { + if [[ -x `which convert` ]]; then + zsh $ZSH/plugins/catimg/catimg.sh $@ + else + echo "catimg need convert (ImageMagick) to work)" + fi +} diff --git a/oh-my-zsh/.oh-my-zsh/plugins/catimg/catimg.sh b/oh-my-zsh/.oh-my-zsh/plugins/catimg/catimg.sh new file mode 100644 index 0000000..83ccf6a --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/catimg/catimg.sh @@ -0,0 +1,88 @@ +################################################################################ +# catimg script by Eduardo San Martin Morote aka Posva # +# https://posva.net # +# # +# Ouput the content of an image to the stdout using the 256 colors of the # +# terminal. # +# Github: https://github.com/posva/catimg # +################################################################################ + +function help() { + echo "Usage catimg [-h] [-w width] [-c char] img" + echo "By default char is \" \" and w is the terminal width" +} + +# VARIABLES +COLOR_FILE=$(dirname $0)/colors.png +CHAR=" " + +WIDTH="" +IMG="" + +while getopts qw:c:h opt; do + case "$opt" in + w) WIDTH="$OPTARG" ;; + c) CHAR="$OPTARG" ;; + h) help; exit ;; + *) help ; exit 1;; + esac + done + +while [ "$1" ]; do + IMG="$1" + shift +done + +if [ "$IMG" = "" -o ! -f "$IMG" ]; then + help + exit 1 +fi + +if [ ! "$WIDTH" ]; then + COLS=$(expr $(tput cols) "/" $(echo -n "$CHAR" | wc -c)) +else + COLS=$(expr $WIDTH "/" $(echo -n "$CHAR" | wc -c)) +fi +WIDTH=$(convert "$IMG" -print "%w\n" /dev/null) +if [ "$WIDTH" -gt "$COLS" ]; then + WIDTH=$COLS +fi + +REMAP="" +if convert "$IMG" -resize $COLS\> +dither -remap $COLOR_FILE /dev/null ; then + REMAP="-remap $COLOR_FILE" +else + echo "The version of convert is too old, don't expect good results :(" >&2 + #convert "$IMG" -colors 256 PNG8:tmp.png + #IMG="tmp.png" +fi + +# Display the image +I=0 +convert "$IMG" -resize $COLS\> +dither `echo $REMAP` txt:- 2>/dev/null | +sed -e 's/.*none.*/NO NO NO/g' -e '1d;s/^.*(\(.*\)[,)].*$/\1/g;y/,/ /' | +while read R G B f; do + if [ ! "$R" = "NO" ]; then + if [ "$R" -eq "$G" -a "$G" -eq "$B" ]; then + (( + I++, + IDX = 232 + R * 23 / 255 + )) + else + (( + I++, + IDX = 16 + + R * 5 / 255 * 36 + + G * 5 / 255 * 6 + + B * 5 / 255 + )) + fi + #echo "$R,$G,$B: $IDX" + echo -ne "\e[48;5;${IDX}m${CHAR}" + else + (( I++ )) + echo -ne "\e[0m${CHAR}" + fi + # New lines + (( $I % $WIDTH )) || echo -e "\e[0m" +done diff --git a/oh-my-zsh/.oh-my-zsh/plugins/catimg/colors.png b/oh-my-zsh/.oh-my-zsh/plugins/catimg/colors.png new file mode 100644 index 0000000..5f2c812 Binary files /dev/null and b/oh-my-zsh/.oh-my-zsh/plugins/catimg/colors.png differ diff --git a/oh-my-zsh/.oh-my-zsh/plugins/celery/README.md b/oh-my-zsh/.oh-my-zsh/plugins/celery/README.md new file mode 100644 index 0000000..d2597f7 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/celery/README.md @@ -0,0 +1,9 @@ +# Celery + +This plugin provides completion for [Celery](http://www.celeryproject.org/). + +To use it add celery to the plugins array in your zshrc file. + +```bash +plugins=(... celery) +``` diff --git a/oh-my-zsh/.oh-my-zsh/plugins/celery/_celery b/oh-my-zsh/.oh-my-zsh/plugins/celery/_celery new file mode 100644 index 0000000..63af9fa --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/celery/_celery @@ -0,0 +1,129 @@ +#compdef celery +#autoload + +#celery zsh completion + +_celery () { +local -a _1st_arguments ifargs dopts controlargs + +typeset -A opt_args + +_1st_arguments=('worker' 'events' 'beat' 'shell' 'multi' 'amqp' 'status' 'inspect' \ + 'control' 'purge' 'list' 'migrate' 'call' 'result' 'report') +ifargs=('--app=' '--broker=' '--loader=' '--config=' '--version') +dopts=('--detach' '--umask=' '--gid=' '--uid=' '--pidfile=' '--logfile=' '--loglevel=') +controlargs=('--timeout' '--destination') +_arguments \ + '(-A --app=)'{-A,--app}'[app instance to use (e.g. module.attr_name):APP]' \ + '(-b --broker=)'{-b,--broker}'[url to broker. default is "amqp://guest@localhost//":BROKER]' \ + '(--loader)--loader[name of custom loader class to use.:LOADER]' \ + '(--config)--config[Name of the configuration module:CONFIG]' \ + '(--workdir)--workdir[Optional directory to change to after detaching.:WORKING_DIRECTORY]' \ + '(-q --quiet)'{-q,--quiet}'[Don"t show as much output.]' \ + '(-C --no-color)'{-C,--no-color}'[Don"t display colors.]' \ + '(--version)--version[show program"s version number and exit]' \ + '(- : *)'{-h,--help}'[show this help message and exit]' \ + '*:: :->subcmds' && return 0 + +if (( CURRENT == 1 )); then + _describe -t commands "celery subcommand" _1st_arguments + return +fi + +case "$words[1]" in + worker) + _arguments \ + '(-C --concurrency=)'{-C,--concurrency=}'[Number of child processes processing the queue. The default is the number of CPUs.]' \ + '(--pool)--pool=:::(processes eventlet gevent threads solo)' \ + '(--purge --discard)'{--discard,--purge}'[Purges all waiting tasks before the daemon is started.]' \ + '(-f --logfile=)'{-f,--logfile=}'[Path to log file. If no logfile is specified, stderr is used.]' \ + '(--loglevel=)--loglevel=:::(critical error warning info debug)' \ + '(-N --hostname=)'{-N,--hostname=}'[Set custom hostname, e.g. "foo.example.com".]' \ + '(-B --beat)'{-B,--beat}'[Also run the celerybeat periodic task scheduler.]' \ + '(-s --schedule=)'{-s,--schedule=}'[Path to the schedule database if running with the -B option. Defaults to celerybeat-schedule.]' \ + '(-S --statedb=)'{-S,--statedb=}'[Path to the state database.Default: None]' \ + '(-E --events)'{-E,--events}'[Send events that can be captured by monitors like celeryev, celerymon, and others.]' \ + '(--time-limit=)--time-limit=[nables a hard time limit (in seconds int/float) for tasks]' \ + '(--soft-time-limit=)--soft-time-limit=[Enables a soft time limit (in seconds int/float) for tasks]' \ + '(--maxtasksperchild=)--maxtasksperchild=[Maximum number of tasks a pool worker can execute before it"s terminated and replaced by a new worker.]' \ + '(-Q --queues=)'{-Q,--queues=}'[List of queues to enable for this worker, separated by comma. By default all configured queues are enabled.]' \ + '(-I --include=)'{-I,--include=}'[Comma separated list of additional modules to import.]' \ + '(--pidfile=)--pidfile=[Optional file used to store the process pid.]' \ + '(--autoscale=)--autoscale=[Enable autoscaling by providing max_concurrency, min_concurrency.]' \ + '(--autoreload)--autoreload[Enable autoreloading.]' \ + '(--no-execv)--no-execv[Don"t do execv after multiprocessing child fork.]' + compadd -a ifargs + ;; + inspect) + _values -s \ + 'active[dump active tasks (being processed)]' \ + 'active_queues[dump queues being consumed from]' \ + 'ping[ping worker(s)]' \ + 'registered[dump of registered tasks]' \ + 'report[get bugreport info]' \ + 'reserved[dump reserved tasks (waiting to be processed)]' \ + 'revoked[dump of revoked task ids]' \ + 'scheduled[dump scheduled tasks (eta/countdown/retry)]' \ + 'stats[dump worker statistics]' + compadd -a controlargs ifargs + ;; + control) + _values -s \ + 'add_consumer[tell worker(s) to start consuming a queue]' \ + 'autoscale[change autoscale settings]' \ + 'cancel_consumer[tell worker(s) to stop consuming a queue]' \ + 'disable_events[tell worker(s) to disable events]' \ + 'enable_events[tell worker(s) to enable events]' \ + 'pool_grow[start more pool processes]' \ + 'pool_shrink[use less pool processes]' \ + 'rate_limit[tell worker(s) to modify the rate limit for a task type]' \ + 'time_limit[tell worker(s) to modify the time limit for a task type.]' + compadd -a controlargs ifargs + ;; + multi) + _values -s \ + '--nosplash[Don"t display program info.]' \ + '--verbose[Show more output.]' \ + '--no-color[Don"t display colors.]' \ + '--quiet[Don"t show as much output.]' \ + 'start' 'restart' 'stopwait' 'stop' 'show' \ + 'names' 'expand' 'get' 'kill' + compadd -a ifargs + ;; + amqp) + _values -s \ + 'queue.declare' 'queue.purge' 'exchange.delete' 'basic.publish' \ + 'exchange.declare' 'queue.delete' 'queue.bind' 'basic.get' + ;; + list) + _values -s, 'bindings' + ;; + shell) + _values -s \ + '--ipython[force iPython.]' \ + '--bpython[force bpython.]' \ + '--python[force default Python shell.]' \ + '--without-tasks[don"t add tasks to locals.]' \ + '--eventlet[use eventlet.]' \ + '--gevent[use gevent.]' + compadd -a ifargs + ;; + beat) + _arguments \ + '(-s --schedule=)'{-s,--schedule=}'[Path to the schedule database. Defaults to celerybeat-schedule.]' \ + '(-S --scheduler=)'{-S,--scheduler=}'[Scheduler class to use. Default is celery.beat.PersistentScheduler.]' \ + '(--max-interval)--max-interval[]' + compadd -a dopts fargs + ;; + events) + _arguments \ + '(-d --dump)'{-d,--dump}'[Dump events to stdout.]' \ + '(-c --camera=)'{-c,--camera=}'[Take snapshots of events using this camera.]' \ + '(-F --frequency=)'{-F,--frequency=}'[Camera: Shutter frequency. Default is every 1.0 seconds.]' \ + '(-r --maxrate=)'{-r,--maxrate=}'[Camera: Optional shutter rate limit (e.g. 10/m).]' + compadd -a dopts fargs + ;; + *) + ;; + esac +} diff --git a/oh-my-zsh/.oh-my-zsh/plugins/chruby/chruby.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/chruby/chruby.plugin.zsh new file mode 100644 index 0000000..f7fedb5 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/chruby/chruby.plugin.zsh @@ -0,0 +1,121 @@ +# +# INSTRUCTIONS +# +# With either a manual or brew installed chruby things should just work. +# +# If you'd prefer to specify an explicit path to load chruby from +# you can set variables like so: +# +# zstyle :omz:plugins:chruby path /local/path/to/chruby.sh +# zstyle :omz:plugins:chruby auto /local/path/to/auto.sh +# +# TODO +# - autodetermine correct source path on non OS X systems +# - completion if ruby-install exists + +# rvm and rbenv plugins also provide this alias +alias rubies='chruby' + + +_homebrew-installed() { + whence brew &> /dev/null + _xit=$? + if [ $_xit -eq 0 ];then + # ok , we have brew installed + # speculatively we check default brew prefix + if [ -h /usr/local/opt/chruby ];then + _brew_prefix="/usr/local/opt/chruby" + else + # ok , it is not default prefix + # this call to brew is expensive ( about 400 ms ), so at least let's make it only once + _brew_prefix=$(brew --prefix chruby) + fi + return 0 + else + return $_xit + fi +} + +_chruby-from-homebrew-installed() { + [ -r _brew_prefix ] &> /dev/null +} + +_ruby-build_installed() { + whence ruby-build &> /dev/null +} + +_ruby-install-installed() { + whence ruby-install &> /dev/null +} + +# Simple definition completer for ruby-build +if _ruby-build_installed; then + _ruby-build() { compadd $(ruby-build --definitions) } + compdef _ruby-build ruby-build +fi + +_source_from_omz_settings() { + local _chruby_path + local _chruby_auto + + zstyle -s :omz:plugins:chruby path _chruby_path + zstyle -s :omz:plugins:chruby auto _chruby_auto + + if [[ -r ${_chruby_path} ]]; then + source ${_chruby_path} + fi + + if [[ -r ${_chruby_auto} ]]; then + source ${_chruby_auto} + fi +} + +_chruby_dirs() { + chrubydirs=($HOME/.rubies/ $PREFIX/opt/rubies) + for dir in chrubydirs; do + if [[ -d $dir ]]; then + RUBIES+=$dir + fi + done +} + +if _homebrew-installed && _chruby-from-homebrew-installed ; then + source $_brew_prefix/share/chruby/chruby.sh + source $_brew_prefix/share/chruby/auto.sh + _chruby_dirs +elif [[ -r "/usr/local/share/chruby/chruby.sh" ]] ; then + source /usr/local/share/chruby/chruby.sh + source /usr/local/share/chruby/auto.sh + _chruby_dirs +else + _source_from_omz_settings + _chruby_dirs +fi + +function ensure_chruby() { + $(whence chruby) +} + +function current_ruby() { + local _ruby + _ruby="$(chruby |grep \* |tr -d '* ')" + if [[ $(chruby |grep -c \*) -eq 1 ]]; then + echo ${_ruby} + else + echo "system" + fi +} + +function chruby_prompt_info() { + echo "$(current_ruby)" +} + +# complete on installed rubies +_chruby() { + compadd $(chruby | tr -d '* ') + local default_path='/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin' + if PATH=${default_path} type ruby &> /dev/null; then + compadd system + fi +} +compdef _chruby chruby diff --git a/oh-my-zsh/.oh-my-zsh/plugins/chucknorris/.gitignore b/oh-my-zsh/.oh-my-zsh/plugins/chucknorris/.gitignore new file mode 100644 index 0000000..267c504 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/chucknorris/.gitignore @@ -0,0 +1 @@ +fortunes/chucknorris.dat diff --git a/oh-my-zsh/.oh-my-zsh/plugins/chucknorris/README.md b/oh-my-zsh/.oh-my-zsh/plugins/chucknorris/README.md new file mode 100644 index 0000000..be7b97e --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/chucknorris/README.md @@ -0,0 +1,20 @@ +# chucknorris + +Chuck Norris fortunes plugin for oh-my-zsh + +**Maintainers**: [apjanke](https://github.com/apjanke) [maff](https://github.com/maff) + +To use it add `chucknorris` to the plugins array in you zshrc file. + +```zsh +plugins=(... chucknorris) +``` + + +Depends on fortune (and cowsay if using chuck_cow) being installed (available via homebrew, apt, ...). Perfectly suitable as MOTD. + + +| Command | Description | +| ----------- | ------------------------------- | +| `chuck` | Print random Chuck Norris quote | +| `chuck_cow` | Print quote in cowthink | diff --git a/oh-my-zsh/.oh-my-zsh/plugins/chucknorris/chucknorris.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/chucknorris/chucknorris.plugin.zsh new file mode 100644 index 0000000..1dbb04e --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/chucknorris/chucknorris.plugin.zsh @@ -0,0 +1,28 @@ +# chucknorris: Chuck Norris fortunes + +# Automatically generate or update Chuck's compiled fortune data file +# $0 must be used outside a local function. This variable name is unlikly to collide. +CHUCKNORRIS_PLUGIN_DIR=${0:h} + +() { +local DIR=$CHUCKNORRIS_PLUGIN_DIR/fortunes +if [[ ! -f $DIR/chucknorris.dat ]] || [[ $DIR/chucknorris.dat -ot $DIR/chucknorris ]]; then + # For some reason, Cygwin puts strfile in /usr/sbin, which is not on the path by default + local strfile=strfile + if ! which strfile &>/dev/null && [[ -f /usr/sbin/strfile ]]; then + strfile=/usr/sbin/strfile + fi + if which $strfile &> /dev/null; then + $strfile $DIR/chucknorris $DIR/chucknorris.dat >/dev/null + else + echo "[oh-my-zsh] chucknorris depends on strfile, which is not installed" >&2 + echo "[oh-my-zsh] strfile is often provided as part of the 'fortune' package" >&2 + fi +fi + +# Aliases +alias chuck="fortune -a $DIR" +alias chuck_cow="chuck | cowthink" +} + +unset CHUCKNORRIS_PLUGIN_DIR diff --git a/oh-my-zsh/.oh-my-zsh/plugins/chucknorris/fortunes/chucknorris b/oh-my-zsh/.oh-my-zsh/plugins/chucknorris/fortunes/chucknorris new file mode 100644 index 0000000..2a13b06 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/chucknorris/fortunes/chucknorris @@ -0,0 +1,2544 @@ +When the Boogeyman goes to sleep every night, he checks his closet for Chuck Norris. +% +Chuck Norris doesn't read books. He stares them down until he gets the information he wants. +% +There is no theory of evolution. Just a list of creatures Chuck Norris has allowed to live. +% +Outer space exists because it's afraid to be on the same planet with Chuck Norris. +% +Chuck Norris does not sleep. He waits. +% +Chuck Norris is currently suing NBC, claiming Law and Order are trademarked names for his left and right legs. +% +Chuck Norris is the reason why Waldo is hiding. +% +Chuck Norris counted to infinity - twice. +% +There is no chin behind Chuck Norris’ beard. There is only another fist. +% +In fine print on the last page of the Guinness Book of World Records it notes that all world records are held by Chuck Norris, and those listed in the book are simply the closest anyone else has ever gotten. +% +There is no chin behind Chuck Norris' beard. There is only another fist. +% +Chuck Norris does not teabag the ladies. He potato-sacks them. +% +Pluto is actually an orbiting group of British soldiers from the American Revolution who entered space after the Chuck gave them a roundhouse kick to the face. +% +When Chuck Norris does a pushup, he isn't lifting himself up, he's pushing the Earth down. +% +Chuck Norris is so fast, he can run around the world and punch himself in the back of the head. +% +Chuck Norris' hand is the only hand that can beat a Royal Flush. +% +Chuck Norris can lead a horse to water AND make it drink. +% +Chuck Norris doesn’t wear a watch. HE decides what time it is. +% +Chuck Norris can slam a revolving door. +% +Chuck Norris does not get frostbite. Chuck Norris bites frost. +% +Remember the Soviet Union? They decided to quit after watching a DeltaForce marathon on Satellite TV. +% +Contrary to popular belief, America is not a democracy, it is a Chucktatorship. +% +If you spell Chuck Norris in Scrabble, you win. Forever. +% +Guns don't kill people. Chuck Norris kills people. +% +There is no theory of evolution. Just a list of animals Chuck Norris allows to live. +% +The chief export of Chuck Norris is Pain. +% +Chuck Norris has two speeds. Walk, and Kill. +% +The leading causes of death in the United States are: 1. Heart Disease 2. Chuck Norris 3. Cancer. +% +Chuck Norris drives an ice cream truck covered in human skulls. +% +Chuck Norris is my Homeboy. +% +Chuck Norris doesn't go hunting.... CHUCK NORRIS GOES KILLING. +% +Chuck Norris uses pepper spray to spice up his steaks. +% +Chuck Norris once roundhouse kicked someone so hard that his foot broke the speed of light, went back in time, and killed Amelia Earhart while she was flying over the Pacific Ocean. +% +Crop circles are Chuck Norris' way of telling the world that sometimes corn needs to lie down. +% +Chuck Norris is ten feet tall, weighs two-tons, breathes fire, and could eat a hammer and take a shotgun blast standing. +% +The Great Wall of China was originally created to keep Chuck Norris out. It failed miserably. +% +Contrary to popular belief, Chuck Norris, not the box jellyfish of northern Australia, is the most venomous creature on earth. +% +Most people have 23 pairs of chromosomes. Chuck Norris has 72... and they're all poisonous. +% +If you ask Chuck Norris what time it is, he always says, "Two seconds 'til." After you ask, "Two seconds 'til what?" he roundhouse kicks you in the face. +% +When Chuck Norris sends in his taxes, he sends blank forms and includes only a picture of himself, crouched and ready to attack. Chuck Norris has not had to pay taxes, ever. +% +The quickest way to a man's heart is with Chuck Norris' fist. +% +Chuck Norris invented Kentucky Fried Chicken's famous secret recipe, with eleven herbs and spices. But nobody ever mentions the twelfth ingredient: Fear. +% +CNN was originally created as the "Chuck Norris Network" to update Americans with on-the-spot ass kicking in real-time. +% +Chuck Norris can win a game of Connect Four in only three moves. +% +What was going through the minds of all of Chuck Norris' victims before they died? His shoe. +% +Chuck Norris is the only man to ever defeat a brick wall in a game of tennis. +% +Police label anyone attacking Chuck Norris as a Code 45-11.... a suicide. +% +Chuck Norris doesn't churn butter. He roundhouse kicks the cows and the butter comes straight out. +% +Chuck Norris doesn’t wash his clothes, he disembowels them. +% +A Handicapped parking sign does not signify that this spot is for handicapped people. It is actually in fact a warning, that the spot belongs to Chuck Norris and that you will be handicapped if you park there. +% +Chuck Norris will attain statehood in 2009. His state flower will be the Magnolia. +% +Someone once videotaped Chuck Norris getting pissed off. It was called Walker: Texas Chain Saw Massacre. +% +Chuck Norris originally appeared in the "Street Fighter II" video game, but was removed by Beta Testers because every button caused him to do a roundhouse kick. When asked bout this "glitch," Norris replied, "That's no glitch." +% +Fool me once, shame on you. Fool Chuck Norris once and he will roundhouse you in the face. +% +Chuck Norris can win in a top spinning tournament with a cube +% +Beware of dogs... Dogs, beware of Chuck Norris. +% +Chuck Norris can dig a hole in air. +% +The apple falls far from the tree, when a roundhouse kick is taken to the trunk. +% +Chuck Norris - the new standard. +% +Chuck Norris told me to put this here. +% +Chuck Norris doesn't exhale. The air runs desperately scared out of his lungs. +% +Fear of spiders is aracnaphobia, fear of tight spaces is chlaustraphobia, fear of Chuck Norris is called Logic +% +When Chuck Norris goes to rodeos, bulls ride him. +% +Chuck Norris once walked down a street with his fists in his pockets. He was then arrested for concealing two deadly weapons. +% +The meaning of life is Chuck Norris +% +Chuck Norris is the meaning of life. Too bad he's also the meaning of death. +% +If God doesn't know, Chuck does +% +Chuck Norris doesn't bowl strikes, he just knocks down one pin and the other nine faint. +% +The show Survivor had the original premise of putting people on an island with Chuck Norris. There were no survivors, and nobody is brave enough to go to the island to retrieve the footage. +% +When the Boogeyman goes to sleep every night, he checks his closet for Chuck Norris. +% +Chuck Norris doesn't read books. He stares them down until he gets the information he wants. +% +There is no theory of evolution. Just a list of creatures Chuck Norris has allowed to live. +% +Outer space exists because it's afraid to be on the same planet with Chuck Norris. +% +Chuck Norris does not sleep. He waits. +% +Chuck Norris is currently suing NBC, claiming Law and Order are trademarked names for his left and right legs. +% +Chuck Norris is the reason why Waldo is hiding. +% +Chuck Norris counted to infinity - twice. +% +There is no chin behind Chuck Norris’ beard. There is only another fist. +% +When Chuck Norris does a pushup, he isn't lifting himself up, he's pushing the Earth down. +% +Chuck Norris is so fast, he can run around the world and punch himself in the back of the head. +% +Chuck Norris' hand is the only hand that can beat a Royal Flush. +% +Chuck Norris can lead a horse to water AND make it drink. +% +Chuck Norris doesn’t wear a watch. HE decides what time it is. +% +Chuck Norris can slam a revolving door. +% +Chuck Norris does not get frostbite. Chuck Norris bites frost. +% +Remember the Soviet Union? They decided to quit after watching a DeltaForce marathon on Satellite TV. +% +Contrary to popular belief, America is not a democracy, it is a Chucktatorship. +% +If you spell Chuck Norris in Scrabble, you win. Forever. +% +Guns don't kill people. Chuck Norris kills people. +% +There is no theory of evolution. Just a list of animals Chuck Norris allows to live. +% +The chief export of Chuck Norris is Pain. +% +Chuck Norris has two speeds. Walk, and Kill. +% +The leading causes of death in the United States are: 1. Heart Disease 2. Chuck Norris 3. Cancer. +% +Chuck Norris drives an ice cream truck covered in human skulls. +% +Chuck Norris is my Homeboy. +% +Chuck Norris doesn't go hunting.... CHUCK NORRIS GOES KILLING. +% +Chuck Norris uses pepper spray to spice up his steaks. +% +Chuck Norris once roundhouse kicked someone so hard that his foot broke the speed of light, went back in time, and killed Amelia Earhart while she was flying over the Pacific Ocean. +% +Crop circles are Chuck Norris' way of telling the world that sometimes corn needs to lie down. +% +Chuck Norris is ten feet tall, weighs two-tons, breathes fire, and could eat a hammer and take a shotgun blast standing. +% +The Great Wall of China was originally created to keep Chuck Norris out. It failed miserably. +% +Contrary to popular belief, Chuck Norris, not the box jellyfish of northern Australia, is the most venomous creature on earth. +% +Most people have 23 pairs of chromosomes. Chuck Norris has 72... and they're all poisonous. +% +If you ask Chuck Norris what time it is, he always says, "Two seconds 'til." After you ask, "Two seconds 'til what?" he roundhouse kicks you in the face. +% +When Chuck Norris sends in his taxes, he sends blank forms and includes only a picture of himself, crouched and ready to attack. Chuck Norris has not had to pay taxes, ever. +% +The quickest way to a man's heart is with Chuck Norris' fist. +% +Chuck Norris invented Kentucky Fried Chicken's famous secret recipe, with eleven herbs and spices. But nobody ever mentions the twelfth ingredient: Fear. +% +CNN was originally created as the "Chuck Norris Network" to update Americans with on-the-spot ass kicking in real-time. +% +Chuck Norris can win a game of Connect Four in only three moves. +% +What was going through the minds of all of Chuck Norris' victims before they died? His shoe. +% +Chuck Norris is the only man to ever defeat a brick wall in a game of tennis. +% +Police label anyone attacking Chuck Norris as a Code 45-11.... a suicide. +% +Chuck Norris doesn't churn butter. He roundhouse kicks the cows and the butter comes straight out. +% +Chuck Norris doesn’t wash his clothes, he disembowels them. +% +A Handicapped parking sign does not signify that this spot is for handicapped people. It is actually in fact a warning, that the spot belongs to Chuck Norris and that you will be handicapped if you park there. +% +Chuck Norris will attain statehood in 2009. His state flower will be the Magnolia. +% +Someone once videotaped Chuck Norris getting pissed off. It was called Walker: Texas Chain Saw Massacre. +% +Chuck Norris originally appeared in the "Street Fighter II" video game, but was removed by Beta Testers because every button caused him to do a roundhouse kick. When asked bout this "glitch," Norris replied, "That's no glitch." +% +Fool me once, shame on you. Fool Chuck Norris once and he will roundhouse you in the face. +% +When God said "Let there be light!", Chuck Norris said "Only for half the day +% +Chuck Norris went up the creek without a paddle... or a canoe +% +Chuck Norris once asked a man to turn down his music, he refused, that man's baby was born deaf. +% +Chuck Norris found the hay in the needle stack. +% +Chuck Norris doesn't need to brush his teeth, his spit acts as a bleach. +% +Chuck Norris once had a street named after him. But the name removed at once, because nobody crosses Chuck Norris, and lives +% +The planes in 9/11 were not hijacked. Chuck Norris was just playing with his old radio controller. +% +Machiavelli said it is better to be feared than loved because he was inspired by Chuck Norris. +% +Chuck Norris Can Play the Theme from the Twilight Zone with His Beard +% +Chuck Norris pees Adamantium +% +The Beatles are on iTunes because Chuck Norris bought a Mac. +% +Chuck Norris once rounhouse kicked a football ...... it is now considered as a planet +% +Chuck Norris yells at Drill Sergeants +% +When the Boogeyman goes to sleep every night, he checks his closet for Chuck Norris. +% +Chuck Norris doesn't read books. He stares them down until he gets the information he wants. +% +There is no theory of evolution. Just a list of creatures Chuck Norris has allowed to live. +% +Outer space exists because it's afraid to be on the same planet with Chuck Norris. +% +Chuck Norris does not sleep. He waits. +% +Chuck Norris is currently suing NBC, claiming Law and Order are trademarked names for his left and right legs. +% +Chuck Norris is the reason why Waldo is hiding. +% +Chuck Norris counted to infinity - twice. +% +There is no chin behind Chuck Norris’ beard. There is only another fist. +% +When Chuck Norris does a pushup, he isn't lifting himself up, he's pushing the Earth down. +% +Chuck Norris is so fast, he can run around the world and punch himself in the back of the head. +% +Chuck Norris' hand is the only hand that can beat a Royal Flush. +% +If at first you don't succeed, you're not Chuck Norris. +% +If Chuck Norris were a calendar, every month would be named Chucktober, and every day he'd kick your ass. +% +Chuck Norris can lead a horse to water AND make it drink. +% +Chuck Norris doesn’t wear a watch. HE decides what time it is. +% +Chuck Norris can slam a revolving door. +% +Chuck Norris does not get frostbite. Chuck Norris bites frost. +% +Remember the Soviet Union? They decided to quit after watching a DeltaForce marathon on Satellite TV. +% +Contrary to popular belief, America is not a democracy, it is a Chucktatorship. +% +If you spell Chuck Norris in Scrabble, you win. Forever. +% +Guns don't kill people. Chuck Norris kills people. +% +There is no theory of evolution. Just a list of animals Chuck Norris allows to live. +% +The chief export of Chuck Norris is Pain. +% +Chuck Norris has two speeds. Walk, and Kill. +% +The leading causes of death in the United States are: 1. Heart Disease 2. Chuck Norris 3. Cancer. +% +Chuck Norris drives an ice cream truck covered in human skulls. +% +Chuck Norris is my Homeboy. +% +Chuck Norris doesn't go hunting.... CHUCK NORRIS GOES KILLING. +% +Chuck Norris uses pepper spray to spice up his steaks. +% +Chuck Norris once roundhouse kicked someone so hard that his foot broke the speed of light, went back in time, and killed Amelia Earhart while she was flying over the Pacific Ocean. +% +Crop circles are Chuck Norris' way of telling the world that sometimes corn needs to lie down. +% +Chuck Norris is ten feet tall, weighs two-tons, breathes fire, and could eat a hammer and take a shotgun blast standing. +% +The Great Wall of China was originally created to keep Chuck Norris out. It failed miserably. +% +Contrary to popular belief, Chuck Norris, not the box jellyfish of northern Australia, is the most venomous creature on earth. +% +Most people have 23 pairs of chromosomes. Chuck Norris has 72... and they're all poisonous. +% +If you ask Chuck Norris what time it is, he always says, "Two seconds 'til." After you ask, "Two seconds 'til what?" he roundhouse kicks you in the face. +% +When Chuck Norris sends in his taxes, he sends blank forms and includes only a picture of himself, crouched and ready to attack. Chuck Norris has not had to pay taxes, ever. +% +The quickest way to a man's heart is with Chuck Norris' fist. +% +Chuck Norris invented Kentucky Fried Chicken's famous secret recipe, with eleven herbs and spices. But nobody ever mentions the twelfth ingredient: Fear. +% +CNN was originally created as the "Chuck Norris Network" to update Americans with on-the-spot ass kicking in real-time. +% +Chuck Norris can win a game of Connect Four in only three moves. +% +What was going through the minds of all of Chuck Norris' victims before they died? His shoe. +% +Chuck Norris is the only man to ever defeat a brick wall in a game of tennis. +% +Police label anyone attacking Chuck Norris as a Code 45-11.... a suicide. +% +Chuck Norris doesn't churn butter. He roundhouse kicks the cows and the butter comes straight out. +% +Chuck Norris doesn’t wash his clothes, he disembowels them. +% +Since 1940, the year Chuck Norris was born, roundhouse-kick related deaths have increased 13,000 percent.? +% +A Handicapped parking sign does not signify that this spot is for handicapped people. It is actually in fact a warning, that the spot belongs to Chuck Norris and that you will be handicapped if you park there. +% +Chuck Norris will attain statehood in 2009. His state flower will be the Magnolia. +% +Someone once videotaped Chuck Norris getting pissed off. It was called Walker: Texas Chain Saw Massacre. +% +Chuck Norris originally appeared in the "Street Fighter II" video game, but was removed by Beta Testers because every button caused him to do a roundhouse kick. When asked bout this "glitch," Norris replied, "That's no glitch." +% +Fool me once, shame on you. Fool Chuck Norris once and he will roundhouse you in the face. +% +There is no such thing as being hard its called the Chuck Norris factor. +% +When Chuck Norris goes to the library, he looks for the guinness book of records in the comedy section. +% +Chuck Norris can shoot a person 28 times with an unloaded gun. +% +Chuck Norris' personal airplane is called Air Force Chuck +% +The letters in Chuck Norris cannot be unscrambled. +% +Cops don't need a badges in their wallets but only a picture of Chuck Norris. +% +Chuck Norris was the reason why the Great Wall of China was constructed. It failed miserably. +% +If you see a man in the street who looks like Chuck Norris, but isn't, run: you don't want to be caught in the resulting roundhouse kick to his face. +% +The red phone in the oval office...Rings directly to Chuck Norris Cell Phone +% +The only way sharks will come near CN underwater is when CN is inside of a cage. +% +Chuck Norris uses a real mouse to move the cursor, type on the keyboard, write e-mails, code entire websites, use photoshop, bring coffee. +% +If Chuck Norris were to get into a fight with another Chuck Norris, Chuck Norris would win. +% +"2012" is code for, Chuck Norris when he is pissed. +% +When the Boogeyman goes to sleep every night, he checks his closet for Chuck Norris. +% +Chuck Norris doesn't read books. He stares them down until he gets the information he wants. +% +There is no theory of evolution. Just a list of creatures Chuck Norris has allowed to live. +% +Outer space exists because it's afraid to be on the same planet with Chuck Norris. +% +Chuck Norris does not sleep. He waits. +% +Chuck Norris is currently suing NBC, claiming Law and Order are trademarked names for his left and right legs. +% +Chuck Norris is the reason why Waldo is hiding. +% +Chuck Norris counted to infinity - twice. +% +There is no chin behind Chuck Norris’ beard. There is only another fist. +% +When Chuck Norris does a pushup, he isn't lifting himself up, he's pushing the Earth down. +% +Chuck Norris is so fast, he can run around the world and punch himself in the back of the head. +% +Chuck Norris' hand is the only hand that can beat a Royal Flush. +% +Chuck Norris can lead a horse to water AND make it drink. +% +Chuck Norris doesn’t wear a watch. HE decides what time it is. +% +Chuck Norris can slam a revolving door. +% +Chuck Norris does not get frostbite. Chuck Norris bites frost. +% +Remember the Soviet Union? They decided to quit after watching a DeltaForce marathon on Satellite TV. +% +Contrary to popular belief, America is not a democracy, it is a Chucktatorship. +% +If you spell Chuck Norris in Scrabble, you win. Forever. +% +Guns don't kill people. Chuck Norris kills people. +% +There is no theory of evolution. Just a list of animals Chuck Norris allows to live. +% +The chief export of Chuck Norris is Pain. +% +Chuck Norris has two speeds. Walk, and Kill. +% +The leading causes of death in the United States are: 1. Heart Disease 2. Chuck Norris 3. Cancer. +% +Chuck Norris drives an ice cream truck covered in human skulls. +% +Chuck Norris is my Homeboy. +% +Chuck Norris doesn't go hunting.... CHUCK NORRIS GOES KILLING. +% +Chuck Norris uses pepper spray to spice up his steaks. +% +Chuck Norris once roundhouse kicked someone so hard that his foot broke the speed of light, went back in time, and killed Amelia Earhart while she was flying over the Pacific Ocean. +% +Crop circles are Chuck Norris' way of telling the world that sometimes corn needs to lie down. +% +Chuck Norris is ten feet tall, weighs two-tons, breathes fire, and could eat a hammer and take a shotgun blast standing. +% +The Great Wall of China was originally created to keep Chuck Norris out. It failed miserably. +% +Contrary to popular belief, Chuck Norris, not the box jellyfish of northern Australia, is the most venomous creature on earth. +% +Most people have 23 pairs of chromosomes. Chuck Norris has 72... and they're all poisonous. +% +If you ask Chuck Norris what time it is, he always says, "Two seconds 'til." After you ask, "Two seconds 'til what?" he roundhouse kicks you in the face. +% +When Chuck Norris sends in his taxes, he sends blank forms and includes only a picture of himself, crouched and ready to attack. Chuck Norris has not had to pay taxes, ever. +% +The quickest way to a man's heart is with Chuck Norris' fist. +% +Chuck Norris invented Kentucky Fried Chicken's famous secret recipe, with eleven herbs and spices. But nobody ever mentions the twelfth ingredient: Fear. +% +CNN was originally created as the "Chuck Norris Network" to update Americans with on-the-spot ass kicking in real-time. +% +Chuck Norris can win a game of Connect Four in only three moves. +% +What was going through the minds of all of Chuck Norris' victims before they died? His shoe. +% +Chuck Norris is the only man to ever defeat a brick wall in a game of tennis. +% +Police label anyone attacking Chuck Norris as a Code 45-11.... a suicide. +% +Chuck Norris doesn't churn butter. He roundhouse kicks the cows and the butter comes straight out. +% +Chuck Norris doesn’t wash his clothes, he disembowels them. +% +A Handicapped parking sign does not signify that this spot is for handicapped people. It is actually in fact a warning, that the spot belongs to Chuck Norris and that you will be handicapped if you park there. +% +Chuck Norris will attain statehood in 2009. His state flower will be the Magnolia. +% +Someone once videotaped Chuck Norris getting pissed off. It was called Walker: Texas Chain Saw Massacre. +% +Chuck Norris originally appeared in the "Street Fighter II" video game, but was removed by Beta Testers because every button caused him to do a roundhouse kick. When asked bout this "glitch," Norris replied, "That's no glitch." +% +Fool me once, shame on you. Fool Chuck Norris once and he will roundhouse you in the face. +% +In the back of the book of world records, it says "All records are held by Chuck Norris. The ones listed are in second place." +% +The only place where the Starship Enterprise refuses to boldly go is Chuck Norris' planet...which is all of them. +% +Chuck Norris once had a pet monkey........his name was KING KONG +% +Chuck Norris can make his own megazord "The Chuck Norris Roundhouse Kickers Ultimate Super Awesome Megazord" +% +Simon doesn't say...Chuck Norris says. +% +When does Chuck Norris run out of shotgun bullets?.....whenever he wants to. +% +The only sure things are Death and Taxes, and when Chuck Norris goes to work for the IRS, they'll be the same thing. +% +Chuck Norris' first job was as a paperboy. There were no survivors. +% +Chuck Norris can turn toast back into bread +% +Chuck Norris started Chuck Norris. +% +Ever wonder what really happened to the dinosaurs? They all dug their own graves when they heard Chuck Norris was coming +% +Chuck Norris killed Kemper +% +Did you here about the boy who cried Chuck Norris? +% +Chuck Norris can't perform Hadoukens, he IS a Hadouken +% +Behind every successful man is Chuck Norris +% +When the Boogeyman goes to sleep every night, he checks his closet for Chuck Norris. +% +Chuck Norris doesn't read books. He stares them down until he gets the information he wants. +% +There is no theory of evolution. Just a list of creatures Chuck Norris has allowed to live. +% +Outer space exists because it's afraid to be on the same planet with Chuck Norris. +% +Chuck Norris does not sleep. He waits. +% +Chuck Norris is currently suing NBC, claiming Law and Order are trademarked names for his left and right legs. +% +Chuck Norris is the reason why Waldo is hiding. +% +Chuck Norris counted to infinity - twice. +% +MacGyver immediately tried to make a bomb out of some Q-Tips and Gatorade, but Chuck Norris roundhouse-kicked him in the solar plexus. MacGyver promptly threw up his own heart. +% +There is no chin behind Chuck Norris’ beard. There is only another fist. +% +When Chuck Norris does a pushup, he isn't lifting himself up, he's pushing the Earth down. +% +Chuck Norris is so fast, he can run around the world and punch himself in the back of the head. +% +Chuck Norris' hand is the only hand that can beat a Royal Flush. +% +Chuck Norris can lead a horse to water AND make it drink. +% +Chuck Norris doesn’t wear a watch. HE decides what time it is. +% +Chuck Norris can slam a revolving door. +% +Chuck Norris does not get frostbite. Chuck Norris bites frost. +% +Remember the Soviet Union? They decided to quit after watching a DeltaForce marathon on Satellite TV. +% +Contrary to popular belief, America is not a democracy, it is a Chucktatorship. +% +If you spell Chuck Norris in Scrabble, you win. Forever. +% +Guns don't kill people. Chuck Norris kills people. +% +There is no theory of evolution. Just a list of animals Chuck Norris allows to live. +% +The chief export of Chuck Norris is Pain. +% +Chuck Norris has two speeds. Walk, and Kill. +% +The leading causes of death in the United States are: 1. Heart Disease 2. Chuck Norris 3. Cancer. +% +Chuck Norris drives an ice cream truck covered in human skulls. +% +Chuck Norris is my Homeboy. +% +Chuck Norris doesn't go hunting.... CHUCK NORRIS GOES KILLING. +% +Chuck Norris uses pepper spray to spice up his steaks. +% +Chuck Norris once roundhouse kicked someone so hard that his foot broke the speed of light, went back in time, and killed Amelia Earhart while she was flying over the Pacific Ocean. +% +Crop circles are Chuck Norris' way of telling the world that sometimes corn needs to lie down. +% +Chuck Norris is ten feet tall, weighs two-tons, breathes fire, and could eat a hammer and take a shotgun blast standing. +% +The Great Wall of China was originally created to keep Chuck Norris out. It failed miserably. +% +Contrary to popular belief, Chuck Norris, not the box jellyfish of northern Australia, is the most venomous creature on earth. +% +Most people have 23 pairs of chromosomes. Chuck Norris has 72... and they're all poisonous. +% +If you ask Chuck Norris what time it is, he always says, "Two seconds 'til." After you ask, "Two seconds 'til what?" he roundhouse kicks you in the face. +% +When Chuck Norris sends in his taxes, he sends blank forms and includes only a picture of himself, crouched and ready to attack. Chuck Norris has not had to pay taxes, ever. +% +The quickest way to a man's heart is with Chuck Norris' fist. +% +Chuck Norris invented Kentucky Fried Chicken's famous secret recipe, with eleven herbs and spices. But nobody ever mentions the twelfth ingredient: Fear. +% +CNN was originally created as the "Chuck Norris Network" to update Americans with on-the-spot ass kicking in real-time. +% +Chuck Norris can win a game of Connect Four in only three moves. +% +What was going through the minds of all of Chuck Norris' victims before they died? His shoe. +% +Chuck Norris is the only man to ever defeat a brick wall in a game of tennis. +% +Police label anyone attacking Chuck Norris as a Code 45-11.... a suicide. +% +Chuck Norris doesn't churn butter. He roundhouse kicks the cows and the butter comes straight out. +% +Chuck Norris doesn’t wash his clothes, he disembowels them. +% +A Handicapped parking sign does not signify that this spot is for handicapped people. It is actually in fact a warning, that the spot belongs to Chuck Norris and that you will be handicapped if you park there. +% +Chuck Norris will attain statehood in 2009. His state flower will be the Magnolia. +% +Someone once videotaped Chuck Norris getting pissed off. It was called Walker: Texas Chain Saw Massacre. +% +Chuck Norris originally appeared in the "Street Fighter II" video game, but was removed by Beta Testers because every button caused him to do a roundhouse kick. When asked bout this "glitch," Norris replied, "That's no glitch." +% +Fool me once, shame on you. Fool Chuck Norris once and he will roundhouse you in the face. +% +The square root of Chuck Norris is pain. Do not try to square Chuck Norris. The result is death +% +Chuck Norris doesn't read. He just stares at the book until he gets the information he wants. +% +Why didn't the chicken cross the road? Because Chuck Norris got to it first. +% +When taking the SAT, write "Chuck Norris" for every answer. You will score over 8000. +% +Chuck Norris can milk an alligator +% +Chuck Norris doesn't eat, he just sucks the energy out of food by staring at it +% +Chuck Norris once proved p^~p by induction on his beard hairs. +% +The reason why batman only comes out at night is because he's afraid he might encounter Chuck Norris in the Morning and afternoon. +% +Chuck Norris can bake in a Freezer. +% +Chuck Norris is currently suing any broadway theater that plays "The Nutcracker". He claims its an infringement on his "other" roundhouse kick. +% +Chuck Norris once had a weak moment, just to know what it felt like. +% +Note to everyone: Please do not give beans to Chuck Norris or do you want another atombomb on hiroshima? +% +Chuck Norris has made a 148 break a snooker. +% +When the Boogeyman goes to sleep every night, he checks his closet for Chuck Norris. +% +Chuck Norris doesn't read books. He stares them down until he gets the information he wants. +% +There is no theory of evolution. Just a list of creatures Chuck Norris has allowed to live. +% +Outer space exists because it's afraid to be on the same planet with Chuck Norris. +% +Chuck Norris does not sleep. He waits. +% +Chuck Norris is currently suing NBC, claiming Law and Order are trademarked names for his left and right legs. +% +Chuck Norris is the reason why Waldo is hiding. +% +Chuck Norris counted to infinity - twice. +% +There is no chin behind Chuck Norris’ beard. There is only another fist. +% +When Chuck Norris does a pushup, he isn't lifting himself up, he's pushing the Earth down. +% +Chuck Norris is so fast, he can run around the world and punch himself in the back of the head. +% +Chuck Norris' hand is the only hand that can beat a Royal Flush. +% +Chuck Norris can lead a horse to water AND make it drink. +% +Chuck Norris doesn’t wear a watch. HE decides what time it is. +% +Chuck Norris can slam a revolving door. +% +Chuck Norris does not get frostbite. Chuck Norris bites frost. +% +Remember the Soviet Union? They decided to quit after watching a DeltaForce marathon on Satellite TV. +% +Contrary to popular belief, America is not a democracy, it is a Chucktatorship. +% +If you spell Chuck Norris in Scrabble, you win. Forever. +% +Guns don't kill people. Chuck Norris kills people. +% +There is no theory of evolution. Just a list of animals Chuck Norris allows to live. +% +The chief export of Chuck Norris is Pain. +% +Chuck Norris has two speeds. Walk, and Kill. +% +The leading causes of death in the United States are: 1. Heart Disease 2. Chuck Norris 3. Cancer. +% +Chuck Norris drives an ice cream truck covered in human skulls. +% +Chuck Norris is my Homeboy. +% +Chuck Norris doesn't go hunting.... CHUCK NORRIS GOES KILLING. +% +Chuck Norris uses pepper spray to spice up his steaks. +% +Chuck Norris once roundhouse kicked someone so hard that his foot broke the speed of light, went back in time, and killed Amelia Earhart while she was flying over the Pacific Ocean. +% +Crop circles are Chuck Norris' way of telling the world that sometimes corn needs to lie down. +% +Chuck Norris is ten feet tall, weighs two-tons, breathes fire, and could eat a hammer and take a shotgun blast standing. +% +The Great Wall of China was originally created to keep Chuck Norris out. It failed miserably. +% +Contrary to popular belief, Chuck Norris, not the box jellyfish of northern Australia, is the most venomous creature on earth. +% +Most people have 23 pairs of chromosomes. Chuck Norris has 72... and they're all poisonous. +% +If you ask Chuck Norris what time it is, he always says, "Two seconds 'til." After you ask, "Two seconds 'til what?" he roundhouse kicks you in the face. +% +When Chuck Norris sends in his taxes, he sends blank forms and includes only a picture of himself, crouched and ready to attack. Chuck Norris has not had to pay taxes, ever. +% +The quickest way to a man's heart is with Chuck Norris' fist. +% +Chuck Norris invented Kentucky Fried Chicken's famous secret recipe, with eleven herbs and spices. But nobody ever mentions the twelfth ingredient: Fear. +% +CNN was originally created as the "Chuck Norris Network" to update Americans with on-the-spot ass kicking in real-time. +% +Chuck Norris can win a game of Connect Four in only three moves. +% +What was going through the minds of all of Chuck Norris' victims before they died? His shoe. +% +Chuck Norris is the only man to ever defeat a brick wall in a game of tennis. +% +Police label anyone attacking Chuck Norris as a Code 45-11.... a suicide. +% +Chuck Norris doesn't churn butter. He roundhouse kicks the cows and the butter comes straight out. +% +Chuck Norris doesn’t wash his clothes, he disembowels them. +% +A Handicapped parking sign does not signify that this spot is for handicapped people. It is actually in fact a warning, that the spot belongs to Chuck Norris and that you will be handicapped if you park there. +% +Chuck Norris will attain statehood in 2009. His state flower will be the Magnolia. +% +Someone once videotaped Chuck Norris getting pissed off. It was called Walker: Texas Chain Saw Massacre. +% +Chuck Norris originally appeared in the "Street Fighter II" video game, but was removed by Beta Testers because every button caused him to do a roundhouse kick. When asked bout this "glitch," Norris replied, "That's no glitch." +% +Fool me once, shame on you. Fool Chuck Norris once and he will roundhouse you in the face. +% +http://chucknorrisfacts.com/ is built in Drupal because Chuck Norris knows a good CMS when he sees one. +% +The producers of the movie "The Last Airbender" are now in talks with Chuck Norris in Order to star him in their next sequal "The Last Skull Bender". +% +Some boots were made for walking. Some boots may walk all over you, but Chuck Norris' boot walk THROUGH you. +% +World War II began because Chuck Norris took a nap. When he woke up, Hitler found out and killed himself out of fear Chuck Norris would kill him. +% +The best part of waking up is not Folgers in your cup, it's knowing that Chuck Norris let you live. +% +Only Chuck Norris can win the mind game, 'cause he never minds. +% +Do you know why Chuck Norris didn't star in The Expandebles? Because all the others guys would have surrended at the beginning. +% +Bruce Lee didn't defeat Chuck Norris. Chuck hit Bruce with a Delayed roundhouse kick that was so fast that Lee only felt the impact a year later! +% +Chuck Norris doesn't need a bulletproof vest to be bulletproof +% +When Chuck Norris goes to Vegas, he doesn't have to gamble. The casinos just give him stacks of money. +% +Merlin was Chuck Norris' assistant. +% +If you put in the correct cheat code in Halo 2, you can have Master Cheif play without his helmet; revealing to be Chuck Norris. +% +Those who ignore history, are doomed by Chuck Norris. +% +When the Boogeyman goes to sleep every night, he checks his closet for Chuck Norris. +% +Chuck Norris doesn't read books. He stares them down until he gets the information he wants. +% +There is no theory of evolution. Just a list of creatures Chuck Norris has allowed to live. +% +Outer space exists because it's afraid to be on the same planet with Chuck Norris. +% +Chuck Norris does not sleep. He waits. +% +Chuck Norris is currently suing NBC, claiming Law and Order are trademarked names for his left and right legs. +% +Chuck Norris is the reason why Waldo is hiding. +% +Chuck Norris counted to infinity - twice. +% +There is no chin behind Chuck Norris’ beard. There is only another fist. +% +When Chuck Norris does a pushup, he isn't lifting himself up, he's pushing the Earth down. +% +Chuck Norris is so fast, he can run around the world and punch himself in the back of the head. +% +Chuck Norris' hand is the only hand that can beat a Royal Flush. +% +Chuck Norris can lead a horse to water AND make it drink. +% +Chuck Norris doesn’t wear a watch. HE decides what time it is. +% +Chuck Norris can slam a revolving door. +% +Chuck Norris does not get frostbite. Chuck Norris bites frost. +% +Remember the Soviet Union? They decided to quit after watching a DeltaForce marathon on Satellite TV. +% +Contrary to popular belief, America is not a democracy, it is a Chucktatorship. +% +If you spell Chuck Norris in Scrabble, you win. Forever. +% +Guns don't kill people. Chuck Norris kills people. +% +There is no theory of evolution. Just a list of animals Chuck Norris allows to live. +% +The chief export of Chuck Norris is Pain. +% +Chuck Norris has two speeds. Walk, and Kill. +% +The leading causes of death in the United States are: 1. Heart Disease 2. Chuck Norris 3. Cancer. +% +Chuck Norris drives an ice cream truck covered in human skulls. +% +Chuck Norris is my Homeboy. +% +Chuck Norris doesn't go hunting.... CHUCK NORRIS GOES KILLING. +% +Chuck Norris uses pepper spray to spice up his steaks. +% +Chuck Norris once roundhouse kicked someone so hard that his foot broke the speed of light, went back in time, and killed Amelia Earhart while she was flying over the Pacific Ocean. +% +Crop circles are Chuck Norris' way of telling the world that sometimes corn needs to lie down. +% +Chuck Norris is ten feet tall, weighs two-tons, breathes fire, and could eat a hammer and take a shotgun blast standing. +% +The Great Wall of China was originally created to keep Chuck Norris out. It failed miserably. +% +Contrary to popular belief, Chuck Norris, not the box jellyfish of northern Australia, is the most venomous creature on earth. +% +Most people have 23 pairs of chromosomes. Chuck Norris has 72... and they're all poisonous. +% +If you ask Chuck Norris what time it is, he always says, "Two seconds 'til." After you ask, "Two seconds 'til what?" he roundhouse kicks you in the face. +% +When Chuck Norris sends in his taxes, he sends blank forms and includes only a picture of himself, crouched and ready to attack. Chuck Norris has not had to pay taxes, ever. +% +The quickest way to a man's heart is with Chuck Norris' fist. +% +Chuck Norris invented Kentucky Fried Chicken's famous secret recipe, with eleven herbs and spices. But nobody ever mentions the twelfth ingredient: Fear. +% +CNN was originally created as the "Chuck Norris Network" to update Americans with on-the-spot ass kicking in real-time. +% +Chuck Norris can win a game of Connect Four in only three moves. +% +What was going through the minds of all of Chuck Norris' victims before they died? His shoe. +% +Chuck Norris is the only man to ever defeat a brick wall in a game of tennis. +% +Police label anyone attacking Chuck Norris as a Code 45-11.... a suicide. +% +Chuck Norris doesn't churn butter. He roundhouse kicks the cows and the butter comes straight out. +% +Chuck Norris doesn’t wash his clothes, he disembowels them. +% +A Handicapped parking sign does not signify that this spot is for handicapped people. It is actually in fact a warning, that the spot belongs to Chuck Norris and that you will be handicapped if you park there. +% +Chuck Norris will attain statehood in 2009. His state flower will be the Magnolia. +% +Someone once videotaped Chuck Norris getting pissed off. It was called Walker: Texas Chain Saw Massacre. +% +Chuck Norris originally appeared in the "Street Fighter II" video game, but was removed by Beta Testers because every button caused him to do a roundhouse kick. When asked bout this "glitch," Norris replied, "That's no glitch." +% +Fool me once, shame on you. Fool Chuck Norris once and he will roundhouse you in the face. +% +Some kids pee their name in snow. Chuck Norris pees his name in concrete. +% +The Matrix Trilogy would have ended on the first movie if Keanu Reeves said, “I know Chuck Norris.” +% +Chuck Norris created Heavy Metal when he was upset +% +Some people ask for a Kleenex when they sneeze, Chuck Norris asks for a body bag. +% +When things go bump in the night.... it's Chuck Norris +% +Chuck Norris fed the Hunger Games +% +Chuck Norris played "Got your Nose" with Voldemort and won. +% +Chuck Norris had a knife thrown at him............ the knife didn't impale him, he impaled the knife +% +Chuck Norris doesn't let it go. +% +You know Chuck Norris' pet lizard, right? Last I heard, he was in the movie "Godzilla". Oh, and his pet turtle starred in "Gamera" as well. +% +Whatever Chuck Norris wants, it will instantly appear. +% +Chuck Norris once cut a knife with a stick of butter. +% +Chuck Norris shops at Sam's Club, but leaves without having his receipt checked +% +When the Boogeyman goes to sleep every night, he checks his closet for Chuck Norris. +% +Chuck Norris doesn't read books. He stares them down until he gets the information he wants. +% +There is no theory of evolution. Just a list of creatures Chuck Norris has allowed to live. +% +Outer space exists because it's afraid to be on the same planet with Chuck Norris. +% +Chuck Norris does not sleep. He waits. +% +Chuck Norris is currently suing NBC, claiming Law and Order are trademarked names for his left and right legs. +% +Chuck Norris is the reason why Waldo is hiding. +% +Chuck Norris counted to infinity - twice. +% +There is no chin behind Chuck Norris’ beard. There is only another fist. +% +When Chuck Norris does a pushup, he isn't lifting himself up, he's pushing the Earth down. +% +Chuck Norris is so fast, he can run around the world and punch himself in the back of the head. +% +Chuck Norris' hand is the only hand that can beat a Royal Flush. +% +Chuck Norris can lead a horse to water AND make it drink. +% +Chuck Norris doesn’t wear a watch. HE decides what time it is. +% +Chuck Norris can slam a revolving door. +% +Chuck Norris does not get frostbite. Chuck Norris bites frost. +% +Remember the Soviet Union? They decided to quit after watching a DeltaForce marathon on Satellite TV. +% +Contrary to popular belief, America is not a democracy, it is a Chucktatorship. +% +If you spell Chuck Norris in Scrabble, you win. Forever. +% +Guns don't kill people. Chuck Norris kills people. +% +There is no theory of evolution. Just a list of animals Chuck Norris allows to live. +% +The chief export of Chuck Norris is Pain. +% +Chuck Norris has two speeds. Walk, and Kill. +% +The leading causes of death in the United States are: 1. Heart Disease 2. Chuck Norris 3. Cancer. +% +Chuck Norris drives an ice cream truck covered in human skulls. +% +Chuck Norris is my Homeboy. +% +Chuck Norris doesn't go hunting.... CHUCK NORRIS GOES KILLING. +% +Chuck Norris uses pepper spray to spice up his steaks. +% +Chuck Norris once roundhouse kicked someone so hard that his foot broke the speed of light, went back in time, and killed Amelia Earhart while she was flying over the Pacific Ocean. +% +Crop circles are Chuck Norris' way of telling the world that sometimes corn needs to lie down. +% +Chuck Norris is ten feet tall, weighs two-tons, breathes fire, and could eat a hammer and take a shotgun blast standing. +% +The Great Wall of China was originally created to keep Chuck Norris out. It failed miserably. +% +Contrary to popular belief, Chuck Norris, not the box jellyfish of northern Australia, is the most venomous creature on earth. +% +Most people have 23 pairs of chromosomes. Chuck Norris has 72... and they're all poisonous. +% +If you ask Chuck Norris what time it is, he always says, "Two seconds 'til." After you ask, "Two seconds 'til what?" he roundhouse kicks you in the face. +% +When Chuck Norris sends in his taxes, he sends blank forms and includes only a picture of himself, crouched and ready to attack. Chuck Norris has not had to pay taxes, ever. +% +The quickest way to a man's heart is with Chuck Norris' fist. +% +Chuck Norris invented Kentucky Fried Chicken's famous secret recipe, with eleven herbs and spices. But nobody ever mentions the twelfth ingredient: Fear. +% +CNN was originally created as the "Chuck Norris Network" to update Americans with on-the-spot ass kicking in real-time. +% +Chuck Norris can win a game of Connect Four in only three moves. +% +What was going through the minds of all of Chuck Norris' victims before they died? His shoe. +% +Chuck Norris is the only man to ever defeat a brick wall in a game of tennis. +% +Police label anyone attacking Chuck Norris as a Code 45-11.... a suicide. +% +Chuck Norris doesn't churn butter. He roundhouse kicks the cows and the butter comes straight out. +% +Chuck Norris doesn’t wash his clothes, he disembowels them. +% +A Handicapped parking sign does not signify that this spot is for handicapped people. It is actually in fact a warning, that the spot belongs to Chuck Norris and that you will be handicapped if you park there. +% +Chuck Norris will attain statehood in 2009. His state flower will be the Magnolia. +% +Someone once videotaped Chuck Norris getting pissed off. It was called Walker: Texas Chain Saw Massacre. +% +Chuck Norris originally appeared in the "Street Fighter II" video game, but was removed by Beta Testers because every button caused him to do a roundhouse kick. When asked bout this "glitch," Norris replied, "That's no glitch." +% +Fool me once, shame on you. Fool Chuck Norris once and he will roundhouse you in the face. +% +In 1945 The US army asked if they could clone Chuck Norris. instead he said he could sort out the Japanese. +% +One glance from Chuck Norris and snow turns itself yellow. +% +Chuck Norris checks under his bed for Fedor Emelianenko because he takes Fedor to the vet regularly. +% +Chuck Norris was the image used for Papa Smurf. +% +Chuck Norris is so scary he makes Sharks swim backwards away from him +% +When Chuck Norris tosses a coin, it lands on both head and tail. +% +Chuck Norris found the last digit of pie +% +Chuck Norris Watches "the Nat.Geo. Specials" on Discovery Channel +% +James Bond has a license to kill. He got it from Chuck Norris. +% +Chuck Norris is Chuck Norris +% +"The Big Chuck Norris Roundhouse-Kick Theory" +% +That's not an eclipse....that's the sun hiding from Chuck Norris. +% +Chuck Norris doesn't like Mudkipz +% +When the Boogeyman goes to sleep every night, he checks his closet for Chuck Norris. +% +Chuck Norris doesn't read books. He stares them down until he gets the information he wants. +% +There is no theory of evolution. Just a list of creatures Chuck Norris has allowed to live. +% +Outer space exists because it's afraid to be on the same planet with Chuck Norris. +% +Chuck Norris does not sleep. He waits. +% +Chuck Norris is currently suing NBC, claiming Law and Order are trademarked names for his left and right legs. +% +Chuck Norris is the reason why Waldo is hiding. +% +Chuck Norris counted to infinity - twice. +% +There is no chin behind Chuck Norris’ beard. There is only another fist. +% +When Chuck Norris does a pushup, he isn't lifting himself up, he's pushing the Earth down. +% +Chuck Norris is so fast, he can run around the world and punch himself in the back of the head. +% +Chuck Norris' hand is the only hand that can beat a Royal Flush. +% +Chuck Norris can lead a horse to water AND make it drink. +% +Chuck Norris doesn’t wear a watch. HE decides what time it is. +% +Chuck Norris can slam a revolving door. +% +Chuck Norris does not get frostbite. Chuck Norris bites frost. +% +Remember the Soviet Union? They decided to quit after watching a DeltaForce marathon on Satellite TV. +% +Contrary to popular belief, America is not a democracy, it is a Chucktatorship. +% +If you spell Chuck Norris in Scrabble, you win. Forever. +% +Guns don't kill people. Chuck Norris kills people. +% +There is no theory of evolution. Just a list of animals Chuck Norris allows to live. +% +The chief export of Chuck Norris is Pain. +% +Chuck Norris has two speeds. Walk, and Kill. +% +The leading causes of death in the United States are: 1. Heart Disease 2. Chuck Norris 3. Cancer. +% +Chuck Norris drives an ice cream truck covered in human skulls. +% +Chuck Norris is my Homeboy. +% +Chuck Norris doesn't go hunting.... CHUCK NORRIS GOES KILLING. +% +Chuck Norris uses pepper spray to spice up his steaks. +% +Chuck Norris once roundhouse kicked someone so hard that his foot broke the speed of light, went back in time, and killed Amelia Earhart while she was flying over the Pacific Ocean. +% +Crop circles are Chuck Norris' way of telling the world that sometimes corn needs to lie down. +% +Chuck Norris is ten feet tall, weighs two-tons, breathes fire, and could eat a hammer and take a shotgun blast standing. +% +The Great Wall of China was originally created to keep Chuck Norris out. It failed miserably. +% +Contrary to popular belief, Chuck Norris, not the box jellyfish of northern Australia, is the most venomous creature on earth. +% +Most people have 23 pairs of chromosomes. Chuck Norris has 72... and they're all poisonous. +% +If you ask Chuck Norris what time it is, he always says, "Two seconds 'til." After you ask, "Two seconds 'til what?" he roundhouse kicks you in the face. +% +When Chuck Norris sends in his taxes, he sends blank forms and includes only a picture of himself, crouched and ready to attack. Chuck Norris has not had to pay taxes, ever. +% +The quickest way to a man's heart is with Chuck Norris' fist. +% +Chuck Norris invented Kentucky Fried Chicken's famous secret recipe, with eleven herbs and spices. But nobody ever mentions the twelfth ingredient: Fear. +% +CNN was originally created as the "Chuck Norris Network" to update Americans with on-the-spot ass kicking in real-time. +% +Chuck Norris can win a game of Connect Four in only three moves. +% +What was going through the minds of all of Chuck Norris' victims before they died? His shoe. +% +Chuck Norris is the only man to ever defeat a brick wall in a game of tennis. +% +Police label anyone attacking Chuck Norris as a Code 45-11.... a suicide. +% +Chuck Norris doesn't churn butter. He roundhouse kicks the cows and the butter comes straight out. +% +Chuck Norris doesn’t wash his clothes, he disembowels them. +% +A Handicapped parking sign does not signify that this spot is for handicapped people. It is actually in fact a warning, that the spot belongs to Chuck Norris and that you will be handicapped if you park there. +% +Chuck Norris will attain statehood in 2009. His state flower will be the Magnolia. +% +Someone once videotaped Chuck Norris getting pissed off. It was called Walker: Texas Chain Saw Massacre. +% +Chuck Norris originally appeared in the "Street Fighter II" video game, but was removed by Beta Testers because every button caused him to do a roundhouse kick. When asked bout this "glitch," Norris replied, "That's no glitch." +% +Fool me once, shame on you. Fool Chuck Norris once and he will roundhouse you in the face. +% +Chuck Norris doesn’t eat salad, he eats vegetarians +% +Every time there's an earthquake, you know Chuck Norris is hungry. The earthquake is caused by his stomach growling. +% +Chuck Norris wasn't born on his birthday +% +One time a test cheated on Chuck Norris. +% +Chuck Norris won a stepdance contest by standing on his hands +% +Chuck Norris thretened to kill Michael Jackson, MJ got so scared to turned white. +% +When Steven Seagal kills a ninja, he only takes its hide. When Chuck Norris kills a ninja, he uses every part. +% +Chuck Norris is the life of parties he dosen't attend +% +Chuck Norris can rub two fires together and make a stick! +% +Contrary to popular beleif, Rome WAS built in a day, by Chuck Norris. +% +Chuck Norris rolled a 20 on a 6 sided die. +% +When chuck Norris was in school, he made his PE teacher run laps. +% +Chuck Norris wins NASCAR races with all right turns. +% +When the Boogeyman goes to sleep every night, he checks his closet for Chuck Norris. +% +Chuck Norris doesn't read books. He stares them down until he gets the information he wants. +% +There is no theory of evolution. Just a list of creatures Chuck Norris has allowed to live. +% +Outer space exists because it's afraid to be on the same planet with Chuck Norris. +% +Chuck Norris does not sleep. He waits. +% +Chuck Norris is currently suing NBC, claiming Law and Order are trademarked names for his left and right legs. +% +Chuck Norris is the reason why Waldo is hiding. +% +Chuck Norris counted to infinity - twice. +% +There is no chin behind Chuck Norris’ beard. There is only another fist. +% +When Chuck Norris does a pushup, he isn't lifting himself up, he's pushing the Earth down. +% +Chuck Norris is so fast, he can run around the world and punch himself in the back of the head. +% +Chuck Norris' hand is the only hand that can beat a Royal Flush. +% +Chuck Norris can lead a horse to water AND make it drink. +% +Chuck Norris doesn’t wear a watch. HE decides what time it is. +% +Chuck Norris can slam a revolving door. +% +Chuck Norris does not get frostbite. Chuck Norris bites frost. +% +Remember the Soviet Union? They decided to quit after watching a DeltaForce marathon on Satellite TV. +% +Contrary to popular belief, America is not a democracy, it is a Chucktatorship. +% +If you spell Chuck Norris in Scrabble, you win. Forever. +% +Guns don't kill people. Chuck Norris kills people. +% +There is no theory of evolution. Just a list of animals Chuck Norris allows to live. +% +The chief export of Chuck Norris is Pain. +% +Chuck Norris has two speeds. Walk, and Kill. +% +The leading causes of death in the United States are: 1. Heart Disease 2. Chuck Norris 3. Cancer. +% +Chuck Norris drives an ice cream truck covered in human skulls. +% +Chuck Norris is my Homeboy. +% +Chuck Norris doesn't go hunting.... CHUCK NORRIS GOES KILLING. +% +Chuck Norris uses pepper spray to spice up his steaks. +% +Chuck Norris once roundhouse kicked someone so hard that his foot broke the speed of light, went back in time, and killed Amelia Earhart while she was flying over the Pacific Ocean. +% +Crop circles are Chuck Norris' way of telling the world that sometimes corn needs to lie down. +% +Chuck Norris is ten feet tall, weighs two-tons, breathes fire, and could eat a hammer and take a shotgun blast standing. +% +The Great Wall of China was originally created to keep Chuck Norris out. It failed miserably. +% +Contrary to popular belief, Chuck Norris, not the box jellyfish of northern Australia, is the most venomous creature on earth. +% +Most people have 23 pairs of chromosomes. Chuck Norris has 72... and they're all poisonous. +% +If you ask Chuck Norris what time it is, he always says, "Two seconds 'til." After you ask, "Two seconds 'til what?" he roundhouse kicks you in the face. +% +When Chuck Norris sends in his taxes, he sends blank forms and includes only a picture of himself, crouched and ready to attack. Chuck Norris has not had to pay taxes, ever. +% +The quickest way to a man's heart is with Chuck Norris' fist. +% +Chuck Norris invented Kentucky Fried Chicken's famous secret recipe, with eleven herbs and spices. But nobody ever mentions the twelfth ingredient: Fear. +% +CNN was originally created as the "Chuck Norris Network" to update Americans with on-the-spot ass kicking in real-time. +% +Chuck Norris can win a game of Connect Four in only three moves. +% +What was going through the minds of all of Chuck Norris' victims before they died? His shoe. +% +Chuck Norris is the only man to ever defeat a brick wall in a game of tennis. +% +Police label anyone attacking Chuck Norris as a Code 45-11.... a suicide. +% +Chuck Norris doesn't churn butter. He roundhouse kicks the cows and the butter comes straight out. +% +Chuck Norris doesn’t wash his clothes, he disembowels them. +% +A Handicapped parking sign does not signify that this spot is for handicapped people. It is actually in fact a warning, that the spot belongs to Chuck Norris and that you will be handicapped if you park there. +% +Chuck Norris will attain statehood in 2009. His state flower will be the Magnolia. +% +Someone once videotaped Chuck Norris getting pissed off. It was called Walker: Texas Chain Saw Massacre. +% +Chuck Norris originally appeared in the "Street Fighter II" video game, but was removed by Beta Testers because every button caused him to do a roundhouse kick. When asked bout this "glitch," Norris replied, "That's no glitch." +% +Fool me once, shame on you. Fool Chuck Norris once and he will roundhouse you in the face. +% +Chuck Norris is waiting for Mt. St. Helens to erupt again. He's hoping the lava is hot enough to soften his beard so he can shave for the first time. +% +Chuck Norris is overra... +% +Chuck Norris was originally in Mortal Kombat, but that version was deleted because no one can beat Chuck Norris in a fight. +% +Chuck Norris likes everyone on the earth, cause everyone he didn't like... Is dead... +% +Chunk Norris can make sour milk turn fresh +% +There is no limbo, only a world that doesn't know of Chuck Norris +% +Chuck Norris CAN believe it's not butter +% +Dog the Bounty Hunter can't track Chuck Norris down. +% +Abraham Lincoln didn't die because he was shot, Chuck Norris roundhouse-kicked so fast his foot went back in time and killed Abraham Lincoln. +% +When Chuck Norris inhales helium, his voice doesn't change. +% +When Chuck Norris drinks water, the water automatically pasteurized. +% +Chuck Norris once punched the ground to stop an earthquake. The resulting aftershock caused the BP oil spill +% +Chuck Norris can play the death waltz with his chin. +% +When the Boogeyman goes to sleep every night, he checks his closet for Chuck Norris. +% +Chuck Norris doesn't read books. He stares them down until he gets the information he wants. +% +There is no theory of evolution. Just a list of creatures Chuck Norris has allowed to live. +% +Outer space exists because it's afraid to be on the same planet with Chuck Norris. +% +Chuck Norris does not sleep. He waits. +% +Chuck Norris is currently suing NBC, claiming Law and Order are trademarked names for his left and right legs. +% +Chuck Norris is the reason why Waldo is hiding. +% +Chuck Norris counted to infinity - twice. +% +There is no chin behind Chuck Norris’ beard. There is only another fist. +% +When Chuck Norris does a pushup, he isn't lifting himself up, he's pushing the Earth down. +% +Chuck Norris is so fast, he can run around the world and punch himself in the back of the head. +% +Chuck Norris' hand is the only hand that can beat a Royal Flush. +% +Chuck Norris can lead a horse to water AND make it drink. +% +Chuck Norris doesn’t wear a watch. HE decides what time it is. +% +Chuck Norris can slam a revolving door. +% +Chuck Norris does not get frostbite. Chuck Norris bites frost. +% +Remember the Soviet Union? They decided to quit after watching a DeltaForce marathon on Satellite TV. +% +Contrary to popular belief, America is not a democracy, it is a Chucktatorship. +% +If you spell Chuck Norris in Scrabble, you win. Forever. +% +Guns don't kill people. Chuck Norris kills people. +% +There is no theory of evolution. Just a list of animals Chuck Norris allows to live. +% +The chief export of Chuck Norris is Pain. +% +Chuck Norris has two speeds. Walk, and Kill. +% +The leading causes of death in the United States are: 1. Heart Disease 2. Chuck Norris 3. Cancer. +% +Chuck Norris drives an ice cream truck covered in human skulls. +% +Chuck Norris is my Homeboy. +% +Chuck Norris doesn't go hunting.... CHUCK NORRIS GOES KILLING. +% +Chuck Norris uses pepper spray to spice up his steaks. +% +Chuck Norris once roundhouse kicked someone so hard that his foot broke the speed of light, went back in time, and killed Amelia Earhart while she was flying over the Pacific Ocean. +% +Crop circles are Chuck Norris' way of telling the world that sometimes corn needs to lie down. +% +Chuck Norris is ten feet tall, weighs two-tons, breathes fire, and could eat a hammer and take a shotgun blast standing. +% +The Great Wall of China was originally created to keep Chuck Norris out. It failed miserably. +% +Contrary to popular belief, Chuck Norris, not the box jellyfish of northern Australia, is the most venomous creature on earth. +% +Most people have 23 pairs of chromosomes. Chuck Norris has 72... and they're all poisonous. +% +If you ask Chuck Norris what time it is, he always says, "Two seconds 'til." After you ask, "Two seconds 'til what?" he roundhouse kicks you in the face. +% +When Chuck Norris sends in his taxes, he sends blank forms and includes only a picture of himself, crouched and ready to attack. Chuck Norris has not had to pay taxes, ever. +% +The quickest way to a man's heart is with Chuck Norris' fist. +% +Chuck Norris invented Kentucky Fried Chicken's famous secret recipe, with eleven herbs and spices. But nobody ever mentions the twelfth ingredient: Fear. +% +CNN was originally created as the "Chuck Norris Network" to update Americans with on-the-spot ass kicking in real-time. +% +Chuck Norris can win a game of Connect Four in only three moves. +% +What was going through the minds of all of Chuck Norris' victims before they died? His shoe. +% +Chuck Norris is the only man to ever defeat a brick wall in a game of tennis. +% +Police label anyone attacking Chuck Norris as a Code 45-11.... a suicide. +% +Chuck Norris doesn't churn butter. He roundhouse kicks the cows and the butter comes straight out. +% +Chuck Norris doesn’t wash his clothes, he disembowels them. +% +A Handicapped parking sign does not signify that this spot is for handicapped people. It is actually in fact a warning, that the spot belongs to Chuck Norris and that you will be handicapped if you park there. +% +Chuck Norris will attain statehood in 2009. His state flower will be the Magnolia. +% +Someone once videotaped Chuck Norris getting pissed off. It was called Walker: Texas Chain Saw Massacre. +% +Chuck Norris originally appeared in the "Street Fighter II" video game, but was removed by Beta Testers because every button caused him to do a roundhouse kick. When asked bout this "glitch," Norris replied, "That's no glitch." +% +Fool me once, shame on you. Fool Chuck Norris once and he will roundhouse you in the face. +% +More of a question than a fact: in a fight between Chuck Norris and Gordan Freeman who would win? +% +Chuck Norris once round-house kicked a salesman. Over the phone. +% +Chuck Norris can grill a popsicle +% +Chuck Norris' films are factual documentaries. +% +Casinos pay Chuck Norris not to play at anything or wish anyone good luck. +% +Chuck Norris once got a 200 yard punt return +% +Every line in a Chuck Norris haiku is "A roundhouse kick to the face." And they all have the correct number of syllables. +% +An angry glare from Chuck Norris is known to kill on the spot. +% +Evolution's driving mechanism is nature's desperate attempt to escape Chuck Norris. +% +When President Roosevelt dropped the atomic bomb on Hiroshima, he did so only because it was more human then sending Chuck Norris. +% +Don't get Chuck Norris angry, last time somebody did that Chuck Norris made the Grand Canyon. +% +In Texas, there are five sizes for fountain drinks: small, medium, large, Texas sized, and Chuck Norris Sized. It is a cup made of a human skull. +% +After Chuck counted to infinity the first time, he vowed to count to infinity a second time....by counting the bodies of those previously roundhoused. +% +When the Boogeyman goes to sleep every night, he checks his closet for Chuck Norris. +% +Chuck Norris doesn't read books. He stares them down until he gets the information he wants. +% +There is no theory of evolution. Just a list of creatures Chuck Norris has allowed to live. +% +Outer space exists because it's afraid to be on the same planet with Chuck Norris. +% +Chuck Norris does not sleep. He waits. +% +Chuck Norris is currently suing NBC, claiming Law and Order are trademarked names for his left and right legs. +% +Chuck Norris is the reason why Waldo is hiding. +% +Chuck Norris counted to infinity - twice. +% +There is no chin behind Chuck Norris’ beard. There is only another fist. +% +When Chuck Norris does a pushup, he isn't lifting himself up, he's pushing the Earth down. +% +Chuck Norris is so fast, he can run around the world and punch himself in the back of the head. +% +Chuck Norris' hand is the only hand that can beat a Royal Flush. +% +Chuck Norris can lead a horse to water AND make it drink. +% +Chuck Norris doesn’t wear a watch. HE decides what time it is. +% +Chuck Norris can slam a revolving door. +% +Chuck Norris does not get frostbite. Chuck Norris bites frost. +% +Remember the Soviet Union? They decided to quit after watching a DeltaForce marathon on Satellite TV. +% +Contrary to popular belief, America is not a democracy, it is a Chucktatorship. +% +If you spell Chuck Norris in Scrabble, you win. Forever. +% +Guns don't kill people. Chuck Norris kills people. +% +There is no theory of evolution. Just a list of animals Chuck Norris allows to live. +% +The chief export of Chuck Norris is Pain. +% +Chuck Norris has two speeds. Walk, and Kill. +% +The leading causes of death in the United States are: 1. Heart Disease 2. Chuck Norris 3. Cancer. +% +Chuck Norris drives an ice cream truck covered in human skulls. +% +Chuck Norris is my Homeboy. +% +Chuck Norris doesn't go hunting.... CHUCK NORRIS GOES KILLING. +% +Chuck Norris uses pepper spray to spice up his steaks. +% +Chuck Norris once roundhouse kicked someone so hard that his foot broke the speed of light, went back in time, and killed Amelia Earhart while she was flying over the Pacific Ocean. +% +Crop circles are Chuck Norris' way of telling the world that sometimes corn needs to lie down. +% +Chuck Norris is ten feet tall, weighs two-tons, breathes fire, and could eat a hammer and take a shotgun blast standing. +% +The Great Wall of China was originally created to keep Chuck Norris out. It failed miserably. +% +Contrary to popular belief, Chuck Norris, not the box jellyfish of northern Australia, is the most venomous creature on earth. +% +Most people have 23 pairs of chromosomes. Chuck Norris has 72... and they're all poisonous. +% +If you ask Chuck Norris what time it is, he always says, "Two seconds 'til." After you ask, "Two seconds 'til what?" he roundhouse kicks you in the face. +% +When Chuck Norris sends in his taxes, he sends blank forms and includes only a picture of himself, crouched and ready to attack. Chuck Norris has not had to pay taxes, ever. +% +The quickest way to a man's heart is with Chuck Norris' fist. +% +Chuck Norris invented Kentucky Fried Chicken's famous secret recipe, with eleven herbs and spices. But nobody ever mentions the twelfth ingredient: Fear. +% +CNN was originally created as the "Chuck Norris Network" to update Americans with on-the-spot ass kicking in real-time. +% +Chuck Norris can win a game of Connect Four in only three moves. +% +What was going through the minds of all of Chuck Norris' victims before they died? His shoe. +% +Chuck Norris is the only man to ever defeat a brick wall in a game of tennis. +% +Police label anyone attacking Chuck Norris as a Code 45-11.... a suicide. +% +Chuck Norris doesn't churn butter. He roundhouse kicks the cows and the butter comes straight out. +% +Chuck Norris doesn’t wash his clothes, he disembowels them. +% +A Handicapped parking sign does not signify that this spot is for handicapped people. It is actually in fact a warning, that the spot belongs to Chuck Norris and that you will be handicapped if you park there. +% +Chuck Norris will attain statehood in 2009. His state flower will be the Magnolia. +% +Someone once videotaped Chuck Norris getting pissed off. It was called Walker: Texas Chain Saw Massacre. +% +Chuck Norris originally appeared in the "Street Fighter II" video game, but was removed by Beta Testers because every button caused him to do a roundhouse kick. When asked bout this "glitch," Norris replied, "That's no glitch." +% +Fool me once, shame on you. Fool Chuck Norris once and he will roundhouse you in the face. +% +Taking Karate Lessons = $100, Buying MMA DVD's= $150, Subscribing to a UFC event = $50, Getting a Roundhouse Kick from Chuck Norris = PRICELESS +% +Chuck Norris played the game of thrones and won +% +Chuck Norris doesn't need sunglasses, the sun needs Chuck Norris glasses +% +Chuck Norris doesn't call the wrong number, you just answer the wrong phone. +% +Chuck Norris once won the tour de france riding a " big wheel" +% +May the Force be with Chuck Norris... for it's own good. +% +Chuck Norris once played Duck Duck Goose with a group of Kindergarteners. Only one kid made it to first grade +% +During the Civil War Chuck Norris was a slave, his master would often beg him for mercy +% +Chuck Norris' glass is never half full or half empty. It stays full even after he takes a drink. +% + King Kong climbed the Empire State building in fear of Chuck Norris who was downstairs at the time. +% +Chuck Norris can French kiss his elbow. +% +Chuck Norris never trains, because he's Chuck Norris. +% +Every phobia known to man has a phobia of Chuck Norris +% +When the Boogeyman goes to sleep every night, he checks his closet for Chuck Norris. +% +Chuck Norris doesn't read books. He stares them down until he gets the information he wants. +% +There is no theory of evolution. Just a list of creatures Chuck Norris has allowed to live. +% +Outer space exists because it's afraid to be on the same planet with Chuck Norris. +% +Chuck Norris does not sleep. He waits. +% +Chuck Norris is currently suing NBC, claiming Law and Order are trademarked names for his left and right legs. +% +Chuck Norris is the reason why Waldo is hiding. +% +Chuck Norris counted to infinity - twice. +% +There is no chin behind Chuck Norris’ beard. There is only another fist. +% +When Chuck Norris does a pushup, he isn't lifting himself up, he's pushing the Earth down. +% +Chuck Norris is so fast, he can run around the world and punch himself in the back of the head. +% +Chuck Norris' hand is the only hand that can beat a Royal Flush. +% +Chuck Norris can lead a horse to water AND make it drink. +% +Chuck Norris doesn’t wear a watch. HE decides what time it is. +% +Chuck Norris can slam a revolving door. +% +Chuck Norris does not get frostbite. Chuck Norris bites frost. +% +Remember the Soviet Union? They decided to quit after watching a DeltaForce marathon on Satellite TV. +% +Contrary to popular belief, America is not a democracy, it is a Chucktatorship. +% +If you spell Chuck Norris in Scrabble, you win. Forever. +% +Guns don't kill people. Chuck Norris kills people. +% +There is no theory of evolution. Just a list of animals Chuck Norris allows to live. +% +The chief export of Chuck Norris is Pain. +% +Chuck Norris has two speeds. Walk, and Kill. +% +The leading causes of death in the United States are: 1. Heart Disease 2. Chuck Norris 3. Cancer. +% +Chuck Norris drives an ice cream truck covered in human skulls. +% +Chuck Norris is my Homeboy. +% +Chuck Norris doesn't go hunting.... CHUCK NORRIS GOES KILLING. +% +Chuck Norris uses pepper spray to spice up his steaks. +% +Chuck Norris once roundhouse kicked someone so hard that his foot broke the speed of light, went back in time, and killed Amelia Earhart while she was flying over the Pacific Ocean. +% +Crop circles are Chuck Norris' way of telling the world that sometimes corn needs to lie down. +% +Chuck Norris is ten feet tall, weighs two-tons, breathes fire, and could eat a hammer and take a shotgun blast standing. +% +The Great Wall of China was originally created to keep Chuck Norris out. It failed miserably. +% +Contrary to popular belief, Chuck Norris, not the box jellyfish of northern Australia, is the most venomous creature on earth. +% +Most people have 23 pairs of chromosomes. Chuck Norris has 72... and they're all poisonous. +% +If you ask Chuck Norris what time it is, he always says, "Two seconds 'til." After you ask, "Two seconds 'til what?" he roundhouse kicks you in the face. +% +When Chuck Norris sends in his taxes, he sends blank forms and includes only a picture of himself, crouched and ready to attack. Chuck Norris has not had to pay taxes, ever. +% +The quickest way to a man's heart is with Chuck Norris' fist. +% +Chuck Norris invented Kentucky Fried Chicken's famous secret recipe, with eleven herbs and spices. But nobody ever mentions the twelfth ingredient: Fear. +% +CNN was originally created as the "Chuck Norris Network" to update Americans with on-the-spot ass kicking in real-time. +% +Chuck Norris can win a game of Connect Four in only three moves. +% +What was going through the minds of all of Chuck Norris' victims before they died? His shoe. +% +Chuck Norris is the only man to ever defeat a brick wall in a game of tennis. +% +Police label anyone attacking Chuck Norris as a Code 45-11.... a suicide. +% +Chuck Norris doesn't churn butter. He roundhouse kicks the cows and the butter comes straight out. +% +Chuck Norris doesn’t wash his clothes, he disembowels them. +% +A Handicapped parking sign does not signify that this spot is for handicapped people. It is actually in fact a warning, that the spot belongs to Chuck Norris and that you will be handicapped if you park there. +% +Chuck Norris will attain statehood in 2009. His state flower will be the Magnolia. +% +Someone once videotaped Chuck Norris getting pissed off. It was called Walker: Texas Chain Saw Massacre. +% +Chuck Norris originally appeared in the "Street Fighter II" video game, but was removed by Beta Testers because every button caused him to do a roundhouse kick. When asked bout this "glitch," Norris replied, "That's no glitch." +% +Fool me once, shame on you. Fool Chuck Norris once and he will roundhouse you in the face. +% +Once upon a time, Chuck Norris found himself in a town called Shit Creek.....He opened a Paddle Store. +% +Chuck Norris Can Power Solar Panels. At Night. +% +When Betty White gets angry, she turns into the Hulk. When Valerie Bertinelli gets mad, she turns into Chuck Norris. +% +Chuck Norris is so hard, he uses diamonds as stress balls. +% +Chuck Norris can roundhouse kick someone through a window without breaking the glass +% +Chuck Norris. Enough said. +% +The letters in Chuck Norris cannot be unscrambled. +% +Chuck Norris once taught a class of martial arts.Unfortunately Chuck had forgiven to take elephant tranquilizers and killed every one just by saluting +% +Chuck Norris was heard in a soundproof room! +% +Chuck Norris can see in 3D with just one eye. +% +Chuck Norris owns all number 1 pencils. +% +Staring at Chuck Norris for extended periods of time without proper eye protection will cause blindess, and possibly foot sized brusies on the face. +% +Chuck Norris doesn’t brew up tea. He sucks the bag. +% +When the Boogeyman goes to sleep every night, he checks his closet for Chuck Norris. +% +Chuck Norris doesn't read books. He stares them down until he gets the information he wants. +% +There is no theory of evolution. Just a list of creatures Chuck Norris has allowed to live. +% +Outer space exists because it's afraid to be on the same planet with Chuck Norris. +% +Chuck Norris does not sleep. He waits. +% +Chuck Norris is currently suing NBC, claiming Law and Order are trademarked names for his left and right legs. +% +Chuck Norris is the reason why Waldo is hiding. +% +Chuck Norris counted to infinity - twice. +% +There is no chin behind Chuck Norris’ beard. There is only another fist. +% +When Chuck Norris does a pushup, he isn't lifting himself up, he's pushing the Earth down. +% +Chuck Norris is so fast, he can run around the world and punch himself in the back of the head. +% +Chuck Norris' hand is the only hand that can beat a Royal Flush. +% +Chuck Norris can lead a horse to water AND make it drink. +% +Chuck Norris doesn’t wear a watch. HE decides what time it is. +% +Chuck Norris can slam a revolving door. +% +Chuck Norris does not get frostbite. Chuck Norris bites frost. +% +Remember the Soviet Union? They decided to quit after watching a DeltaForce marathon on Satellite TV. +% +Contrary to popular belief, America is not a democracy, it is a Chucktatorship. +% +If you spell Chuck Norris in Scrabble, you win. Forever. +% +Guns don't kill people. Chuck Norris kills people. +% +There is no theory of evolution. Just a list of animals Chuck Norris allows to live. +% +The chief export of Chuck Norris is Pain. +% +Chuck Norris has two speeds. Walk, and Kill. +% +The leading causes of death in the United States are: 1. Heart Disease 2. Chuck Norris 3. Cancer. +% +Chuck Norris drives an ice cream truck covered in human skulls. +% +Chuck Norris is my Homeboy. +% +Chuck Norris doesn't go hunting.... CHUCK NORRIS GOES KILLING. +% +Chuck Norris uses pepper spray to spice up his steaks. +% +Chuck Norris once roundhouse kicked someone so hard that his foot broke the speed of light, went back in time, and killed Amelia Earhart while she was flying over the Pacific Ocean. +% +Crop circles are Chuck Norris' way of telling the world that sometimes corn needs to lie down. +% +Chuck Norris is ten feet tall, weighs two-tons, breathes fire, and could eat a hammer and take a shotgun blast standing. +% +The Great Wall of China was originally created to keep Chuck Norris out. It failed miserably. +% +Contrary to popular belief, Chuck Norris, not the box jellyfish of northern Australia, is the most venomous creature on earth. +% +Most people have 23 pairs of chromosomes. Chuck Norris has 72... and they're all poisonous. +% +If you ask Chuck Norris what time it is, he always says, "Two seconds 'til." After you ask, "Two seconds 'til what?" he roundhouse kicks you in the face. +% +When Chuck Norris sends in his taxes, he sends blank forms and includes only a picture of himself, crouched and ready to attack. Chuck Norris has not had to pay taxes, ever. +% +The quickest way to a man's heart is with Chuck Norris' fist. +% +Chuck Norris invented Kentucky Fried Chicken's famous secret recipe, with eleven herbs and spices. But nobody ever mentions the twelfth ingredient: Fear. +% +CNN was originally created as the "Chuck Norris Network" to update Americans with on-the-spot ass kicking in real-time. +% +Chuck Norris can win a game of Connect Four in only three moves. +% +What was going through the minds of all of Chuck Norris' victims before they died? His shoe. +% +Chuck Norris is the only man to ever defeat a brick wall in a game of tennis. +% +Police label anyone attacking Chuck Norris as a Code 45-11.... a suicide. +% +Chuck Norris doesn't churn butter. He roundhouse kicks the cows and the butter comes straight out. +% +Chuck Norris doesn’t wash his clothes, he disembowels them. +% +A Handicapped parking sign does not signify that this spot is for handicapped people. It is actually in fact a warning, that the spot belongs to Chuck Norris and that you will be handicapped if you park there. +% +Chuck Norris will attain statehood in 2009. His state flower will be the Magnolia. +% +Someone once videotaped Chuck Norris getting pissed off. It was called Walker: Texas Chain Saw Massacre. +% +Chuck Norris originally appeared in the "Street Fighter II" video game, but was removed by Beta Testers because every button caused him to do a roundhouse kick. When asked bout this "glitch," Norris replied, "That's no glitch." +% +Fool me once, shame on you. Fool Chuck Norris once and he will roundhouse you in the face. +% +They say death by a 1000 lashes was the most painful way to die, that was before they got roundhouse kicked in the face by Chuck Norris +% +Chuck Norris made a statue bleed. +% +Dead bodies were found of people that are still alive. These people will cross Chuck Norris in the future and will be round-house kicked back in time. +% +The reason why batman only comes out at night is because he's afraid he might encounter Chuck Norris in the Morning and afternoon. +% +The kids said when Chuck was eating Trix cereal ´´silly Chuck, Trix are for kids´´...what happened next?..............................Darfur happened. +% +Chuck Norris can roundhouse-kick round houses into squares. +% +Chuck Norris is allowed two carry-ons. +% +Chuck Norris can divide by zero. +% +Chuck Norris does not have a cell phone because he hears everything +% +Chuck Norris isn't appropriate...appropriate isn't Chuck Norris +% +Earth's rotation is purely governed by the direction that Chuck Norris is walking. +% +Chuck Norris drowned a man ON LAND. +% +The Jone's are trying to keep up with Chuck Norris +% +When the Boogeyman goes to sleep every night, he checks his closet for Chuck Norris. +% +Chuck Norris doesn't read books. He stares them down until he gets the information he wants. +% +There is no theory of evolution. Just a list of creatures Chuck Norris has allowed to live. +% +Outer space exists because it's afraid to be on the same planet with Chuck Norris. +% +Chuck Norris does not sleep. He waits. +% +Chuck Norris is currently suing NBC, claiming Law and Order are trademarked names for his left and right legs. +% +Chuck Norris is the reason why Waldo is hiding. +% +Chuck Norris counted to infinity - twice. +% +There is no chin behind Chuck Norris’ beard. There is only another fist. +% +When Chuck Norris does a pushup, he isn't lifting himself up, he's pushing the Earth down. +% +Chuck Norris is so fast, he can run around the world and punch himself in the back of the head. +% +Chuck Norris' hand is the only hand that can beat a Royal Flush. +% +Chuck Norris can lead a horse to water AND make it drink. +% +Chuck Norris doesn’t wear a watch. HE decides what time it is. +% +Chuck Norris can slam a revolving door. +% +Chuck Norris does not get frostbite. Chuck Norris bites frost. +% +Remember the Soviet Union? They decided to quit after watching a DeltaForce marathon on Satellite TV. +% +Contrary to popular belief, America is not a democracy, it is a Chucktatorship. +% +If you spell Chuck Norris in Scrabble, you win. Forever. +% +Guns don't kill people. Chuck Norris kills people. +% +There is no theory of evolution. Just a list of animals Chuck Norris allows to live. +% +The chief export of Chuck Norris is Pain. +% +Chuck Norris has two speeds. Walk, and Kill. +% +The leading causes of death in the United States are: 1. Heart Disease 2. Chuck Norris 3. Cancer. +% +Chuck Norris drives an ice cream truck covered in human skulls. +% +Chuck Norris is my Homeboy. +% +Chuck Norris doesn't go hunting.... CHUCK NORRIS GOES KILLING. +% +Chuck Norris uses pepper spray to spice up his steaks. +% +Chuck Norris once roundhouse kicked someone so hard that his foot broke the speed of light, went back in time, and killed Amelia Earhart while she was flying over the Pacific Ocean. +% +Crop circles are Chuck Norris' way of telling the world that sometimes corn needs to lie down. +% +Chuck Norris is ten feet tall, weighs two-tons, breathes fire, and could eat a hammer and take a shotgun blast standing. +% +The Great Wall of China was originally created to keep Chuck Norris out. It failed miserably. +% +Contrary to popular belief, Chuck Norris, not the box jellyfish of northern Australia, is the most venomous creature on earth. +% +Most people have 23 pairs of chromosomes. Chuck Norris has 72... and they're all poisonous. +% +If you ask Chuck Norris what time it is, he always says, "Two seconds 'til." After you ask, "Two seconds 'til what?" he roundhouse kicks you in the face. +% +When Chuck Norris sends in his taxes, he sends blank forms and includes only a picture of himself, crouched and ready to attack. Chuck Norris has not had to pay taxes, ever. +% +The quickest way to a man's heart is with Chuck Norris' fist. +% +Chuck Norris invented Kentucky Fried Chicken's famous secret recipe, with eleven herbs and spices. But nobody ever mentions the twelfth ingredient: Fear. +% +CNN was originally created as the "Chuck Norris Network" to update Americans with on-the-spot ass kicking in real-time. +% +Chuck Norris can win a game of Connect Four in only three moves. +% +What was going through the minds of all of Chuck Norris' victims before they died? His shoe. +% +Chuck Norris is the only man to ever defeat a brick wall in a game of tennis. +% +Police label anyone attacking Chuck Norris as a Code 45-11.... a suicide. +% +Chuck Norris doesn't churn butter. He roundhouse kicks the cows and the butter comes straight out. +% +Chuck Norris doesn’t wash his clothes, he disembowels them. +% +A Handicapped parking sign does not signify that this spot is for handicapped people. It is actually in fact a warning, that the spot belongs to Chuck Norris and that you will be handicapped if you park there. +% +Chuck Norris will attain statehood in 2009. His state flower will be the Magnolia. +% +Someone once videotaped Chuck Norris getting pissed off. It was called Walker: Texas Chain Saw Massacre. +% +Chuck Norris originally appeared in the "Street Fighter II" video game, but was removed by Beta Testers because every button caused him to do a roundhouse kick. When asked bout this "glitch," Norris replied, "That's no glitch." +% +Fool me once, shame on you. Fool Chuck Norris once and he will roundhouse you in the face. +% +Chuck Norris bowled a 301 after constructing another pin out of his beard hair +% +The only reason that USA lost the 2011 world cup to Japan is because Chuck Norris wasn't there. +% +Unlike Jack Bauer, Chuck Norris doesn't need bullets. A quick roundhouse to the face kills twice as fast. +% +There is no such thing as global warming. Chuck Norris was cold, so he turned the sun up. +% +Chuck Norris' dog pick up after him. +% +Jedis are now taught to use the "Chuck" +% +Chuck Norris dosent carry a list. He always knows what to do. +% +When Chuck Norris performs a roundhouse kick, he's actually measuring the circumference of the universe. +% +Walker: Texas Ranger went into syndication before the first episode was shot. +% +Chuck Norris doesn't throw up if he drinks too much. Chuck Norris throws down! +% +"Walker Texas Ranger: The Movie 3-D" was considered by Warner Brothers; however the technology to create the visual effects will never be possible. +% +When Chuck Norris creates a login, it tells him "password not strong enough", he types in his name and it tells him "password too strong." +% +Chuck Norris isn't allowed at the zoo because when he's there the animals are terriefied to come out their cages +% +When the Boogeyman goes to sleep every night, he checks his closet for Chuck Norris. +% +Chuck Norris doesn't read books. He stares them down until he gets the information he wants. +% +There is no theory of evolution. Just a list of creatures Chuck Norris has allowed to live. +% +Outer space exists because it's afraid to be on the same planet with Chuck Norris. +% +Chuck Norris does not sleep. He waits. +% +Chuck Norris is currently suing NBC, claiming Law and Order are trademarked names for his left and right legs. +% +Chuck Norris is the reason why Waldo is hiding. +% +Chuck Norris counted to infinity - twice. +% +There is no chin behind Chuck Norris’ beard. There is only another fist. +% +When Chuck Norris does a pushup, he isn't lifting himself up, he's pushing the Earth down. +% +Chuck Norris is so fast, he can run around the world and punch himself in the back of the head. +% +Chuck Norris' hand is the only hand that can beat a Royal Flush. +% +Chuck Norris can lead a horse to water AND make it drink. +% +Chuck Norris doesn’t wear a watch. HE decides what time it is. +% +Chuck Norris can slam a revolving door. +% +Chuck Norris does not get frostbite. Chuck Norris bites frost. +% +Remember the Soviet Union? They decided to quit after watching a DeltaForce marathon on Satellite TV. +% +Contrary to popular belief, America is not a democracy, it is a Chucktatorship. +% +If you spell Chuck Norris in Scrabble, you win. Forever. +% +Guns don't kill people. Chuck Norris kills people. +% +There is no theory of evolution. Just a list of animals Chuck Norris allows to live. +% +The chief export of Chuck Norris is Pain. +% +Chuck Norris has two speeds. Walk, and Kill. +% +The leading causes of death in the United States are: 1. Heart Disease 2. Chuck Norris 3. Cancer. +% +Chuck Norris drives an ice cream truck covered in human skulls. +% +Chuck Norris is my Homeboy. +% +Chuck Norris doesn't go hunting.... CHUCK NORRIS GOES KILLING. +% +Chuck Norris uses pepper spray to spice up his steaks. +% +Chuck Norris once roundhouse kicked someone so hard that his foot broke the speed of light, went back in time, and killed Amelia Earhart while she was flying over the Pacific Ocean. +% +Crop circles are Chuck Norris' way of telling the world that sometimes corn needs to lie down. +% +Chuck Norris is ten feet tall, weighs two-tons, breathes fire, and could eat a hammer and take a shotgun blast standing. +% +The Great Wall of China was originally created to keep Chuck Norris out. It failed miserably. +% +Contrary to popular belief, Chuck Norris, not the box jellyfish of northern Australia, is the most venomous creature on earth. +% +Most people have 23 pairs of chromosomes. Chuck Norris has 72... and they're all poisonous. +% +If you ask Chuck Norris what time it is, he always says, "Two seconds 'til." After you ask, "Two seconds 'til what?" he roundhouse kicks you in the face. +% +When Chuck Norris sends in his taxes, he sends blank forms and includes only a picture of himself, crouched and ready to attack. Chuck Norris has not had to pay taxes, ever. +% +The quickest way to a man's heart is with Chuck Norris' fist. +% +Chuck Norris invented Kentucky Fried Chicken's famous secret recipe, with eleven herbs and spices. But nobody ever mentions the twelfth ingredient: Fear. +% +CNN was originally created as the "Chuck Norris Network" to update Americans with on-the-spot ass kicking in real-time. +% +Chuck Norris can win a game of Connect Four in only three moves. +% +What was going through the minds of all of Chuck Norris' victims before they died? His shoe. +% +Chuck Norris is the only man to ever defeat a brick wall in a game of tennis. +% +Police label anyone attacking Chuck Norris as a Code 45-11.... a suicide. +% +Chuck Norris doesn't churn butter. He roundhouse kicks the cows and the butter comes straight out. +% +Chuck Norris doesn’t wash his clothes, he disembowels them. +% +A Handicapped parking sign does not signify that this spot is for handicapped people. It is actually in fact a warning, that the spot belongs to Chuck Norris and that you will be handicapped if you park there. +% +Chuck Norris will attain statehood in 2009. His state flower will be the Magnolia. +% +Someone once videotaped Chuck Norris getting pissed off. It was called Walker: Texas Chain Saw Massacre. +% +Chuck Norris originally appeared in the "Street Fighter II" video game, but was removed by Beta Testers because every button caused him to do a roundhouse kick. When asked bout this "glitch," Norris replied, "That's no glitch." +% +Fool me once, shame on you. Fool Chuck Norris once and he will roundhouse you in the face. +% +Aliens fear that Chuck Norris might abduct them. +% +Chuck Norris splattered tiger blood and Adonis' dna on Charlie Sheen with 1 roundhouse kick! +% +How much wood could a woodchuck chuck if a woodchuck could chuck wood? No woodchuck could chuck Chuck's wood! +% +The sun only rises every morning because Chuck Norris allows it to. +% +Chuck Norris can do a regime change with a roundhouse kick. +% +Chuck Norris CAN spell with an I before E even after C. +% +Ghosts can see Chuck Norris +% +The answer to life, the universe and everything isnt 42. It's Chuck Norris. +% +When Chuck Norris pokes the Pillsbury Doughboy, it's not a laughing matter. +% +Chuck Norris once thought he was wrong. He was, however, mistaken. +% +Ever wonder what really happened to the dinosaurs? They all dug their own graves when they heard Chuck Norris was coming +% +"The wind cries Chuck Norris" +% +Chuck Norris doesn't need a bulletproof vest. He catches them with his bare hands. +% +When the Boogeyman goes to sleep every night, he checks his closet for Chuck Norris. +% +Chuck Norris doesn't read books. He stares them down until he gets the information he wants. +% +There is no theory of evolution. Just a list of creatures Chuck Norris has allowed to live. +% +Outer space exists because it's afraid to be on the same planet with Chuck Norris. +% +Chuck Norris does not sleep. He waits. +% +Chuck Norris is currently suing NBC, claiming Law and Order are trademarked names for his left and right legs. +% +Chuck Norris is the reason why Waldo is hiding. +% +Chuck Norris counted to infinity - twice. +% +There is no chin behind Chuck Norris’ beard. There is only another fist. +% +When Chuck Norris does a pushup, he isn't lifting himself up, he's pushing the Earth down. +% +Chuck Norris is so fast, he can run around the world and punch himself in the back of the head. +% +Chuck Norris' hand is the only hand that can beat a Royal Flush. +% +Chuck Norris can lead a horse to water AND make it drink. +% +Chuck Norris doesn’t wear a watch. HE decides what time it is. +% +Chuck Norris can slam a revolving door. +% +Chuck Norris does not get frostbite. Chuck Norris bites frost. +% +Remember the Soviet Union? They decided to quit after watching a DeltaForce marathon on Satellite TV. +% +Contrary to popular belief, America is not a democracy, it is a Chucktatorship. +% +If you spell Chuck Norris in Scrabble, you win. Forever. +% +Guns don't kill people. Chuck Norris kills people. +% +There is no theory of evolution. Just a list of animals Chuck Norris allows to live. +% +The chief export of Chuck Norris is Pain. +% +Chuck Norris has two speeds. Walk, and Kill. +% +The leading causes of death in the United States are: 1. Heart Disease 2. Chuck Norris 3. Cancer. +% +Chuck Norris drives an ice cream truck covered in human skulls. +% +Chuck Norris is my Homeboy. +% +Chuck Norris doesn't go hunting.... CHUCK NORRIS GOES KILLING. +% +Chuck Norris uses pepper spray to spice up his steaks. +% +Chuck Norris once roundhouse kicked someone so hard that his foot broke the speed of light, went back in time, and killed Amelia Earhart while she was flying over the Pacific Ocean. +% +Crop circles are Chuck Norris' way of telling the world that sometimes corn needs to lie down. +% +Chuck Norris is ten feet tall, weighs two-tons, breathes fire, and could eat a hammer and take a shotgun blast standing. +% +The Great Wall of China was originally created to keep Chuck Norris out. It failed miserably. +% +Contrary to popular belief, Chuck Norris, not the box jellyfish of northern Australia, is the most venomous creature on earth. +% +Most people have 23 pairs of chromosomes. Chuck Norris has 72... and they're all poisonous. +% +If you ask Chuck Norris what time it is, he always says, "Two seconds 'til." After you ask, "Two seconds 'til what?" he roundhouse kicks you in the face. +% +When Chuck Norris sends in his taxes, he sends blank forms and includes only a picture of himself, crouched and ready to attack. Chuck Norris has not had to pay taxes, ever. +% +The quickest way to a man's heart is with Chuck Norris' fist. +% +Chuck Norris invented Kentucky Fried Chicken's famous secret recipe, with eleven herbs and spices. But nobody ever mentions the twelfth ingredient: Fear. +% +CNN was originally created as the "Chuck Norris Network" to update Americans with on-the-spot ass kicking in real-time. +% +Chuck Norris can win a game of Connect Four in only three moves. +% +What was going through the minds of all of Chuck Norris' victims before they died? His shoe. +% +Chuck Norris is the only man to ever defeat a brick wall in a game of tennis. +% +Police label anyone attacking Chuck Norris as a Code 45-11.... a suicide. +% +Chuck Norris doesn't churn butter. He roundhouse kicks the cows and the butter comes straight out. +% +Chuck Norris doesn’t wash his clothes, he disembowels them. +% +A Handicapped parking sign does not signify that this spot is for handicapped people. It is actually in fact a warning, that the spot belongs to Chuck Norris and that you will be handicapped if you park there. +% +Chuck Norris will attain statehood in 2009. His state flower will be the Magnolia. +% +Someone once videotaped Chuck Norris getting pissed off. It was called Walker: Texas Chain Saw Massacre. +% +Chuck Norris originally appeared in the "Street Fighter II" video game, but was removed by Beta Testers because every button caused him to do a roundhouse kick. When asked bout this "glitch," Norris replied, "That's no glitch." +% +Fool me once, shame on you. Fool Chuck Norris once and he will roundhouse you in the face. +% +Chuck Norris: even Naruto can't believe it +% +Chuck Norris can fit 10 gallons of water in a 5 gallon water bucket +% +Chuck Norris roundhouse kicks people in the face first and asks questions later. +% +Chuck Norris is the only one who can tear a facebook page! +% +Chuck Norris doesn't need air, he is air +% +Chuck Norris once tried to teach a fat, stupid kid Martial Arts. Unsuccessfully. The kid grew up to be Steven Seagal. +% +Achievement Unlocked: Chuck Norris of Death +% +Chuck Norris is the ghost in paranormal activity. +% +Chuck Norris can't get fired by Donald Trump +% +Ozzy Osbourne once accidentally bit the head off a live bat - Chuck Norris once deliberately bit the head off a live pterodactyl. +% +Note to self: Don’t be the cashier to tell Chuck Norris his coupons have expired. +% +Chuck Norris was what Willis was talking about. +% +Chuck Norris is entitiled to his own facts. +% +When the Boogeyman goes to sleep every night, he checks his closet for Chuck Norris. +% +Chuck Norris doesn't read books. He stares them down until he gets the information he wants. +% +There is no theory of evolution. Just a list of creatures Chuck Norris has allowed to live. +% +Outer space exists because it's afraid to be on the same planet with Chuck Norris. +% +Chuck Norris does not sleep. He waits. +% +Chuck Norris is currently suing NBC, claiming Law and Order are trademarked names for his left and right legs. +% +Chuck Norris is the reason why Waldo is hiding. +% +Chuck Norris counted to infinity - twice. +% +There is no chin behind Chuck Norris’ beard. There is only another fist. +% +When Chuck Norris does a pushup, he isn't lifting himself up, he's pushing the Earth down. +% +Chuck Norris is so fast, he can run around the world and punch himself in the back of the head. +% +Chuck Norris' hand is the only hand that can beat a Royal Flush. +% +Chuck Norris can lead a horse to water AND make it drink. +% +Chuck Norris doesn’t wear a watch. HE decides what time it is. +% +Chuck Norris can slam a revolving door. +% +Chuck Norris does not get frostbite. Chuck Norris bites frost. +% +Remember the Soviet Union? They decided to quit after watching a DeltaForce marathon on Satellite TV. +% +Contrary to popular belief, America is not a democracy, it is a Chucktatorship. +% +If you spell Chuck Norris in Scrabble, you win. Forever. +% +Guns don't kill people. Chuck Norris kills people. +% +There is no theory of evolution. Just a list of animals Chuck Norris allows to live. +% +The chief export of Chuck Norris is Pain. +% +Chuck Norris has two speeds. Walk, and Kill. +% +The leading causes of death in the United States are: 1. Heart Disease 2. Chuck Norris 3. Cancer. +% +Chuck Norris drives an ice cream truck covered in human skulls. +% +Chuck Norris is my Homeboy. +% +Chuck Norris doesn't go hunting.... CHUCK NORRIS GOES KILLING. +% +Chuck Norris uses pepper spray to spice up his steaks. +% +Chuck Norris once roundhouse kicked someone so hard that his foot broke the speed of light, went back in time, and killed Amelia Earhart while she was flying over the Pacific Ocean. +% +Crop circles are Chuck Norris' way of telling the world that sometimes corn needs to lie down. +% +Chuck Norris is ten feet tall, weighs two-tons, breathes fire, and could eat a hammer and take a shotgun blast standing. +% +The Great Wall of China was originally created to keep Chuck Norris out. It failed miserably. +% +Contrary to popular belief, Chuck Norris, not the box jellyfish of northern Australia, is the most venomous creature on earth. +% +Most people have 23 pairs of chromosomes. Chuck Norris has 72... and they're all poisonous. +% +If you ask Chuck Norris what time it is, he always says, "Two seconds 'til." After you ask, "Two seconds 'til what?" he roundhouse kicks you in the face. +% +When Chuck Norris sends in his taxes, he sends blank forms and includes only a picture of himself, crouched and ready to attack. Chuck Norris has not had to pay taxes, ever. +% +The quickest way to a man's heart is with Chuck Norris' fist. +% +Chuck Norris invented Kentucky Fried Chicken's famous secret recipe, with eleven herbs and spices. But nobody ever mentions the twelfth ingredient: Fear. +% +CNN was originally created as the "Chuck Norris Network" to update Americans with on-the-spot ass kicking in real-time. +% +Chuck Norris can win a game of Connect Four in only three moves. +% +What was going through the minds of all of Chuck Norris' victims before they died? His shoe. +% +Chuck Norris is the only man to ever defeat a brick wall in a game of tennis. +% +Police label anyone attacking Chuck Norris as a Code 45-11.... a suicide. +% +Chuck Norris doesn't churn butter. He roundhouse kicks the cows and the butter comes straight out. +% +Chuck Norris doesn’t wash his clothes, he disembowels them. +% +A Handicapped parking sign does not signify that this spot is for handicapped people. It is actually in fact a warning, that the spot belongs to Chuck Norris and that you will be handicapped if you park there. +% +Chuck Norris will attain statehood in 2009. His state flower will be the Magnolia. +% +Someone once videotaped Chuck Norris getting pissed off. It was called Walker: Texas Chain Saw Massacre. +% +Chuck Norris originally appeared in the "Street Fighter II" video game, but was removed by Beta Testers because every button caused him to do a roundhouse kick. When asked bout this "glitch," Norris replied, "That's no glitch." +% +Fool me once, shame on you. Fool Chuck Norris once and he will roundhouse you in the face. +% +While visiting the hexagon, Chuck Norris was asked to demonstrate his famous roundhouse kick. Henceforth, it has been known as the Pentagon. +% +When Chuck Norris played the card game War with a friend, France surrendered. +% +If Goliath listened to Chuck Norris he would have won. +% +Chuck Norris can defuse bomb even if he cut the wrong wire +% +Chuck Norris sleeps in Seattle. +% +Chuck Norris shot a man with a knife +% +The dictionary references Chuck Norris several times, he is metioned under Fear, Law, Order and Chucktatorship. +% +Chuck Norris CAN balance the light-switch between ON and OFF. +% +If Chuck was ever captured, he could win a game of Russian Roulette with six bullets in the revolver, he would shoot everyone else! +% +In a rain storm Chuck Norris stays dry. Rain drops are scared to hit him. +% +Chuck Norris is the reason tumbleweeds tumble +% +The Earth was almost destroyed by a 50 km wide asteroid in 1984, but Chuck Norris roundhouse kicked it into the Sun. +% +Chuck Norris can terminate a repeating decimal. +% +When the Boogeyman goes to sleep every night, he checks his closet for Chuck Norris. +% +Chuck Norris doesn't read books. He stares them down until he gets the information he wants. +% +There is no theory of evolution. Just a list of creatures Chuck Norris has allowed to live. +% +Outer space exists because it's afraid to be on the same planet with Chuck Norris. +% +Chuck Norris does not sleep. He waits. +% +Chuck Norris is currently suing NBC, claiming Law and Order are trademarked names for his left and right legs. +% +Chuck Norris is the reason why Waldo is hiding. +% +Chuck Norris counted to infinity - twice. +% +There is no chin behind Chuck Norris’ beard. There is only another fist. +% +When Chuck Norris does a pushup, he isn't lifting himself up, he's pushing the Earth down. +% +Chuck Norris is so fast, he can run around the world and punch himself in the back of the head. +% +Chuck Norris' hand is the only hand that can beat a Royal Flush. +% +Chuck Norris can lead a horse to water AND make it drink. +% +Chuck Norris doesn’t wear a watch. HE decides what time it is. +% +Chuck Norris can slam a revolving door. +% +Chuck Norris does not get frostbite. Chuck Norris bites frost. +% +Remember the Soviet Union? They decided to quit after watching a DeltaForce marathon on Satellite TV. +% +Contrary to popular belief, America is not a democracy, it is a Chucktatorship. +% +If you spell Chuck Norris in Scrabble, you win. Forever. +% +Guns don't kill people. Chuck Norris kills people. +% +There is no theory of evolution. Just a list of animals Chuck Norris allows to live. +% +The chief export of Chuck Norris is Pain. +% +Chuck Norris has two speeds. Walk, and Kill. +% +The leading causes of death in the United States are: 1. Heart Disease 2. Chuck Norris 3. Cancer. +% +Chuck Norris drives an ice cream truck covered in human skulls. +% +Chuck Norris is my Homeboy. +% +Chuck Norris doesn't go hunting.... CHUCK NORRIS GOES KILLING. +% +Chuck Norris uses pepper spray to spice up his steaks. +% +Chuck Norris once roundhouse kicked someone so hard that his foot broke the speed of light, went back in time, and killed Amelia Earhart while she was flying over the Pacific Ocean. +% +Crop circles are Chuck Norris' way of telling the world that sometimes corn needs to lie down. +% +Chuck Norris is ten feet tall, weighs two-tons, breathes fire, and could eat a hammer and take a shotgun blast standing. +% +The Great Wall of China was originally created to keep Chuck Norris out. It failed miserably. +% +Contrary to popular belief, Chuck Norris, not the box jellyfish of northern Australia, is the most venomous creature on earth. +% +Most people have 23 pairs of chromosomes. Chuck Norris has 72... and they're all poisonous. +% +If you ask Chuck Norris what time it is, he always says, "Two seconds 'til." After you ask, "Two seconds 'til what?" he roundhouse kicks you in the face. +% +When Chuck Norris sends in his taxes, he sends blank forms and includes only a picture of himself, crouched and ready to attack. Chuck Norris has not had to pay taxes, ever. +% +The quickest way to a man's heart is with Chuck Norris' fist. +% +Chuck Norris invented Kentucky Fried Chicken's famous secret recipe, with eleven herbs and spices. But nobody ever mentions the twelfth ingredient: Fear. +% +CNN was originally created as the "Chuck Norris Network" to update Americans with on-the-spot ass kicking in real-time. +% +Chuck Norris can win a game of Connect Four in only three moves. +% +What was going through the minds of all of Chuck Norris' victims before they died? His shoe. +% +Chuck Norris is the only man to ever defeat a brick wall in a game of tennis. +% +Police label anyone attacking Chuck Norris as a Code 45-11.... a suicide. +% +Chuck Norris doesn't churn butter. He roundhouse kicks the cows and the butter comes straight out. +% +Chuck Norris doesn’t wash his clothes, he disembowels them. +% +A Handicapped parking sign does not signify that this spot is for handicapped people. It is actually in fact a warning, that the spot belongs to Chuck Norris and that you will be handicapped if you park there. +% +Chuck Norris will attain statehood in 2009. His state flower will be the Magnolia. +% +Someone once videotaped Chuck Norris getting pissed off. It was called Walker: Texas Chain Saw Massacre. +% +Chuck Norris originally appeared in the "Street Fighter II" video game, but was removed by Beta Testers because every button caused him to do a roundhouse kick. When asked bout this "glitch," Norris replied, "That's no glitch." +% +Fool me once, shame on you. Fool Chuck Norris once and he will roundhouse you in the face. +% +Chuck Norris doesn't look for fun. The fun looks for Chuck Norris. +% +Chuck Norris starts his day with 6 live chickens two cows, three pigs and a boiling hot cup of pure fury +% +The only word that rhymes with orange is Chuck Norris +% +Everyone is so scared of Chuck Norris that they kiss his arse by writing these facts, too right they should +% +gmail@chucknorris.com +% +Chuck Norris play's Texas hold em with Zeus, every second Wednesday of the month +% +Chuck Norris has killed the Dead Sea +% +On the keyboard there is no control button because Chuck Norris is always in control. +% +The truth hurts dosen't it, Chuck Norris' truth kills. +% +Chuck Norris sent a BBM to an iphone. +% +When Presidents speak, their nation listens. When Chuck Norris blinks, the whole World listens. +% +Chuck Norris once cried just to see what it was like. The end result was the creation of life. +% +Chuck Norris is the reason that the world will end in 2012. He was getting bored with the Earth +% +When the Boogeyman goes to sleep every night, he checks his closet for Chuck Norris. +% +Chuck Norris doesn't read books. He stares them down until he gets the information he wants. +% +There is no theory of evolution. Just a list of creatures Chuck Norris has allowed to live. +% +Outer space exists because it's afraid to be on the same planet with Chuck Norris. +% +Chuck Norris does not sleep. He waits. +% +Chuck Norris is currently suing NBC, claiming Law and Order are trademarked names for his left and right legs. +% +Chuck Norris is the reason why Waldo is hiding. +% +Chuck Norris counted to infinity - twice. +% +There is no chin behind Chuck Norris’ beard. There is only another fist. +% +When Chuck Norris does a pushup, he isn't lifting himself up, he's pushing the Earth down. +% +Chuck Norris is so fast, he can run around the world and punch himself in the back of the head. +% +Chuck Norris' hand is the only hand that can beat a Royal Flush. +% +Chuck Norris can lead a horse to water AND make it drink. +% +Chuck Norris doesn’t wear a watch. HE decides what time it is. +% +Chuck Norris can slam a revolving door. +% +Chuck Norris does not get frostbite. Chuck Norris bites frost. +% +Remember the Soviet Union? They decided to quit after watching a DeltaForce marathon on Satellite TV. +% +Contrary to popular belief, America is not a democracy, it is a Chucktatorship. +% +If you spell Chuck Norris in Scrabble, you win. Forever. +% +Guns don't kill people. Chuck Norris kills people. +% +There is no theory of evolution. Just a list of animals Chuck Norris allows to live. +% +The chief export of Chuck Norris is Pain. +% +Chuck Norris has two speeds. Walk, and Kill. +% +The leading causes of death in the United States are: 1. Heart Disease 2. Chuck Norris 3. Cancer. +% +Chuck Norris drives an ice cream truck covered in human skulls. +% +Chuck Norris is my Homeboy. +% +Chuck Norris doesn't go hunting.... CHUCK NORRIS GOES KILLING. +% +Chuck Norris uses pepper spray to spice up his steaks. +% +Chuck Norris once roundhouse kicked someone so hard that his foot broke the speed of light, went back in time, and killed Amelia Earhart while she was flying over the Pacific Ocean. +% +Crop circles are Chuck Norris' way of telling the world that sometimes corn needs to lie down. +% +Chuck Norris is ten feet tall, weighs two-tons, breathes fire, and could eat a hammer and take a shotgun blast standing. +% +The Great Wall of China was originally created to keep Chuck Norris out. It failed miserably. +% +Contrary to popular belief, Chuck Norris, not the box jellyfish of northern Australia, is the most venomous creature on earth. +% +Most people have 23 pairs of chromosomes. Chuck Norris has 72... and they're all poisonous. +% +If you ask Chuck Norris what time it is, he always says, "Two seconds 'til." After you ask, "Two seconds 'til what?" he roundhouse kicks you in the face. +% +When Chuck Norris sends in his taxes, he sends blank forms and includes only a picture of himself, crouched and ready to attack. Chuck Norris has not had to pay taxes, ever. +% +The quickest way to a man's heart is with Chuck Norris' fist. +% +Chuck Norris invented Kentucky Fried Chicken's famous secret recipe, with eleven herbs and spices. But nobody ever mentions the twelfth ingredient: Fear. +% +CNN was originally created as the "Chuck Norris Network" to update Americans with on-the-spot ass kicking in real-time. +% +Chuck Norris can win a game of Connect Four in only three moves. +% +What was going through the minds of all of Chuck Norris' victims before they died? His shoe. +% +Chuck Norris is the only man to ever defeat a brick wall in a game of tennis. +% +Police label anyone attacking Chuck Norris as a Code 45-11.... a suicide. +% +Chuck Norris doesn't churn butter. He roundhouse kicks the cows and the butter comes straight out. +% +Chuck Norris doesn’t wash his clothes, he disembowels them. +% +A Handicapped parking sign does not signify that this spot is for handicapped people. It is actually in fact a warning, that the spot belongs to Chuck Norris and that you will be handicapped if you park there. +% +Chuck Norris will attain statehood in 2009. His state flower will be the Magnolia. +% +Someone once videotaped Chuck Norris getting pissed off. It was called Walker: Texas Chain Saw Massacre. +% +Chuck Norris originally appeared in the "Street Fighter II" video game, but was removed by Beta Testers because every button caused him to do a roundhouse kick. When asked bout this "glitch," Norris replied, "That's no glitch." +% +Fool me once, shame on you. Fool Chuck Norris once and he will roundhouse you in the face. +% +Only Chuck Norris is stronger than an Altoid. +% +Chuck Norris has a battlecruiser AND a car. +% +Chuck Norris burnt a fire proof vest, UNDERWATER! +% +Chuck Norris was once turned down for American Idol. When Simon was questioned about it, he replied "I'm retiring after this season". I wonder why? +% +Chuck Norris doesn't cheat death, he beats it fair and square. +% +When Chuck Norris roundhouse-kicks you HE decides when you will feel the impact . +% +Chuck Norris made the big bang just by clicking his fingers +% +Trick me once, shame on you, trick Chuck Norris.....rest in peace. +% +Chuck Norris doesn't fight. He gives motivational seminars to die on their own to avoid a roundhouse kick to the face. +% +This one time at band camp... BAM! Chuck Norris. +% +Chuck Norris protects his body guards. +% +Chuck Norris watched the first steps on the moon... From his summer home on Mars +% +The Earth is made up of two-thirds water and one-third Chuck Norris. +% diff --git a/oh-my-zsh/.oh-my-zsh/plugins/cloudapp/cloudapp.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/cloudapp/cloudapp.plugin.zsh new file mode 100644 index 0000000..99252f6 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/cloudapp/cloudapp.plugin.zsh @@ -0,0 +1,2 @@ +#!/bin/zsh +alias cloudapp=$ZSH/plugins/cloudapp/cloudapp.rb diff --git a/oh-my-zsh/.oh-my-zsh/plugins/cloudapp/cloudapp.rb b/oh-my-zsh/.oh-my-zsh/plugins/cloudapp/cloudapp.rb new file mode 100755 index 0000000..a11cfdb --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/cloudapp/cloudapp.rb @@ -0,0 +1,60 @@ +#!/usr/bin/env ruby +# +# cloudapp +# Zach Holman / @holman +# +# Uploads a file from the command line to CloudApp, drops it into your +# clipboard (on a Mac, at least). +# +# Example: +# +# cloudapp drunk-blake.png +# +# This requires Aaron Russell's cloudapp_api gem: +# +# gem install cloudapp_api +# +# Requires you set your CloudApp credentials in ~/.cloudapp as a simple file of: +# +# email +# password + +require 'rubygems' +begin + require 'cloudapp_api' +rescue LoadError + puts "You need to install cloudapp_api: gem install cloudapp_api" + exit!(1) +end + +config_file = "#{ENV['HOME']}/.cloudapp" +unless File.exist?(config_file) + puts "You need to type your email and password (one per line) into "+ + "`~/.cloudapp`" + exit!(1) +end + +email,password = File.read(config_file).split("\n") + +class HTTParty::Response + # Apparently HTTPOK.ok? IS NOT OKAY WTFFFFFFFFFFUUUUUUUUUUUUUU + # LETS MONKEY PATCH IT I FEEL OKAY ABOUT IT + def ok? ; true end +end + +if ARGV[0].nil? + puts "You need to specify a file to upload." + exit!(1) +end + +CloudApp.authenticate(email,password) +url = CloudApp::Item.create(:upload, {:file => ARGV[0]}).url + +# Say it for good measure. +puts "Uploaded to #{url}." + +# Get the embed link. +url = "#{url}/#{ARGV[0].split('/').last}" + +# Copy it to your (Mac's) clipboard. +`echo '#{url}' | tr -d "\n" | pbcopy` diff --git a/oh-my-zsh/.oh-my-zsh/plugins/cloudfoundry/README.md b/oh-my-zsh/.oh-my-zsh/plugins/cloudfoundry/README.md new file mode 100644 index 0000000..89dd9d1 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/cloudfoundry/README.md @@ -0,0 +1,58 @@ +# Cloudfoundry Plugin + +This plugin is intended to offer a few simple aliases for regular users of the [Cloud Foundry Cli][1]. Most are just simple aliases that will save a bit of typing. Others include mini functions and or accept parameters. Take a look at the table below for details. + +| Alias | Command | Description | +|----------|-----------------------------|--------------------------------------------------------------------------| +| cfl | `cf login` | Login to Cloud Foundry | +| cft | `cf target` | Target the cli at a specific Org/Space in Cloud Foundry | +| cfa | `cf apps` | List all applications in the current Org/Space | +| cfs | `cf services` | List all services in the current Org/Space | +| cfm | `cf marketplace` | List the services available in the Marketplace | +| cfp | `cf push` | Push your application code to Cloud Foundry | +| cfcs | `cf create-service` | Create a service based on a Marketplace offering | +| cfbs | `cf bind-service` | Bind an application to a service you created | +| cfus | `cf unbind-service` | Unbind a service from an application | +| cfds | `cf delete-service` | Delete a service you no longer have bound | +| cfup | `cf cups` | Create a "user-provided-service" | +| cflg | `cf logs` | Tail the logs of an application (requires ) | +| cfr | `cf routes` | List all the routes in the current Space | +| cfe | `cf env` | Show the environment variables for an application (requires ) | +| cfsh | `cf ssh` | Attach to a running container (requires an etc.) | +| cfsc | `cf scale` | Scale an application (requires an etc.) | +| cfev | `cf events` | Show the application events (requires ) | +| cfdor | `cf delete-orphaned-routes` | Delete routes that are no longer bound to applications | +| cfbpk | `cf buildpacks` | List the available buildpacks | +| cfdm | `cf domains` | List the domains associates with this Cloud Foundry foundation | +| cfsp | `cf spaces` | List all the Spaces in the current Org | +| cfap | `cf app` | Show the details of a deployed application (requires ) | +| cfh. | `export CF_HOME=$PWD/.cf` | Set the current directory as CF_HOME | +| cfh~ | `export CF_HOME=~/.cf` | Set the user's root directory as CF_HOME | +| cfhu | `unset CF_HOME` | Unsets CF_HOME | +| cfpm | `cf push -f` | Push an application using a manifest (requires location) | +| cflr | `cf logs --recent` | Show the recent logs (requires ) | +| cfsrt | `cf start` | Start an application (requires ) | +| cfstp | `cf stop` | Stop an application (requires ) | +| cfstg | `cf restage` | Restage an application (requires ) | +| cfdel | `cf delete` | Delete an application (requires ) | +| cfsrtall | - | Start all apps that are currently in the "Stopped" state | +| cfstpall | - | Stop all apps that are currently in the "Started" state | + +For help and advice on what any of the commands does, consult the built in `cf` help functions as follows:- + +```bash +cf help # List the most popular and commonly used commands +cf help -a # Complete list of all possible commands +cf --help # Help on a specific command including arguments and examples +``` + +Alternatively, seek out the [online documentation][3]. And don't forget, there are loads of great [community plugins for the cf-cli][4] command line tool that can greatly extend its power and usefulness. + +## Contributors + +Contributed to `oh_my_zsh` by [benwilcock][2]. + +[1]: https://docs.cloudfoundry.org/cf-cli/install-go-cli.html +[2]: https://github.com/benwilcock +[3]: https://docs.cloudfoundry.org/cf-cli/getting-started.html +[4]: https://plugins.cloudfoundry.org/ diff --git a/oh-my-zsh/.oh-my-zsh/plugins/cloudfoundry/cloudfoundry.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/cloudfoundry/cloudfoundry.plugin.zsh new file mode 100644 index 0000000..b671578 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/cloudfoundry/cloudfoundry.plugin.zsh @@ -0,0 +1,34 @@ +# Some Useful CloudFoundry Aliases & Functions +alias cfl="cf login" +alias cft="cf target" +alias cfa="cf apps" +alias cfs="cf services" +alias cfm="cf marketplace" +alias cfp="cf push" +alias cfcs="cf create-service" +alias cfbs="cf bind-service" +alias cfus="cf unbind-service" +alias cfds="cf delete-service" +alias cfup="cf cups" +alias cflg="cf logs" +alias cfr="cf routes" +alias cfe="cf env" +alias cfsh="cf ssh" +alias cfsc="cf scale" +alias cfev="cf events" +alias cfdor="cf delete-orphaned-routes" +alias cfbpk="cf buildpacks" +alias cfdm="cf domains" +alias cfsp="cf spaces" +function cfap() { cf app $1 } +function cfh.() { export CF_HOME=$PWD/.cf } +function cfh~() { export CF_HOME=~/.cf } +function cfhu() { unset CF_HOME } +function cfpm() { cf push -f $1 } +function cflr() { cf logs $1 --recent } +function cfsrt() { cf start $1 } +function cfstp() { cf stop $1 } +function cfstg() { cf restage $1 } +function cfdel() { cf delete $1 } +function cfsrtall() {cf apps | awk '/stopped/ { system("cf start " $1)}'} +function cfstpall() {cf apps | awk '/started/ { system("cf stop " $1)}'} diff --git a/oh-my-zsh/.oh-my-zsh/plugins/codeclimate/_codeclimate b/oh-my-zsh/.oh-my-zsh/plugins/codeclimate/_codeclimate new file mode 100644 index 0000000..fd2536a --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/codeclimate/_codeclimate @@ -0,0 +1,82 @@ +#compdef codeclimate + +_codeclimate_all_engines() { + engines_all=(`codeclimate engines:list | tail -n +2 | gawk '{ print $2 }' | gawk -F: '{ print $1 }'`) +} + +_codeclimate_installed_engines() { + _codeclimate_all_engines + + engines_installed=() + + if [ -e .codeclimate.yml ] + then + for engine in $engines_all + do + if grep -q $engine ".codeclimate.yml" + then + engines_installed+=$engine + fi + done + fi +} + +_codeclimate_not_installed_engines() { + _codeclimate_all_engines + + engines_not_installed=() + + if [ -e .codeclimate.yml ] + then + for engine in $engines_all + do + if ! grep -q $engine ".codeclimate.yml" + then + engines_not_installed+=$engine + fi + done + fi +} + +local curcontext="$curcontext" state line ret=1 +local expl +local -a engines_all engines_installed engines_not_installed + +_arguments \ + '1: :->cmds' \ + '*:: :->args' && ret=0 + +case $state in + cmds) + _values "bundle command" \ + "analyze[Analyze all relevant files in the current working directory]" \ + "console[Start an interactive session providing access to the classes within the CLI]" \ + "engines\:disable[Prevents the engine from being used in this project]" \ + "engines\:enable[This engine will be run the next time your project is analyzed]" \ + "engines\:install[Compares the list of engines in your .codeclimate.yml file to those that are currently installed, then installs any missing engines]" \ + "engines\:list[Lists all available engines in the Code Climate Docker Hub]" \ + "engines\:remove[Removes an engine from your .codeclimate.yml file]" \ + "help[Displays a list of commands that can be passed to the Code Climate CLI]" \ + "init[Generates a new .codeclimate.yml file in the current working directory]" \ + "validate-config[Validates the .codeclimate.yml file in the current working directory]" \ + "version[Displays the current version of the Code Climate CLI]" + ret=0 + ;; + args) + case $line[1] in + engines:enable) + _codeclimate_not_installed_engines + _wanted engines_not_installed expl 'not installed engines' compadd -a engines_not_installed ;; + engines:disable|engines:remove) + _codeclimate_installed_engines + _wanted engines_installed expl 'installed engines' compadd -a engines_installed ;; + analyze) + _arguments \ + '-f:Output Format:(text json)' + ret=0 + ;; + esac + ;; +esac + +return ret diff --git a/oh-my-zsh/.oh-my-zsh/plugins/coffee/README.md b/oh-my-zsh/.oh-my-zsh/plugins/coffee/README.md new file mode 100644 index 0000000..d6cd074 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/coffee/README.md @@ -0,0 +1,31 @@ +## Coffeescript Plugin + +This plugin provides aliases for quickly compiling and previewing your +coffeescript code. + +When writing Coffeescript it's very common to want to preview the output of a +certain snippet of code, either because you want to test the output or because +you'd like to execute it in a browser console which doesn't accept Coffeescript. + +Preview the compiled result of your coffeescript with `cf "code"` as per the +following: + +```zsh +$ cf 'if a then b else c' +if (a) { + b; +} else { + c; +} +``` + +Also provides the following aliases: + +* **cfc:** Copies the compiled JS to your clipboard. Very useful when you want + to run the code in a JS console. + +* **cfp:** Compiles from your currently copied clipboard. Useful when you want + to compile large/multi-line snippets + +* **cfpc:** Paste coffeescript from clipboard, compile to JS, then copy the + the result back to clipboard. diff --git a/oh-my-zsh/.oh-my-zsh/plugins/coffee/_coffee b/oh-my-zsh/.oh-my-zsh/plugins/coffee/_coffee new file mode 100644 index 0000000..5e52b30 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/coffee/_coffee @@ -0,0 +1,81 @@ +#compdef coffee +# ------------------------------------------------------------------------------ +# Copyright (c) 2011 Github zsh-users - https://github.com/zsh-users +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are met: +# * Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# * Redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in the +# documentation and/or other materials provided with the distribution. +# * Neither the name of the zsh-users nor the +# names of its contributors may be used to endorse or promote products +# derived from this software without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +# DISCLAIMED. IN NO EVENT SHALL ZSH-USERS BE LIABLE FOR ANY +# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND +# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +# ------------------------------------------------------------------------------ +# Description +# ----------- +# +# Completion script for Coffee.js v0.6.11 (https://coffeescript.org) +# +# ------------------------------------------------------------------------------ +# Authors +# ------- +# +# * Mario Fernandez (https://github.com/sirech) +# * Dong Weiming (https://github.com/dongweiming) +# +# ------------------------------------------------------------------------------ + +local curcontext="$curcontext" state line ret=1 version opts first second third +typeset -A opt_args +version=(${(f)"$(_call_program version $words[1] --version)"}) +version=${${(z)${version[1]}}[3]} +first=$(echo $version|cut -d '.' -f 1) +second=$(echo $version|cut -d '.' -f 2) +third=$(echo $version|cut -d '.' -f 3) +if (( $first < 2 )) && (( $second < 7 )) && (( $third < 3 ));then + opts+=('(-l --lint)'{-l,--lint}'[pipe the compiled JavaScript through JavaScript Lint]' + '(-r --require)'{-r,--require}'[require a library before executing your script]:library') +fi + + +_arguments -C \ + '(- *)'{-h,--help}'[display this help message]' \ + '(- *)'{-v,--version}'[display the version number]' \ + $opts \ + '(-b --bare)'{-b,--bare}'[compile without a top-level function wrapper]' \ + '(-e --eval)'{-e,--eval}'[pass a string from the command line as input]:Inline Script' \ + '(-i --interactive)'{-i,--interactive}'[run an interactive CoffeeScript REPL]' \ + '(-j --join)'{-j,--join}'[concatenate the source CoffeeScript before compiling]:Destination JS file:_files -g "*.js"' \ + '(--nodejs)--nodejs[pass options directly to the "node" binary]' \ + '(-c --compile)'{-c,--compile}'[compile to JavaScript and save as .js files]' \ + '(-o --output)'{-o,--output}'[set the output directory for compiled JavaScript]:Output Directory:_files -/' \ + '(-n -t -p)'{-n,--nodes}'[print out the parse tree that the parser produces]' \ + '(-n -t -p)'{-p,--print}'[print out the compiled JavaScript]' \ + '(-n -t -p)'{-t,--tokens}'[print out the tokens that the lexer/rewriter produce]' \ + '(-s --stdio)'{-s,--stdio}'[listen for and compile scripts over stdio]' \ + '(-w --watch)'{-w,--watch}'[watch scripts for changes and rerun commands]' \ + '*:script or directory:_files' && ret=0 + +return ret + +# Local Variables: +# mode: Shell-Script +# sh-indentation: 2 +# indent-tabs-mode: nil +# sh-basic-offset: 2 +# End: +# vim: ft=zsh sw=2 ts=2 et diff --git a/oh-my-zsh/.oh-my-zsh/plugins/coffee/coffee.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/coffee/coffee.plugin.zsh new file mode 100644 index 0000000..6d1ce5c --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/coffee/coffee.plugin.zsh @@ -0,0 +1,16 @@ +#!/bin/zsh + +# compile a string of coffeescript and print to output +cf () { + coffee -peb "$1" +} +# compile & copy to clipboard +cfc () { + cf "$1" | clipcopy +} + +# compile from clipboard & print +alias cfp='cf "$(clippaste)"' + +# compile from clipboard and copy to clipboard +alias cfpc='cfp | clipcopy' diff --git a/oh-my-zsh/.oh-my-zsh/plugins/colemak/colemak-less b/oh-my-zsh/.oh-my-zsh/plugins/colemak/colemak-less new file mode 100644 index 0000000..e4ca4fa --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/colemak/colemak-less @@ -0,0 +1,6 @@ +n forw-line +e back-line +k repeat-search +\ek repeat-search-all +K reverse-search +\eK reverse-search-all diff --git a/oh-my-zsh/.oh-my-zsh/plugins/colemak/colemak.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/colemak/colemak.plugin.zsh new file mode 100644 index 0000000..cb7cc50 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/colemak/colemak.plugin.zsh @@ -0,0 +1,22 @@ +# ctrl-j newline +bindkey '^n' accept-line +bindkey -a '^n' accept-line + +# another rotation to match qwerty +bindkey -a 'n' down-line-or-history +bindkey -a 'e' up-line-or-history +bindkey -a 'i' vi-forward-char + +# make qwerty +bindkey -a 'k' vi-repeat-search +bindkey -a 'K' vi-rev-repeat-search +bindkey -a 'u' vi-insert +bindkey -a 'U' vi-insert-bol +bindkey -a 'l' vi-undo-change +bindkey -a 'N' vi-join + +# spare +bindkey -a 'j' vi-forward-word-end +bindkey -a 'J' vi-forward-blank-word-end + +lesskey $ZSH/plugins/colemak/colemak-less diff --git a/oh-my-zsh/.oh-my-zsh/plugins/colored-man-pages/colored-man-pages.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/colored-man-pages/colored-man-pages.plugin.zsh new file mode 100644 index 0000000..1bea536 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/colored-man-pages/colored-man-pages.plugin.zsh @@ -0,0 +1,32 @@ +if [[ "$OSTYPE" = solaris* ]] +then + if [[ ! -x "$HOME/bin/nroff" ]] + then + mkdir -p "$HOME/bin" + cat > "$HOME/bin/nroff" < [files]`: colorize the contents of the file (or files, if more than one are provided). If no arguments are passed it will colorize the standard input or stdin. + +Colorize will highlight the content based on the filename extension. If it can't find a syntax-highlighting method for a given extension, it will try to find one by looking at the file contents. If no highlight method is found it will just cat the file normally, without syntax highlighting. + +## Requirements + +You have to install Pygments first: [pygments.org](http://pygments.org/download/) diff --git a/oh-my-zsh/.oh-my-zsh/plugins/colorize/colorize.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/colorize/colorize.plugin.zsh new file mode 100644 index 0000000..8eede9a --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/colorize/colorize.plugin.zsh @@ -0,0 +1,28 @@ +# easier alias to use the plugin +alias ccat='colorize_via_pygmentize' + +colorize_via_pygmentize() { + if ! (( $+commands[pygmentize] )); then + echo "package 'Pygments' is not installed!" + return 1 + fi + + # pygmentize stdin if no arguments passed + if [ $# -eq 0 ]; then + pygmentize -g + return $? + fi + + # guess lexer from file extension, or + # guess it from file contents if unsuccessful + local FNAME lexer + for FNAME in $@ + do + lexer=$(pygmentize -N "$FNAME") + if [[ $lexer != text ]]; then + pygmentize -l "$lexer" "$FNAME" + else + pygmentize -g "$FNAME" + fi + done +} diff --git a/oh-my-zsh/.oh-my-zsh/plugins/command-not-found/README.md b/oh-my-zsh/.oh-my-zsh/plugins/command-not-found/README.md new file mode 100644 index 0000000..df62d1f --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/command-not-found/README.md @@ -0,0 +1,31 @@ +# command-not-found plugin + +This plugin uses the command-not-found package for zsh to provide suggested packages to be installed if a command cannot be found. + +To use it, add `command-not-found` to the plugins array of your zshrc file: + +```zsh +plugins=(... command-not-found) +``` + +An example of how this plugin works in Ubuntu: +``` +$ mutt +The program 'mutt' can be found in the following packages: + * mutt + * mutt-kz + * mutt-patched +Try: sudo apt install +``` + +### Supported platforms + +It works out of the box with the command-not-found packages for: + +- [Ubuntu](https://www.porcheron.info/command-not-found-for-zsh/) +- [Debian](https://packages.debian.org/search?keywords=command-not-found) +- [Arch Linux](https://wiki.archlinux.org/index.php/Pkgfile#Command_not_found) +- [macOS (Homebrew)](https://github.com/Homebrew/homebrew-command-not-found) +- [Fedora](https://fedoraproject.org/wiki/Features/PackageKitCommandNotFound) + +You can add support for other platforms by submitting a Pull Request. diff --git a/oh-my-zsh/.oh-my-zsh/plugins/command-not-found/command-not-found.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/command-not-found/command-not-found.plugin.zsh new file mode 100644 index 0000000..ba1262d --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/command-not-found/command-not-found.plugin.zsh @@ -0,0 +1,33 @@ +# Uses the command-not-found package zsh support +# as seen in https://www.porcheron.info/command-not-found-for-zsh/ +# this is installed in Ubuntu + +[[ -e /etc/zsh_command_not_found ]] && source /etc/zsh_command_not_found + +# Arch Linux command-not-found support, you must have package pkgfile installed +# https://wiki.archlinux.org/index.php/Pkgfile#.22Command_not_found.22_hook +[[ -e /usr/share/doc/pkgfile/command-not-found.zsh ]] && source /usr/share/doc/pkgfile/command-not-found.zsh + +# Fedora command-not-found support +if [ -f /usr/libexec/pk-command-not-found ]; then + command_not_found_handler () { + runcnf=1 + retval=127 + [ ! -S /var/run/dbus/system_bus_socket ] && runcnf=0 + [ ! -x /usr/libexec/packagekitd ] && runcnf=0 + if [ $runcnf -eq 1 ] + then + /usr/libexec/pk-command-not-found $@ + retval=$? + fi + return $retval + } +fi + +# OSX command-not-found support +# https://github.com/Homebrew/homebrew-command-not-found +if type brew &> /dev/null; then + if brew command command-not-found-init > /dev/null 2>&1; then + eval "$(brew command-not-found-init)"; + fi +fi diff --git a/oh-my-zsh/.oh-my-zsh/plugins/common-aliases/common-aliases.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/common-aliases/common-aliases.plugin.zsh new file mode 100644 index 0000000..785a09c --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/common-aliases/common-aliases.plugin.zsh @@ -0,0 +1,87 @@ +# Advanced Aliases. +# Use with caution +# + +# ls, the common ones I use a lot shortened for rapid fire usage +alias l='ls -lFh' #size,show type,human readable +alias la='ls -lAFh' #long list,show almost all,show type,human readable +alias lr='ls -tRFh' #sorted by date,recursive,show type,human readable +alias lt='ls -ltFh' #long list,sorted by date,show type,human readable +alias ll='ls -l' #long list +alias ldot='ls -ld .*' +alias lS='ls -1FSsh' +alias lart='ls -1Fcart' +alias lrt='ls -1Fcrt' + +alias zshrc='${=EDITOR} ~/.zshrc' # Quick access to the ~/.zshrc file + +alias grep='grep --color' +alias sgrep='grep -R -n -H -C 5 --exclude-dir={.git,.svn,CVS} ' + +alias t='tail -f' + +# Command line head / tail shortcuts +alias -g H='| head' +alias -g T='| tail' +alias -g G='| grep' +alias -g L="| less" +alias -g M="| most" +alias -g LL="2>&1 | less" +alias -g CA="2>&1 | cat -A" +alias -g NE="2> /dev/null" +alias -g NUL="> /dev/null 2>&1" +alias -g P="2>&1| pygmentize -l pytb" + +alias dud='du -d 1 -h' +alias duf='du -sh *' +alias fd='find . -type d -name' +alias ff='find . -type f -name' + +alias h='history' +alias hgrep="fc -El 0 | grep" +alias help='man' +alias p='ps -f' +alias sortnr='sort -n -r' +alias unexport='unset' + +alias rm='rm -i' +alias cp='cp -i' +alias mv='mv -i' + +# zsh is able to auto-do some kungfoo +# depends on the SUFFIX :) +if is-at-least 4.2.0; then + # open browser on urls + if [[ -n "$BROWSER" ]]; then + _browser_fts=(htm html de org net com at cx nl se dk) + for ft in $_browser_fts; do alias -s $ft=$BROWSER; done + fi + + _editor_fts=(cpp cxx cc c hh h inl asc txt TXT tex) + for ft in $_editor_fts; do alias -s $ft=$EDITOR; done + + if [[ -n "$XIVIEWER" ]]; then + _image_fts=(jpg jpeg png gif mng tiff tif xpm) + for ft in $_image_fts; do alias -s $ft=$XIVIEWER; done + fi + + _media_fts=(ape avi flv m4a mkv mov mp3 mpeg mpg ogg ogm rm wav webm) + for ft in $_media_fts; do alias -s $ft=mplayer; done + + #read documents + alias -s pdf=acroread + alias -s ps=gv + alias -s dvi=xdvi + alias -s chm=xchm + alias -s djvu=djview + + #list whats inside packed file + alias -s zip="unzip -l" + alias -s rar="unrar l" + alias -s tar="tar tf" + alias -s tar.gz="echo " + alias -s ace="unace l" +fi + +# Make zsh know about hosts already accessed by SSH +zstyle -e ':completion:*:(ssh|scp|sftp|rsh|rsync):hosts' hosts 'reply=(${=${${(f)"$(cat {/etc/ssh_,~/.ssh/known_}hosts(|2)(N) /dev/null)"}%%[# ]*}//,/ })' diff --git a/oh-my-zsh/.oh-my-zsh/plugins/compleat/compleat.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/compleat/compleat.plugin.zsh new file mode 100644 index 0000000..38f1b39 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/compleat/compleat.plugin.zsh @@ -0,0 +1,20 @@ +# ------------------------------------------------------------------------------ +# FILE: compleat.plugin.zsh +# DESCRIPTION: oh-my-zsh plugin file. +# AUTHOR: Sorin Ionescu (sorin.ionescu@gmail.com) +# VERSION: 1.0.0 +# ------------------------------------------------------------------------------ + +if (( ${+commands[compleat]} )); then + local prefix="${commands[compleat]:h:h}" + local setup="${prefix}/share/compleat-1.0/compleat_setup" + + if [[ -f "$setup" ]]; then + if ! bashcompinit >/dev/null 2>&1; then + autoload -U bashcompinit + bashcompinit -i + fi + + source "$setup" + fi +fi diff --git a/oh-my-zsh/.oh-my-zsh/plugins/composer/README.md b/oh-my-zsh/.oh-my-zsh/plugins/composer/README.md new file mode 100644 index 0000000..2b4bae5 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/composer/README.md @@ -0,0 +1,29 @@ +# composer + +This plugin provides completion for [composer](https://getcomposer.org/), as well as aliases +for frequent composer commands. It also adds Composer's global binaries to the PATH, using +Composer if available. + +To use it add `composer` to the plugins array in your zshrc file. + +```zsh +plugins=(... composer) +``` + +## Aliases + +| Alias | Command | Description | +| ------ | -------------------------------------------- | -------------------------------------------------------------------------------------- | +| `c` | composer | Starts composer | +| `csu` | composer self-update | Updates composer to the latest version | +| `cu` | composer update | Updates composer dependencies and `composer.lock` file | +| `cr` | composer require | Adds new packages to `composer.json` | +| `crm` | composer remove | Removes packages from `composer.json` | +| `ci` | composer install | Resolves and installs dependencies from `composer.json` | +| `ccp` | composer create-project | Create new project from an existing package | +| `cdu` | composer dump-autoload | Updates the autoloader | +| `cdo` | composer dump-autoload --optimize-autoloader | Converts PSR-0/4 autoloading to classmap for a faster autoloader (good for production) | +| `cgu` | composer global update | Allows update command to run on COMPOSER_HOME directory | +| `cgr` | composer global require | Allows require command to run on COMPOSER_HOME directory | +| `cgrm` | composer global remove | Allows remove command to run on COMPOSER_HOME directory | +| `cget` | `curl -s https://getcomposer.org/installer` | Installs composer in the current directory | diff --git a/oh-my-zsh/.oh-my-zsh/plugins/composer/composer.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/composer/composer.plugin.zsh new file mode 100644 index 0000000..6349610 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/composer/composer.plugin.zsh @@ -0,0 +1,60 @@ +# ------------------------------------------------------------------------------ +# FILE: composer.plugin.zsh +# DESCRIPTION: oh-my-zsh composer plugin file. +# AUTHOR: Daniel Gomes (me@danielcsgomes.com) +# VERSION: 1.0.0 +# ------------------------------------------------------------------------------ + +# Composer basic command completion +_composer_get_command_list () { + $_comp_command1 --no-ansi 2>/dev/null | sed "1,/Available commands/d" | awk '/^[ \t]*[a-z]+/ { print $1 }' +} + +_composer_get_required_list () { + $_comp_command1 show -s --no-ansi 2>/dev/null | sed '1,/requires/d' | awk 'NF > 0 && !/^requires \(dev\)/{ print $1 }' +} + +_composer () { + local curcontext="$curcontext" state line + typeset -A opt_args + _arguments \ + '1: :->command'\ + '*: :->args' + + case $state in + command) + compadd $(_composer_get_command_list) + ;; + *) + compadd $(_composer_get_required_list) + ;; + esac +} + +compdef _composer composer +compdef _composer composer.phar + +# Aliases +alias c='composer' +alias csu='composer self-update' +alias cu='composer update' +alias cr='composer require' +alias crm='composer remove' +alias ci='composer install' +alias ccp='composer create-project' +alias cdu='composer dump-autoload' +alias cdo='composer dump-autoload --optimize-autoloader' +alias cgu='composer global update' +alias cgr='composer global require' +alias cgrm='composer global remove' + +# install composer in the current directory +alias cget='curl -s https://getcomposer.org/installer | php' + +# Add Composer's global binaries to PATH, using Composer if available. +if (( $+commands[composer] )); then + export PATH=$PATH:$(composer global config bin-dir --absolute 2>/dev/null) +else + [ -d $HOME/.composer/vendor/bin ] && export PATH=$PATH:$HOME/.composer/vendor/bin + [ -d $HOME/.config/composer/vendor/bin ] && export PATH=$PATH:$HOME/.config/composer/vendor/bin +fi diff --git a/oh-my-zsh/.oh-my-zsh/plugins/copybuffer/README.md b/oh-my-zsh/.oh-my-zsh/plugins/copybuffer/README.md new file mode 100644 index 0000000..da138bd --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/copybuffer/README.md @@ -0,0 +1,11 @@ +# `copybuffer` plugin + +This plugin binds the ctrl-o keyboard shortcut to a command that copies the text +that is currently typed in the command line ($BUFFER) to the system clipboard. + +This is useful if you type a command - and before you hit enter to execute it - want +to copy it maybe so you can paste it into a script, gist or whatnot. + +```zsh +plugins=(... copybuffer) +``` diff --git a/oh-my-zsh/.oh-my-zsh/plugins/copybuffer/copybuffer.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/copybuffer/copybuffer.plugin.zsh new file mode 100644 index 0000000..cc205d4 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/copybuffer/copybuffer.plugin.zsh @@ -0,0 +1,14 @@ +# copy the active line from the command line buffer +# onto the system clipboard (requires clipcopy plugin) + +copybuffer () { + if which clipcopy &>/dev/null; then + echo $BUFFER | clipcopy + else + echo "clipcopy function not found. Please make sure you have Oh My Zsh installed correctly." + fi +} + +zle -N copybuffer + +bindkey "^O" copybuffer diff --git a/oh-my-zsh/.oh-my-zsh/plugins/copydir/README.md b/oh-my-zsh/.oh-my-zsh/plugins/copydir/README.md new file mode 100644 index 0000000..594bf10 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/copydir/README.md @@ -0,0 +1,10 @@ +# copydir plugin + +Copies the path of your current folder to the system clipboard. + +To use, add `copydir` to your plugins array: +``` +plugins=(... copydir) +``` + +Then use the command `copydir` to copy the $PWD. diff --git a/oh-my-zsh/.oh-my-zsh/plugins/copydir/copydir.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/copydir/copydir.plugin.zsh new file mode 100644 index 0000000..c451062 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/copydir/copydir.plugin.zsh @@ -0,0 +1,5 @@ +# Copies the pathname of the current directory to the system or X Windows clipboard +function copydir { + emulate -L zsh + print -n $PWD | clipcopy +} diff --git a/oh-my-zsh/.oh-my-zsh/plugins/copyfile/README.md b/oh-my-zsh/.oh-my-zsh/plugins/copyfile/README.md new file mode 100644 index 0000000..53138ad --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/copyfile/README.md @@ -0,0 +1,10 @@ +# copyfile plugin + +Puts the contents of a file in your system clipboard so you can paste it anywhere. + +To use, add `copyfile` to your plugins array: +``` +plugins=(... copyfile) +``` + +Then you can run the command `copyfile ` to copy the file named `filename`. diff --git a/oh-my-zsh/.oh-my-zsh/plugins/copyfile/copyfile.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/copyfile/copyfile.plugin.zsh new file mode 100644 index 0000000..f4eca5a --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/copyfile/copyfile.plugin.zsh @@ -0,0 +1,7 @@ +# Copies the contents of a given file to the system or X Windows clipboard +# +# copyfile +function copyfile { + emulate -L zsh + clipcopy $1 +} diff --git a/oh-my-zsh/.oh-my-zsh/plugins/cp/README.md b/oh-my-zsh/.oh-my-zsh/plugins/cp/README.md new file mode 100644 index 0000000..e8a9b6c --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/cp/README.md @@ -0,0 +1,32 @@ +# cp plugin + +This plugin defines a `cpv` function that uses `rsync` so that you +get the features and security of this command. + +To enable, add `cp` to your `plugins` array in your zshrc file: + +```zsh +plugins=(... cp) +``` + +## Description + +The enabled options for rsync are: + +- `-p`: preserves permissions. + +- `-o`: preserves owner. + +* `-g`: preserves group. + +* `-b`: make a backup of the original file instead of overwriting it, if it exists. + +* `-r`: recurse directories. + +* `-hhh`: outputs numbers in human-readable format, in units of 1024 (K, M, G, T). + +* `--backup-dir=/tmp/rsync`: move backup copies to "/tmp/rsync". + +* `-e /dev/null`: only work on local files (disable remote shells). + +* `--progress`: display progress. diff --git a/oh-my-zsh/.oh-my-zsh/plugins/cp/cp.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/cp/cp.plugin.zsh new file mode 100644 index 0000000..fe6ea87 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/cp/cp.plugin.zsh @@ -0,0 +1,4 @@ +cpv() { + rsync -pogbr -hhh --backup-dir=/tmp/rsync -e /dev/null --progress "$@" +} +compdef _files cpv diff --git a/oh-my-zsh/.oh-my-zsh/plugins/cpanm/README.md b/oh-my-zsh/.oh-my-zsh/plugins/cpanm/README.md new file mode 100644 index 0000000..3803e3e --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/cpanm/README.md @@ -0,0 +1,9 @@ +# Cpanm + +This plugin provides completion for [Cpanm](https://github.com/miyagawa/cpanminus) ([docs](https://metacpan.org/pod/App::cpanminus)). + +To use it add cpanm to the plugins array in your zshrc file. + + ```bash +plugins=(... cpanm) +``` diff --git a/oh-my-zsh/.oh-my-zsh/plugins/cpanm/_cpanm b/oh-my-zsh/.oh-my-zsh/plugins/cpanm/_cpanm new file mode 100644 index 0000000..ff9ae1c --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/cpanm/_cpanm @@ -0,0 +1,64 @@ +#compdef cpanm + +## +# cpanminus Z Shell completion script +## +# +# Current supported cpanm version: 1.4000 (Tue Mar 8 01:00:49 PST 2011) +# + +local arguments curcontext="$curcontext" +typeset -A opt_args + + +arguments=( + +# Commands +# '(--install -i)'{--install,-i}'[Installs the modules]' + '(- :)--self-upgrade[Upgrades itself]' + '(- :)--info[Displays distribution info on CPAN]' + '(--installdeps)--installdeps[Only install dependencies]' + '(--look)--look[Download/unpack the distribution and then open the directory with your shell]' + '(- :)'{--help,-h}'[Displays help information]' + '(- :)'{--version,-V}'[Displays software version]' + +# Options + {--force,-f}'[Force install]' + {--notest,-n}'[Do not run unit tests]' + {--sudo,-S}'[sudo to run install commands]' + '(-v --verbose --quiet -q)'{--verbose,-v}'[Turns on chatty output]' + '(-q --quiet --verbose -v)'{--quiet,-q}'[Turns off all output]' + {--local-lib,-l}'[Specify the install base to install modules]' + {--local-lib-contained,-L}'[Specify the install base to install all non-core modules]' + '--mirror[Specify the base URL for the mirror (e.g. http://cpan.cpantesters.org/)]:URLs:_urls' + '--mirror-only[Use the mirror\''s index file instead of the CPAN Meta DB]' + '--prompt[Prompt when configure/build/test fails]' + '--reinstall[Reinstall the distribution even if you already have the latest version installed]' + '--interactive[Turn on interactive configure]' + + '--scandeps[Scan the depencencies of given modules and output the tree in a text format]' + '--format[Specify what format to display the scanned dependency tree]:scandeps format:(tree json yaml dists)' + + '--save-dists[Specify the optional directory path to copy downloaded tarballs]' +# '--uninst-shadows[Uninstalls the shadow files of the distribution that you\''re installing]' + + '--auto-cleanup[Number of days that cpanm\''s work directories expire in. Defaults to 7]' + '(--no-man-pages)--man-pages[Generates man pages for executables (man1) and libraries (man3)]' + '(--man-pages)--no-man-pages[Do not generate man pages]' + + + # Note: Normally with "--lwp", "--wget" and "--curl" options set to true (which is the default) cpanm tries LWP, + # Wget, cURL and HTTP::Tiny (in that order) and uses the first one available. + # (So that the exclusions are not enabled here for the completion) + '(--lwp)--lwp[Use LWP module to download stuff]' + '(--wget)--wget[Use GNU Wget (if available) to download stuff]' + '(--curl)--curl[Use cURL (if available) to download stuff]' + +# Other completions + '*:Local directory or archive:_files -/ -g "*.(tar.gz|tgz|tar.bz2|zip)(-.)"' + # '*::args: _normal' # this looks for default files (any files) +) +_arguments -s $arguments \ + && return 0 + +return 1 diff --git a/oh-my-zsh/.oh-my-zsh/plugins/dash/dash.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/dash/dash.plugin.zsh new file mode 100644 index 0000000..b00d487 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/dash/dash.plugin.zsh @@ -0,0 +1,86 @@ +# Usage: dash [keyword:]query +dash() { open dash://"$*" } +compdef _dash dash + +_dash() { + # No sense doing this for anything except the 2nd position and if we haven't + # specified which docset to query against + if [[ $CURRENT -eq 2 && ! "$words[2]" =~ ":" ]]; then + local -a _all_docsets + _all_docsets=() + # Use defaults to get the array of docsets from preferences + # Have to smash it into one big line so that each docset is an element of + # our DOCSETS array + DOCSETS=("${(@f)$(defaults read com.kapeli.dashdoc docsets | tr -d '\n' | grep -oE '\{.*?\}')}") + + # remove all newlines since defaults prints so pretty like + # Now get each docset and output each on their own line + for doc in "$DOCSETS[@]"; do + # Only output docsets that are actually enabled + if [[ "`echo $doc | grep -Eo \"isEnabled = .*?;\" | sed 's/[^01]//g'`" == "0" ]]; then + continue + fi + + keyword='' + + # Order of preference as explained to me by @kapeli via email + KEYWORD_LOCATORS=(keyword suggestedKeyword platform) + for locator in "$KEYWORD_LOCATORS[@]"; do + # Echo the docset, try to find the appropriate keyword + # Strip doublequotes and colon from any keyword so that everything has the + # same format when output (we'll add the colon in the completion) + keyword=`echo $doc | grep -Eo "$locator = .*?;" | sed -e "s/$locator = \(.*\);/\1/" -e "s/[\":]//g"` + if [[ ! -z "$keyword" ]]; then + # if we fall back to platform, we should do some checking per @kapeli + if [[ "$locator" == "platform" ]]; then + # Since these are the only special cases right now, let's not do the + # expensive processing unless we have to + if [[ "$keyword" == "python" || "$keyword" == "java" || \ + "$keyword" == "qt" || "$keyword" == "cocs2d" ]]; then + docsetName=`echo $doc | grep -Eo "docsetName = .*?;" | sed -e "s/docsetName = \(.*\);/\1/" -e "s/[\":]//g"` + if [[ "$keyword" == "python" ]]; then + if [[ "$docsetName" == "Python 2" ]]; then + keyword="python2" + elif [[ "$docsetName" == "Python 3" ]]; then + keyword="python3" + fi + elif [[ "$keyword" == "java" ]]; then + if [[ "$docsetName" == "Java SE7" ]]; then + keyword="java7" + elif [[ "$docsetName" == "Java SE6" ]]; then + keyword="java6" + elif [[ "$docsetName" == "Java SE8" ]]; then + keyword="java8" + fi + elif [[ "$keyword" == "qt" ]]; then + if [[ "$docsetName" == "Qt 5" ]]; then + keyword="qt5" + elif [[ "$docsetName" == "Qt 4" ]]; then + keyword="qt4" + elif [[ "$docsetName" == "Qt" ]]; then + keyword="qt4" + fi + elif [[ "$keyword" == "cocos2d" ]]; then + if [[ "$docsetName" == "Cocos3D" ]]; then + keyword="cocos3d" + fi + fi + fi + fi + + # Bail once we have a match + break + fi + done + + # If we have a keyword, add it to the list! + if [[ ! -z "$keyword" ]]; then + _all_docsets+=($keyword) + fi + done + + # special thanks to [arx] on #zsh for getting me sorted on this piece + compadd -qS: -- "$_all_docsets[@]" + return + fi +} diff --git a/oh-my-zsh/.oh-my-zsh/plugins/debian/debian.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/debian/debian.plugin.zsh new file mode 100644 index 0000000..654b692 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/debian/debian.plugin.zsh @@ -0,0 +1,232 @@ +# Authors: +# https://github.com/AlexBio +# https://github.com/dbb +# https://github.com/Mappleconfusers +# +# Debian-related zsh aliases and functions for zsh + +# Use apt or aptitude if installed, fallback is apt-get +# You can just set apt_pref='apt-get' to override it. +if [[ -e $( which -p apt 2>&1 ) ]]; then + apt_pref='apt' + apt_upgr='upgrade' +elif [[ -e $( which -p aptitude 2>&1 ) ]]; then + apt_pref='aptitude' + apt_upgr='safe-upgrade' +else + apt_pref='apt-get' + apt_upgr='upgrade' +fi + +# Use sudo by default if it's installed +if [[ -e $( which -p sudo 2>&1 ) ]]; then + use_sudo=1 +fi + +# Aliases ################################################################### +# These are for more obscure uses of apt-get and aptitude that aren't covered +# below. +alias age='apt-get' +alias api='aptitude' + +# Some self-explanatory aliases +alias acs="apt-cache search" +alias aps='aptitude search' +alias as="aptitude -F \"* %p -> %d \n(%v/%V)\" \ + --no-gui --disable-columns search" # search package + +# apt-file +alias afs='apt-file search --regexp' + + +# These are apt-get only +alias asrc='apt-get source' +alias app='apt-cache policy' + +# superuser operations ###################################################### +if [[ $use_sudo -eq 1 ]]; then +# commands using sudo ####### + alias aac='sudo $apt_pref autoclean' + alias abd='sudo $apt_pref build-dep' + alias ac='sudo $apt_pref clean' + alias ad='sudo $apt_pref update' + alias adg='sudo $apt_pref update && sudo $apt_pref $apt_upgr' + alias adu='sudo $apt_pref update && sudo $apt_pref dist-upgrade' + alias afu='sudo apt-file update' + alias au='sudo $apt_pref $apt_upgr' + alias ai='sudo $apt_pref install' + # Install all packages given on the command line while using only the first word of each line: + # acs ... | ail + alias ail="sed -e 's/ */ /g' -e 's/ *//' | cut -s -d ' ' -f 1 | "' xargs sudo $apt_pref install' + alias ap='sudo $apt_pref purge' + alias ar='sudo $apt_pref remove' + + # apt-get only + alias ads='sudo apt-get dselect-upgrade' + + # Install all .deb files in the current directory. + # Warning: you will need to put the glob in single quotes if you use: + # glob_subst + alias dia='sudo dpkg -i ./*.deb' + alias di='sudo dpkg -i' + + # Remove ALL kernel images and headers EXCEPT the one in use + alias kclean='sudo aptitude remove -P ?and(~i~nlinux-(ima|hea) \ + ?not(~n`uname -r`))' + + +# commands using su ######### +else + alias aac='su -ls \'$apt_pref autoclean\' root' + abd() { + cmd="su -lc '$apt_pref build-dep $@' root" + print "$cmd" + eval "$cmd" + } + alias ac='su -ls \'$apt_pref clean\' root' + alias ad='su -lc \'$apt_pref update\' root' + alias adg='su -lc \'$apt_pref update && aptitude $apt_upgr\' root' + alias adu='su -lc \'$apt_pref update && aptitude dist-upgrade\' root' + alias afu='su -lc "apt-file update"' + alias ag='su -lc \'$apt_pref $apt_upgr\' root' + ai() { + cmd="su -lc 'aptitude -P install $@' root" + print "$cmd" + eval "$cmd" + } + ap() { + cmd="su -lc '$apt_pref -P purge $@' root" + print "$cmd" + eval "$cmd" + } + ar() { + cmd="su -lc '$apt_pref -P remove $@' root" + print "$cmd" + eval "$cmd" + } + + # Install all .deb files in the current directory + # Assumes glob_subst is off + alias dia='su -lc "dpkg -i ./*.deb" root' + alias di='su -lc "dpkg -i" root' + + # Remove ALL kernel images and headers EXCEPT the one in use + alias kclean='su -lc '\''aptitude remove -P ?and(~i~nlinux-(ima|hea) \ + ?not(~n`uname -r`))'\'' root' +fi + +# Completion ################################################################ + +# +# Registers a compdef for $1 that calls $apt_pref with the commands $2 +# To do that it creates a new completion function called _apt_pref_$2 +# +apt_pref_compdef() { + local f fb + f="_apt_pref_${2}" + + eval "function ${f}() { + shift words; + service=\"\$apt_pref\"; + words=(\"\$apt_pref\" '$2' \$words); + ((CURRENT++)) + test \"\${apt_pref}\" = 'aptitude' && _aptitude || _apt + }" + + compdef "$f" "$1" +} + +apt_pref_compdef aac "autoclean" +apt_pref_compdef abd "build-dep" +apt_pref_compdef ac "clean" +apt_pref_compdef ad "update" +apt_pref_compdef afu "update" +apt_pref_compdef ag "$apt_upgr" +apt_pref_compdef ai "install" +apt_pref_compdef ail "install" +apt_pref_compdef ap "purge" +apt_pref_compdef ar "remove" +apt_pref_compdef ads "dselect-upgrade" + +# Misc. ##################################################################### +# print all installed packages +alias allpkgs='aptitude search -F "%p" --disable-columns ~i' + +# Create a basic .deb package +alias mydeb='time dpkg-buildpackage -rfakeroot -us -uc' + + +# Functions ################################################################# +# create a simple script that can be used to 'duplicate' a system +apt-copy() { + print '#!/bin/sh'"\n" > apt-copy.sh + + cmd='$apt_pref install' + + for p in ${(f)"$(aptitude search -F "%p" --disable-columns \~i)"}; { + cmd="${cmd} ${p}" + } + + print $cmd "\n" >> apt-copy.sh + + chmod +x apt-copy.sh +} + +# Prints apt history +# Usage: +# apt-history install +# apt-history upgrade +# apt-history remove +# apt-history rollback +# apt-history list +# Based On: https://linuxcommando.blogspot.com/2008/08/how-to-show-apt-log-history.html +apt-history () { + case "$1" in + install) + zgrep --no-filename 'install ' $(ls -rt /var/log/dpkg*) + ;; + upgrade|remove) + zgrep --no-filename $1 $(ls -rt /var/log/dpkg*) + ;; + rollback) + zgrep --no-filename upgrade $(ls -rt /var/log/dpkg*) | \ + grep "$2" -A10000000 | \ + grep "$3" -B10000000 | \ + awk '{print $4"="$5}' + ;; + list) + zgrep --no-filename '' $(ls -rt /var/log/dpkg*) + ;; + *) + echo "Parameters:" + echo " install - Lists all packages that have been installed." + echo " upgrade - Lists all packages that have been upgraded." + echo " remove - Lists all packages that have been removed." + echo " rollback - Lists rollback information." + echo " list - Lists all contains of dpkg logs." + ;; + esac +} + +# Kernel-package building shortcut +kerndeb () { + # temporarily unset MAKEFLAGS ( '-j3' will fail ) + MAKEFLAGS=$( print - $MAKEFLAGS | perl -pe 's/-j\s*[\d]+//g' ) + print '$MAKEFLAGS set to '"'$MAKEFLAGS'" + appendage='-custom' # this shows up in $ (uname -r ) + revision=$(date +"%Y%m%d") # this shows up in the .deb file name + + make-kpkg clean + + time fakeroot make-kpkg --append-to-version "$appendage" --revision \ + "$revision" kernel_image kernel_headers +} + +# List packages by size +function apt-list-packages { + dpkg-query -W --showformat='${Installed-Size} ${Package} ${Status}\n' | \ + grep -v deinstall | \ + sort -n | \ + awk '{print $1" "$2}' +} + diff --git a/oh-my-zsh/.oh-my-zsh/plugins/dircycle/README.md b/oh-my-zsh/.oh-my-zsh/plugins/dircycle/README.md new file mode 100644 index 0000000..3ac162f --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/dircycle/README.md @@ -0,0 +1,78 @@ +# dircycle + +Plugin for cycling through the directory stack + +This plugin enables directory navigation similar to using back and forward on browsers or common file explorers like Finder or Nautilus. It uses a small zle trick that lets you cycle through your directory stack left or right using Ctrl + Shift + Left / Right . This is useful when moving back and forth between directories in development environments, and can be thought of as kind of a nondestructive pushd/popd. + +## Enabling the plugin + +1. Open your `.zshrc` file and add `dircycle` in the plugins section: + + ```zsh + plugins=( + # all your enabled plugins + dircycle + ) + ``` + +2. Reload the source file or restart your Terminal session: + + ```console + $ source ~/.zshrc + $ + ``` + +## Usage Examples + +Say you opened these directories on the terminal: + +```console +~$ cd Projects +~/Projects$ cd Hacktoberfest +~/Projects/Hacktoberfest$ cd oh-my-zsh +~/Projects/Hacktoberfest/oh-my-zsh$ dirs -v +0 ~/Projects/Hacktoberfest/oh-my-zsh +1 ~/Projects/Hacktoberfest +2 ~/Projects +3 ~ +``` + +By pressing Ctrl + Shift + Left, the current working directory or `$CWD` will be from `oh-my-zsh` to `Hacktoberfest`. Press it again and it will be at `Projects`. + +And by pressing Ctrl + Shift + Right, the `$CWD` will be from `Projects` to `Hacktoberfest`. Press it again and it will be at `oh-my-zsh`. + +Here's a example history table with the same accessed directories like above: + +| Current `$CWD` | Key press | New `$CWD` | +| --------------- | ----------------------------------------------------- | --------------- | +| `oh-my-zsh` | Ctrl + Shift + Left | `Hacktoberfest` | +| `Hacktoberfest` | Ctrl + Shift + Left | `Projects` | +| `Projects` | Ctrl + Shift + Left | `~` | +| `~` | Ctrl + Shift + Right | `Projects` | +| `Projects` | Ctrl + Shift + Right | `Hacktoberfest` | +| `Hacktoberfest` | Ctrl + Shift + Right | `oh-my-zsh` | +| `oh-my-zsh` | Ctrl + Shift + Right | `~` | + +Note the last traversal, when pressing Ctrl + Shift + Right on a last known `$CWD`, it will change back to the first known `$CWD`, which in the example is `~`. + +Here's an asciinema cast demonstrating the example above: + +[![asciicast](https://asciinema.org/a/204406.png)](https://asciinema.org/a/204406) + +## Functions + +| Function | Description | +| -------------------- | --------------------------------------------------------------------------------------------------------- | +| `insert-cycledleft` | Change `$CWD` to the previous known stack, binded on Ctrl + Shift + Left | +| `insert-cycledright` | Change `$CWD` to the next known stack, binded on Ctrl + Shift + Right | + +## Rebinding keys + +You can bind these functions to other key sequences, as long as you know the bindkey sequence. For example, these commands bind to Alt + Shift + Left / Right in `xterm-256color`: + +```zsh +bindkey '^[[1;4D' insert-cycledleft +bindkey '^[[1;4C' insert-cycledright +``` + +You can get the bindkey sequence by pressing Ctrl + V, then pressing the keyboard shortcut you want to use. diff --git a/oh-my-zsh/.oh-my-zsh/plugins/dircycle/dircycle.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/dircycle/dircycle.plugin.zsh new file mode 100644 index 0000000..bb69f6b --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/dircycle/dircycle.plugin.zsh @@ -0,0 +1,54 @@ +# enables cycling through the directory stack using +# Ctrl+Shift+Left/Right +# +# left/right direction follows the order in which directories +# were visited, like left/right arrows do in a browser + +# NO_PUSHD_MINUS syntax: +# pushd +N: start counting from left of `dirs' output +# pushd -N: start counting from right of `dirs' output + +switch-to-dir () { + setopt localoptions nopushdminus + [[ ${#dirstack} -eq 0 ]] && return 1 + + while ! builtin pushd -q $1 &>/dev/null; do + # We found a missing directory: pop it out of the dir stack + builtin popd -q $1 + + # Stop trying if there are no more directories in the dir stack + [[ ${#dirstack} -eq 0 ]] && return 1 + done +} + +insert-cycledleft () { + switch-to-dir +1 || return + + local fn + for fn (chpwd $chpwd_functions precmd $precmd_functions); do + (( $+functions[$fn] )) && $fn + done + zle reset-prompt +} +zle -N insert-cycledleft + +insert-cycledright () { + switch-to-dir -0 || return + + local fn + for fn (chpwd $chpwd_functions precmd $precmd_functions); do + (( $+functions[$fn] )) && $fn + done + zle reset-prompt +} +zle -N insert-cycledright + + +# These sequences work for xterm, Apple Terminal.app, and probably others. +# Not for rxvt-unicode, but it doesn't seem differentiate Ctrl-Shift-Arrow +# from plain Shift-Arrow, at least by default. +# iTerm2 does not have these key combinations defined by default; you will need +# to add them under "Keys" in your profile if you want to use this. You can do +# this conveniently by loading the "xterm with Numeric Keypad" preset. +bindkey "\e[1;6D" insert-cycledleft +bindkey "\e[1;6C" insert-cycledright diff --git a/oh-my-zsh/.oh-my-zsh/plugins/dirhistory/README.md b/oh-my-zsh/.oh-my-zsh/plugins/dirhistory/README.md new file mode 100644 index 0000000..511f2be --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/dirhistory/README.md @@ -0,0 +1,17 @@ +# Dirhistory plugin + +This plugin adds keyboard shortcuts for navigating directory history and hierarchy. + +To use it, add `dirhistory` to the plugins array in your zshrc file: + +```zsh +plugins=(... dirhistory) +``` +## Keyboard Shortcuts + +| Shortcut | Description | +|-----------------------------------|-----------------------------------------------------------| +| alt + left | Go to previous directory | +| alt + right | Undo alt + left | +| alt + up | Move into the parent directory | +| alt + down | Move into the first child directory by alphabetical order | diff --git a/oh-my-zsh/.oh-my-zsh/plugins/dirhistory/dirhistory.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/dirhistory/dirhistory.plugin.zsh new file mode 100644 index 0000000..239915e --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/dirhistory/dirhistory.plugin.zsh @@ -0,0 +1,190 @@ +## +# Navigate directory history using ALT-LEFT and ALT-RIGHT. ALT-LEFT moves back to directories +# that the user has changed to in the past, and ALT-RIGHT undoes ALT-LEFT. +# +# Navigate directory hierarchy using ALT-UP and ALT-DOWN. (mac keybindings not yet implemented) +# ALT-UP moves to higher hierarchy (cd ..) +# ALT-DOWN moves into the first directory found in alphabetical order +# + +dirhistory_past=($PWD) +dirhistory_future=() +export dirhistory_past +export dirhistory_future + +export DIRHISTORY_SIZE=30 + +# Pop the last element of dirhistory_past. +# Pass the name of the variable to return the result in. +# Returns the element if the array was not empty, +# otherwise returns empty string. +function pop_past() { + eval "$1='$dirhistory_past[$#dirhistory_past]'" + if [[ $#dirhistory_past -gt 0 ]]; then + dirhistory_past[$#dirhistory_past]=() + fi +} + +function pop_future() { + eval "$1='$dirhistory_future[$#dirhistory_future]'" + if [[ $#dirhistory_future -gt 0 ]]; then + dirhistory_future[$#dirhistory_future]=() + fi +} + +# Push a new element onto the end of dirhistory_past. If the size of the array +# is >= DIRHISTORY_SIZE, the array is shifted +function push_past() { + if [[ $#dirhistory_past -ge $DIRHISTORY_SIZE ]]; then + shift dirhistory_past + fi + if [[ $#dirhistory_past -eq 0 || $dirhistory_past[$#dirhistory_past] != "$1" ]]; then + dirhistory_past+=($1) + fi +} + +function push_future() { + if [[ $#dirhistory_future -ge $DIRHISTORY_SIZE ]]; then + shift dirhistory_future + fi + if [[ $#dirhistory_future -eq 0 || $dirhistory_futuret[$#dirhistory_future] != "$1" ]]; then + dirhistory_future+=($1) + fi +} + +# Called by zsh when directory changes +chpwd_functions+=(chpwd_dirhistory) +function chpwd_dirhistory() { + push_past $PWD + # If DIRHISTORY_CD is not set... + if [[ -z "${DIRHISTORY_CD+x}" ]]; then + # ... clear future. + dirhistory_future=() + fi +} + +function dirhistory_cd(){ + DIRHISTORY_CD="1" + cd $1 + unset DIRHISTORY_CD +} + +# Move backward in directory history +function dirhistory_back() { + local cw="" + local d="" + # Last element in dirhistory_past is the cwd. + + pop_past cw + if [[ "" == "$cw" ]]; then + # Someone overwrote our variable. Recover it. + dirhistory_past=($PWD) + return + fi + + pop_past d + if [[ "" != "$d" ]]; then + dirhistory_cd $d + push_future $cw + else + push_past $cw + fi +} + + +# Move forward in directory history +function dirhistory_forward() { + local d="" + + pop_future d + if [[ "" != "$d" ]]; then + dirhistory_cd $d + push_past $d + fi +} + + +# Bind keys to history navigation +function dirhistory_zle_dirhistory_back() { + # Erase current line in buffer + zle kill-buffer + dirhistory_back + zle accept-line +} + +function dirhistory_zle_dirhistory_future() { + # Erase current line in buffer + zle kill-buffer + dirhistory_forward + zle accept-line +} + +zle -N dirhistory_zle_dirhistory_back +# xterm in normal mode +bindkey "\e[3D" dirhistory_zle_dirhistory_back +bindkey "\e[1;3D" dirhistory_zle_dirhistory_back +# Mac teminal (alt+left/right) +if [[ "$TERM_PROGRAM" == "Apple_Terminal" ]]; then + bindkey "^[b" dirhistory_zle_dirhistory_back +fi +# Putty: +bindkey "\e\e[D" dirhistory_zle_dirhistory_back +# GNU screen: +bindkey "\eO3D" dirhistory_zle_dirhistory_back + +zle -N dirhistory_zle_dirhistory_future +bindkey "\e[3C" dirhistory_zle_dirhistory_future +bindkey "\e[1;3C" dirhistory_zle_dirhistory_future +if [[ "$TERM_PROGRAM" == "Apple_Terminal" ]]; then + bindkey "^[f" dirhistory_zle_dirhistory_future +fi +bindkey "\e\e[C" dirhistory_zle_dirhistory_future +bindkey "\eO3C" dirhistory_zle_dirhistory_future + + +# +# HIERARCHY Implemented in this section, in case someone wants to split it to another plugin if it clashes bindings +# + +# Move up in hierarchy +function dirhistory_up() { + cd .. || return 1 +} + +# Move down in hierarchy +function dirhistory_down() { + cd "$(find . -mindepth 1 -maxdepth 1 -type d | sort -n | head -n 1)" || return 1 +} + + +# Bind keys to hierarchy navigation +function dirhistory_zle_dirhistory_up() { + zle kill-buffer # Erase current line in buffer + dirhistory_up + zle accept-line +} + +function dirhistory_zle_dirhistory_down() { + zle kill-buffer # Erase current line in buffer + dirhistory_down + zle accept-line +} + +zle -N dirhistory_zle_dirhistory_up +# xterm in normal mode +bindkey "\e[3A" dirhistory_zle_dirhistory_up +bindkey "\e[1;3A" dirhistory_zle_dirhistory_up +# Mac teminal (alt+up) + #bindkey "^[?" dirhistory_zle_dirhistory_up #dont know it +# Putty: +bindkey "\e\e[A" dirhistory_zle_dirhistory_up +# GNU screen: +bindkey "\eO3A" dirhistory_zle_dirhistory_up + +zle -N dirhistory_zle_dirhistory_down +bindkey "\e[3B" dirhistory_zle_dirhistory_down +bindkey "\e[1;3B" dirhistory_zle_dirhistory_down +# Mac teminal (alt+down) + #bindkey "^[?" dirhistory_zle_dirhistory_down #dont know it +bindkey "\e\e[B" dirhistory_zle_dirhistory_down +bindkey "\eO3B" dirhistory_zle_dirhistory_down diff --git a/oh-my-zsh/.oh-my-zsh/plugins/dirpersist/README.md b/oh-my-zsh/.oh-my-zsh/plugins/dirpersist/README.md new file mode 100644 index 0000000..9880bc5 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/dirpersist/README.md @@ -0,0 +1,9 @@ +# Dirpersist plugin + +This plugin keeps a running tally of the previous 20 unique directories in the $HOME/.zdirs file. When you cd to a new directory, it is prepended to the beginning of the file. + +To use it, add `dirpersist` to the plugins array in your zshrc file: + +```zsh +plugins=(... dirpersist) +``` diff --git a/oh-my-zsh/.oh-my-zsh/plugins/dirpersist/dirpersist.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/dirpersist/dirpersist.plugin.zsh new file mode 100644 index 0000000..616e2c3 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/dirpersist/dirpersist.plugin.zsh @@ -0,0 +1,20 @@ +# Save dirstack history to .zdirs +# adapted from: +# github.com/grml/grml-etc-core/blob/master/etc/zsh/zshrc#L1547 + +DIRSTACKSIZE=${DIRSTACKSIZE:-20} +dirstack_file=${dirstack_file:-${HOME}/.zdirs} + +if [[ -f ${dirstack_file} ]] && [[ ${#dirstack[*]} -eq 0 ]] ; then + dirstack=( ${(f)"$(< $dirstack_file)"} ) + # "cd -" won't work after login by just setting $OLDPWD, so + [[ -d $dirstack[1] ]] && cd $dirstack[1] && cd $OLDPWD +fi + +chpwd_functions+=(chpwd_dirpersist) +chpwd_dirpersist() { + if (( $DIRSTACKSIZE <= 0 )) || [[ -z $dirstack_file ]]; then return; fi + local -ax my_stack + my_stack=( ${PWD} ${dirstack} ) + builtin print -l ${(u)my_stack} >! ${dirstack_file} +} diff --git a/oh-my-zsh/.oh-my-zsh/plugins/django/README.md b/oh-my-zsh/.oh-my-zsh/plugins/django/README.md new file mode 100644 index 0000000..415f6b7 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/django/README.md @@ -0,0 +1,56 @@ +# Django plugin + +This plugin adds completion and hints for the [Django Project](https://www.djangoproject.com/) `manage.py` commands +and options. + +To use it, add `django` to the plugins array in your zshrc file: + +```zsh +plugins=(... django) +``` + +## Usage + +```zsh +$> python manage.py (press here) +``` + +Would result in: + +```zsh +cleanup -- remove old data from the database +compilemessages -- compile .po files to .mo for use with gettext +createcachetable -- creates table for SQL cache backend +createsuperuser -- create a superuser +dbshell -- run command-line client for the current database +diffsettings -- display differences between the current settings and Django defaults +dumpdata -- output contents of database as a fixture +flush -- execute 'sqlflush' on the current database +inspectdb -- output Django model module for tables in database +loaddata -- install the named fixture(s) in the database +makemessages -- pull out all strings marked for translation +reset -- executes 'sqlreset' for the given app(s) +runfcgi -- run this project as a fastcgi +runserver -- start a lightweight web server for development +... +``` + +If you want to see the options available for a specific command, try: + +```zsh +$> python manage.py makemessages (press here) +``` + +And that would result in: + +```zsh +--all -a -- re-examine all code and templates +--domain -d -- domain of the message files (default: "django") +--extensions -e -- file extension(s) to examine (default: ".html") +--help -- display help information +--locale -l -- locale to process (default: all) +--pythonpath -- directory to add to the Python path +--settings -- python path to settings module +... +``` + diff --git a/oh-my-zsh/.oh-my-zsh/plugins/django/django.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/django/django.plugin.zsh new file mode 100644 index 0000000..29a51d2 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/django/django.plugin.zsh @@ -0,0 +1,403 @@ +#compdef manage.py + +typeset -ga nul_args +nul_args=( + '--verbosity=-[verbosity level; 0=minimal output, 1=normal output, 2=all output.]:Verbosity:((0\:minimal 1\:normal 2\:all))' + '--settings=-[the Python path to a settings module.]:file:_files' + '--pythonpath=-[a directory to add to the Python path.]:directory:_directories' + '--traceback[print traceback on exception.]' + "--no-color[Don't colorize the command output.]" + "--version[show program's version number and exit.]" + {-h,--help}'[show this help message and exit.]' +) + +typeset -ga start_args +start_args=( + '--template=-[The path or URL to load the template from.]:directory:_directories' + '--extension=-[The file extension(s) to render (default: "py").]' + '--name=-[The file name(s) to render.]:file:_files' +) + +typeset -ga db_args +db_args=( + '--database=-[Nominates a database. Defaults to the "default" database.]' +) + +typeset -ga noinput_args +noinput_args=( + '--noinput[tells Django to NOT prompt the user for input of any kind.]' +) + +typeset -ga no_init_data_args +no_init_data_args=( + '--no-initial-data[Tells Django not to load any initial data after database synchronization.]' +) + +typeset -ga tag_args +tag_args=( + '--tag=-[Run only checks labeled with given tag.]' + '--list-tags[List available tags.]' +) + +_managepy-check(){ + _arguments -s : \ + $tag_args \ + $nul_args && ret=0 +} + +_managepy-changepassword(){ + _arguments -s : \ + $db_args \ + $nul_args && ret=0 +} + +_managepy-createcachetable(){ + _arguments -s : \ + $db_args \ + $nul_args && ret=0 +} + +_managepy-createsuperuser(){ + _arguments -s : \ + '--username=-[Specifies the login for the superuser.]' \ + '--email=-[Specifies the email for the superuser.]' \ + $noinput_args \ + $db_args \ + $nul_args && ret=0 +} + +_managepy-collectstatic(){ + _arguments -s : \ + '--link[Create a symbolic link to each file instead of copying.]' \ + '--no-post-process[Do NOT post process collected files.]' \ + '--ignore=-[Ignore files or directories matching this glob-style pattern. Use multiple times to ignore more.]' \ + '--dry-run[Do everything except modify the filesystem.]' \ + '--clear[Clear the existing files using the storage before trying to copy or link the original file.]' \ + '--link[Create a symbolic link to each file instead of copying.]' \ + '--no-default-ignore[Do not ignore the common private glob-style patterns "CVS", ".*" and "*~".]' \ + $noinput_args \ + $nul_args && ret=0 +} + +_managepy-dbshell(){ + _arguments -s : \ + $db_args \ + $nul_args && ret=0 +} + +_managepy-diffsettings(){ + _arguments -s : \ + "--all[Display all settings, regardless of their value.]" + $nul_args && ret=0 +} + +_managepy-dumpdata(){ + _arguments -s : \ + '--format=-[Specifies the output serialization format for fixtures.]:format:(json yaml xml)' \ + '--indent=-[Specifies the indent level to use when pretty-printing output.]' \ + '--exclude=-[An app_label or app_label.ModelName to exclude (use multiple --exclude to exclude multiple apps/models).]' \ + '--natural-foreign[Use natural foreign keys if they are available.]' \ + '--natural-primary[Use natural primary keys if they are available.]' \ + "--all[Use Django's base manager to dump all models stored in the database.]" \ + '--pks=-[Only dump objects with given primary keys.]' \ + $db_args \ + $nul_args \ + '*::appname:_applist' && ret=0 +} + +_managepy-flush(){ + _arguments -s : \ + $no_init_data_args \ + $db_args \ + $noinput_args \ + $nul_args && ret=0 +} + +_managepy-help(){ + _arguments -s : \ + '*:command:_managepy_cmds' \ + $nul_args && ret=0 +} + +_managepy_cmds(){ + local line + local -a cmd + _call_program help-command ./manage.py help \ + |& sed -n '/^ /s/[(), ]/ /gp' \ + | while read -A line; do cmd=($line $cmd) done + _describe -t managepy-command 'manage.py command' cmd +} + +_managepy-inspectdb(){ + _arguments -s : \ + $db_args \ + $nul_args && ret=0 +} + +_managepy-loaddata(){ + _arguments -s : \ + '--ignorenonexistent[Ignores entries in the serialized data for fields that do not currently exist on the model.]' \ + '--app=-[Only look for fixtures in the specified app.]:appname:_applist' \ + '*::file:_files' \ + $db_args \ + $nul_args && ret=0 +} + +_managepy-makemessages(){ + _arguments -s : \ + '--locale=-[Creates or updates the message files for the given locale(s) (e.g. pt_BR).]' \ + '--domain=-[The domain of the message files (default: "django").]' \ + '--all[Updates the message files for all existing locales.]' \ + '--extension=-[The file extension(s) to examine (default: "html,txt", or "js" if the domain is "djangojs").]' \ + '--symlinks[Follows symlinks to directories when examining source code and templates for translation strings.]' \ + '--ignore=-[Ignore files or directories matching this glob-style pattern.]' \ + "--no-default-ignore[Don't ignore the common glob-style patterns 'CVS', '.*', '*~' and '*.pyc'.]" \ + "--no-wrap[Don't break long message lines into several lines.]" \ + "--no-location[Don't write '#: filename:line' lines.]" \ + '--no-obsolete[emove obsolete message strings.]' \ + '--keep-pot[Keep .pot file after making messages.]' \ + $nul_args && ret=0 +} +_managepy-makemigrations(){ + _arguments -s : \ + '--dry-run[Just show what migrations would be made]' \ + '--merge[Enable fixing of migration conflicts.]' \ + '--empty[Create an empty migration.]' \ + $noinput_args \ + $nul_args && ret=0 +} +_managepy-migrate(){ + _arguments -s : \ + '--fake[Mark migrations as run without actually running them]' \ + '--list[Show a list of all known migrations and which are applied]' \ + $no_init_data_args \ + $noinput_args \ + $db_args \ + $nul_args && ret=0 +} + +_managepy-runfcgi(){ + local state + + local fcgi_opts + fcgi_opts=( + 'protocol[fcgi, scgi, ajp, ... (default fcgi)]:protocol:(fcgi scgi ajp)' + 'host[hostname to listen on..]:' + 'port[port to listen on.]:' + 'socket[UNIX socket to listen on.]:file:_files' + 'method[prefork or threaded (default prefork)]:method:(prefork threaded)' + 'maxrequests[number of requests a child handles before it is killed and a new child is forked (0 = no limit).]:' + 'maxspare[max number of spare processes / threads.]:' + 'minspare[min number of spare processes / threads.]:' + 'maxchildren[hard limit number of processes / threads.]:' + 'daemonize[whether to detach from terminal.]:boolean:(False True)' + 'pidfile[write the spawned process-id to this file.]:file:_files' + 'workdir[change to this directory when daemonizing.]:directory:_files' + 'outlog[write stdout to this file.]:file:_files' + 'errlog[write stderr to this file.]:file:_files' + ) + + _arguments -s : \ + $nul_args \ + '*: :_values "FCGI Setting" $fcgi_opts' && ret=0 +} + +_managepy-runserver(){ + _arguments -s : \ + '--ipv6[Tells Django to use an IPv6 address.]' \ + '--nothreading[Tells Django to NOT use threading.]' \ + '--noreload[Tells Django to NOT use the auto-reloader.]' \ + '--nostatic[Tells Django to NOT automatically serve static files at STATIC_URL.]' \ + '--insecure[Allows serving static files even if DEBUG is False.]' \ + $nul_args && ret=0 +} + +_managepy-shell(){ + _arguments -s : \ + '--plain[Tells Django to use plain Python, not IPython.]' \ + '--no-startup[When using plain Python, ignore the PYTHONSTARTUP environment variable and ~/.pythonrc.py script.]' \ + '--interface=-[Specify an interactive interpreter interface.]:INTERFACE:((ipython bpython))' \ + $nul_args && ret=0 +} + +_managepy-sql(){ + _arguments -s : \ + $db_args \ + $nul_args && ret=0 +} + +_managepy-sqlall(){ + _arguments -s : \ + $db_args \ + $nul_args && ret=0 +} + +_managepy-sqlclear(){ + _arguments -s : \ + $db_args \ + $nul_args && ret=0 +} + +_managepy-sqlcustom(){ + _arguments -s : \ + $db_args \ + $nul_args && ret=0 +} + +_managepy-dropindexes(){ + _arguments -s : \ + $db_args \ + $nul_args && ret=0 +} + +_managepy-sqlflush(){ + _arguments -s : \ + $db_args \ + $nul_args && ret=0 +} + +_managepy-sqlindexes(){ + _arguments -s : \ + $db_args \ + $nul_args && ret=0 +} + +_managepy-sqlinitialdata(){ + _arguments -s : \ + $nul_args && ret=0 +} + +_managepy-sqlsequencereset(){ + _arguments -s : \ + $db_args \ + $nul_args && ret=0 +} + +_managepy-squashmigrations(){ + _arguments -s : \ + '--no-optimize[Do not try to optimize the squashed operations.]' \ + $noinput_args \ + $nul_args && ret=0 +} + +_managepy-startapp(){ + _arguments -s : \ + $start_args \ + $nul_args && ret=0 +} +_managepy-startproject(){ + _arguments -s : \ + $start_args \ + $nul_args && ret=0 +} + +_managepy-syncdb() { + _arguments -s : \ + $noinput_args \ + $no_init_data_args \ + $db_args \ + $nul_args && ret=0 +} + +_managepy-test() { + _arguments -s : \ + '--failfast[Tells Django to stop running the test suite after first failed test.]' \ + '--testrunner=-[Tells Django to use specified test runner class instead of the one specified by the TEST_RUNNER setting.]' \ + '--liveserver=-[Overrides the default address where the live server (used with LiveServerTestCase) is expected to run from. The default value is localhost:8081.]' \ + '--top-level-directory=-[Top level of project for unittest discovery.]' \ + '--pattern=-[The test matching pattern. Defaults to test*.py.]:' \ + $noinput_args \ + '*::appname:_applist' \ + $nul_args && ret=0 +} + +_managepy-testserver() { + _arguments -s : \ + '--addrport=-[port number or ipaddr:port to run the server on.]' \ + '--ipv6[Tells Django to use an IPv6 address.]' \ + $noinput_args \ + '*::fixture:_files' \ + $nul_args && ret=0 +} + +_managepy-validate() { + _arguments -s : \ + $tag_args \ + $nul_args && ret=0 +} + +_managepy-commands() { + local -a commands + + commands=( + "changepassword:Change a user's password for django.contrib.auth." + 'check:Checks the entire Django project for potential problems.' + 'compilemessages:Compiles .po files to .mo files for use with builtin gettext support.' + 'createcachetable:Creates the table needed to use the SQL cache backend.' + 'createsuperuser:Used to create a superuser.' + 'collectstatic:Collect static files in a single location.' + 'dbshell:Runs the command-line client for the current DATABASE_ENGINE.' + "diffsettings:Displays differences between the current settings.py and Django's default settings." + 'dumpdata:Output the contents of the database as a fixture of the given format.' + 'flush:Executes ``sqlflush`` on the current database.' + 'help:manage.py help.' + 'inspectdb:Introspects the database tables in the given database and outputs a Django model module.' + 'loaddata:Installs the named fixture(s) in the database.' + 'makemessages:Runs over the entire source tree of the current directory and pulls out all strings marked for translation.' + 'makemigrations:Creates new migration(s) for apps.' + 'migrate:Updates database schema. Manages both apps with migrations and those without.' + 'runfcgi:Run this project as a fastcgi (or some other protocol supported by flup) application,' + 'runserver:Starts a lightweight Web server for development.' + 'shell:Runs a Python interactive interpreter.' + 'showmigrations:Shows all available migrations for the current project.' + 'sql:Prints the CREATE TABLE SQL statements for the given app name(s).' + 'sqlall:Prints the CREATE TABLE, custom SQL and CREATE INDEX SQL statements for the given model module name(s).' + 'sqlclear:Prints the DROP TABLE SQL statements for the given app name(s).' + 'sqlcustom:Prints the custom table modifying SQL statements for the given app name(s).' + 'sqldropindexes:Prints the DROP INDEX SQL statements for the given model module name(s).' + 'sqlflush:Returns a list of the SQL statements required to return all tables in the database to the state they were in just after they were installed.' + 'sqlindexes:Prints the CREATE INDEX SQL statements for the given model module name(s).' + "sqlinitialdata:RENAMED: see 'sqlcustom'" + 'sqlsequencereset:Prints the SQL statements for resetting sequences for the given app name(s).' + 'squashmigrations:Squashes an existing set of migrations (from first until specified) into a single new one.' + "startapp:Creates a Django app directory structure for the given app name in this project's directory." + "startproject:Creates a Django project directory structure for the given project name in this current directory." + "syncdb:Create the database tables for all apps in INSTALLED_APPS whose tables haven't already been created." + 'test:Runs the test suite for the specified applications, or the entire site if no apps are specified.' + 'testserver:Runs a development server with data from the given fixture(s).' + 'validate:Validates all installed models.' + ) + + _describe -t commands 'manage.py command' commands && ret=0 +} + +_applist() { + local line + local -a apps + _call_program help-command "python -c \"import os.path as op, re, django.conf, sys;\\ + bn=op.basename(op.abspath(op.curdir));[sys\\ + .stdout.write(str(re.sub(r'^%s\.(.*?)$' % + bn, r'\1', i)) + '\n') for i in django.conf.settings.\\ + INSTALLED_APPS if re.match(r'^%s' % bn, i)]\"" \ + | while read -A line; do apps=($line $apps) done + _values 'Application' $apps && ret=0 +} + +_managepy() { + local curcontext=$curcontext ret=1 + + if ((CURRENT == 2)); then + _managepy-commands + else + shift words + (( CURRENT -- )) + curcontext="${curcontext%:*:*}:managepy-$words[1]:" + _call_function ret _managepy-$words[1] + fi +} + +compdef _managepy manage.py +compdef _managepy django +compdef _managepy django-admin +compdef _managepy django-admin.py +compdef _managepy django-manage diff --git a/oh-my-zsh/.oh-my-zsh/plugins/dnf/README.md b/oh-my-zsh/.oh-my-zsh/plugins/dnf/README.md new file mode 100644 index 0000000..f9ef496 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/dnf/README.md @@ -0,0 +1,25 @@ +## Description + +This plugin makes `dnf` usage easier by adding aliases for the most +common commands. + +`dnf` is the new package manager for RPM-based distributions, which +replaces `yum`. + +## Aliases + +| Alias | Command | Description | +|-------|-------------------------|--------------------------| +| dnfl | `dnf list` | List packages | +| dnfli | `dnf list installed` | List installed packages | +| dnfgl | `dnf grouplist` | List package groups | +| dnfmc | `dnf makecache` | Generate metadata cache | +| dnfp | `dnf info` | Show package information | +| dnfs | `dnf search` | Search package | +| **Use `sudo`** | +| dnfu | `sudo dnf upgrade` | Upgrade package | +| dnfi | `sudo dnf install` | Install package | +| dnfgi | `sudo dnf groupinstall` | Install package group | +| dnfr | `sudo dnf remove` | Remove package | +| dnfgr | `sudo dnf groupremove` | Remove package group | +| dnfc | `sudo dnf clean all` | Clean cache | diff --git a/oh-my-zsh/.oh-my-zsh/plugins/dnf/dnf.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/dnf/dnf.plugin.zsh new file mode 100644 index 0000000..653ce7d --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/dnf/dnf.plugin.zsh @@ -0,0 +1,15 @@ +## Aliases + +alias dnfl="dnf list" # List packages +alias dnfli="dnf list installed" # List installed packages +alias dnfgl="dnf grouplist" # List package groups +alias dnfmc="dnf makecache" # Generate metadata cache +alias dnfp="dnf info" # Show package information +alias dnfs="dnf search" # Search package + +alias dnfu="sudo dnf upgrade" # Upgrade package +alias dnfi="sudo dnf install" # Install package +alias dnfgi="sudo dnf groupinstall" # Install package group +alias dnfr="sudo dnf remove" # Remove package +alias dnfgr="sudo dnf groupremove" # Remove package group +alias dnfc="sudo dnf clean all" # Clean cache diff --git a/oh-my-zsh/.oh-my-zsh/plugins/docker-compose/README.md b/oh-my-zsh/.oh-my-zsh/plugins/docker-compose/README.md new file mode 100644 index 0000000..07a87bc --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/docker-compose/README.md @@ -0,0 +1,29 @@ +# Docker-compose + +This plugin provides completion for [docker-compose](https://docs.docker.com/compose/) as well as some +aliases for frequent docker-compose commands. + +To use it, add docker-compose to the plugins array of your zshrc file: +``` +plugins=(... docker-compose) +``` + +## Aliases + +| Alias | Command | Description | +|-----------|--------------------------|------------------------------------------------------------------| +| dco | `docker-compose` | Docker-compose main command | +| dcb | `docker-compose build` | Build containers | +| dce | `docker-compose exec` | Execute command inside a container | +| dcps | `docker-compose ps` | List containers | +| dcrestart | `docker-compose restart` | Restart container | +| dcrm | `docker-compose rm` | Remove container | +| dcr | `docker-compose run` | Run a command in container | +| dcstop | `docker-compose stop` | Stop a container | +| dcup | `docker-compose up` | Build, (re)create, start, and attach to containers for a service | +| dcupd | `docker-compose up -d` | Same as `dcup`, but starts as daemon | +| dcdn | `docker-compose down` | Stop and remove containers | +| dcl | `docker-compose logs` | Show logs of container | +| dclf | `docker-compose logs -f` | Show logs and follow output | +| dcpull | `docker-compose pull` | Pull image of a service | +| dcstart | `docker-compose start` | Start a container | diff --git a/oh-my-zsh/.oh-my-zsh/plugins/docker-compose/_docker-compose b/oh-my-zsh/.oh-my-zsh/plugins/docker-compose/_docker-compose new file mode 100644 index 0000000..c0a54cc --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/docker-compose/_docker-compose @@ -0,0 +1,475 @@ +#compdef docker-compose + +# Description +# ----------- +# zsh completion for docker-compose +# ------------------------------------------------------------------------- +# Authors +# ------- +# * Steve Durrheimer +# ------------------------------------------------------------------------- +# Inspiration +# ----------- +# * @albers docker-compose bash completion script +# * @felixr docker zsh completion script : https://github.com/felixr/docker-zsh-completion +# ------------------------------------------------------------------------- + +__docker-compose_q() { + docker-compose 2>/dev/null $compose_options "$@" +} + +# All services defined in docker-compose.yml +__docker-compose_all_services_in_compose_file() { + local already_selected + local -a services + already_selected=$(echo $words | tr " " "|") + __docker-compose_q config --services \ + | grep -Ev "^(${already_selected})$" +} + +# All services, even those without an existing container +__docker-compose_services_all() { + [[ $PREFIX = -* ]] && return 1 + integer ret=1 + services=$(__docker-compose_all_services_in_compose_file) + _alternative "args:services:($services)" && ret=0 + + return ret +} + +# All services that have an entry with the given key in their docker-compose.yml section +__docker-compose_services_with_key() { + local already_selected + local -a buildable + already_selected=$(echo $words | tr " " "|") + # flatten sections to one line, then filter lines containing the key and return section name. + __docker-compose_q config \ + | sed -n -e '/^services:/,/^[^ ]/p' \ + | sed -n 's/^ //p' \ + | awk '/^[a-zA-Z0-9]/{printf "\n"};{printf $0;next;}' \ + | grep " \+$1:" \ + | cut -d: -f1 \ + | grep -Ev "^(${already_selected})$" +} + +# All services that are defined by a Dockerfile reference +__docker-compose_services_from_build() { + [[ $PREFIX = -* ]] && return 1 + integer ret=1 + buildable=$(__docker-compose_services_with_key build) + _alternative "args:buildable services:($buildable)" && ret=0 + + return ret +} + +# All services that are defined by an image +__docker-compose_services_from_image() { + [[ $PREFIX = -* ]] && return 1 + integer ret=1 + pullable=$(__docker-compose_services_with_key image) + _alternative "args:pullable services:($pullable)" && ret=0 + + return ret +} + +__docker-compose_get_services() { + [[ $PREFIX = -* ]] && return 1 + integer ret=1 + local kind + declare -a running paused stopped lines args services + + docker_status=$(docker ps > /dev/null 2>&1) + if [ $? -ne 0 ]; then + _message "Error! Docker is not running." + return 1 + fi + + kind=$1 + shift + [[ $kind =~ (stopped|all) ]] && args=($args -a) + + lines=(${(f)"$(_call_program commands docker $docker_options ps $args)"}) + services=(${(f)"$(_call_program commands docker-compose 2>/dev/null $compose_options ps -q)"}) + + # Parse header line to find columns + local i=1 j=1 k header=${lines[1]} + declare -A begin end + while (( j < ${#header} - 1 )); do + i=$(( j + ${${header[$j,-1]}[(i)[^ ]]} - 1 )) + j=$(( i + ${${header[$i,-1]}[(i) ]} - 1 )) + k=$(( j + ${${header[$j,-1]}[(i)[^ ]]} - 2 )) + begin[${header[$i,$((j-1))]}]=$i + end[${header[$i,$((j-1))]}]=$k + done + lines=(${lines[2,-1]}) + + # Container ID + local line s name + local -a names + for line in $lines; do + if [[ ${services[@]} == *"${line[${begin[CONTAINER ID]},${end[CONTAINER ID]}]%% ##}"* ]]; then + names=(${(ps:,:)${${line[${begin[NAMES]},-1]}%% *}}) + for name in $names; do + s="${${name%_*}#*_}:${(l:15:: :::)${${line[${begin[CREATED]},${end[CREATED]}]/ ago/}%% ##}}" + s="$s, ${line[${begin[CONTAINER ID]},${end[CONTAINER ID]}]%% ##}" + s="$s, ${${${line[${begin[IMAGE]},${end[IMAGE]}]}/:/\\:}%% ##}" + if [[ ${line[${begin[STATUS]},${end[STATUS]}]} = Exit* ]]; then + stopped=($stopped $s) + else + if [[ ${line[${begin[STATUS]},${end[STATUS]}]} = *\(Paused\)* ]]; then + paused=($paused $s) + fi + running=($running $s) + fi + done + fi + done + + [[ $kind =~ (running|all) ]] && _describe -t services-running "running services" running "$@" && ret=0 + [[ $kind =~ (paused|all) ]] && _describe -t services-paused "paused services" paused "$@" && ret=0 + [[ $kind =~ (stopped|all) ]] && _describe -t services-stopped "stopped services" stopped "$@" && ret=0 + + return ret +} + +__docker-compose_pausedservices() { + [[ $PREFIX = -* ]] && return 1 + __docker-compose_get_services paused "$@" +} + +__docker-compose_stoppedservices() { + [[ $PREFIX = -* ]] && return 1 + __docker-compose_get_services stopped "$@" +} + +__docker-compose_runningservices() { + [[ $PREFIX = -* ]] && return 1 + __docker-compose_get_services running "$@" +} + +__docker-compose_services() { + [[ $PREFIX = -* ]] && return 1 + __docker-compose_get_services all "$@" +} + +__docker-compose_caching_policy() { + oldp=( "$1"(Nmh+1) ) # 1 hour + (( $#oldp )) +} + +__docker-compose_commands() { + local cache_policy + + zstyle -s ":completion:${curcontext}:" cache-policy cache_policy + if [[ -z "$cache_policy" ]]; then + zstyle ":completion:${curcontext}:" cache-policy __docker-compose_caching_policy + fi + + if ( [[ ${+_docker_compose_subcommands} -eq 0 ]] || _cache_invalid docker_compose_subcommands) \ + && ! _retrieve_cache docker_compose_subcommands; + then + local -a lines + lines=(${(f)"$(_call_program commands docker-compose 2>&1)"}) + _docker_compose_subcommands=(${${${lines[$((${lines[(i)Commands:]} + 1)),${lines[(I) *]}]}## #}/ ##/:}) + (( $#_docker_compose_subcommands > 0 )) && _store_cache docker_compose_subcommands _docker_compose_subcommands + fi + _describe -t docker-compose-commands "docker-compose command" _docker_compose_subcommands +} + +__docker-compose_subcommand() { + local opts_help opts_force_recreate opts_no_recreate opts_no_build opts_remove_orphans opts_timeout opts_no_color opts_no_deps + + opts_help='(: -)--help[Print usage]' + opts_force_recreate="(--no-recreate)--force-recreate[Recreate containers even if their configuration and image haven't changed. Incompatible with --no-recreate.]" + opts_no_recreate="(--force-recreate)--no-recreate[If containers already exist, don't recreate them. Incompatible with --force-recreate.]" + opts_no_build="(--build)--no-build[Don't build an image, even if it's missing.]" + opts_remove_orphans="--remove-orphans[Remove containers for services not defined in the Compose file]" + opts_timeout=('(-t --timeout)'{-t,--timeout}"[Specify a shutdown timeout in seconds. (default: 10)]:seconds: ") + opts_no_color='--no-color[Produce monochrome output.]' + opts_no_deps="--no-deps[Don't start linked services.]" + + integer ret=1 + + case "$words[1]" in + (build) + _arguments \ + $opts_help \ + "*--build-arg=[Set build-time variables for one service.]:=: " \ + '--force-rm[Always remove intermediate containers.]' \ + '--memory[Memory limit for the build container.]' \ + '--no-cache[Do not use cache when building the image.]' \ + '--pull[Always attempt to pull a newer version of the image.]' \ + '*:services:__docker-compose_services_from_build' && ret=0 + ;; + (bundle) + _arguments \ + $opts_help \ + '--push-images[Automatically push images for any services which have a `build` option specified.]' \ + '(--output -o)'{--output,-o}'[Path to write the bundle file to. Defaults to ".dab".]:file:_files' && ret=0 + ;; + (config) + _arguments \ + $opts_help \ + '(--quiet -q)'{--quiet,-q}"[Only validate the configuration, don't print anything.]" \ + '--resolve-image-digests[Pin image tags to digests.]' \ + '--services[Print the service names, one per line.]' \ + '--volumes[Print the volume names, one per line.]' && ret=0 + ;; + (create) + _arguments \ + $opts_help \ + $opts_force_recreate \ + $opts_no_recreate \ + $opts_no_build \ + "(--no-build)--build[Build images before creating containers.]" \ + '*:services:__docker-compose_services_all' && ret=0 + ;; + (down) + _arguments \ + $opts_help \ + "--rmi[Remove images. Type must be one of: 'all': Remove all images used by any service. 'local': Remove only images that don't have a custom tag set by the \`image\` field.]:type:(all local)" \ + '(-v --volumes)'{-v,--volumes}"[Remove named volumes declared in the \`volumes\` section of the Compose file and anonymous volumes attached to containers.]" \ + $opts_remove_orphans && ret=0 + ;; + (events) + _arguments \ + $opts_help \ + '--json[Output events as a stream of json objects]' \ + '*:services:__docker-compose_services_all' && ret=0 + ;; + (exec) + _arguments \ + $opts_help \ + '-d[Detached mode: Run command in the background.]' \ + '--privileged[Give extended privileges to the process.]' \ + '(-u --user)'{-u,--user=}'[Run the command as this user.]:username:_users' \ + '-T[Disable pseudo-tty allocation. By default `docker-compose exec` allocates a TTY.]' \ + '--index=[Index of the container if there are multiple instances of a service \[default: 1\]]:index: ' \ + '(-):running services:__docker-compose_runningservices' \ + '(-):command: _command_names -e' \ + '*::arguments: _normal' && ret=0 + ;; + (help) + _arguments ':subcommand:__docker-compose_commands' && ret=0 + ;; + (images) + _arguments \ + $opts_help \ + '-q[Only display IDs]' \ + '*:services:__docker-compose_services_all' && ret=0 + ;; + (kill) + _arguments \ + $opts_help \ + '-s[SIGNAL to send to the container. Default signal is SIGKILL.]:signal:_signals' \ + '*:running services:__docker-compose_runningservices' && ret=0 + ;; + (logs) + _arguments \ + $opts_help \ + '(-f --follow)'{-f,--follow}'[Follow log output]' \ + $opts_no_color \ + '--tail=[Number of lines to show from the end of the logs for each container.]:number of lines: ' \ + '(-t --timestamps)'{-t,--timestamps}'[Show timestamps]' \ + '*:services:__docker-compose_services_all' && ret=0 + ;; + (pause) + _arguments \ + $opts_help \ + '*:running services:__docker-compose_runningservices' && ret=0 + ;; + (port) + _arguments \ + $opts_help \ + '--protocol=[tcp or udp \[default: tcp\]]:protocol:(tcp udp)' \ + '--index=[index of the container if there are multiple instances of a service \[default: 1\]]:index: ' \ + '1:running services:__docker-compose_runningservices' \ + '2:port:_ports' && ret=0 + ;; + (ps) + _arguments \ + $opts_help \ + '-q[Only display IDs]' \ + '*:services:__docker-compose_services_all' && ret=0 + ;; + (pull) + _arguments \ + $opts_help \ + '--ignore-pull-failures[Pull what it can and ignores images with pull failures.]' \ + '*:services:__docker-compose_services_from_image' && ret=0 + ;; + (push) + _arguments \ + $opts_help \ + '--ignore-push-failures[Push what it can and ignores images with push failures.]' \ + '*:services:__docker-compose_services' && ret=0 + ;; + (rm) + _arguments \ + $opts_help \ + '(-f --force)'{-f,--force}"[Don't ask to confirm removal]" \ + '-v[Remove any anonymous volumes attached to containers]' \ + '*:stopped services:__docker-compose_stoppedservices' && ret=0 + ;; + (run) + _arguments \ + $opts_help \ + $opts_no_deps \ + '-d[Detached mode: Run container in the background, print new container name.]' \ + '*-e[KEY=VAL Set an environment variable (can be used multiple times)]:environment variable KEY=VAL: ' \ + '--entrypoint[Overwrite the entrypoint of the image.]:entry point: ' \ + '--name=[Assign a name to the container]:name: ' \ + '(-p --publish)'{-p,--publish=}"[Publish a container's port(s) to the host]" \ + '--rm[Remove container after run. Ignored in detached mode.]' \ + "--service-ports[Run command with the service's ports enabled and mapped to the host.]" \ + '-T[Disable pseudo-tty allocation. By default `docker-compose run` allocates a TTY.]' \ + '(-u --user)'{-u,--user=}'[Run as specified username or uid]:username or uid:_users' \ + '(-v --volume)*'{-v,--volume=}'[Bind mount a volume]:volume: ' \ + '(-w --workdir)'{-w,--workdir=}'[Working directory inside the container]:workdir: ' \ + '(-):services:__docker-compose_services' \ + '(-):command: _command_names -e' \ + '*::arguments: _normal' && ret=0 + ;; + (scale) + _arguments \ + $opts_help \ + $opts_timeout \ + '*:running services:__docker-compose_runningservices' && ret=0 + ;; + (start) + _arguments \ + $opts_help \ + '*:stopped services:__docker-compose_stoppedservices' && ret=0 + ;; + (stop|restart) + _arguments \ + $opts_help \ + $opts_timeout \ + '*:running services:__docker-compose_runningservices' && ret=0 + ;; + (top) + _arguments \ + $opts_help \ + '*:running services:__docker-compose_runningservices' && ret=0 + ;; + (unpause) + _arguments \ + $opts_help \ + '*:paused services:__docker-compose_pausedservices' && ret=0 + ;; + (up) + _arguments \ + $opts_help \ + '(--abort-on-container-exit)-d[Detached mode: Run containers in the background, print new container names. Incompatible with --abort-on-container-exit.]' \ + $opts_no_color \ + $opts_no_deps \ + $opts_force_recreate \ + $opts_no_recreate \ + $opts_no_build \ + "(--no-build)--build[Build images before starting containers.]" \ + "(-d)--abort-on-container-exit[Stops all containers if any container was stopped. Incompatible with -d.]" \ + '(-t --timeout)'{-t,--timeout}"[Use this timeout in seconds for container shutdown when attached or when containers are already running. (default: 10)]:seconds: " \ + $opts_remove_orphans \ + '*:services:__docker-compose_services_all' && ret=0 + ;; + (version) + _arguments \ + $opts_help \ + "--short[Shows only Compose's version number.]" && ret=0 + ;; + (*) + _message 'Unknown sub command' && ret=1 + ;; + esac + + return ret +} + +_docker-compose() { + # Support for subservices, which allows for `compdef _docker docker-shell=_docker_containers`. + # Based on /usr/share/zsh/functions/Completion/Unix/_git without support for `ret`. + if [[ $service != docker-compose ]]; then + _call_function - _$service + return + fi + + local curcontext="$curcontext" state line + integer ret=1 + typeset -A opt_args + + local file_description + + if [[ -n ${words[(r)-f]} || -n ${words[(r)--file]} ]] ; then + file_description="Specify an override docker-compose file (default: docker-compose.override.yml)" + else + file_description="Specify an alternate docker-compose file (default: docker-compose.yml)" + fi + + _arguments -C \ + '(- :)'{-h,--help}'[Get help]' \ + '*'{-f,--file}"[${file_description}]:file:_files -g '*.yml'" \ + '(-p --project-name)'{-p,--project-name}'[Specify an alternate project name (default: directory name)]:project name:' \ + '--verbose[Show more output]' \ + '(- :)'{-v,--version}'[Print version and exit]' \ + '(-H --host)'{-H,--host}'[Daemon socket to connect to]:host:' \ + '--tls[Use TLS; implied by --tlsverify]' \ + '--tlscacert=[Trust certs signed only by this CA]:ca path:' \ + '--tlscert=[Path to TLS certificate file]:client cert path:' \ + '--tlskey=[Path to TLS key file]:tls key path:' \ + '--tlsverify[Use TLS and verify the remote]' \ + "--skip-hostname-check[Don't check the daemon's hostname against the name specified in the client certificate (for example if your docker host is an IP address)]" \ + '(-): :->command' \ + '(-)*:: :->option-or-argument' && ret=0 + + local -a relevant_compose_flags relevant_docker_flags compose_options docker_options + + relevant_compose_flags=( + "--file" "-f" + "--host" "-H" + "--project-name" "-p" + "--tls" + "--tlscacert" + "--tlscert" + "--tlskey" + "--tlsverify" + "--skip-hostname-check" + ) + + relevant_docker_flags=( + "--host" "-H" + "--tls" + "--tlscacert" + "--tlscert" + "--tlskey" + "--tlsverify" + ) + + for k in "${(@k)opt_args}"; do + if [[ -n "${relevant_docker_flags[(r)$k]}" ]]; then + docker_options+=$k + if [[ -n "$opt_args[$k]" ]]; then + docker_options+=$opt_args[$k] + fi + fi + if [[ -n "${relevant_compose_flags[(r)$k]}" ]]; then + compose_options+=$k + if [[ -n "$opt_args[$k]" ]]; then + compose_options+=$opt_args[$k] + fi + fi + done + + case $state in + (command) + __docker-compose_commands && ret=0 + ;; + (option-or-argument) + curcontext=${curcontext%:*:*}:docker-compose-$words[1]: + __docker-compose_subcommand && ret=0 + ;; + esac + + return ret +} + +_docker-compose "$@" diff --git a/oh-my-zsh/.oh-my-zsh/plugins/docker-compose/docker-compose.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/docker-compose/docker-compose.plugin.zsh new file mode 100644 index 0000000..9ffe1ed --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/docker-compose/docker-compose.plugin.zsh @@ -0,0 +1,26 @@ +# Authors: +# https://github.com/tristola +# +# Docker-compose related zsh aliases + +# Aliases ################################################################### + +# Use dco as alias for docker-compose, since dc on *nix is 'dc - an arbitrary precision calculator' +# https://www.gnu.org/software/bc/manual/dc-1.05/html_mono/dc.html + +alias dco='docker-compose' + +alias dcb='docker-compose build' +alias dce='docker-compose exec' +alias dcps='docker-compose ps' +alias dcrestart='docker-compose restart' +alias dcrm='docker-compose rm' +alias dcr='docker-compose run' +alias dcstop='docker-compose stop' +alias dcup='docker-compose up' +alias dcupd='docker-compose up -d' +alias dcdn='docker-compose down' +alias dcl='docker-compose logs' +alias dclf='docker-compose logs -f' +alias dcpull='docker-compose pull' +alias dcstart='docker-compose start' diff --git a/oh-my-zsh/.oh-my-zsh/plugins/docker-machine/README.md b/oh-my-zsh/.oh-my-zsh/plugins/docker-machine/README.md new file mode 100644 index 0000000..308a6cf --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/docker-machine/README.md @@ -0,0 +1,19 @@ +# docker-machine plugin for oh my zsh + +### Usage + +#### docker-vm +Will create a docker-machine with the name "dev" (required only once) +To create a second machine call "docker-vm foobar" or pass any other name + +#### docker-up +This will start your "dev" docker-machine (if necessary) and set it as the active one +To start a named machine use "docker-up foobar" + +#### docker-switch dev +Use this to activate a running docker-machine (or to switch between multiple machines) +You need to call either this or docker-up when opening a new terminal + +#### docker-stop +This will stop your "dev" docker-machine +To stop a named machine use "docker-stop foobar" \ No newline at end of file diff --git a/oh-my-zsh/.oh-my-zsh/plugins/docker-machine/_docker-machine b/oh-my-zsh/.oh-my-zsh/plugins/docker-machine/_docker-machine new file mode 100644 index 0000000..7c19ba8 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/docker-machine/_docker-machine @@ -0,0 +1,359 @@ +#compdef docker-machine +# Description +# ----------- +# zsh completion for docker-machine +# https://github.com/leonhartX/docker-machine-zsh-completion +# ------------------------------------------------------------------------- +# Version +# ------- +# 0.1.1 +# ------------------------------------------------------------------------- +# Authors +# ------- +# * Ke Xu +# ------------------------------------------------------------------------- +# Inspiration +# ----------- +# * @sdurrheimer docker-compose-zsh-completion https://github.com/sdurrheimer/docker-compose-zsh-completion +# * @ilkka _docker-machine + + +__docker-machine_get_hosts() { + [[ $PREFIX = -* ]] && return 1 + local state + declare -a hosts + state=$1; shift + if [[ $state != all ]]; then + hosts=(${(f)"$(_call_program commands docker-machine ls -q --filter state=$state)"}) + else + hosts=(${(f)"$(_call_program commands docker-machine ls -q)"}) + fi + _describe 'host' hosts "$@" && ret=0 + return ret +} + +__docker-machine_hosts_with_state() { + declare -a hosts + hosts=(${(f)"$(_call_program commands docker-machine ls -f '{{.Name}}\:{{.DriverName}}\({{.State}}\)\ {{.URL}}')"}) + _describe 'host' hosts +} + +__docker-machine_hosts_all() { + __docker-machine_get_hosts all "$@" +} + +__docker-machine_hosts_running() { + __docker-machine_get_hosts Running "$@" +} + +__docker-machine_get_swarm() { + declare -a swarms + swarms=(${(f)"$(_call_program commands docker-machine ls -f {{.Swarm}} | awk '{print $1}')"}) + _describe 'swarm' swarms +} + +__docker-machine_hosts_and_files() { + _alternative "hosts:host:__docker-machine_hosts_all -qS ':'" 'files:files:_path_files' +} + +__docker-machine_filters() { + [[ $PREFIX = -* ]] && return 1 + integer ret=1 + + if compset -P '*='; then + case "${${words[-1]%=*}#*=}" in + (driver) + _describe -t driver-filter-opts "driver filter" opts_driver && ret=0 + ;; + (swarm) + __docker-machine_get_swarm && ret=0 + ;; + (state) + opts_state=('Running' 'Paused' 'Saved' 'Stopped' 'Stopping' 'Starting' 'Error') + _describe -t state-filter-opts "state filter" opts_state && ret=0 + ;; + (name) + __docker-machine_hosts_all && ret=0 + ;; + (label) + _message 'label' && ret=0 + ;; + *) + _message 'value' && ret=0 + ;; + esac + else + opts=('driver' 'swarm' 'state' 'name' 'label') + _describe -t filter-opts "filter" opts -qS "=" && ret=0 + fi + return ret +} + +__get_swarm_discovery() { + declare -a masters serivces + local service + services=() + masters=($(docker-machine ls -f {{.Swarm}} |grep '(master)' |awk '{print $1}')) + for master in $masters; do + service=${${${(f)"$(_call_program commands docker-machine inspect -f '{{.HostOptions.SwarmOptions.Discovery}}:{{.Name}}' $master)"}/:/\\:}} + services=($services $service) + done + _describe -t services "swarm service" services && ret=0 + return ret +} + +__get_create_argument() { + typeset -g docker_machine_driver + if [[ CURRENT -le 2 ]]; then + docker_machine_driver="none" + elif [[ CURRENT > 2 && $words[CURRENT-2] = '-d' || $words[CURRENT-2] = '--driver' ]]; then + docker_machine_driver=$words[CURRENT-1] + elif [[ $words[CURRENT-1] =~ '^(-d|--driver)=' ]]; then + docker_machine_driver=${${words[CURRENT-1]}/*=/} + fi + local driver_opt_cmd + local -a opts_provider opts_common opts_read_argument + opts_read_argument=( + ": :->argument" + ) + opts_common=( + $opts_help \ + '(--driver -d)'{--driver=,-d=}'[Driver to create machine with]:dirver:->driver-option' \ + '--engine-install-url=[Custom URL to use for engine installation]:url' \ + '*--engine-opt=[Specify arbitrary flags to include with the created engine in the form flag=value]:flag' \ + '*--engine-insecure-registry=[Specify insecure registries to allow with the created engine]:registry' \ + '*--engine-registry-mirror=[Specify registry mirrors to use]:mirror' \ + '*--engine-label=[Specify labels for the created engine]:label' \ + '--engine-storage-driver=[Specify a storage driver to use with the engine]:storage-driver:->storage-driver-option' \ + '*--engine-env=[Specify environment variables to set in the engine]:environment' \ + '--swarm[Configure Machine with Swarm]' \ + '--swarm-image=[Specify Docker image to use for Swarm]:image' \ + '--swarm-master[Configure Machine to be a Swarm master]' \ + '--swarm-discovery=[Discovery service to use with Swarm]:service:->swarm-service' \ + '--swarm-strategy=[Define a default scheduling strategy for Swarm]:strategy:(spread binpack random)' \ + '*--swarm-opt=[Define arbitrary flags for swarm]:flag' \ + '*--swarm-join-opt=[Define arbitrary flags for Swarm join]:flag' \ + '--swarm-host=[ip/socket to listen on for Swarm master]:host' \ + '--swarm-addr=[addr to advertise for Swarm (default: detect and use the machine IP)]:address' \ + '--swarm-experimental[Enable Swarm experimental features]' \ + '*--tls-san=[Support extra SANs for TLS certs]:option' + ) + driver_opt_cmd="docker-machine create -d $docker_machine_driver | grep $docker_machine_driver | sed -e 's/\(--.*\)\ *\[\1[^]]*\]/*\1/g' -e 's/\(\[[^]]*\)/\\\\\\1\\\\/g' -e 's/\".*\"\(.*\)/\1/g' | awk '{printf \"%s[\", \$1; for(i=2;i<=NF;i++) {printf \"%s \", \$i}; print \"]\"}'" + if [[ $docker_machine_driver != "none" ]]; then + opts_provider=(${(f)"$(_call_program commands $driver_opt_cmd)"}) + _arguments \ + $opts_provider \ + $opts_read_argument \ + $opts_common && ret=0 + else + _arguments $opts_common && ret=0 + fi + case $state in + (driver-option) + _describe -t driver-option "driver" opts_driver && ret=0 + ;; + (storage-driver-option) + _describe -t storage-driver-option "storage driver" opts_storage_driver && ret=0 + ;; + (swarm-service) + __get_swarm_discovery && ret=0 + ;; + (argument) + ret=0 + ;; + esac + return ret +} + + +__docker-machine_subcommand() { + local -a opts_help + opts_help=("(- :)--help[Print usage]") + local -a opts_only_host opts_driver opts_storage_driver opts_stragery + opts_only_host=( + "$opts_help" + "*:host:__docker-machine_hosts_all" + ) + opts_driver=('amazonec2' 'azure' 'digitalocean' 'exoscale' 'generic' 'google' 'hyperv' 'none' 'openstack' 'rackspace' 'softlayer' 'virtualbox' 'vmwarefusion' 'vmwarevcloudair' 'vmwarevsphere') + opts_storage_driver=('overlay' 'aufs' 'btrfs' 'devicemapper' 'vfs' 'zfs') + integer ret=1 + + case "$words[1]" in + (active) + _arguments \ + $opts_help \ + '(--timeout -t)'{--timeout=,-t=}'[Timeout in seconds, default to 10s]:seconds' && ret=0 + ;; + (config) + _arguments \ + $opts_help \ + '--swarm[Display the Swarm config instead of the Docker daemon]' \ + "*:host:__docker-machine_hosts_all" && ret=0 + ;; + (create) + __get_create_argument + ;; + (env) + _arguments \ + $opts_help \ + '--swarm[Display the Swarm config instead of the Docker daemon]' \ + '--shell=[Force environment to be configured for a specified shell: \[fish, cmd, powershell\], default is auto-detect]:shell' \ + '(--unset -u)'{--unset,-u}'[Unset variables instead of setting them]' \ + '--no-proxy[Add machine IP to NO_PROXY environment variable]' \ + '*:host:__docker-machine_hosts_running' && ret=0 + ;; + (help) + _arguments ':subcommand:__docker-machine_commands' && ret=0 + ;; + (inspect) + _arguments \ + $opts_help \ + '(--format -f)'{--format=,-f=}'[Format the output using the given go template]:template' \ + '*:host:__docker-machine_hosts_all' && ret=0 + ;; + (ip) + _arguments \ + $opts_help \ + '*:host:__docker-machine_hosts_running' && ret=0 + ;; + (kill) + _arguments \ + $opts_help \ + '*:host:__docker-machine_hosts_with_state' && ret=0 + ;; + (ls) + _arguments \ + $opts_help \ + '(--quiet -q)'{--quiet,-q}'[Enable quiet mode]' \ + '*--filter=[Filter output based on conditions provided]:filter:->filter-options' \ + '(--timeout -t)'{--timeout=,-t=}'[Timeout in seconds, default to 10s]:seconds' \ + '(--format -f)'{--format=,-f=}'[Pretty-print machines using a Go template]:template' && ret=0 + case $state in + (filter-options) + __docker-machine_filters && ret=0 + ;; + esac + ;; + (provision) + _arguments $opts_only_host && ret=0 + ;; + (regenerate-certs) + _arguments \ + $opts_help \ + '(--force -f)'{--force,-f}'[Force rebuild and do not prompt]' \ + '*:host:__docker-machine_hosts_all' && ret=0 + ;; + (restart) + _arguments \ + $opts_help \ + '*:host:__docker-machine_hosts_with_state' && ret=0 + ;; + (rm) + _arguments \ + $opts_help \ + '(--force -f)'{--force,-f}'[Remove local configuration even if machine cannot be removed, also implies an automatic yes (`-y`)]' \ + '-y[Assumes automatic yes to proceed with remove, without prompting further user confirmation]' \ + '*:host:__docker-machine_hosts_with_state' && ret=0 + ;; + (scp) + _arguments \ + $opts_help \ + '(--recursive -r)'{--recursive,-r}'[Copy files recursively (required to copy directories))]' \ + '*:files:__docker-machine_hosts_and_files' && ret=0 + ;; + (ssh) + _arguments \ + $opts_help \ + '*:host:__docker-machine_hosts_running' && ret=0 + ;; + (start) + _arguments \ + $opts_help \ + '*:host:__docker-machine_hosts_with_state' && ret=0 + ;; + (status) + _arguments $opts_only_host && ret=0 + ;; + (stop) + _arguments \ + $opts_help \ + '*:host:__docker-machine_hosts_with_state' && ret=0 + ;; + (upgrade) + _arguments $opts_only_host && ret=0 + ;; + (url) + _arguments \ + $opts_help \ + '*:host:__docker-machine_hosts_running' && ret=0 + ;; + esac + + return ret +} + + +__docker-machine_commands() { + local cache_policy + + zstyle -s ":completion:${curcontext}:" cache-policy cache_policy + if [[ -z "$cache_policy" ]]; then + zstyle ":completion:${curcontext}:" cache-policy __docker-machine_caching_policy + fi + + if ( [[ ${+_docker_machine_subcommands} -eq 0 ]] || _cache_invalid docker_machine_subcommands) \ + && ! _retrieve_cache docker_machine_subcommands; + then + local -a lines + lines=(${(f)"$(_call_program commands docker-machine 2>&1)"}) + _docker_machine_subcommands=(${${${lines[$((${lines[(i)Commands:]} + 1)),${lines[(I) *]}]}## #}/$'\t'##/:}) + (( $#_docker_machine_subcommands > 0 )) && _store_cache docker_machine_subcommands _docker_machine_subcommands + fi + _describe -t docker-machine-commands "docker-machine command" _docker_machine_subcommands +} + +__docker-machine_caching_policy() { + oldp=( "$1"(Nmh+1) ) + (( $#oldp )) +} + +_docker-machine() { + if [[ $service != docker-machine ]]; then + _call_function - _$service + return + fi + + local curcontext="$curcontext" state line + integer ret=1 + typeset -A opt_args + + _arguments -C \ + "(- :)"{-h,--help}"[Show help]" \ + "(-D --debug)"{-D,--debug}"[Enable debug mode]" \ + '(-s --stroage-path)'{-s,--storage-path}'[Configures storage path]:file:_files' \ + '--tls-ca-cert[CA to verify remotes against]:file:_files' \ + '--tls-ca-key[Private key to generate certificates]:file:_files' \ + '--tls-client-cert[Client cert to use for TLS]:file:_files' \ + '--tls-client-key[Private key used in client TLS auth]:file:_files' \ + '--github-api-token[Token to use for requests to the Github API]' \ + '--native-ssh[Use the native (Go-based) SSH implementation.]' \ + '--bugsnag-api-token[BugSnag API token for crash reporting]' \ + '(- :)'{-v,--version}'[Print the version]' \ + "(-): :->command" \ + "(-)*:: :->option-or-argument" && ret=0 + + case $state in + (command) + __docker-machine_commands && ret=0 + ;; + (option-or-argument) + curcontext=${curcontext%:*:*}:docker-machine-$words[1]: + __docker-machine_subcommand && ret=0 + ret=0 + ;; + esac + + return ret +} + +_docker-machine "$@" diff --git a/oh-my-zsh/.oh-my-zsh/plugins/docker-machine/docker-machine.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/docker-machine/docker-machine.plugin.zsh new file mode 100644 index 0000000..235d90e --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/docker-machine/docker-machine.plugin.zsh @@ -0,0 +1,33 @@ +DEFAULT_MACHINE="default" + +docker-up() { + if [ -z "$1" ] + then + docker-machine start "${DEFAULT_MACHINE}" + eval $(docker-machine env "${DEFAULT_MACHINE}") + else + docker-machine start $1 + eval $(docker-machine env $1) + fi + echo $DOCKER_HOST +} +docker-stop() { + if [ -z "$1" ] + then + docker-machine stop "${DEFAULT_MACHINE}" + else + docker-machine stop $1 + fi +} +docker-switch() { + eval $(docker-machine env $1) + echo $DOCKER_HOST +} +docker-vm() { + if [ -z "$1" ] + then + docker-machine create -d virtualbox --virtualbox-disk-size 20000 --virtualbox-memory 4096 --virtualbox-cpu-count 2 "${DEFAULT_MACHINE}" + else + docker-machine create -d virtualbox --virtualbox-disk-size 20000 --virtualbox-memory 4096 --virtualbox-cpu-count 2 $1 + fi +} \ No newline at end of file diff --git a/oh-my-zsh/.oh-my-zsh/plugins/docker/README.md b/oh-my-zsh/.oh-my-zsh/plugins/docker/README.md new file mode 100644 index 0000000..e917984 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/docker/README.md @@ -0,0 +1,5 @@ +## Docker autocomplete plugin + +A copy of the completion script from the +[docker/cli](https://github.com/docker/cli/blob/master/contrib/completion/zsh/_docker) +git repo. diff --git a/oh-my-zsh/.oh-my-zsh/plugins/docker/_docker b/oh-my-zsh/.oh-my-zsh/plugins/docker/_docker new file mode 100644 index 0000000..31b83c7 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/docker/_docker @@ -0,0 +1,3032 @@ +#compdef docker dockerd +# +# zsh completion for docker (https://docker.com) +# +# version: 0.3.0 +# github: https://github.com/felixr/docker-zsh-completion +# +# contributors: +# - Felix Riedel +# - Steve Durrheimer +# - Vincent Bernat +# +# license: +# +# Copyright (c) 2013, Felix Riedel +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are met: +# * Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# * Redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in the +# documentation and/or other materials provided with the distribution. +# * Neither the name of the nor the +# names of its contributors may be used to endorse or promote products +# derived from this software without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +# DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY +# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND +# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +# + +# Short-option stacking can be enabled with: +# zstyle ':completion:*:*:docker:*' option-stacking yes +# zstyle ':completion:*:*:docker-*:*' option-stacking yes +__docker_arguments() { + if zstyle -t ":completion:${curcontext}:" option-stacking; then + print -- -s + fi +} + +__docker_get_containers() { + [[ $PREFIX = -* ]] && return 1 + integer ret=1 + local kind type line s + declare -a running stopped lines args names + + kind=$1; shift + type=$1; shift + [[ $kind = (stopped|all) ]] && args=($args -a) + + lines=(${(f)${:-"$(_call_program commands docker $docker_options ps --format 'table' --no-trunc $args)"$'\n'}}) + + # Parse header line to find columns + local i=1 j=1 k header=${lines[1]} + declare -A begin end + while (( j < ${#header} - 1 )); do + i=$(( j + ${${header[$j,-1]}[(i)[^ ]]} - 1 )) + j=$(( i + ${${header[$i,-1]}[(i) ]} - 1 )) + k=$(( j + ${${header[$j,-1]}[(i)[^ ]]} - 2 )) + begin[${header[$i,$((j-1))]}]=$i + end[${header[$i,$((j-1))]}]=$k + done + end[${header[$i,$((j-1))]}]=-1 # Last column, should go to the end of the line + lines=(${lines[2,-1]}) + + # Container ID + if [[ $type = (ids|all) ]]; then + for line in $lines; do + s="${${line[${begin[CONTAINER ID]},${end[CONTAINER ID]}]%% ##}[0,12]}" + s="$s:${(l:15:: :::)${${line[${begin[CREATED]},${end[CREATED]}]/ ago/}%% ##}}" + s="$s, ${${${line[${begin[IMAGE]},${end[IMAGE]}]}/:/\\:}%% ##}" + if [[ ${line[${begin[STATUS]},${end[STATUS]}]} = (Exit*|Created*) ]]; then + stopped=($stopped $s) + else + running=($running $s) + fi + done + fi + + # Names: we only display the one without slash. All other names + # are generated and may clutter the completion. However, with + # Swarm, all names may be prefixed by the swarm node name. + if [[ $type = (names|all) ]]; then + for line in $lines; do + names=(${(ps:,:)${${line[${begin[NAMES]},${end[NAMES]}]}%% *}}) + # First step: find a common prefix and strip it (swarm node case) + (( ${#${(u)names%%/*}} == 1 )) && names=${names#${names[1]%%/*}/} + # Second step: only keep the first name without a / + s=${${names:#*/*}[1]} + # If no name, well give up. + (( $#s != 0 )) || continue + s="$s:${(l:15:: :::)${${line[${begin[CREATED]},${end[CREATED]}]/ ago/}%% ##}}" + s="$s, ${${${line[${begin[IMAGE]},${end[IMAGE]}]}/:/\\:}%% ##}" + if [[ ${line[${begin[STATUS]},${end[STATUS]}]} = (Exit*|Created*) ]]; then + stopped=($stopped $s) + else + running=($running $s) + fi + done + fi + + [[ $kind = (running|all) ]] && _describe -t containers-running "running containers" running "$@" && ret=0 + [[ $kind = (stopped|all) ]] && _describe -t containers-stopped "stopped containers" stopped "$@" && ret=0 + return ret +} + +__docker_complete_stopped_containers() { + [[ $PREFIX = -* ]] && return 1 + __docker_get_containers stopped all "$@" +} + +__docker_complete_running_containers() { + [[ $PREFIX = -* ]] && return 1 + __docker_get_containers running all "$@" +} + +__docker_complete_containers() { + [[ $PREFIX = -* ]] && return 1 + __docker_get_containers all all "$@" +} + +__docker_complete_containers_ids() { + [[ $PREFIX = -* ]] && return 1 + __docker_get_containers all ids "$@" +} + +__docker_complete_containers_names() { + [[ $PREFIX = -* ]] && return 1 + __docker_get_containers all names "$@" +} + +__docker_complete_info_plugins() { + [[ $PREFIX = -* ]] && return 1 + integer ret=1 + emulate -L zsh + setopt extendedglob + local -a plugins + plugins=(${(ps: :)${(M)${(f)${${"$(_call_program commands docker $docker_options info)"##*$'\n'Plugins:}%%$'\n'^ *}}:# $1: *}## $1: }) + _describe -t plugins "$1 plugins" plugins && ret=0 + return ret +} + +__docker_complete_images() { + [[ $PREFIX = -* ]] && return 1 + integer ret=1 + declare -a images + images=(${${${(f)${:-"$(_call_program commands docker $docker_options images)"$'\n'}}[2,-1]}/(#b)([^ ]##) ##([^ ]##) ##([^ ]##)*/${match[3]}:${(r:15:: :::)match[2]} in ${match[1]}}) + _describe -t docker-images "images" images && ret=0 + __docker_complete_repositories_with_tags && ret=0 + return ret +} + +__docker_complete_repositories() { + [[ $PREFIX = -* ]] && return 1 + integer ret=1 + declare -a repos + repos=(${${${(f)${:-"$(_call_program commands docker $docker_options images)"$'\n'}}%% *}[2,-1]}) + repos=(${repos#}) + _describe -t docker-repos "repositories" repos && ret=0 + return ret +} + +__docker_complete_repositories_with_tags() { + [[ $PREFIX = -* ]] && return 1 + integer ret=1 + declare -a repos onlyrepos matched + declare m + repos=(${${${${(f)${:-"$(_call_program commands docker $docker_options images)"$'\n'}}[2,-1]}/ ##/:::}%% *}) + repos=(${${repos%:::}#}) + # Check if we have a prefix-match for the current prefix. + onlyrepos=(${repos%::*}) + for m in $onlyrepos; do + [[ ${PREFIX##${~~m}} != ${PREFIX} ]] && { + # Yes, complete with tags + repos=(${${repos/:::/:}/:/\\:}) + _describe -t docker-repos-with-tags "repositories with tags" repos && ret=0 + return ret + } + done + # No, only complete repositories + onlyrepos=(${${repos%:::*}/:/\\:}) + _describe -t docker-repos "repositories" onlyrepos -qS : && ret=0 + + return ret +} + +__docker_search() { + [[ $PREFIX = -* ]] && return 1 + local cache_policy + zstyle -s ":completion:${curcontext}:" cache-policy cache_policy + if [[ -z "$cache_policy" ]]; then + zstyle ":completion:${curcontext}:" cache-policy __docker_caching_policy + fi + + local searchterm cachename + searchterm="${words[$CURRENT]%/}" + cachename=_docker-search-$searchterm + + local expl + local -a result + if ( [[ ${(P)+cachename} -eq 0 ]] || _cache_invalid ${cachename#_} ) \ + && ! _retrieve_cache ${cachename#_}; then + _message "Searching for ${searchterm}..." + result=(${${${(f)${:-"$(_call_program commands docker $docker_options search $searchterm)"$'\n'}}%% *}[2,-1]}) + _store_cache ${cachename#_} result + fi + _wanted dockersearch expl 'available images' compadd -a result +} + +__docker_get_log_options() { + [[ $PREFIX = -* ]] && return 1 + + integer ret=1 + local log_driver=${opt_args[--log-driver]:-"all"} + local -a common_options common_options2 awslogs_options fluentd_options gelf_options journald_options json_file_options logentries_options syslog_options splunk_options + + common_options=("max-buffer-size" "mode") + common_options2=("env" "env-regex" "labels") + awslogs_options=($common_options "awslogs-create-group" "awslogs-datetime-format" "awslogs-group" "awslogs-multiline-pattern" "awslogs-region" "awslogs-stream" "tag") + fluentd_options=($common_options $common_options2 "fluentd-address" "fluentd-async-connect" "fluentd-buffer-limit" "fluentd-retry-wait" "fluentd-max-retries" "fluentd-sub-second-precision" "tag") + gcplogs_options=($common_options $common_options2 "gcp-log-cmd" "gcp-meta-id" "gcp-meta-name" "gcp-meta-zone" "gcp-project") + gelf_options=($common_options $common_options2 "gelf-address" "gelf-compression-level" "gelf-compression-type" "tag") + journald_options=($common_options $common_options2 "tag") + json_file_options=($common_options $common_options2 "max-file" "max-size") + logentries_options=($common_options $common_options2 "logentries-token" "tag") + syslog_options=($common_options $common_options2 "syslog-address" "syslog-facility" "syslog-format" "syslog-tls-ca-cert" "syslog-tls-cert" "syslog-tls-key" "syslog-tls-skip-verify" "tag") + splunk_options=($common_options $common_options2 "splunk-caname" "splunk-capath" "splunk-format" "splunk-gzip" "splunk-gzip-level" "splunk-index" "splunk-insecureskipverify" "splunk-source" "splunk-sourcetype" "splunk-token" "splunk-url" "splunk-verify-connection" "tag") + + [[ $log_driver = (awslogs|all) ]] && _describe -t awslogs-options "awslogs options" awslogs_options "$@" && ret=0 + [[ $log_driver = (fluentd|all) ]] && _describe -t fluentd-options "fluentd options" fluentd_options "$@" && ret=0 + [[ $log_driver = (gcplogs|all) ]] && _describe -t gcplogs-options "gcplogs options" gcplogs_options "$@" && ret=0 + [[ $log_driver = (gelf|all) ]] && _describe -t gelf-options "gelf options" gelf_options "$@" && ret=0 + [[ $log_driver = (journald|all) ]] && _describe -t journald-options "journald options" journald_options "$@" && ret=0 + [[ $log_driver = (json-file|all) ]] && _describe -t json-file-options "json-file options" json_file_options "$@" && ret=0 + [[ $log_driver = (logentries|all) ]] && _describe -t logentries-options "logentries options" logentries_options "$@" && ret=0 + [[ $log_driver = (syslog|all) ]] && _describe -t syslog-options "syslog options" syslog_options "$@" && ret=0 + [[ $log_driver = (splunk|all) ]] && _describe -t splunk-options "splunk options" splunk_options "$@" && ret=0 + + return ret +} + +__docker_complete_log_drivers() { + [[ $PREFIX = -* ]] && return 1 + integer ret=1 + drivers=(awslogs etwlogs fluentd gcplogs gelf journald json-file none splunk syslog) + _describe -t log-drivers "log drivers" drivers && ret=0 + return ret +} + +__docker_complete_log_options() { + [[ $PREFIX = -* ]] && return 1 + integer ret=1 + + if compset -P '*='; then + case "${${words[-1]%=*}#*=}" in + (syslog-format) + local opts=('rfc3164' 'rfc5424' 'rfc5424micro') + _describe -t syslog-format-opts "syslog format options" opts && ret=0 + ;; + (mode) + local opts=('blocking' 'non-blocking') + _describe -t mode-opts "mode options" opts && ret=0 + ;; + *) + _message 'value' && ret=0 + ;; + esac + else + __docker_get_log_options -qS "=" && ret=0 + fi + + return ret +} + +__docker_complete_detach_keys() { + [[ $PREFIX = -* ]] && return 1 + integer ret=1 + + compset -P "*," + keys=(${:-{a-z}}) + ctrl_keys=(${:-ctrl-{{a-z},{@,'[','\\','^',']',_}}}) + _describe -t detach_keys "[a-z]" keys -qS "," && ret=0 + _describe -t detach_keys-ctrl "'ctrl-' + 'a-z @ [ \\\\ ] ^ _'" ctrl_keys -qS "," && ret=0 +} + +__docker_complete_pid() { + [[ $PREFIX = -* ]] && return 1 + integer ret=1 + local -a opts vopts + + opts=('host') + vopts=('container') + + if compset -P '*:'; then + case "${${words[-1]%:*}#*=}" in + (container) + __docker_complete_running_containers && ret=0 + ;; + *) + _message 'value' && ret=0 + ;; + esac + else + _describe -t pid-value-opts "PID Options with value" vopts -qS ":" && ret=0 + _describe -t pid-opts "PID Options" opts && ret=0 + fi + + return ret +} + +__docker_complete_runtimes() { + [[ $PREFIX = -* ]] && return 1 + integer ret=1 + + emulate -L zsh + setopt extendedglob + local -a runtimes_opts + runtimes_opts=(${(ps: :)${(f)${${"$(_call_program commands docker $docker_options info)"##*$'\n'Runtimes: }%%$'\n'^ *}}}) + _describe -t runtimes-opts "runtimes options" runtimes_opts && ret=0 +} + +__docker_complete_ps_filters() { + [[ $PREFIX = -* ]] && return 1 + integer ret=1 + + if compset -P '*='; then + case "${${words[-1]%=*}#*=}" in + (ancestor) + __docker_complete_images && ret=0 + ;; + (before|since) + __docker_complete_containers && ret=0 + ;; + (health) + health_opts=('healthy' 'none' 'starting' 'unhealthy') + _describe -t health-filter-opts "health filter options" health_opts && ret=0 + ;; + (id) + __docker_complete_containers_ids && ret=0 + ;; + (is-task) + _describe -t boolean-filter-opts "filter options" boolean_opts && ret=0 + ;; + (name) + __docker_complete_containers_names && ret=0 + ;; + (network) + __docker_complete_networks && ret=0 + ;; + (status) + status_opts=('created' 'dead' 'exited' 'paused' 'restarting' 'running' 'removing') + _describe -t status-filter-opts "status filter options" status_opts && ret=0 + ;; + (volume) + __docker_complete_volumes && ret=0 + ;; + *) + _message 'value' && ret=0 + ;; + esac + else + opts=('ancestor' 'before' 'exited' 'expose' 'health' 'id' 'label' 'name' 'network' 'publish' 'since' 'status' 'volume') + _describe -t filter-opts "Filter Options" opts -qS "=" && ret=0 + fi + + return ret +} + +__docker_complete_search_filters() { + [[ $PREFIX = -* ]] && return 1 + integer ret=1 + declare -a boolean_opts opts + + boolean_opts=('true' 'false') + opts=('is-automated' 'is-official' 'stars') + + if compset -P '*='; then + case "${${words[-1]%=*}#*=}" in + (is-automated|is-official) + _describe -t boolean-filter-opts "filter options" boolean_opts && ret=0 + ;; + *) + _message 'value' && ret=0 + ;; + esac + else + _describe -t filter-opts "filter options" opts -qS "=" && ret=0 + fi + + return ret +} + +__docker_complete_images_filters() { + [[ $PREFIX = -* ]] && return 1 + integer ret=1 + declare -a boolean_opts opts + + boolean_opts=('true' 'false') + opts=('before' 'dangling' 'label' 'reference' 'since') + + if compset -P '*='; then + case "${${words[-1]%=*}#*=}" in + (before|reference|since) + __docker_complete_images && ret=0 + ;; + (dangling) + _describe -t boolean-filter-opts "filter options" boolean_opts && ret=0 + ;; + *) + _message 'value' && ret=0 + ;; + esac + else + _describe -t filter-opts "Filter Options" opts -qS "=" && ret=0 + fi + + return ret +} + +__docker_complete_events_filter() { + [[ $PREFIX = -* ]] && return 1 + integer ret=1 + declare -a opts + + opts=('container' 'daemon' 'event' 'image' 'label' 'network' 'scope' 'type' 'volume') + + if compset -P '*='; then + case "${${words[-1]%=*}#*=}" in + (container) + __docker_complete_containers && ret=0 + ;; + (daemon) + emulate -L zsh + setopt extendedglob + local -a daemon_opts + daemon_opts=( + ${(f)${${"$(_call_program commands docker $docker_options info)"##*$'\n'Name: }%%$'\n'^ *}} + ${${(f)${${"$(_call_program commands docker $docker_options info)"##*$'\n'ID: }%%$'\n'^ *}}//:/\\:} + ) + _describe -t daemon-filter-opts "daemon filter options" daemon_opts && ret=0 + ;; + (event) + local -a event_opts + event_opts=('attach' 'commit' 'connect' 'copy' 'create' 'delete' 'destroy' 'detach' 'die' 'disable' 'disconnect' 'enable' 'exec_create' 'exec_detach' + 'exec_start' 'export' 'health_status' 'import' 'install' 'kill' 'load' 'mount' 'oom' 'pause' 'pull' 'push' 'reload' 'remove' 'rename' 'resize' + 'restart' 'save' 'start' 'stop' 'tag' 'top' 'unmount' 'unpause' 'untag' 'update') + _describe -t event-filter-opts "event filter options" event_opts && ret=0 + ;; + (image) + __docker_complete_images && ret=0 + ;; + (network) + __docker_complete_networks && ret=0 + ;; + (scope) + local -a scope_opts + scope_opts=('local' 'swarm') + _describe -t scope-filter-opts "scope filter options" scope_opts && ret=0 + ;; + (type) + local -a type_opts + type_opts=('container' 'daemon' 'image' 'network' 'volume') + _describe -t type-filter-opts "type filter options" type_opts && ret=0 + ;; + (volume) + __docker_complete_volumes && ret=0 + ;; + *) + _message 'value' && ret=0 + ;; + esac + else + _describe -t filter-opts "filter options" opts -qS "=" && ret=0 + fi + + return ret +} + +__docker_complete_prune_filters() { + [[ $PREFIX = -* ]] && return 1 + integer ret=1 + declare -a opts + + opts=('until') + + if compset -P '*='; then + case "${${words[-1]%=*}#*=}" in + *) + _message 'value' && ret=0 + ;; + esac + else + _describe -t filter-opts "filter options" opts -qS "=" && ret=0 + fi + + return ret +} + +# BO checkpoint + +__docker_checkpoint_commands() { + local -a _docker_checkpoint_subcommands + _docker_checkpoint_subcommands=( + "create:Create a checkpoint from a running container" + "ls:List checkpoints for a container" + "rm:Remove a checkpoint" + ) + _describe -t docker-checkpoint-commands "docker checkpoint command" _docker_checkpoint_subcommands +} + +__docker_checkpoint_subcommand() { + local -a _command_args opts_help + local expl help="--help" + integer ret=1 + + opts_help=("(: -)--help[Print usage]") + + case "$words[1]" in + (create) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help)--checkpoint-dir=[Use a custom checkpoint storage directory]:dir:_directories" \ + "($help)--leave-running[Leave the container running after checkpoint]" \ + "($help -)1:container:__docker_complete_running_containers" \ + "($help -)2:checkpoint: " && ret=0 + ;; + (ls|list) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help)--checkpoint-dir=[Use a custom checkpoint storage directory]:dir:_directories" \ + "($help -)1:container:__docker_complete_containers" && ret=0 + ;; + (rm|remove) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help)--checkpoint-dir=[Use a custom checkpoint storage directory]:dir:_directories" \ + "($help -)1:container:__docker_complete_containers" \ + "($help -)2:checkpoint: " && ret=0 + ;; + (help) + _arguments $(__docker_arguments) ":subcommand:__docker_checkpoint_commands" && ret=0 + ;; + esac + + return ret +} + +# EO checkpoint + +# BO container + +__docker_container_commands() { + local -a _docker_container_subcommands + _docker_container_subcommands=( + "attach:Attach to a running container" + "commit:Create a new image from a container's changes" + "cp:Copy files/folders between a container and the local filesystem" + "create:Create a new container" + "diff:Inspect changes on a container's filesystem" + "exec:Run a command in a running container" + "export:Export a container's filesystem as a tar archive" + "inspect:Display detailed information on one or more containers" + "kill:Kill one or more running containers" + "logs:Fetch the logs of a container" + "ls:List containers" + "pause:Pause all processes within one or more containers" + "port:List port mappings or a specific mapping for the container" + "prune:Remove all stopped containers" + "rename:Rename a container" + "restart:Restart one or more containers" + "rm:Remove one or more containers" + "run:Run a command in a new container" + "start:Start one or more stopped containers" + "stats:Display a live stream of container(s) resource usage statistics" + "stop:Stop one or more running containers" + "top:Display the running processes of a container" + "unpause:Unpause all processes within one or more containers" + "update:Update configuration of one or more containers" + "wait:Block until one or more containers stop, then print their exit codes" + ) + _describe -t docker-container-commands "docker container command" _docker_container_subcommands +} + +__docker_container_subcommand() { + local -a _command_args opts_help opts_attach_exec_run_start opts_create_run opts_create_run_update + local expl help="--help" + integer ret=1 + + opts_attach_exec_run_start=( + "($help)--detach-keys=[Escape key sequence used to detach a container]:sequence:__docker_complete_detach_keys" + ) + opts_create_run=( + "($help -a --attach)"{-a=,--attach=}"[Attach to stdin, stdout or stderr]:device:(STDIN STDOUT STDERR)" + "($help)*--add-host=[Add a custom host-to-IP mapping]:host\:ip mapping: " + "($help)*--blkio-weight-device=[Block IO (relative device weight)]:device:Block IO weight: " + "($help)*--cap-add=[Add Linux capabilities]:capability: " + "($help)*--cap-drop=[Drop Linux capabilities]:capability: " + "($help)--cgroup-parent=[Parent cgroup for the container]:cgroup: " + "($help)--cidfile=[Write the container ID to the file]:CID file:_files" + "($help)--cpus=[Number of CPUs (default 0.000)]:cpus: " + "($help)*--device=[Add a host device to the container]:device:_files" + "($help)*--device-cgroup-rule=[Add a rule to the cgroup allowed devices list]:device:cgroup: " + "($help)*--device-read-bps=[Limit the read rate (bytes per second) from a device]:device:IO rate: " + "($help)*--device-read-iops=[Limit the read rate (IO per second) from a device]:device:IO rate: " + "($help)*--device-write-bps=[Limit the write rate (bytes per second) to a device]:device:IO rate: " + "($help)*--device-write-iops=[Limit the write rate (IO per second) to a device]:device:IO rate: " + "($help)--disable-content-trust[Skip image verification]" + "($help)*--dns=[Custom DNS servers]:DNS server: " + "($help)*--dns-option=[Custom DNS options]:DNS option: " + "($help)*--dns-search=[Custom DNS search domains]:DNS domains: " + "($help)*"{-e=,--env=}"[Environment variables]:environment variable: " + "($help)--entrypoint=[Overwrite the default entrypoint of the image]:entry point: " + "($help)*--env-file=[Read environment variables from a file]:environment file:_files" + "($help)*--expose=[Expose a port from the container without publishing it]: " + "($help)*--group=[Set one or more supplementary user groups for the container]:group:_groups" + "($help -h --hostname)"{-h=,--hostname=}"[Container host name]:hostname:_hosts" + "($help -i --interactive)"{-i,--interactive}"[Keep stdin open even if not attached]" + "($help)--init[Run an init inside the container that forwards signals and reaps processes]" + "($help)--ip=[IPv4 address]:IPv4: " + "($help)--ip6=[IPv6 address]:IPv6: " + "($help)--ipc=[IPC namespace to use]:IPC namespace: " + "($help)--isolation=[Container isolation technology]:isolation:(default hyperv process)" + "($help)*--link=[Add link to another container]:link:->link" + "($help)*--link-local-ip=[Container IPv4/IPv6 link-local addresses]:IPv4/IPv6: " + "($help)*"{-l=,--label=}"[Container metadata]:label: " + "($help)--log-driver=[Default driver for container logs]:logging driver:__docker_complete_log_drivers" + "($help)*--log-opt=[Log driver specific options]:log driver options:__docker_complete_log_options" + "($help)--mac-address=[Container MAC address]:MAC address: " + "($help)*--mount=[Attach a filesystem mount to the container]:mount: " + "($help)--name=[Container name]:name: " + "($help)--network=[Connect a container to a network]:network mode:(bridge none container host)" + "($help)*--network-alias=[Add network-scoped alias for the container]:alias: " + "($help)--oom-kill-disable[Disable OOM Killer]" + "($help)--oom-score-adj[Tune the host's OOM preferences for containers (accepts -1000 to 1000)]" + "($help)--pids-limit[Tune container pids limit (set -1 for unlimited)]" + "($help -P --publish-all)"{-P,--publish-all}"[Publish all exposed ports]" + "($help)*"{-p=,--publish=}"[Expose a container's port to the host]:port:_ports" + "($help)--pid=[PID namespace to use]:PID namespace:__docker_complete_pid" + "($help)--privileged[Give extended privileges to this container]" + "($help)--read-only[Mount the container's root filesystem as read only]" + "($help)*--security-opt=[Security options]:security option: " + "($help)*--shm-size=[Size of '/dev/shm' (format is '')]:shm size: " + "($help)--stop-signal=[Signal to kill a container]:signal:_signals" + "($help)--stop-timeout=[Timeout (in seconds) to stop a container]:time: " + "($help)*--sysctl=-[sysctl options]:sysctl: " + "($help -t --tty)"{-t,--tty}"[Allocate a pseudo-tty]" + "($help -u --user)"{-u=,--user=}"[Username or UID]:user:_users" + "($help)*--ulimit=[ulimit options]:ulimit: " + "($help)--userns=[Container user namespace]:user namespace:(host)" + "($help)--tmpfs[mount tmpfs]" + "($help)*-v[Bind mount a volume]:volume: " + "($help)--volume-driver=[Optional volume driver for the container]:volume driver:(local)" + "($help)*--volumes-from=[Mount volumes from the specified container]:volume: " + "($help -w --workdir)"{-w=,--workdir=}"[Working directory inside the container]:directory:_directories" + ) + opts_create_run_update=( + "($help)--blkio-weight=[Block IO (relative weight), between 10 and 1000]:Block IO weight:(10 100 500 1000)" + "($help -c --cpu-shares)"{-c=,--cpu-shares=}"[CPU shares (relative weight)]:CPU shares:(0 10 100 200 500 800 1000)" + "($help)--cpu-period=[Limit the CPU CFS (Completely Fair Scheduler) period]:CPU period: " + "($help)--cpu-quota=[Limit the CPU CFS (Completely Fair Scheduler) quota]:CPU quota: " + "($help)--cpu-rt-period=[Limit the CPU real-time period]:CPU real-time period in microseconds: " + "($help)--cpu-rt-runtime=[Limit the CPU real-time runtime]:CPU real-time runtime in microseconds: " + "($help)--cpuset-cpus=[CPUs in which to allow execution]:CPUs: " + "($help)--cpuset-mems=[MEMs in which to allow execution]:MEMs: " + "($help)--kernel-memory=[Kernel memory limit in bytes]:Memory limit: " + "($help -m --memory)"{-m=,--memory=}"[Memory limit]:Memory limit: " + "($help)--memory-reservation=[Memory soft limit]:Memory limit: " + "($help)--memory-swap=[Total memory limit with swap]:Memory limit: " + "($help)--restart=[Restart policy]:restart policy:(no on-failure always unless-stopped)" + ) + opts_help=("(: -)--help[Print usage]") + + case "$words[1]" in + (attach) + _arguments $(__docker_arguments) \ + $opts_help \ + $opts_attach_exec_run_start \ + "($help)--no-stdin[Do not attach stdin]" \ + "($help)--sig-proxy[Proxy all received signals to the process (non-TTY mode only)]" \ + "($help -):containers:__docker_complete_running_containers" && ret=0 + ;; + (commit) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help -a --author)"{-a=,--author=}"[Author]:author: " \ + "($help)*"{-c=,--change=}"[Apply Dockerfile instruction to the created image]:Dockerfile:_files" \ + "($help -m --message)"{-m=,--message=}"[Commit message]:message: " \ + "($help -p --pause)"{-p,--pause}"[Pause container during commit]" \ + "($help -):container:__docker_complete_containers" \ + "($help -): :__docker_complete_repositories_with_tags" && ret=0 + ;; + (cp) + local state + _arguments $(__docker_arguments) \ + $opts_help \ + "($help -L --follow-link)"{-L,--follow-link}"[Always follow symbol link]" \ + "($help -)1:container:->container" \ + "($help -)2:hostpath:_files" && ret=0 + case $state in + (container) + if compset -P "*:"; then + _files && ret=0 + else + __docker_complete_containers -qS ":" && ret=0 + fi + ;; + esac + ;; + (create) + local state + _arguments $(__docker_arguments) \ + $opts_help \ + $opts_create_run \ + $opts_create_run_update \ + "($help -): :__docker_complete_images" \ + "($help -):command: _command_names -e" \ + "($help -)*::arguments: _normal" && ret=0 + case $state in + (link) + if compset -P "*:"; then + _wanted alias expl "Alias" compadd -E "" && ret=0 + else + __docker_complete_running_containers -qS ":" && ret=0 + fi + ;; + esac + ;; + (diff) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help -)*:containers:__docker_complete_containers" && ret=0 + ;; + (exec) + local state + _arguments $(__docker_arguments) \ + $opts_help \ + $opts_attach_exec_run_start \ + "($help -d --detach)"{-d,--detach}"[Detached mode: leave the container running in the background]" \ + "($help)*"{-e=,--env=}"[Set environment variables]:environment variable: " \ + "($help -i --interactive)"{-i,--interactive}"[Keep stdin open even if not attached]" \ + "($help)--privileged[Give extended Linux capabilities to the command]" \ + "($help -t --tty)"{-t,--tty}"[Allocate a pseudo-tty]" \ + "($help -u --user)"{-u=,--user=}"[Username or UID]:user:_users" \ + "($help -w --workdir)"{-w=,--workdir=}"[Working directory inside the container]:directory:_directories" \ + "($help -):containers:__docker_complete_running_containers" \ + "($help -)*::command:->anycommand" && ret=0 + case $state in + (anycommand) + shift 1 words + (( CURRENT-- )) + _normal && ret=0 + ;; + esac + ;; + (export) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help -o --output)"{-o=,--output=}"[Write to a file, instead of stdout]:output file:_files" \ + "($help -)*:containers:__docker_complete_containers" && ret=0 + ;; + (inspect) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help -f --format)"{-f=,--format=}"[Format the output using the given go template]:template: " \ + "($help -s --size)"{-s,--size}"[Display total file sizes]" \ + "($help -)*:containers:__docker_complete_containers" && ret=0 + ;; + (kill) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help -s --signal)"{-s=,--signal=}"[Signal to send]:signal:_signals" \ + "($help -)*:containers:__docker_complete_running_containers" && ret=0 + ;; + (logs) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help)--details[Show extra details provided to logs]" \ + "($help -f --follow)"{-f,--follow}"[Follow log output]" \ + "($help -s --since)"{-s=,--since=}"[Show logs since this timestamp]:timestamp: " \ + "($help -t --timestamps)"{-t,--timestamps}"[Show timestamps]" \ + "($help)--tail=[Output the last K lines]:lines:(1 10 20 50 all)" \ + "($help -)*:containers:__docker_complete_containers" && ret=0 + ;; + (ls|list) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help -a --all)"{-a,--all}"[Show all containers]" \ + "($help)--before=[Show only container created before...]:containers:__docker_complete_containers" \ + "($help)*"{-f=,--filter=}"[Filter values]:filter:__docker_complete_ps_filters" \ + "($help)--format=[Pretty-print containers using a Go template]:template: " \ + "($help -l --latest)"{-l,--latest}"[Show only the latest created container]" \ + "($help -n --last)"{-n=,--last=}"[Show n last created containers (includes all states)]:n:(1 5 10 25 50)" \ + "($help)--no-trunc[Do not truncate output]" \ + "($help -q --quiet)"{-q,--quiet}"[Only show numeric IDs]" \ + "($help -s --size)"{-s,--size}"[Display total file sizes]" \ + "($help)--since=[Show only containers created since...]:containers:__docker_complete_containers" && ret=0 + ;; + (pause|unpause) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help -)*:containers:__docker_complete_running_containers" && ret=0 + ;; + (port) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help -)1:containers:__docker_complete_running_containers" \ + "($help -)2:port:_ports" && ret=0 + ;; + (prune) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help)*--filter=[Filter values]:filter:__docker_complete_prune_filters" \ + "($help -f --force)"{-f,--force}"[Do not prompt for confirmation]" && ret=0 + ;; + (rename) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help -):old name:__docker_complete_containers" \ + "($help -):new name: " && ret=0 + ;; + (restart) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help -t --time)"{-t=,--time=}"[Number of seconds to try to stop for before killing the container]:seconds to before killing:(1 5 10 30 60)" \ + "($help -)*:containers:__docker_complete_containers_ids" && ret=0 + ;; + (rm) + local state + _arguments $(__docker_arguments) \ + $opts_help \ + "($help -f --force)"{-f,--force}"[Force removal]" \ + "($help -l --link)"{-l,--link}"[Remove the specified link and not the underlying container]" \ + "($help -v --volumes)"{-v,--volumes}"[Remove the volumes associated to the container]" \ + "($help -)*:containers:->values" && ret=0 + case $state in + (values) + if [[ ${words[(r)-f]} == -f || ${words[(r)--force]} == --force ]]; then + __docker_complete_containers && ret=0 + else + __docker_complete_stopped_containers && ret=0 + fi + ;; + esac + ;; + (run) + local state + _arguments $(__docker_arguments) \ + $opts_help \ + $opts_create_run \ + $opts_create_run_update \ + $opts_attach_exec_run_start \ + "($help -d --detach)"{-d,--detach}"[Detached mode: leave the container running in the background]" \ + "($help)--health-cmd=[Command to run to check health]:command: " \ + "($help)--health-interval=[Time between running the check]:time: " \ + "($help)--health-retries=[Consecutive failures needed to report unhealthy]:retries:(1 2 3 4 5)" \ + "($help)--health-timeout=[Maximum time to allow one check to run]:time: " \ + "($help)--no-healthcheck[Disable any container-specified HEALTHCHECK]" \ + "($help)--rm[Remove intermediate containers when it exits]" \ + "($help)--runtime=[Name of the runtime to be used for that container]:runtime:__docker_complete_runtimes" \ + "($help)--sig-proxy[Proxy all received signals to the process (non-TTY mode only)]" \ + "($help)--storage-opt=[Storage driver options for the container]:storage options:->storage-opt" \ + "($help -): :__docker_complete_images" \ + "($help -):command: _command_names -e" \ + "($help -)*::arguments: _normal" && ret=0 + case $state in + (link) + if compset -P "*:"; then + _wanted alias expl "Alias" compadd -E "" && ret=0 + else + __docker_complete_running_containers -qS ":" && ret=0 + fi + ;; + (storage-opt) + if compset -P "*="; then + _message "value" && ret=0 + else + opts=('size') + _describe -t filter-opts "storage options" opts -qS "=" && ret=0 + fi + ;; + esac + ;; + (start) + _arguments $(__docker_arguments) \ + $opts_help \ + $opts_attach_exec_run_start \ + "($help -a --attach)"{-a,--attach}"[Attach container's stdout/stderr and forward all signals]" \ + "($help -i --interactive)"{-i,--interactive}"[Attach container's stdin]" \ + "($help -)*:containers:__docker_complete_stopped_containers" && ret=0 + ;; + (stats) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help -a --all)"{-a,--all}"[Show all containers (default shows just running)]" \ + "($help)--format=[Pretty-print images using a Go template]:template: " \ + "($help)--no-stream[Disable streaming stats and only pull the first result]" \ + "($help)--no-trunc[Do not truncate output]" \ + "($help -)*:containers:__docker_complete_running_containers" && ret=0 + ;; + (stop) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help -t --time)"{-t=,--time=}"[Number of seconds to try to stop for before killing the container]:seconds to before killing:(1 5 10 30 60)" \ + "($help -)*:containers:__docker_complete_running_containers" && ret=0 + ;; + (top) + local state + _arguments $(__docker_arguments) \ + $opts_help \ + "($help -)1:containers:__docker_complete_running_containers" \ + "($help -)*:: :->ps-arguments" && ret=0 + case $state in + (ps-arguments) + _ps && ret=0 + ;; + esac + ;; + (update) + local state + _arguments $(__docker_arguments) \ + $opts_help \ + $opts_create_run_update \ + "($help -)*: :->values" && ret=0 + case $state in + (values) + if [[ ${words[(r)--kernel-memory*]} = (--kernel-memory*) ]]; then + __docker_complete_stopped_containers && ret=0 + else + __docker_complete_containers && ret=0 + fi + ;; + esac + ;; + (wait) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help -)*:containers:__docker_complete_running_containers" && ret=0 + ;; + (help) + _arguments $(__docker_arguments) ":subcommand:__docker_container_commands" && ret=0 + ;; + esac + + return ret +} + +# EO container + +# BO image + +__docker_image_commands() { + local -a _docker_image_subcommands + _docker_image_subcommands=( + "build:Build an image from a Dockerfile" + "history:Show the history of an image" + "import:Import the contents from a tarball to create a filesystem image" + "inspect:Display detailed information on one or more images" + "load:Load an image from a tar archive or STDIN" + "ls:List images" + "prune:Remove unused images" + "pull:Pull an image or a repository from a registry" + "push:Push an image or a repository to a registry" + "rm:Remove one or more images" + "save:Save one or more images to a tar archive (streamed to STDOUT by default)" + "tag:Tag an image into a repository" + ) + _describe -t docker-image-commands "docker image command" _docker_image_subcommands +} + +__docker_image_subcommand() { + local -a _command_args opts_help + local expl help="--help" + integer ret=1 + + opts_help=("(: -)--help[Print usage]") + + case "$words[1]" in + (build) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help)*--add-host=[Add a custom host-to-IP mapping]:host\:ip mapping: " \ + "($help)*--build-arg=[Build-time variables]:=: " \ + "($help)*--cache-from=[Images to consider as cache sources]: :__docker_complete_repositories_with_tags" \ + "($help -c --cpu-shares)"{-c=,--cpu-shares=}"[CPU shares (relative weight)]:CPU shares:(0 10 100 200 500 800 1000)" \ + "($help)--cgroup-parent=[Parent cgroup for the container]:cgroup: " \ + "($help)--compress[Compress the build context using gzip]" \ + "($help)--cpu-period=[Limit the CPU CFS (Completely Fair Scheduler) period]:CPU period: " \ + "($help)--cpu-quota=[Limit the CPU CFS (Completely Fair Scheduler) quota]:CPU quota: " \ + "($help)--cpu-rt-period=[Limit the CPU real-time period]:CPU real-time period in microseconds: " \ + "($help)--cpu-rt-runtime=[Limit the CPU real-time runtime]:CPU real-time runtime in microseconds: " \ + "($help)--cpuset-cpus=[CPUs in which to allow execution]:CPUs: " \ + "($help)--cpuset-mems=[MEMs in which to allow execution]:MEMs: " \ + "($help)--disable-content-trust[Skip image verification]" \ + "($help -f --file)"{-f=,--file=}"[Name of the Dockerfile]:Dockerfile:_files" \ + "($help)--force-rm[Always remove intermediate containers]" \ + "($help)--isolation=[Container isolation technology]:isolation:(default hyperv process)" \ + "($help)*--label=[Set metadata for an image]:label=value: " \ + "($help -m --memory)"{-m=,--memory=}"[Memory limit]:Memory limit: " \ + "($help)--memory-swap=[Total memory limit with swap]:Memory limit: " \ + "($help)--network=[Connect a container to a network]:network mode:(bridge none container host)" \ + "($help)--no-cache[Do not use cache when building the image]" \ + "($help)--pull[Attempt to pull a newer version of the image]" \ + "($help -q --quiet)"{-q,--quiet}"[Suppress verbose build output]" \ + "($help)--rm[Remove intermediate containers after a successful build]" \ + "($help)*--shm-size=[Size of '/dev/shm' (format is '')]:shm size: " \ + "($help)--squash[Squash newly built layers into a single new layer]" \ + "($help -t --tag)*"{-t=,--tag=}"[Repository, name and tag for the image]: :__docker_complete_repositories_with_tags" \ + "($help)*--ulimit=[ulimit options]:ulimit: " \ + "($help)--userns=[Container user namespace]:user namespace:(host)" \ + "($help -):path or URL:_directories" && ret=0 + ;; + (history) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help -H --human)"{-H,--human}"[Print sizes and dates in human readable format]" \ + "($help)--no-trunc[Do not truncate output]" \ + "($help -q --quiet)"{-q,--quiet}"[Only show numeric IDs]" \ + "($help -)*: :__docker_complete_images" && ret=0 + ;; + (import) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help)*"{-c=,--change=}"[Apply Dockerfile instruction to the created image]:Dockerfile:_files" \ + "($help -m --message)"{-m=,--message=}"[Commit message for imported image]:message: " \ + "($help -):URL:(- http:// file://)" \ + "($help -): :__docker_complete_repositories_with_tags" && ret=0 + ;; + (inspect) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help -f --format)"{-f=,--format=}"[Format the output using the given go template]:template: " \ + "($help -)*:images:__docker_complete_images" && ret=0 + ;; + (load) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help -i --input)"{-i=,--input=}"[Read from tar archive file]:archive file:_files -g \"*.((tar|TAR)(.gz|.GZ|.Z|.bz2|.lzma|.xz|)|(tbz|tgz|txz))(-.)\"" \ + "($help -q --quiet)"{-q,--quiet}"[Suppress the load output]" && ret=0 + ;; + (ls|list) + local state + _arguments $(__docker_arguments) \ + $opts_help \ + "($help -a --all)"{-a,--all}"[Show all images]" \ + "($help)--digests[Show digests]" \ + "($help)*"{-f=,--filter=}"[Filter values]:filter:__docker_complete_images_filters" \ + "($help)--format=[Pretty-print images using a Go template]:template: " \ + "($help)--no-trunc[Do not truncate output]" \ + "($help -q --quiet)"{-q,--quiet}"[Only show numeric IDs]" \ + "($help -): :__docker_complete_repositories" && ret=0 + ;; + (prune) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help -a --all)"{-a,--all}"[Remove all unused images, not just dangling ones]" \ + "($help)*--filter=[Filter values]:filter:__docker_complete_prune_filters" \ + "($help -f --force)"{-f,--force}"[Do not prompt for confirmation]" && ret=0 + ;; + (pull) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help -a --all-tags)"{-a,--all-tags}"[Download all tagged images]" \ + "($help)--disable-content-trust[Skip image verification]" \ + "($help -):name:__docker_search" && ret=0 + ;; + (push) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help)--disable-content-trust[Skip image signing]" \ + "($help -): :__docker_complete_images" && ret=0 + ;; + (rm) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help -f --force)"{-f,--force}"[Force removal]" \ + "($help)--no-prune[Do not delete untagged parents]" \ + "($help -)*: :__docker_complete_images" && ret=0 + ;; + (save) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help -o --output)"{-o=,--output=}"[Write to file]:file:_files" \ + "($help -)*: :__docker_complete_images" && ret=0 + ;; + (tag) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help -):source:__docker_complete_images"\ + "($help -):destination:__docker_complete_repositories_with_tags" && ret=0 + ;; + (help) + _arguments $(__docker_arguments) ":subcommand:__docker_container_commands" && ret=0 + ;; + esac + + return ret +} + +# EO image + +# BO network + +__docker_network_complete_ls_filters() { + [[ $PREFIX = -* ]] && return 1 + integer ret=1 + + if compset -P '*='; then + case "${${words[-1]%=*}#*=}" in + (driver) + __docker_complete_info_plugins Network && ret=0 + ;; + (id) + __docker_complete_networks_ids && ret=0 + ;; + (name) + __docker_complete_networks_names && ret=0 + ;; + (scope) + opts=('global' 'local' 'swarm') + _describe -t scope-filter-opts "Scope filter options" opts && ret=0 + ;; + (type) + opts=('builtin' 'custom') + _describe -t type-filter-opts "Type filter options" opts && ret=0 + ;; + *) + _message 'value' && ret=0 + ;; + esac + else + opts=('driver' 'id' 'label' 'name' 'scope' 'type') + _describe -t filter-opts "Filter Options" opts -qS "=" && ret=0 + fi + + return ret +} + +__docker_get_networks() { + [[ $PREFIX = -* ]] && return 1 + integer ret=1 + local line s + declare -a lines networks + + type=$1; shift + + lines=(${(f)${:-"$(_call_program commands docker $docker_options network ls)"$'\n'}}) + + # Parse header line to find columns + local i=1 j=1 k header=${lines[1]} + declare -A begin end + while (( j < ${#header} - 1 )); do + i=$(( j + ${${header[$j,-1]}[(i)[^ ]]} - 1 )) + j=$(( i + ${${header[$i,-1]}[(i) ]} - 1 )) + k=$(( j + ${${header[$j,-1]}[(i)[^ ]]} - 2 )) + begin[${header[$i,$((j-1))]}]=$i + end[${header[$i,$((j-1))]}]=$k + done + end[${header[$i,$((j-1))]}]=-1 + lines=(${lines[2,-1]}) + + # Network ID + if [[ $type = (ids|all) ]]; then + for line in $lines; do + s="${line[${begin[NETWORK ID]},${end[NETWORK ID]}]%% ##}" + s="$s:${(l:7:: :::)${${line[${begin[DRIVER]},${end[DRIVER]}]}%% ##}}" + s="$s, ${${line[${begin[SCOPE]},${end[SCOPE]}]}%% ##}" + networks=($networks $s) + done + fi + + # Names + if [[ $type = (names|all) ]]; then + for line in $lines; do + s="${line[${begin[NAME]},${end[NAME]}]%% ##}" + s="$s:${(l:7:: :::)${${line[${begin[DRIVER]},${end[DRIVER]}]}%% ##}}" + s="$s, ${${line[${begin[SCOPE]},${end[SCOPE]}]}%% ##}" + networks=($networks $s) + done + fi + + _describe -t networks-list "networks" networks "$@" && ret=0 + return ret +} + +__docker_complete_networks() { + [[ $PREFIX = -* ]] && return 1 + __docker_get_networks all "$@" +} + +__docker_complete_networks_ids() { + [[ $PREFIX = -* ]] && return 1 + __docker_get_networks ids "$@" +} + +__docker_complete_networks_names() { + [[ $PREFIX = -* ]] && return 1 + __docker_get_networks names "$@" +} + +__docker_network_commands() { + local -a _docker_network_subcommands + _docker_network_subcommands=( + "connect:Connect a container to a network" + "create:Creates a new network with a name specified by the user" + "disconnect:Disconnects a container from a network" + "inspect:Displays detailed information on a network" + "ls:Lists all the networks created by the user" + "prune:Remove all unused networks" + "rm:Deletes one or more networks" + ) + _describe -t docker-network-commands "docker network command" _docker_network_subcommands +} + +__docker_network_subcommand() { + local -a _command_args opts_help + local expl help="--help" + integer ret=1 + + opts_help=("(: -)--help[Print usage]") + + case "$words[1]" in + (connect) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help)*--alias=[Add network-scoped alias for the container]:alias: " \ + "($help)--ip=[IPv4 address]:IPv4: " \ + "($help)--ip6=[IPv6 address]:IPv6: " \ + "($help)*--link=[Add a link to another container]:link:->link" \ + "($help)*--link-local-ip=[Add a link-local address for the container]:IPv4/IPv6: " \ + "($help -)1:network:__docker_complete_networks" \ + "($help -)2:containers:__docker_complete_containers" && ret=0 + + case $state in + (link) + if compset -P "*:"; then + _wanted alias expl "Alias" compadd -E "" && ret=0 + else + __docker_complete_running_containers -qS ":" && ret=0 + fi + ;; + esac + ;; + (create) + _arguments $(__docker_arguments) -A '-*' \ + $opts_help \ + "($help)--attachable[Enable manual container attachment]" \ + "($help)*--aux-address[Auxiliary IPv4 or IPv6 addresses used by network driver]:key=IP: " \ + "($help -d --driver)"{-d=,--driver=}"[Driver to manage the Network]:driver:(null host bridge overlay)" \ + "($help)*--gateway=[IPv4 or IPv6 Gateway for the master subnet]:IP: " \ + "($help)--internal[Restricts external access to the network]" \ + "($help)*--ip-range=[Allocate container ip from a sub-range]:IP/mask: " \ + "($help)--ipam-driver=[IP Address Management Driver]:driver:(default)" \ + "($help)*--ipam-opt=[Custom IPAM plugin options]:opt=value: " \ + "($help)--ipv6[Enable IPv6 networking]" \ + "($help)*--label=[Set metadata on a network]:label=value: " \ + "($help)*"{-o=,--opt=}"[Driver specific options]:opt=value: " \ + "($help)*--subnet=[Subnet in CIDR format that represents a network segment]:IP/mask: " \ + "($help -)1:Network Name: " && ret=0 + ;; + (disconnect) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help -)1:network:__docker_complete_networks" \ + "($help -)2:containers:__docker_complete_containers" && ret=0 + ;; + (inspect) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help -f --format)"{-f=,--format=}"[Format the output using the given go template]:template: " \ + "($help)--verbose[Show detailed information]" \ + "($help -)*:network:__docker_complete_networks" && ret=0 + ;; + (ls) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help)--no-trunc[Do not truncate the output]" \ + "($help)*"{-f=,--filter=}"[Provide filter values]:filter:__docker_network_complete_ls_filters" \ + "($help)--format=[Pretty-print networks using a Go template]:template: " \ + "($help -q --quiet)"{-q,--quiet}"[Only display numeric IDs]" && ret=0 + ;; + (prune) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help)*--filter=[Filter values]:filter:__docker_complete_prune_filters" \ + "($help -f --force)"{-f,--force}"[Do not prompt for confirmation]" && ret=0 + ;; + (rm) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help -)*:network:__docker_complete_networks" && ret=0 + ;; + (help) + _arguments $(__docker_arguments) ":subcommand:__docker_network_commands" && ret=0 + ;; + esac + + return ret +} + +# EO network + +# BO node + +__docker_node_complete_ls_filters() { + [[ $PREFIX = -* ]] && return 1 + integer ret=1 + + if compset -P '*='; then + case "${${words[-1]%=*}#*=}" in + (id) + __docker_complete_nodes_ids && ret=0 + ;; + (membership) + membership_opts=('accepted' 'pending' 'rejected') + _describe -t membership-opts "membership options" membership_opts && ret=0 + ;; + (name) + __docker_complete_nodes_names && ret=0 + ;; + (role) + role_opts=('manager' 'worker') + _describe -t role-opts "role options" role_opts && ret=0 + ;; + *) + _message 'value' && ret=0 + ;; + esac + else + opts=('id' 'label' 'membership' 'name' 'role') + _describe -t filter-opts "filter options" opts -qS "=" && ret=0 + fi + + return ret +} + +__docker_node_complete_ps_filters() { + [[ $PREFIX = -* ]] && return 1 + integer ret=1 + + if compset -P '*='; then + case "${${words[-1]%=*}#*=}" in + (desired-state) + state_opts=('accepted' 'running' 'shutdown') + _describe -t state-opts "desired state options" state_opts && ret=0 + ;; + *) + _message 'value' && ret=0 + ;; + esac + else + opts=('desired-state' 'id' 'label' 'name') + _describe -t filter-opts "filter options" opts -qS "=" && ret=0 + fi + + return ret +} + +__docker_nodes() { + [[ $PREFIX = -* ]] && return 1 + integer ret=1 + local line s + declare -a lines nodes args + + type=$1; shift + filter=$1; shift + [[ $filter != "none" ]] && args=("-f $filter") + + lines=(${(f)${:-"$(_call_program commands docker $docker_options node ls $args)"$'\n'}}) + # Parse header line to find columns + local i=1 j=1 k header=${lines[1]} + declare -A begin end + while (( j < ${#header} - 1 )); do + i=$(( j + ${${header[$j,-1]}[(i)[^ ]]} - 1 )) + j=$(( i + ${${header[$i,-1]}[(i) ]} - 1 )) + k=$(( j + ${${header[$j,-1]}[(i)[^ ]]} - 2 )) + begin[${header[$i,$((j-1))]}]=$i + end[${header[$i,$((j-1))]}]=$k + done + end[${header[$i,$((j-1))]}]=-1 + lines=(${lines[2,-1]}) + + # Node ID + if [[ $type = (ids|all) ]]; then + for line in $lines; do + s="${line[${begin[ID]},${end[ID]}]%% ##}" + nodes=($nodes $s) + done + fi + + # Names + if [[ $type = (names|all) ]]; then + for line in $lines; do + s="${line[${begin[HOSTNAME]},${end[HOSTNAME]}]%% ##}" + nodes=($nodes $s) + done + fi + + _describe -t nodes-list "nodes" nodes "$@" && ret=0 + return ret +} + +__docker_complete_nodes() { + [[ $PREFIX = -* ]] && return 1 + __docker_nodes all none "$@" +} + +__docker_complete_nodes_ids() { + [[ $PREFIX = -* ]] && return 1 + __docker_nodes ids none "$@" +} + +__docker_complete_nodes_names() { + [[ $PREFIX = -* ]] && return 1 + __docker_nodes names none "$@" +} + +__docker_complete_pending_nodes() { + [[ $PREFIX = -* ]] && return 1 + __docker_nodes all "membership=pending" "$@" +} + +__docker_complete_manager_nodes() { + [[ $PREFIX = -* ]] && return 1 + __docker_nodes all "role=manager" "$@" +} + +__docker_complete_worker_nodes() { + [[ $PREFIX = -* ]] && return 1 + __docker_nodes all "role=worker" "$@" +} + +__docker_node_commands() { + local -a _docker_node_subcommands + _docker_node_subcommands=( + "demote:Demote a node as manager in the swarm" + "inspect:Display detailed information on one or more nodes" + "ls:List nodes in the swarm" + "promote:Promote a node as manager in the swarm" + "rm:Remove one or more nodes from the swarm" + "ps:List tasks running on one or more nodes, defaults to current node" + "update:Update a node" + ) + _describe -t docker-node-commands "docker node command" _docker_node_subcommands +} + +__docker_node_subcommand() { + local -a _command_args opts_help + local expl help="--help" + integer ret=1 + + opts_help=("(: -)--help[Print usage]") + + case "$words[1]" in + (rm|remove) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help -f --force)"{-f,--force}"[Force remove a node from the swarm]" \ + "($help -)*:node:__docker_complete_pending_nodes" && ret=0 + ;; + (demote) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help -)*:node:__docker_complete_manager_nodes" && ret=0 + ;; + (inspect) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help -f --format)"{-f=,--format=}"[Format the output using the given go template]:template: " \ + "($help)--pretty[Print the information in a human friendly format]" \ + "($help -)*:node:__docker_complete_nodes" && ret=0 + ;; + (ls|list) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help)*"{-f=,--filter=}"[Provide filter values]:filter:__docker_node_complete_ls_filters" \ + "($help -q --quiet)"{-q,--quiet}"[Only display IDs]" && ret=0 + ;; + (promote) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help -)*:node:__docker_complete_worker_nodes" && ret=0 + ;; + (ps) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help -a --all)"{-a,--all}"[Display all instances]" \ + "($help)*"{-f=,--filter=}"[Provide filter values]:filter:__docker_node_complete_ps_filters" \ + "($help)--format=[Format the output using the given go template]:template: " \ + "($help)--no-resolve[Do not map IDs to Names]" \ + "($help)--no-trunc[Do not truncate output]" \ + "($help -q --quiet)"{-q,--quiet}"[Only display IDs]" \ + "($help -)*:node:__docker_complete_nodes" && ret=0 + ;; + (update) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help)--availability=[Availability of the node]:availability:(active pause drain)" \ + "($help)*--label-add=[Add or update a node label]:key=value: " \ + "($help)*--label-rm=[Remove a node label if exists]:label: " \ + "($help)--role=[Role of the node]:role:(manager worker)" \ + "($help -)1:node:__docker_complete_nodes" && ret=0 + ;; + (help) + _arguments $(__docker_arguments) ":subcommand:__docker_node_commands" && ret=0 + ;; + esac + + return ret +} + +# EO node + +# BO plugin + +__docker_plugin_complete_ls_filters() { + [[ $PREFIX = -* ]] && return 1 + integer ret=1 + + if compset -P '*='; then + case "${${words[-1]%=*}#*=}" in + (capability) + opts=('authz' 'ipamdriver' 'logdriver' 'metricscollector' 'networkdriver' 'volumedriver') + _describe -t capability-opts "capability options" opts && ret=0 + ;; + (enabled) + opts=('false' 'true') + _describe -t enabled-opts "enabled options" opts && ret=0 + ;; + *) + _message 'value' && ret=0 + ;; + esac + else + opts=('capability' 'enabled') + _describe -t filter-opts "filter options" opts -qS "=" && ret=0 + fi + + return ret +} + +__docker_plugins() { + [[ $PREFIX = -* ]] && return 1 + integer ret=1 + local line s + declare -a lines plugins args + + filter=$1; shift + [[ $filter != "none" ]] && args=("-f $filter") + + lines=(${(f)${:-"$(_call_program commands docker $docker_options plugin ls $args)"$'\n'}}) + + # Parse header line to find columns + local i=1 j=1 k header=${lines[1]} + declare -A begin end + while (( j < ${#header} - 1 )); do + i=$(( j + ${${header[$j,-1]}[(i)[^ ]]} - 1 )) + j=$(( i + ${${header[$i,-1]}[(i) ]} - 1 )) + k=$(( j + ${${header[$j,-1]}[(i)[^ ]]} - 2 )) + begin[${header[$i,$((j-1))]}]=$i + end[${header[$i,$((j-1))]}]=$k + done + end[${header[$i,$((j-1))]}]=-1 + lines=(${lines[2,-1]}) + + # Name + for line in $lines; do + s="${line[${begin[NAME]},${end[NAME]}]%% ##}" + s="$s:${(l:7:: :::)${${line[${begin[TAG]},${end[TAG]}]}%% ##}}" + plugins=($plugins $s) + done + + _describe -t plugins-list "plugins" plugins "$@" && ret=0 + return ret +} + +__docker_complete_plugins() { + [[ $PREFIX = -* ]] && return 1 + __docker_plugins none "$@" +} + +__docker_complete_enabled_plugins() { + [[ $PREFIX = -* ]] && return 1 + __docker_plugins enabled=true "$@" +} + +__docker_complete_disabled_plugins() { + [[ $PREFIX = -* ]] && return 1 + __docker_plugins enabled=false "$@" +} + +__docker_plugin_commands() { + local -a _docker_plugin_subcommands + _docker_plugin_subcommands=( + "disable:Disable a plugin" + "enable:Enable a plugin" + "inspect:Return low-level information about a plugin" + "install:Install a plugin" + "ls:List plugins" + "push:Push a plugin" + "rm:Remove a plugin" + "set:Change settings for a plugin" + "upgrade:Upgrade an existing plugin" + ) + _describe -t docker-plugin-commands "docker plugin command" _docker_plugin_subcommands +} + +__docker_plugin_subcommand() { + local -a _command_args opts_help + local expl help="--help" + integer ret=1 + + opts_help=("(: -)--help[Print usage]") + + case "$words[1]" in + (disable) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help -f --force)"{-f,--force}"[Force the disable of an active plugin]" \ + "($help -)1:plugin:__docker_complete_enabled_plugins" && ret=0 + ;; + (enable) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help)--timeout=[HTTP client timeout (in seconds)]:timeout: " \ + "($help -)1:plugin:__docker_complete_disabled_plugins" && ret=0 + ;; + (inspect) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help -f --format)"{-f=,--format=}"[Format the output using the given Go template]:template: " \ + "($help -)*:plugin:__docker_complete_plugins" && ret=0 + ;; + (install) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help)--alias=[Local name for plugin]:alias: " \ + "($help)--disable[Do not enable the plugin on install]" \ + "($help)--disable-content-trust[Skip image verification (default true)]" \ + "($help)--grant-all-permissions[Grant all permissions necessary to run the plugin]" \ + "($help -)1:plugin:__docker_complete_plugins" \ + "($help -)*:key=value: " && ret=0 + ;; + (ls|list) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help)*"{-f=,--filter=}"[Filter output based on conditions provided]:filter:__docker_plugin_complete_ls_filters" \ + "($help --format)--format=[Format the output using the given Go template]:template: " \ + "($help)--no-trunc[Don't truncate output]" \ + "($help -q --quiet)"{-q,--quiet}"[Only display IDs]" && ret=0 + ;; + (push) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help)--disable-content-trust[Skip image verification (default true)]" \ + "($help -)1:plugin:__docker_complete_plugins" && ret=0 + ;; + (rm|remove) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help -f --force)"{-f,--force}"[Force the removal of an active plugin]" \ + "($help -)*:plugin:__docker_complete_plugins" && ret=0 + ;; + (set) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help -)1:plugin:__docker_complete_plugins" \ + "($help -)*:key=value: " && ret=0 + ;; + (upgrade) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help)--disable-content-trust[Skip image verification (default true)]" \ + "($help)--grant-all-permissions[Grant all permissions necessary to run the plugin]" \ + "($help)--skip-remote-check[Do not check if specified remote plugin matches existing plugin image]" \ + "($help -)1:plugin:__docker_complete_plugins" \ + "($help -):remote: " && ret=0 + ;; + (help) + _arguments $(__docker_arguments) ":subcommand:__docker_plugin_commands" && ret=0 + ;; + esac + + return ret +} + +# EO plugin + +# BO secret + +__docker_secrets() { + [[ $PREFIX = -* ]] && return 1 + integer ret=1 + local line s + declare -a lines secrets + + type=$1; shift + + lines=(${(f)${:-"$(_call_program commands docker $docker_options secret ls)"$'\n'}}) + + # Parse header line to find columns + local i=1 j=1 k header=${lines[1]} + declare -A begin end + while (( j < ${#header} - 1 )); do + i=$(( j + ${${header[$j,-1]}[(i)[^ ]]} - 1 )) + j=$(( i + ${${header[$i,-1]}[(i) ]} - 1 )) + k=$(( j + ${${header[$j,-1]}[(i)[^ ]]} - 2 )) + begin[${header[$i,$((j-1))]}]=$i + end[${header[$i,$((j-1))]}]=$k + done + end[${header[$i,$((j-1))]}]=-1 + lines=(${lines[2,-1]}) + + # ID + if [[ $type = (ids|all) ]]; then + for line in $lines; do + s="${line[${begin[ID]},${end[ID]}]%% ##}" + secrets=($secrets $s) + done + fi + + # Names + if [[ $type = (names|all) ]]; then + for line in $lines; do + s="${line[${begin[NAME]},${end[NAME]}]%% ##}" + secrets=($secrets $s) + done + fi + + _describe -t secrets-list "secrets" secrets "$@" && ret=0 + return ret +} + +__docker_complete_secrets() { + [[ $PREFIX = -* ]] && return 1 + __docker_secrets all "$@" +} + +__docker_secret_commands() { + local -a _docker_secret_subcommands + _docker_secret_subcommands=( + "create:Create a secret using stdin as content" + "inspect:Display detailed information on one or more secrets" + "ls:List secrets" + "rm:Remove one or more secrets" + ) + _describe -t docker-secret-commands "docker secret command" _docker_secret_subcommands +} + +__docker_secret_subcommand() { + local -a _command_args opts_help + local expl help="--help" + integer ret=1 + + opts_help=("(: -)--help[Print usage]") + + case "$words[1]" in + (create) + _arguments $(__docker_arguments) -A '-*' \ + $opts_help \ + "($help)*"{-l=,--label=}"[Secret labels]:label: " \ + "($help -):secret: " && ret=0 + ;; + (inspect) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help -f --format)"{-f=,--format=}"[Format the output using the given Go template]:template: " \ + "($help -)*:secret:__docker_complete_secrets" && ret=0 + ;; + (ls|list) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help)--format=[Format the output using the given go template]:template: " \ + "($help -q --quiet)"{-q,--quiet}"[Only display IDs]" && ret=0 + ;; + (rm|remove) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help -)*:secret:__docker_complete_secrets" && ret=0 + ;; + (help) + _arguments $(__docker_arguments) ":subcommand:__docker_secret_commands" && ret=0 + ;; + esac + + return ret +} + +# EO secret + +# BO service + +__docker_service_complete_ls_filters() { + [[ $PREFIX = -* ]] && return 1 + integer ret=1 + + if compset -P '*='; then + case "${${words[-1]%=*}#*=}" in + (id) + __docker_complete_services_ids && ret=0 + ;; + (mode) + opts=('global' 'replicated') + _describe -t mode-opts "mode options" opts && ret=0 + ;; + (name) + __docker_complete_services_names && ret=0 + ;; + *) + _message 'value' && ret=0 + ;; + esac + else + opts=('id' 'label' 'mode' 'name') + _describe -t filter-opts "filter options" opts -qS "=" && ret=0 + fi + + return ret +} + +__docker_service_complete_ps_filters() { + [[ $PREFIX = -* ]] && return 1 + integer ret=1 + + if compset -P '*='; then + case "${${words[-1]%=*}#*=}" in + (desired-state) + state_opts=('accepted' 'running' 'shutdown') + _describe -t state-opts "desired state options" state_opts && ret=0 + ;; + *) + _message 'value' && ret=0 + ;; + esac + else + opts=('desired-state' 'id' 'label' 'name') + _describe -t filter-opts "filter options" opts -qS "=" && ret=0 + fi + + return ret +} + +__docker_service_complete_placement_pref() { + [[ $PREFIX = -* ]] && return 1 + integer ret=1 + + if compset -P '*='; then + case "${${words[-1]%=*}#*=}" in + (spread) + opts=('engine.labels' 'node.labels') + _describe -t spread-opts "spread options" opts -qS "." && ret=0 + ;; + *) + _message 'value' && ret=0 + ;; + esac + else + opts=('spread') + _describe -t pref-opts "placement pref options" opts -qS "=" && ret=0 + fi + + return ret +} + +__docker_services() { + [[ $PREFIX = -* ]] && return 1 + integer ret=1 + local line s + declare -a lines services + + type=$1; shift + + lines=(${(f)${:-"$(_call_program commands docker $docker_options service ls)"$'\n'}}) + + # Parse header line to find columns + local i=1 j=1 k header=${lines[1]} + declare -A begin end + while (( j < ${#header} - 1 )); do + i=$(( j + ${${header[$j,-1]}[(i)[^ ]]} - 1 )) + j=$(( i + ${${header[$i,-1]}[(i) ]} - 1 )) + k=$(( j + ${${header[$j,-1]}[(i)[^ ]]} - 2 )) + begin[${header[$i,$((j-1))]}]=$i + end[${header[$i,$((j-1))]}]=$k + done + end[${header[$i,$((j-1))]}]=-1 + lines=(${lines[2,-1]}) + + # Service ID + if [[ $type = (ids|all) ]]; then + for line in $lines; do + s="${line[${begin[ID]},${end[ID]}]%% ##}" + s="$s:${(l:7:: :::)${${line[${begin[IMAGE]},${end[IMAGE]}]}%% ##}}" + services=($services $s) + done + fi + + # Names + if [[ $type = (names|all) ]]; then + for line in $lines; do + s="${line[${begin[NAME]},${end[NAME]}]%% ##}" + s="$s:${(l:7:: :::)${${line[${begin[IMAGE]},${end[IMAGE]}]}%% ##}}" + services=($services $s) + done + fi + + _describe -t services-list "services" services "$@" && ret=0 + return ret +} + +__docker_complete_services() { + [[ $PREFIX = -* ]] && return 1 + __docker_services all "$@" +} + +__docker_complete_services_ids() { + [[ $PREFIX = -* ]] && return 1 + __docker_services ids "$@" +} + +__docker_complete_services_names() { + [[ $PREFIX = -* ]] && return 1 + __docker_services names "$@" +} + +__docker_service_commands() { + local -a _docker_service_subcommands + _docker_service_subcommands=( + "create:Create a new service" + "inspect:Display detailed information on one or more services" + "logs:Fetch the logs of a service or task" + "ls:List services" + "rm:Remove one or more services" + "rollback:Revert changes to a service's configuration" + "scale:Scale one or multiple replicated services" + "ps:List the tasks of a service" + "update:Update a service" + ) + _describe -t docker-service-commands "docker service command" _docker_service_subcommands +} + +__docker_service_subcommand() { + local -a _command_args opts_help opts_create_update + local expl help="--help" + integer ret=1 + + opts_help=("(: -)--help[Print usage]") + opts_create_update=( + "($help)*--constraint=[Placement constraints]:constraint: " + "($help)--endpoint-mode=[Placement constraints]:mode:(dnsrr vip)" + "($help)*"{-e=,--env=}"[Set environment variables]:env: " + "($help)--health-cmd=[Command to run to check health]:command: " + "($help)--health-interval=[Time between running the check]:time: " + "($help)--health-retries=[Consecutive failures needed to report unhealthy]:retries:(1 2 3 4 5)" + "($help)--health-timeout=[Maximum time to allow one check to run]:time: " + "($help)--hostname=[Service container hostname]:hostname: " \ + "($help)--isolation=[Service container isolation mode]:isolation:(default process hyperv)" \ + "($help)*--label=[Service labels]:label: " + "($help)--limit-cpu=[Limit CPUs]:value: " + "($help)--limit-memory=[Limit Memory]:value: " + "($help)--log-driver=[Logging driver for service]:logging driver:__docker_complete_log_drivers" + "($help)*--log-opt=[Logging driver options]:log driver options:__docker_complete_log_options" + "($help)*--mount=[Attach a filesystem mount to the service]:mount: " + "($help)*--network=[Network attachments]:network: " + "($help)--no-healthcheck[Disable any container-specified HEALTHCHECK]" + "($help)--read-only[Mount the container's root filesystem as read only]" + "($help)--replicas=[Number of tasks]:replicas: " + "($help)--reserve-cpu=[Reserve CPUs]:value: " + "($help)--reserve-memory=[Reserve Memory]:value: " + "($help)--restart-condition=[Restart when condition is met]:mode:(any none on-failure)" + "($help)--restart-delay=[Delay between restart attempts]:delay: " + "($help)--restart-max-attempts=[Maximum number of restarts before giving up]:max-attempts: " + "($help)--restart-window=[Window used to evaluate the restart policy]:duration: " + "($help)--rollback-delay=[Delay between task rollbacks]:duration: " + "($help)--rollback-failure-action=[Action on rollback failure]:action:(continue pause)" + "($help)--rollback-max-failure-ratio=[Failure rate to tolerate during a rollback]:failure rate: " + "($help)--rollback-monitor=[Duration after each task rollback to monitor for failure]:duration: " + "($help)--rollback-parallelism=[Maximum number of tasks rolled back simultaneously]:number: " + "($help)*--secret=[Specify secrets to expose to the service]:secret:__docker_complete_secrets" + "($help)--stop-grace-period=[Time to wait before force killing a container]:grace period: " + "($help)--stop-signal=[Signal to stop the container]:signal:_signals" + "($help -t --tty)"{-t,--tty}"[Allocate a pseudo-TTY]" + "($help)--update-delay=[Delay between updates]:delay: " + "($help)--update-failure-action=[Action on update failure]:mode:(continue pause rollback)" + "($help)--update-max-failure-ratio=[Failure rate to tolerate during an update]:fraction: " + "($help)--update-monitor=[Duration after each task update to monitor for failure]:window: " + "($help)--update-parallelism=[Maximum number of tasks updated simultaneously]:number: " + "($help -u --user)"{-u=,--user=}"[Username or UID]:user:_users" + "($help)--with-registry-auth[Send registry authentication details to swarm agents]" + "($help -w --workdir)"{-w=,--workdir=}"[Working directory inside the container]:directory:_directories" + ) + + case "$words[1]" in + (create) + _arguments $(__docker_arguments) \ + $opts_help \ + $opts_create_update \ + "($help)*--container-label=[Container labels]:label: " \ + "($help)*--dns=[Set custom DNS servers]:DNS: " \ + "($help)*--dns-option=[Set DNS options]:DNS option: " \ + "($help)*--dns-search=[Set custom DNS search domains]:DNS search: " \ + "($help)*--env-file=[Read environment variables from a file]:environment file:_files" \ + "($help)--mode=[Service Mode]:mode:(global replicated)" \ + "($help)--name=[Service name]:name: " \ + "($help)*--placement-pref=[Add a placement preference]:pref:__docker_service_complete_placement_pref" \ + "($help)*"{-p=,--publish=}"[Publish a port as a node port]:port: " \ + "($help -): :__docker_complete_images" \ + "($help -):command: _command_names -e" \ + "($help -)*::arguments: _normal" && ret=0 + ;; + (inspect) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help -f --format)"{-f=,--format=}"[Format the output using the given go template]:template: " \ + "($help)--pretty[Print the information in a human friendly format]" \ + "($help -)*:service:__docker_complete_services" && ret=0 + ;; + (logs) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help -f --follow)"{-f,--follow}"[Follow log output]" \ + "($help)--no-resolve[Do not map IDs to Names]" \ + "($help)--no-task-ids[Do not include task IDs]" \ + "($help)--no-trunc[Do not truncate output]" \ + "($help)--since=[Show logs since timestamp]:timestamp: " \ + "($help)--tail=[Number of lines to show from the end of the logs]:lines:(1 10 20 50 all)" \ + "($help -t --timestamps)"{-t,--timestamps}"[Show timestamps]" \ + "($help -)1:service:__docker_complete_services" && ret=0 + ;; + (ls|list) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help)*"{-f=,--filter=}"[Filter output based on conditions provided]:filter:__docker_service_complete_ls_filters" \ + "($help)--format=[Pretty-print services using a Go template]:template: " \ + "($help -q --quiet)"{-q,--quiet}"[Only display IDs]" && ret=0 + ;; + (rm|remove) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help -)*:service:__docker_complete_services" && ret=0 + ;; + (rollback) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help -d --detach)"{-d=false,--detach=false}"[Disable detached mode]" \ + "($help -q --quiet)"{-q,--quiet}"[Suppress progress output]" \ + "($help -)*:service:__docker_complete_services" && ret=0 + ;; + (scale) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help -d --detach)"{-d=false,--detach=false}"[Disable detached mode]" \ + "($help -)*:service:->values" && ret=0 + case $state in + (values) + if compset -P '*='; then + _message 'replicas' && ret=0 + else + __docker_complete_services -qS "=" + fi + ;; + esac + ;; + (ps) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help)*"{-f=,--filter=}"[Provide filter values]:filter:__docker_service_complete_ps_filters" \ + "($help)--format=[Format the output using the given go template]:template: " \ + "($help)--no-resolve[Do not map IDs to Names]" \ + "($help)--no-trunc[Do not truncate output]" \ + "($help -q --quiet)"{-q,--quiet}"[Only display task IDs]" \ + "($help -)*:service:__docker_complete_services" && ret=0 + ;; + (update) + _arguments $(__docker_arguments) \ + $opts_help \ + $opts_create_update \ + "($help)--arg=[Service command args]:arguments: _normal" \ + "($help)*--container-label-add=[Add or update container labels]:label: " \ + "($help)*--container-label-rm=[Remove a container label by its key]:label: " \ + "($help)*--dns-add=[Add or update custom DNS servers]:DNS: " \ + "($help)*--dns-rm=[Remove custom DNS servers]:DNS: " \ + "($help)*--dns-option-add=[Add or update DNS options]:DNS option: " \ + "($help)*--dns-option-rm=[Remove DNS options]:DNS option: " \ + "($help)*--dns-search-add=[Add or update custom DNS search domains]:DNS search: " \ + "($help)*--dns-search-rm=[Remove DNS search domains]:DNS search: " \ + "($help)--force[Force update]" \ + "($help)*--group-add=[Add additional supplementary user groups to the container]:group:_groups" \ + "($help)*--group-rm=[Remove previously added supplementary user groups from the container]:group:_groups" \ + "($help)--image=[Service image tag]:image:__docker_complete_repositories" \ + "($help)*--placement-pref-add=[Add a placement preference]:pref:__docker_service_complete_placement_pref" \ + "($help)*--placement-pref-rm=[Remove a placement preference]:pref:__docker_service_complete_placement_pref" \ + "($help)*--publish-add=[Add or update a port]:port: " \ + "($help)*--publish-rm=[Remove a port(target-port mandatory)]:port: " \ + "($help)--rollback[Rollback to previous specification]" \ + "($help -)1:service:__docker_complete_services" && ret=0 + ;; + (help) + _arguments $(__docker_arguments) ":subcommand:__docker_service_commands" && ret=0 + ;; + esac + + return ret +} + +# EO service + +# BO stack + +__docker_stack_complete_ps_filters() { + [[ $PREFIX = -* ]] && return 1 + integer ret=1 + + if compset -P '*='; then + case "${${words[-1]%=*}#*=}" in + (desired-state) + state_opts=('accepted' 'running' 'shutdown') + _describe -t state-opts "desired state options" state_opts && ret=0 + ;; + *) + _message 'value' && ret=0 + ;; + esac + else + opts=('desired-state' 'id' 'name') + _describe -t filter-opts "filter options" opts -qS "=" && ret=0 + fi + + return ret +} + +__docker_stack_complete_services_filters() { + [[ $PREFIX = -* ]] && return 1 + integer ret=1 + + if compset -P '*='; then + case "${${words[-1]%=*}#*=}" in + *) + _message 'value' && ret=0 + ;; + esac + else + opts=('id' 'label' 'name') + _describe -t filter-opts "filter options" opts -qS "=" && ret=0 + fi + + return ret +} + +__docker_stacks() { + [[ $PREFIX = -* ]] && return 1 + integer ret=1 + local line s + declare -a lines stacks + + lines=(${(f)${:-"$(_call_program commands docker $docker_options stack ls)"$'\n'}}) + + # Parse header line to find columns + local i=1 j=1 k header=${lines[1]} + declare -A begin end + while (( j < ${#header} - 1 )); do + i=$(( j + ${${header[$j,-1]}[(i)[^ ]]} - 1 )) + j=$(( i + ${${header[$i,-1]}[(i) ]} - 1 )) + k=$(( j + ${${header[$j,-1]}[(i)[^ ]]} - 2 )) + begin[${header[$i,$((j-1))]}]=$i + end[${header[$i,$((j-1))]}]=$k + done + end[${header[$i,$((j-1))]}]=-1 + lines=(${lines[2,-1]}) + + # Service NAME + for line in $lines; do + s="${line[${begin[NAME]},${end[NAME]}]%% ##}" + stacks=($stacks $s) + done + + _describe -t stacks-list "stacks" stacks "$@" && ret=0 + return ret +} + +__docker_complete_stacks() { + [[ $PREFIX = -* ]] && return 1 + __docker_stacks "$@" +} + +__docker_stack_commands() { + local -a _docker_stack_subcommands + _docker_stack_subcommands=( + "deploy:Deploy a new stack or update an existing stack" + "ls:List stacks" + "ps:List the tasks in the stack" + "rm:Remove the stack" + "services:List the services in the stack" + ) + _describe -t docker-stack-commands "docker stack command" _docker_stack_subcommands +} + +__docker_stack_subcommand() { + local -a _command_args opts_help + local expl help="--help" + integer ret=1 + + opts_help=("(: -)--help[Print usage]") + + case "$words[1]" in + (deploy|up) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help)--bundle-file=[Path to a Distributed Application Bundle file]:dab:_files -g \"*.dab\"" \ + "($help -c --compose-file)"{-c=,--compose-file=}"[Path to a Compose file]:compose file:_files -g \"*.(yml|yaml)\"" \ + "($help)--with-registry-auth[Send registry authentication details to Swarm agents]" \ + "($help -):stack:__docker_complete_stacks" && ret=0 + ;; + (ls|list) + _arguments $(__docker_arguments) \ + $opts_help && ret=0 + ;; + (ps) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help -a --all)"{-a,--all}"[Display all tasks]" \ + "($help)*"{-f=,--filter=}"[Filter output based on conditions provided]:filter:__docker_stack_complete_ps_filters" \ + "($help)--format=[Format the output using the given go template]:template: " \ + "($help)--no-resolve[Do not map IDs to Names]" \ + "($help)--no-trunc[Do not truncate output]" \ + "($help -q --quiet)"{-q,--quiet}"[Only display task IDs]" \ + "($help -):stack:__docker_complete_stacks" && ret=0 + ;; + (rm|remove|down) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help -):stack:__docker_complete_stacks" && ret=0 + ;; + (services) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help)*"{-f=,--filter=}"[Filter output based on conditions provided]:filter:__docker_stack_complete_services_filters" \ + "($help)--format=[Pretty-print services using a Go template]:template: " \ + "($help -q --quiet)"{-q,--quiet}"[Only display IDs]" \ + "($help -):stack:__docker_complete_stacks" && ret=0 + ;; + (help) + _arguments $(__docker_arguments) ":subcommand:__docker_stack_commands" && ret=0 + ;; + esac + + return ret +} + +# EO stack + +# BO swarm + +__docker_swarm_commands() { + local -a _docker_swarm_subcommands + _docker_swarm_subcommands=( + "init:Initialize a swarm" + "join:Join a swarm as a node and/or manager" + "join-token:Manage join tokens" + "leave:Leave a swarm" + "unlock:Unlock swarm" + "unlock-key:Manage the unlock key" + "update:Update the swarm" + ) + _describe -t docker-swarm-commands "docker swarm command" _docker_swarm_subcommands +} + +__docker_swarm_subcommand() { + local -a _command_args opts_help + local expl help="--help" + integer ret=1 + + opts_help=("(: -)--help[Print usage]") + + case "$words[1]" in + (init) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help)--advertise-addr=[Advertised address]:ip\:port: " \ + "($help)--data-path-addr=[Data path IP or interface]:ip " \ + "($help)--autolock[Enable manager autolocking]" \ + "($help)--availability=[Availability of the node]:availability:(active drain pause)" \ + "($help)--cert-expiry=[Validity period for node certificates]:duration: " \ + "($help)--dispatcher-heartbeat=[Dispatcher heartbeat period]:duration: " \ + "($help)*--external-ca=[Specifications of one or more certificate signing endpoints]:endpoint: " \ + "($help)--force-new-cluster[Force create a new cluster from current state]" \ + "($help)--listen-addr=[Listen address]:ip\:port: " \ + "($help)--max-snapshots[Number of additional Raft snapshots to retain]" \ + "($help)--snapshot-interval[Number of log entries between Raft snapshots]" \ + "($help)--task-history-limit=[Task history retention limit]:limit: " && ret=0 + ;; + (join) + _arguments $(__docker_arguments) -A '-*' \ + $opts_help \ + "($help)--advertise-addr=[Advertised address]:ip\:port: " \ + "($help)--data-path-addr=[Data path IP or interface]:ip " \ + "($help)--availability=[Availability of the node]:availability:(active drain pause)" \ + "($help)--listen-addr=[Listen address]:ip\:port: " \ + "($help)--token=[Token for entry into the swarm]:secret: " \ + "($help -):host\:port: " && ret=0 + ;; + (join-token) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help -q --quiet)"{-q,--quiet}"[Only display token]" \ + "($help)--rotate[Rotate join token]" \ + "($help -):role:(manager worker)" && ret=0 + ;; + (leave) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help -f --force)"{-f,--force}"[Force this node to leave the swarm, ignoring warnings]" && ret=0 + ;; + (unlock) + _arguments $(__docker_arguments) \ + $opts_help && ret=0 + ;; + (unlock-key) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help -q --quiet)"{-q,--quiet}"[Only display token]" \ + "($help)--rotate[Rotate unlock token]" && ret=0 + ;; + (update) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help)--autolock[Enable manager autolocking]" \ + "($help)--cert-expiry=[Validity period for node certificates]:duration: " \ + "($help)--dispatcher-heartbeat=[Dispatcher heartbeat period]:duration: " \ + "($help)*--external-ca=[Specifications of one or more certificate signing endpoints]:endpoint: " \ + "($help)--max-snapshots[Number of additional Raft snapshots to retain]" \ + "($help)--snapshot-interval[Number of log entries between Raft snapshots]" \ + "($help)--task-history-limit=[Task history retention limit]:limit: " && ret=0 + ;; + (help) + _arguments $(__docker_arguments) ":subcommand:__docker_network_commands" && ret=0 + ;; + esac + + return ret +} + +# EO swarm + +# BO system + +__docker_system_commands() { + local -a _docker_system_subcommands + _docker_system_subcommands=( + "df:Show docker filesystem usage" + "events:Get real time events from the server" + "info:Display system-wide information" + "prune:Remove unused data" + ) + _describe -t docker-system-commands "docker system command" _docker_system_subcommands +} + +__docker_system_subcommand() { + local -a _command_args opts_help + local expl help="--help" + integer ret=1 + + opts_help=("(: -)--help[Print usage]") + + case "$words[1]" in + (df) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help -v --verbose)"{-v,--verbose}"[Show detailed information on space usage]" && ret=0 + ;; + (events) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help)*"{-f=,--filter=}"[Filter values]:filter:__docker_complete_events_filter" \ + "($help)--since=[Events created since this timestamp]:timestamp: " \ + "($help)--until=[Events created until this timestamp]:timestamp: " \ + "($help)--format=[Format the output using the given go template]:template: " && ret=0 + ;; + (info) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help -f --format)"{-f=,--format=}"[Format the output using the given go template]:template: " && ret=0 + ;; + (prune) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help -a --all)"{-a,--all}"[Remove all unused data, not just dangling ones]" \ + "($help)*--filter=[Filter values]:filter:__docker_complete_prune_filters" \ + "($help -f --force)"{-f,--force}"[Do not prompt for confirmation]" \ + "($help)--volumes=[Remove all unused volumes]" && ret=0 + ;; + (help) + _arguments $(__docker_arguments) ":subcommand:__docker_volume_commands" && ret=0 + ;; + esac + + return ret +} + +# EO system + +# BO volume + +__docker_volume_complete_ls_filters() { + [[ $PREFIX = -* ]] && return 1 + integer ret=1 + + if compset -P '*='; then + case "${${words[-1]%=*}#*=}" in + (dangling) + dangling_opts=('true' 'false') + _describe -t dangling-filter-opts "Dangling Filter Options" dangling_opts && ret=0 + ;; + (driver) + __docker_complete_info_plugins Volume && ret=0 + ;; + (name) + __docker_complete_volumes && ret=0 + ;; + *) + _message 'value' && ret=0 + ;; + esac + else + opts=('dangling' 'driver' 'label' 'name') + _describe -t filter-opts "Filter Options" opts -qS "=" && ret=0 + fi + + return ret +} + +__docker_complete_volumes() { + [[ $PREFIX = -* ]] && return 1 + integer ret=1 + declare -a lines volumes + + lines=(${(f)${:-"$(_call_program commands docker $docker_options volume ls)"$'\n'}}) + + # Parse header line to find columns + local i=1 j=1 k header=${lines[1]} + declare -A begin end + while (( j < ${#header} - 1 )); do + i=$(( j + ${${header[$j,-1]}[(i)[^ ]]} - 1 )) + j=$(( i + ${${header[$i,-1]}[(i) ]} - 1 )) + k=$(( j + ${${header[$j,-1]}[(i)[^ ]]} - 2 )) + begin[${header[$i,$((j-1))]}]=$i + end[${header[$i,$((j-1))]}]=$k + done + end[${header[$i,$((j-1))]}]=-1 + lines=(${lines[2,-1]}) + + # Names + local line s + for line in $lines; do + s="${line[${begin[VOLUME NAME]},${end[VOLUME NAME]}]%% ##}" + s="$s:${(l:7:: :::)${${line[${begin[DRIVER]},${end[DRIVER]}]}%% ##}}" + volumes=($volumes $s) + done + + _describe -t volumes-list "volumes" volumes && ret=0 + return ret +} + +__docker_volume_commands() { + local -a _docker_volume_subcommands + _docker_volume_subcommands=( + "create:Create a volume" + "inspect:Display detailed information on one or more volumes" + "ls:List volumes" + "prune:Remove all unused volumes" + "rm:Remove one or more volumes" + ) + _describe -t docker-volume-commands "docker volume command" _docker_volume_subcommands +} + +__docker_volume_subcommand() { + local -a _command_args opts_help + local expl help="--help" + integer ret=1 + + opts_help=("(: -)--help[Print usage]") + + case "$words[1]" in + (create) + _arguments $(__docker_arguments) -A '-*' \ + $opts_help \ + "($help -d --driver)"{-d=,--driver=}"[Volume driver name]:Driver name:(local)" \ + "($help)*--label=[Set metadata for a volume]:label=value: " \ + "($help)*"{-o=,--opt=}"[Driver specific options]:Driver option: " \ + "($help -)1:Volume name: " && ret=0 + ;; + (inspect) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help -f --format)"{-f=,--format=}"[Format the output using the given go template]:template: " \ + "($help -)1:volume:__docker_complete_volumes" && ret=0 + ;; + (ls) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help)*"{-f=,--filter=}"[Provide filter values]:filter:__docker_volume_complete_ls_filters" \ + "($help)--format=[Pretty-print volumes using a Go template]:template: " \ + "($help -q --quiet)"{-q,--quiet}"[Only display volume names]" && ret=0 + ;; + (prune) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help -f --force)"{-f,--force}"[Do not prompt for confirmation]" && ret=0 + ;; + (rm) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help -f --force)"{-f,--force}"[Force the removal of one or more volumes]" \ + "($help -):volume:__docker_complete_volumes" && ret=0 + ;; + (help) + _arguments $(__docker_arguments) ":subcommand:__docker_volume_commands" && ret=0 + ;; + esac + + return ret +} + +# EO volume + +__docker_caching_policy() { + oldp=( "$1"(Nmh+1) ) # 1 hour + (( $#oldp )) +} + +__docker_commands() { + local cache_policy + integer force_invalidation=0 + + zstyle -s ":completion:${curcontext}:" cache-policy cache_policy + if [[ -z "$cache_policy" ]]; then + zstyle ":completion:${curcontext}:" cache-policy __docker_caching_policy + fi + + if ( (( ! ${+_docker_hide_legacy_commands} )) || _cache_invalid docker_hide_legacy_commands ) \ + && ! _retrieve_cache docker_hide_legacy_commands; + then + _docker_hide_legacy_commands="${DOCKER_HIDE_LEGACY_COMMANDS}" + _store_cache docker_hide_legacy_commands _docker_hide_legacy_commands + fi + + if [[ "${_docker_hide_legacy_commands}" != "${DOCKER_HIDE_LEGACY_COMMANDS}" ]]; then + force_invalidation=1 + _docker_hide_legacy_commands="${DOCKER_HIDE_LEGACY_COMMANDS}" + _store_cache docker_hide_legacy_commands _docker_hide_legacy_commands + fi + + if ( [[ ${+_docker_subcommands} -eq 0 ]] || _cache_invalid docker_subcommands ) \ + && ! _retrieve_cache docker_subcommands || [[ ${force_invalidation} -eq 1 ]]; + then + local -a lines + lines=(${(f)"$(_call_program commands docker 2>&1)"}) + _docker_subcommands=(${${${(M)${lines[$((${lines[(i)*Commands:]} + 1)),-1]}:# *}## #}/ ##/:}) + _docker_subcommands=($_docker_subcommands 'daemon:Enable daemon mode' 'help:Show help for a command') + (( $#_docker_subcommands > 2 )) && _store_cache docker_subcommands _docker_subcommands + fi + _describe -t docker-commands "docker command" _docker_subcommands +} + +__docker_subcommand() { + local -a _command_args opts_help + local expl help="--help" + integer ret=1 + + opts_help=("(: -)--help[Print usage]") + + case "$words[1]" in + (attach|commit|cp|create|diff|exec|export|kill|logs|pause|unpause|port|rename|restart|rm|run|start|stats|stop|top|update|wait) + __docker_container_subcommand && ret=0 + ;; + (build|history|import|load|pull|push|save|tag) + __docker_image_subcommand && ret=0 + ;; + (checkpoint) + local curcontext="$curcontext" state + _arguments $(__docker_arguments) \ + $opts_help \ + "($help -): :->command" \ + "($help -)*:: :->option-or-argument" && ret=0 + + case $state in + (command) + __docker_checkpoint_commands && ret=0 + ;; + (option-or-argument) + curcontext=${curcontext%:*:*}:docker-${words[-1]}: + __docker_checkpoint_subcommand && ret=0 + ;; + esac + ;; + (container) + local curcontext="$curcontext" state + _arguments $(__docker_arguments) \ + $opts_help \ + "($help -): :->command" \ + "($help -)*:: :->option-or-argument" && ret=0 + + case $state in + (command) + __docker_container_commands && ret=0 + ;; + (option-or-argument) + curcontext=${curcontext%:*:*}:docker-${words[-1]}: + __docker_container_subcommand && ret=0 + ;; + esac + ;; + (daemon) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help)*--add-runtime=[Register an additional OCI compatible runtime]:runtime:__docker_complete_runtimes" \ + "($help)*--allow-nondistributable-artifacts=[Push nondistributable artifacts to specified registries]:registry: " \ + "($help)--api-cors-header=[CORS headers in the Engine API]:CORS headers: " \ + "($help)*--authorization-plugin=[Authorization plugins to load]" \ + "($help -b --bridge)"{-b=,--bridge=}"[Attach containers to a network bridge]:bridge:_net_interfaces" \ + "($help)--bip=[Network bridge IP]:IP address: " \ + "($help)--cgroup-parent=[Parent cgroup for all containers]:cgroup: " \ + "($help)--cluster-advertise=[Address or interface name to advertise]:Instance to advertise (host\:port): " \ + "($help)--cluster-store=[URL of the distributed storage backend]:Cluster Store:->cluster-store" \ + "($help)*--cluster-store-opt=[Cluster store options]:Cluster options:->cluster-store-options" \ + "($help)--config-file=[Path to daemon configuration file]:Config File:_files" \ + "($help)--containerd=[Path to containerd socket]:socket:_files -g \"*.sock\"" \ + "($help)--data-root=[Root directory of persisted Docker data]:path:_directories" \ + "($help -D --debug)"{-D,--debug}"[Enable debug mode]" \ + "($help)--default-gateway[Container default gateway IPv4 address]:IPv4 address: " \ + "($help)--default-gateway-v6[Container default gateway IPv6 address]:IPv6 address: " \ + "($help)--default-shm-size=[Default shm size for containers]:size:" \ + "($help)*--default-ulimit=[Default ulimits for containers]:ulimit: " \ + "($help)*--dns=[DNS server to use]:DNS: " \ + "($help)*--dns-opt=[DNS options to use]:DNS option: " \ + "($help)*--dns-search=[DNS search domains to use]:DNS search: " \ + "($help)*--exec-opt=[Runtime execution options]:runtime execution options: " \ + "($help)--exec-root=[Root directory for execution state files]:path:_directories" \ + "($help)--experimental[Enable experimental features]" \ + "($help)--fixed-cidr=[IPv4 subnet for fixed IPs]:IPv4 subnet: " \ + "($help)--fixed-cidr-v6=[IPv6 subnet for fixed IPs]:IPv6 subnet: " \ + "($help -G --group)"{-G=,--group=}"[Group for the unix socket]:group:_groups" \ + "($help -H --host)"{-H=,--host=}"[tcp://host:port to bind/connect to]:host: " \ + "($help)--icc[Enable inter-container communication]" \ + "($help)--init[Run an init inside containers to forward signals and reap processes]" \ + "($help)--init-path=[Path to the docker-init binary]:docker-init binary:_files" \ + "($help)*--insecure-registry=[Enable insecure registry communication]:registry: " \ + "($help)--ip=[Default IP when binding container ports]" \ + "($help)--ip-forward[Enable net.ipv4.ip_forward]" \ + "($help)--ip-masq[Enable IP masquerading]" \ + "($help)--iptables[Enable addition of iptables rules]" \ + "($help)--ipv6[Enable IPv6 networking]" \ + "($help -l --log-level)"{-l=,--log-level=}"[Logging level]:level:(debug info warn error fatal)" \ + "($help)*--label=[Key=value labels]:label: " \ + "($help)--live-restore[Enable live restore of docker when containers are still running]" \ + "($help)--log-driver=[Default driver for container logs]:logging driver:__docker_complete_log_drivers" \ + "($help)*--log-opt=[Default log driver options for containers]:log driver options:__docker_complete_log_options" \ + "($help)--max-concurrent-downloads[Set the max concurrent downloads for each pull]" \ + "($help)--max-concurrent-uploads[Set the max concurrent uploads for each push]" \ + "($help)--mtu=[Network MTU]:mtu:(0 576 1420 1500 9000)" \ + "($help)--oom-score-adjust=[Set the oom_score_adj for the daemon]:oom-score:(-500)" \ + "($help -p --pidfile)"{-p=,--pidfile=}"[Path to use for daemon PID file]:PID file:_files" \ + "($help)--raw-logs[Full timestamps without ANSI coloring]" \ + "($help)*--registry-mirror=[Preferred Docker registry mirror]:registry mirror: " \ + "($help)--seccomp-profile=[Path to seccomp profile]:path:_files -g \"*.json\"" \ + "($help -s --storage-driver)"{-s=,--storage-driver=}"[Storage driver to use]:driver:(aufs btrfs devicemapper overlay overlay2 vfs zfs)" \ + "($help)--selinux-enabled[Enable selinux support]" \ + "($help)--shutdown-timeout=[Set the shutdown timeout value in seconds]:time: " \ + "($help)*--storage-opt=[Storage driver options]:storage driver options: " \ + "($help)--tls[Use TLS]" \ + "($help)--tlscacert=[Trust certs signed only by this CA]:PEM file:_files -g \"*.(pem|crt)\"" \ + "($help)--tlscert=[Path to TLS certificate file]:PEM file:_files -g \"*.(pem|crt)\"" \ + "($help)--tlskey=[Path to TLS key file]:Key file:_files -g \"*.(pem|key)\"" \ + "($help)--tlsverify[Use TLS and verify the remote]" \ + "($help)--userns-remap=[User/Group setting for user namespaces]:user\:group:->users-groups" \ + "($help)--userland-proxy[Use userland proxy for loopback traffic]" \ + "($help)--userland-proxy-path=[Path to the userland proxy binary]:binary:_files" && ret=0 + + case $state in + (cluster-store) + if compset -P '*://'; then + _message 'host:port' && ret=0 + else + store=('consul' 'etcd' 'zk') + _describe -t cluster-store "Cluster Store" store -qS "://" && ret=0 + fi + ;; + (cluster-store-options) + if compset -P '*='; then + _files && ret=0 + else + opts=('discovery.heartbeat' 'discovery.ttl' 'kv.cacertfile' 'kv.certfile' 'kv.keyfile' 'kv.path') + _describe -t cluster-store-opts "Cluster Store Options" opts -qS "=" && ret=0 + fi + ;; + (users-groups) + if compset -P '*:'; then + _groups && ret=0 + else + _describe -t userns-default "default Docker user management" '(default)' && ret=0 + _users && ret=0 + fi + ;; + esac + ;; + (events|info) + __docker_system_subcommand && ret=0 + ;; + (image) + local curcontext="$curcontext" state + _arguments $(__docker_arguments) \ + $opts_help \ + "($help -): :->command" \ + "($help -)*:: :->option-or-argument" && ret=0 + + case $state in + (command) + __docker_image_commands && ret=0 + ;; + (option-or-argument) + curcontext=${curcontext%:*:*}:docker-${words[-1]}: + __docker_image_subcommand && ret=0 + ;; + esac + ;; + (images) + words[1]='ls' + __docker_image_subcommand && ret=0 + ;; + (inspect) + local state + _arguments $(__docker_arguments) \ + $opts_help \ + "($help -f --format)"{-f=,--format=}"[Format the output using the given go template]:template: " \ + "($help -s --size)"{-s,--size}"[Display total file sizes if the type is container]" \ + "($help)--type=[Return JSON for specified type]:type:(container image network node plugin service volume)" \ + "($help -)*: :->values" && ret=0 + + case $state in + (values) + if [[ ${words[(r)--type=container]} == --type=container ]]; then + __docker_complete_containers && ret=0 + elif [[ ${words[(r)--type=image]} == --type=image ]]; then + __docker_complete_images && ret=0 + elif [[ ${words[(r)--type=network]} == --type=network ]]; then + __docker_complete_networks && ret=0 + elif [[ ${words[(r)--type=node]} == --type=node ]]; then + __docker_complete_nodes && ret=0 + elif [[ ${words[(r)--type=plugin]} == --type=plugin ]]; then + __docker_complete_plugins && ret=0 + elif [[ ${words[(r)--type=service]} == --type=secrets ]]; then + __docker_complete_secrets && ret=0 + elif [[ ${words[(r)--type=service]} == --type=service ]]; then + __docker_complete_services && ret=0 + elif [[ ${words[(r)--type=volume]} == --type=volume ]]; then + __docker_complete_volumes && ret=0 + else + __docker_complete_containers + __docker_complete_images + __docker_complete_networks + __docker_complete_nodes + __docker_complete_plugins + __docker_complete_secrets + __docker_complete_services + __docker_complete_volumes && ret=0 + fi + ;; + esac + ;; + (login) + _arguments $(__docker_arguments) -A '-*' \ + $opts_help \ + "($help -p --password)"{-p=,--password=}"[Password]:password: " \ + "($help)--password-stdin[Read password from stdin]" \ + "($help -u --user)"{-u=,--user=}"[Username]:username: " \ + "($help -)1:server: " && ret=0 + ;; + (logout) + _arguments $(__docker_arguments) -A '-*' \ + $opts_help \ + "($help -)1:server: " && ret=0 + ;; + (network) + local curcontext="$curcontext" state + _arguments $(__docker_arguments) \ + $opts_help \ + "($help -): :->command" \ + "($help -)*:: :->option-or-argument" && ret=0 + + case $state in + (command) + __docker_network_commands && ret=0 + ;; + (option-or-argument) + curcontext=${curcontext%:*:*}:docker-${words[-1]}: + __docker_network_subcommand && ret=0 + ;; + esac + ;; + (node) + local curcontext="$curcontext" state + _arguments $(__docker_arguments) \ + $opts_help \ + "($help -): :->command" \ + "($help -)*:: :->option-or-argument" && ret=0 + + case $state in + (command) + __docker_node_commands && ret=0 + ;; + (option-or-argument) + curcontext=${curcontext%:*:*}:docker-${words[-1]}: + __docker_node_subcommand && ret=0 + ;; + esac + ;; + (plugin) + local curcontext="$curcontext" state + _arguments $(__docker_arguments) \ + $opts_help \ + "($help -): :->command" \ + "($help -)*:: :->option-or-argument" && ret=0 + + case $state in + (command) + __docker_plugin_commands && ret=0 + ;; + (option-or-argument) + curcontext=${curcontext%:*:*}:docker-${words[-1]}: + __docker_plugin_subcommand && ret=0 + ;; + esac + ;; + (ps) + words[1]='ls' + __docker_container_subcommand && ret=0 + ;; + (rmi) + words[1]='rm' + __docker_image_subcommand && ret=0 + ;; + (search) + _arguments $(__docker_arguments) -A '-*' \ + $opts_help \ + "($help)*"{-f=,--filter=}"[Filter values]:filter:__docker_complete_search_filters" \ + "($help)--limit=[Maximum returned search results]:limit:(1 5 10 25 50)" \ + "($help)--no-trunc[Do not truncate output]" \ + "($help -):term: " && ret=0 + ;; + (secret) + local curcontext="$curcontext" state + _arguments $(__docker_arguments) \ + $opts_help \ + "($help -): :->command" \ + "($help -)*:: :->option-or-argument" && ret=0 + + case $state in + (command) + __docker_secret_commands && ret=0 + ;; + (option-or-argument) + curcontext=${curcontext%:*:*}:docker-${words[-1]}: + __docker_secret_subcommand && ret=0 + ;; + esac + ;; + (service) + local curcontext="$curcontext" state + _arguments $(__docker_arguments) \ + $opts_help \ + "($help -): :->command" \ + "($help -)*:: :->option-or-argument" && ret=0 + + case $state in + (command) + __docker_service_commands && ret=0 + ;; + (option-or-argument) + curcontext=${curcontext%:*:*}:docker-${words[-1]}: + __docker_service_subcommand && ret=0 + ;; + esac + ;; + (stack) + local curcontext="$curcontext" state + _arguments $(__docker_arguments) \ + $opts_help \ + "($help -): :->command" \ + "($help -)*:: :->option-or-argument" && ret=0 + + case $state in + (command) + __docker_stack_commands && ret=0 + ;; + (option-or-argument) + curcontext=${curcontext%:*:*}:docker-${words[-1]}: + __docker_stack_subcommand && ret=0 + ;; + esac + ;; + (swarm) + local curcontext="$curcontext" state + _arguments $(__docker_arguments) \ + $opts_help \ + "($help -): :->command" \ + "($help -)*:: :->option-or-argument" && ret=0 + + case $state in + (command) + __docker_swarm_commands && ret=0 + ;; + (option-or-argument) + curcontext=${curcontext%:*:*}:docker-${words[-1]}: + __docker_swarm_subcommand && ret=0 + ;; + esac + ;; + (system) + local curcontext="$curcontext" state + _arguments $(__docker_arguments) \ + $opts_help \ + "($help -): :->command" \ + "($help -)*:: :->option-or-argument" && ret=0 + + case $state in + (command) + __docker_system_commands && ret=0 + ;; + (option-or-argument) + curcontext=${curcontext%:*:*}:docker-${words[-1]}: + __docker_system_subcommand && ret=0 + ;; + esac + ;; + (version) + _arguments $(__docker_arguments) \ + $opts_help \ + "($help -f --format)"{-f=,--format=}"[Format the output using the given go template]:template: " && ret=0 + ;; + (volume) + local curcontext="$curcontext" state + _arguments $(__docker_arguments) \ + $opts_help \ + "($help -): :->command" \ + "($help -)*:: :->option-or-argument" && ret=0 + + case $state in + (command) + __docker_volume_commands && ret=0 + ;; + (option-or-argument) + curcontext=${curcontext%:*:*}:docker-${words[-1]}: + __docker_volume_subcommand && ret=0 + ;; + esac + ;; + (help) + _arguments $(__docker_arguments) ":subcommand:__docker_commands" && ret=0 + ;; + esac + + return ret +} + +_docker() { + # Support for subservices, which allows for `compdef _docker docker-shell=_docker_containers`. + # Based on /usr/share/zsh/functions/Completion/Unix/_git without support for `ret`. + if [[ $service != docker ]]; then + _call_function - _$service + return + fi + + local curcontext="$curcontext" state line help="-h --help" + integer ret=1 + typeset -A opt_args + + _arguments $(__docker_arguments) -C \ + "(: -)"{-h,--help}"[Print usage]" \ + "($help)--config[Location of client config files]:path:_directories" \ + "($help -D --debug)"{-D,--debug}"[Enable debug mode]" \ + "($help -H --host)"{-H=,--host=}"[tcp://host:port to bind/connect to]:host: " \ + "($help -l --log-level)"{-l=,--log-level=}"[Logging level]:level:(debug info warn error fatal)" \ + "($help)--tls[Use TLS]" \ + "($help)--tlscacert=[Trust certs signed only by this CA]:PEM file:_files -g "*.(pem|crt)"" \ + "($help)--tlscert=[Path to TLS certificate file]:PEM file:_files -g "*.(pem|crt)"" \ + "($help)--tlskey=[Path to TLS key file]:Key file:_files -g "*.(pem|key)"" \ + "($help)--tlsverify[Use TLS and verify the remote]" \ + "($help)--userland-proxy[Use userland proxy for loopback traffic]" \ + "($help -v --version)"{-v,--version}"[Print version information and quit]" \ + "($help -): :->command" \ + "($help -)*:: :->option-or-argument" && ret=0 + + local host=${opt_args[-H]}${opt_args[--host]} + local config=${opt_args[--config]} + local docker_options="${host:+--host $host} ${config:+--config $config}" + + case $state in + (command) + __docker_commands && ret=0 + ;; + (option-or-argument) + curcontext=${curcontext%:*:*}:docker-$words[1]: + __docker_subcommand && ret=0 + ;; + esac + + return ret +} + +_dockerd() { + integer ret=1 + words[1]='daemon' + __docker_subcommand && ret=0 + return ret +} + +_docker "$@" + +# Local Variables: +# mode: Shell-Script +# sh-indentation: 4 +# indent-tabs-mode: nil +# sh-basic-offset: 4 +# End: +# vim: ft=zsh sw=4 ts=4 et diff --git a/oh-my-zsh/.oh-my-zsh/plugins/doctl/README.md b/oh-my-zsh/.oh-my-zsh/plugins/doctl/README.md new file mode 100644 index 0000000..a81e90b --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/doctl/README.md @@ -0,0 +1,9 @@ +# Doctl + +This plugin provides completion for [Doctl](https://github.com/digitalocean/doctl). + +To use it add doctl to the plugins array in your zshrc file. + +```bash +plugins=(... doctl) +``` diff --git a/oh-my-zsh/.oh-my-zsh/plugins/doctl/doctl.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/doctl/doctl.plugin.zsh new file mode 100644 index 0000000..d23ed08 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/doctl/doctl.plugin.zsh @@ -0,0 +1,9 @@ +# Autocompletion for doctl, the command line tool for DigitalOcean service +# +# doctl project: https://github.com/digitalocean/doctl +# +# Author: https://github.com/HalisCz + +if [ $commands[doctl] ]; then + source <(doctl completion zsh) +fi diff --git a/oh-my-zsh/.oh-my-zsh/plugins/dotenv/README.md b/oh-my-zsh/.oh-my-zsh/plugins/dotenv/README.md new file mode 100644 index 0000000..e880e9d --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/dotenv/README.md @@ -0,0 +1,45 @@ +# dotenv + +Automatically load your project ENV variables from `.env` file when you `cd` into project root directory. + +Storing configuration in the environment is one of the tenets of a [twelve-factor app](https://www.12factor.net). Anything that is likely to change between deployment environments, such as resource handles for databases or credentials for external services, should be extracted from the code into environment variables. + +## Installation + +Just add the plugin to your `.zshrc`: + +```sh +plugins=(... dotenv) +``` + +## Usage + +Create `.env` file inside your project root directory and put your ENV variables there. + +For example: +```sh +export AWS_S3_TOKEN=d84a83539134f28f412c652b09f9f98eff96c9a +export SECRET_KEY=7c6c72d959416d5aa368a409362ec6e2ac90d7f +export MONGO_URI=mongodb://127.0.0.1:27017 +export PORT=3001 +``` +`export` is optional. This format works as well: +```sh +AWS_S3_TOKEN=d84a83539134f28f412c652b09f9f98eff96c9a +SECRET_KEY=7c6c72d959416d5aa368a409362ec6e2ac90d7f +MONGO_URI=mongodb://127.0.0.1:27017 +PORT=3001 +``` +You can even mix both formats, although it's probably a bad idea. + +## Version Control + +**It's strongly recommended to add `.env` file to `.gitignore`**, because usually it contains sensitive information such as your credentials, secret keys, passwords etc. You don't want to commit this file, it's supposed to be local only. + +## Disclaimer + +This plugin only sources the `.env` file. Nothing less, nothing more. It doesn't do any checks. It's designed to be the fastest and simplest option. You're responsible for the `.env` file content. You can put some code (or weird symbols) there, but do it on your own risk. `dotenv` is the basic tool, yet it does the job. + +If you need more advanced and feature-rich ENV management, check out these awesome projects: +* [direnv](https://github.com/direnv/direnv) +* [zsh-autoenv](https://github.com/Tarrasch/zsh-autoenv) diff --git a/oh-my-zsh/.oh-my-zsh/plugins/dotenv/dotenv.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/dotenv/dotenv.plugin.zsh new file mode 100644 index 0000000..b701b55 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/dotenv/dotenv.plugin.zsh @@ -0,0 +1,19 @@ +source_env() { + if [[ -f .env ]]; then + # test .env syntax + zsh -fn .env || echo 'dotenv: error when sourcing `.env` file' >&2 + + if [[ -o a ]]; then + source .env + else + set -a + source .env + set +a + fi + fi +} + +autoload -U add-zsh-hook +add-zsh-hook chpwd source_env + +source_env diff --git a/oh-my-zsh/.oh-my-zsh/plugins/droplr/README.md b/oh-my-zsh/.oh-my-zsh/plugins/droplr/README.md new file mode 100644 index 0000000..6daa254 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/droplr/README.md @@ -0,0 +1,19 @@ +# droplr + +Use [Droplr](https://droplr.com/) from the command line to upload files and shorten +links. It needs to have [Droplr.app](https://droplr.com/apps) installed and logged +in. MacOS only. + +To use it, add `droplr` to the `$plugins` variable in your zshrc file: + +```zsh +plugins=(... droplr) +``` + +Author: [Fabio Fernandes](https://github.com/fabiofl) + +## Examples + +- Upload a file: `droplr ./path/to/file/` + +- Shorten a link: `droplr https://example.com` diff --git a/oh-my-zsh/.oh-my-zsh/plugins/droplr/droplr.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/droplr/droplr.plugin.zsh new file mode 100644 index 0000000..af0a212 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/droplr/droplr.plugin.zsh @@ -0,0 +1,15 @@ +# Only compatible with MacOS +[[ "$OSTYPE" == darwin* ]] || return + +droplr() { + if [[ $# -eq 0 ]]; then + echo You need to specify a parameter. >&2 + return 1 + fi + + if [[ "$1" =~ ^https?:// ]]; then + osascript -e 'tell app "Droplr" to shorten "'"$1"'"' + else + open -ga /Applications/Droplr.app "$1" + fi +} diff --git a/oh-my-zsh/.oh-my-zsh/plugins/eecms/eecms.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/eecms/eecms.plugin.zsh new file mode 100644 index 0000000..ee10fbb --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/eecms/eecms.plugin.zsh @@ -0,0 +1,20 @@ +# ExpressionEngine CMS basic command completion + +_eecms_console () { + echo "php $(find . -maxdepth 3 -mindepth 1 -name 'eecms' -type f | head -n 1)" +} + +_eecms_get_command_list () { + `_eecms_console` | sed "/Available commands/,/^/d" | sed "s/[[:space:]].*//g" +} + +_eecms () { + compadd `_eecms_get_command_list` +} + +compdef _eecms '`_eecms_console`' +compdef _eecms 'system/ee/eecms' +compdef _eecms eecms + +#Alias +alias eecms='`_eecms_console`' diff --git a/oh-my-zsh/.oh-my-zsh/plugins/emacs/README.md b/oh-my-zsh/.oh-my-zsh/plugins/emacs/README.md new file mode 100644 index 0000000..c8e33b5 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/emacs/README.md @@ -0,0 +1,30 @@ +# Emacs plugin + +This plugin utilizes the Emacs daemon capability, allowing the user to quickly open frames, whether they are opened in a terminal via a ssh connection, or X frames opened on the same host. The plugin also provides some aliases for such operations. + +- You don't have the cost of starting Emacs all the time anymore +- Opening a file is as fast as Emacs does not have anything else to do. +- You can share opened buffered across opened frames. +- Configuration changes made at runtime are applied to all frames. + +**NOTE:** requires Emacs 24 and newer. + +To use it, add emacs to the plugins array in your zshrc file: + +```zsh +plugins=(... emacs) +``` + +## Aliases + +The plugin uses a custom launcher (which we'll call here `$EMACS_LAUNCHER`) that is just a wrapper around [`emacsclient`](https://www.emacswiki.org/emacs/EmacsClient). + +| Alias | Command | Description | +|--------|----------------------------------------------------|----------------------------------------------------------------| +| emacs | `$EMACS_LAUNCHER --no-wait` | Opens a temporary emacsclient frame | +| e | `emacs` | Same as emacs alias | +| te | `$EMACS_LAUNCHER -nw` | Open terminal emacsclient | +| eeval | `$EMACS_LAUNCHER --eval` | Same as `M-x eval` but from outside Emacs | +| eframe | `emacsclient --alternate-editor "" --create-frame` | Create new X frame | +| efile | - | Print the path to the file open in the current buffer | +| ecd | - | Print the directory of the file open in the the current buffer | diff --git a/oh-my-zsh/.oh-my-zsh/plugins/emacs/emacs.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/emacs/emacs.plugin.zsh new file mode 100644 index 0000000..db0ab13 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/emacs/emacs.plugin.zsh @@ -0,0 +1,55 @@ +# Emacs 23 daemon capability is a killing feature. +# One emacs process handles all your frames whether +# you use a frame opened in a terminal via a ssh connection or X frames +# opened on the same host. + +# Benefits are multiple +# - You don't have the cost of starting Emacs all the time anymore +# - Opening a file is as fast as Emacs does not have anything else to do. +# - You can share opened buffered across opened frames. +# - Configuration changes made at runtime are applied to all frames. + + +if "$ZSH/tools/require_tool.sh" emacsclient 24 2>/dev/null ; then + export EMACS_PLUGIN_LAUNCHER="$ZSH/plugins/emacs/emacsclient.sh" + + # set EDITOR if not already defined. + export EDITOR="${EDITOR:-${EMACS_PLUGIN_LAUNCHER}}" + + alias emacs="$EMACS_PLUGIN_LAUNCHER --no-wait" + alias e=emacs + # open terminal emacsclient + alias te="$EMACS_PLUGIN_LAUNCHER -nw" + + # same than M-x eval but from outside Emacs. + alias eeval="$EMACS_PLUGIN_LAUNCHER --eval" + # create a new X frame + alias eframe='emacsclient --alternate-editor "" --create-frame' + + + # Write to standard output the path to the file + # opened in the current buffer. + function efile { + local cmd="(buffer-file-name (window-buffer))" + "$EMACS_PLUGIN_LAUNCHER" --eval "$cmd" | tr -d \" + } + + # Write to standard output the directory of the file + # opened in the the current buffer + function ecd { + local cmd="(let ((buf-name (buffer-file-name (window-buffer)))) + (if buf-name (file-name-directory buf-name)))" + + local dir="$($EMACS_PLUGIN_LAUNCHER --eval $cmd | tr -d \")" + if [ -n "$dir" ] ;then + echo "$dir" + else + echo "can not deduce current buffer filename." >/dev/stderr + return 1 + fi + } +fi + +## Local Variables: +## mode: sh +## End: diff --git a/oh-my-zsh/.oh-my-zsh/plugins/emacs/emacsclient.sh b/oh-my-zsh/.oh-my-zsh/plugins/emacs/emacsclient.sh new file mode 100755 index 0000000..26b28d4 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/emacs/emacsclient.sh @@ -0,0 +1,28 @@ +#!/bin/sh + +_emacsfun() +{ + # get list of emacs frames. + frameslist=`emacsclient --alternate-editor '' --eval '(frame-list)' 2>/dev/null | egrep -o '(frame)+'` + + if [ "$(echo "$frameslist" | sed -n '$=')" -ge 2 ] ;then + # prevent creating another X frame if there is at least one present. + emacsclient --alternate-editor "" "$@" + else + # Create one if there is no X window yet. + emacsclient --alternate-editor "" --create-frame "$@" + fi +} + + +# adopted from https://github.com/davidshepherd7/emacs-read-stdin/blob/master/emacs-read-stdin.sh +# If the second argument is - then write stdin to a tempfile and open the +# tempfile. (first argument will be `--no-wait` passed in by the plugin.zsh) +if [ "$#" -ge "2" -a "$2" = "-" ] +then + tempfile="$(mktemp emacs-stdin-$USER.XXXXXXX --tmpdir)" + cat - > "$tempfile" + _emacsfun --no-wait $tempfile +else + _emacsfun "$@" +fi diff --git a/oh-my-zsh/.oh-my-zsh/plugins/ember-cli/README.md b/oh-my-zsh/.oh-my-zsh/plugins/ember-cli/README.md new file mode 100644 index 0000000..b463736 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/ember-cli/README.md @@ -0,0 +1,22 @@ +# Ember CLI + +**Maintainers:** [BilalBudhani](https://github.com/BilalBudhani), [eubenesa](https://github.com/eubenesa), [scottkidder](https://github.com/scottkidder] + +Ember CLI (https://www.ember-cli.com/) + +### List of Aliases + +Alias | Ember-CLI command +----- | ----------------- +**es** | *ember serve* +**ea** | *ember addon* +**eb** | *ember build* +**ed** | *ember destroy* +**eg** | *ember generate* +**eh** | *ember help* +**ein** | *ember init* +**ei** | *ember install* +**et** | *ember test* +**ets** | *ember test --serve* +**eu** | *ember update* +**ev** | *ember version* diff --git a/oh-my-zsh/.oh-my-zsh/plugins/ember-cli/ember-cli.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/ember-cli/ember-cli.plugin.zsh new file mode 100644 index 0000000..67842c1 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/ember-cli/ember-cli.plugin.zsh @@ -0,0 +1,17 @@ +# Ember CLI +# Visit https://www.ember-cli.com/ to view user guide + +alias es='ember serve' +alias ea='ember addon' +alias eb='ember build' +alias ed='ember destroy' +alias eg='ember generate' +alias eh='ember help' +alias ein='ember init' +alias ei='ember install' +alias et='ember test' +alias ets='ember test --serve' +alias eu='ember update' + +# version +alias ev='ember version' diff --git a/oh-my-zsh/.oh-my-zsh/plugins/emoji-clock/README.md b/oh-my-zsh/.oh-my-zsh/plugins/emoji-clock/README.md new file mode 100644 index 0000000..4934f38 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/emoji-clock/README.md @@ -0,0 +1,14 @@ +# emoji-clock + +The plugin displays current time as an emoji symbol with half hour accuracy. + +To use it, add `emoji-clock` to the plugins array of your zshrc file: +``` +plugins=(... emoji-clock) +``` + +## Features + +| Function | Description | +|-------------------|----------------------------------------------------------------------| +| `emoji-clock` | Displays current time in clock emoji symbol with half hour accuracy | diff --git a/oh-my-zsh/.oh-my-zsh/plugins/emoji-clock/emoji-clock.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/emoji-clock/emoji-clock.plugin.zsh new file mode 100644 index 0000000..0a55528 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/emoji-clock/emoji-clock.plugin.zsh @@ -0,0 +1,33 @@ +# ------------------------------------------------------------------------------ +# FILE: emoji-clock.plugin.zsh +# DESCRIPTION: The current time with half hour accuracy as an emoji symbol. +# Inspired by Andre Torrez' "Put A Burger In Your Shell" +# http://notes.torrez.org/2013/04/put-a-burger-in-your-shell.html +# AUTHOR: Alexis Hildebrandt (afh[at]surryhill.net) +# VERSION: 1.0.0 +# ----------------------------------------------------------------------------- + +function emoji-clock() { + # Add 15 minutes to the current time and save the value as $minutes. + (( minutes = $(date '+%M') + 15 )) + (( hour = $(date '+%I') + minutes / 60 )) + # make sure minutes and hours don't exceed 60 nor 12 respectively + (( minutes %= 60 )); (( hour %= 12 )) + + case $hour in + 0) clock="🕛"; [ $minutes -ge 30 ] && clock="🕧";; + 1) clock="🕐"; [ $minutes -ge 30 ] && clock="🕜";; + 2) clock="🕑"; [ $minutes -ge 30 ] && clock="🕝";; + 3) clock="🕒"; [ $minutes -ge 30 ] && clock="🕞";; + 4) clock="🕓"; [ $minutes -ge 30 ] && clock="🕟";; + 5) clock="🕔"; [ $minutes -ge 30 ] && clock="🕠";; + 6) clock="🕕"; [ $minutes -ge 30 ] && clock="🕡";; + 7) clock="🕖"; [ $minutes -ge 30 ] && clock="🕢";; + 8) clock="🕗"; [ $minutes -ge 30 ] && clock="🕣";; + 9) clock="🕘"; [ $minutes -ge 30 ] && clock="🕤";; + 10) clock="🕙"; [ $minutes -ge 30 ] && clock="🕥";; + 11) clock="🕚"; [ $minutes -ge 30 ] && clock="🕦";; + *) clock="⌛";; + esac + echo $clock +} diff --git a/oh-my-zsh/.oh-my-zsh/plugins/emoji/README.md b/oh-my-zsh/.oh-my-zsh/plugins/emoji/README.md new file mode 100644 index 0000000..8b8860a --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/emoji/README.md @@ -0,0 +1,135 @@ +# emoji plugin + +Support for conveniently working with Unicode emoji in Zsh. + +## Features + +This plugin provides support for working with Unicode emoji characters in `zsh` using human-readable identifiers. It provides global variables which map emoji names to the actual characters, country names to their flags, and some named groupings of emoji. It also provides associated functions for displaying them. + +#### Variables + +Variable | Description +----------------- | -------------------------------- + $emoji | Maps emoji names to characters + $emoji_flags | Maps country names to flag characters (using region indicators) + $emoji_groups | Named groups of emoji. Keys are group names; values are whitespace-separated lists of character names + +You may define new emoji groups at run time by modifying `$emoji_groups`. The special group name `all` is reserved for use by the plugin. You should not modify `$emoji` or `$emoji_flags`. + +#### Functions + +Function | Description +---------------- | ------------------------------- + random_emoji | Prints a random emoji character + display_emoji | Displays emoji, along with their names + +## Usage and Examples + +To output a specific emoji, use: +``` +$> echo $emoji[] +``` +E.g.: +``` +$> echo $emoji[mouse_face] +``` + +To output a random emoji, use: +``` +$> random_emoji +``` +To output a random emoji from a particular group, use: +``` +$> random_emoji +``` +E.g.: +``` +$> random_emoji fruits +$> random_emoji animals +$> random_emoji vehicles +$> random_emoji faces +``` + +The defined group names can be found with `echo ${(k)emoji_groups}`. + +To list all available emoji with their names, use: +``` +$> display_emoji +$> display_emoji fruits +$> display_emoji animals +$> display_emoji vehicles +$> display_emoji faces +``` + +To use emoji in a prompt: +``` +PROMPT="$emoji[penguin] > "" +PROMPT='$(random_emoji fruits) > ' +surfer=$emoji[surfer] +PROMPT="$surfer > " +``` + +## Technical Details + +The emoji names and codes are sourced from Unicode Technical Report \#51, which provides information on emoji support in Unicode. It can be found at https://www.unicode.org/reports/tr51/index.html. + +The group definitions are added by this OMZ plugin. They are not based on external definitions. (As far as I can tell. -apjanke) + +The values in the `$emoji*` maps are the emoji characters themselves, not escape sequences or other forms that require interpretation. They can be used in any context and do not require escape sequence support from commands like `echo` or `print`. + +The emoji in the main `$emoji` map are standalone character sequences which can all be output on their own, without worrying about combining characters. The values may actually be multi-code-point sequences, instead of a single code point, and may include combining characters in those sequences. But they're arranged so their effects do not extend beyond that sequence. + +The exception to this is the skin tone variation selectors. These are included in the main `$emoji` map because they can be displayed on their own, as well as used as combining characters. (If they follow a character that is not one of the emoji characters they combine with, they are displayed as color swatches.) + + +## Experimental Features + +This defines some additional variables and functions, but these are experimental and subject to change at any time. You shouldn't rely on them being available. They're mostly for the use of emoji plugin developers to help decide what to include in future revisions. + +Variables: + +Variable | Description +----------------- | -------------------------------- + $emoji2 | Auxiliary and combining characters + $emoji_skintone | Skin tone modifiers (from Unicode 8.0) + + +#### Skin Tone Variation Selection + +This includes experimental support for the skin tone Variation Selectors introduced with Unicode 8.0, which let you select different skin tones for emoji involving humans. + +NOTE: This really is experimental. The skin tone selectors are a relatively new feature and may not be supported by all systems. And the support in this plugin is a work in progress. It may not work in all places. In fact, I haven't gotten it to work anywhere yet. -apjanke + +The "variation selectors" are combining characters which change the appearance of the preceding character. A variation selector character can be output immediately following a human emoji to change its skin tone color. You can also output a variation selector on its own to display a color swatch of that skin tone. + +The `$emoji_skintone` associative array maps skin tone IDs to the variation selector characters. To use one, output it immediately following a smiley or other human emoji. + +``` +echo "$emoji[smiling_face_with_open_mouth]$emoji_skintone[4]" +``` + +Note that `$emoji_skintone` is an associative array, and its keys are the *names* of "Fitzpatrick Skin Type" groups, not linear indexes into a normal array. The names are `1_2`, `3`, `4`, `5`, and `6`. (Types 1 and 2 are combined into a single color.) See the [Diversity section in Unicode TR 51](https://www.unicode.org/reports/tr51/index.html#Diversity) for details. + +## TODO + +These are things that could be enhanced in future revisions of the plugin. + +* Incorporate CLDR data for ordering and groupings +* Short :bracket: style names (from gemoji) +* Incorporate `gemoji` data +* Country codes for flags +* ZWJ combining function? + +#### Gemoji support + +The [gemoji project](https://github.com/github/gemoji) seems to be the de facto main source for short names and other emoji-related metadata that isn't included in the official Unicode reports. (I'm saying this just from looking at the google results for "emoji short names" and related searches. -apjanke) + +If this plugin is updated to provide short names, CLDR sorting data, and similar stuff, it should probably be changed to use the Gemoji project, and the `update_emoji.pl` script be rewritten in Ruby so it can use the Gemoji library directly instead of parsing its data files. + +This does *not* mean that it should use Gemoji at run time. None of the `zsh` plugin stuff should call Gemoji or Ruby code. Rather, the "build time" `update_emoji.pl` script should be rewritten to use Gemoji to generate a pure-native-`zsh` character definition file which would be checked in to the repo and can be called by OMZ users without having Gemoji installed. + +#### ZWJ combining function + +One of the newer features of Unicode emoji is the ability to use the "Zero-Width Joiner" character to compose multiple emoji characters in to a single "emoji ligature" glyph. For example, this is [how Apple supports "family" emoji with various genders and skin tones](https://www.unicode.org/reports/tr51/index.html#ZWJ_Sequences). + +These are a pain to write out (and probably worse to read), and it might be convenient to have a couple functions for concisely composing them, if wider support for them appears. diff --git a/oh-my-zsh/.oh-my-zsh/plugins/emoji/emoji-char-definitions.zsh b/oh-my-zsh/.oh-my-zsh/plugins/emoji/emoji-char-definitions.zsh new file mode 100644 index 0000000..04693da --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/emoji/emoji-char-definitions.zsh @@ -0,0 +1,1303 @@ + +# emoji-char-definitions.zsh - Emoji character definitions for oh-my-zsh emoji plugin +# +# This file is auto-generated by update_emoji.pl. Do not edit it manually. +# +# This contains the definition for: +# $emoji - which maps character names to Unicode characters +# $emoji_flags - maps country names to Unicode flag characters using region indicators + +# Main emoji +typeset -gAH emoji +# National flags +typeset -gAH emoji_flags +# Combining modifiers +typeset -gAH emoji_mod + +emoji[copyright_sign]=$'\U00A9' +emoji[registered_sign]=$'\U00AE' +emoji[double_exclamation_mark]=$'\U203C' +emoji[exclamation_question_mark]=$'\U2049' +emoji[trade_mark_sign]=$'\U2122' +emoji[information_source]=$'\U2139' +emoji[left_right_arrow]=$'\U2194' +emoji[up_down_arrow]=$'\U2195' +emoji[north_west_arrow]=$'\U2196' +emoji[north_east_arrow]=$'\U2197' +emoji[south_east_arrow]=$'\U2198' +emoji[south_west_arrow]=$'\U2199' +emoji[leftwards_arrow_with_hook]=$'\U21A9' +emoji[rightwards_arrow_with_hook]=$'\U21AA' +emoji[watch]=$'\U231A' +emoji[hourglass]=$'\U231B' +emoji[keyboard]=$'\U2328' +emoji[eject_symbol]=$'\U23CF' +emoji[black_right_pointing_double_triangle]=$'\U23E9' +emoji[black_left_pointing_double_triangle]=$'\U23EA' +emoji[black_up_pointing_double_triangle]=$'\U23EB' +emoji[black_down_pointing_double_triangle]=$'\U23EC' +emoji[black_right_pointing_double_triangle_with_vertical_bar]=$'\U23ED' +emoji[black_left_pointing_double_triangle_with_vertical_bar]=$'\U23EE' +emoji[black_right_pointing_triangle_with_double_vertical_bar]=$'\U23EF' +emoji[alarm_clock]=$'\U23F0' +emoji[stopwatch]=$'\U23F1' +emoji[timer_clock]=$'\U23F2' +emoji[hourglass_with_flowing_sand]=$'\U23F3' +emoji[double_vertical_bar]=$'\U23F8' +emoji[black_square_for_stop]=$'\U23F9' +emoji[black_circle_for_record]=$'\U23FA' +emoji[circled_latin_capital_letter_m]=$'\U24C2' +emoji[black_small_square]=$'\U25AA' +emoji[white_small_square]=$'\U25AB' +emoji[black_right_pointing_triangle]=$'\U25B6' +emoji[black_left_pointing_triangle]=$'\U25C0' +emoji[white_medium_square]=$'\U25FB' +emoji[black_medium_square]=$'\U25FC' +emoji[white_medium_small_square]=$'\U25FD' +emoji[black_medium_small_square]=$'\U25FE' +emoji[black_sun_with_rays]=$'\U2600' +emoji[cloud]=$'\U2601' +emoji[umbrella]=$'\U2602' +emoji[snowman]=$'\U2603' +emoji[comet]=$'\U2604' +emoji[black_telephone]=$'\U260E' +emoji[ballot_box_with_check]=$'\U2611' +emoji[umbrella_with_rain_drops]=$'\U2614' +emoji[hot_beverage]=$'\U2615' +emoji[shamrock]=$'\U2618' +emoji[white_up_pointing_index]=$'\U261D' +emoji[skull_and_crossbones]=$'\U2620' +emoji[radioactive_sign]=$'\U2622' +emoji[biohazard_sign]=$'\U2623' +emoji[orthodox_cross]=$'\U2626' +emoji[star_and_crescent]=$'\U262A' +emoji[peace_symbol]=$'\U262E' +emoji[yin_yang]=$'\U262F' +emoji[wheel_of_dharma]=$'\U2638' +emoji[white_frowning_face]=$'\U2639' +emoji[white_smiling_face]=$'\U263A' +emoji[aries]=$'\U2648' +emoji[taurus]=$'\U2649' +emoji[gemini]=$'\U264A' +emoji[cancer]=$'\U264B' +emoji[leo]=$'\U264C' +emoji[virgo]=$'\U264D' +emoji[libra]=$'\U264E' +emoji[scorpius]=$'\U264F' +emoji[sagittarius]=$'\U2650' +emoji[capricorn]=$'\U2651' +emoji[aquarius]=$'\U2652' +emoji[pisces]=$'\U2653' +emoji[black_spade_suit]=$'\U2660' +emoji[black_club_suit]=$'\U2663' +emoji[black_heart_suit]=$'\U2665' +emoji[black_diamond_suit]=$'\U2666' +emoji[hot_springs]=$'\U2668' +emoji[black_universal_recycling_symbol]=$'\U267B' +emoji[wheelchair_symbol]=$'\U267F' +emoji[hammer_and_pick]=$'\U2692' +emoji[anchor]=$'\U2693' +emoji[crossed_swords]=$'\U2694' +emoji[scales]=$'\U2696' +emoji[alembic]=$'\U2697' +emoji[gear]=$'\U2699' +emoji[atom_symbol]=$'\U269B' +emoji[fleur_de_lis]=$'\U269C' +emoji[warning_sign]=$'\U26A0' +emoji[high_voltage_sign]=$'\U26A1' +emoji[medium_white_circle]=$'\U26AA' +emoji[medium_black_circle]=$'\U26AB' +emoji[coffin]=$'\U26B0' +emoji[funeral_urn]=$'\U26B1' +emoji[soccer_ball]=$'\U26BD' +emoji[baseball]=$'\U26BE' +emoji[snowman_without_snow]=$'\U26C4' +emoji[sun_behind_cloud]=$'\U26C5' +emoji[thunder_cloud_and_rain]=$'\U26C8' +emoji[ophiuchus]=$'\U26CE' +emoji[pick]=$'\U26CF' +emoji[helmet_with_white_cross]=$'\U26D1' +emoji[chains]=$'\U26D3' +emoji[no_entry]=$'\U26D4' +emoji[shinto_shrine]=$'\U26E9' +emoji[church]=$'\U26EA' +emoji[mountain]=$'\U26F0' +emoji[umbrella_on_ground]=$'\U26F1' +emoji[fountain]=$'\U26F2' +emoji[flag_in_hole]=$'\U26F3' +emoji[ferry]=$'\U26F4' +emoji[sailboat]=$'\U26F5' +emoji[skier]=$'\U26F7' +emoji[ice_skate]=$'\U26F8' +emoji[person_with_ball]=$'\U26F9' +emoji[tent]=$'\U26FA' +emoji[fuel_pump]=$'\U26FD' +emoji[black_scissors]=$'\U2702' +emoji[white_heavy_check_mark]=$'\U2705' +emoji[airplane]=$'\U2708' +emoji[envelope]=$'\U2709' +emoji[raised_fist]=$'\U270A' +emoji[raised_hand]=$'\U270B' +emoji[victory_hand]=$'\U270C' +emoji[writing_hand]=$'\U270D' +emoji[pencil]=$'\U270F' +emoji[black_nib]=$'\U2712' +emoji[heavy_check_mark]=$'\U2714' +emoji[heavy_multiplication_x]=$'\U2716' +emoji[latin_cross]=$'\U271D' +emoji[star_of_david]=$'\U2721' +emoji[sparkles]=$'\U2728' +emoji[eight_spoked_asterisk]=$'\U2733' +emoji[eight_pointed_black_star]=$'\U2734' +emoji[snowflake]=$'\U2744' +emoji[sparkle]=$'\U2747' +emoji[cross_mark]=$'\U274C' +emoji[negative_squared_cross_mark]=$'\U274E' +emoji[black_question_mark_ornament]=$'\U2753' +emoji[white_question_mark_ornament]=$'\U2754' +emoji[white_exclamation_mark_ornament]=$'\U2755' +emoji[heavy_exclamation_mark_symbol]=$'\U2757' +emoji[heavy_heart_exclamation_mark_ornament]=$'\U2763' +emoji[heavy_black_heart]=$'\U2764' +emoji[heavy_plus_sign]=$'\U2795' +emoji[heavy_minus_sign]=$'\U2796' +emoji[heavy_division_sign]=$'\U2797' +emoji[black_rightwards_arrow]=$'\U27A1' +emoji[curly_loop]=$'\U27B0' +emoji[double_curly_loop]=$'\U27BF' +emoji[arrow_pointing_rightwards_then_curving_upwards]=$'\U2934' +emoji[arrow_pointing_rightwards_then_curving_downwards]=$'\U2935' +emoji[leftwards_black_arrow]=$'\U2B05' +emoji[upwards_black_arrow]=$'\U2B06' +emoji[downwards_black_arrow]=$'\U2B07' +emoji[black_large_square]=$'\U2B1B' +emoji[white_large_square]=$'\U2B1C' +emoji[white_medium_star]=$'\U2B50' +emoji[heavy_large_circle]=$'\U2B55' +emoji[wavy_dash]=$'\U3030' +emoji[part_alternation_mark]=$'\U303D' +emoji[circled_ideograph_congratulation]=$'\U3297' +emoji[circled_ideograph_secret]=$'\U3299' +emoji[mahjong_tile_red_dragon]=$'\U1F004' +emoji[playing_card_black_joker]=$'\U1F0CF' +emoji[negative_squared_latin_capital_letter_a]=$'\U1F170' +emoji[negative_squared_latin_capital_letter_b]=$'\U1F171' +emoji[negative_squared_latin_capital_letter_o]=$'\U1F17E' +emoji[negative_squared_latin_capital_letter_p]=$'\U1F17F' +emoji[negative_squared_ab]=$'\U1F18E' +emoji[squared_cl]=$'\U1F191' +emoji[squared_cool]=$'\U1F192' +emoji[squared_free]=$'\U1F193' +emoji[squared_id]=$'\U1F194' +emoji[squared_new]=$'\U1F195' +emoji[squared_ng]=$'\U1F196' +emoji[squared_ok]=$'\U1F197' +emoji[squared_sos]=$'\U1F198' +emoji[squared_up_with_exclamation_mark]=$'\U1F199' +emoji[squared_vs]=$'\U1F19A' +emoji[squared_katakana_koko]=$'\U1F201' +emoji[squared_katakana_sa]=$'\U1F202' +emoji[squared_cjk_unified_ideograph_7121]=$'\U1F21A' +emoji[squared_cjk_unified_ideograph_6307]=$'\U1F22F' +emoji[squared_cjk_unified_ideograph_7981]=$'\U1F232' +emoji[squared_cjk_unified_ideograph_7a7a]=$'\U1F233' +emoji[squared_cjk_unified_ideograph_5408]=$'\U1F234' +emoji[squared_cjk_unified_ideograph_6e80]=$'\U1F235' +emoji[squared_cjk_unified_ideograph_6709]=$'\U1F236' +emoji[squared_cjk_unified_ideograph_6708]=$'\U1F237' +emoji[squared_cjk_unified_ideograph_7533]=$'\U1F238' +emoji[squared_cjk_unified_ideograph_5272]=$'\U1F239' +emoji[squared_cjk_unified_ideograph_55b6]=$'\U1F23A' +emoji[circled_ideograph_advantage]=$'\U1F250' +emoji[circled_ideograph_accept]=$'\U1F251' +emoji[cyclone]=$'\U1F300' +emoji[foggy]=$'\U1F301' +emoji[closed_umbrella]=$'\U1F302' +emoji[night_with_stars]=$'\U1F303' +emoji[sunrise_over_mountains]=$'\U1F304' +emoji[sunrise]=$'\U1F305' +emoji[cityscape_at_dusk]=$'\U1F306' +emoji[sunset_over_buildings]=$'\U1F307' +emoji[rainbow]=$'\U1F308' +emoji[bridge_at_night]=$'\U1F309' +emoji[water_wave]=$'\U1F30A' +emoji[volcano]=$'\U1F30B' +emoji[milky_way]=$'\U1F30C' +emoji[earth_globe_europe_africa]=$'\U1F30D' +emoji[earth_globe_americas]=$'\U1F30E' +emoji[earth_globe_asia_australia]=$'\U1F30F' +emoji[globe_with_meridians]=$'\U1F310' +emoji[new_moon_symbol]=$'\U1F311' +emoji[waxing_crescent_moon_symbol]=$'\U1F312' +emoji[first_quarter_moon_symbol]=$'\U1F313' +emoji[waxing_gibbous_moon_symbol]=$'\U1F314' +emoji[full_moon_symbol]=$'\U1F315' +emoji[waning_gibbous_moon_symbol]=$'\U1F316' +emoji[last_quarter_moon_symbol]=$'\U1F317' +emoji[waning_crescent_moon_symbol]=$'\U1F318' +emoji[crescent_moon]=$'\U1F319' +emoji[new_moon_with_face]=$'\U1F31A' +emoji[first_quarter_moon_with_face]=$'\U1F31B' +emoji[last_quarter_moon_with_face]=$'\U1F31C' +emoji[full_moon_with_face]=$'\U1F31D' +emoji[sun_with_face]=$'\U1F31E' +emoji[glowing_star]=$'\U1F31F' +emoji[shooting_star]=$'\U1F320' +emoji[thermometer]=$'\U1F321' +emoji[white_sun_with_small_cloud]=$'\U1F324' +emoji[white_sun_behind_cloud]=$'\U1F325' +emoji[white_sun_behind_cloud_with_rain]=$'\U1F326' +emoji[cloud_with_rain]=$'\U1F327' +emoji[cloud_with_snow]=$'\U1F328' +emoji[cloud_with_lightning]=$'\U1F329' +emoji[cloud_with_tornado]=$'\U1F32A' +emoji[fog]=$'\U1F32B' +emoji[wind_blowing_face]=$'\U1F32C' +emoji[hot_dog]=$'\U1F32D' +emoji[taco]=$'\U1F32E' +emoji[burrito]=$'\U1F32F' +emoji[chestnut]=$'\U1F330' +emoji[seedling]=$'\U1F331' +emoji[evergreen_tree]=$'\U1F332' +emoji[deciduous_tree]=$'\U1F333' +emoji[palm_tree]=$'\U1F334' +emoji[cactus]=$'\U1F335' +emoji[hot_pepper]=$'\U1F336' +emoji[tulip]=$'\U1F337' +emoji[cherry_blossom]=$'\U1F338' +emoji[rose]=$'\U1F339' +emoji[hibiscus]=$'\U1F33A' +emoji[sunflower]=$'\U1F33B' +emoji[blossom]=$'\U1F33C' +emoji[ear_of_maize]=$'\U1F33D' +emoji[ear_of_rice]=$'\U1F33E' +emoji[herb]=$'\U1F33F' +emoji[four_leaf_clover]=$'\U1F340' +emoji[maple_leaf]=$'\U1F341' +emoji[fallen_leaf]=$'\U1F342' +emoji[leaf_fluttering_in_wind]=$'\U1F343' +emoji[mushroom]=$'\U1F344' +emoji[tomato]=$'\U1F345' +emoji[aubergine]=$'\U1F346' +emoji[grapes]=$'\U1F347' +emoji[melon]=$'\U1F348' +emoji[watermelon]=$'\U1F349' +emoji[tangerine]=$'\U1F34A' +emoji[lemon]=$'\U1F34B' +emoji[banana]=$'\U1F34C' +emoji[pineapple]=$'\U1F34D' +emoji[red_apple]=$'\U1F34E' +emoji[green_apple]=$'\U1F34F' +emoji[pear]=$'\U1F350' +emoji[peach]=$'\U1F351' +emoji[cherries]=$'\U1F352' +emoji[strawberry]=$'\U1F353' +emoji[hamburger]=$'\U1F354' +emoji[slice_of_pizza]=$'\U1F355' +emoji[meat_on_bone]=$'\U1F356' +emoji[poultry_leg]=$'\U1F357' +emoji[rice_cracker]=$'\U1F358' +emoji[rice_ball]=$'\U1F359' +emoji[cooked_rice]=$'\U1F35A' +emoji[curry_and_rice]=$'\U1F35B' +emoji[steaming_bowl]=$'\U1F35C' +emoji[spaghetti]=$'\U1F35D' +emoji[bread]=$'\U1F35E' +emoji[french_fries]=$'\U1F35F' +emoji[roasted_sweet_potato]=$'\U1F360' +emoji[dango]=$'\U1F361' +emoji[oden]=$'\U1F362' +emoji[sushi]=$'\U1F363' +emoji[fried_shrimp]=$'\U1F364' +emoji[fish_cake_with_swirl_design]=$'\U1F365' +emoji[soft_ice_cream]=$'\U1F366' +emoji[shaved_ice]=$'\U1F367' +emoji[ice_cream]=$'\U1F368' +emoji[doughnut]=$'\U1F369' +emoji[cookie]=$'\U1F36A' +emoji[chocolate_bar]=$'\U1F36B' +emoji[candy]=$'\U1F36C' +emoji[lollipop]=$'\U1F36D' +emoji[custard]=$'\U1F36E' +emoji[honey_pot]=$'\U1F36F' +emoji[shortcake]=$'\U1F370' +emoji[bento_box]=$'\U1F371' +emoji[pot_of_food]=$'\U1F372' +emoji[cooking]=$'\U1F373' +emoji[fork_and_knife]=$'\U1F374' +emoji[teacup_without_handle]=$'\U1F375' +emoji[sake_bottle_and_cup]=$'\U1F376' +emoji[wine_glass]=$'\U1F377' +emoji[cocktail_glass]=$'\U1F378' +emoji[tropical_drink]=$'\U1F379' +emoji[beer_mug]=$'\U1F37A' +emoji[clinking_beer_mugs]=$'\U1F37B' +emoji[baby_bottle]=$'\U1F37C' +emoji[fork_and_knife_with_plate]=$'\U1F37D' +emoji[bottle_with_popping_cork]=$'\U1F37E' +emoji[popcorn]=$'\U1F37F' +emoji[ribbon]=$'\U1F380' +emoji[wrapped_present]=$'\U1F381' +emoji[birthday_cake]=$'\U1F382' +emoji[jack_o_lantern]=$'\U1F383' +emoji[christmas_tree]=$'\U1F384' +emoji[father_christmas]=$'\U1F385' +emoji[fireworks]=$'\U1F386' +emoji[firework_sparkler]=$'\U1F387' +emoji[balloon]=$'\U1F388' +emoji[party_popper]=$'\U1F389' +emoji[confetti_ball]=$'\U1F38A' +emoji[tanabata_tree]=$'\U1F38B' +emoji[crossed_flags]=$'\U1F38C' +emoji[pine_decoration]=$'\U1F38D' +emoji[japanese_dolls]=$'\U1F38E' +emoji[carp_streamer]=$'\U1F38F' +emoji[wind_chime]=$'\U1F390' +emoji[moon_viewing_ceremony]=$'\U1F391' +emoji[school_satchel]=$'\U1F392' +emoji[graduation_cap]=$'\U1F393' +emoji[military_medal]=$'\U1F396' +emoji[reminder_ribbon]=$'\U1F397' +emoji[studio_microphone]=$'\U1F399' +emoji[level_slider]=$'\U1F39A' +emoji[control_knobs]=$'\U1F39B' +emoji[film_frames]=$'\U1F39E' +emoji[admission_tickets]=$'\U1F39F' +emoji[carousel_horse]=$'\U1F3A0' +emoji[ferris_wheel]=$'\U1F3A1' +emoji[roller_coaster]=$'\U1F3A2' +emoji[fishing_pole_and_fish]=$'\U1F3A3' +emoji[microphone]=$'\U1F3A4' +emoji[movie_camera]=$'\U1F3A5' +emoji[cinema]=$'\U1F3A6' +emoji[headphone]=$'\U1F3A7' +emoji[artist_palette]=$'\U1F3A8' +emoji[top_hat]=$'\U1F3A9' +emoji[circus_tent]=$'\U1F3AA' +emoji[ticket]=$'\U1F3AB' +emoji[clapper_board]=$'\U1F3AC' +emoji[performing_arts]=$'\U1F3AD' +emoji[video_game]=$'\U1F3AE' +emoji[direct_hit]=$'\U1F3AF' +emoji[slot_machine]=$'\U1F3B0' +emoji[billiards]=$'\U1F3B1' +emoji[game_die]=$'\U1F3B2' +emoji[bowling]=$'\U1F3B3' +emoji[flower_playing_cards]=$'\U1F3B4' +emoji[musical_note]=$'\U1F3B5' +emoji[multiple_musical_notes]=$'\U1F3B6' +emoji[saxophone]=$'\U1F3B7' +emoji[guitar]=$'\U1F3B8' +emoji[musical_keyboard]=$'\U1F3B9' +emoji[trumpet]=$'\U1F3BA' +emoji[violin]=$'\U1F3BB' +emoji[musical_score]=$'\U1F3BC' +emoji[running_shirt_with_sash]=$'\U1F3BD' +emoji[tennis_racquet_and_ball]=$'\U1F3BE' +emoji[ski_and_ski_boot]=$'\U1F3BF' +emoji[basketball_and_hoop]=$'\U1F3C0' +emoji[chequered_flag]=$'\U1F3C1' +emoji[snowboarder]=$'\U1F3C2' +emoji[runner]=$'\U1F3C3' +emoji[surfer]=$'\U1F3C4' +emoji[sports_medal]=$'\U1F3C5' +emoji[trophy]=$'\U1F3C6' +emoji[horse_racing]=$'\U1F3C7' +emoji[american_football]=$'\U1F3C8' +emoji[rugby_football]=$'\U1F3C9' +emoji[swimmer]=$'\U1F3CA' +emoji[weight_lifter]=$'\U1F3CB' +emoji[golfer]=$'\U1F3CC' +emoji[racing_motorcycle]=$'\U1F3CD' +emoji[racing_car]=$'\U1F3CE' +emoji[cricket_bat_and_ball]=$'\U1F3CF' +emoji[volleyball]=$'\U1F3D0' +emoji[field_hockey_stick_and_ball]=$'\U1F3D1' +emoji[ice_hockey_stick_and_puck]=$'\U1F3D2' +emoji[table_tennis_paddle_and_ball]=$'\U1F3D3' +emoji[snow_capped_mountain]=$'\U1F3D4' +emoji[camping]=$'\U1F3D5' +emoji[beach_with_umbrella]=$'\U1F3D6' +emoji[building_construction]=$'\U1F3D7' +emoji[house_buildings]=$'\U1F3D8' +emoji[cityscape]=$'\U1F3D9' +emoji[derelict_house_building]=$'\U1F3DA' +emoji[classical_building]=$'\U1F3DB' +emoji[desert]=$'\U1F3DC' +emoji[desert_island]=$'\U1F3DD' +emoji[national_park]=$'\U1F3DE' +emoji[stadium]=$'\U1F3DF' +emoji[house_building]=$'\U1F3E0' +emoji[house_with_garden]=$'\U1F3E1' +emoji[office_building]=$'\U1F3E2' +emoji[japanese_post_office]=$'\U1F3E3' +emoji[european_post_office]=$'\U1F3E4' +emoji[hospital]=$'\U1F3E5' +emoji[bank]=$'\U1F3E6' +emoji[automated_teller_machine]=$'\U1F3E7' +emoji[hotel]=$'\U1F3E8' +emoji[love_hotel]=$'\U1F3E9' +emoji[convenience_store]=$'\U1F3EA' +emoji[school]=$'\U1F3EB' +emoji[department_store]=$'\U1F3EC' +emoji[factory]=$'\U1F3ED' +emoji[izakaya_lantern]=$'\U1F3EE' +emoji[japanese_castle]=$'\U1F3EF' +emoji[european_castle]=$'\U1F3F0' +emoji[waving_white_flag]=$'\U1F3F3' +emoji[waving_black_flag]=$'\U1F3F4' +emoji[rosette]=$'\U1F3F5' +emoji[label]=$'\U1F3F7' +emoji[badminton_racquet_and_shuttlecock]=$'\U1F3F8' +emoji[bow_and_arrow]=$'\U1F3F9' +emoji[amphora]=$'\U1F3FA' +emoji[emoji_modifier_fitzpatrick_type_1_2]=$'\U1F3FB' +emoji_mod[emoji_modifier_fitzpatrick_type_1_2]=$'\U1F3FB' +emoji[emoji_modifier_fitzpatrick_type_3]=$'\U1F3FC' +emoji_mod[emoji_modifier_fitzpatrick_type_3]=$'\U1F3FC' +emoji[emoji_modifier_fitzpatrick_type_4]=$'\U1F3FD' +emoji_mod[emoji_modifier_fitzpatrick_type_4]=$'\U1F3FD' +emoji[emoji_modifier_fitzpatrick_type_5]=$'\U1F3FE' +emoji_mod[emoji_modifier_fitzpatrick_type_5]=$'\U1F3FE' +emoji[emoji_modifier_fitzpatrick_type_6]=$'\U1F3FF' +emoji_mod[emoji_modifier_fitzpatrick_type_6]=$'\U1F3FF' +emoji[rat]=$'\U1F400' +emoji[mouse]=$'\U1F401' +emoji[ox]=$'\U1F402' +emoji[water_buffalo]=$'\U1F403' +emoji[cow]=$'\U1F404' +emoji[tiger]=$'\U1F405' +emoji[leopard]=$'\U1F406' +emoji[rabbit]=$'\U1F407' +emoji[cat]=$'\U1F408' +emoji[dragon]=$'\U1F409' +emoji[crocodile]=$'\U1F40A' +emoji[whale]=$'\U1F40B' +emoji[snail]=$'\U1F40C' +emoji[snake]=$'\U1F40D' +emoji[horse]=$'\U1F40E' +emoji[ram]=$'\U1F40F' +emoji[goat]=$'\U1F410' +emoji[sheep]=$'\U1F411' +emoji[monkey]=$'\U1F412' +emoji[rooster]=$'\U1F413' +emoji[chicken]=$'\U1F414' +emoji[dog]=$'\U1F415' +emoji[pig]=$'\U1F416' +emoji[boar]=$'\U1F417' +emoji[elephant]=$'\U1F418' +emoji[octopus]=$'\U1F419' +emoji[spiral_shell]=$'\U1F41A' +emoji[bug]=$'\U1F41B' +emoji[ant]=$'\U1F41C' +emoji[honeybee]=$'\U1F41D' +emoji[lady_beetle]=$'\U1F41E' +emoji[fish]=$'\U1F41F' +emoji[tropical_fish]=$'\U1F420' +emoji[blowfish]=$'\U1F421' +emoji[turtle]=$'\U1F422' +emoji[hatching_chick]=$'\U1F423' +emoji[baby_chick]=$'\U1F424' +emoji[front_facing_baby_chick]=$'\U1F425' +emoji[bird]=$'\U1F426' +emoji[penguin]=$'\U1F427' +emoji[koala]=$'\U1F428' +emoji[poodle]=$'\U1F429' +emoji[dromedary_camel]=$'\U1F42A' +emoji[bactrian_camel]=$'\U1F42B' +emoji[dolphin]=$'\U1F42C' +emoji[mouse_face]=$'\U1F42D' +emoji[cow_face]=$'\U1F42E' +emoji[tiger_face]=$'\U1F42F' +emoji[rabbit_face]=$'\U1F430' +emoji[cat_face]=$'\U1F431' +emoji[dragon_face]=$'\U1F432' +emoji[spouting_whale]=$'\U1F433' +emoji[horse_face]=$'\U1F434' +emoji[monkey_face]=$'\U1F435' +emoji[dog_face]=$'\U1F436' +emoji[pig_face]=$'\U1F437' +emoji[frog_face]=$'\U1F438' +emoji[hamster_face]=$'\U1F439' +emoji[wolf_face]=$'\U1F43A' +emoji[bear_face]=$'\U1F43B' +emoji[panda_face]=$'\U1F43C' +emoji[pig_nose]=$'\U1F43D' +emoji[paw_prints]=$'\U1F43E' +emoji[chipmunk]=$'\U1F43F' +emoji[eyes]=$'\U1F440' +emoji[eye]=$'\U1F441' +emoji[ear]=$'\U1F442' +emoji[nose]=$'\U1F443' +emoji[mouth]=$'\U1F444' +emoji[tongue]=$'\U1F445' +emoji[white_up_pointing_backhand_index]=$'\U1F446' +emoji[white_down_pointing_backhand_index]=$'\U1F447' +emoji[white_left_pointing_backhand_index]=$'\U1F448' +emoji[white_right_pointing_backhand_index]=$'\U1F449' +emoji[fisted_hand_sign]=$'\U1F44A' +emoji[waving_hand_sign]=$'\U1F44B' +emoji[ok_hand_sign]=$'\U1F44C' +emoji[thumbs_up_sign]=$'\U1F44D' +emoji[thumbs_down_sign]=$'\U1F44E' +emoji[clapping_hands_sign]=$'\U1F44F' +emoji[open_hands_sign]=$'\U1F450' +emoji[crown]=$'\U1F451' +emoji[womans_hat]=$'\U1F452' +emoji[eyeglasses]=$'\U1F453' +emoji[necktie]=$'\U1F454' +emoji[t_shirt]=$'\U1F455' +emoji[jeans]=$'\U1F456' +emoji[dress]=$'\U1F457' +emoji[kimono]=$'\U1F458' +emoji[bikini]=$'\U1F459' +emoji[womans_clothes]=$'\U1F45A' +emoji[purse]=$'\U1F45B' +emoji[handbag]=$'\U1F45C' +emoji[pouch]=$'\U1F45D' +emoji[mans_shoe]=$'\U1F45E' +emoji[athletic_shoe]=$'\U1F45F' +emoji[high_heeled_shoe]=$'\U1F460' +emoji[womans_sandal]=$'\U1F461' +emoji[womans_boots]=$'\U1F462' +emoji[footprints]=$'\U1F463' +emoji[bust_in_silhouette]=$'\U1F464' +emoji[busts_in_silhouette]=$'\U1F465' +emoji[boy]=$'\U1F466' +emoji[girl]=$'\U1F467' +emoji[man]=$'\U1F468' +emoji[woman]=$'\U1F469' +emoji[family]=$'\U1F46A' +emoji[man_and_woman_holding_hands]=$'\U1F46B' +emoji[two_men_holding_hands]=$'\U1F46C' +emoji[two_women_holding_hands]=$'\U1F46D' +emoji[police_officer]=$'\U1F46E' +emoji[woman_with_bunny_ears]=$'\U1F46F' +emoji[bride_with_veil]=$'\U1F470' +emoji[person_with_blond_hair]=$'\U1F471' +emoji[man_with_gua_pi_mao]=$'\U1F472' +emoji[man_with_turban]=$'\U1F473' +emoji[older_man]=$'\U1F474' +emoji[older_woman]=$'\U1F475' +emoji[baby]=$'\U1F476' +emoji[construction_worker]=$'\U1F477' +emoji[princess]=$'\U1F478' +emoji[japanese_ogre]=$'\U1F479' +emoji[japanese_goblin]=$'\U1F47A' +emoji[ghost]=$'\U1F47B' +emoji[baby_angel]=$'\U1F47C' +emoji[extraterrestrial_alien]=$'\U1F47D' +emoji[alien_monster]=$'\U1F47E' +emoji[imp]=$'\U1F47F' +emoji[skull]=$'\U1F480' +emoji[information_desk_person]=$'\U1F481' +emoji[guardsman]=$'\U1F482' +emoji[dancer]=$'\U1F483' +emoji[lipstick]=$'\U1F484' +emoji[nail_polish]=$'\U1F485' +emoji[face_massage]=$'\U1F486' +emoji[haircut]=$'\U1F487' +emoji[barber_pole]=$'\U1F488' +emoji[syringe]=$'\U1F489' +emoji[pill]=$'\U1F48A' +emoji[kiss_mark]=$'\U1F48B' +emoji[love_letter]=$'\U1F48C' +emoji[ring]=$'\U1F48D' +emoji[gem_stone]=$'\U1F48E' +emoji[kiss]=$'\U1F48F' +emoji[bouquet]=$'\U1F490' +emoji[couple_with_heart]=$'\U1F491' +emoji[wedding]=$'\U1F492' +emoji[beating_heart]=$'\U1F493' +emoji[broken_heart]=$'\U1F494' +emoji[two_hearts]=$'\U1F495' +emoji[sparkling_heart]=$'\U1F496' +emoji[growing_heart]=$'\U1F497' +emoji[heart_with_arrow]=$'\U1F498' +emoji[blue_heart]=$'\U1F499' +emoji[green_heart]=$'\U1F49A' +emoji[yellow_heart]=$'\U1F49B' +emoji[purple_heart]=$'\U1F49C' +emoji[heart_with_ribbon]=$'\U1F49D' +emoji[revolving_hearts]=$'\U1F49E' +emoji[heart_decoration]=$'\U1F49F' +emoji[diamond_shape_with_a_dot_inside]=$'\U1F4A0' +emoji[electric_light_bulb]=$'\U1F4A1' +emoji[anger_symbol]=$'\U1F4A2' +emoji[bomb]=$'\U1F4A3' +emoji[sleeping_symbol]=$'\U1F4A4' +emoji[collision_symbol]=$'\U1F4A5' +emoji[splashing_sweat_symbol]=$'\U1F4A6' +emoji[droplet]=$'\U1F4A7' +emoji[dash_symbol]=$'\U1F4A8' +emoji[pile_of_poo]=$'\U1F4A9' +emoji[flexed_biceps]=$'\U1F4AA' +emoji[dizzy_symbol]=$'\U1F4AB' +emoji[speech_balloon]=$'\U1F4AC' +emoji[thought_balloon]=$'\U1F4AD' +emoji[white_flower]=$'\U1F4AE' +emoji[hundred_points_symbol]=$'\U1F4AF' +emoji[money_bag]=$'\U1F4B0' +emoji[currency_exchange]=$'\U1F4B1' +emoji[heavy_dollar_sign]=$'\U1F4B2' +emoji[credit_card]=$'\U1F4B3' +emoji[banknote_with_yen_sign]=$'\U1F4B4' +emoji[banknote_with_dollar_sign]=$'\U1F4B5' +emoji[banknote_with_euro_sign]=$'\U1F4B6' +emoji[banknote_with_pound_sign]=$'\U1F4B7' +emoji[money_with_wings]=$'\U1F4B8' +emoji[chart_with_upwards_trend_and_yen_sign]=$'\U1F4B9' +emoji[seat]=$'\U1F4BA' +emoji[personal_computer]=$'\U1F4BB' +emoji[briefcase]=$'\U1F4BC' +emoji[minidisc]=$'\U1F4BD' +emoji[floppy_disk]=$'\U1F4BE' +emoji[optical_disc]=$'\U1F4BF' +emoji[dvd]=$'\U1F4C0' +emoji[file_folder]=$'\U1F4C1' +emoji[open_file_folder]=$'\U1F4C2' +emoji[page_with_curl]=$'\U1F4C3' +emoji[page_facing_up]=$'\U1F4C4' +emoji[calendar]=$'\U1F4C5' +emoji[tear_off_calendar]=$'\U1F4C6' +emoji[card_index]=$'\U1F4C7' +emoji[chart_with_upwards_trend]=$'\U1F4C8' +emoji[chart_with_downwards_trend]=$'\U1F4C9' +emoji[bar_chart]=$'\U1F4CA' +emoji[clipboard]=$'\U1F4CB' +emoji[pushpin]=$'\U1F4CC' +emoji[round_pushpin]=$'\U1F4CD' +emoji[paperclip]=$'\U1F4CE' +emoji[straight_ruler]=$'\U1F4CF' +emoji[triangular_ruler]=$'\U1F4D0' +emoji[bookmark_tabs]=$'\U1F4D1' +emoji[ledger]=$'\U1F4D2' +emoji[notebook]=$'\U1F4D3' +emoji[notebook_with_decorative_cover]=$'\U1F4D4' +emoji[closed_book]=$'\U1F4D5' +emoji[open_book]=$'\U1F4D6' +emoji[green_book]=$'\U1F4D7' +emoji[blue_book]=$'\U1F4D8' +emoji[orange_book]=$'\U1F4D9' +emoji[books]=$'\U1F4DA' +emoji[name_badge]=$'\U1F4DB' +emoji[scroll]=$'\U1F4DC' +emoji[memo]=$'\U1F4DD' +emoji[telephone_receiver]=$'\U1F4DE' +emoji[pager]=$'\U1F4DF' +emoji[fax_machine]=$'\U1F4E0' +emoji[satellite_antenna]=$'\U1F4E1' +emoji[public_address_loudspeaker]=$'\U1F4E2' +emoji[cheering_megaphone]=$'\U1F4E3' +emoji[outbox_tray]=$'\U1F4E4' +emoji[inbox_tray]=$'\U1F4E5' +emoji[package]=$'\U1F4E6' +emoji[e_mail_symbol]=$'\U1F4E7' +emoji[incoming_envelope]=$'\U1F4E8' +emoji[envelope_with_downwards_arrow_above]=$'\U1F4E9' +emoji[closed_mailbox_with_lowered_flag]=$'\U1F4EA' +emoji[closed_mailbox_with_raised_flag]=$'\U1F4EB' +emoji[open_mailbox_with_raised_flag]=$'\U1F4EC' +emoji[open_mailbox_with_lowered_flag]=$'\U1F4ED' +emoji[postbox]=$'\U1F4EE' +emoji[postal_horn]=$'\U1F4EF' +emoji[newspaper]=$'\U1F4F0' +emoji[mobile_phone]=$'\U1F4F1' +emoji[mobile_phone_with_rightwards_arrow_at_left]=$'\U1F4F2' +emoji[vibration_mode]=$'\U1F4F3' +emoji[mobile_phone_off]=$'\U1F4F4' +emoji[no_mobile_phones]=$'\U1F4F5' +emoji[antenna_with_bars]=$'\U1F4F6' +emoji[camera]=$'\U1F4F7' +emoji[camera_with_flash]=$'\U1F4F8' +emoji[video_camera]=$'\U1F4F9' +emoji[television]=$'\U1F4FA' +emoji[radio]=$'\U1F4FB' +emoji[videocassette]=$'\U1F4FC' +emoji[film_projector]=$'\U1F4FD' +emoji[prayer_beads]=$'\U1F4FF' +emoji[twisted_rightwards_arrows]=$'\U1F500' +emoji[clockwise_rightwards_and_leftwards_open_circle_arrows]=$'\U1F501' +emoji[clockwise_rightwards_and_leftwards_open_circle_arrows_with_circled_one_overlay]=$'\U1F502' +emoji[clockwise_downwards_and_upwards_open_circle_arrows]=$'\U1F503' +emoji[anticlockwise_downwards_and_upwards_open_circle_arrows]=$'\U1F504' +emoji[low_brightness_symbol]=$'\U1F505' +emoji[high_brightness_symbol]=$'\U1F506' +emoji[speaker_with_cancellation_stroke]=$'\U1F507' +emoji[speaker]=$'\U1F508' +emoji[speaker_with_one_sound_wave]=$'\U1F509' +emoji[speaker_with_three_sound_waves]=$'\U1F50A' +emoji[battery]=$'\U1F50B' +emoji[electric_plug]=$'\U1F50C' +emoji[left_pointing_magnifying_glass]=$'\U1F50D' +emoji[right_pointing_magnifying_glass]=$'\U1F50E' +emoji[lock_with_ink_pen]=$'\U1F50F' +emoji[closed_lock_with_key]=$'\U1F510' +emoji[key]=$'\U1F511' +emoji[lock]=$'\U1F512' +emoji[open_lock]=$'\U1F513' +emoji[bell]=$'\U1F514' +emoji[bell_with_cancellation_stroke]=$'\U1F515' +emoji[bookmark]=$'\U1F516' +emoji[link_symbol]=$'\U1F517' +emoji[radio_button]=$'\U1F518' +emoji[back_with_leftwards_arrow_above]=$'\U1F519' +emoji[end_with_leftwards_arrow_above]=$'\U1F51A' +emoji[on_with_exclamation_mark_with_left_right_arrow_above]=$'\U1F51B' +emoji[soon_with_rightwards_arrow_above]=$'\U1F51C' +emoji[top_with_upwards_arrow_above]=$'\U1F51D' +emoji[no_one_under_eighteen_symbol]=$'\U1F51E' +emoji[keycap_ten]=$'\U1F51F' +emoji[input_symbol_for_latin_capital_letters]=$'\U1F520' +emoji[input_symbol_for_latin_small_letters]=$'\U1F521' +emoji[input_symbol_for_numbers]=$'\U1F522' +emoji[input_symbol_for_symbols]=$'\U1F523' +emoji[input_symbol_for_latin_letters]=$'\U1F524' +emoji[fire]=$'\U1F525' +emoji[electric_torch]=$'\U1F526' +emoji[wrench]=$'\U1F527' +emoji[hammer]=$'\U1F528' +emoji[nut_and_bolt]=$'\U1F529' +emoji[hocho]=$'\U1F52A' +emoji[pistol]=$'\U1F52B' +emoji[microscope]=$'\U1F52C' +emoji[telescope]=$'\U1F52D' +emoji[crystal_ball]=$'\U1F52E' +emoji[six_pointed_star_with_middle_dot]=$'\U1F52F' +emoji[japanese_symbol_for_beginner]=$'\U1F530' +emoji[trident_emblem]=$'\U1F531' +emoji[black_square_button]=$'\U1F532' +emoji[white_square_button]=$'\U1F533' +emoji[large_red_circle]=$'\U1F534' +emoji[large_blue_circle]=$'\U1F535' +emoji[large_orange_diamond]=$'\U1F536' +emoji[large_blue_diamond]=$'\U1F537' +emoji[small_orange_diamond]=$'\U1F538' +emoji[small_blue_diamond]=$'\U1F539' +emoji[up_pointing_red_triangle]=$'\U1F53A' +emoji[down_pointing_red_triangle]=$'\U1F53B' +emoji[up_pointing_small_red_triangle]=$'\U1F53C' +emoji[down_pointing_small_red_triangle]=$'\U1F53D' +emoji[om_symbol]=$'\U1F549' +emoji[dove_of_peace]=$'\U1F54A' +emoji[kaaba]=$'\U1F54B' +emoji[mosque]=$'\U1F54C' +emoji[synagogue]=$'\U1F54D' +emoji[menorah_with_nine_branches]=$'\U1F54E' +emoji[clock_face_one_oclock]=$'\U1F550' +emoji[clock_face_two_oclock]=$'\U1F551' +emoji[clock_face_three_oclock]=$'\U1F552' +emoji[clock_face_four_oclock]=$'\U1F553' +emoji[clock_face_five_oclock]=$'\U1F554' +emoji[clock_face_six_oclock]=$'\U1F555' +emoji[clock_face_seven_oclock]=$'\U1F556' +emoji[clock_face_eight_oclock]=$'\U1F557' +emoji[clock_face_nine_oclock]=$'\U1F558' +emoji[clock_face_ten_oclock]=$'\U1F559' +emoji[clock_face_eleven_oclock]=$'\U1F55A' +emoji[clock_face_twelve_oclock]=$'\U1F55B' +emoji[clock_face_one_thirty]=$'\U1F55C' +emoji[clock_face_two_thirty]=$'\U1F55D' +emoji[clock_face_three_thirty]=$'\U1F55E' +emoji[clock_face_four_thirty]=$'\U1F55F' +emoji[clock_face_five_thirty]=$'\U1F560' +emoji[clock_face_six_thirty]=$'\U1F561' +emoji[clock_face_seven_thirty]=$'\U1F562' +emoji[clock_face_eight_thirty]=$'\U1F563' +emoji[clock_face_nine_thirty]=$'\U1F564' +emoji[clock_face_ten_thirty]=$'\U1F565' +emoji[clock_face_eleven_thirty]=$'\U1F566' +emoji[clock_face_twelve_thirty]=$'\U1F567' +emoji[candle]=$'\U1F56F' +emoji[mantelpiece_clock]=$'\U1F570' +emoji[hole]=$'\U1F573' +emoji[man_in_business_suit_levitating]=$'\U1F574' +emoji[sleuth_or_spy]=$'\U1F575' +emoji[dark_sunglasses]=$'\U1F576' +emoji[spider]=$'\U1F577' +emoji[spider_web]=$'\U1F578' +emoji[joystick]=$'\U1F579' +emoji[linked_paperclips]=$'\U1F587' +emoji[lower_left_ballpoint_pen]=$'\U1F58A' +emoji[lower_left_fountain_pen]=$'\U1F58B' +emoji[lower_left_paintbrush]=$'\U1F58C' +emoji[lower_left_crayon]=$'\U1F58D' +emoji[raised_hand_with_fingers_splayed]=$'\U1F590' +emoji[reversed_hand_with_middle_finger_extended]=$'\U1F595' +emoji[raised_hand_with_part_between_middle_and_ring_fingers]=$'\U1F596' +emoji[desktop_computer]=$'\U1F5A5' +emoji[printer]=$'\U1F5A8' +emoji[three_button_mouse]=$'\U1F5B1' +emoji[trackball]=$'\U1F5B2' +emoji[frame_with_picture]=$'\U1F5BC' +emoji[card_index_dividers]=$'\U1F5C2' +emoji[card_file_box]=$'\U1F5C3' +emoji[file_cabinet]=$'\U1F5C4' +emoji[wastebasket]=$'\U1F5D1' +emoji[spiral_note_pad]=$'\U1F5D2' +emoji[spiral_calendar_pad]=$'\U1F5D3' +emoji[compression]=$'\U1F5DC' +emoji[old_key]=$'\U1F5DD' +emoji[rolled_up_newspaper]=$'\U1F5DE' +emoji[dagger_knife]=$'\U1F5E1' +emoji[speaking_head_in_silhouette]=$'\U1F5E3' +emoji[right_anger_bubble]=$'\U1F5EF' +emoji[ballot_box_with_ballot]=$'\U1F5F3' +emoji[world_map]=$'\U1F5FA' +emoji[mount_fuji]=$'\U1F5FB' +emoji[tokyo_tower]=$'\U1F5FC' +emoji[statue_of_liberty]=$'\U1F5FD' +emoji[silhouette_of_japan]=$'\U1F5FE' +emoji[moyai]=$'\U1F5FF' +emoji[grinning_face]=$'\U1F600' +emoji[grinning_face_with_smiling_eyes]=$'\U1F601' +emoji[face_with_tears_of_joy]=$'\U1F602' +emoji[smiling_face_with_open_mouth]=$'\U1F603' +emoji[smiling_face_with_open_mouth_and_smiling_eyes]=$'\U1F604' +emoji[smiling_face_with_open_mouth_and_cold_sweat]=$'\U1F605' +emoji[smiling_face_with_open_mouth_and_tightly_closed_eyes]=$'\U1F606' +emoji[smiling_face_with_halo]=$'\U1F607' +emoji[smiling_face_with_horns]=$'\U1F608' +emoji[winking_face]=$'\U1F609' +emoji[smiling_face_with_smiling_eyes]=$'\U1F60A' +emoji[face_savouring_delicious_food]=$'\U1F60B' +emoji[relieved_face]=$'\U1F60C' +emoji[smiling_face_with_heart_shaped_eyes]=$'\U1F60D' +emoji[smiling_face_with_sunglasses]=$'\U1F60E' +emoji[smirking_face]=$'\U1F60F' +emoji[neutral_face]=$'\U1F610' +emoji[expressionless_face]=$'\U1F611' +emoji[unamused_face]=$'\U1F612' +emoji[face_with_cold_sweat]=$'\U1F613' +emoji[pensive_face]=$'\U1F614' +emoji[confused_face]=$'\U1F615' +emoji[confounded_face]=$'\U1F616' +emoji[kissing_face]=$'\U1F617' +emoji[face_throwing_a_kiss]=$'\U1F618' +emoji[kissing_face_with_smiling_eyes]=$'\U1F619' +emoji[kissing_face_with_closed_eyes]=$'\U1F61A' +emoji[face_with_stuck_out_tongue]=$'\U1F61B' +emoji[face_with_stuck_out_tongue_and_winking_eye]=$'\U1F61C' +emoji[face_with_stuck_out_tongue_and_tightly_closed_eyes]=$'\U1F61D' +emoji[disappointed_face]=$'\U1F61E' +emoji[worried_face]=$'\U1F61F' +emoji[angry_face]=$'\U1F620' +emoji[pouting_face]=$'\U1F621' +emoji[crying_face]=$'\U1F622' +emoji[persevering_face]=$'\U1F623' +emoji[face_with_look_of_triumph]=$'\U1F624' +emoji[disappointed_but_relieved_face]=$'\U1F625' +emoji[frowning_face_with_open_mouth]=$'\U1F626' +emoji[anguished_face]=$'\U1F627' +emoji[fearful_face]=$'\U1F628' +emoji[weary_face]=$'\U1F629' +emoji[sleepy_face]=$'\U1F62A' +emoji[tired_face]=$'\U1F62B' +emoji[grimacing_face]=$'\U1F62C' +emoji[loudly_crying_face]=$'\U1F62D' +emoji[face_with_open_mouth]=$'\U1F62E' +emoji[hushed_face]=$'\U1F62F' +emoji[face_with_open_mouth_and_cold_sweat]=$'\U1F630' +emoji[face_screaming_in_fear]=$'\U1F631' +emoji[astonished_face]=$'\U1F632' +emoji[flushed_face]=$'\U1F633' +emoji[sleeping_face]=$'\U1F634' +emoji[dizzy_face]=$'\U1F635' +emoji[face_without_mouth]=$'\U1F636' +emoji[face_with_medical_mask]=$'\U1F637' +emoji[grinning_cat_face_with_smiling_eyes]=$'\U1F638' +emoji[cat_face_with_tears_of_joy]=$'\U1F639' +emoji[smiling_cat_face_with_open_mouth]=$'\U1F63A' +emoji[smiling_cat_face_with_heart_shaped_eyes]=$'\U1F63B' +emoji[cat_face_with_wry_smile]=$'\U1F63C' +emoji[kissing_cat_face_with_closed_eyes]=$'\U1F63D' +emoji[pouting_cat_face]=$'\U1F63E' +emoji[crying_cat_face]=$'\U1F63F' +emoji[weary_cat_face]=$'\U1F640' +emoji[slightly_frowning_face]=$'\U1F641' +emoji[slightly_smiling_face]=$'\U1F642' +emoji[upside_down_face]=$'\U1F643' +emoji[face_with_rolling_eyes]=$'\U1F644' +emoji[face_with_no_good_gesture]=$'\U1F645' +emoji[face_with_ok_gesture]=$'\U1F646' +emoji[person_bowing_deeply]=$'\U1F647' +emoji[see_no_evil_monkey]=$'\U1F648' +emoji[hear_no_evil_monkey]=$'\U1F649' +emoji[speak_no_evil_monkey]=$'\U1F64A' +emoji[happy_person_raising_one_hand]=$'\U1F64B' +emoji[person_raising_both_hands_in_celebration]=$'\U1F64C' +emoji[person_frowning]=$'\U1F64D' +emoji[person_with_pouting_face]=$'\U1F64E' +emoji[person_with_folded_hands]=$'\U1F64F' +emoji[rocket]=$'\U1F680' +emoji[helicopter]=$'\U1F681' +emoji[steam_locomotive]=$'\U1F682' +emoji[railway_car]=$'\U1F683' +emoji[high_speed_train]=$'\U1F684' +emoji[high_speed_train_with_bullet_nose]=$'\U1F685' +emoji[train]=$'\U1F686' +emoji[metro]=$'\U1F687' +emoji[light_rail]=$'\U1F688' +emoji[station]=$'\U1F689' +emoji[tram]=$'\U1F68A' +emoji[tram_car]=$'\U1F68B' +emoji[bus]=$'\U1F68C' +emoji[oncoming_bus]=$'\U1F68D' +emoji[trolleybus]=$'\U1F68E' +emoji[bus_stop]=$'\U1F68F' +emoji[minibus]=$'\U1F690' +emoji[ambulance]=$'\U1F691' +emoji[fire_engine]=$'\U1F692' +emoji[police_car]=$'\U1F693' +emoji[oncoming_police_car]=$'\U1F694' +emoji[taxi]=$'\U1F695' +emoji[oncoming_taxi]=$'\U1F696' +emoji[automobile]=$'\U1F697' +emoji[oncoming_automobile]=$'\U1F698' +emoji[recreational_vehicle]=$'\U1F699' +emoji[delivery_truck]=$'\U1F69A' +emoji[articulated_lorry]=$'\U1F69B' +emoji[tractor]=$'\U1F69C' +emoji[monorail]=$'\U1F69D' +emoji[mountain_railway]=$'\U1F69E' +emoji[suspension_railway]=$'\U1F69F' +emoji[mountain_cableway]=$'\U1F6A0' +emoji[aerial_tramway]=$'\U1F6A1' +emoji[ship]=$'\U1F6A2' +emoji[rowboat]=$'\U1F6A3' +emoji[speedboat]=$'\U1F6A4' +emoji[horizontal_traffic_light]=$'\U1F6A5' +emoji[vertical_traffic_light]=$'\U1F6A6' +emoji[construction_sign]=$'\U1F6A7' +emoji[police_cars_revolving_light]=$'\U1F6A8' +emoji[triangular_flag_on_post]=$'\U1F6A9' +emoji[door]=$'\U1F6AA' +emoji[no_entry_sign]=$'\U1F6AB' +emoji[smoking_symbol]=$'\U1F6AC' +emoji[no_smoking_symbol]=$'\U1F6AD' +emoji[put_litter_in_its_place_symbol]=$'\U1F6AE' +emoji[do_not_litter_symbol]=$'\U1F6AF' +emoji[potable_water_symbol]=$'\U1F6B0' +emoji[non_potable_water_symbol]=$'\U1F6B1' +emoji[bicycle]=$'\U1F6B2' +emoji[no_bicycles]=$'\U1F6B3' +emoji[bicyclist]=$'\U1F6B4' +emoji[mountain_bicyclist]=$'\U1F6B5' +emoji[pedestrian]=$'\U1F6B6' +emoji[no_pedestrians]=$'\U1F6B7' +emoji[children_crossing]=$'\U1F6B8' +emoji[mens_symbol]=$'\U1F6B9' +emoji[womens_symbol]=$'\U1F6BA' +emoji[restroom]=$'\U1F6BB' +emoji[baby_symbol]=$'\U1F6BC' +emoji[toilet]=$'\U1F6BD' +emoji[water_closet]=$'\U1F6BE' +emoji[shower]=$'\U1F6BF' +emoji[bath]=$'\U1F6C0' +emoji[bathtub]=$'\U1F6C1' +emoji[passport_control]=$'\U1F6C2' +emoji[customs]=$'\U1F6C3' +emoji[baggage_claim]=$'\U1F6C4' +emoji[left_luggage]=$'\U1F6C5' +emoji[couch_and_lamp]=$'\U1F6CB' +emoji[sleeping_accommodation]=$'\U1F6CC' +emoji[shopping_bags]=$'\U1F6CD' +emoji[bellhop_bell]=$'\U1F6CE' +emoji[bed]=$'\U1F6CF' +emoji[place_of_worship]=$'\U1F6D0' +emoji[hammer_and_wrench]=$'\U1F6E0' +emoji[shield]=$'\U1F6E1' +emoji[oil_drum]=$'\U1F6E2' +emoji[motorway]=$'\U1F6E3' +emoji[railway_track]=$'\U1F6E4' +emoji[motor_boat]=$'\U1F6E5' +emoji[small_airplane]=$'\U1F6E9' +emoji[airplane_departure]=$'\U1F6EB' +emoji[airplane_arriving]=$'\U1F6EC' +emoji[satellite]=$'\U1F6F0' +emoji[passenger_ship]=$'\U1F6F3' +emoji[zipper_mouth_face]=$'\U1F910' +emoji[money_mouth_face]=$'\U1F911' +emoji[face_with_thermometer]=$'\U1F912' +emoji[nerd_face]=$'\U1F913' +emoji[thinking_face]=$'\U1F914' +emoji[face_with_head_bandage]=$'\U1F915' +emoji[robot_face]=$'\U1F916' +emoji[hugging_face]=$'\U1F917' +emoji[sign_of_the_horns]=$'\U1F918' +emoji[crab]=$'\U1F980' +emoji[lion_face]=$'\U1F981' +emoji[scorpion]=$'\U1F982' +emoji[turkey]=$'\U1F983' +emoji[unicorn_face]=$'\U1F984' +emoji[cheese_wedge]=$'\U1F9C0' +emoji[keycap_number_sign]=$'\U0023\U20E3' +emoji[keycap_asterisk]=$'\U002A\U20E3' +emoji[keycap_digit_zero]=$'\U0030\U20E3' +emoji[keycap_digit_one]=$'\U0031\U20E3' +emoji[keycap_digit_two]=$'\U0032\U20E3' +emoji[keycap_digit_three]=$'\U0033\U20E3' +emoji[keycap_digit_four]=$'\U0034\U20E3' +emoji[keycap_digit_five]=$'\U0035\U20E3' +emoji[keycap_digit_six]=$'\U0036\U20E3' +emoji[keycap_digit_seven]=$'\U0037\U20E3' +emoji[keycap_digit_eight]=$'\U0038\U20E3' +emoji[keycap_digit_nine]=$'\U0039\U20E3' +emoji_flags[Ascension_Island]=$'\U1F1E6\U1F1E8' +emoji_flags[Andorra]=$'\U1F1E6\U1F1E9' +emoji_flags[United_Arab_Emirates]=$'\U1F1E6\U1F1EA' +emoji_flags[Afghanistan]=$'\U1F1E6\U1F1EB' +emoji_flags[Antigua___Barbuda]=$'\U1F1E6\U1F1EC' +emoji_flags[Anguilla]=$'\U1F1E6\U1F1EE' +emoji_flags[Albania]=$'\U1F1E6\U1F1F1' +emoji_flags[Armenia]=$'\U1F1E6\U1F1F2' +emoji_flags[Angola]=$'\U1F1E6\U1F1F4' +emoji_flags[Antarctica]=$'\U1F1E6\U1F1F6' +emoji_flags[Argentina]=$'\U1F1E6\U1F1F7' +emoji_flags[American_Samoa]=$'\U1F1E6\U1F1F8' +emoji_flags[Austria]=$'\U1F1E6\U1F1F9' +emoji_flags[Australia]=$'\U1F1E6\U1F1FA' +emoji_flags[Aruba]=$'\U1F1E6\U1F1FC' +emoji_flags[_land_Islands]=$'\U1F1E6\U1F1FD' +emoji_flags[Azerbaijan]=$'\U1F1E6\U1F1FF' +emoji_flags[Bosnia___Herzegovina]=$'\U1F1E7\U1F1E6' +emoji_flags[Barbados]=$'\U1F1E7\U1F1E7' +emoji_flags[Bangladesh]=$'\U1F1E7\U1F1E9' +emoji_flags[Belgium]=$'\U1F1E7\U1F1EA' +emoji_flags[Burkina_Faso]=$'\U1F1E7\U1F1EB' +emoji_flags[Bulgaria]=$'\U1F1E7\U1F1EC' +emoji_flags[Bahrain]=$'\U1F1E7\U1F1ED' +emoji_flags[Burundi]=$'\U1F1E7\U1F1EE' +emoji_flags[Benin]=$'\U1F1E7\U1F1EF' +emoji_flags[St__Barth_lemy]=$'\U1F1E7\U1F1F1' +emoji_flags[Bermuda]=$'\U1F1E7\U1F1F2' +emoji_flags[Brunei]=$'\U1F1E7\U1F1F3' +emoji_flags[Bolivia]=$'\U1F1E7\U1F1F4' +emoji_flags[Caribbean_Netherlands]=$'\U1F1E7\U1F1F6' +emoji_flags[Brazil]=$'\U1F1E7\U1F1F7' +emoji_flags[Bahamas]=$'\U1F1E7\U1F1F8' +emoji_flags[Bhutan]=$'\U1F1E7\U1F1F9' +emoji_flags[Bouvet_Island]=$'\U1F1E7\U1F1FB' +emoji_flags[Botswana]=$'\U1F1E7\U1F1FC' +emoji_flags[Belarus]=$'\U1F1E7\U1F1FE' +emoji_flags[Belize]=$'\U1F1E7\U1F1FF' +emoji_flags[Canada]=$'\U1F1E8\U1F1E6' +emoji_flags[Cocos__Islands]=$'\U1F1E8\U1F1E8' +emoji_flags[Congo___Kinshasa]=$'\U1F1E8\U1F1E9' +emoji_flags[Central_African_Republic]=$'\U1F1E8\U1F1EB' +emoji_flags[Congo___Brazzaville]=$'\U1F1E8\U1F1EC' +emoji_flags[Switzerland]=$'\U1F1E8\U1F1ED' +emoji_flags[C_te_d__Ivoire]=$'\U1F1E8\U1F1EE' +emoji_flags[Cook_Islands]=$'\U1F1E8\U1F1F0' +emoji_flags[Chile]=$'\U1F1E8\U1F1F1' +emoji_flags[Cameroon]=$'\U1F1E8\U1F1F2' +emoji_flags[China]=$'\U1F1E8\U1F1F3' +emoji_flags[Colombia]=$'\U1F1E8\U1F1F4' +emoji_flags[Clipperton_Island]=$'\U1F1E8\U1F1F5' +emoji_flags[Costa_Rica]=$'\U1F1E8\U1F1F7' +emoji_flags[Cuba]=$'\U1F1E8\U1F1FA' +emoji_flags[Cape_Verde]=$'\U1F1E8\U1F1FB' +emoji_flags[Cura_ao]=$'\U1F1E8\U1F1FC' +emoji_flags[Christmas_Island]=$'\U1F1E8\U1F1FD' +emoji_flags[Cyprus]=$'\U1F1E8\U1F1FE' +emoji_flags[Czech_Republic]=$'\U1F1E8\U1F1FF' +emoji_flags[Germany]=$'\U1F1E9\U1F1EA' +emoji_flags[Diego_Garcia]=$'\U1F1E9\U1F1EC' +emoji_flags[Djibouti]=$'\U1F1E9\U1F1EF' +emoji_flags[Denmark]=$'\U1F1E9\U1F1F0' +emoji_flags[Dominica]=$'\U1F1E9\U1F1F2' +emoji_flags[Dominican_Republic]=$'\U1F1E9\U1F1F4' +emoji_flags[Algeria]=$'\U1F1E9\U1F1FF' +emoji_flags[Ceuta___Melilla]=$'\U1F1EA\U1F1E6' +emoji_flags[Ecuador]=$'\U1F1EA\U1F1E8' +emoji_flags[Estonia]=$'\U1F1EA\U1F1EA' +emoji_flags[Egypt]=$'\U1F1EA\U1F1EC' +emoji_flags[Western_Sahara]=$'\U1F1EA\U1F1ED' +emoji_flags[Eritrea]=$'\U1F1EA\U1F1F7' +emoji_flags[Spain]=$'\U1F1EA\U1F1F8' +emoji_flags[Ethiopia]=$'\U1F1EA\U1F1F9' +emoji_flags[European_Union]=$'\U1F1EA\U1F1FA' +emoji_flags[Finland]=$'\U1F1EB\U1F1EE' +emoji_flags[Fiji]=$'\U1F1EB\U1F1EF' +emoji_flags[Falkland_Islands]=$'\U1F1EB\U1F1F0' +emoji_flags[Micronesia]=$'\U1F1EB\U1F1F2' +emoji_flags[Faroe_Islands]=$'\U1F1EB\U1F1F4' +emoji_flags[France]=$'\U1F1EB\U1F1F7' +emoji_flags[Gabon]=$'\U1F1EC\U1F1E6' +emoji_flags[United_Kingdom]=$'\U1F1EC\U1F1E7' +emoji_flags[Grenada]=$'\U1F1EC\U1F1E9' +emoji_flags[Georgia]=$'\U1F1EC\U1F1EA' +emoji_flags[French_Guiana]=$'\U1F1EC\U1F1EB' +emoji_flags[Guernsey]=$'\U1F1EC\U1F1EC' +emoji_flags[Ghana]=$'\U1F1EC\U1F1ED' +emoji_flags[Gibraltar]=$'\U1F1EC\U1F1EE' +emoji_flags[Greenland]=$'\U1F1EC\U1F1F1' +emoji_flags[Gambia]=$'\U1F1EC\U1F1F2' +emoji_flags[Guinea]=$'\U1F1EC\U1F1F3' +emoji_flags[Guadeloupe]=$'\U1F1EC\U1F1F5' +emoji_flags[Equatorial_Guinea]=$'\U1F1EC\U1F1F6' +emoji_flags[Greece]=$'\U1F1EC\U1F1F7' +emoji_flags[South_Georgia___South_Sandwich_Islands]=$'\U1F1EC\U1F1F8' +emoji_flags[Guatemala]=$'\U1F1EC\U1F1F9' +emoji_flags[Guam]=$'\U1F1EC\U1F1FA' +emoji_flags[Guinea_Bissau]=$'\U1F1EC\U1F1FC' +emoji_flags[Guyana]=$'\U1F1EC\U1F1FE' +emoji_flags[Hong_Kong]=$'\U1F1ED\U1F1F0' +emoji_flags[Heard___McDonald_Islands]=$'\U1F1ED\U1F1F2' +emoji_flags[Honduras]=$'\U1F1ED\U1F1F3' +emoji_flags[Croatia]=$'\U1F1ED\U1F1F7' +emoji_flags[Haiti]=$'\U1F1ED\U1F1F9' +emoji_flags[Hungary]=$'\U1F1ED\U1F1FA' +emoji_flags[Canary_Islands]=$'\U1F1EE\U1F1E8' +emoji_flags[Indonesia]=$'\U1F1EE\U1F1E9' +emoji_flags[Ireland]=$'\U1F1EE\U1F1EA' +emoji_flags[Israel]=$'\U1F1EE\U1F1F1' +emoji_flags[Isle_of_Man]=$'\U1F1EE\U1F1F2' +emoji_flags[India]=$'\U1F1EE\U1F1F3' +emoji_flags[British_Indian_Ocean_Territory]=$'\U1F1EE\U1F1F4' +emoji_flags[Iraq]=$'\U1F1EE\U1F1F6' +emoji_flags[Iran]=$'\U1F1EE\U1F1F7' +emoji_flags[Iceland]=$'\U1F1EE\U1F1F8' +emoji_flags[Italy]=$'\U1F1EE\U1F1F9' +emoji_flags[Jersey]=$'\U1F1EF\U1F1EA' +emoji_flags[Jamaica]=$'\U1F1EF\U1F1F2' +emoji_flags[Jordan]=$'\U1F1EF\U1F1F4' +emoji_flags[Japan]=$'\U1F1EF\U1F1F5' +emoji_flags[Kenya]=$'\U1F1F0\U1F1EA' +emoji_flags[Kyrgyzstan]=$'\U1F1F0\U1F1EC' +emoji_flags[Cambodia]=$'\U1F1F0\U1F1ED' +emoji_flags[Kiribati]=$'\U1F1F0\U1F1EE' +emoji_flags[Comoros]=$'\U1F1F0\U1F1F2' +emoji_flags[St__Kitts___Nevis]=$'\U1F1F0\U1F1F3' +emoji_flags[North_Korea]=$'\U1F1F0\U1F1F5' +emoji_flags[South_Korea]=$'\U1F1F0\U1F1F7' +emoji_flags[Kuwait]=$'\U1F1F0\U1F1FC' +emoji_flags[Cayman_Islands]=$'\U1F1F0\U1F1FE' +emoji_flags[Kazakhstan]=$'\U1F1F0\U1F1FF' +emoji_flags[Laos]=$'\U1F1F1\U1F1E6' +emoji_flags[Lebanon]=$'\U1F1F1\U1F1E7' +emoji_flags[St__Lucia]=$'\U1F1F1\U1F1E8' +emoji_flags[Liechtenstein]=$'\U1F1F1\U1F1EE' +emoji_flags[Sri_Lanka]=$'\U1F1F1\U1F1F0' +emoji_flags[Liberia]=$'\U1F1F1\U1F1F7' +emoji_flags[Lesotho]=$'\U1F1F1\U1F1F8' +emoji_flags[Lithuania]=$'\U1F1F1\U1F1F9' +emoji_flags[Luxembourg]=$'\U1F1F1\U1F1FA' +emoji_flags[Latvia]=$'\U1F1F1\U1F1FB' +emoji_flags[Libya]=$'\U1F1F1\U1F1FE' +emoji_flags[Morocco]=$'\U1F1F2\U1F1E6' +emoji_flags[Monaco]=$'\U1F1F2\U1F1E8' +emoji_flags[Moldova]=$'\U1F1F2\U1F1E9' +emoji_flags[Montenegro]=$'\U1F1F2\U1F1EA' +emoji_flags[St__Martin]=$'\U1F1F2\U1F1EB' +emoji_flags[Madagascar]=$'\U1F1F2\U1F1EC' +emoji_flags[Marshall_Islands]=$'\U1F1F2\U1F1ED' +emoji_flags[Macedonia]=$'\U1F1F2\U1F1F0' +emoji_flags[Mali]=$'\U1F1F2\U1F1F1' +emoji_flags[Myanmar]=$'\U1F1F2\U1F1F2' +emoji_flags[Mongolia]=$'\U1F1F2\U1F1F3' +emoji_flags[Macau]=$'\U1F1F2\U1F1F4' +emoji_flags[Northern_Mariana_Islands]=$'\U1F1F2\U1F1F5' +emoji_flags[Martinique]=$'\U1F1F2\U1F1F6' +emoji_flags[Mauritania]=$'\U1F1F2\U1F1F7' +emoji_flags[Montserrat]=$'\U1F1F2\U1F1F8' +emoji_flags[Malta]=$'\U1F1F2\U1F1F9' +emoji_flags[Mauritius]=$'\U1F1F2\U1F1FA' +emoji_flags[Maldives]=$'\U1F1F2\U1F1FB' +emoji_flags[Malawi]=$'\U1F1F2\U1F1FC' +emoji_flags[Mexico]=$'\U1F1F2\U1F1FD' +emoji_flags[Malaysia]=$'\U1F1F2\U1F1FE' +emoji_flags[Mozambique]=$'\U1F1F2\U1F1FF' +emoji_flags[Namibia]=$'\U1F1F3\U1F1E6' +emoji_flags[New_Caledonia]=$'\U1F1F3\U1F1E8' +emoji_flags[Niger]=$'\U1F1F3\U1F1EA' +emoji_flags[Norfolk_Island]=$'\U1F1F3\U1F1EB' +emoji_flags[Nigeria]=$'\U1F1F3\U1F1EC' +emoji_flags[Nicaragua]=$'\U1F1F3\U1F1EE' +emoji_flags[Netherlands]=$'\U1F1F3\U1F1F1' +emoji_flags[Norway]=$'\U1F1F3\U1F1F4' +emoji_flags[Nepal]=$'\U1F1F3\U1F1F5' +emoji_flags[Nauru]=$'\U1F1F3\U1F1F7' +emoji_flags[Niue]=$'\U1F1F3\U1F1FA' +emoji_flags[New_Zealand]=$'\U1F1F3\U1F1FF' +emoji_flags[Oman]=$'\U1F1F4\U1F1F2' +emoji_flags[Panama]=$'\U1F1F5\U1F1E6' +emoji_flags[Peru]=$'\U1F1F5\U1F1EA' +emoji_flags[French_Polynesia]=$'\U1F1F5\U1F1EB' +emoji_flags[Papua_New_Guinea]=$'\U1F1F5\U1F1EC' +emoji_flags[Philippines]=$'\U1F1F5\U1F1ED' +emoji_flags[Pakistan]=$'\U1F1F5\U1F1F0' +emoji_flags[Poland]=$'\U1F1F5\U1F1F1' +emoji_flags[St__Pierre___Miquelon]=$'\U1F1F5\U1F1F2' +emoji_flags[Pitcairn_Islands]=$'\U1F1F5\U1F1F3' +emoji_flags[Puerto_Rico]=$'\U1F1F5\U1F1F7' +emoji_flags[Palestinian_Territories]=$'\U1F1F5\U1F1F8' +emoji_flags[Portugal]=$'\U1F1F5\U1F1F9' +emoji_flags[Palau]=$'\U1F1F5\U1F1FC' +emoji_flags[Paraguay]=$'\U1F1F5\U1F1FE' +emoji_flags[Qatar]=$'\U1F1F6\U1F1E6' +emoji_flags[R_union]=$'\U1F1F7\U1F1EA' +emoji_flags[Romania]=$'\U1F1F7\U1F1F4' +emoji_flags[Serbia]=$'\U1F1F7\U1F1F8' +emoji_flags[Russia]=$'\U1F1F7\U1F1FA' +emoji_flags[Rwanda]=$'\U1F1F7\U1F1FC' +emoji_flags[Saudi_Arabia]=$'\U1F1F8\U1F1E6' +emoji_flags[Solomon_Islands]=$'\U1F1F8\U1F1E7' +emoji_flags[Seychelles]=$'\U1F1F8\U1F1E8' +emoji_flags[Sudan]=$'\U1F1F8\U1F1E9' +emoji_flags[Sweden]=$'\U1F1F8\U1F1EA' +emoji_flags[Singapore]=$'\U1F1F8\U1F1EC' +emoji_flags[St__Helena]=$'\U1F1F8\U1F1ED' +emoji_flags[Slovenia]=$'\U1F1F8\U1F1EE' +emoji_flags[Svalbard___Jan_Mayen]=$'\U1F1F8\U1F1EF' +emoji_flags[Slovakia]=$'\U1F1F8\U1F1F0' +emoji_flags[Sierra_Leone]=$'\U1F1F8\U1F1F1' +emoji_flags[San_Marino]=$'\U1F1F8\U1F1F2' +emoji_flags[Senegal]=$'\U1F1F8\U1F1F3' +emoji_flags[Somalia]=$'\U1F1F8\U1F1F4' +emoji_flags[Suriname]=$'\U1F1F8\U1F1F7' +emoji_flags[South_Sudan]=$'\U1F1F8\U1F1F8' +emoji_flags[S_o_Tom____Pr_ncipe]=$'\U1F1F8\U1F1F9' +emoji_flags[El_Salvador]=$'\U1F1F8\U1F1FB' +emoji_flags[Sint_Maarten]=$'\U1F1F8\U1F1FD' +emoji_flags[Syria]=$'\U1F1F8\U1F1FE' +emoji_flags[Swaziland]=$'\U1F1F8\U1F1FF' +emoji_flags[Tristan_da_Cunha]=$'\U1F1F9\U1F1E6' +emoji_flags[Turks___Caicos_Islands]=$'\U1F1F9\U1F1E8' +emoji_flags[Chad]=$'\U1F1F9\U1F1E9' +emoji_flags[French_Southern_Territories]=$'\U1F1F9\U1F1EB' +emoji_flags[Togo]=$'\U1F1F9\U1F1EC' +emoji_flags[Thailand]=$'\U1F1F9\U1F1ED' +emoji_flags[Tajikistan]=$'\U1F1F9\U1F1EF' +emoji_flags[Tokelau]=$'\U1F1F9\U1F1F0' +emoji_flags[Timor_Leste]=$'\U1F1F9\U1F1F1' +emoji_flags[Turkmenistan]=$'\U1F1F9\U1F1F2' +emoji_flags[Tunisia]=$'\U1F1F9\U1F1F3' +emoji_flags[Tonga]=$'\U1F1F9\U1F1F4' +emoji_flags[Turkey]=$'\U1F1F9\U1F1F7' +emoji_flags[Trinidad___Tobago]=$'\U1F1F9\U1F1F9' +emoji_flags[Tuvalu]=$'\U1F1F9\U1F1FB' +emoji_flags[Taiwan]=$'\U1F1F9\U1F1FC' +emoji_flags[Tanzania]=$'\U1F1F9\U1F1FF' +emoji_flags[Ukraine]=$'\U1F1FA\U1F1E6' +emoji_flags[Uganda]=$'\U1F1FA\U1F1EC' +emoji_flags[U_S__Outlying_Islands]=$'\U1F1FA\U1F1F2' +emoji_flags[United_States]=$'\U1F1FA\U1F1F8' +emoji_flags[Uruguay]=$'\U1F1FA\U1F1FE' +emoji_flags[Uzbekistan]=$'\U1F1FA\U1F1FF' +emoji_flags[Vatican_City]=$'\U1F1FB\U1F1E6' +emoji_flags[St__Vincent___Grenadines]=$'\U1F1FB\U1F1E8' +emoji_flags[Venezuela]=$'\U1F1FB\U1F1EA' +emoji_flags[British_Virgin_Islands]=$'\U1F1FB\U1F1EC' +emoji_flags[U_S__Virgin_Islands]=$'\U1F1FB\U1F1EE' +emoji_flags[Vietnam]=$'\U1F1FB\U1F1F3' +emoji_flags[Vanuatu]=$'\U1F1FB\U1F1FA' +emoji_flags[Wallis___Futuna]=$'\U1F1FC\U1F1EB' +emoji_flags[Samoa]=$'\U1F1FC\U1F1F8' +emoji_flags[Kosovo]=$'\U1F1FD\U1F1F0' +emoji_flags[Yemen]=$'\U1F1FE\U1F1EA' +emoji_flags[Mayotte]=$'\U1F1FE\U1F1F9' +emoji_flags[South_Africa]=$'\U1F1FF\U1F1E6' +emoji_flags[Zambia]=$'\U1F1FF\U1F1F2' +emoji_flags[Zimbabwe]=$'\U1F1FF\U1F1FC' + diff --git a/oh-my-zsh/.oh-my-zsh/plugins/emoji/emoji-data.txt b/oh-my-zsh/.oh-my-zsh/plugins/emoji/emoji-data.txt new file mode 100644 index 0000000..2d6d64e --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/emoji/emoji-data.txt @@ -0,0 +1,1308 @@ +# DRAFT emoji-data.txt +# For details about the format and other information, see /../../../reports/tr51/index.html#Data_Files. +# +# Format: Code ; Default_Emoji_Style ; Emoji_Level ; Emoji_Modifier_Status ; Emoji_Sources # Comment +# +# Field 1 — Default_Emoji_Style: +# text: default text presentation +# emoji: default emoji presentation +# Field 2 — Emoji_Level: +# L1: level 1 emoji +# L2: level 2 emoji +# NA: not applicable +# Field 3 — Emoji_Modifier_Status: +# modifier: an emoji modifier +# primary: a primary emoji modifier base +# secondary: a secondary emoji modifier base +# none: not applicable +# Field 4 — Emoji_Sources: +# one or more values from {z, a, j, w, x} +# see the key in https://www.unicode.org/draft/reports/tr51/tr51.html#Major_Sources +# NA: not applicable +# Comment — currently contains the version where the character was first encoded, +# followed by: +# - a character name in uppercase (for a single character), +# - a keycap name, +# - an associated flag, where is associated with value unicode region code +# +00A9 ; text ; L1 ; none ; j # V1.1 (©) COPYRIGHT SIGN +00AE ; text ; L1 ; none ; j # V1.1 (®) REGISTERED SIGN +203C ; text ; L1 ; none ; a j # V1.1 (‼) DOUBLE EXCLAMATION MARK +2049 ; text ; L1 ; none ; a j # V3.0 (⁉) EXCLAMATION QUESTION MARK +2122 ; text ; L1 ; none ; j # V1.1 (™) TRADE MARK SIGN +2139 ; text ; L1 ; none ; j # V3.0 (ℹ) INFORMATION SOURCE +2194 ; text ; L1 ; none ; z j # V1.1 (↔) LEFT RIGHT ARROW +2195 ; text ; L1 ; none ; z j # V1.1 (↕) UP DOWN ARROW +2196 ; text ; L1 ; none ; j # V1.1 (↖) NORTH WEST ARROW +2197 ; text ; L1 ; none ; j # V1.1 (↗) NORTH EAST ARROW +2198 ; text ; L1 ; none ; j # V1.1 (↘) SOUTH EAST ARROW +2199 ; text ; L1 ; none ; j # V1.1 (↙) SOUTH WEST ARROW +21A9 ; text ; L1 ; none ; j # V1.1 (↩) LEFTWARDS ARROW WITH HOOK +21AA ; text ; L1 ; none ; j # V1.1 (↪) RIGHTWARDS ARROW WITH HOOK +231A ; emoji ; L1 ; none ; j # V1.1 (⌚) WATCH +231B ; emoji ; L1 ; none ; j # V1.1 (⌛) HOURGLASS +2328 ; text ; L2 ; none ; x # V1.1 (⌨) KEYBOARD +23CF ; text ; L2 ; none ; x # V4.0 (⏏) EJECT SYMBOL +23E9 ; emoji ; L1 ; none ; j w # V6.0 (⏩) BLACK RIGHT-POINTING DOUBLE TRIANGLE +23EA ; emoji ; L1 ; none ; j w # V6.0 (⏪) BLACK LEFT-POINTING DOUBLE TRIANGLE +23EB ; emoji ; L1 ; none ; j # V6.0 (⏫) BLACK UP-POINTING DOUBLE TRIANGLE +23EC ; emoji ; L1 ; none ; j # V6.0 (⏬) BLACK DOWN-POINTING DOUBLE TRIANGLE +23ED ; text ; L2 ; none ; w # V6.0 (⏭) BLACK RIGHT-POINTING DOUBLE TRIANGLE WITH VERTICAL BAR +23EE ; text ; L2 ; none ; w # V6.0 (⏮) BLACK LEFT-POINTING DOUBLE TRIANGLE WITH VERTICAL BAR +23EF ; text ; L2 ; none ; x # V6.0 (⏯) BLACK RIGHT-POINTING TRIANGLE WITH DOUBLE VERTICAL BAR +23F0 ; emoji ; L1 ; none ; j # V6.0 (⏰) ALARM CLOCK +23F1 ; text ; L2 ; none ; x # V6.0 (⏱) STOPWATCH +23F2 ; text ; L2 ; none ; x # V6.0 (⏲) TIMER CLOCK +23F3 ; emoji ; L1 ; none ; j w # V6.0 (⏳) HOURGLASS WITH FLOWING SAND +23F8 ; text ; L2 ; none ; w # V7.0 (⏸) DOUBLE VERTICAL BAR +23F9 ; text ; L2 ; none ; w # V7.0 (⏹) BLACK SQUARE FOR STOP +23FA ; text ; L2 ; none ; w # V7.0 (⏺) BLACK CIRCLE FOR RECORD +24C2 ; text ; L1 ; none ; j # V1.1 (Ⓜ) CIRCLED LATIN CAPITAL LETTER M +25AA ; text ; L1 ; none ; j w # V1.1 (▪) BLACK SMALL SQUARE +25AB ; text ; L1 ; none ; j # V1.1 (▫) WHITE SMALL SQUARE +25B6 ; text ; L1 ; none ; a j w # V1.1 (▶) BLACK RIGHT-POINTING TRIANGLE +25C0 ; text ; L1 ; none ; a j w # V1.1 (◀) BLACK LEFT-POINTING TRIANGLE +25FB ; text ; L1 ; none ; j # V3.2 (◻) WHITE MEDIUM SQUARE +25FC ; text ; L1 ; none ; j w # V3.2 (◼) BLACK MEDIUM SQUARE +25FD ; emoji ; L1 ; none ; j # V3.2 (◽) WHITE MEDIUM SMALL SQUARE +25FE ; emoji ; L1 ; none ; j w # V3.2 (◾) BLACK MEDIUM SMALL SQUARE +2600 ; text ; L1 ; none ; a j # V1.1 (☀) BLACK SUN WITH RAYS +2601 ; text ; L1 ; none ; a j w # V1.1 (☁) CLOUD +2602 ; text ; L2 ; none ; a # V1.1 (☂) UMBRELLA +2603 ; text ; L2 ; none ; a # V1.1 (☃) SNOWMAN +2604 ; text ; L2 ; none ; x # V1.1 (☄) COMET +260E ; text ; L1 ; none ; z a j # V1.1 (☎) BLACK TELEPHONE +2611 ; text ; L1 ; none ; j w # V1.1 (☑) BALLOT BOX WITH CHECK +2614 ; emoji ; L1 ; none ; a j # V4.0 (☔) UMBRELLA WITH RAIN DROPS +2615 ; emoji ; L1 ; none ; j # V4.0 (☕) HOT BEVERAGE +2618 ; text ; L2 ; none ; x # V4.1 (☘) SHAMROCK +261D ; text ; L1 ; secondary ; j w # V1.1 (☝) WHITE UP POINTING INDEX +2620 ; text ; L2 ; none ; x # V1.1 (☠) SKULL AND CROSSBONES +2622 ; text ; L2 ; none ; x # V1.1 (☢) RADIOACTIVE SIGN +2623 ; text ; L2 ; none ; x # V1.1 (☣) BIOHAZARD SIGN +2626 ; text ; L2 ; none ; x # V1.1 (☦) ORTHODOX CROSS +262A ; text ; L2 ; none ; w # V1.1 (☪) STAR AND CRESCENT +262E ; text ; L2 ; none ; x # V1.1 (☮) PEACE SYMBOL +262F ; text ; L2 ; none ; w # V1.1 (☯) YIN YANG +2638 ; text ; L2 ; none ; w # V1.1 (☸) WHEEL OF DHARMA +2639 ; text ; L2 ; secondary ; w # V1.1 (☹) WHITE FROWNING FACE +263A ; text ; L1 ; secondary ; j w # V1.1 (☺) WHITE SMILING FACE +2648 ; emoji ; L1 ; none ; j w # V1.1 (♈) ARIES +2649 ; emoji ; L1 ; none ; j w # V1.1 (♉) TAURUS +264A ; emoji ; L1 ; none ; j w # V1.1 (♊) GEMINI +264B ; emoji ; L1 ; none ; j w # V1.1 (♋) CANCER +264C ; emoji ; L1 ; none ; j w # V1.1 (♌) LEO +264D ; emoji ; L1 ; none ; j w # V1.1 (♍) VIRGO +264E ; emoji ; L1 ; none ; j w # V1.1 (♎) LIBRA +264F ; emoji ; L1 ; none ; j w # V1.1 (♏) SCORPIUS +2650 ; emoji ; L1 ; none ; j w # V1.1 (♐) SAGITTARIUS +2651 ; emoji ; L1 ; none ; j w # V1.1 (♑) CAPRICORN +2652 ; emoji ; L1 ; none ; j w # V1.1 (♒) AQUARIUS +2653 ; emoji ; L1 ; none ; j w # V1.1 (♓) PISCES +2660 ; text ; L1 ; none ; z a j # V1.1 (♠) BLACK SPADE SUIT +2663 ; text ; L1 ; none ; z a j # V1.1 (♣) BLACK CLUB SUIT +2665 ; text ; L1 ; none ; z a j # V1.1 (♥) BLACK HEART SUIT +2666 ; text ; L1 ; none ; z a j # V1.1 (♦) BLACK DIAMOND SUIT +2668 ; text ; L1 ; none ; a j # V1.1 (♨) HOT SPRINGS +267B ; text ; L1 ; none ; j # V3.2 (♻) BLACK UNIVERSAL RECYCLING SYMBOL +267F ; emoji ; L1 ; none ; j w # V4.1 (♿) WHEELCHAIR SYMBOL +2692 ; text ; L2 ; none ; x # V4.1 (⚒) HAMMER AND PICK +2693 ; emoji ; L1 ; none ; a j # V4.1 (⚓) ANCHOR +2694 ; text ; L2 ; none ; x # V4.1 (⚔) CROSSED SWORDS +2696 ; text ; L2 ; none ; x # V4.1 (⚖) SCALES +2697 ; text ; L2 ; none ; x # V4.1 (⚗) ALEMBIC +2699 ; text ; L2 ; none ; x # V4.1 (⚙) GEAR +269B ; text ; L2 ; none ; x # V4.1 (⚛) ATOM SYMBOL +269C ; text ; L2 ; none ; x # V4.1 (⚜) FLEUR-DE-LIS +26A0 ; text ; L1 ; none ; j # V4.0 (⚠) WARNING SIGN +26A1 ; emoji ; L1 ; none ; a j # V4.0 (⚡) HIGH VOLTAGE SIGN +26AA ; emoji ; L1 ; none ; j # V4.1 (⚪) MEDIUM WHITE CIRCLE +26AB ; emoji ; L1 ; none ; j w # V4.1 (⚫) MEDIUM BLACK CIRCLE +26B0 ; text ; L2 ; none ; x # V4.1 (⚰) COFFIN +26B1 ; text ; L2 ; none ; x # V4.1 (⚱) FUNERAL URN +26BD ; emoji ; L1 ; none ; j # V5.2 (⚽) SOCCER BALL +26BE ; emoji ; L1 ; none ; a j # V5.2 (⚾) BASEBALL +26C4 ; emoji ; L1 ; none ; a j # V5.2 (⛄) SNOWMAN WITHOUT SNOW +26C5 ; emoji ; L1 ; none ; a j # V5.2 (⛅) SUN BEHIND CLOUD +26C8 ; text ; L2 ; none ; a # V5.2 (⛈) THUNDER CLOUD AND RAIN +26CE ; emoji ; L1 ; none ; a j # V6.0 (⛎) OPHIUCHUS +26CF ; text ; L2 ; none ; a # V5.2 (⛏) PICK +26D1 ; text ; L2 ; none ; a # V5.2 (⛑) HELMET WITH WHITE CROSS +26D3 ; text ; L2 ; none ; a # V5.2 (⛓) CHAINS +26D4 ; emoji ; L1 ; none ; a j # V5.2 (⛔) NO ENTRY +26E9 ; text ; L2 ; none ; a # V5.2 (⛩) SHINTO SHRINE +26EA ; emoji ; L1 ; none ; a j # V5.2 (⛪) CHURCH +26F0 ; text ; L2 ; none ; a # V5.2 (⛰) MOUNTAIN +26F1 ; text ; L2 ; none ; a # V5.2 (⛱) UMBRELLA ON GROUND +26F2 ; emoji ; L1 ; none ; a j # V5.2 (⛲) FOUNTAIN +26F3 ; emoji ; L1 ; none ; a j w # V5.2 (⛳) FLAG IN HOLE +26F4 ; text ; L2 ; none ; a # V5.2 (⛴) FERRY +26F5 ; emoji ; L1 ; none ; a j # V5.2 (⛵) SAILBOAT +26F7 ; text ; L2 ; none ; a w # V5.2 (⛷) SKIER +26F8 ; text ; L2 ; none ; a # V5.2 (⛸) ICE SKATE +26F9 ; text ; L2 ; none ; a # V5.2 (⛹) PERSON WITH BALL +26FA ; emoji ; L1 ; none ; a j # V5.2 (⛺) TENT +26FD ; emoji ; L1 ; none ; a j # V5.2 (⛽) FUEL PUMP +2702 ; text ; L1 ; none ; z j w # V1.1 (✂) BLACK SCISSORS +2705 ; emoji ; L1 ; none ; j # V6.0 (✅) WHITE HEAVY CHECK MARK +2708 ; text ; L1 ; none ; z a j w # V1.1 (✈) AIRPLANE +2709 ; text ; L1 ; none ; z j # V1.1 (✉) ENVELOPE +270A ; emoji ; L1 ; secondary ; j # V6.0 (✊) RAISED FIST +270B ; emoji ; L1 ; secondary ; j # V6.0 (✋) RAISED HAND +270C ; text ; L1 ; secondary ; z j w # V1.1 (✌) VICTORY HAND +270D ; text ; L2 ; secondary ; z w # V1.1 (✍) WRITING HAND +270F ; text ; L1 ; none ; z j # V1.1 (✏) PENCIL +2712 ; text ; L1 ; none ; z j # V1.1 (✒) BLACK NIB +2714 ; text ; L1 ; none ; z j w # V1.1 (✔) HEAVY CHECK MARK +2716 ; text ; L1 ; none ; z j # V1.1 (✖) HEAVY MULTIPLICATION X +271D ; text ; L2 ; none ; w # V1.1 (✝) LATIN CROSS +2721 ; text ; L2 ; none ; w # V1.1 (✡) STAR OF DAVID +2728 ; emoji ; L1 ; none ; j # V6.0 (✨) SPARKLES +2733 ; text ; L1 ; none ; z j # V1.1 (✳) EIGHT SPOKED ASTERISK +2734 ; text ; L1 ; none ; z j # V1.1 (✴) EIGHT POINTED BLACK STAR +2744 ; text ; L1 ; none ; z j w # V1.1 (❄) SNOWFLAKE +2747 ; text ; L1 ; none ; z j # V1.1 (❇) SPARKLE +274C ; emoji ; L1 ; none ; j # V6.0 (❌) CROSS MARK +274E ; emoji ; L1 ; none ; j # V6.0 (❎) NEGATIVE SQUARED CROSS MARK +2753 ; emoji ; L1 ; none ; j w # V6.0 (❓) BLACK QUESTION MARK ORNAMENT +2754 ; emoji ; L1 ; none ; j # V6.0 (❔) WHITE QUESTION MARK ORNAMENT +2755 ; emoji ; L1 ; none ; j # V6.0 (❕) WHITE EXCLAMATION MARK ORNAMENT +2757 ; emoji ; L1 ; none ; j # V5.2 (❗) HEAVY EXCLAMATION MARK SYMBOL +2763 ; text ; L2 ; none ; z # V1.1 (❣) HEAVY HEART EXCLAMATION MARK ORNAMENT +2764 ; text ; L1 ; none ; z j # V1.1 (❤) HEAVY BLACK HEART +2795 ; emoji ; L1 ; none ; j # V6.0 (➕) HEAVY PLUS SIGN +2796 ; emoji ; L1 ; none ; j # V6.0 (➖) HEAVY MINUS SIGN +2797 ; emoji ; L1 ; none ; j # V6.0 (➗) HEAVY DIVISION SIGN +27A1 ; text ; L1 ; none ; z a j # V1.1 (➡) BLACK RIGHTWARDS ARROW +27B0 ; emoji ; L1 ; none ; j # V6.0 (➰) CURLY LOOP +27BF ; emoji ; L1 ; none ; x # V6.0 (➿) DOUBLE CURLY LOOP +2934 ; text ; L1 ; none ; j # V3.2 (⤴) ARROW POINTING RIGHTWARDS THEN CURVING UPWARDS +2935 ; text ; L1 ; none ; j # V3.2 (⤵) ARROW POINTING RIGHTWARDS THEN CURVING DOWNWARDS +2B05 ; text ; L1 ; none ; a j # V4.0 (⬅) LEFTWARDS BLACK ARROW +2B06 ; text ; L1 ; none ; a j # V4.0 (⬆) UPWARDS BLACK ARROW +2B07 ; text ; L1 ; none ; a j # V4.0 (⬇) DOWNWARDS BLACK ARROW +2B1B ; emoji ; L1 ; none ; a j w # V5.1 (⬛) BLACK LARGE SQUARE +2B1C ; emoji ; L1 ; none ; j w # V5.1 (⬜) WHITE LARGE SQUARE +2B50 ; emoji ; L1 ; none ; j # V5.1 (⭐) WHITE MEDIUM STAR +2B55 ; emoji ; L1 ; none ; j # V5.2 (⭕) HEAVY LARGE CIRCLE +3030 ; text ; L1 ; none ; j # V1.1 (〰) WAVY DASH +303D ; text ; L1 ; none ; j # V3.2 (〽) PART ALTERNATION MARK +3297 ; text ; L1 ; none ; j # V1.1 (㊗) CIRCLED IDEOGRAPH CONGRATULATION +3299 ; text ; L1 ; none ; a j # V1.1 (㊙) CIRCLED IDEOGRAPH SECRET +1F004 ; emoji ; L1 ; none ; j # V5.1 (🀄) MAHJONG TILE RED DRAGON +1F0CF ; emoji ; L1 ; none ; j # V6.0 (🃏) PLAYING CARD BLACK JOKER +1F170 ; text ; L1 ; none ; j # V6.0 (🅰) NEGATIVE SQUARED LATIN CAPITAL LETTER A +1F171 ; text ; L1 ; none ; j # V6.0 (🅱) NEGATIVE SQUARED LATIN CAPITAL LETTER B +1F17E ; text ; L1 ; none ; j # V6.0 (🅾) NEGATIVE SQUARED LATIN CAPITAL LETTER O +1F17F ; text ; L1 ; none ; a j # V5.2 (🅿) NEGATIVE SQUARED LATIN CAPITAL LETTER P +1F18E ; emoji ; L1 ; none ; j # V6.0 (🆎) NEGATIVE SQUARED AB +1F191 ; emoji ; L1 ; none ; j # V6.0 (🆑) SQUARED CL +1F192 ; emoji ; L1 ; none ; j # V6.0 (🆒) SQUARED COOL +1F193 ; emoji ; L1 ; none ; j # V6.0 (🆓) SQUARED FREE +1F194 ; emoji ; L1 ; none ; j # V6.0 (🆔) SQUARED ID +1F195 ; emoji ; L1 ; none ; j # V6.0 (🆕) SQUARED NEW +1F196 ; emoji ; L1 ; none ; j # V6.0 (🆖) SQUARED NG +1F197 ; emoji ; L1 ; none ; j # V6.0 (🆗) SQUARED OK +1F198 ; emoji ; L1 ; none ; j # V6.0 (🆘) SQUARED SOS +1F199 ; emoji ; L1 ; none ; j # V6.0 (🆙) SQUARED UP WITH EXCLAMATION MARK +1F19A ; emoji ; L1 ; none ; j # V6.0 (🆚) SQUARED VS +1F201 ; emoji ; L1 ; none ; j # V6.0 (🈁) SQUARED KATAKANA KOKO +1F202 ; text ; L1 ; none ; j # V6.0 (🈂) SQUARED KATAKANA SA +1F21A ; emoji ; L1 ; none ; a j # V5.2 (🈚) SQUARED CJK UNIFIED IDEOGRAPH-7121 +1F22F ; emoji ; L1 ; none ; a j # V5.2 (🈯) SQUARED CJK UNIFIED IDEOGRAPH-6307 +1F232 ; emoji ; L1 ; none ; j # V6.0 (🈲) SQUARED CJK UNIFIED IDEOGRAPH-7981 +1F233 ; emoji ; L1 ; none ; j # V6.0 (🈳) SQUARED CJK UNIFIED IDEOGRAPH-7A7A +1F234 ; emoji ; L1 ; none ; j # V6.0 (🈴) SQUARED CJK UNIFIED IDEOGRAPH-5408 +1F235 ; emoji ; L1 ; none ; j # V6.0 (🈵) SQUARED CJK UNIFIED IDEOGRAPH-6E80 +1F236 ; emoji ; L1 ; none ; j # V6.0 (🈶) SQUARED CJK UNIFIED IDEOGRAPH-6709 +1F237 ; text ; L1 ; none ; j # V6.0 (🈷) SQUARED CJK UNIFIED IDEOGRAPH-6708 +1F238 ; emoji ; L1 ; none ; j # V6.0 (🈸) SQUARED CJK UNIFIED IDEOGRAPH-7533 +1F239 ; emoji ; L1 ; none ; j # V6.0 (🈹) SQUARED CJK UNIFIED IDEOGRAPH-5272 +1F23A ; emoji ; L1 ; none ; j # V6.0 (🈺) SQUARED CJK UNIFIED IDEOGRAPH-55B6 +1F250 ; emoji ; L1 ; none ; j # V6.0 (🉐) CIRCLED IDEOGRAPH ADVANTAGE +1F251 ; emoji ; L1 ; none ; j # V6.0 (🉑) CIRCLED IDEOGRAPH ACCEPT +1F300 ; emoji ; L1 ; none ; j # V6.0 (🌀) CYCLONE +1F301 ; emoji ; L1 ; none ; j # V6.0 (🌁) FOGGY +1F302 ; emoji ; L1 ; none ; j # V6.0 (🌂) CLOSED UMBRELLA +1F303 ; emoji ; L1 ; none ; j # V6.0 (🌃) NIGHT WITH STARS +1F304 ; emoji ; L1 ; none ; j # V6.0 (🌄) SUNRISE OVER MOUNTAINS +1F305 ; emoji ; L1 ; none ; j # V6.0 (🌅) SUNRISE +1F306 ; emoji ; L1 ; none ; j # V6.0 (🌆) CITYSCAPE AT DUSK +1F307 ; emoji ; L1 ; none ; j # V6.0 (🌇) SUNSET OVER BUILDINGS +1F308 ; emoji ; L1 ; none ; j # V6.0 (🌈) RAINBOW +1F309 ; emoji ; L1 ; none ; j # V6.0 (🌉) BRIDGE AT NIGHT +1F30A ; emoji ; L1 ; none ; j # V6.0 (🌊) WATER WAVE +1F30B ; emoji ; L1 ; none ; j # V6.0 (🌋) VOLCANO +1F30C ; emoji ; L1 ; none ; j # V6.0 (🌌) MILKY WAY +1F30D ; emoji ; L1 ; none ; w # V6.0 (🌍) EARTH GLOBE EUROPE-AFRICA +1F30E ; emoji ; L1 ; none ; w # V6.0 (🌎) EARTH GLOBE AMERICAS +1F30F ; emoji ; L1 ; none ; j w # V6.0 (🌏) EARTH GLOBE ASIA-AUSTRALIA +1F310 ; emoji ; L1 ; none ; x # V6.0 (🌐) GLOBE WITH MERIDIANS +1F311 ; emoji ; L1 ; none ; j # V6.0 (🌑) NEW MOON SYMBOL +1F312 ; emoji ; L1 ; none ; x # V6.0 (🌒) WAXING CRESCENT MOON SYMBOL +1F313 ; emoji ; L1 ; none ; j # V6.0 (🌓) FIRST QUARTER MOON SYMBOL +1F314 ; emoji ; L1 ; none ; j # V6.0 (🌔) WAXING GIBBOUS MOON SYMBOL +1F315 ; emoji ; L1 ; none ; j w # V6.0 (🌕) FULL MOON SYMBOL +1F316 ; emoji ; L1 ; none ; x # V6.0 (🌖) WANING GIBBOUS MOON SYMBOL +1F317 ; emoji ; L1 ; none ; x # V6.0 (🌗) LAST QUARTER MOON SYMBOL +1F318 ; emoji ; L1 ; none ; x # V6.0 (🌘) WANING CRESCENT MOON SYMBOL +1F319 ; emoji ; L1 ; none ; j # V6.0 (🌙) CRESCENT MOON +1F31A ; emoji ; L1 ; none ; x # V6.0 (🌚) NEW MOON WITH FACE +1F31B ; emoji ; L1 ; none ; j # V6.0 (🌛) FIRST QUARTER MOON WITH FACE +1F31C ; emoji ; L1 ; none ; w # V6.0 (🌜) LAST QUARTER MOON WITH FACE +1F31D ; emoji ; L1 ; none ; x # V6.0 (🌝) FULL MOON WITH FACE +1F31E ; emoji ; L1 ; none ; x # V6.0 (🌞) SUN WITH FACE +1F31F ; emoji ; L1 ; none ; j # V6.0 (🌟) GLOWING STAR +1F320 ; emoji ; L1 ; none ; j # V6.0 (🌠) SHOOTING STAR +1F321 ; text ; L2 ; none ; w # V7.0 (🌡) THERMOMETER +1F324 ; text ; L2 ; none ; w # V7.0 (🌤) WHITE SUN WITH SMALL CLOUD +1F325 ; text ; L2 ; none ; w # V7.0 (🌥) WHITE SUN BEHIND CLOUD +1F326 ; text ; L2 ; none ; w # V7.0 (🌦) WHITE SUN BEHIND CLOUD WITH RAIN +1F327 ; text ; L2 ; none ; w # V7.0 (🌧) CLOUD WITH RAIN +1F328 ; text ; L2 ; none ; w # V7.0 (🌨) CLOUD WITH SNOW +1F329 ; text ; L2 ; none ; w # V7.0 (🌩) CLOUD WITH LIGHTNING +1F32A ; text ; L2 ; none ; w # V7.0 (🌪) CLOUD WITH TORNADO +1F32B ; text ; L2 ; none ; w # V7.0 (🌫) FOG +1F32C ; text ; L2 ; none ; w # V7.0 (🌬) WIND BLOWING FACE +1F32D ; emoji ; L2 ; none ; x # V8.0 (🌭) HOT DOG +1F32E ; emoji ; L2 ; none ; x # V8.0 (🌮) TACO +1F32F ; emoji ; L2 ; none ; x # V8.0 (🌯) BURRITO +1F330 ; emoji ; L1 ; none ; j # V6.0 (🌰) CHESTNUT +1F331 ; emoji ; L1 ; none ; j # V6.0 (🌱) SEEDLING +1F332 ; emoji ; L1 ; none ; x # V6.0 (🌲) EVERGREEN TREE +1F333 ; emoji ; L1 ; none ; x # V6.0 (🌳) DECIDUOUS TREE +1F334 ; emoji ; L1 ; none ; j # V6.0 (🌴) PALM TREE +1F335 ; emoji ; L1 ; none ; j # V6.0 (🌵) CACTUS +1F336 ; text ; L2 ; none ; w # V7.0 (🌶) HOT PEPPER +1F337 ; emoji ; L1 ; none ; j # V6.0 (🌷) TULIP +1F338 ; emoji ; L1 ; none ; j # V6.0 (🌸) CHERRY BLOSSOM +1F339 ; emoji ; L1 ; none ; j # V6.0 (🌹) ROSE +1F33A ; emoji ; L1 ; none ; j # V6.0 (🌺) HIBISCUS +1F33B ; emoji ; L1 ; none ; j # V6.0 (🌻) SUNFLOWER +1F33C ; emoji ; L1 ; none ; j # V6.0 (🌼) BLOSSOM +1F33D ; emoji ; L1 ; none ; j # V6.0 (🌽) EAR OF MAIZE +1F33E ; emoji ; L1 ; none ; j # V6.0 (🌾) EAR OF RICE +1F33F ; emoji ; L1 ; none ; j # V6.0 (🌿) HERB +1F340 ; emoji ; L1 ; none ; j # V6.0 (🍀) FOUR LEAF CLOVER +1F341 ; emoji ; L1 ; none ; j # V6.0 (🍁) MAPLE LEAF +1F342 ; emoji ; L1 ; none ; j # V6.0 (🍂) FALLEN LEAF +1F343 ; emoji ; L1 ; none ; j # V6.0 (🍃) LEAF FLUTTERING IN WIND +1F344 ; emoji ; L1 ; none ; j # V6.0 (🍄) MUSHROOM +1F345 ; emoji ; L1 ; none ; j # V6.0 (🍅) TOMATO +1F346 ; emoji ; L1 ; none ; j # V6.0 (🍆) AUBERGINE +1F347 ; emoji ; L1 ; none ; j # V6.0 (🍇) GRAPES +1F348 ; emoji ; L1 ; none ; j # V6.0 (🍈) MELON +1F349 ; emoji ; L1 ; none ; j # V6.0 (🍉) WATERMELON +1F34A ; emoji ; L1 ; none ; j # V6.0 (🍊) TANGERINE +1F34B ; emoji ; L1 ; none ; x # V6.0 (🍋) LEMON +1F34C ; emoji ; L1 ; none ; j # V6.0 (🍌) BANANA +1F34D ; emoji ; L1 ; none ; j # V6.0 (🍍) PINEAPPLE +1F34E ; emoji ; L1 ; none ; j # V6.0 (🍎) RED APPLE +1F34F ; emoji ; L1 ; none ; j # V6.0 (🍏) GREEN APPLE +1F350 ; emoji ; L1 ; none ; x # V6.0 (🍐) PEAR +1F351 ; emoji ; L1 ; none ; j # V6.0 (🍑) PEACH +1F352 ; emoji ; L1 ; none ; j # V6.0 (🍒) CHERRIES +1F353 ; emoji ; L1 ; none ; j # V6.0 (🍓) STRAWBERRY +1F354 ; emoji ; L1 ; none ; j # V6.0 (🍔) HAMBURGER +1F355 ; emoji ; L1 ; none ; j # V6.0 (🍕) SLICE OF PIZZA +1F356 ; emoji ; L1 ; none ; j # V6.0 (🍖) MEAT ON BONE +1F357 ; emoji ; L1 ; none ; j # V6.0 (🍗) POULTRY LEG +1F358 ; emoji ; L1 ; none ; j # V6.0 (🍘) RICE CRACKER +1F359 ; emoji ; L1 ; none ; j # V6.0 (🍙) RICE BALL +1F35A ; emoji ; L1 ; none ; j # V6.0 (🍚) COOKED RICE +1F35B ; emoji ; L1 ; none ; j # V6.0 (🍛) CURRY AND RICE +1F35C ; emoji ; L1 ; none ; j # V6.0 (🍜) STEAMING BOWL +1F35D ; emoji ; L1 ; none ; j # V6.0 (🍝) SPAGHETTI +1F35E ; emoji ; L1 ; none ; j # V6.0 (🍞) BREAD +1F35F ; emoji ; L1 ; none ; j # V6.0 (🍟) FRENCH FRIES +1F360 ; emoji ; L1 ; none ; j # V6.0 (🍠) ROASTED SWEET POTATO +1F361 ; emoji ; L1 ; none ; j # V6.0 (🍡) DANGO +1F362 ; emoji ; L1 ; none ; j # V6.0 (🍢) ODEN +1F363 ; emoji ; L1 ; none ; j # V6.0 (🍣) SUSHI +1F364 ; emoji ; L1 ; none ; j # V6.0 (🍤) FRIED SHRIMP +1F365 ; emoji ; L1 ; none ; j # V6.0 (🍥) FISH CAKE WITH SWIRL DESIGN +1F366 ; emoji ; L1 ; none ; j # V6.0 (🍦) SOFT ICE CREAM +1F367 ; emoji ; L1 ; none ; j # V6.0 (🍧) SHAVED ICE +1F368 ; emoji ; L1 ; none ; j # V6.0 (🍨) ICE CREAM +1F369 ; emoji ; L1 ; none ; j # V6.0 (🍩) DOUGHNUT +1F36A ; emoji ; L1 ; none ; j # V6.0 (🍪) COOKIE +1F36B ; emoji ; L1 ; none ; j # V6.0 (🍫) CHOCOLATE BAR +1F36C ; emoji ; L1 ; none ; j # V6.0 (🍬) CANDY +1F36D ; emoji ; L1 ; none ; j # V6.0 (🍭) LOLLIPOP +1F36E ; emoji ; L1 ; none ; j # V6.0 (🍮) CUSTARD +1F36F ; emoji ; L1 ; none ; j # V6.0 (🍯) HONEY POT +1F370 ; emoji ; L1 ; none ; j # V6.0 (🍰) SHORTCAKE +1F371 ; emoji ; L1 ; none ; j # V6.0 (🍱) BENTO BOX +1F372 ; emoji ; L1 ; none ; j # V6.0 (🍲) POT OF FOOD +1F373 ; emoji ; L1 ; none ; j # V6.0 (🍳) COOKING +1F374 ; emoji ; L1 ; none ; j # V6.0 (🍴) FORK AND KNIFE +1F375 ; emoji ; L1 ; none ; j # V6.0 (🍵) TEACUP WITHOUT HANDLE +1F376 ; emoji ; L1 ; none ; j # V6.0 (🍶) SAKE BOTTLE AND CUP +1F377 ; emoji ; L1 ; none ; j # V6.0 (🍷) WINE GLASS +1F378 ; emoji ; L1 ; none ; j w # V6.0 (🍸) COCKTAIL GLASS +1F379 ; emoji ; L1 ; none ; j # V6.0 (🍹) TROPICAL DRINK +1F37A ; emoji ; L1 ; none ; j # V6.0 (🍺) BEER MUG +1F37B ; emoji ; L1 ; none ; j # V6.0 (🍻) CLINKING BEER MUGS +1F37C ; emoji ; L1 ; none ; x # V6.0 (🍼) BABY BOTTLE +1F37D ; text ; L2 ; none ; w # V7.0 (🍽) FORK AND KNIFE WITH PLATE +1F37E ; emoji ; L2 ; none ; x # V8.0 (🍾) BOTTLE WITH POPPING CORK +1F37F ; emoji ; L2 ; none ; x # V8.0 (🍿) POPCORN +1F380 ; emoji ; L1 ; none ; j # V6.0 (🎀) RIBBON +1F381 ; emoji ; L1 ; none ; j # V6.0 (🎁) WRAPPED PRESENT +1F382 ; emoji ; L1 ; none ; j # V6.0 (🎂) BIRTHDAY CAKE +1F383 ; emoji ; L1 ; none ; j # V6.0 (🎃) JACK-O-LANTERN +1F384 ; emoji ; L1 ; none ; j # V6.0 (🎄) CHRISTMAS TREE +1F385 ; emoji ; L1 ; primary ; j # V6.0 (🎅) FATHER CHRISTMAS +1F386 ; emoji ; L1 ; none ; j # V6.0 (🎆) FIREWORKS +1F387 ; emoji ; L1 ; none ; j # V6.0 (🎇) FIREWORK SPARKLER +1F388 ; emoji ; L1 ; none ; j # V6.0 (🎈) BALLOON +1F389 ; emoji ; L1 ; none ; j # V6.0 (🎉) PARTY POPPER +1F38A ; emoji ; L1 ; none ; j # V6.0 (🎊) CONFETTI BALL +1F38B ; emoji ; L1 ; none ; j # V6.0 (🎋) TANABATA TREE +1F38C ; emoji ; L1 ; none ; j # V6.0 (🎌) CROSSED FLAGS +1F38D ; emoji ; L1 ; none ; j # V6.0 (🎍) PINE DECORATION +1F38E ; emoji ; L1 ; none ; j # V6.0 (🎎) JAPANESE DOLLS +1F38F ; emoji ; L1 ; none ; j # V6.0 (🎏) CARP STREAMER +1F390 ; emoji ; L1 ; none ; j # V6.0 (🎐) WIND CHIME +1F391 ; emoji ; L1 ; none ; j # V6.0 (🎑) MOON VIEWING CEREMONY +1F392 ; emoji ; L1 ; none ; j # V6.0 (🎒) SCHOOL SATCHEL +1F393 ; emoji ; L1 ; none ; j w # V6.0 (🎓) GRADUATION CAP +1F396 ; text ; L2 ; none ; w # V7.0 (🎖) MILITARY MEDAL +1F397 ; text ; L2 ; none ; w # V7.0 (🎗) REMINDER RIBBON +1F399 ; text ; L2 ; none ; w # V7.0 (🎙) STUDIO MICROPHONE +1F39A ; text ; L2 ; none ; w # V7.0 (🎚) LEVEL SLIDER +1F39B ; text ; L2 ; none ; w # V7.0 (🎛) CONTROL KNOBS +1F39E ; text ; L2 ; none ; w # V7.0 (🎞) FILM FRAMES +1F39F ; text ; L2 ; none ; w # V7.0 (🎟) ADMISSION TICKETS +1F3A0 ; emoji ; L1 ; none ; j # V6.0 (🎠) CAROUSEL HORSE +1F3A1 ; emoji ; L1 ; none ; j # V6.0 (🎡) FERRIS WHEEL +1F3A2 ; emoji ; L1 ; none ; j # V6.0 (🎢) ROLLER COASTER +1F3A3 ; emoji ; L1 ; none ; j # V6.0 (🎣) FISHING POLE AND FISH +1F3A4 ; emoji ; L1 ; none ; j # V6.0 (🎤) MICROPHONE +1F3A5 ; emoji ; L1 ; none ; j # V6.0 (🎥) MOVIE CAMERA +1F3A6 ; emoji ; L1 ; none ; j # V6.0 (🎦) CINEMA +1F3A7 ; emoji ; L1 ; none ; j w # V6.0 (🎧) HEADPHONE +1F3A8 ; emoji ; L1 ; none ; j # V6.0 (🎨) ARTIST PALETTE +1F3A9 ; emoji ; L1 ; none ; j # V6.0 (🎩) TOP HAT +1F3AA ; emoji ; L1 ; none ; j # V6.0 (🎪) CIRCUS TENT +1F3AB ; emoji ; L1 ; none ; j # V6.0 (🎫) TICKET +1F3AC ; emoji ; L1 ; none ; j w # V6.0 (🎬) CLAPPER BOARD +1F3AD ; emoji ; L1 ; none ; j w # V6.0 (🎭) PERFORMING ARTS +1F3AE ; emoji ; L1 ; none ; j w # V6.0 (🎮) VIDEO GAME +1F3AF ; emoji ; L1 ; none ; j # V6.0 (🎯) DIRECT HIT +1F3B0 ; emoji ; L1 ; none ; j # V6.0 (🎰) SLOT MACHINE +1F3B1 ; emoji ; L1 ; none ; j # V6.0 (🎱) BILLIARDS +1F3B2 ; emoji ; L1 ; none ; j # V6.0 (🎲) GAME DIE +1F3B3 ; emoji ; L1 ; none ; j # V6.0 (🎳) BOWLING +1F3B4 ; emoji ; L1 ; none ; j # V6.0 (🎴) FLOWER PLAYING CARDS +1F3B5 ; emoji ; L1 ; none ; j # V6.0 (🎵) MUSICAL NOTE +1F3B6 ; emoji ; L1 ; none ; j # V6.0 (🎶) MULTIPLE MUSICAL NOTES +1F3B7 ; emoji ; L1 ; none ; j # V6.0 (🎷) SAXOPHONE +1F3B8 ; emoji ; L1 ; none ; j # V6.0 (🎸) GUITAR +1F3B9 ; emoji ; L1 ; none ; j # V6.0 (🎹) MUSICAL KEYBOARD +1F3BA ; emoji ; L1 ; none ; j # V6.0 (🎺) TRUMPET +1F3BB ; emoji ; L1 ; none ; j # V6.0 (🎻) VIOLIN +1F3BC ; emoji ; L1 ; none ; j # V6.0 (🎼) MUSICAL SCORE +1F3BD ; emoji ; L1 ; none ; j # V6.0 (🎽) RUNNING SHIRT WITH SASH +1F3BE ; emoji ; L1 ; none ; j # V6.0 (🎾) TENNIS RACQUET AND BALL +1F3BF ; emoji ; L1 ; none ; j # V6.0 (🎿) SKI AND SKI BOOT +1F3C0 ; emoji ; L1 ; none ; j # V6.0 (🏀) BASKETBALL AND HOOP +1F3C1 ; emoji ; L1 ; none ; j # V6.0 (🏁) CHEQUERED FLAG +1F3C2 ; emoji ; L1 ; secondary ; j w # V6.0 (🏂) SNOWBOARDER +1F3C3 ; emoji ; L1 ; secondary ; j # V6.0 (🏃) RUNNER +1F3C4 ; emoji ; L1 ; secondary ; j w # V6.0 (🏄) SURFER +1F3C5 ; emoji ; L2 ; none ; x # V7.0 (🏅) SPORTS MEDAL +1F3C6 ; emoji ; L1 ; none ; j w # V6.0 (🏆) TROPHY +1F3C7 ; emoji ; L1 ; secondary ; x # V6.0 (🏇) HORSE RACING +1F3C8 ; emoji ; L1 ; none ; j # V6.0 (🏈) AMERICAN FOOTBALL +1F3C9 ; emoji ; L1 ; none ; x # V6.0 (🏉) RUGBY FOOTBALL +1F3CA ; emoji ; L1 ; secondary ; j w # V6.0 (🏊) SWIMMER +1F3CB ; text ; L2 ; none ; w # V7.0 (🏋) WEIGHT LIFTER +1F3CC ; text ; L2 ; none ; w # V7.0 (🏌) GOLFER +1F3CD ; text ; L2 ; none ; w # V7.0 (🏍) RACING MOTORCYCLE +1F3CE ; text ; L2 ; none ; w # V7.0 (🏎) RACING CAR +1F3CF ; emoji ; L2 ; none ; x # V8.0 (🏏) CRICKET BAT AND BALL +1F3D0 ; emoji ; L2 ; none ; x # V8.0 (🏐) VOLLEYBALL +1F3D1 ; emoji ; L2 ; none ; x # V8.0 (🏑) FIELD HOCKEY STICK AND BALL +1F3D2 ; emoji ; L2 ; none ; x # V8.0 (🏒) ICE HOCKEY STICK AND PUCK +1F3D3 ; emoji ; L2 ; none ; x # V8.0 (🏓) TABLE TENNIS PADDLE AND BALL +1F3D4 ; text ; L2 ; none ; w # V7.0 (🏔) SNOW CAPPED MOUNTAIN +1F3D5 ; text ; L2 ; none ; w # V7.0 (🏕) CAMPING +1F3D6 ; text ; L2 ; none ; w # V7.0 (🏖) BEACH WITH UMBRELLA +1F3D7 ; text ; L2 ; none ; w # V7.0 (🏗) BUILDING CONSTRUCTION +1F3D8 ; text ; L2 ; none ; w # V7.0 (🏘) HOUSE BUILDINGS +1F3D9 ; text ; L2 ; none ; w # V7.0 (🏙) CITYSCAPE +1F3DA ; text ; L2 ; none ; w # V7.0 (🏚) DERELICT HOUSE BUILDING +1F3DB ; text ; L2 ; none ; w # V7.0 (🏛) CLASSICAL BUILDING +1F3DC ; text ; L2 ; none ; w # V7.0 (🏜) DESERT +1F3DD ; text ; L2 ; none ; w # V7.0 (🏝) DESERT ISLAND +1F3DE ; text ; L2 ; none ; w # V7.0 (🏞) NATIONAL PARK +1F3DF ; text ; L2 ; none ; w # V7.0 (🏟) STADIUM +1F3E0 ; emoji ; L1 ; none ; j w # V6.0 (🏠) HOUSE BUILDING +1F3E1 ; emoji ; L1 ; none ; j # V6.0 (🏡) HOUSE WITH GARDEN +1F3E2 ; emoji ; L1 ; none ; j # V6.0 (🏢) OFFICE BUILDING +1F3E3 ; emoji ; L1 ; none ; j # V6.0 (🏣) JAPANESE POST OFFICE +1F3E4 ; emoji ; L1 ; none ; x # V6.0 (🏤) EUROPEAN POST OFFICE +1F3E5 ; emoji ; L1 ; none ; j # V6.0 (🏥) HOSPITAL +1F3E6 ; emoji ; L1 ; none ; j # V6.0 (🏦) BANK +1F3E7 ; emoji ; L1 ; none ; j # V6.0 (🏧) AUTOMATED TELLER MACHINE +1F3E8 ; emoji ; L1 ; none ; j # V6.0 (🏨) HOTEL +1F3E9 ; emoji ; L1 ; none ; j # V6.0 (🏩) LOVE HOTEL +1F3EA ; emoji ; L1 ; none ; j # V6.0 (🏪) CONVENIENCE STORE +1F3EB ; emoji ; L1 ; none ; j # V6.0 (🏫) SCHOOL +1F3EC ; emoji ; L1 ; none ; j # V6.0 (🏬) DEPARTMENT STORE +1F3ED ; emoji ; L1 ; none ; j w # V6.0 (🏭) FACTORY +1F3EE ; emoji ; L1 ; none ; j # V6.0 (🏮) IZAKAYA LANTERN +1F3EF ; emoji ; L1 ; none ; j # V6.0 (🏯) JAPANESE CASTLE +1F3F0 ; emoji ; L1 ; none ; j # V6.0 (🏰) EUROPEAN CASTLE +1F3F3 ; text ; L2 ; none ; w # V7.0 (🏳) WAVING WHITE FLAG +1F3F4 ; emoji ; L2 ; none ; x # V7.0 (🏴) WAVING BLACK FLAG +1F3F5 ; text ; L2 ; none ; w # V7.0 (🏵) ROSETTE +1F3F7 ; text ; L2 ; none ; w # V7.0 (🏷) LABEL +1F3F8 ; emoji ; L2 ; none ; x # V8.0 (🏸) BADMINTON RACQUET AND SHUTTLECOCK +1F3F9 ; emoji ; L2 ; none ; x # V8.0 (🏹) BOW AND ARROW +1F3FA ; emoji ; L2 ; none ; x # V8.0 (🏺) AMPHORA +1F3FB ; emoji ; L2 ; modifier ; x # V8.0 (🏻) EMOJI MODIFIER FITZPATRICK TYPE-1-2 +1F3FC ; emoji ; L2 ; modifier ; x # V8.0 (🏼) EMOJI MODIFIER FITZPATRICK TYPE-3 +1F3FD ; emoji ; L2 ; modifier ; x # V8.0 (🏽) EMOJI MODIFIER FITZPATRICK TYPE-4 +1F3FE ; emoji ; L2 ; modifier ; x # V8.0 (🏾) EMOJI MODIFIER FITZPATRICK TYPE-5 +1F3FF ; emoji ; L2 ; modifier ; x # V8.0 (🏿) EMOJI MODIFIER FITZPATRICK TYPE-6 +1F400 ; emoji ; L1 ; none ; x # V6.0 (🐀) RAT +1F401 ; emoji ; L1 ; none ; x # V6.0 (🐁) MOUSE +1F402 ; emoji ; L1 ; none ; x # V6.0 (🐂) OX +1F403 ; emoji ; L1 ; none ; x # V6.0 (🐃) WATER BUFFALO +1F404 ; emoji ; L1 ; none ; x # V6.0 (🐄) COW +1F405 ; emoji ; L1 ; none ; x # V6.0 (🐅) TIGER +1F406 ; emoji ; L1 ; none ; x # V6.0 (🐆) LEOPARD +1F407 ; emoji ; L1 ; none ; x # V6.0 (🐇) RABBIT +1F408 ; emoji ; L1 ; none ; w # V6.0 (🐈) CAT +1F409 ; emoji ; L1 ; none ; x # V6.0 (🐉) DRAGON +1F40A ; emoji ; L1 ; none ; x # V6.0 (🐊) CROCODILE +1F40B ; emoji ; L1 ; none ; x # V6.0 (🐋) WHALE +1F40C ; emoji ; L1 ; none ; j # V6.0 (🐌) SNAIL +1F40D ; emoji ; L1 ; none ; j # V6.0 (🐍) SNAKE +1F40E ; emoji ; L1 ; none ; j # V6.0 (🐎) HORSE +1F40F ; emoji ; L1 ; none ; x # V6.0 (🐏) RAM +1F410 ; emoji ; L1 ; none ; x # V6.0 (🐐) GOAT +1F411 ; emoji ; L1 ; none ; j # V6.0 (🐑) SHEEP +1F412 ; emoji ; L1 ; none ; j # V6.0 (🐒) MONKEY +1F413 ; emoji ; L1 ; none ; x # V6.0 (🐓) ROOSTER +1F414 ; emoji ; L1 ; none ; j # V6.0 (🐔) CHICKEN +1F415 ; emoji ; L1 ; none ; w # V6.0 (🐕) DOG +1F416 ; emoji ; L1 ; none ; x # V6.0 (🐖) PIG +1F417 ; emoji ; L1 ; none ; j # V6.0 (🐗) BOAR +1F418 ; emoji ; L1 ; none ; j # V6.0 (🐘) ELEPHANT +1F419 ; emoji ; L1 ; none ; j # V6.0 (🐙) OCTOPUS +1F41A ; emoji ; L1 ; none ; j # V6.0 (🐚) SPIRAL SHELL +1F41B ; emoji ; L1 ; none ; j # V6.0 (🐛) BUG +1F41C ; emoji ; L1 ; none ; j # V6.0 (🐜) ANT +1F41D ; emoji ; L1 ; none ; j # V6.0 (🐝) HONEYBEE +1F41E ; emoji ; L1 ; none ; j # V6.0 (🐞) LADY BEETLE +1F41F ; emoji ; L1 ; none ; j w # V6.0 (🐟) FISH +1F420 ; emoji ; L1 ; none ; j # V6.0 (🐠) TROPICAL FISH +1F421 ; emoji ; L1 ; none ; j # V6.0 (🐡) BLOWFISH +1F422 ; emoji ; L1 ; none ; j # V6.0 (🐢) TURTLE +1F423 ; emoji ; L1 ; none ; j # V6.0 (🐣) HATCHING CHICK +1F424 ; emoji ; L1 ; none ; j # V6.0 (🐤) BABY CHICK +1F425 ; emoji ; L1 ; none ; j # V6.0 (🐥) FRONT-FACING BABY CHICK +1F426 ; emoji ; L1 ; none ; j w # V6.0 (🐦) BIRD +1F427 ; emoji ; L1 ; none ; j # V6.0 (🐧) PENGUIN +1F428 ; emoji ; L1 ; none ; j # V6.0 (🐨) KOALA +1F429 ; emoji ; L1 ; none ; j # V6.0 (🐩) POODLE +1F42A ; emoji ; L1 ; none ; x # V6.0 (🐪) DROMEDARY CAMEL +1F42B ; emoji ; L1 ; none ; j # V6.0 (🐫) BACTRIAN CAMEL +1F42C ; emoji ; L1 ; none ; j # V6.0 (🐬) DOLPHIN +1F42D ; emoji ; L1 ; none ; j # V6.0 (🐭) MOUSE FACE +1F42E ; emoji ; L1 ; none ; j # V6.0 (🐮) COW FACE +1F42F ; emoji ; L1 ; none ; j # V6.0 (🐯) TIGER FACE +1F430 ; emoji ; L1 ; none ; j # V6.0 (🐰) RABBIT FACE +1F431 ; emoji ; L1 ; none ; j # V6.0 (🐱) CAT FACE +1F432 ; emoji ; L1 ; none ; j # V6.0 (🐲) DRAGON FACE +1F433 ; emoji ; L1 ; none ; j # V6.0 (🐳) SPOUTING WHALE +1F434 ; emoji ; L1 ; none ; j # V6.0 (🐴) HORSE FACE +1F435 ; emoji ; L1 ; none ; j # V6.0 (🐵) MONKEY FACE +1F436 ; emoji ; L1 ; none ; j # V6.0 (🐶) DOG FACE +1F437 ; emoji ; L1 ; none ; j # V6.0 (🐷) PIG FACE +1F438 ; emoji ; L1 ; none ; j # V6.0 (🐸) FROG FACE +1F439 ; emoji ; L1 ; none ; j # V6.0 (🐹) HAMSTER FACE +1F43A ; emoji ; L1 ; none ; j # V6.0 (🐺) WOLF FACE +1F43B ; emoji ; L1 ; none ; j # V6.0 (🐻) BEAR FACE +1F43C ; emoji ; L1 ; none ; j # V6.0 (🐼) PANDA FACE +1F43D ; emoji ; L1 ; none ; j # V6.0 (🐽) PIG NOSE +1F43E ; emoji ; L1 ; none ; j # V6.0 (🐾) PAW PRINTS +1F43F ; text ; L2 ; none ; w # V7.0 (🐿) CHIPMUNK +1F440 ; emoji ; L1 ; none ; j # V6.0 (👀) EYES +1F441 ; text ; L2 ; none ; w # V7.0 (👁) EYE +1F442 ; emoji ; L1 ; secondary ; j w # V6.0 (👂) EAR +1F443 ; emoji ; L1 ; secondary ; j # V6.0 (👃) NOSE +1F444 ; emoji ; L1 ; none ; j # V6.0 (👄) MOUTH +1F445 ; emoji ; L1 ; none ; j # V6.0 (👅) TONGUE +1F446 ; emoji ; L1 ; secondary ; j w # V6.0 (👆) WHITE UP POINTING BACKHAND INDEX +1F447 ; emoji ; L1 ; secondary ; j w # V6.0 (👇) WHITE DOWN POINTING BACKHAND INDEX +1F448 ; emoji ; L1 ; secondary ; j w # V6.0 (👈) WHITE LEFT POINTING BACKHAND INDEX +1F449 ; emoji ; L1 ; secondary ; j w # V6.0 (👉) WHITE RIGHT POINTING BACKHAND INDEX +1F44A ; emoji ; L1 ; secondary ; j # V6.0 (👊) FISTED HAND SIGN +1F44B ; emoji ; L1 ; secondary ; j # V6.0 (👋) WAVING HAND SIGN +1F44C ; emoji ; L1 ; secondary ; j # V6.0 (👌) OK HAND SIGN +1F44D ; emoji ; L1 ; secondary ; j w # V6.0 (👍) THUMBS UP SIGN +1F44E ; emoji ; L1 ; secondary ; j w # V6.0 (👎) THUMBS DOWN SIGN +1F44F ; emoji ; L1 ; secondary ; j # V6.0 (👏) CLAPPING HANDS SIGN +1F450 ; emoji ; L1 ; secondary ; j # V6.0 (👐) OPEN HANDS SIGN +1F451 ; emoji ; L1 ; none ; j # V6.0 (👑) CROWN +1F452 ; emoji ; L1 ; none ; j # V6.0 (👒) WOMANS HAT +1F453 ; emoji ; L1 ; none ; j w # V6.0 (👓) EYEGLASSES +1F454 ; emoji ; L1 ; none ; j # V6.0 (👔) NECKTIE +1F455 ; emoji ; L1 ; none ; j # V6.0 (👕) T-SHIRT +1F456 ; emoji ; L1 ; none ; j # V6.0 (👖) JEANS +1F457 ; emoji ; L1 ; none ; j # V6.0 (👗) DRESS +1F458 ; emoji ; L1 ; none ; j # V6.0 (👘) KIMONO +1F459 ; emoji ; L1 ; none ; j # V6.0 (👙) BIKINI +1F45A ; emoji ; L1 ; none ; j # V6.0 (👚) WOMANS CLOTHES +1F45B ; emoji ; L1 ; none ; j # V6.0 (👛) PURSE +1F45C ; emoji ; L1 ; none ; j # V6.0 (👜) HANDBAG +1F45D ; emoji ; L1 ; none ; j # V6.0 (👝) POUCH +1F45E ; emoji ; L1 ; none ; j # V6.0 (👞) MANS SHOE +1F45F ; emoji ; L1 ; none ; j # V6.0 (👟) ATHLETIC SHOE +1F460 ; emoji ; L1 ; none ; j # V6.0 (👠) HIGH-HEELED SHOE +1F461 ; emoji ; L1 ; none ; j # V6.0 (👡) WOMANS SANDAL +1F462 ; emoji ; L1 ; none ; j # V6.0 (👢) WOMANS BOOTS +1F463 ; emoji ; L1 ; none ; j # V6.0 (👣) FOOTPRINTS +1F464 ; emoji ; L1 ; none ; j # V6.0 (👤) BUST IN SILHOUETTE +1F465 ; emoji ; L1 ; none ; x # V6.0 (👥) BUSTS IN SILHOUETTE +1F466 ; emoji ; L1 ; primary ; j # V6.0 (👦) BOY +1F467 ; emoji ; L1 ; primary ; j # V6.0 (👧) GIRL +1F468 ; emoji ; L1 ; primary ; j # V6.0 (👨) MAN +1F469 ; emoji ; L1 ; primary ; j # V6.0 (👩) WOMAN +1F46A ; emoji ; L1 ; none ; j w # V6.0 (👪) FAMILY +1F46B ; emoji ; L1 ; none ; j # V6.0 (👫) MAN AND WOMAN HOLDING HANDS +1F46C ; emoji ; L1 ; none ; x # V6.0 (👬) TWO MEN HOLDING HANDS +1F46D ; emoji ; L1 ; none ; x # V6.0 (👭) TWO WOMEN HOLDING HANDS +1F46E ; emoji ; L1 ; primary ; j # V6.0 (👮) POLICE OFFICER +1F46F ; emoji ; L1 ; none ; j # V6.0 (👯) WOMAN WITH BUNNY EARS +1F470 ; emoji ; L1 ; primary ; j # V6.0 (👰) BRIDE WITH VEIL +1F471 ; emoji ; L1 ; primary ; j # V6.0 (👱) PERSON WITH BLOND HAIR +1F472 ; emoji ; L1 ; primary ; j # V6.0 (👲) MAN WITH GUA PI MAO +1F473 ; emoji ; L1 ; primary ; j # V6.0 (👳) MAN WITH TURBAN +1F474 ; emoji ; L1 ; primary ; j # V6.0 (👴) OLDER MAN +1F475 ; emoji ; L1 ; primary ; j # V6.0 (👵) OLDER WOMAN +1F476 ; emoji ; L1 ; primary ; j # V6.0 (👶) BABY +1F477 ; emoji ; L1 ; primary ; j # V6.0 (👷) CONSTRUCTION WORKER +1F478 ; emoji ; L1 ; primary ; j # V6.0 (👸) PRINCESS +1F479 ; emoji ; L1 ; none ; j # V6.0 (👹) JAPANESE OGRE +1F47A ; emoji ; L1 ; none ; j # V6.0 (👺) JAPANESE GOBLIN +1F47B ; emoji ; L1 ; none ; j # V6.0 (👻) GHOST +1F47C ; emoji ; L1 ; primary ; j # V6.0 (👼) BABY ANGEL +1F47D ; emoji ; L1 ; none ; j w # V6.0 (👽) EXTRATERRESTRIAL ALIEN +1F47E ; emoji ; L1 ; none ; j # V6.0 (👾) ALIEN MONSTER +1F47F ; emoji ; L1 ; secondary ; j # V6.0 (👿) IMP +1F480 ; emoji ; L1 ; none ; j # V6.0 (💀) SKULL +1F481 ; emoji ; L1 ; primary ; j # V6.0 (💁) INFORMATION DESK PERSON +1F482 ; emoji ; L1 ; primary ; j # V6.0 (💂) GUARDSMAN +1F483 ; emoji ; L1 ; secondary ; j # V6.0 (💃) DANCER +1F484 ; emoji ; L1 ; none ; j # V6.0 (💄) LIPSTICK +1F485 ; emoji ; L1 ; secondary ; j # V6.0 (💅) NAIL POLISH +1F486 ; emoji ; L1 ; primary ; j # V6.0 (💆) FACE MASSAGE +1F487 ; emoji ; L1 ; primary ; j # V6.0 (💇) HAIRCUT +1F488 ; emoji ; L1 ; none ; j # V6.0 (💈) BARBER POLE +1F489 ; emoji ; L1 ; none ; j # V6.0 (💉) SYRINGE +1F48A ; emoji ; L1 ; none ; j # V6.0 (💊) PILL +1F48B ; emoji ; L1 ; none ; j # V6.0 (💋) KISS MARK +1F48C ; emoji ; L1 ; none ; j # V6.0 (💌) LOVE LETTER +1F48D ; emoji ; L1 ; none ; j # V6.0 (💍) RING +1F48E ; emoji ; L1 ; none ; j # V6.0 (💎) GEM STONE +1F48F ; emoji ; L1 ; none ; j # V6.0 (💏) KISS +1F490 ; emoji ; L1 ; none ; j # V6.0 (💐) BOUQUET +1F491 ; emoji ; L1 ; none ; j # V6.0 (💑) COUPLE WITH HEART +1F492 ; emoji ; L1 ; none ; j # V6.0 (💒) WEDDING +1F493 ; emoji ; L1 ; none ; j # V6.0 (💓) BEATING HEART +1F494 ; emoji ; L1 ; none ; j # V6.0 (💔) BROKEN HEART +1F495 ; emoji ; L1 ; none ; j # V6.0 (💕) TWO HEARTS +1F496 ; emoji ; L1 ; none ; j # V6.0 (💖) SPARKLING HEART +1F497 ; emoji ; L1 ; none ; j # V6.0 (💗) GROWING HEART +1F498 ; emoji ; L1 ; none ; j # V6.0 (💘) HEART WITH ARROW +1F499 ; emoji ; L1 ; none ; j # V6.0 (💙) BLUE HEART +1F49A ; emoji ; L1 ; none ; j # V6.0 (💚) GREEN HEART +1F49B ; emoji ; L1 ; none ; j # V6.0 (💛) YELLOW HEART +1F49C ; emoji ; L1 ; none ; j # V6.0 (💜) PURPLE HEART +1F49D ; emoji ; L1 ; none ; j # V6.0 (💝) HEART WITH RIBBON +1F49E ; emoji ; L1 ; none ; j # V6.0 (💞) REVOLVING HEARTS +1F49F ; emoji ; L1 ; none ; j # V6.0 (💟) HEART DECORATION +1F4A0 ; emoji ; L1 ; none ; j # V6.0 (💠) DIAMOND SHAPE WITH A DOT INSIDE +1F4A1 ; emoji ; L1 ; none ; j # V6.0 (💡) ELECTRIC LIGHT BULB +1F4A2 ; emoji ; L1 ; none ; j # V6.0 (💢) ANGER SYMBOL +1F4A3 ; emoji ; L1 ; none ; j w # V6.0 (💣) BOMB +1F4A4 ; emoji ; L1 ; none ; j # V6.0 (💤) SLEEPING SYMBOL +1F4A5 ; emoji ; L1 ; none ; j # V6.0 (💥) COLLISION SYMBOL +1F4A6 ; emoji ; L1 ; none ; j # V6.0 (💦) SPLASHING SWEAT SYMBOL +1F4A7 ; emoji ; L1 ; none ; j # V6.0 (💧) DROPLET +1F4A8 ; emoji ; L1 ; none ; j # V6.0 (💨) DASH SYMBOL +1F4A9 ; emoji ; L1 ; none ; j # V6.0 (💩) PILE OF POO +1F4AA ; emoji ; L1 ; secondary ; j # V6.0 (💪) FLEXED BICEPS +1F4AB ; emoji ; L1 ; none ; j # V6.0 (💫) DIZZY SYMBOL +1F4AC ; emoji ; L1 ; none ; j # V6.0 (💬) SPEECH BALLOON +1F4AD ; emoji ; L1 ; none ; x # V6.0 (💭) THOUGHT BALLOON +1F4AE ; emoji ; L1 ; none ; j # V6.0 (💮) WHITE FLOWER +1F4AF ; emoji ; L1 ; none ; j # V6.0 (💯) HUNDRED POINTS SYMBOL +1F4B0 ; emoji ; L1 ; none ; j w # V6.0 (💰) MONEY BAG +1F4B1 ; emoji ; L1 ; none ; j # V6.0 (💱) CURRENCY EXCHANGE +1F4B2 ; emoji ; L1 ; none ; j # V6.0 (💲) HEAVY DOLLAR SIGN +1F4B3 ; emoji ; L1 ; none ; j w # V6.0 (💳) CREDIT CARD +1F4B4 ; emoji ; L1 ; none ; j # V6.0 (💴) BANKNOTE WITH YEN SIGN +1F4B5 ; emoji ; L1 ; none ; j # V6.0 (💵) BANKNOTE WITH DOLLAR SIGN +1F4B6 ; emoji ; L1 ; none ; x # V6.0 (💶) BANKNOTE WITH EURO SIGN +1F4B7 ; emoji ; L1 ; none ; x # V6.0 (💷) BANKNOTE WITH POUND SIGN +1F4B8 ; emoji ; L1 ; none ; j # V6.0 (💸) MONEY WITH WINGS +1F4B9 ; emoji ; L1 ; none ; j # V6.0 (💹) CHART WITH UPWARDS TREND AND YEN SIGN +1F4BA ; emoji ; L1 ; none ; j # V6.0 (💺) SEAT +1F4BB ; emoji ; L1 ; none ; j w # V6.0 (💻) PERSONAL COMPUTER +1F4BC ; emoji ; L1 ; none ; j # V6.0 (💼) BRIEFCASE +1F4BD ; emoji ; L1 ; none ; j # V6.0 (💽) MINIDISC +1F4BE ; emoji ; L1 ; none ; j # V6.0 (💾) FLOPPY DISK +1F4BF ; emoji ; L1 ; none ; j w # V6.0 (💿) OPTICAL DISC +1F4C0 ; emoji ; L1 ; none ; j # V6.0 (📀) DVD +1F4C1 ; emoji ; L1 ; none ; j # V6.0 (📁) FILE FOLDER +1F4C2 ; emoji ; L1 ; none ; j # V6.0 (📂) OPEN FILE FOLDER +1F4C3 ; emoji ; L1 ; none ; j # V6.0 (📃) PAGE WITH CURL +1F4C4 ; emoji ; L1 ; none ; j # V6.0 (📄) PAGE FACING UP +1F4C5 ; emoji ; L1 ; none ; j # V6.0 (📅) CALENDAR +1F4C6 ; emoji ; L1 ; none ; j # V6.0 (📆) TEAR-OFF CALENDAR +1F4C7 ; emoji ; L1 ; none ; j # V6.0 (📇) CARD INDEX +1F4C8 ; emoji ; L1 ; none ; j # V6.0 (📈) CHART WITH UPWARDS TREND +1F4C9 ; emoji ; L1 ; none ; j # V6.0 (📉) CHART WITH DOWNWARDS TREND +1F4CA ; emoji ; L1 ; none ; j # V6.0 (📊) BAR CHART +1F4CB ; emoji ; L1 ; none ; j w # V6.0 (📋) CLIPBOARD +1F4CC ; emoji ; L1 ; none ; j # V6.0 (📌) PUSHPIN +1F4CD ; emoji ; L1 ; none ; j # V6.0 (📍) ROUND PUSHPIN +1F4CE ; emoji ; L1 ; none ; j # V6.0 (📎) PAPERCLIP +1F4CF ; emoji ; L1 ; none ; j # V6.0 (📏) STRAIGHT RULER +1F4D0 ; emoji ; L1 ; none ; j # V6.0 (📐) TRIANGULAR RULER +1F4D1 ; emoji ; L1 ; none ; j # V6.0 (📑) BOOKMARK TABS +1F4D2 ; emoji ; L1 ; none ; j # V6.0 (📒) LEDGER +1F4D3 ; emoji ; L1 ; none ; j # V6.0 (📓) NOTEBOOK +1F4D4 ; emoji ; L1 ; none ; j # V6.0 (📔) NOTEBOOK WITH DECORATIVE COVER +1F4D5 ; emoji ; L1 ; none ; j # V6.0 (📕) CLOSED BOOK +1F4D6 ; emoji ; L1 ; none ; j # V6.0 (📖) OPEN BOOK +1F4D7 ; emoji ; L1 ; none ; j # V6.0 (📗) GREEN BOOK +1F4D8 ; emoji ; L1 ; none ; j # V6.0 (📘) BLUE BOOK +1F4D9 ; emoji ; L1 ; none ; j # V6.0 (📙) ORANGE BOOK +1F4DA ; emoji ; L1 ; none ; j w # V6.0 (📚) BOOKS +1F4DB ; emoji ; L1 ; none ; j # V6.0 (📛) NAME BADGE +1F4DC ; emoji ; L1 ; none ; j # V6.0 (📜) SCROLL +1F4DD ; emoji ; L1 ; none ; j # V6.0 (📝) MEMO +1F4DE ; emoji ; L1 ; none ; j # V6.0 (📞) TELEPHONE RECEIVER +1F4DF ; emoji ; L1 ; none ; j w # V6.0 (📟) PAGER +1F4E0 ; emoji ; L1 ; none ; j # V6.0 (📠) FAX MACHINE +1F4E1 ; emoji ; L1 ; none ; j # V6.0 (📡) SATELLITE ANTENNA +1F4E2 ; emoji ; L1 ; none ; j # V6.0 (📢) PUBLIC ADDRESS LOUDSPEAKER +1F4E3 ; emoji ; L1 ; none ; j # V6.0 (📣) CHEERING MEGAPHONE +1F4E4 ; emoji ; L1 ; none ; j w # V6.0 (📤) OUTBOX TRAY +1F4E5 ; emoji ; L1 ; none ; j w # V6.0 (📥) INBOX TRAY +1F4E6 ; emoji ; L1 ; none ; j w # V6.0 (📦) PACKAGE +1F4E7 ; emoji ; L1 ; none ; j # V6.0 (📧) E-MAIL SYMBOL +1F4E8 ; emoji ; L1 ; none ; j # V6.0 (📨) INCOMING ENVELOPE +1F4E9 ; emoji ; L1 ; none ; j # V6.0 (📩) ENVELOPE WITH DOWNWARDS ARROW ABOVE +1F4EA ; emoji ; L1 ; none ; j w # V6.0 (📪) CLOSED MAILBOX WITH LOWERED FLAG +1F4EB ; emoji ; L1 ; none ; j w # V6.0 (📫) CLOSED MAILBOX WITH RAISED FLAG +1F4EC ; emoji ; L1 ; none ; w # V6.0 (📬) OPEN MAILBOX WITH RAISED FLAG +1F4ED ; emoji ; L1 ; none ; w # V6.0 (📭) OPEN MAILBOX WITH LOWERED FLAG +1F4EE ; emoji ; L1 ; none ; j # V6.0 (📮) POSTBOX +1F4EF ; emoji ; L1 ; none ; x # V6.0 (📯) POSTAL HORN +1F4F0 ; emoji ; L1 ; none ; j # V6.0 (📰) NEWSPAPER +1F4F1 ; emoji ; L1 ; none ; j # V6.0 (📱) MOBILE PHONE +1F4F2 ; emoji ; L1 ; none ; j # V6.0 (📲) MOBILE PHONE WITH RIGHTWARDS ARROW AT LEFT +1F4F3 ; emoji ; L1 ; none ; j # V6.0 (📳) VIBRATION MODE +1F4F4 ; emoji ; L1 ; none ; j # V6.0 (📴) MOBILE PHONE OFF +1F4F5 ; emoji ; L1 ; none ; x # V6.0 (📵) NO MOBILE PHONES +1F4F6 ; emoji ; L1 ; none ; j # V6.0 (📶) ANTENNA WITH BARS +1F4F7 ; emoji ; L1 ; none ; j w # V6.0 (📷) CAMERA +1F4F8 ; emoji ; L2 ; none ; x # V7.0 (📸) CAMERA WITH FLASH +1F4F9 ; emoji ; L1 ; none ; j w # V6.0 (📹) VIDEO CAMERA +1F4FA ; emoji ; L1 ; none ; j w # V6.0 (📺) TELEVISION +1F4FB ; emoji ; L1 ; none ; j w # V6.0 (📻) RADIO +1F4FC ; emoji ; L1 ; none ; j # V6.0 (📼) VIDEOCASSETTE +1F4FD ; text ; L2 ; none ; w # V7.0 (📽) FILM PROJECTOR +1F4FF ; emoji ; L2 ; none ; x # V8.0 (📿) PRAYER BEADS +1F500 ; emoji ; L1 ; none ; x # V6.0 (🔀) TWISTED RIGHTWARDS ARROWS +1F501 ; emoji ; L1 ; none ; x # V6.0 (🔁) CLOCKWISE RIGHTWARDS AND LEFTWARDS OPEN CIRCLE ARROWS +1F502 ; emoji ; L1 ; none ; x # V6.0 (🔂) CLOCKWISE RIGHTWARDS AND LEFTWARDS OPEN CIRCLE ARROWS WITH CIRCLED ONE OVERLAY +1F503 ; emoji ; L1 ; none ; j # V6.0 (🔃) CLOCKWISE DOWNWARDS AND UPWARDS OPEN CIRCLE ARROWS +1F504 ; emoji ; L1 ; none ; x # V6.0 (🔄) ANTICLOCKWISE DOWNWARDS AND UPWARDS OPEN CIRCLE ARROWS +1F505 ; emoji ; L1 ; none ; x # V6.0 (🔅) LOW BRIGHTNESS SYMBOL +1F506 ; emoji ; L1 ; none ; x # V6.0 (🔆) HIGH BRIGHTNESS SYMBOL +1F507 ; emoji ; L1 ; none ; x # V6.0 (🔇) SPEAKER WITH CANCELLATION STROKE +1F508 ; emoji ; L1 ; none ; w # V6.0 (🔈) SPEAKER +1F509 ; emoji ; L1 ; none ; x # V6.0 (🔉) SPEAKER WITH ONE SOUND WAVE +1F50A ; emoji ; L1 ; none ; j # V6.0 (🔊) SPEAKER WITH THREE SOUND WAVES +1F50B ; emoji ; L1 ; none ; j # V6.0 (🔋) BATTERY +1F50C ; emoji ; L1 ; none ; j # V6.0 (🔌) ELECTRIC PLUG +1F50D ; emoji ; L1 ; none ; j w # V6.0 (🔍) LEFT-POINTING MAGNIFYING GLASS +1F50E ; emoji ; L1 ; none ; j # V6.0 (🔎) RIGHT-POINTING MAGNIFYING GLASS +1F50F ; emoji ; L1 ; none ; j # V6.0 (🔏) LOCK WITH INK PEN +1F510 ; emoji ; L1 ; none ; j # V6.0 (🔐) CLOSED LOCK WITH KEY +1F511 ; emoji ; L1 ; none ; j # V6.0 (🔑) KEY +1F512 ; emoji ; L1 ; none ; j w # V6.0 (🔒) LOCK +1F513 ; emoji ; L1 ; none ; j w # V6.0 (🔓) OPEN LOCK +1F514 ; emoji ; L1 ; none ; j # V6.0 (🔔) BELL +1F515 ; emoji ; L1 ; none ; x # V6.0 (🔕) BELL WITH CANCELLATION STROKE +1F516 ; emoji ; L1 ; none ; j # V6.0 (🔖) BOOKMARK +1F517 ; emoji ; L1 ; none ; j # V6.0 (🔗) LINK SYMBOL +1F518 ; emoji ; L1 ; none ; j # V6.0 (🔘) RADIO BUTTON +1F519 ; emoji ; L1 ; none ; j # V6.0 (🔙) BACK WITH LEFTWARDS ARROW ABOVE +1F51A ; emoji ; L1 ; none ; j # V6.0 (🔚) END WITH LEFTWARDS ARROW ABOVE +1F51B ; emoji ; L1 ; none ; j # V6.0 (🔛) ON WITH EXCLAMATION MARK WITH LEFT RIGHT ARROW ABOVE +1F51C ; emoji ; L1 ; none ; j # V6.0 (🔜) SOON WITH RIGHTWARDS ARROW ABOVE +1F51D ; emoji ; L1 ; none ; j # V6.0 (🔝) TOP WITH UPWARDS ARROW ABOVE +1F51E ; emoji ; L1 ; none ; j # V6.0 (🔞) NO ONE UNDER EIGHTEEN SYMBOL +1F51F ; emoji ; L1 ; none ; j # V6.0 (🔟) KEYCAP TEN +1F520 ; emoji ; L1 ; none ; j # V6.0 (🔠) INPUT SYMBOL FOR LATIN CAPITAL LETTERS +1F521 ; emoji ; L1 ; none ; j # V6.0 (🔡) INPUT SYMBOL FOR LATIN SMALL LETTERS +1F522 ; emoji ; L1 ; none ; j # V6.0 (🔢) INPUT SYMBOL FOR NUMBERS +1F523 ; emoji ; L1 ; none ; j # V6.0 (🔣) INPUT SYMBOL FOR SYMBOLS +1F524 ; emoji ; L1 ; none ; j # V6.0 (🔤) INPUT SYMBOL FOR LATIN LETTERS +1F525 ; emoji ; L1 ; none ; j # V6.0 (🔥) FIRE +1F526 ; emoji ; L1 ; none ; j # V6.0 (🔦) ELECTRIC TORCH +1F527 ; emoji ; L1 ; none ; j # V6.0 (🔧) WRENCH +1F528 ; emoji ; L1 ; none ; j # V6.0 (🔨) HAMMER +1F529 ; emoji ; L1 ; none ; j # V6.0 (🔩) NUT AND BOLT +1F52A ; emoji ; L1 ; none ; j # V6.0 (🔪) HOCHO +1F52B ; emoji ; L1 ; none ; j # V6.0 (🔫) PISTOL +1F52C ; emoji ; L1 ; none ; x # V6.0 (🔬) MICROSCOPE +1F52D ; emoji ; L1 ; none ; x # V6.0 (🔭) TELESCOPE +1F52E ; emoji ; L1 ; none ; j # V6.0 (🔮) CRYSTAL BALL +1F52F ; emoji ; L1 ; none ; j # V6.0 (🔯) SIX POINTED STAR WITH MIDDLE DOT +1F530 ; emoji ; L1 ; none ; j # V6.0 (🔰) JAPANESE SYMBOL FOR BEGINNER +1F531 ; emoji ; L1 ; none ; j # V6.0 (🔱) TRIDENT EMBLEM +1F532 ; emoji ; L1 ; none ; j # V6.0 (🔲) BLACK SQUARE BUTTON +1F533 ; emoji ; L1 ; none ; j # V6.0 (🔳) WHITE SQUARE BUTTON +1F534 ; emoji ; L1 ; none ; j # V6.0 (🔴) LARGE RED CIRCLE +1F535 ; emoji ; L1 ; none ; j # V6.0 (🔵) LARGE BLUE CIRCLE +1F536 ; emoji ; L1 ; none ; j # V6.0 (🔶) LARGE ORANGE DIAMOND +1F537 ; emoji ; L1 ; none ; j # V6.0 (🔷) LARGE BLUE DIAMOND +1F538 ; emoji ; L1 ; none ; j # V6.0 (🔸) SMALL ORANGE DIAMOND +1F539 ; emoji ; L1 ; none ; j # V6.0 (🔹) SMALL BLUE DIAMOND +1F53A ; emoji ; L1 ; none ; j # V6.0 (🔺) UP-POINTING RED TRIANGLE +1F53B ; emoji ; L1 ; none ; j # V6.0 (🔻) DOWN-POINTING RED TRIANGLE +1F53C ; emoji ; L1 ; none ; j # V6.0 (🔼) UP-POINTING SMALL RED TRIANGLE +1F53D ; emoji ; L1 ; none ; j # V6.0 (🔽) DOWN-POINTING SMALL RED TRIANGLE +1F549 ; text ; L2 ; none ; w # V7.0 (🕉) OM SYMBOL +1F54A ; text ; L2 ; none ; w # V7.0 (🕊) DOVE OF PEACE +1F54B ; emoji ; L2 ; none ; x # V8.0 (🕋) KAABA +1F54C ; emoji ; L2 ; none ; x # V8.0 (🕌) MOSQUE +1F54D ; emoji ; L2 ; none ; x # V8.0 (🕍) SYNAGOGUE +1F54E ; emoji ; L2 ; none ; x # V8.0 (🕎) MENORAH WITH NINE BRANCHES +1F550 ; emoji ; L1 ; none ; j w # V6.0 (🕐) CLOCK FACE ONE OCLOCK +1F551 ; emoji ; L1 ; none ; j w # V6.0 (🕑) CLOCK FACE TWO OCLOCK +1F552 ; emoji ; L1 ; none ; j w # V6.0 (🕒) CLOCK FACE THREE OCLOCK +1F553 ; emoji ; L1 ; none ; j w # V6.0 (🕓) CLOCK FACE FOUR OCLOCK +1F554 ; emoji ; L1 ; none ; j w # V6.0 (🕔) CLOCK FACE FIVE OCLOCK +1F555 ; emoji ; L1 ; none ; j w # V6.0 (🕕) CLOCK FACE SIX OCLOCK +1F556 ; emoji ; L1 ; none ; j w # V6.0 (🕖) CLOCK FACE SEVEN OCLOCK +1F557 ; emoji ; L1 ; none ; j w # V6.0 (🕗) CLOCK FACE EIGHT OCLOCK +1F558 ; emoji ; L1 ; none ; j w # V6.0 (🕘) CLOCK FACE NINE OCLOCK +1F559 ; emoji ; L1 ; none ; j w # V6.0 (🕙) CLOCK FACE TEN OCLOCK +1F55A ; emoji ; L1 ; none ; j w # V6.0 (🕚) CLOCK FACE ELEVEN OCLOCK +1F55B ; emoji ; L1 ; none ; j w # V6.0 (🕛) CLOCK FACE TWELVE OCLOCK +1F55C ; emoji ; L1 ; none ; w # V6.0 (🕜) CLOCK FACE ONE-THIRTY +1F55D ; emoji ; L1 ; none ; w # V6.0 (🕝) CLOCK FACE TWO-THIRTY +1F55E ; emoji ; L1 ; none ; w # V6.0 (🕞) CLOCK FACE THREE-THIRTY +1F55F ; emoji ; L1 ; none ; w # V6.0 (🕟) CLOCK FACE FOUR-THIRTY +1F560 ; emoji ; L1 ; none ; w # V6.0 (🕠) CLOCK FACE FIVE-THIRTY +1F561 ; emoji ; L1 ; none ; w # V6.0 (🕡) CLOCK FACE SIX-THIRTY +1F562 ; emoji ; L1 ; none ; w # V6.0 (🕢) CLOCK FACE SEVEN-THIRTY +1F563 ; emoji ; L1 ; none ; w # V6.0 (🕣) CLOCK FACE EIGHT-THIRTY +1F564 ; emoji ; L1 ; none ; w # V6.0 (🕤) CLOCK FACE NINE-THIRTY +1F565 ; emoji ; L1 ; none ; w # V6.0 (🕥) CLOCK FACE TEN-THIRTY +1F566 ; emoji ; L1 ; none ; w # V6.0 (🕦) CLOCK FACE ELEVEN-THIRTY +1F567 ; emoji ; L1 ; none ; w # V6.0 (🕧) CLOCK FACE TWELVE-THIRTY +1F56F ; text ; L2 ; none ; w # V7.0 (🕯) CANDLE +1F570 ; text ; L2 ; none ; w # V7.0 (🕰) MANTELPIECE CLOCK +1F573 ; text ; L2 ; none ; w # V7.0 (🕳) HOLE +1F574 ; text ; L2 ; none ; w # V7.0 (🕴) MAN IN BUSINESS SUIT LEVITATING +1F575 ; text ; L2 ; none ; w # V7.0 (🕵) SLEUTH OR SPY +1F576 ; text ; L2 ; none ; w # V7.0 (🕶) DARK SUNGLASSES +1F577 ; text ; L2 ; none ; w # V7.0 (🕷) SPIDER +1F578 ; text ; L2 ; none ; w # V7.0 (🕸) SPIDER WEB +1F579 ; text ; L2 ; none ; w # V7.0 (🕹) JOYSTICK +1F587 ; text ; L2 ; none ; w # V7.0 (🖇) LINKED PAPERCLIPS +1F58A ; text ; L2 ; none ; w # V7.0 (🖊) LOWER LEFT BALLPOINT PEN +1F58B ; text ; L2 ; none ; w # V7.0 (🖋) LOWER LEFT FOUNTAIN PEN +1F58C ; text ; L2 ; none ; w # V7.0 (🖌) LOWER LEFT PAINTBRUSH +1F58D ; text ; L2 ; none ; w # V7.0 (🖍) LOWER LEFT CRAYON +1F590 ; text ; L2 ; secondary ; w # V7.0 (🖐) RAISED HAND WITH FINGERS SPLAYED +1F595 ; emoji ; L2 ; secondary ; x # V7.0 (🖕) REVERSED HAND WITH MIDDLE FINGER EXTENDED +1F596 ; emoji ; L2 ; secondary ; x # V7.0 (🖖) RAISED HAND WITH PART BETWEEN MIDDLE AND RING FINGERS +1F5A5 ; text ; L2 ; none ; w # V7.0 (🖥) DESKTOP COMPUTER +1F5A8 ; text ; L2 ; none ; w # V7.0 (🖨) PRINTER +1F5B1 ; text ; L2 ; none ; w # V7.0 (🖱) THREE BUTTON MOUSE +1F5B2 ; text ; L2 ; none ; w # V7.0 (🖲) TRACKBALL +1F5BC ; text ; L2 ; none ; w # V7.0 (🖼) FRAME WITH PICTURE +1F5C2 ; text ; L2 ; none ; w # V7.0 (🗂) CARD INDEX DIVIDERS +1F5C3 ; text ; L2 ; none ; w # V7.0 (🗃) CARD FILE BOX +1F5C4 ; text ; L2 ; none ; w # V7.0 (🗄) FILE CABINET +1F5D1 ; text ; L2 ; none ; w # V7.0 (🗑) WASTEBASKET +1F5D2 ; text ; L2 ; none ; w # V7.0 (🗒) SPIRAL NOTE PAD +1F5D3 ; text ; L2 ; none ; w # V7.0 (🗓) SPIRAL CALENDAR PAD +1F5DC ; text ; L2 ; none ; w # V7.0 (🗜) COMPRESSION +1F5DD ; text ; L2 ; none ; w # V7.0 (🗝) OLD KEY +1F5DE ; text ; L2 ; none ; w # V7.0 (🗞) ROLLED-UP NEWSPAPER +1F5E1 ; text ; L2 ; none ; w # V7.0 (🗡) DAGGER KNIFE +1F5E3 ; text ; L2 ; none ; w # V7.0 (🗣) SPEAKING HEAD IN SILHOUETTE +1F5EF ; text ; L2 ; none ; w # V7.0 (🗯) RIGHT ANGER BUBBLE +1F5F3 ; text ; L2 ; none ; w # V7.0 (🗳) BALLOT BOX WITH BALLOT +1F5FA ; text ; L2 ; none ; w # V7.0 (🗺) WORLD MAP +1F5FB ; emoji ; L1 ; none ; j # V6.0 (🗻) MOUNT FUJI +1F5FC ; emoji ; L1 ; none ; j # V6.0 (🗼) TOKYO TOWER +1F5FD ; emoji ; L1 ; none ; j # V6.0 (🗽) STATUE OF LIBERTY +1F5FE ; emoji ; L1 ; none ; j # V6.0 (🗾) SILHOUETTE OF JAPAN +1F5FF ; emoji ; L1 ; none ; j # V6.0 (🗿) MOYAI +1F600 ; emoji ; L1 ; secondary ; x # V6.1 (😀) GRINNING FACE +1F601 ; emoji ; L1 ; secondary ; j # V6.0 (😁) GRINNING FACE WITH SMILING EYES +1F602 ; emoji ; L1 ; secondary ; j # V6.0 (😂) FACE WITH TEARS OF JOY +1F603 ; emoji ; L1 ; secondary ; j # V6.0 (😃) SMILING FACE WITH OPEN MOUTH +1F604 ; emoji ; L1 ; secondary ; j # V6.0 (😄) SMILING FACE WITH OPEN MOUTH AND SMILING EYES +1F605 ; emoji ; L1 ; secondary ; j # V6.0 (😅) SMILING FACE WITH OPEN MOUTH AND COLD SWEAT +1F606 ; emoji ; L1 ; secondary ; j # V6.0 (😆) SMILING FACE WITH OPEN MOUTH AND TIGHTLY-CLOSED EYES +1F607 ; emoji ; L1 ; secondary ; x # V6.0 (😇) SMILING FACE WITH HALO +1F608 ; emoji ; L1 ; secondary ; x # V6.0 (😈) SMILING FACE WITH HORNS +1F609 ; emoji ; L1 ; secondary ; j # V6.0 (😉) WINKING FACE +1F60A ; emoji ; L1 ; secondary ; j # V6.0 (😊) SMILING FACE WITH SMILING EYES +1F60B ; emoji ; L1 ; secondary ; j # V6.0 (😋) FACE SAVOURING DELICIOUS FOOD +1F60C ; emoji ; L1 ; secondary ; j # V6.0 (😌) RELIEVED FACE +1F60D ; emoji ; L1 ; secondary ; j # V6.0 (😍) SMILING FACE WITH HEART-SHAPED EYES +1F60E ; emoji ; L1 ; secondary ; x # V6.0 (😎) SMILING FACE WITH SUNGLASSES +1F60F ; emoji ; L1 ; secondary ; j # V6.0 (😏) SMIRKING FACE +1F610 ; emoji ; L1 ; secondary ; w # V6.0 (😐) NEUTRAL FACE +1F611 ; emoji ; L1 ; secondary ; x # V6.1 (😑) EXPRESSIONLESS FACE +1F612 ; emoji ; L1 ; secondary ; j # V6.0 (😒) UNAMUSED FACE +1F613 ; emoji ; L1 ; secondary ; j # V6.0 (😓) FACE WITH COLD SWEAT +1F614 ; emoji ; L1 ; secondary ; j # V6.0 (😔) PENSIVE FACE +1F615 ; emoji ; L1 ; secondary ; x # V6.1 (😕) CONFUSED FACE +1F616 ; emoji ; L1 ; secondary ; j # V6.0 (😖) CONFOUNDED FACE +1F617 ; emoji ; L1 ; secondary ; x # V6.1 (😗) KISSING FACE +1F618 ; emoji ; L1 ; secondary ; j # V6.0 (😘) FACE THROWING A KISS +1F619 ; emoji ; L1 ; secondary ; x # V6.1 (😙) KISSING FACE WITH SMILING EYES +1F61A ; emoji ; L1 ; secondary ; j # V6.0 (😚) KISSING FACE WITH CLOSED EYES +1F61B ; emoji ; L1 ; secondary ; x # V6.1 (😛) FACE WITH STUCK-OUT TONGUE +1F61C ; emoji ; L1 ; secondary ; j # V6.0 (😜) FACE WITH STUCK-OUT TONGUE AND WINKING EYE +1F61D ; emoji ; L1 ; secondary ; j # V6.0 (😝) FACE WITH STUCK-OUT TONGUE AND TIGHTLY-CLOSED EYES +1F61E ; emoji ; L1 ; secondary ; j # V6.0 (😞) DISAPPOINTED FACE +1F61F ; emoji ; L1 ; secondary ; x # V6.1 (😟) WORRIED FACE +1F620 ; emoji ; L1 ; secondary ; j # V6.0 (😠) ANGRY FACE +1F621 ; emoji ; L1 ; secondary ; j # V6.0 (😡) POUTING FACE +1F622 ; emoji ; L1 ; secondary ; j # V6.0 (😢) CRYING FACE +1F623 ; emoji ; L1 ; secondary ; j # V6.0 (😣) PERSEVERING FACE +1F624 ; emoji ; L1 ; secondary ; j # V6.0 (😤) FACE WITH LOOK OF TRIUMPH +1F625 ; emoji ; L1 ; secondary ; j # V6.0 (😥) DISAPPOINTED BUT RELIEVED FACE +1F626 ; emoji ; L1 ; secondary ; x # V6.1 (😦) FROWNING FACE WITH OPEN MOUTH +1F627 ; emoji ; L1 ; secondary ; x # V6.1 (😧) ANGUISHED FACE +1F628 ; emoji ; L1 ; secondary ; j # V6.0 (😨) FEARFUL FACE +1F629 ; emoji ; L1 ; secondary ; j # V6.0 (😩) WEARY FACE +1F62A ; emoji ; L1 ; secondary ; j # V6.0 (😪) SLEEPY FACE +1F62B ; emoji ; L1 ; secondary ; j # V6.0 (😫) TIRED FACE +1F62C ; emoji ; L1 ; secondary ; x # V6.1 (😬) GRIMACING FACE +1F62D ; emoji ; L1 ; secondary ; j # V6.0 (😭) LOUDLY CRYING FACE +1F62E ; emoji ; L1 ; secondary ; x # V6.1 (😮) FACE WITH OPEN MOUTH +1F62F ; emoji ; L1 ; secondary ; x # V6.1 (😯) HUSHED FACE +1F630 ; emoji ; L1 ; secondary ; j # V6.0 (😰) FACE WITH OPEN MOUTH AND COLD SWEAT +1F631 ; emoji ; L1 ; secondary ; j # V6.0 (😱) FACE SCREAMING IN FEAR +1F632 ; emoji ; L1 ; secondary ; j # V6.0 (😲) ASTONISHED FACE +1F633 ; emoji ; L1 ; secondary ; j # V6.0 (😳) FLUSHED FACE +1F634 ; emoji ; L1 ; secondary ; x # V6.1 (😴) SLEEPING FACE +1F635 ; emoji ; L1 ; secondary ; j # V6.0 (😵) DIZZY FACE +1F636 ; emoji ; L1 ; secondary ; x # V6.0 (😶) FACE WITHOUT MOUTH +1F637 ; emoji ; L1 ; secondary ; j # V6.0 (😷) FACE WITH MEDICAL MASK +1F638 ; emoji ; L1 ; none ; j # V6.0 (😸) GRINNING CAT FACE WITH SMILING EYES +1F639 ; emoji ; L1 ; none ; j # V6.0 (😹) CAT FACE WITH TEARS OF JOY +1F63A ; emoji ; L1 ; none ; j # V6.0 (😺) SMILING CAT FACE WITH OPEN MOUTH +1F63B ; emoji ; L1 ; none ; j # V6.0 (😻) SMILING CAT FACE WITH HEART-SHAPED EYES +1F63C ; emoji ; L1 ; none ; j # V6.0 (😼) CAT FACE WITH WRY SMILE +1F63D ; emoji ; L1 ; none ; j # V6.0 (😽) KISSING CAT FACE WITH CLOSED EYES +1F63E ; emoji ; L1 ; none ; j # V6.0 (😾) POUTING CAT FACE +1F63F ; emoji ; L1 ; none ; j # V6.0 (😿) CRYING CAT FACE +1F640 ; emoji ; L1 ; none ; j # V6.0 (🙀) WEARY CAT FACE +1F641 ; emoji ; L2 ; secondary ; x # V7.0 (🙁) SLIGHTLY FROWNING FACE +1F642 ; emoji ; L2 ; secondary ; x # V7.0 (🙂) SLIGHTLY SMILING FACE +1F643 ; emoji ; L2 ; secondary ; x # V8.0 (🙃) UPSIDE-DOWN FACE +1F644 ; emoji ; L2 ; secondary ; x # V8.0 (🙄) FACE WITH ROLLING EYES +1F645 ; emoji ; L1 ; primary ; j # V6.0 (🙅) FACE WITH NO GOOD GESTURE +1F646 ; emoji ; L1 ; primary ; j # V6.0 (🙆) FACE WITH OK GESTURE +1F647 ; emoji ; L1 ; primary ; j # V6.0 (🙇) PERSON BOWING DEEPLY +1F648 ; emoji ; L1 ; none ; j # V6.0 (🙈) SEE-NO-EVIL MONKEY +1F649 ; emoji ; L1 ; none ; j # V6.0 (🙉) HEAR-NO-EVIL MONKEY +1F64A ; emoji ; L1 ; none ; j # V6.0 (🙊) SPEAK-NO-EVIL MONKEY +1F64B ; emoji ; L1 ; primary ; j # V6.0 (🙋) HAPPY PERSON RAISING ONE HAND +1F64C ; emoji ; L1 ; secondary ; j # V6.0 (🙌) PERSON RAISING BOTH HANDS IN CELEBRATION +1F64D ; emoji ; L1 ; primary ; j # V6.0 (🙍) PERSON FROWNING +1F64E ; emoji ; L1 ; primary ; j # V6.0 (🙎) PERSON WITH POUTING FACE +1F64F ; emoji ; L1 ; secondary ; j # V6.0 (🙏) PERSON WITH FOLDED HANDS +1F680 ; emoji ; L1 ; none ; j # V6.0 (🚀) ROCKET +1F681 ; emoji ; L1 ; none ; x # V6.0 (🚁) HELICOPTER +1F682 ; emoji ; L1 ; none ; x # V6.0 (🚂) STEAM LOCOMOTIVE +1F683 ; emoji ; L1 ; none ; j # V6.0 (🚃) RAILWAY CAR +1F684 ; emoji ; L1 ; none ; j # V6.0 (🚄) HIGH-SPEED TRAIN +1F685 ; emoji ; L1 ; none ; j # V6.0 (🚅) HIGH-SPEED TRAIN WITH BULLET NOSE +1F686 ; emoji ; L1 ; none ; x # V6.0 (🚆) TRAIN +1F687 ; emoji ; L1 ; none ; j w # V6.0 (🚇) METRO +1F688 ; emoji ; L1 ; none ; x # V6.0 (🚈) LIGHT RAIL +1F689 ; emoji ; L1 ; none ; j # V6.0 (🚉) STATION +1F68A ; emoji ; L1 ; none ; x # V6.0 (🚊) TRAM +1F68B ; emoji ; L1 ; none ; x # V6.0 (🚋) TRAM CAR +1F68C ; emoji ; L1 ; none ; j # V6.0 (🚌) BUS +1F68D ; emoji ; L1 ; none ; w # V6.0 (🚍) ONCOMING BUS +1F68E ; emoji ; L1 ; none ; x # V6.0 (🚎) TROLLEYBUS +1F68F ; emoji ; L1 ; none ; j # V6.0 (🚏) BUS STOP +1F690 ; emoji ; L1 ; none ; x # V6.0 (🚐) MINIBUS +1F691 ; emoji ; L1 ; none ; j w # V6.0 (🚑) AMBULANCE +1F692 ; emoji ; L1 ; none ; j # V6.0 (🚒) FIRE ENGINE +1F693 ; emoji ; L1 ; none ; j # V6.0 (🚓) POLICE CAR +1F694 ; emoji ; L1 ; none ; w # V6.0 (🚔) ONCOMING POLICE CAR +1F695 ; emoji ; L1 ; none ; j # V6.0 (🚕) TAXI +1F696 ; emoji ; L1 ; none ; x # V6.0 (🚖) ONCOMING TAXI +1F697 ; emoji ; L1 ; none ; j # V6.0 (🚗) AUTOMOBILE +1F698 ; emoji ; L1 ; none ; w # V6.0 (🚘) ONCOMING AUTOMOBILE +1F699 ; emoji ; L1 ; none ; j # V6.0 (🚙) RECREATIONAL VEHICLE +1F69A ; emoji ; L1 ; none ; j # V6.0 (🚚) DELIVERY TRUCK +1F69B ; emoji ; L1 ; none ; x # V6.0 (🚛) ARTICULATED LORRY +1F69C ; emoji ; L1 ; none ; x # V6.0 (🚜) TRACTOR +1F69D ; emoji ; L1 ; none ; x # V6.0 (🚝) MONORAIL +1F69E ; emoji ; L1 ; none ; x # V6.0 (🚞) MOUNTAIN RAILWAY +1F69F ; emoji ; L1 ; none ; x # V6.0 (🚟) SUSPENSION RAILWAY +1F6A0 ; emoji ; L1 ; none ; x # V6.0 (🚠) MOUNTAIN CABLEWAY +1F6A1 ; emoji ; L1 ; none ; x # V6.0 (🚡) AERIAL TRAMWAY +1F6A2 ; emoji ; L1 ; none ; j # V6.0 (🚢) SHIP +1F6A3 ; emoji ; L1 ; secondary ; x # V6.0 (🚣) ROWBOAT +1F6A4 ; emoji ; L1 ; none ; j # V6.0 (🚤) SPEEDBOAT +1F6A5 ; emoji ; L1 ; none ; j # V6.0 (🚥) HORIZONTAL TRAFFIC LIGHT +1F6A6 ; emoji ; L1 ; none ; x # V6.0 (🚦) VERTICAL TRAFFIC LIGHT +1F6A7 ; emoji ; L1 ; none ; j # V6.0 (🚧) CONSTRUCTION SIGN +1F6A8 ; emoji ; L1 ; none ; j # V6.0 (🚨) POLICE CARS REVOLVING LIGHT +1F6A9 ; emoji ; L1 ; none ; j # V6.0 (🚩) TRIANGULAR FLAG ON POST +1F6AA ; emoji ; L1 ; none ; j # V6.0 (🚪) DOOR +1F6AB ; emoji ; L1 ; none ; j # V6.0 (🚫) NO ENTRY SIGN +1F6AC ; emoji ; L1 ; none ; j # V6.0 (🚬) SMOKING SYMBOL +1F6AD ; emoji ; L1 ; none ; j w # V6.0 (🚭) NO SMOKING SYMBOL +1F6AE ; emoji ; L1 ; none ; x # V6.0 (🚮) PUT LITTER IN ITS PLACE SYMBOL +1F6AF ; emoji ; L1 ; none ; x # V6.0 (🚯) DO NOT LITTER SYMBOL +1F6B0 ; emoji ; L1 ; none ; x # V6.0 (🚰) POTABLE WATER SYMBOL +1F6B1 ; emoji ; L1 ; none ; x # V6.0 (🚱) NON-POTABLE WATER SYMBOL +1F6B2 ; emoji ; L1 ; none ; j w # V6.0 (🚲) BICYCLE +1F6B3 ; emoji ; L1 ; none ; x # V6.0 (🚳) NO BICYCLES +1F6B4 ; emoji ; L1 ; secondary ; x # V6.0 (🚴) BICYCLIST +1F6B5 ; emoji ; L1 ; secondary ; x # V6.0 (🚵) MOUNTAIN BICYCLIST +1F6B6 ; emoji ; L1 ; secondary ; j # V6.0 (🚶) PEDESTRIAN +1F6B7 ; emoji ; L1 ; none ; x # V6.0 (🚷) NO PEDESTRIANS +1F6B8 ; emoji ; L1 ; none ; x # V6.0 (🚸) CHILDREN CROSSING +1F6B9 ; emoji ; L1 ; none ; j w # V6.0 (🚹) MENS SYMBOL +1F6BA ; emoji ; L1 ; none ; j w # V6.0 (🚺) WOMENS SYMBOL +1F6BB ; emoji ; L1 ; none ; j # V6.0 (🚻) RESTROOM +1F6BC ; emoji ; L1 ; none ; j w # V6.0 (🚼) BABY SYMBOL +1F6BD ; emoji ; L1 ; none ; j # V6.0 (🚽) TOILET +1F6BE ; emoji ; L1 ; none ; j # V6.0 (🚾) WATER CLOSET +1F6BF ; emoji ; L1 ; none ; x # V6.0 (🚿) SHOWER +1F6C0 ; emoji ; L1 ; secondary ; j # V6.0 (🛀) BATH +1F6C1 ; emoji ; L1 ; none ; x # V6.0 (🛁) BATHTUB +1F6C2 ; emoji ; L1 ; none ; x # V6.0 (🛂) PASSPORT CONTROL +1F6C3 ; emoji ; L1 ; none ; x # V6.0 (🛃) CUSTOMS +1F6C4 ; emoji ; L1 ; none ; x # V6.0 (🛄) BAGGAGE CLAIM +1F6C5 ; emoji ; L1 ; none ; x # V6.0 (🛅) LEFT LUGGAGE +1F6CB ; text ; L2 ; none ; w # V7.0 (🛋) COUCH AND LAMP +1F6CC ; emoji ; L2 ; none ; x # V7.0 (🛌) SLEEPING ACCOMMODATION +1F6CD ; text ; L2 ; none ; w # V7.0 (🛍) SHOPPING BAGS +1F6CE ; text ; L2 ; none ; w # V7.0 (🛎) BELLHOP BELL +1F6CF ; text ; L2 ; none ; w # V7.0 (🛏) BED +1F6D0 ; emoji ; L2 ; none ; x # V8.0 (🛐) PLACE OF WORSHIP +1F6E0 ; text ; L2 ; none ; w # V7.0 (🛠) HAMMER AND WRENCH +1F6E1 ; text ; L2 ; none ; w # V7.0 (🛡) SHIELD +1F6E2 ; text ; L2 ; none ; w # V7.0 (🛢) OIL DRUM +1F6E3 ; text ; L2 ; none ; w # V7.0 (🛣) MOTORWAY +1F6E4 ; text ; L2 ; none ; w # V7.0 (🛤) RAILWAY TRACK +1F6E5 ; text ; L2 ; none ; w # V7.0 (🛥) MOTOR BOAT +1F6E9 ; text ; L2 ; none ; w # V7.0 (🛩) SMALL AIRPLANE +1F6EB ; emoji ; L2 ; none ; x # V7.0 (🛫) AIRPLANE DEPARTURE +1F6EC ; emoji ; L2 ; none ; x # V7.0 (🛬) AIRPLANE ARRIVING +1F6F0 ; text ; L2 ; none ; w # V7.0 (🛰) SATELLITE +1F6F3 ; text ; L2 ; none ; w # V7.0 (🛳) PASSENGER SHIP +1F910 ; emoji ; L2 ; secondary ; x # V8.0 (🤐) ZIPPER-MOUTH FACE +1F911 ; emoji ; L2 ; secondary ; x # V8.0 (🤑) MONEY-MOUTH FACE +1F912 ; emoji ; L2 ; secondary ; x # V8.0 (🤒) FACE WITH THERMOMETER +1F913 ; emoji ; L2 ; secondary ; x # V8.0 (🤓) NERD FACE +1F914 ; emoji ; L2 ; secondary ; x # V8.0 (🤔) THINKING FACE +1F915 ; emoji ; L2 ; secondary ; x # V8.0 (🤕) FACE WITH HEAD-BANDAGE +1F916 ; emoji ; L2 ; none ; x # V8.0 (🤖) ROBOT FACE +1F917 ; emoji ; L2 ; secondary ; x # V8.0 (🤗) HUGGING FACE +1F918 ; emoji ; L2 ; secondary ; x # V8.0 (🤘) SIGN OF THE HORNS +1F980 ; emoji ; L2 ; none ; x # V8.0 (🦀) CRAB +1F981 ; emoji ; L2 ; none ; x # V8.0 (🦁) LION FACE +1F982 ; emoji ; L2 ; none ; x # V8.0 (🦂) SCORPION +1F983 ; emoji ; L2 ; none ; x # V8.0 (🦃) TURKEY +1F984 ; emoji ; L2 ; none ; x # V8.0 (🦄) UNICORN FACE +1F9C0 ; emoji ; L2 ; none ; x # V8.0 (🧀) CHEESE WEDGE +0023 20E3 ; text ; L1 ; none ; j # V3.0 (#⃣) keycap NUMBER SIGN +002A 20E3 ; text ; L2 ; none ; x # V3.0 (*⃣) keycap ASTERISK +0030 20E3 ; text ; L1 ; none ; j # V3.0 (0⃣) keycap DIGIT ZERO +0031 20E3 ; text ; L1 ; none ; j # V3.0 (1⃣) keycap DIGIT ONE +0032 20E3 ; text ; L1 ; none ; j # V3.0 (2⃣) keycap DIGIT TWO +0033 20E3 ; text ; L1 ; none ; j # V3.0 (3⃣) keycap DIGIT THREE +0034 20E3 ; text ; L1 ; none ; j # V3.0 (4⃣) keycap DIGIT FOUR +0035 20E3 ; text ; L1 ; none ; j # V3.0 (5⃣) keycap DIGIT FIVE +0036 20E3 ; text ; L1 ; none ; j # V3.0 (6⃣) keycap DIGIT SIX +0037 20E3 ; text ; L1 ; none ; j # V3.0 (7⃣) keycap DIGIT SEVEN +0038 20E3 ; text ; L1 ; none ; j # V3.0 (8⃣) keycap DIGIT EIGHT +0039 20E3 ; text ; L1 ; none ; j # V3.0 (9⃣) keycap DIGIT NINE +1F1E6 1F1E8 ; emoji ; L2 ; none ; x # V6.0 (🇦🇨) flag for Ascension Island +1F1E6 1F1E9 ; emoji ; L2 ; none ; x # V6.0 (🇦🇩) flag for Andorra +1F1E6 1F1EA ; emoji ; L2 ; none ; x # V6.0 (🇦🇪) flag for United Arab Emirates +1F1E6 1F1EB ; emoji ; L2 ; none ; x # V6.0 (🇦🇫) flag for Afghanistan +1F1E6 1F1EC ; emoji ; L2 ; none ; x # V6.0 (🇦🇬) flag for Antigua & Barbuda +1F1E6 1F1EE ; emoji ; L2 ; none ; x # V6.0 (🇦🇮) flag for Anguilla +1F1E6 1F1F1 ; emoji ; L2 ; none ; x # V6.0 (🇦🇱) flag for Albania +1F1E6 1F1F2 ; emoji ; L2 ; none ; x # V6.0 (🇦🇲) flag for Armenia +1F1E6 1F1F4 ; emoji ; L2 ; none ; x # V6.0 (🇦🇴) flag for Angola +1F1E6 1F1F6 ; emoji ; L2 ; none ; x # V6.0 (🇦🇶) flag for Antarctica +1F1E6 1F1F7 ; emoji ; L2 ; none ; x # V6.0 (🇦🇷) flag for Argentina +1F1E6 1F1F8 ; emoji ; L2 ; none ; x # V6.0 (🇦🇸) flag for American Samoa +1F1E6 1F1F9 ; emoji ; L2 ; none ; x # V6.0 (🇦🇹) flag for Austria +1F1E6 1F1FA ; emoji ; L2 ; none ; x # V6.0 (🇦🇺) flag for Australia +1F1E6 1F1FC ; emoji ; L2 ; none ; x # V6.0 (🇦🇼) flag for Aruba +1F1E6 1F1FD ; emoji ; L2 ; none ; x # V6.0 (🇦🇽) flag for Åland Islands +1F1E6 1F1FF ; emoji ; L2 ; none ; x # V6.0 (🇦🇿) flag for Azerbaijan +1F1E7 1F1E6 ; emoji ; L2 ; none ; x # V6.0 (🇧🇦) flag for Bosnia & Herzegovina +1F1E7 1F1E7 ; emoji ; L2 ; none ; x # V6.0 (🇧🇧) flag for Barbados +1F1E7 1F1E9 ; emoji ; L2 ; none ; x # V6.0 (🇧🇩) flag for Bangladesh +1F1E7 1F1EA ; emoji ; L2 ; none ; x # V6.0 (🇧🇪) flag for Belgium +1F1E7 1F1EB ; emoji ; L2 ; none ; x # V6.0 (🇧🇫) flag for Burkina Faso +1F1E7 1F1EC ; emoji ; L2 ; none ; x # V6.0 (🇧🇬) flag for Bulgaria +1F1E7 1F1ED ; emoji ; L2 ; none ; x # V6.0 (🇧🇭) flag for Bahrain +1F1E7 1F1EE ; emoji ; L2 ; none ; x # V6.0 (🇧🇮) flag for Burundi +1F1E7 1F1EF ; emoji ; L2 ; none ; x # V6.0 (🇧🇯) flag for Benin +1F1E7 1F1F1 ; emoji ; L2 ; none ; x # V6.0 (🇧🇱) flag for St. Barthélemy +1F1E7 1F1F2 ; emoji ; L2 ; none ; x # V6.0 (🇧🇲) flag for Bermuda +1F1E7 1F1F3 ; emoji ; L2 ; none ; x # V6.0 (🇧🇳) flag for Brunei +1F1E7 1F1F4 ; emoji ; L2 ; none ; x # V6.0 (🇧🇴) flag for Bolivia +1F1E7 1F1F6 ; emoji ; L2 ; none ; x # V6.0 (🇧🇶) flag for Caribbean Netherlands +1F1E7 1F1F7 ; emoji ; L2 ; none ; x # V6.0 (🇧🇷) flag for Brazil +1F1E7 1F1F8 ; emoji ; L2 ; none ; x # V6.0 (🇧🇸) flag for Bahamas +1F1E7 1F1F9 ; emoji ; L2 ; none ; x # V6.0 (🇧🇹) flag for Bhutan +1F1E7 1F1FB ; emoji ; L2 ; none ; x # V6.0 (🇧🇻) flag for Bouvet Island +1F1E7 1F1FC ; emoji ; L2 ; none ; x # V6.0 (🇧🇼) flag for Botswana +1F1E7 1F1FE ; emoji ; L2 ; none ; x # V6.0 (🇧🇾) flag for Belarus +1F1E7 1F1FF ; emoji ; L2 ; none ; x # V6.0 (🇧🇿) flag for Belize +1F1E8 1F1E6 ; emoji ; L2 ; none ; x # V6.0 (🇨🇦) flag for Canada +1F1E8 1F1E8 ; emoji ; L2 ; none ; x # V6.0 (🇨🇨) flag for Cocos Islands +1F1E8 1F1E9 ; emoji ; L2 ; none ; x # V6.0 (🇨🇩) flag for Congo - Kinshasa +1F1E8 1F1EB ; emoji ; L2 ; none ; x # V6.0 (🇨🇫) flag for Central African Republic +1F1E8 1F1EC ; emoji ; L2 ; none ; x # V6.0 (🇨🇬) flag for Congo - Brazzaville +1F1E8 1F1ED ; emoji ; L2 ; none ; x # V6.0 (🇨🇭) flag for Switzerland +1F1E8 1F1EE ; emoji ; L2 ; none ; x # V6.0 (🇨🇮) flag for Côte d’Ivoire +1F1E8 1F1F0 ; emoji ; L2 ; none ; x # V6.0 (🇨🇰) flag for Cook Islands +1F1E8 1F1F1 ; emoji ; L2 ; none ; x # V6.0 (🇨🇱) flag for Chile +1F1E8 1F1F2 ; emoji ; L2 ; none ; x # V6.0 (🇨🇲) flag for Cameroon +1F1E8 1F1F3 ; emoji ; L1 ; none ; j # V6.0 (🇨🇳) flag for China +1F1E8 1F1F4 ; emoji ; L2 ; none ; x # V6.0 (🇨🇴) flag for Colombia +1F1E8 1F1F5 ; emoji ; L2 ; none ; x # V6.0 (🇨🇵) flag for Clipperton Island +1F1E8 1F1F7 ; emoji ; L2 ; none ; x # V6.0 (🇨🇷) flag for Costa Rica +1F1E8 1F1FA ; emoji ; L2 ; none ; x # V6.0 (🇨🇺) flag for Cuba +1F1E8 1F1FB ; emoji ; L2 ; none ; x # V6.0 (🇨🇻) flag for Cape Verde +1F1E8 1F1FC ; emoji ; L2 ; none ; x # V6.0 (🇨🇼) flag for Curaçao +1F1E8 1F1FD ; emoji ; L2 ; none ; x # V6.0 (🇨🇽) flag for Christmas Island +1F1E8 1F1FE ; emoji ; L2 ; none ; x # V6.0 (🇨🇾) flag for Cyprus +1F1E8 1F1FF ; emoji ; L2 ; none ; x # V6.0 (🇨🇿) flag for Czech Republic +1F1E9 1F1EA ; emoji ; L1 ; none ; j # V6.0 (🇩🇪) flag for Germany +1F1E9 1F1EC ; emoji ; L2 ; none ; x # V6.0 (🇩🇬) flag for Diego Garcia +1F1E9 1F1EF ; emoji ; L2 ; none ; x # V6.0 (🇩🇯) flag for Djibouti +1F1E9 1F1F0 ; emoji ; L2 ; none ; x # V6.0 (🇩🇰) flag for Denmark +1F1E9 1F1F2 ; emoji ; L2 ; none ; x # V6.0 (🇩🇲) flag for Dominica +1F1E9 1F1F4 ; emoji ; L2 ; none ; x # V6.0 (🇩🇴) flag for Dominican Republic +1F1E9 1F1FF ; emoji ; L2 ; none ; x # V6.0 (🇩🇿) flag for Algeria +1F1EA 1F1E6 ; emoji ; L2 ; none ; x # V6.0 (🇪🇦) flag for Ceuta & Melilla +1F1EA 1F1E8 ; emoji ; L2 ; none ; x # V6.0 (🇪🇨) flag for Ecuador +1F1EA 1F1EA ; emoji ; L2 ; none ; x # V6.0 (🇪🇪) flag for Estonia +1F1EA 1F1EC ; emoji ; L2 ; none ; x # V6.0 (🇪🇬) flag for Egypt +1F1EA 1F1ED ; emoji ; L2 ; none ; x # V6.0 (🇪🇭) flag for Western Sahara +1F1EA 1F1F7 ; emoji ; L2 ; none ; x # V6.0 (🇪🇷) flag for Eritrea +1F1EA 1F1F8 ; emoji ; L1 ; none ; j # V6.0 (🇪🇸) flag for Spain +1F1EA 1F1F9 ; emoji ; L2 ; none ; x # V6.0 (🇪🇹) flag for Ethiopia +1F1EA 1F1FA ; emoji ; L2 ; none ; x # V6.0 (🇪🇺) flag for European Union +1F1EB 1F1EE ; emoji ; L2 ; none ; x # V6.0 (🇫🇮) flag for Finland +1F1EB 1F1EF ; emoji ; L2 ; none ; x # V6.0 (🇫🇯) flag for Fiji +1F1EB 1F1F0 ; emoji ; L2 ; none ; x # V6.0 (🇫🇰) flag for Falkland Islands +1F1EB 1F1F2 ; emoji ; L2 ; none ; x # V6.0 (🇫🇲) flag for Micronesia +1F1EB 1F1F4 ; emoji ; L2 ; none ; x # V6.0 (🇫🇴) flag for Faroe Islands +1F1EB 1F1F7 ; emoji ; L1 ; none ; j # V6.0 (🇫🇷) flag for France +1F1EC 1F1E6 ; emoji ; L2 ; none ; x # V6.0 (🇬🇦) flag for Gabon +1F1EC 1F1E7 ; emoji ; L1 ; none ; j # V6.0 (🇬🇧) flag for United Kingdom +1F1EC 1F1E9 ; emoji ; L2 ; none ; x # V6.0 (🇬🇩) flag for Grenada +1F1EC 1F1EA ; emoji ; L2 ; none ; x # V6.0 (🇬🇪) flag for Georgia +1F1EC 1F1EB ; emoji ; L2 ; none ; x # V6.0 (🇬🇫) flag for French Guiana +1F1EC 1F1EC ; emoji ; L2 ; none ; x # V6.0 (🇬🇬) flag for Guernsey +1F1EC 1F1ED ; emoji ; L2 ; none ; x # V6.0 (🇬🇭) flag for Ghana +1F1EC 1F1EE ; emoji ; L2 ; none ; x # V6.0 (🇬🇮) flag for Gibraltar +1F1EC 1F1F1 ; emoji ; L2 ; none ; x # V6.0 (🇬🇱) flag for Greenland +1F1EC 1F1F2 ; emoji ; L2 ; none ; x # V6.0 (🇬🇲) flag for Gambia +1F1EC 1F1F3 ; emoji ; L2 ; none ; x # V6.0 (🇬🇳) flag for Guinea +1F1EC 1F1F5 ; emoji ; L2 ; none ; x # V6.0 (🇬🇵) flag for Guadeloupe +1F1EC 1F1F6 ; emoji ; L2 ; none ; x # V6.0 (🇬🇶) flag for Equatorial Guinea +1F1EC 1F1F7 ; emoji ; L2 ; none ; x # V6.0 (🇬🇷) flag for Greece +1F1EC 1F1F8 ; emoji ; L2 ; none ; x # V6.0 (🇬🇸) flag for South Georgia & South Sandwich Islands +1F1EC 1F1F9 ; emoji ; L2 ; none ; x # V6.0 (🇬🇹) flag for Guatemala +1F1EC 1F1FA ; emoji ; L2 ; none ; x # V6.0 (🇬🇺) flag for Guam +1F1EC 1F1FC ; emoji ; L2 ; none ; x # V6.0 (🇬🇼) flag for Guinea-Bissau +1F1EC 1F1FE ; emoji ; L2 ; none ; x # V6.0 (🇬🇾) flag for Guyana +1F1ED 1F1F0 ; emoji ; L2 ; none ; x # V6.0 (🇭🇰) flag for Hong Kong +1F1ED 1F1F2 ; emoji ; L2 ; none ; x # V6.0 (🇭🇲) flag for Heard & McDonald Islands +1F1ED 1F1F3 ; emoji ; L2 ; none ; x # V6.0 (🇭🇳) flag for Honduras +1F1ED 1F1F7 ; emoji ; L2 ; none ; x # V6.0 (🇭🇷) flag for Croatia +1F1ED 1F1F9 ; emoji ; L2 ; none ; x # V6.0 (🇭🇹) flag for Haiti +1F1ED 1F1FA ; emoji ; L2 ; none ; x # V6.0 (🇭🇺) flag for Hungary +1F1EE 1F1E8 ; emoji ; L2 ; none ; x # V6.0 (🇮🇨) flag for Canary Islands +1F1EE 1F1E9 ; emoji ; L2 ; none ; x # V6.0 (🇮🇩) flag for Indonesia +1F1EE 1F1EA ; emoji ; L2 ; none ; x # V6.0 (🇮🇪) flag for Ireland +1F1EE 1F1F1 ; emoji ; L2 ; none ; x # V6.0 (🇮🇱) flag for Israel +1F1EE 1F1F2 ; emoji ; L2 ; none ; x # V6.0 (🇮🇲) flag for Isle of Man +1F1EE 1F1F3 ; emoji ; L2 ; none ; x # V6.0 (🇮🇳) flag for India +1F1EE 1F1F4 ; emoji ; L2 ; none ; x # V6.0 (🇮🇴) flag for British Indian Ocean Territory +1F1EE 1F1F6 ; emoji ; L2 ; none ; x # V6.0 (🇮🇶) flag for Iraq +1F1EE 1F1F7 ; emoji ; L2 ; none ; x # V6.0 (🇮🇷) flag for Iran +1F1EE 1F1F8 ; emoji ; L2 ; none ; x # V6.0 (🇮🇸) flag for Iceland +1F1EE 1F1F9 ; emoji ; L1 ; none ; j # V6.0 (🇮🇹) flag for Italy +1F1EF 1F1EA ; emoji ; L2 ; none ; x # V6.0 (🇯🇪) flag for Jersey +1F1EF 1F1F2 ; emoji ; L2 ; none ; x # V6.0 (🇯🇲) flag for Jamaica +1F1EF 1F1F4 ; emoji ; L2 ; none ; x # V6.0 (🇯🇴) flag for Jordan +1F1EF 1F1F5 ; emoji ; L1 ; none ; j # V6.0 (🇯🇵) flag for Japan +1F1F0 1F1EA ; emoji ; L2 ; none ; x # V6.0 (🇰🇪) flag for Kenya +1F1F0 1F1EC ; emoji ; L2 ; none ; x # V6.0 (🇰🇬) flag for Kyrgyzstan +1F1F0 1F1ED ; emoji ; L2 ; none ; x # V6.0 (🇰🇭) flag for Cambodia +1F1F0 1F1EE ; emoji ; L2 ; none ; x # V6.0 (🇰🇮) flag for Kiribati +1F1F0 1F1F2 ; emoji ; L2 ; none ; x # V6.0 (🇰🇲) flag for Comoros +1F1F0 1F1F3 ; emoji ; L2 ; none ; x # V6.0 (🇰🇳) flag for St. Kitts & Nevis +1F1F0 1F1F5 ; emoji ; L2 ; none ; x # V6.0 (🇰🇵) flag for North Korea +1F1F0 1F1F7 ; emoji ; L1 ; none ; j # V6.0 (🇰🇷) flag for South Korea +1F1F0 1F1FC ; emoji ; L2 ; none ; x # V6.0 (🇰🇼) flag for Kuwait +1F1F0 1F1FE ; emoji ; L2 ; none ; x # V6.0 (🇰🇾) flag for Cayman Islands +1F1F0 1F1FF ; emoji ; L2 ; none ; x # V6.0 (🇰🇿) flag for Kazakhstan +1F1F1 1F1E6 ; emoji ; L2 ; none ; x # V6.0 (🇱🇦) flag for Laos +1F1F1 1F1E7 ; emoji ; L2 ; none ; x # V6.0 (🇱🇧) flag for Lebanon +1F1F1 1F1E8 ; emoji ; L2 ; none ; x # V6.0 (🇱🇨) flag for St. Lucia +1F1F1 1F1EE ; emoji ; L2 ; none ; x # V6.0 (🇱🇮) flag for Liechtenstein +1F1F1 1F1F0 ; emoji ; L2 ; none ; x # V6.0 (🇱🇰) flag for Sri Lanka +1F1F1 1F1F7 ; emoji ; L2 ; none ; x # V6.0 (🇱🇷) flag for Liberia +1F1F1 1F1F8 ; emoji ; L2 ; none ; x # V6.0 (🇱🇸) flag for Lesotho +1F1F1 1F1F9 ; emoji ; L2 ; none ; x # V6.0 (🇱🇹) flag for Lithuania +1F1F1 1F1FA ; emoji ; L2 ; none ; x # V6.0 (🇱🇺) flag for Luxembourg +1F1F1 1F1FB ; emoji ; L2 ; none ; x # V6.0 (🇱🇻) flag for Latvia +1F1F1 1F1FE ; emoji ; L2 ; none ; x # V6.0 (🇱🇾) flag for Libya +1F1F2 1F1E6 ; emoji ; L2 ; none ; x # V6.0 (🇲🇦) flag for Morocco +1F1F2 1F1E8 ; emoji ; L2 ; none ; x # V6.0 (🇲🇨) flag for Monaco +1F1F2 1F1E9 ; emoji ; L2 ; none ; x # V6.0 (🇲🇩) flag for Moldova +1F1F2 1F1EA ; emoji ; L2 ; none ; x # V6.0 (🇲🇪) flag for Montenegro +1F1F2 1F1EB ; emoji ; L2 ; none ; x # V6.0 (🇲🇫) flag for St. Martin +1F1F2 1F1EC ; emoji ; L2 ; none ; x # V6.0 (🇲🇬) flag for Madagascar +1F1F2 1F1ED ; emoji ; L2 ; none ; x # V6.0 (🇲🇭) flag for Marshall Islands +1F1F2 1F1F0 ; emoji ; L2 ; none ; x # V6.0 (🇲🇰) flag for Macedonia +1F1F2 1F1F1 ; emoji ; L2 ; none ; x # V6.0 (🇲🇱) flag for Mali +1F1F2 1F1F2 ; emoji ; L2 ; none ; x # V6.0 (🇲🇲) flag for Myanmar +1F1F2 1F1F3 ; emoji ; L2 ; none ; x # V6.0 (🇲🇳) flag for Mongolia +1F1F2 1F1F4 ; emoji ; L2 ; none ; x # V6.0 (🇲🇴) flag for Macau +1F1F2 1F1F5 ; emoji ; L2 ; none ; x # V6.0 (🇲🇵) flag for Northern Mariana Islands +1F1F2 1F1F6 ; emoji ; L2 ; none ; x # V6.0 (🇲🇶) flag for Martinique +1F1F2 1F1F7 ; emoji ; L2 ; none ; x # V6.0 (🇲🇷) flag for Mauritania +1F1F2 1F1F8 ; emoji ; L2 ; none ; x # V6.0 (🇲🇸) flag for Montserrat +1F1F2 1F1F9 ; emoji ; L2 ; none ; x # V6.0 (🇲🇹) flag for Malta +1F1F2 1F1FA ; emoji ; L2 ; none ; x # V6.0 (🇲🇺) flag for Mauritius +1F1F2 1F1FB ; emoji ; L2 ; none ; x # V6.0 (🇲🇻) flag for Maldives +1F1F2 1F1FC ; emoji ; L2 ; none ; x # V6.0 (🇲🇼) flag for Malawi +1F1F2 1F1FD ; emoji ; L2 ; none ; x # V6.0 (🇲🇽) flag for Mexico +1F1F2 1F1FE ; emoji ; L2 ; none ; x # V6.0 (🇲🇾) flag for Malaysia +1F1F2 1F1FF ; emoji ; L2 ; none ; x # V6.0 (🇲🇿) flag for Mozambique +1F1F3 1F1E6 ; emoji ; L2 ; none ; x # V6.0 (🇳🇦) flag for Namibia +1F1F3 1F1E8 ; emoji ; L2 ; none ; x # V6.0 (🇳🇨) flag for New Caledonia +1F1F3 1F1EA ; emoji ; L2 ; none ; x # V6.0 (🇳🇪) flag for Niger +1F1F3 1F1EB ; emoji ; L2 ; none ; x # V6.0 (🇳🇫) flag for Norfolk Island +1F1F3 1F1EC ; emoji ; L2 ; none ; x # V6.0 (🇳🇬) flag for Nigeria +1F1F3 1F1EE ; emoji ; L2 ; none ; x # V6.0 (🇳🇮) flag for Nicaragua +1F1F3 1F1F1 ; emoji ; L2 ; none ; x # V6.0 (🇳🇱) flag for Netherlands +1F1F3 1F1F4 ; emoji ; L2 ; none ; x # V6.0 (🇳🇴) flag for Norway +1F1F3 1F1F5 ; emoji ; L2 ; none ; x # V6.0 (🇳🇵) flag for Nepal +1F1F3 1F1F7 ; emoji ; L2 ; none ; x # V6.0 (🇳🇷) flag for Nauru +1F1F3 1F1FA ; emoji ; L2 ; none ; x # V6.0 (🇳🇺) flag for Niue +1F1F3 1F1FF ; emoji ; L2 ; none ; x # V6.0 (🇳🇿) flag for New Zealand +1F1F4 1F1F2 ; emoji ; L2 ; none ; x # V6.0 (🇴🇲) flag for Oman +1F1F5 1F1E6 ; emoji ; L2 ; none ; x # V6.0 (🇵🇦) flag for Panama +1F1F5 1F1EA ; emoji ; L2 ; none ; x # V6.0 (🇵🇪) flag for Peru +1F1F5 1F1EB ; emoji ; L2 ; none ; x # V6.0 (🇵🇫) flag for French Polynesia +1F1F5 1F1EC ; emoji ; L2 ; none ; x # V6.0 (🇵🇬) flag for Papua New Guinea +1F1F5 1F1ED ; emoji ; L2 ; none ; x # V6.0 (🇵🇭) flag for Philippines +1F1F5 1F1F0 ; emoji ; L2 ; none ; x # V6.0 (🇵🇰) flag for Pakistan +1F1F5 1F1F1 ; emoji ; L2 ; none ; x # V6.0 (🇵🇱) flag for Poland +1F1F5 1F1F2 ; emoji ; L2 ; none ; x # V6.0 (🇵🇲) flag for St. Pierre & Miquelon +1F1F5 1F1F3 ; emoji ; L2 ; none ; x # V6.0 (🇵🇳) flag for Pitcairn Islands +1F1F5 1F1F7 ; emoji ; L2 ; none ; x # V6.0 (🇵🇷) flag for Puerto Rico +1F1F5 1F1F8 ; emoji ; L2 ; none ; x # V6.0 (🇵🇸) flag for Palestinian Territories +1F1F5 1F1F9 ; emoji ; L2 ; none ; x # V6.0 (🇵🇹) flag for Portugal +1F1F5 1F1FC ; emoji ; L2 ; none ; x # V6.0 (🇵🇼) flag for Palau +1F1F5 1F1FE ; emoji ; L2 ; none ; x # V6.0 (🇵🇾) flag for Paraguay +1F1F6 1F1E6 ; emoji ; L2 ; none ; x # V6.0 (🇶🇦) flag for Qatar +1F1F7 1F1EA ; emoji ; L2 ; none ; x # V6.0 (🇷🇪) flag for Réunion +1F1F7 1F1F4 ; emoji ; L2 ; none ; x # V6.0 (🇷🇴) flag for Romania +1F1F7 1F1F8 ; emoji ; L2 ; none ; x # V6.0 (🇷🇸) flag for Serbia +1F1F7 1F1FA ; emoji ; L1 ; none ; j # V6.0 (🇷🇺) flag for Russia +1F1F7 1F1FC ; emoji ; L2 ; none ; x # V6.0 (🇷🇼) flag for Rwanda +1F1F8 1F1E6 ; emoji ; L2 ; none ; x # V6.0 (🇸🇦) flag for Saudi Arabia +1F1F8 1F1E7 ; emoji ; L2 ; none ; x # V6.0 (🇸🇧) flag for Solomon Islands +1F1F8 1F1E8 ; emoji ; L2 ; none ; x # V6.0 (🇸🇨) flag for Seychelles +1F1F8 1F1E9 ; emoji ; L2 ; none ; x # V6.0 (🇸🇩) flag for Sudan +1F1F8 1F1EA ; emoji ; L2 ; none ; x # V6.0 (🇸🇪) flag for Sweden +1F1F8 1F1EC ; emoji ; L2 ; none ; x # V6.0 (🇸🇬) flag for Singapore +1F1F8 1F1ED ; emoji ; L2 ; none ; x # V6.0 (🇸🇭) flag for St. Helena +1F1F8 1F1EE ; emoji ; L2 ; none ; x # V6.0 (🇸🇮) flag for Slovenia +1F1F8 1F1EF ; emoji ; L2 ; none ; x # V6.0 (🇸🇯) flag for Svalbard & Jan Mayen +1F1F8 1F1F0 ; emoji ; L2 ; none ; x # V6.0 (🇸🇰) flag for Slovakia +1F1F8 1F1F1 ; emoji ; L2 ; none ; x # V6.0 (🇸🇱) flag for Sierra Leone +1F1F8 1F1F2 ; emoji ; L2 ; none ; x # V6.0 (🇸🇲) flag for San Marino +1F1F8 1F1F3 ; emoji ; L2 ; none ; x # V6.0 (🇸🇳) flag for Senegal +1F1F8 1F1F4 ; emoji ; L2 ; none ; x # V6.0 (🇸🇴) flag for Somalia +1F1F8 1F1F7 ; emoji ; L2 ; none ; x # V6.0 (🇸🇷) flag for Suriname +1F1F8 1F1F8 ; emoji ; L2 ; none ; x # V6.0 (🇸🇸) flag for South Sudan +1F1F8 1F1F9 ; emoji ; L2 ; none ; x # V6.0 (🇸🇹) flag for São Tomé & Príncipe +1F1F8 1F1FB ; emoji ; L2 ; none ; x # V6.0 (🇸🇻) flag for El Salvador +1F1F8 1F1FD ; emoji ; L2 ; none ; x # V6.0 (🇸🇽) flag for Sint Maarten +1F1F8 1F1FE ; emoji ; L2 ; none ; x # V6.0 (🇸🇾) flag for Syria +1F1F8 1F1FF ; emoji ; L2 ; none ; x # V6.0 (🇸🇿) flag for Swaziland +1F1F9 1F1E6 ; emoji ; L2 ; none ; x # V6.0 (🇹🇦) flag for Tristan da Cunha +1F1F9 1F1E8 ; emoji ; L2 ; none ; x # V6.0 (🇹🇨) flag for Turks & Caicos Islands +1F1F9 1F1E9 ; emoji ; L2 ; none ; x # V6.0 (🇹🇩) flag for Chad +1F1F9 1F1EB ; emoji ; L2 ; none ; x # V6.0 (🇹🇫) flag for French Southern Territories +1F1F9 1F1EC ; emoji ; L2 ; none ; x # V6.0 (🇹🇬) flag for Togo +1F1F9 1F1ED ; emoji ; L2 ; none ; x # V6.0 (🇹🇭) flag for Thailand +1F1F9 1F1EF ; emoji ; L2 ; none ; x # V6.0 (🇹🇯) flag for Tajikistan +1F1F9 1F1F0 ; emoji ; L2 ; none ; x # V6.0 (🇹🇰) flag for Tokelau +1F1F9 1F1F1 ; emoji ; L2 ; none ; x # V6.0 (🇹🇱) flag for Timor-Leste +1F1F9 1F1F2 ; emoji ; L2 ; none ; x # V6.0 (🇹🇲) flag for Turkmenistan +1F1F9 1F1F3 ; emoji ; L2 ; none ; x # V6.0 (🇹🇳) flag for Tunisia +1F1F9 1F1F4 ; emoji ; L2 ; none ; x # V6.0 (🇹🇴) flag for Tonga +1F1F9 1F1F7 ; emoji ; L2 ; none ; x # V6.0 (🇹🇷) flag for Turkey +1F1F9 1F1F9 ; emoji ; L2 ; none ; x # V6.0 (🇹🇹) flag for Trinidad & Tobago +1F1F9 1F1FB ; emoji ; L2 ; none ; x # V6.0 (🇹🇻) flag for Tuvalu +1F1F9 1F1FC ; emoji ; L2 ; none ; x # V6.0 (🇹🇼) flag for Taiwan +1F1F9 1F1FF ; emoji ; L2 ; none ; x # V6.0 (🇹🇿) flag for Tanzania +1F1FA 1F1E6 ; emoji ; L2 ; none ; x # V6.0 (🇺🇦) flag for Ukraine +1F1FA 1F1EC ; emoji ; L2 ; none ; x # V6.0 (🇺🇬) flag for Uganda +1F1FA 1F1F2 ; emoji ; L2 ; none ; x # V6.0 (🇺🇲) flag for U.S. Outlying Islands +1F1FA 1F1F8 ; emoji ; L1 ; none ; j # V6.0 (🇺🇸) flag for United States +1F1FA 1F1FE ; emoji ; L2 ; none ; x # V6.0 (🇺🇾) flag for Uruguay +1F1FA 1F1FF ; emoji ; L2 ; none ; x # V6.0 (🇺🇿) flag for Uzbekistan +1F1FB 1F1E6 ; emoji ; L2 ; none ; x # V6.0 (🇻🇦) flag for Vatican City +1F1FB 1F1E8 ; emoji ; L2 ; none ; x # V6.0 (🇻🇨) flag for St. Vincent & Grenadines +1F1FB 1F1EA ; emoji ; L2 ; none ; x # V6.0 (🇻🇪) flag for Venezuela +1F1FB 1F1EC ; emoji ; L2 ; none ; x # V6.0 (🇻🇬) flag for British Virgin Islands +1F1FB 1F1EE ; emoji ; L2 ; none ; x # V6.0 (🇻🇮) flag for U.S. Virgin Islands +1F1FB 1F1F3 ; emoji ; L2 ; none ; x # V6.0 (🇻🇳) flag for Vietnam +1F1FB 1F1FA ; emoji ; L2 ; none ; x # V6.0 (🇻🇺) flag for Vanuatu +1F1FC 1F1EB ; emoji ; L2 ; none ; x # V6.0 (🇼🇫) flag for Wallis & Futuna +1F1FC 1F1F8 ; emoji ; L2 ; none ; x # V6.0 (🇼🇸) flag for Samoa +1F1FD 1F1F0 ; emoji ; L2 ; none ; x # V6.0 (🇽🇰) flag for Kosovo +1F1FE 1F1EA ; emoji ; L2 ; none ; x # V6.0 (🇾🇪) flag for Yemen +1F1FE 1F1F9 ; emoji ; L2 ; none ; x # V6.0 (🇾🇹) flag for Mayotte +1F1FF 1F1E6 ; emoji ; L2 ; none ; x # V6.0 (🇿🇦) flag for South Africa +1F1FF 1F1F2 ; emoji ; L2 ; none ; x # V6.0 (🇿🇲) flag for Zambia +1F1FF 1F1FC ; emoji ; L2 ; none ; x # V6.0 (🇿🇼) flag for Zimbabwe diff --git a/oh-my-zsh/.oh-my-zsh/plugins/emoji/emoji.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/emoji/emoji.plugin.zsh new file mode 100644 index 0000000..7876f1c --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/emoji/emoji.plugin.zsh @@ -0,0 +1,288 @@ +# emoji plugin +# +# Makes emoji support available within ZSH +# +# See the README for documentation. + +_omz_emoji_plugin_dir="${0:h}" + +() { + +local LC_ALL=en_US.UTF-8 + +typeset -gAH emoji_groups +typeset -gAH emoji_con +typeset -gAH emoji2 +typeset -gAH emoji_skintone + +source "$_omz_emoji_plugin_dir/emoji-char-definitions.zsh" +unset _omz_emoji_plugin_dir + +# These additional emoji are not in the definition file, but are useful in conjunction with it + +# This is a combinin character that can be placed after any other character to surround +# it in a "keycap" symbol. +# The digits 0-9 are already in the emoji table as keycap_digit_, keycap_ten, etc. +# It's unclear whether this should be in the $emoji array, because those characters are all ones +# which can be displayed on their own. +#emoji[combining_enclosing_keycap]="\U20E3" + +emoji[regional_indicator_symbol_letter_d_regional_indicator_symbol_letter_e]=$'\xF0\x9F\x87\xA9\xF0\x9F\x87\xAA' +emoji[regional_indicator_symbol_letter_g_regional_indicator_symbol_letter_b]=$'\xF0\x9F\x87\xAC\xF0\x9F\x87\xA7' +emoji[regional_indicator_symbol_letter_c_regional_indicator_symbol_letter_n]=$'\xF0\x9F\x87\xA8\xF0\x9F\x87\xB3' +emoji[regional_indicator_symbol_letter_j_regional_indicator_symbol_letter_p]=$'\xF0\x9F\x87\xAF\xF0\x9F\x87\xB5' +emoji[regional_indicator_symbol_letter_k_regional_indicator_symbol_letter_r]=$'\xF0\x9F\x87\xB0\xF0\x9F\x87\xB7' +emoji[regional_indicator_symbol_letter_f_regional_indicator_symbol_letter_r]=$'\xF0\x9F\x87\xAB\xF0\x9F\x87\xB7' +emoji[regional_indicator_symbol_letter_e_regional_indicator_symbol_letter_s]=$'\xF0\x9F\x87\xAA\xF0\x9F\x87\xB8' +emoji[regional_indicator_symbol_letter_i_regional_indicator_symbol_letter_t]=$'\xF0\x9F\x87\xAE\xF0\x9F\x87\xB9' +emoji[regional_indicator_symbol_letter_u_regional_indicator_symbol_letter_s]=$'\xF0\x9F\x87\xBA\xF0\x9F\x87\xB8' +emoji[regional_indicator_symbol_letter_r_regional_indicator_symbol_letter_u]=$'\xF0\x9F\x87\xB7\xF0\x9F\x87\xBA' + +# Nonstandard alias names +emoji[vulcan_salute]=$'\U1F596' + + +# Emoji combining and auxiliary characters + +# "Variation Selectors" for controlling text vs emoji style presentation +# These apply to the immediately preceding character +emoji2[text_style]=$'\UFE0E' +emoji2[emoji_style]=$'\UFE0F' +# Joiner that indicates a single combined-form glyph (ligature) should be used +emoji2[zero_width_joiner]=$'\U200D' +# Skin tone modifiers +emoji2[emoji_modifier_fitzpatrick_type_1_2]=$'\U1F3FB' +emoji2[emoji_modifier_fitzpatrick_type_3]=$'\U1F3FC' +emoji2[emoji_modifier_fitzpatrick_type_4]=$'\U1F3FD' +emoji2[emoji_modifier_fitzpatrick_type_5]=$'\U1F3FE' +emoji2[emoji_modifier_fitzpatrick_type_6]=$'\U1F3FF' +# Various other combining characters. (Incomplete list; I selected ones that sound useful) +emoji2[combining_enclosing_circle]=$'\U20DD' +emoji2[combining_enclosing_square]=$'\U20DE' +emoji2[combining_enclosing_diamond]=$'\U20DF' +emoji2[combining_enclosing_circle_backslash]=$'\U20E0' +emoji2[combining_enclosing_screen]=$'\U20E2' +emoji2[combining_enclosing_keycap]=$'\U20E3' +emoji2[combining_enclosing_upward_pointing_triangle]=$'\U20E4' + +# Easier access to skin tone modifiers +emoji_skintone[1_2]=$'\U1F3FB' +emoji_skintone[3]=$'\U1F3FC' +emoji_skintone[4]=$'\U1F3FD' +emoji_skintone[5]=$'\U1F3FE' +emoji_skintone[6]=$'\U1F3FF' + +# Emoji groups +# These are stored in a single associative array, $emoji_groups, to avoid cluttering up the global +# namespace, and to allow adding additional group definitions at run time. +# The keys are the group names, and the values are whitespace-separated lists of emoji character names. + +emoji_groups[fruits]=" + tomato + aubergine + grapes + melon + watermelon + tangerine + banana + pineapple + red_apple + green_apple + peach + cherries + strawberry + lemon + pear +" + +emoji_groups[vehicles]=" + airplane + rocket + railway_car + high_speed_train + high_speed_train_with_bullet_nose + bus + ambulance + fire_engine + police_car + taxi + automobile + recreational_vehicle + delivery_truck + ship + speedboat + bicycle + helicopter + steam_locomotive + train + light_rail + tram + oncoming_bus + trolleybus + minibus + oncoming_police_car + oncoming_taxi + oncoming_automobile + articulated_lorry + tractor + monorail + mountain_railway + suspension_railway + mountain_cableway + aerial_tramway + rowboat + bicyclist + mountain_bicyclist + sailboat +" + +emoji_groups[animals]=" + snail + snake + horse + sheep + monkey + chicken + boar + elephant + octopus + spiral_shell + bug + ant + honeybee + lady_beetle + fish + tropical_fish + blowfish + turtle + hatching_chick + baby_chick + front_facing_baby_chick + bird + penguin + koala + poodle + bactrian_camel + dolphin + mouse_face + cow_face + tiger_face + rabbit_face + cat_face + dragon_face + spouting_whale + horse_face + monkey_face + dog_face + pig_face + frog_face + hamster_face + wolf_face + bear_face + panda_face + rat + mouse + ox + water_buffalo + cow + tiger + leopard + rabbit + cat + dragon + crocodile + whale + ram + goat + rooster + dog + pig + dromedary_camel +" + +emoji_groups[faces]=" + grinning_face_with_smiling_eyes + face_with_tears_of_joy + smiling_face_with_open_mouth + smiling_face_with_open_mouth_and_smiling_eyes + smiling_face_with_open_mouth_and_cold_sweat + smiling_face_with_open_mouth_and_tightly_closed_eyes + winking_face + smiling_face_with_smiling_eyes + face_savouring_delicious_food + relieved_face + smiling_face_with_heart_shaped_eyes + smirking_face + unamused_face + face_with_cold_sweat + pensive_face + confounded_face + face_throwing_a_kiss + kissing_face_with_closed_eyes + face_with_stuck_out_tongue_and_winking_eye + face_with_stuck_out_tongue_and_tightly_closed_eyes + disappointed_face + angry_face + pouting_face + crying_face + persevering_face + face_with_look_of_triumph + disappointed_but_relieved_face + fearful_face + weary_face + sleepy_face + tired_face + loudly_crying_face + face_with_open_mouth_and_cold_sweat + face_screaming_in_fear + astonished_face + flushed_face + dizzy_face + face_with_medical_mask +" + +} + +# Prints a random emoji character +# +# random_emoji [group] +# +function random_emoji() { + local group=$1 + local names + if [[ -z "$group" || "$group" == "all" ]]; then + names=(${(k)emoji}) + else + names=(${=emoji_groups[$group]}) + fi + local list_size=${#names} + [[ $list_size -eq 0 ]] && return 1 + local random_index=$(( ( RANDOM % $list_size ) + 1 )) + local name=${names[$random_index]} + echo ${emoji[$name]} +} + +# Displays a listing of emoji with their names +# +# display_emoji [group] +# +function display_emoji() { + local group=$1 + local names + if [[ -z "$group" || "$group" == "all" ]]; then + names=(${(k)emoji}) + else + names=(${=emoji_groups[$group]}) + fi + # The extra spaces in output here are a hack for readability, since some + # terminals treat these emoji chars as single-width. + for i in $names; do + printf '%s ' "$emoji[$i]" + done + print + for i in $names; do + echo "${emoji[$i]} = $i" + done +} + + diff --git a/oh-my-zsh/.oh-my-zsh/plugins/emoji/update_emoji.pl b/oh-my-zsh/.oh-my-zsh/plugins/emoji/update_emoji.pl new file mode 100644 index 0000000..8034052 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/emoji/update_emoji.pl @@ -0,0 +1,113 @@ +#!/usr/bin/perl -w +# +# update_emoji.pl +# +# This script generates the emoji.plugin.zsh emoji definitions from the Unicode +# character data for the emoji characters. +# +# The data file can be found at https://unicode.org/Public/emoji/latest/emoji-data.txt +# as referenced in Unicode TR51 (https://www.unicode.org/reports/tr51/index.html). +# +# This is known to work with the data file from version 1.0. It may not work with later +# versions if the format changes. In particular, this reads line comments to get the +# emoji character name and unicode version. +# +# Country names have punctuation and other non-letter characters removed from their name, +# to avoid possible complications with having to escape the strings when using them as +# array subscripts. The definition file seems to use some combining characters like accents +# that get stripped during this process. + +use strict; +use warnings; +use 5.010; +use autodie; + +use Path::Class; +use File::Copy; + +# Parse definitions out of the data file and convert +sub process_emoji_data_file { + my ( $infile, $outfilename ) = @_; + my $file = file($infile); + my $outfile = file($outfilename); + my $outfilebase = $outfile->basename(); + my $tempfilename = "$outfilename.tmp"; + my $tempfile = file($tempfilename); + my $outfh = $tempfile->openw(); + $outfh->print(" +# $outfilebase - Emoji character definitions for oh-my-zsh emoji plugin +# +# This file is auto-generated by update_emoji.pl. Do not edit it manually. +# +# This contains the definition for: +# \$emoji - which maps character names to Unicode characters +# \$emoji_flags - maps country names to Unicode flag characters using region indicators + +# Main emoji +typeset -gAH emoji +# National flags +typeset -gAH emoji_flags +# Combining modifiers +typeset -gAH emoji_mod + +"); + + my $fh = $file->openr(); + my $line_num = 0; + while ( my $line = $fh->getline() ) { + $line_num++; + $_ = $line; + # Skip all-comment lines (from the header) and blank lines + # (But don't strip comments on normal lines; we need to parse those for + # the emoji names.) + next if /^\s*#/ or /^\s*$/; + + if (/^(\S.*?\S)\s*;\s*(\w+)\s*;\s*(\w+)\s*;\s*(\w+)\s*;\s*(\w.*?)\s*#\s*V(\S+)\s\(.*?\)\s*(\w.*\S)\s*$/) { + my ($code, $style, $level, $modifier_status, $sources, $version, $keycap_name) + = ($1, $2, $3, $4, $5, $6, $7); + #print "code=$code style=$style level=$level modifier_status=$modifier_status sources=$sources version=$version name=$keycap_name\n"; + my @code_points = split /\s+/, $code; + my @sources = split /\s+/, $sources; + + my $flag_country = ""; + if ( $keycap_name =~ /^flag for (\S.*?)\s*$/) { + $flag_country = $1; + } + + my $zsh_code = join '', map { "\\U$_" } @code_points; + # Convert keycap names to valid associative array names that do not require any + # quoting. Works fine for most stuff, but is clumsy for flags. + my $omz_name = lc($keycap_name); + $omz_name =~ s/[^A-Za-z0-9]/_/g; + my $zsh_flag_country = $flag_country; + $zsh_flag_country =~ s/[^\p{Letter}]/_/g; + if ($flag_country) { + $outfh->print("emoji_flags[$zsh_flag_country]=\$'$zsh_code'\n"); + } else { + $outfh->print("emoji[$omz_name]=\$'$zsh_code'\n"); + } + # Modifiers are included in both the main set and their separate map, + # because they have a standalone representation as a color swatch. + if ( $modifier_status eq "modifier" ) { + $outfh->print("emoji_mod[$omz_name]=\$'$zsh_code'\n"); + } + } else { + die "Failed parsing line $line_num: '$_'"; + } + } + $fh->close(); + $outfh->print("\n"); + $outfh->close(); + + move($tempfilename, $outfilename) + or die "Failed moving temp file to $outfilename: $!"; +} + +my $datafile = "emoji-data.txt"; +my $zsh_def_file = "emoji-char-definitions.zsh"; +process_emoji_data_file($datafile, $zsh_def_file); + +print "Updated definition file $zsh_def_file\n"; + + + diff --git a/oh-my-zsh/.oh-my-zsh/plugins/emotty/emotty.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/emotty/emotty.plugin.zsh new file mode 100644 index 0000000..b0d24c3 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/emotty/emotty.plugin.zsh @@ -0,0 +1,44 @@ +# ------------------------------------------------------------------------------ +# FILE: emotty.plugin.zsh +# DESCRIPTION: Return an emoji for the current $TTY number. +# AUTHOR: Alexis Hildebrandt (afh[at]surryhill.net) +# VERSION: 1.0.0 +# DEPENDS: emoji plugin +# +# There are different sets of emoji characters available, to choose a different +# set export emotty_set to the name of the set you would like to use, e.g.: +# % export emotty_set=nature +# ------------------------------------------------------------------------------ + +typeset -gAH _emotty_sets +local _emotty_plugin_dir="${0:h}" +source "$_emotty_plugin_dir/emotty_stellar_set.zsh" +source "$_emotty_plugin_dir/emotty_floral_set.zsh" +source "$_emotty_plugin_dir/emotty_zodiac_set.zsh" +source "$_emotty_plugin_dir/emotty_nature_set.zsh" +source "$_emotty_plugin_dir/emotty_emoji_set.zsh" +source "$_emotty_plugin_dir/emotty_love_set.zsh" +unset _emotty_plugin_dir + +emotty_default_set=emoji + +function emotty() { + # Use emotty set defined by user, fallback to default + local emotty=${_emotty_sets[${emotty_set:-$emotty_default_set}]} + # Parse $TTY number, normalizing it to an emotty set index + (( tty = (${TTY##/dev/tty} % ${#${=emotty}}) + 1 )) + local character_name=${${=emotty}[tty]} + echo "${emoji[${character_name}]}${emoji2[emoji_style]}" +} + +function display_emotty() { + local name=${1:-$emotty_set} + echo $name + for i in ${=_emotty_sets[$name]}; do + printf "${emoji[$i]}${emoji2[emoji_style]} " + done + print + for i in ${=_emotty_sets[$name]}; do + print "${emoji[$i]}${emoji2[emoji_style]} = $i" + done +} diff --git a/oh-my-zsh/.oh-my-zsh/plugins/emotty/emotty_emoji_set.zsh b/oh-my-zsh/.oh-my-zsh/plugins/emotty/emotty_emoji_set.zsh new file mode 100644 index 0000000..00e3171 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/emotty/emotty_emoji_set.zsh @@ -0,0 +1,24 @@ +#!/usr/bin/env zsh +# vim:ft=zsh ts=2 sw=2 sts=2 + +_emotty_sets[emoji]=" + crystal_ball + ghost + jack_o_lantern + see_no_evil_monkey + hear_no_evil_monkey + speak_no_evil_monkey + smiling_cat_face_with_open_mouth + extraterrestrial_alien + rocket + billiards + bomb + pill + japanese_symbol_for_beginner + direct_hit + cyclone + diamond_shape_with_a_dot_inside + sparkle + eight_spoked_asterisk + eight_pointed_black_star + " diff --git a/oh-my-zsh/.oh-my-zsh/plugins/emotty/emotty_floral_set.zsh b/oh-my-zsh/.oh-my-zsh/plugins/emotty/emotty_floral_set.zsh new file mode 100644 index 0000000..f761fea --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/emotty/emotty_floral_set.zsh @@ -0,0 +1,18 @@ +#!/usr/bin/env zsh +# vim:ft=zsh ts=2 sw=2 sts=2 + +_emotty_sets[floral]=" + hibiscus + cherry_blossom + blossom + sunflower + bouquet + tulip + rose + four_leaf_clover + seedling + herb + palm_tree + evergreen_tree + deciduous_tree + " diff --git a/oh-my-zsh/.oh-my-zsh/plugins/emotty/emotty_love_set.zsh b/oh-my-zsh/.oh-my-zsh/plugins/emotty/emotty_love_set.zsh new file mode 100644 index 0000000..8f19e69 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/emotty/emotty_love_set.zsh @@ -0,0 +1,34 @@ +#!/usr/bin/env zsh +# vim:ft=zsh ts=2 sw=2 sts=2 + +# Note: The heavy_black_heart emoji requires $emoji2[emoji_style] +# to be rendered as the emoji red heart. +_emotty_sets[love]=" + green_heart + blue_heart + purple_heart + yellow_heart + heavy_black_heart + broken_heart + heart_with_arrow + heart_with_ribbon + sparkling_heart + two_hearts + revolving_hearts + growing_heart + beating_heart + heart_decoration + couple_with_heart + kiss + man_and_woman_holding_hands + two_women_holding_hands + two_men_holding_hands + kiss_mark + smiling_face_with_heart_shaped_eyes + kissing_face + face_throwing_a_kiss + kissing_face_with_smiling_eyes + kissing_face_with_closed_eyes + smiling_cat_face_with_heart_shaped_eyes + kissing_cat_face_with_closed_eyes + " diff --git a/oh-my-zsh/.oh-my-zsh/plugins/emotty/emotty_nature_set.zsh b/oh-my-zsh/.oh-my-zsh/plugins/emotty/emotty_nature_set.zsh new file mode 100644 index 0000000..8dab4c1 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/emotty/emotty_nature_set.zsh @@ -0,0 +1,58 @@ +#!/usr/bin/env zsh +# vim:ft=zsh ts=2 sw=2 sts=2 + +_emotty_sets[nature]=" + mouse_face + hamster_face + rabbit_face + dog_face + cat_face + tiger_face + bear_face + monkey_face + koala + panda_face + chicken + baby_chick + bird + penguin + cow_face + pig_face + frog_face + boar + wolf_face + horse_face + snail + bug + ant + honeybee + lady_beetle + spouting_whale + dolphin + octopus + fish + tropical_fish + snake + turtle + lemon + tangerine + peach + mushroom + tomato + strawberry + red_apple + cherries + grapes + aubergine + watermelon + banana + pineapple + melon + pear + green_apple + ear_of_maize + sunflower + seedling + herb + four_leaf_clover + " diff --git a/oh-my-zsh/.oh-my-zsh/plugins/emotty/emotty_stellar_set.zsh b/oh-my-zsh/.oh-my-zsh/plugins/emotty/emotty_stellar_set.zsh new file mode 100644 index 0000000..8e7e610 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/emotty/emotty_stellar_set.zsh @@ -0,0 +1,25 @@ +#!/usr/bin/env zsh +# vim:ft=zsh ts=2 sw=2 sts=2 + +# NOTE: The following emoji show as $'character' in the title +# white_medium_star +# sparkles +# dizzy_symbol + +_emotty_sets[stellar]=" + full_moon_symbol + waning_gibbous_moon_symbol + waning_crescent_moon_symbol + last_quarter_moon_symbol + new_moon_symbol + new_moon_with_face + waxing_crescent_moon_symbol + first_quarter_moon_symbol + waxing_gibbous_moon_symbol + full_moon_with_face + sun_with_face + glowing_star + crescent_moon + first_quarter_moon_with_face + last_quarter_moon_with_face + " diff --git a/oh-my-zsh/.oh-my-zsh/plugins/emotty/emotty_zodiac_set.zsh b/oh-my-zsh/.oh-my-zsh/plugins/emotty/emotty_zodiac_set.zsh new file mode 100644 index 0000000..bde6e3d --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/emotty/emotty_zodiac_set.zsh @@ -0,0 +1,29 @@ +#!/usr/bin/env zsh +# vim:ft=zsh ts=2 sw=2 sts=2 + +_emotty_sets[zodiac]=" + aries + taurus + gemini + cancer + leo + virgo + libra + scorpius + sagittarius + capricorn + aquarius + pisces + rat + ox + tiger + rabbit + dragon + snake + horse + goat + monkey + rooster + dog + pig + " diff --git a/oh-my-zsh/.oh-my-zsh/plugins/encode64/README.md b/oh-my-zsh/.oh-my-zsh/plugins/encode64/README.md new file mode 100644 index 0000000..9850da8 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/encode64/README.md @@ -0,0 +1,69 @@ +# encode64 + +Alias plugin for encoding or decoding using `base64` command + +## Functions and Aliases + +| Function | Alias | Description | +| ---------- | ----- | ------------------------------ | +| `encode64` | `e64` | Encodes given data to base64 | +| `decode64` | `d64` | Decodes given data from base64 | + +## Enabling plugin + +1. Edit your `.zshrc` file and add `encode64` to the list of plugins: + + ```sh + plugins=( + # ...other enabled plugins + encode64 + ) + ``` + +2. Restart your terminal session or reload configuration by running: + + ```sh + source ~/.zshrc + ``` + +## Usage and examples + +### Encoding + +- From parameter + + ```console + $ encode64 "oh-my-zsh" + b2gtbXktenNo + $ e64 "oh-my-zsh" + b2gtbXktenNo + ``` + +- From piping + + ```console + $ echo "oh-my-zsh" | encode64 + b2gtbXktenNo== + $ echo "oh-my-zsh" | e64 + b2gtbXktenNo== + ``` + +### Decoding + +- From parameter + + ```console + $ decode64 b2gtbXktenNo + oh-my-zsh% + $ d64 b2gtbXktenNo + oh-my-zsh% + ``` + +- From piping + + ```console + $ echo "b2gtbXktenNoCg==" | decode64 + oh-my-zsh + $ echo "b2gtbXktenNoCg==" | decode64 + oh-my-zsh + ``` diff --git a/oh-my-zsh/.oh-my-zsh/plugins/encode64/encode64.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/encode64/encode64.plugin.zsh new file mode 100644 index 0000000..979e067 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/encode64/encode64.plugin.zsh @@ -0,0 +1,17 @@ +encode64() { + if [[ $# -eq 0 ]]; then + cat | base64 + else + printf '%s' $1 | base64 + fi +} + +decode64() { + if [[ $# -eq 0 ]]; then + cat | base64 --decode + else + printf '%s' $1 | base64 --decode + fi +} +alias e64=encode64 +alias d64=decode64 diff --git a/oh-my-zsh/.oh-my-zsh/plugins/extract/README.md b/oh-my-zsh/.oh-my-zsh/plugins/extract/README.md new file mode 100644 index 0000000..c6bdd36 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/extract/README.md @@ -0,0 +1,46 @@ +# extract plugin + +This plugin defines a function called `extract` that extracts the archive file +you pass it, and it supports a wide variety of archive filetypes. + +This way you don't have to know what specific command extracts a file, you just +do `extract ` and the function takes care of the rest. + +To use it, add `extract` to the plugins array in your zshrc file: + +```zsh +plugins=(... extract) +``` + +## Supported file extensions + +| Extension | Description | +|:------------------|:-------------------------------------| +| `7z` | 7zip file | +| `Z` | Z archive (LZW) | +| `apk` | Android app file | +| `bz2` | Bzip2 file | +| `deb` | Debian package | +| `gz` | Gzip file | +| `ipsw` | iOS firmware file | +| `jar` | Java Archive | +| `lzma` | LZMA archive | +| `rar` | WinRAR archive | +| `sublime-package` | Sublime Text package | +| `tar` | Tarball | +| `tar.bz2` | Tarball with bzip2 compression | +| `tar.gz` | Tarball with gzip compression | +| `tar.xz` | Tarball with lzma2 compression | +| `tar.zma` | Tarball with lzma compression | +| `tbz` | Tarball with bzip compression | +| `tbz2` | Tarball with bzip2 compression | +| `tgz` | Tarball with gzip compression | +| `tlz` | Tarball with lzma compression | +| `txz` | Tarball with lzma2 compression | +| `war` | Web Application archive (Java-based) | +| `xpi` | Mozilla XPI module file | +| `xz` | LZMA2 archive | +| `zip` | Zip archive | + +See [list of archive formats](https://en.wikipedia.org/wiki/List_of_archive_formats) for +more information regarding archive formats. diff --git a/oh-my-zsh/.oh-my-zsh/plugins/extract/_extract b/oh-my-zsh/.oh-my-zsh/plugins/extract/_extract new file mode 100644 index 0000000..3baefa3 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/extract/_extract @@ -0,0 +1,7 @@ +#compdef extract +#autoload + +_arguments \ + '(-r --remove)'{-r,--remove}'[Remove archive.]' \ + "*::archive file:_files -g '(#i)*.(7z|Z|apk|bz2|deb|gz|ipsw|jar|lzma|rar|sublime-package|tar|tar.bz2|tar.gz|tar.xz|tar.zma|tbz|tbz2|tgz|tlz|txz|war|whl|xpi|xz|zip)(-.)'" \ + && return 0 diff --git a/oh-my-zsh/.oh-my-zsh/plugins/extract/extract.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/extract/extract.plugin.zsh new file mode 100644 index 0000000..4c72ce8 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/extract/extract.plugin.zsh @@ -0,0 +1,71 @@ +alias x=extract + +extract() { + local remove_archive + local success + local extract_dir + + if (( $# == 0 )); then + cat <<-'EOF' >&2 + Usage: extract [-option] [file ...] + + Options: + -r, --remove Remove archive after unpacking. + EOF + fi + + remove_archive=1 + if [[ "$1" == "-r" ]] || [[ "$1" == "--remove" ]]; then + remove_archive=0 + shift + fi + + while (( $# > 0 )); do + if [[ ! -f "$1" ]]; then + echo "extract: '$1' is not a valid file" >&2 + shift + continue + fi + + success=0 + extract_dir="${1:t:r}" + case "${1:l}" in + (*.tar.gz|*.tgz) (( $+commands[pigz] )) && { pigz -dc "$1" | tar xv } || tar zxvf "$1" ;; + (*.tar.bz2|*.tbz|*.tbz2) tar xvjf "$1" ;; + (*.tar.xz|*.txz) + tar --xz --help &> /dev/null \ + && tar --xz -xvf "$1" \ + || xzcat "$1" | tar xvf - ;; + (*.tar.zma|*.tlz) + tar --lzma --help &> /dev/null \ + && tar --lzma -xvf "$1" \ + || lzcat "$1" | tar xvf - ;; + (*.tar) tar xvf "$1" ;; + (*.gz) (( $+commands[pigz] )) && pigz -d "$1" || gunzip "$1" ;; + (*.bz2) bunzip2 "$1" ;; + (*.xz) unxz "$1" ;; + (*.lzma) unlzma "$1" ;; + (*.z) uncompress "$1" ;; + (*.zip|*.war|*.jar|*.sublime-package|*.ipsw|*.xpi|*.apk|*.whl) unzip "$1" -d $extract_dir ;; + (*.rar) unrar x -ad "$1" ;; + (*.7z) 7za x "$1" ;; + (*.deb) + mkdir -p "$extract_dir/control" + mkdir -p "$extract_dir/data" + cd "$extract_dir"; ar vx "../${1}" > /dev/null + cd control; tar xzvf ../control.tar.gz + cd ../data; extract ../data.tar.* + cd ..; rm *.tar.* debian-binary + cd .. + ;; + (*) + echo "extract: '$1' cannot be extracted" >&2 + success=1 + ;; + esac + + (( success = $success > 0 ? $success : $? )) + (( $success == 0 )) && (( $remove_archive == 0 )) && rm "$1" + shift + done +} diff --git a/oh-my-zsh/.oh-my-zsh/plugins/fabric/README.md b/oh-my-zsh/.oh-my-zsh/plugins/fabric/README.md new file mode 100644 index 0000000..cf0fa81 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/fabric/README.md @@ -0,0 +1,9 @@ +# Fabric + +This plugin provides completion for [Fabric](https://www.fabfile.org/). + +To use it add fabric to the plugins array in your zshrc file. + +```bash +plugins=(... fabric) +``` diff --git a/oh-my-zsh/.oh-my-zsh/plugins/fabric/_fab b/oh-my-zsh/.oh-my-zsh/plugins/fabric/_fab new file mode 100644 index 0000000..9628e12 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/fabric/_fab @@ -0,0 +1,60 @@ +#compdef fab +#autoload + +local curcontext=$curcontext state line +declare -A opt_args + +declare target_list +target_list=(`fab --shortlist 2>/dev/null`) + +_targets() { + _describe -t commands "fabric targets" target_list +} + +output_levels=( + 'status: Status messages, i.e. noting when Fabric is done running, if the user used a keyboard interrupt, or when servers are disconnected from. These messages are almost always relevant and rarely verbose.' + 'aborts: Abort messages. Like status messages, these should really only be turned off when using Fabric as a library, and possibly not even then. Note that even if this output group is turned off, aborts will still occur – there just won’t be any output about why Fabric aborted!' + 'warnings: Warning messages. These are often turned off when one expects a given operation to fail, such as when using grep to test existence of text in a file. If paired with setting env.warn_only to True, this can result in fully silent warnings when remote programs fail. As with aborts, this setting does not control actual warning behavior, only whether warning messages are printed or hidden.' + 'running: Printouts of commands being executed or files transferred, e.g. [myserver] run: ls /var/www. Also controls printing of tasks being run, e.g. [myserver] Executing task ''foo''.' + 'stdout: Local, or remote, stdout, i.e. non-error output from commands.' + 'stderr: Local, or remote, stderr, i.e. error-related output from commands.' + 'user: User-generated output, i.e. local output printed by fabfile code via use of the fastprint or puts functions.' +) + +_arguments -w -S -C \ + '(-)'{-h,--help}'[show this help message and exit]: :->noargs' \ + '(-)'{-V,--version}'[show program''s version number and exit]: :->noargs' \ + '(-)--list[print list of possible commands and exit]: :->noargs' \ + '(-)--shortlist[print non-verbose list of possible commands and exit]: :->noargs' \ + '(--reject-unknown-hosts)--reject-unknown-hosts[reject unknown hosts]' \ + '(--no-pty)--no-pty[do not use pseudo-terminal in run/sudo]' \ + "(-d+ --display=-)"{-d+,--display=-}"[print detailed info about a given command]: :_targets" \ + '(-D --disable-known-hosts)'{-D,--disable-known-hosts}'[do not load user known_hosts file]' \ + '(-r --reject-unknown-hosts)'{-r,--reject-unknown-hosts}'[reject unknown hosts]' \ + '(-u+ --user=-)'{-u+,--user=-}'[username to use when connecting to remote hosts]: :' \ + '(-p+ --password=-)'{-p+,--password=-}'[password for use with authentication and/or sudo]: :' \ + '(-H+ --hosts=-)'{-H+,--hosts=-}'[comma separated list of hosts to operate on]: :' \ + '(-R+ --roles=-)'{-R+,--roles=-}'[comma separated list of roles to operate on]: :' \ + '(-a --no-agent)'{-a,--no-agent}'[don''t use the running SSH agent]' \ + '(-k --no-keys)'{-k,--no-keys}'[don''t load private key files from ~/.ssh/]' \ + '(-w --warn-only)'{-w,--warn-only}'[warn instead of abort, when commands fail]' \ + '-i+[path to SSH private key file. May be repeated]: :_files' \ + "(-f+ --fabfile=)"{-f+,--fabfile=}"[Python module file to import]: :_files -g *.py" \ + '(-c+ --config=-)'{-c+,--config=-}'[specify location of config file to use]: :_files' \ + '(-s+ --shell=-)'{-s+,--shell=-}'[specify a new shell, defaults to ''/bin/bash -l -c'']: :' \ + '(--hide=-)--hide=-[comma-separated list of output levels to hide]: :->levels' \ + '(--show=-)--show=-[comma-separated list of output levels to show]: :->levels' \ + '*::: :->subcmds' && return 0 + +if [[ CURRENT -ge 1 ]]; then + case $state in + noargs) + _message "nothing to complete";; + levels) + _describe -t commands "output levels" output_levels;; + *) + _targets;; + esac + + return +fi diff --git a/oh-my-zsh/.oh-my-zsh/plugins/fabric/fabric.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/fabric/fabric.plugin.zsh new file mode 100644 index 0000000..e69de29 diff --git a/oh-my-zsh/.oh-my-zsh/plugins/fancy-ctrl-z/README.md b/oh-my-zsh/.oh-my-zsh/plugins/fancy-ctrl-z/README.md new file mode 100644 index 0000000..a7670fa --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/fancy-ctrl-z/README.md @@ -0,0 +1,14 @@ +# Use Ctrl-Z to switch back to Vim + +I frequently need to execute random command in my shell. To achieve it I pause +Vim by pressing Ctrl-z, type command and press fg to switch back to Vim. +The fg part really hurt sme. I just wanted to hit Ctrl-z once again to get back +to Vim. I could not find a solution, so I developed one on my own that +works wonderfully with ZSH + +Source: http://sheerun.net/2014/03/21/how-to-boost-your-vim-productivity/ + +Credits: +- original idea by @sheerun +- added to OMZ by @mbologna + diff --git a/oh-my-zsh/.oh-my-zsh/plugins/fancy-ctrl-z/fancy-ctrl-z.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/fancy-ctrl-z/fancy-ctrl-z.plugin.zsh new file mode 100644 index 0000000..8ab2979 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/fancy-ctrl-z/fancy-ctrl-z.plugin.zsh @@ -0,0 +1,12 @@ +fancy-ctrl-z () { + if [[ $#BUFFER -eq 0 ]]; then + BUFFER="fg" + zle accept-line + else + zle push-input + zle clear-screen + fi +} +zle -N fancy-ctrl-z +bindkey '^Z' fancy-ctrl-z + diff --git a/oh-my-zsh/.oh-my-zsh/plugins/fasd/fasd.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/fasd/fasd.plugin.zsh new file mode 100644 index 0000000..36a0428 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/fasd/fasd.plugin.zsh @@ -0,0 +1,12 @@ +if [ $commands[fasd] ]; then # check if fasd is installed + fasd_cache="${ZSH_CACHE_DIR}/fasd-init-cache" + if [ "$(command -v fasd)" -nt "$fasd_cache" -o ! -s "$fasd_cache" ]; then + fasd --init auto >| "$fasd_cache" + fi + source "$fasd_cache" + unset fasd_cache + + alias v="f -e \"$EDITOR\"" + alias o='a -e xdg-open' + alias j='zz' +fi diff --git a/oh-my-zsh/.oh-my-zsh/plugins/fastfile/fastfile.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/fastfile/fastfile.plugin.zsh new file mode 100644 index 0000000..775e948 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/fastfile/fastfile.plugin.zsh @@ -0,0 +1,138 @@ +################################################################################ +# FILE: fastfile.plugin.zsh +# DESCRIPTION: oh-my-zsh plugin file. +# AUTHOR: Michael Varner (musikmichael@web.de) +# VERSION: 1.0.0 +# +# This plugin adds the ability to on the fly generate and access file shortcuts. +# +################################################################################ + +########################### +# Settings + +# These can be overwritten any time. +# If they are not set yet, they will be +# overwritten with their default values + +default fastfile_dir "${HOME}/.fastfile/" +default fastfile_var_prefix "§" + +########################### +# Impl + +# +# Generate a shortcut +# +# Arguments: +# 1. name - The name of the shortcut (default: name of the file) +# 2. file - The file or directory to make the shortcut for +# STDOUT: +# => fastfle_print +# +function fastfile() { + test "$2" || 2="." + file=$(readlink -f "$2") + + test "$1" || 1="$(basename "$file")" + name=$(echo "$1" | tr " " "_") + + + mkdir -p "${fastfile_dir}" + echo "$file" > "$(fastfile_resolv "$name")" + + fastfile_sync + fastfile_print "$name" +} + +# +# Resolve the location of a shortcut file (the database file, where the value is written!) +# +# Arguments: +# 1. name - The name of the shortcut +# STDOUT: +# The path +# +function fastfile_resolv() { + echo "${fastfile_dir}${1}" +} + +# +# Get the real path of a shortcut +# +# Arguments: +# 1. name - The name of the shortcut +# STDOUT: +# The path +# +function fastfile_get() { + cat "$(fastfile_resolv "$1")" +} + +# +# Print a shortcut +# +# Arguments: +# 1. name - The name of the shortcut +# STDOUT: +# Name and value of the shortcut +# +function fastfile_print() { + echo "${fastfile_var_prefix}${1} -> $(fastfile_get "$1")" +} + +# +# List all shortcuts +# +# STDOUT: +# (=> fastfle_print) for each shortcut +# +function fastfile_ls() { + for f in "${fastfile_dir}"/*; do + file=`basename "$f"` # To enable simpler handeling of spaces in file names + varkey=`echo "$file" | tr " " "_"` + + # Special format for colums + echo "${fastfile_var_prefix}${varkey}|->|$(fastfile_get "$file")" + done | column -t -s "|" +} + +# +# Remove a shortcut +# +# Arguments: +# 1. name - The name of the shortcut (default: name of the file) +# 2. file - The file or directory to make the shortcut for +# STDOUT: +# => fastfle_print +# +function fastfile_rm() { + fastfile_print "$1" + rm "$(fastfile_resolv "$1")" +} + +# +# Generate the aliases for the shortcuts +# +function fastfile_sync() { + for f in "${fastfile_dir}"/*; do + file=`basename "$f"` # To enable simpler handeling of spaces in file names + varkey=`echo "$file" | tr " " "_"` + + alias -g "${fastfile_var_prefix}${varkey}"="'$(fastfile_get "$file")'" + done +} + +################################## +# Shortcuts + +alias ff=fastfile +alias ffp=fastfile_print +alias ffrm=fastfile_rm +alias ffls=fastfile_ls +alias ffsync=fastfile_sync + +################################## +# Init + +fastfile_sync \ No newline at end of file diff --git a/oh-my-zsh/.oh-my-zsh/plugins/fbterm/fbterm.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/fbterm/fbterm.plugin.zsh new file mode 100644 index 0000000..bc25320 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/fbterm/fbterm.plugin.zsh @@ -0,0 +1,7 @@ +# start fbterm automatically in /dev/tty* + +if (( ${+commands[fbterm]} )); then + if [[ "$TTY" = /dev/tty* ]] ; then + fbterm && exit + fi +fi diff --git a/oh-my-zsh/.oh-my-zsh/plugins/fedora/README.md b/oh-my-zsh/.oh-my-zsh/plugins/fedora/README.md new file mode 100644 index 0000000..6594799 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/fedora/README.md @@ -0,0 +1 @@ +The fedora plugin is deprecated. Use the [dnf plugin](https://github.com/robbyrussell/oh-my-zsh/tree/master/plugins/dnf) instead. diff --git a/oh-my-zsh/.oh-my-zsh/plugins/fedora/fedora.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/fedora/fedora.plugin.zsh new file mode 120000 index 0000000..16a2143 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/fedora/fedora.plugin.zsh @@ -0,0 +1 @@ +../dnf/dnf.plugin.zsh \ No newline at end of file diff --git a/oh-my-zsh/.oh-my-zsh/plugins/firewalld/firewalld.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/firewalld/firewalld.plugin.zsh new file mode 100644 index 0000000..5b10906 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/firewalld/firewalld.plugin.zsh @@ -0,0 +1,17 @@ +alias fw="sudo firewall-cmd" +alias fwp="sudo firewall-cmd --permanent" +alias fwr="sudo firewall-cmd --reload" +alias fwrp="sudo firewall-cmd --runtime-to-permanent" + +function fwl () { + # converts output to zsh array () + # @f flag split on new line + zones=("${(@f)$(sudo firewall-cmd --get-active-zones | grep -v 'interfaces\|sources')}") + + for i in $zones; do + sudo firewall-cmd --zone $i --list-all + done + + echo 'Direct Rules:' + sudo firewall-cmd --direct --get-all-rules +} diff --git a/oh-my-zsh/.oh-my-zsh/plugins/firewalld/readme.md b/oh-my-zsh/.oh-my-zsh/plugins/firewalld/readme.md new file mode 100644 index 0000000..8b5bc74 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/firewalld/readme.md @@ -0,0 +1,22 @@ +# FirewallD Plugin + +This plugin adds some aliases and functions for FirewallD using the `firewalld-cmd` command. To use it, add firewalld to your plugins array. + +```zsh +plugins=(... firewalld) +``` + +## Aliases + +| Alias | Command | Description | +| :---- | :----------------------------------------- | :--------------------------- | +| fw | `sudo firewall-cmd` | Shorthand | +| fwr | `sudo firewall-cmd --reload` | Reload current configuration | +| fwp | `sudo firewall-cmd --permanent` | Create permanent rule | +| fwrp | `sudo firewall-cmd --runtime-to-permanent` | Save current configuration | + +## Functions + +| Function | Description | +| :------- | :--------------------------------------------------------- | +| fwl | Lists configuration from all active zones and direct rules | diff --git a/oh-my-zsh/.oh-my-zsh/plugins/forklift/README.md b/oh-my-zsh/.oh-my-zsh/plugins/forklift/README.md new file mode 100644 index 0000000..6c4ce1e --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/forklift/README.md @@ -0,0 +1,15 @@ +## forklift + +Plugin for ForkLift, an FTP application for OS X. + +### Requirements + +* [ForkLift](https://binarynights.com/) + +### Usage + +fl [*file_or_folder*] + +* If `fl` is called without arguments then the current folder is opened in ForkLift. This is equivalent to `fl .`. + +* If `fl` is called with a directory as the argument, then that directory is opened in ForkLift. If called with a non-directory file as the argument, then the file's parent directory is opened. diff --git a/oh-my-zsh/.oh-my-zsh/plugins/forklift/forklift.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/forklift/forklift.plugin.zsh new file mode 100644 index 0000000..274c4a8 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/forklift/forklift.plugin.zsh @@ -0,0 +1,107 @@ +# Open folder in ForkLift.app or ForkLift2.app from console +# Author: Adam Strzelecki nanoant.com, modified by Bodo Tasche bitboxer.de +# Updated to support ForkLift 2 and ForkLift 3 by Johan Kaving +# +# Usage: +# fl [] +# +# Opens specified directory or current working directory in ForkLift.app +# +# Notes: +# It assumes Shift+Cmd+G launches go to folder panel and Cmd+N opens new +# app window. +# +# https://gist.github.com/3313481 +function fl { + if [ ! -z "$1" ]; then + DIR=$1 + if [ ! -d "$DIR" ]; then + DIR=$(dirname $DIR) + fi + if [ "$DIR" != "." ]; then + PWD=`cd "$DIR";pwd` + fi + fi + osascript 2>&1 1>/dev/null <&1` + local _STATUS=`echo $_OUTPUT | grep "use --repo"` + if [ "$_STATUS" = "" ]; then + local _EDITED=`fossil changes` + local _EDITED_SYM="$ZSH_THEME_FOSSIL_PROMPT_CLEAN" + local _BRANCH=`echo $_OUTPUT | grep "* " | sed 's/* //g'` + + if [ "$_EDITED" != "" ]; then + _EDITED_SYM="$ZSH_THEME_FOSSIL_PROMPT_DIRTY" + fi + + echo "$ZSH_THEME_FOSSIL_PROMPT_PREFIX" \ + "$_BRANCH" \ + "$ZSH_THEME_FOSSIL_PROMPT_SUFFIX" \ + "$_EDITED_SYM"\ + "%{$reset_color%}" + fi +} + +function _fossil_get_command_list () { + fossil help -a | grep -v "Usage|Common|This is" +} + +function _fossil () { + local context state state_descr line + typeset -A opt_args + + _arguments \ + '1: :->command'\ + '2: :->subcommand' + + case $state in + command) + local _OUTPUT=`fossil branch 2>&1 | grep "use --repo"` + if [ "$_OUTPUT" = "" ]; then + compadd `_fossil_get_command_list` + else + compadd clone init import help version + fi + ;; + subcommand) + if [ "$words[2]" = "help" ]; then + compadd `_fossil_get_command_list` + else + compcall -D + fi + ;; + esac +} + +function _fossil_prompt () { + local current=`echo $PROMPT $RPROMPT | grep fossil` + + if [ "$_FOSSIL_PROMPT" = "" -o "$current" = "" ]; then + local _prompt=${PROMPT} + local _rprompt=${RPROMPT} + + local is_prompt=`echo $PROMPT | grep git` + + if [ "$is_prompt" = "" ]; then + export RPROMPT="$_rprompt"'$(fossil_prompt_info)' + else + export PROMPT="$_prompt"'$(fossil_prompt_info) ' + fi + + _FOSSIL_PROMPT="1" + fi +} + +compdef _fossil fossil + +autoload -U add-zsh-hook + +add-zsh-hook precmd _fossil_prompt diff --git a/oh-my-zsh/.oh-my-zsh/plugins/frontend-search/README.md b/oh-my-zsh/.oh-my-zsh/plugins/frontend-search/README.md new file mode 100644 index 0000000..f06e791 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/frontend-search/README.md @@ -0,0 +1,65 @@ +## Introduction ## + +> Searches for your frontend web development made easier + + +## Installation ## + +Open your `~/.zshrc` file and enable the `frontend-search` plugin: + +```zsh + +plugins=( ... frontend-search) + +``` + + +## Usage ## + +You can use the frontend-search plugin in these two forms: + +* `frontend [more terms if you want]` +* ` [more terms if you want]` + +For example, these two are equivalent: + +```zsh +$ frontend angularjs dependency injection +$ angularjs dependency injection +``` + +Available search contexts are: + +| context | URL | +|---------------|--------------------------------------------------------------------------| +| angularjs | `https://google.com/search?as_sitesearch=angularjs.org&as_q=` | +| aurajs | `http://aurajs.com/api/#stq=` | +| bem | `https://google.com/search?as_sitesearch=bem.info&as_q=` | +| bootsnipp | `https://bootsnipp.com/search?q=` | +| caniuse | `https://caniuse.com/#search=` | +| codepen | `https://codepen.io/search?q=` | +| compassdoc | `http://compass-style.org/search?q=` | +| cssflow | `http://www.cssflow.com/search?q=` | +| dartlang | `https://api.dartlang.org/apidocs/channels/stable/dartdoc-viewer/dart:` | +| emberjs | `https://emberjs.com/api/#stp=1&stq=` | +| fontello | `http://fontello.com/#search=` | +| html5please | `http://html5please.com/#` | +| jquery | `https://api.jquery.com/?s=` | +| lodash | `https://devdocs.io/lodash/index#` | +| mdn | `https://developer.mozilla.org/search?q=` | +| npmjs | `https://www.npmjs.com/search?q=` | +| qunit | `https://api.qunitjs.com/?s=` | +| reactjs | `https://google.com/search?as_sitesearch=facebook.github.io/react&as_q=` | +| smacss | `https://google.com/search?as_sitesearch=smacss.com&as_q=` | +| stackoverflow | `https://stackoverflow.com/search?q=` | +| unheap | `http://www.unheap.com/?s=` | + +If you want to have another context, open an Issue and tell us! + + +## Author + +**Wilson Mendes (willmendesneto)** ++ ++ ++ diff --git a/oh-my-zsh/.oh-my-zsh/plugins/frontend-search/_frontend-search.sh b/oh-my-zsh/.oh-my-zsh/plugins/frontend-search/_frontend-search.sh new file mode 100644 index 0000000..9aad76f --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/frontend-search/_frontend-search.sh @@ -0,0 +1,132 @@ +#compdef frontend + +zstyle ':completion:*:descriptions' format '%B%d%b' +zstyle ':completion::complete:frontend:*:commands' group-name commands +zstyle ':completion::complete:frontend:*:frontend_points' group-name frontend_points +zstyle ':completion::complete:frontend::' list-grouped + +zmodload zsh/mapfile + +function _frontend() { + local CONFIG=$HOME/.frontend-search + local ret=1 + + local -a commands + local -a frontend_points + + frontend_points=( "${(f)mapfile[$CONFIG]//$HOME/~}" ) + + commands=( + 'jquery: Search in jQuery website' + 'mdn: Search in MDN website' + 'compassdoc: Search in COMPASS website' + 'html5please: Search in HTML5 Please website' + 'caniuse: Search in Can I Use website' + 'aurajs: Search in AuraJs website' + 'dartlang: Search in Dart website' + 'lodash: Search in Lo-Dash website' + 'qunit: Search in Qunit website' + 'fontello: Search in fontello website' + 'bootsnipp: Search in bootsnipp website' + 'cssflow: Search in cssflow website' + 'codepen: Search in codepen website' + 'unheap: Search in unheap website' + 'bem: Search in BEM website' + 'smacss: Search in SMACSS website' + 'angularjs: Search in Angular website' + 'reactjs: Search in React website' + 'emberjs: Search in Ember website' + 'stackoverflow: Search in StackOverflow website' + 'npmjs: Search in NPMJS website' + ) + + _arguments -C \ + '1: :->first_arg' \ + '2: :->second_arg' && ret=0 + + case $state in + first_arg) + _describe -t frontend_points "Warp points" frontend_points && ret=0 + _describe -t commands "Commands" commands && ret=0 + ;; + second_arg) + case $words[2] in + jquery) + _describe -t points "Warp points" frontend_points && ret=0 + ;; + mdn) + _describe -t points "Warp points" frontend_points && ret=0 + ;; + compassdoc) + _describe -t points "Warp points" frontend_points && ret=0 + ;; + html5please) + _describe -t points "Warp points" frontend_points && ret=0 + ;; + caniuse) + _describe -t points "Warp points" frontend_points && ret=0 + ;; + aurajs) + _describe -t points "Warp points" frontend_points && ret=0 + ;; + dartlang) + _describe -t points "Warp points" frontend_points && ret=0 + ;; + lodash) + _describe -t points "Warp points" frontend_points && ret=0 + ;; + qunit) + _describe -t points "Warp points" frontend_points && ret=0 + ;; + fontello) + _describe -t points "Warp points" frontend_points && ret=0 + ;; + bootsnipp) + _describe -t points "Warp points" frontend_points && ret=0 + ;; + cssflow) + _describe -t points "Warp points" frontend_points && ret=0 + ;; + codepen) + _describe -t points "Warp points" frontend_points && ret=0 + ;; + unheap) + _describe -t points "Warp points" frontend_points && ret=0 + ;; + bem) + _describe -t points "Warp points" frontend_points && ret=0 + ;; + smacss) + _describe -t points "Warp points" frontend_points && ret=0 + ;; + angularjs) + _describe -t points "Warp points" frontend_points && ret=0 + ;; + reactjs) + _describe -t points "Warp points" frontend_points && ret=0 + ;; + emberjs) + _describe -t points "Warp points" frontend_points && ret=0 + ;; + stackoverflow) + _describe -t points "Warp points" frontend_points && ret=0 + ;; + npmjs) + _describe -t points "Warp points" frontend_points && ret=0 + ;; + esac + ;; + esac + + return $ret +} + +_frontend "$@" + +# Local Variables: +# mode: Shell-Script +# sh-indentation: 2 +# indent-tabs-mode: nil +# sh-basic-offset: 2 +# End: +# vim: ft=zsh sw=2 ts=2 et diff --git a/oh-my-zsh/.oh-my-zsh/plugins/frontend-search/frontend-search.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/frontend-search/frontend-search.plugin.zsh new file mode 100644 index 0000000..14877fb --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/frontend-search/frontend-search.plugin.zsh @@ -0,0 +1,91 @@ +alias angularjs='frontend angularjs' +alias aurajs='frontend aurajs' +alias bem='frontend bem' +alias bootsnipp='frontend bootsnipp' +alias caniuse='frontend caniuse' +alias codepen='frontend codepen' +alias compassdoc='frontend compassdoc' +alias cssflow='frontend cssflow' +alias dartlang='frontend dartlang' +alias emberjs='frontend emberjs' +alias fontello='frontend fontello' +alias html5please='frontend html5please' +alias jquery='frontend jquery' +alias lodash='frontend lodash' +alias mdn='frontend mdn' +alias npmjs='frontend npmjs' +alias qunit='frontend qunit' +alias reactjs='frontend reactjs' +alias smacss='frontend smacss' +alias stackoverflow='frontend stackoverflow' +alias unheap='frontend unheap' + +function frontend() { + emulate -L zsh + + # define search context URLS + typeset -A urls + urls=( + angularjs 'https://google.com/search?as_sitesearch=angularjs.org&as_q=' + aurajs 'http://aurajs.com/api/#stq=' + bem 'https://google.com/search?as_sitesearch=bem.info&as_q=' + bootsnipp 'https://bootsnipp.com/search?q=' + caniuse 'https://caniuse.com/#search=' + codepen 'https://codepen.io/search?q=' + compassdoc 'http://compass-style.org/search?q=' + cssflow 'http://www.cssflow.com/search?q=' + dartlang 'https://api.dartlang.org/apidocs/channels/stable/dartdoc-viewer/dart:' + emberjs 'https://emberjs.com/api/#stp=1&stq=' + fontello 'http://fontello.com/#search=' + html5please 'http://html5please.com/#' + jquery 'https://api.jquery.com/?s=' + lodash 'https://devdocs.io/lodash/index#' + mdn 'https://developer.mozilla.org/search?q=' + npmjs 'https://www.npmjs.com/search?q=' + qunit 'https://api.qunitjs.com/?s=' + reactjs 'https://google.com/search?as_sitesearch=facebook.github.io/react&as_q=' + smacss 'https://google.com/search?as_sitesearch=smacss.com&as_q=' + stackoverflow 'https://stackoverflow.com/search?q=' + unheap 'http://www.unheap.com/?s=' + ) + + # show help for command list + if [[ $# -lt 2 ]] + then + print -P "Usage: frontend %Ucontext%u %Uterm%u [...%Umore%u] (or just: %Ucontext%u %Uterm%u [...%Umore%u])" + print -P "" + print -P "%Uterm%u and what follows is what will be searched for in the %Ucontext%u website," + print -P "and %Ucontext%u is one of the following:" + print -P "" + print -P " angularjs, aurajs, bem, bootsnipp, caniuse, codepen, compassdoc, cssflow," + print -P " dartlang, emberjs, fontello, html5please, jquery, lodash, mdn, npmjs," + print -P " qunit, reactjs, smacss, stackoverflow, unheap" + print -P "" + print -P "For example: frontend npmjs mocha (or just: npmjs mocha)." + print -P "" + return 1 + fi + + # check whether the search context is supported + if [[ -z "$urls[$1]" ]] + then + echo "Search context \"$1\" currently not supported." + echo "" + echo "Valid contexts are:" + echo "" + echo " angularjs, aurajs, bem, bootsnipp, caniuse, codepen, compassdoc, cssflow, " + echo " dartlang, emberjs, fontello, html5please, jquery, lodash, mdn, npmjs, " + echo " qunit, reactjs, smacss, stackoverflow, unheap" + echo "" + return 1 + fi + + # build search url: + # join arguments passed with '+', then append to search context URL + # TODO substitute for proper urlencode method + url="${urls[$1]}${(j:+:)@[2,-1]}" + + echo "Opening $url ..." + + open_command "$url" +} diff --git a/oh-my-zsh/.oh-my-zsh/plugins/fzf/README.md b/oh-my-zsh/.oh-my-zsh/plugins/fzf/README.md new file mode 100644 index 0000000..b3a4343 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/fzf/README.md @@ -0,0 +1,19 @@ +# fzf + +This plugin enables [junegunn's fzf](https://github.com/junegunn/fzf) fuzzy auto-completion and key bindings + +```zsh +# Set fzf installation directory path +export FZF_BASE=/path/to/fzf/install/dir + +# Uncomment the following line to disable fuzzy completion +# export DISABLE_FZF_AUTO_COMPLETION="true" + +# Uncomment the following line to disable key bindings (CTRL-T, CTRL-R, ALT-C) +# export DISABLE_FZF_KEY_BINDINGS="true" + +plugins=( + ... + fzf +) +``` diff --git a/oh-my-zsh/.oh-my-zsh/plugins/fzf/fzf.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/fzf/fzf.plugin.zsh new file mode 100644 index 0000000..27e2d92 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/fzf/fzf.plugin.zsh @@ -0,0 +1,57 @@ +test -d "${FZF_BASE}" && fzf_base="${FZF_BASE}" + +if [[ -z "${fzf_base}" ]]; then + fzfdirs=( + "${HOME}/.fzf" + "/usr/local/opt/fzf" + "/usr/share/fzf" + ) + for dir in ${fzfdirs}; do + if [[ -d "${dir}" ]]; then + fzf_base="${dir}" + break + fi + done + + if [[ -z "${fzf_base}" ]]; then + if (( ${+commands[brew]} )) && dir="$(brew --prefix fzf 2>/dev/null)"; then + if [[ -d "${dir}" ]]; then + fzf_base="${dir}" + fi + fi + fi +fi + +if [[ -n "${fzf_base}" ]]; then + + # Fix fzf shell directory for Archlinux package + if [[ ! -d "${fzf_base}/shell" ]] && [[ -f /etc/arch-release ]]; then + fzf_shell="${fzf_base}" + else + fzf_shell="${fzf_base}/shell" + fi + + # Setup fzf + # --------- + if ! (( ${+commands[fzf]} )) && [[ ! "$PATH" == *$fzf_base/bin* ]]; then + export PATH="$PATH:$fzf_base/bin" + fi + + # Auto-completion + # --------------- + if [[ ! "$DISABLE_FZF_AUTO_COMPLETION" == "true" ]]; then + [[ $- == *i* ]] && source "${fzf_shell}/completion.zsh" 2> /dev/null + fi + + # Key bindings + # ------------ + if [[ ! "$DISABLE_FZF_KEY_BINDINGS" == "true" ]]; then + source "${fzf_shell}/key-bindings.zsh" + fi + +else + print "[oh-my-zsh] fzf plugin: Cannot find fzf installation directory.\n"\ + "Please add \`export FZF_BASE=/path/to/fzf/install/dir\` to your .zshrc" >&2 +fi + +unset fzf_base fzf_shell dir fzfdirs diff --git a/oh-my-zsh/.oh-my-zsh/plugins/gas/_gas b/oh-my-zsh/.oh-my-zsh/plugins/gas/_gas new file mode 100644 index 0000000..23e6d99 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/gas/_gas @@ -0,0 +1,39 @@ +#compdef gas + +local curcontext="$curcontext" state line cmds ret=1 + +_arguments -C \ + '(- 1 *)'{-v,--version}'[display version information]' \ + '(-h|--help)'{-h,--help}'[show help information]' \ + '1: :->cmds' \ + '*: :->args' && ret=0 + +case $state in + cmds) + cmds=( + "version:Prints Gas's version" + "use:Uses author" + "ssh:Creates a new ssh key for an existing gas author" + "show:Shows your current user" + "list:Lists your authors" + "import:Imports current user to gasconfig" + "help:Describe available tasks or one specific task" + "delete:Deletes author" + "add:Adds author to gasconfig" + ) + _describe -t commands 'gas command' cmds && ret=0 + ;; + args) + case $line[1] in + (use|delete) + VERSION=$(gas -v) + if [[ $VERSION == <1->.*.* ]] || [[ $VERSION == 0.<2->.* ]] || [[ $VERSION == 0.1.<6-> ]] then + _values -S , 'authors' $(cat ~/.gas/gas.authors | sed -n -e 's/^.*\[\(.*\)\]/\1/p') && ret=0 + else + _values -S , 'authors' $(cat ~/.gas | sed -n -e 's/^\[\(.*\)\]/\1/p') && ret=0 + fi + esac + ;; +esac + +return ret diff --git a/oh-my-zsh/.oh-my-zsh/plugins/gb/README.md b/oh-my-zsh/.oh-my-zsh/plugins/gb/README.md new file mode 100644 index 0000000..822c29a --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/gb/README.md @@ -0,0 +1,21 @@ +# `gb` plugin + +> A project based build tool for the Go programming language. + +See https://getgb.io for the full `gb` documentation + +* * * * + +- Adds completion support for all `gb` commands. +- Also supports completion for the [`gb-vendor` plugin](https://godoc.org/github.com/constabulary/gb/cmd/gb-vendor). + +To use it, add `gb` to your plugins array: +```sh +plugins=(... gb) +``` + +## Caveats + +The `git` plugin defines an alias `gb` that usually conflicts with the `gb` program. +If you're having trouble with it, remove it by adding `unalias gb` at the end of your +zshrc file. diff --git a/oh-my-zsh/.oh-my-zsh/plugins/gb/_gb b/oh-my-zsh/.oh-my-zsh/plugins/gb/_gb new file mode 100644 index 0000000..8148adf --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/gb/_gb @@ -0,0 +1,111 @@ +#compdef gb +#autoload + +_gb () { + local ret=1 state + _arguments -C ':command:->command' '*::options:->options' && ret=0 + + case $state in + (command) + local -a subcommands + subcommands=( + "build:build a package" + "doc:show documentation for a package or symbol" + "env:print project environment variables" + "generate:generate Go files by processing source" + "help:displays the help" + "info:info returns information about this project" + "list:list the packages named by the importpaths" + "test:test packages" + "vendor:manage your vendored dependencies" + ) + _describe -t subcommands 'gb subcommands' subcommands && ret=0 + ;; + (options) + case $line[1] in + (build) + _arguments \ + -f'[ignore cached packages]' \ + -F'[do not cache packages]' \ + -q'[decreases verbosity]' \ + -P'[the number of build jobs to run in parallel]' \ + -R'[sets the base of the project root search path]' \ + -dotfile'[output a dot formatted file of the build steps]' \ + -ldflags'["flag list" arguments to pass to the linker]' \ + -gcflags'["arg list" arguments to pass to the compiler]' \ + -race'[enable data race detection]' \ + -tags'["tag list" additional build tags]' + ;; + (list) + _arguments \ + -f'[alternate format for the list, using the syntax of package template]' \ + -s'[read format template from STDIN]' \ + -json'[prints output in structured JSON format]' + ;; + (test) + _arguments \ + -v'[print output from test subprocess]' \ + -ldflags'["flag list" arguments to pass to the linker]' \ + -gcflags'["arg list" arguments to pass to the compiler]' \ + -race'[enable data race detection]' \ + -tags'["tag list" additional build tags]' + ;; + (vendor) + _gb-vendor + esac + ;; + esac + + return ret +} + +_gb-vendor () { + local curcontext="$curcontext" state line + _arguments -C ':command:->command' '*::options:->options' + + case $state in + (command) + local -a subcommands + subcommands=( + 'delete:deletes a local dependency' + 'fetch:fetch a remote dependency' + 'list:lists dependencies, one per line' + 'purge:remove all unreferenced dependencies' + 'restore:restore dependencies from the manifest' + 'update:update a local dependency' + ) + _describe -t subcommands 'gb vendor subcommands' subcommands && ret=0 + ;; + (options) + case $line[1] in + (delete) + _arguments \ + -all'[remove all dependencies]' + ;; + (fetch) + _arguments \ + -branch'[fetch from a particular branch]' \ + -no-recurse'[do not fetch recursively]' \ + -tag'[fetch the specified tag]' \ + -revision'[fetch the specific revision from the branch (if supplied)]' \ + -precaire'[allow the use of insecure protocols]' \ + ;; + (list) + _arguments \ + -f'[controls the template used for printing each manifest entry]' + ;; + (restore) + _arguments \ + -precaire'[allow the use of insecure protocols]' + ;; + (update) + _arguments \ + -all'[update all dependencies in the manifest or supply a given dependency]' \ + -precaire'[allow the use of insecure protocols]' + ;; + esac + ;; + esac +} + +_gb diff --git a/oh-my-zsh/.oh-my-zsh/plugins/geeknote/README.md b/oh-my-zsh/.oh-my-zsh/plugins/geeknote/README.md new file mode 100644 index 0000000..3f23531 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/geeknote/README.md @@ -0,0 +1,12 @@ +## ZSH-Geeknote + +[Geeknote](https://github.com/VitaliyRodnenko/geeknote) plugin for oh-my-zsh. + +Plugins provides: + +- auto completion of commands and their options +- alias `gn` + +You can find information how to install Geeknote and it's available commands on the [project website](http://www.geeknote.me/). + +Maintainer : Ján Koščo ([@s7anley](https://twitter.com/s7anley)) diff --git a/oh-my-zsh/.oh-my-zsh/plugins/geeknote/_geeknote b/oh-my-zsh/.oh-my-zsh/plugins/geeknote/_geeknote new file mode 100644 index 0000000..cf1a187 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/geeknote/_geeknote @@ -0,0 +1,136 @@ +#compdef geeknote +# --------------- ------------------------------------------------------------ +# Name : _geeknote +# Synopsis : zsh completion for geeknote +# Author : Ján Koščo <3k.stanley@gmail.com> +# HomePage : http://www.geeknote.me +# Version : 0.1 +# Tag : [ shell, zsh, completion, evernote ] +# Copyright : © 2014 by Ján Koščo, +# Released under current GPL license. +# --------------- ------------------------------------------------------------ + +local -a _1st_arguments +_1st_arguments=( + 'login' + 'logout' + 'settings' + 'create' + 'edit' + 'find' + 'show' + 'remove' + 'notebook-list' + 'notebook-create' + 'notebook-edit' + 'tag-list' + 'tag-create' + 'tag-edit' + 'tag-remove' + 'gnsync' + 'user' +) + +_arguments '*:: :->command' + +if (( CURRENT == 1 )); then + _describe -t commands "geeknote command" _1st_arguments + return +fi + +local -a _command_args +case "$words[1]" in + user) + _command_args=( + '(--full)--full' \ + ) + ;; + logout) + _command_args=( + '(--force)--force' \ + ) + ;; + settings) + _command_args=( + '(--editor)--editor' \ + ) + ;; + create) + _command_args=( + '(-t|--title)'{-t,--title}'[note title]' \ + '(-c|--content)'{-c,--content}'[note content]' \ + '(-tg|--tags)'{-tg,--tags}'[one tag or the list of tags which will be added to the note]' \ + '(-nb|--notebook)'{-nb,--notebook}'[name of notebook where to save note]' \ + ) + ;; + edit) + _command_args=( + '(-n|--note)'{-n,--note}'[name or ID from the previous search of a note to edit]' \ + '(-t|--title)'{-t,--title}'[note title]' \ + '(-c|--content)'{-c,--content}'[note content]' \ + '(-tg|--tags)'{-tg,--tags}'[one tag or the list of tags which will be added to the note]' \ + '(-nb|--notebook)'{-nb,--notebook}'[name of notebook where to save note]' \ + ) + ;; + remove) + _command_args=( + '(-n|--note)'{-n,--note}'[name or ID from the previous search of a note to edit]' \ + '(--force)--force' \ + ) + ;; + show) + _command_args=( + '(-n|--note)'{-n,--note}'[name or ID from the previous search of a note to edit]' \ + ) + ;; + find) + _command_args=( + '(-s|--search)'{-s,--search}'[text to search]' \ + '(-tg|--tags)'{-tg,--tags}'[notes with which tag/tags to search]' \ + '(-nb|--notebook)'{-nb,--notebook}'[in which notebook search the note]' \ + '(-d|--date)'{-d,--date}'[date in format dd.mm.yyyy or date range dd.mm.yyyy-dd.mm.yyyy]' \ + '(-cn|--count)'{-cn,--count}'[how many notes show in the result list]' \ + '(-uo|--url-only)'{-uo,--url-only}'[add direct url of each note in results to Evernote web-version]' \ + '(-ee|--exact-entry)'{-ee,--exact-entry}'[search for exact entry of the request]' \ + '(-cs|--content-search)'{-cs,--content-search}'[search by content, not by title]' \ + ) + ;; + notebook-create) + _command_args=( + '(-t|--title)'{-t,--title}'[notebook title]' \ + ) + ;; + notebook-edit) + _command_args=( + '(-nb|--notebook)'{-nb,--notebook}'[name of notebook to rename]' \ + '(-t|--title)'{-t,--title}'[new notebook title]' \ + ) + ;; + notebook-remove) + _command_args=( + '(-nb|--notebook)'{-nb,--notebook}'[name of notebook to remove]' \ + '(--force)--force' \ + ) + ;; + tag-create) + _command_args=( + '(-t|--title)'{-t,--title}'[title of tag]' \ + ) + ;; + tag-edit) + _command_args=( + '(-tgn|--tagname)'{-tgn,--tagname}'[tag to edit]' \ + '(-t|--title)'{-t,--title}'[new tag name]' \ + ) + ;; + tag-remove) + _command_args=( + '(-tgn|--tagname)'{-tgn,--tagname}'[tag to remove]' \ + '(--force)--force' \ + ) + ;; + esac + +_arguments \ + $_command_args \ + && return 0 diff --git a/oh-my-zsh/.oh-my-zsh/plugins/geeknote/geeknote.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/geeknote/geeknote.plugin.zsh new file mode 100644 index 0000000..8126d26 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/geeknote/geeknote.plugin.zsh @@ -0,0 +1,2 @@ +#Alias +alias gn='geeknote' diff --git a/oh-my-zsh/.oh-my-zsh/plugins/gem/README.md b/oh-my-zsh/.oh-my-zsh/plugins/gem/README.md new file mode 100644 index 0000000..decd87b --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/gem/README.md @@ -0,0 +1,17 @@ +# Gem plugin + +This plugin adds completions and aliases for [Gem](https://rubygems.org/). The completions include the common `gem` subcommands as well as the installed gems in the current directory. + +To use it, add `gem` to the plugins array in your zshrc file: + +```zsh +plugins=(... gem) +``` + +## Aliases + +| Alias | Command | Description | +|----------------------|-------------------------------|--------------------------------------------| +| gemb | `gem build *.gemspec` | Build a gem from a gemspec | +| gemp | `gem push *.gem` | Push a gem up to the gem server | +| gemy [gem] [version] | `gem yank [gem] -v [version]` | Remove a pushed gem version from the index | diff --git a/oh-my-zsh/.oh-my-zsh/plugins/gem/_gem b/oh-my-zsh/.oh-my-zsh/plugins/gem/_gem new file mode 100644 index 0000000..92feebe --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/gem/_gem @@ -0,0 +1,72 @@ +#compdef gem +#autoload + +# gem zsh completion, based on homebrew completion + +_gem_installed() { + installed_gems=(${(f)"$(gem list --local --no-versions)"}) +} + +local -a _1st_arguments + +_1st_arguments=( + 'build:Build a gem from a gemspec' + 'cert:Manage RubyGems certificates and signing settings' + 'check:Check a gem repository for added or missing files' + 'cleanup:Clean up old versions of installed gems in the local repository' + 'contents:Display the contents of the installed gems' + 'dependency:Show the dependencies of an installed gem' + 'environment:Display information about the RubyGems environment' + 'fetch:Download a gem and place it in the current directory' + 'generate_index:Generates the index files for a gem server directory' + 'help:Provide help on the `gem` command' + 'install:Install a gem into the local repository' + 'list:Display gems whose name starts with STRING' + 'lock:Generate a lockdown list of gems' + 'mirror:Mirror all gem files (requires rubygems-mirror)' + 'outdated:Display all gems that need updates' + 'owner:Manage gem owners on RubyGems.org.' + 'pristine:Restores installed gems to pristine condition from files located in the gem cache' + 'push:Push a gem up to RubyGems.org' + 'query:Query gem information in local or remote repositories' + 'rdoc:Generates RDoc for pre-installed gems' + 'search:Display all gems whose name contains STRING' + 'server:Documentation and gem repository HTTP server' + 'sources:Manage the sources and cache file RubyGems uses to search for gems' + 'specification:Display gem specification (in yaml)' + 'stale:List gems along with access times' + 'uninstall:Uninstall gems from the local repository' + 'unpack:Unpack an installed gem to the current directory' + 'update:Update installed gems to the latest version' + 'which:Find the location of a library file you can require' + 'yank:Remove a specific gem version release from RubyGems.org' +) + +local expl +local -a gems installed_gems + +_arguments \ + '(-v --version)'{-v,--version}'[show version]' \ + '(-h --help)'{-h,--help}'[show help]' \ + '*:: :->subcmds' && return 0 + +if (( CURRENT == 1 )); then + _describe -t commands "gem subcommand" _1st_arguments + return +fi + +case "$words[1]" in + build) + _files -g "*.gemspec" + ;; + install) + _files ;; + list) + if [[ "$state" == forms ]]; then + _gem_installed + _requested installed_gems expl 'installed gems' compadd -a installed_gems + fi ;; + uninstall|update) + _gem_installed + _wanted installed_gems expl 'installed gems' compadd -a installed_gems ;; +esac diff --git a/oh-my-zsh/.oh-my-zsh/plugins/gem/gem.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/gem/gem.plugin.zsh new file mode 100644 index 0000000..938f5c9 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/gem/gem.plugin.zsh @@ -0,0 +1,7 @@ +alias gemb="gem build *.gemspec" +alias gemp="gem push *.gem" + +# gemy GEM 0.0.0 = gem yank GEM -v 0.0.0 +function gemy { + gem yank $1 -v $2 +} \ No newline at end of file diff --git a/oh-my-zsh/.oh-my-zsh/plugins/git-auto-fetch/README.md b/oh-my-zsh/.oh-my-zsh/plugins/git-auto-fetch/README.md new file mode 100644 index 0000000..35f3c2f --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/git-auto-fetch/README.md @@ -0,0 +1,31 @@ +# Git auto-fetch + +Automatically fetches all changes from all remotes while you are working in git-initialized directory. + +#### Usage + +Add `git-auto-fetch` to the plugins array in your zshrc file: + +```shell +plugins=(... git-auto-fetch) +``` + +Every time you launch a command in your shell all remotes will be fetched in background. +By default autofetch will be triggered only if last fetch was done at least 60 seconds ago. +You can change fetch interval in your .zshrc: +``` +GIT_AUTO_FETCH_INTERVAL=1200 #in seconds +``` +Log of `git fetch --all` will be saved into `.git/FETCH_LOG` + + +#### Toggle auto fetch per folder +If you are using mobile connection or for any other reason you can disable git-auto-fetch for any folder: + +```shell +$ cd to/your/project +$ git-auto-fetch +disabled +$ git-auto-fetch +enabled +``` diff --git a/oh-my-zsh/.oh-my-zsh/plugins/git-auto-fetch/git-auto-fetch.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/git-auto-fetch/git-auto-fetch.plugin.zsh new file mode 100644 index 0000000..1d20bc0 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/git-auto-fetch/git-auto-fetch.plugin.zsh @@ -0,0 +1,27 @@ +GIT_AUTO_FETCH_INTERVAL=${GIT_AUTO_FETCH_INTERVAL:=60} + +function git-fetch-all { + (`git rev-parse --is-inside-work-tree 2>/dev/null` && + dir=`git rev-parse --git-dir` && + [[ ! -f $dir/NO_AUTO_FETCH ]] && + (( `date +%s` - `date -r $dir/FETCH_LOG +%s 2>/dev/null || echo 0` > $GIT_AUTO_FETCH_INTERVAL )) && + git fetch --all &>! $dir/FETCH_LOG &) +} + +function git-auto-fetch { + `git rev-parse --is-inside-work-tree 2>/dev/null` || return + guard="`git rev-parse --git-dir`/NO_AUTO_FETCH" + + (rm $guard 2>/dev/null && + echo "${fg_bold[green]}enabled${reset_color}") || + (touch $guard && + echo "${fg_bold[red]}disabled${reset_color}") +} + +eval "override-git-auto-fetch-$(declare -f zle-line-init)" + +function zle-line-init () { + git-fetch-all + override-git-auto-fetch-zle-line-init +} +zle -N zle-line-init diff --git a/oh-my-zsh/.oh-my-zsh/plugins/git-extras/README.md b/oh-my-zsh/.oh-my-zsh/plugins/git-extras/README.md new file mode 100644 index 0000000..987f0d8 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/git-extras/README.md @@ -0,0 +1,11 @@ +# git-extras + +This plugin provides completion definitions for some of the commands defined by [git-extras](https://github.com/tj/git-extras). + +## Setup notes + +The completions work by augmenting the `_git` completion provided by `zsh`. This only works with the `zsh`-provided `_git`, not the `_git` provided by `git` itself. If you have both `zsh` and `git` installed, you need to make sure that the `zsh`-provided `_git` takes precedence. + +### OS X Homebrew Setup + +On OS X with Homebrew, you need to install `git` with `brew install git --without-completions`. Otherwise, `git`'s `_git` will take precedence, and you won't see the completions for `git-extras` commands. diff --git a/oh-my-zsh/.oh-my-zsh/plugins/git-extras/git-extras.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/git-extras/git-extras.plugin.zsh new file mode 100644 index 0000000..ef6c359 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/git-extras/git-extras.plugin.zsh @@ -0,0 +1,498 @@ +# ------------------------------------------------------------------------------ +# Description +# ----------- +# +# Completion script for git-extras (https://github.com/tj/git-extras). +# +# This depends on and reuses some of the internals of the _git completion +# function that ships with zsh itself. It will not work with the _git that ships +# with git. +# +# ------------------------------------------------------------------------------ +# Authors +# ------- +# +# * Alexis GRIMALDI (https://github.com/agrimaldi) +# * spacewander (https://github.com/spacewander) +# +# ------------------------------------------------------------------------------ +# Inspirations +# ----------- +# +# * git-extras (https://github.com/tj/git-extras) +# * git-flow-completion (https://github.com/bobthecow/git-flow-completion) +# +# ------------------------------------------------------------------------------ + + +# Internal functions +# These are a lot like their __git_* equivalents inside _git + +__gitex_command_successful () { + if (( ${#*:#0} > 0 )); then + _message 'not a git repository' + return 1 + fi + return 0 +} + +__gitex_commits() { + declare -A commits + git log --oneline -15 | sed 's/\([[:alnum:]]\{7\}\) /\1:/' | while read commit + do + hash=$(echo $commit | cut -d':' -f1) + commits[$hash]="$commit" + done + local ret=1 + _describe -t commits commit commits && ret=0 +} + +__gitex_remote_names() { + local expl + declare -a remote_names + remote_names=(${(f)"$(_call_program remotes git remote 2>/dev/null)"}) + __git_command_successful || return + _wanted remote-names expl remote-name compadd $* - $remote_names +} + +__gitex_tag_names() { + local expl + declare -a tag_names + tag_names=(${${(f)"$(_call_program tags git for-each-ref --format='"%(refname)"' refs/tags 2>/dev/null)"}#refs/tags/}) + __git_command_successful || return + _wanted tag-names expl tag-name compadd $* - $tag_names +} + + +__gitex_branch_names() { + local expl + declare -a branch_names + branch_names=(${${(f)"$(_call_program branchrefs git for-each-ref --format='"%(refname)"' refs/heads 2>/dev/null)"}#refs/heads/}) + __git_command_successful || return + _wanted branch-names expl branch-name compadd $* - $branch_names +} + +__gitex_specific_branch_names() { + local expl + declare -a branch_names + branch_names=(${${(f)"$(_call_program branchrefs git for-each-ref --format='"%(refname)"' refs/heads/"$1" 2>/dev/null)"}#refs/heads/$1/}) + __git_command_successful || return + _wanted branch-names expl branch-name compadd - $branch_names +} + +__gitex_chore_branch_names() { + __gitex_specific_branch_names 'chore' +} + +__gitex_feature_branch_names() { + __gitex_specific_branch_names 'feature' +} + +__gitex_refactor_branch_names() { + __gitex_specific_branch_names 'refactor' +} + +__gitex_bug_branch_names() { + __gitex_specific_branch_names 'bug' +} + +__gitex_submodule_names() { + local expl + declare -a submodule_names + submodule_names=(${(f)"$(_call_program branchrefs git submodule status | awk '{print $2}')"}) # ' + __git_command_successful || return + _wanted submodule-names expl submodule-name compadd $* - $submodule_names +} + + +__gitex_author_names() { + local expl + declare -a author_names + author_names=(${(f)"$(_call_program branchrefs git log --format='%aN' | sort -u)"}) + __git_command_successful || return + _wanted author-names expl author-name compadd $* - $author_names +} + +# subcommands +_git-authors() { + _arguments -C \ + '(--list -l)'{--list,-l}'[show authors]' \ + '--no-email[without email]' \ +} + +_git-bug() { + local curcontext=$curcontext state line ret=1 + declare -A opt_args + + _arguments -C \ + ': :->command' \ + '*:: :->option-or-argument' && ret=0 + + case $state in + (command) + declare -a commands + commands=( + 'finish:merge bug into the current branch' + ) + _describe -t commands command commands && ret=0 + ;; + (option-or-argument) + curcontext=${curcontext%:*}-$line[1]: + case $line[1] in + (finish) + _arguments -C \ + ':branch-name:__gitex_bug_branch_names' + ;; + -r|--remote ) + _arguments -C \ + ':remote-name:__gitex_remote_names' + ;; + esac + return 0 + esac + + _arguments \ + '(--remote -r)'{--remote,-r}'[setup remote tracking branch]' +} + + +_git-changelog() { + _arguments \ + '(-l --list)'{-l,--list}'[list commits]' \ +} + +_git-chore() { + local curcontext=$curcontext state line ret=1 + declare -A opt_args + + _arguments -C \ + ': :->command' \ + '*:: :->option-or-argument' && ret=0 + + case $state in + (command) + declare -a commands + commands=( + 'finish:merge and delete the chore branch' + ) + _describe -t commands command commands && ret=0 + ;; + (option-or-argument) + curcontext=${curcontext%:*}-$line[1]: + case $line[1] in + (finish) + _arguments -C \ + ':branch-name:__gitex_chore_branch_names' + ;; + -r|--remote ) + _arguments -C \ + ':remote-name:__gitex_remote_names' + ;; + esac + return 0 + esac + + _arguments \ + '(--remote -r)'{--remote,-r}'[setup remote tracking branch]' +} + + +_git-contrib() { + _arguments \ + ':author:__gitex_author_names' +} + + +_git-count() { + _arguments \ + '--all[detailed commit count]' +} + +_git-create-branch() { + local curcontext=$curcontext state line + _arguments -C \ + ': :->command' \ + '*:: :->option-or-argument' + + case "$state" in + (command) + _arguments \ + '(--remote -r)'{--remote,-r}'[setup remote tracking branch]' + ;; + (option-or-argument) + curcontext=${curcontext%:*}-$line[1]: + case $line[1] in + -r|--remote ) + _arguments -C \ + ':remote-name:__gitex_remote_names' + ;; + esac + esac +} + +_git-delete-branch() { + _arguments \ + ':branch-name:__gitex_branch_names' +} + + +_git-delete-submodule() { + _arguments \ + ':submodule-name:__gitex_submodule_names' +} + + +_git-delete-tag() { + _arguments \ + ':tag-name:__gitex_tag_names' +} + + +_git-effort() { + _arguments \ + '--above[ignore file with less than x commits]' +} + + +_git-extras() { + local curcontext=$curcontext state line ret=1 + declare -A opt_args + + _arguments -C \ + ': :->command' \ + '*:: :->option-or-argument' && ret=0 + + case $state in + (command) + declare -a commands + commands=( + 'update:update git-extras' + ) + _describe -t commands command commands && ret=0 + ;; + esac + + _arguments \ + '(-v --version)'{-v,--version}'[show current version]' +} + + +_git-feature() { + local curcontext=$curcontext state line ret=1 + declare -A opt_args + + _arguments -C \ + ': :->command' \ + '*:: :->option-or-argument' && ret=0 + + case $state in + (command) + declare -a commands + commands=( + 'finish:merge feature into the current branch' + ) + _describe -t commands command commands && ret=0 + ;; + (option-or-argument) + curcontext=${curcontext%:*}-$line[1]: + case $line[1] in + (finish) + _arguments -C \ + ':branch-name:__gitex_feature_branch_names' + ;; + -r|--remote ) + _arguments -C \ + ':remote-name:__gitex_remote_names' + ;; + esac + return 0 + esac + + _arguments \ + '(--remote -r)'{--remote,-r}'[setup remote tracking branch]' +} + +_git-graft() { + _arguments \ + ':src-branch-name:__gitex_branch_names' \ + ':dest-branch-name:__gitex_branch_names' +} + +_git-guilt() { + _arguments -C \ + '(--email -e)'{--email,-e}'[display author emails instead of names]' \ + '(--ignore-whitespace -w)'{--ignore-whitespace,-w}'[ignore whitespace only changes]' \ + '(--debug -d)'{--debug,-d}'[output debug information]' \ + '-h[output usage information]' +} + +_git-ignore() { + _arguments -C \ + '(--local -l)'{--local,-l}'[show local gitignore]' \ + '(--global -g)'{--global,-g}'[show global gitignore]' \ + '(--private -p)'{--private,-p}'[show repo gitignore]' +} + + +_git-ignore() { + _arguments -C \ + '(--append -a)'{--append,-a}'[append .gitignore]' \ + '(--replace -r)'{--replace,-r}'[replace .gitignore]' \ + '(--list-in-table -l)'{--list-in-table,-l}'[print available types in table format]' \ + '(--list-alphabetically -L)'{--list-alphabetically,-L}'[print available types in alphabetical order]' \ + '(--search -s)'{--search,-s}'[search word in available types]' +} + + +_git-merge-into() { + _arguments '--ff-only[merge only fast-forward]' + _arguments \ + ':src:__gitex_branch_names' \ + ':dest:__gitex_branch_names' +} + +_git-missing() { + _arguments \ + ':first-branch-name:__gitex_branch_names' \ + ':second-branch-name:__gitex_branch_names' +} + + +_git-refactor() { + local curcontext=$curcontext state line ret=1 + declare -A opt_args + + _arguments -C \ + ': :->command' \ + '*:: :->option-or-argument' && ret=0 + + case $state in + (command) + declare -a commands + commands=( + 'finish:merge refactor into the current branch' + ) + _describe -t commands command commands && ret=0 + ;; + (option-or-argument) + curcontext=${curcontext%:*}-$line[1]: + case $line[1] in + (finish) + _arguments -C \ + ':branch-name:__gitex_refactor_branch_names' + ;; + -r|--remote ) + _arguments -C \ + ':remote-name:__gitex_remote_names' + ;; + esac + return 0 + esac + + _arguments \ + '(--remote -r)'{--remote,-r}'[setup remote tracking branch]' +} + + +_git-squash() { + _arguments \ + ':branch-name:__gitex_branch_names' +} + +_git-stamp() { + _arguments -C \ + '(--replace -r)'{--replace,-r}'[replace stamps with same id]' +} + +_git-standup() { + _arguments -C \ + '-a[Specify the author of commits. Use "all" to specify all authors.]' \ + '-d[Show history since N days ago]' \ + '-D[Specify the date format displayed in commit history]' \ + '-f[Fetch commits before showing history]' \ + '-g[Display GPG signed info]' \ + '-h[Display help message]' \ + '-L[Enable the inclusion of symbolic links]' \ + '-m[The depth of recursive directory search]' +} + +_git-summary() { + _arguments '--line[summarize with lines rather than commits]' + __gitex_commits +} + + +_git-undo(){ + _arguments -C \ + '(--soft -s)'{--soft,-s}'[only rolls back the commit but changes remain un-staged]' \ + '(--hard -h)'{--hard,-h}'[wipes your commit(s)]' +} + +zstyle -g existing_user_commands ':completion:*:*:git:*' user-commands + +zstyle ':completion:*:*:git:*' user-commands $existing_user_commands \ + alias:'define, search and show aliases' \ + archive-file:'export the current head of the git repository to an archive' \ + authors:'generate authors report' \ + back:'undo and stage latest commits' \ + bug:'create bug branch' \ + bulk:'run bulk commands' \ + changelog:'generate a changelog report' \ + chore:'create chore branch' \ + clear-soft:'soft clean up a repository' \ + clear:'rigorously clean up a repository' \ + commits-since:'show commit logs since some date' \ + contrib:'show user contributions' \ + count:'show commit count' \ + create-branch:'create branches' \ + delete-branch:'delete branches' \ + delete-merged-branches:'delete merged branches' \ + delete-submodule:'delete submodules' \ + delete-tag:'delete tags' \ + delta:'lists changed files' \ + effort:'show effort statistics on file(s)' \ + extras:'awesome git utilities' \ + feature:'create/merge feature branch' \ + force-clone:'overwrite local repositories with clone' \ + fork:'fork a repo on github' \ + fresh-branch:'create fresh branches' \ + gh-pages:'create the github pages branch' \ + graft:'merge and destroy a given branch' \ + guilt:'calculate change between two revisions' \ + ignore-io:'get sample gitignore file' \ + ignore:'add .gitignore patterns' \ + info:'returns information on current repository' \ + local-commits:'list local commits' \ + lock:'lock a file excluded from version control' \ + locked:'ls files that have been locked' \ + merge-into:'merge one branch into another' \ + merge-repo:'merge two repo histories' \ + missing:'show commits missing from another branch' \ + mr:'checks out a merge request locally' \ + obliterate:'rewrite past commits to remove some files' \ + pr:'checks out a pull request locally' \ + psykorebase:'rebase a branch with a merge commit' \ + pull-request:'create pull request to GitHub project' \ + reauthor:'replace the author and/or committer identities in commits and tags' \ + rebase-patch:'rebases a patch' \ + refactor:'create refactor branch' \ + release:'commit, tag and push changes to the repository' \ + rename-branch:'rename a branch' \ + rename-tag:'rename a tag' \ + repl:'git read-eval-print-loop' \ + reset-file:'reset one file' \ + root:'show path of root' \ + scp:'copy files to ssh compatible `git-remote`' \ + sed:'replace patterns in git-controlled files' \ + setup:'set up a git repository' \ + show-merged-branches:'show merged branches' \ + show-tree:'show branch tree of commit history' \ + show-unmerged-branches:'show unmerged branches' \ + squash:'import changes from a branch' \ + stamp:'stamp the last commit message' \ + standup:'recall the commit history' \ + summary:'show repository summary' \ + sync:'sync local branch with remote branch' \ + touch:'touch and add file to the index' \ + undo:'remove latest commits' \ + unlock:'unlock a file excluded from version control' diff --git a/oh-my-zsh/.oh-my-zsh/plugins/git-flow-avh/README.md b/oh-my-zsh/.oh-my-zsh/plugins/git-flow-avh/README.md new file mode 100644 index 0000000..0768d93 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/git-flow-avh/README.md @@ -0,0 +1,19 @@ +# git-flow (AVH Edition) plugin + +This plugin adds completion for the [git-flow (AVH Edition)](https://github.com/petervanderdoes/gitflow-avh). +The AVH Edition of the git extensions that provides high-level repository operations for [Vincent Driessen's branching model](https://nvie.com/posts/a-successful-git-branching-model/). + +To use it, add `git-flow-avh` to the plugins array in your zshrc file: + +```zsh +plugins=(... git-flow-avh) +``` + +## Requirements + +1. The git-flow tool has to be [installed](https://github.com/petervanderdoes/gitflow-avh#installing-git-flow) + separately. + +2. You have to use zsh's git completion instead of the git project's git completion. This is typically + done by default so you don't need to do anything else. If you installed git with Homebrew you + might have to uninstall the git completion it's bundled with. diff --git a/oh-my-zsh/.oh-my-zsh/plugins/git-flow-avh/git-flow-avh.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/git-flow-avh/git-flow-avh.plugin.zsh new file mode 100644 index 0000000..860ca55 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/git-flow-avh/git-flow-avh.plugin.zsh @@ -0,0 +1,526 @@ +_git-flow () +{ + local curcontext="$curcontext" state line + typeset -A opt_args + + _arguments -C \ + ':command:->command' \ + '*::options:->options' + + case $state in + (command) + + local -a subcommands + subcommands=( + 'init:Initialize a new git repo with support for the branching model.' + 'feature:Manage your feature branches.' + 'bugfix:Manage your bugfix branches.' + 'config:Manage your configuration.' + 'release:Manage your release branches.' + 'hotfix:Manage your hotfix branches.' + 'support:Manage your support branches.' + 'version:Shows version information.' + 'finish:Finish the branch you are currently on.' + 'delete:Delete the branch you are currently on.' + 'publish:Publish the branch you are currently on.' + 'rebase:Rebase the branch you are currently on.' + ) + _describe -t commands 'git flow' subcommands + ;; + + (options) + case $line[1] in + + (init) + _arguments \ + -f'[Force setting of gitflow branches, even if already configured]' + ;; + + (version) + ;; + + (hotfix) + __git-flow-hotfix + ;; + + (release) + __git-flow-release + ;; + + (feature) + __git-flow-feature + ;; + (bugfix) + __git-flow-bugfix + ;; + + (config) + __git-flow-config + ;; + + esac + ;; + esac +} + +__git-flow-release () +{ + local curcontext="$curcontext" state line + typeset -A opt_args + + _arguments -C \ + ':command:->command' \ + '*::options:->options' + + case $state in + (command) + + local -a subcommands + subcommands=( + 'start:Start a new release branch.' + 'finish:Finish a release branch.' + 'list:List all your release branches. (Alias to `git flow release`)' + 'publish:Publish release branch to remote.' + 'track:Checkout remote release branch.' + 'rebase:Rebase from integration branch.' + 'delete:Delete a release branch.' + ) + _describe -t commands 'git flow release' subcommands + _arguments \ + -v'[Verbose (more) output]' + ;; + + (options) + case $line[1] in + + (start) + _arguments \ + -F'[Fetch from origin before performing finish]'\ + ':version:__git_flow_version_list' + ;; + + (finish) + _arguments \ + -F'[Fetch from origin before performing finish]' \ + -s'[Sign the release tag cryptographically]'\ + -u'[Use the given GPG-key for the digital signature (implies -s)]'\ + -m'[Use the given tag message]'\ + -p'[Push to $ORIGIN after performing finish]'\ + ':version:__git_flow_version_list' + ;; + + (delete) + _arguments \ + -f'[Force deletion]' \ + -r'[Delete remote branch]' \ + ':version:__git_flow_version_list' + ;; + + (publish) + _arguments \ + ':version:__git_flow_version_list' + ;; + + (track) + _arguments \ + ':version:__git_flow_version_list' + ;; + + (rebase) + _arguments \ + -i'[Do an interactive rebase]' \ + ':branch:__git_branch_names' + ;; + + *) + _arguments \ + -v'[Verbose (more) output]' + ;; + esac + ;; + esac +} + +__git-flow-hotfix () +{ + local curcontext="$curcontext" state line + typeset -A opt_args + + _arguments -C \ + ':command:->command' \ + '*::options:->options' + + case $state in + (command) + + local -a subcommands + subcommands=( + 'start:Start a new hotfix branch.' + 'finish:Finish a hotfix branch.' + 'delete:Delete a hotfix branch.' + 'rebase:Rebase from integration branch.' + 'list:List all your hotfix branches. (Alias to `git flow hotfix`)' + 'rename:Rename a hotfix branch.' + ) + _describe -t commands 'git flow hotfix' subcommands + _arguments \ + -v'[Verbose (more) output]' + ;; + + (options) + case $line[1] in + + (start) + _arguments \ + -F'[Fetch from origin before performing finish]'\ + ':hotfix:__git_flow_version_list'\ + ':branch-name:__git_branch_names' + ;; + + (finish) + _arguments \ + -F'[Fetch from origin before performing finish]' \ + -s'[Sign the release tag cryptographically]'\ + -u'[Use the given GPG-key for the digital signature (implies -s)]'\ + -m'[Use the given tag message]'\ + -p'[Push to $ORIGIN after performing finish]'\ + ':hotfix:__git_flow_hotfix_list' + ;; + + (delete) + _arguments \ + -f'[Force deletion]' \ + -r'[Delete remote branch]' \ + ':hotfix:__git_flow_hotfix_list' + ;; + + (rebase) + _arguments \ + -i'[Do an interactive rebase]' \ + ':branch:__git_branch_names' + ;; + + *) + _arguments \ + -v'[Verbose (more) output]' + ;; + esac + ;; + esac +} + +__git-flow-feature () +{ + local curcontext="$curcontext" state line + typeset -A opt_args + + _arguments -C \ + ':command:->command' \ + '*::options:->options' + + case $state in + (command) + + local -a subcommands + subcommands=( + 'start:Start a new feature branch.' + 'finish:Finish a feature branch.' + 'delete:Delete a feature branch.' + 'list:List all your feature branches. (Alias to `git flow feature`)' + 'publish:Publish feature branch to remote.' + 'track:Checkout remote feature branch.' + 'diff:Show all changes.' + 'rebase:Rebase from integration branch.' + 'checkout:Checkout local feature branch.' + 'pull:Pull changes from remote.' + 'rename:Rename a feature branch.' + ) + _describe -t commands 'git flow feature' subcommands + _arguments \ + -v'[Verbose (more) output]' + ;; + + (options) + case $line[1] in + + (start) + _arguments \ + -F'[Fetch from origin before performing finish]'\ + ':feature:__git_flow_feature_list'\ + ':branch-name:__git_branch_names' + ;; + + (finish) + _arguments \ + -F'[Fetch from origin before performing finish]' \ + -r'[Rebase instead of merge]'\ + ':feature:__git_flow_feature_list' + ;; + + (delete) + _arguments \ + -f'[Force deletion]' \ + -r'[Delete remote branch]' \ + ':feature:__git_flow_feature_list' + ;; + + (publish) + _arguments \ + ':feature:__git_flow_feature_list'\ + ;; + + (track) + _arguments \ + ':feature:__git_flow_feature_list'\ + ;; + + (diff) + _arguments \ + ':branch:__git_branch_names'\ + ;; + + (rebase) + _arguments \ + -i'[Do an interactive rebase]' \ + ':branch:__git_branch_names' + ;; + + (checkout) + _arguments \ + ':branch:__git_flow_feature_list'\ + ;; + + (pull) + _arguments \ + ':remote:__git_remotes'\ + ':branch:__git_branch_names' + ;; + + *) + _arguments \ + -v'[Verbose (more) output]' + ;; + esac + ;; + esac +} + +__git-flow-bugfix () +{ + local curcontext="$curcontext" state line + typeset -A opt_args + + _arguments -C \ + ':command:->command' \ + '*::options:->options' + + case $state in + (command) + + local -a subcommands + subcommands=( + 'start:Start a new bugfix branch.' + 'finish:Finish a bugfix branch.' + 'delete:Delete a bugfix branch.' + 'list:List all your bugfix branches. (Alias to `git flow bugfix`)' + 'publish:Publish bugfix branch to remote.' + 'track:Checkout remote bugfix branch.' + 'diff:Show all changes.' + 'rebase:Rebase from integration branch.' + 'checkout:Checkout local bugfix branch.' + 'pull:Pull changes from remote.' + 'rename:Rename a bugfix branch.' + ) + _describe -t commands 'git flow bugfix' subcommands + _arguments \ + -v'[Verbose (more) output]' + ;; + + (options) + case $line[1] in + + (start) + _arguments \ + -F'[Fetch from origin before performing finish]'\ + ':bugfix:__git_flow_bugfix_list'\ + ':branch-name:__git_branch_names' + ;; + + (finish) + _arguments \ + -F'[Fetch from origin before performing finish]' \ + -r'[Rebase instead of merge]'\ + ':bugfix:__git_flow_bugfix_list' + ;; + + (delete) + _arguments \ + -f'[Force deletion]' \ + -r'[Delete remote branch]' \ + ':bugfix:__git_flow_bugfix_list' + ;; + + (publish) + _arguments \ + ':bugfix:__git_flow_bugfix_list'\ + ;; + + (track) + _arguments \ + ':bugfix:__git_flow_bugfix_list'\ + ;; + + (diff) + _arguments \ + ':branch:__git_branch_names'\ + ;; + + (rebase) + _arguments \ + -i'[Do an interactive rebase]' \ + ':branch:__git_branch_names' + ;; + + (checkout) + _arguments \ + ':branch:__git_flow_bugfix_list'\ + ;; + + (pull) + _arguments \ + ':remote:__git_remotes'\ + ':branch:__git_branch_names' + ;; + + *) + _arguments \ + -v'[Verbose (more) output]' + ;; + esac + ;; + esac +} + +__git-flow-config () +{ + local curcontext="$curcontext" state line + typeset -A opt_args + + _arguments -C \ + ':command:->command' \ + '*::options:->options' + + case $state in + (command) + + local -a subcommands + subcommands=( + 'list:List the configuration. (Alias to `git flow config`)' + 'set:Set the configuration option' + ) + _describe -t commands 'git flow config' subcommands + ;; + + (options) + case $line[1] in + + (set) + _arguments \ + --local'[Use repository config file]' \ + --global'[Use global config file]'\ + --system'[Use system config file]'\ + --file'[Use given config file]'\ + ':option:(master develop feature hotfix release support versiontagprefix)' + ;; + + *) + _arguments \ + --local'[Use repository config file]' \ + --global'[Use global config file]'\ + --system'[Use system config file]'\ + --file'[Use given config file]' + ;; + esac + ;; + esac +} +__git_flow_version_list () +{ + local expl + declare -a versions + + versions=(${${(f)"$(_call_program versions git flow release list 2> /dev/null | tr -d ' |*')"}}) + __git_command_successful || return + + _wanted versions expl 'version' compadd $versions +} + +__git_flow_feature_list () +{ + local expl + declare -a features + + features=(${${(f)"$(_call_program features git flow feature list 2> /dev/null | tr -d ' |*')"}}) + __git_command_successful || return + + _wanted features expl 'feature' compadd $features +} + +__git_flow_bugfix_list () +{ + local expl + declare -a bugfixes + + bugfixes=(${${(f)"$(_call_program bugfixes git flow bugfix list 2> /dev/null | tr -d ' |*')"}}) + __git_command_successful || return + + _wanted bugfixes expl 'bugfix' compadd $bugfixes +} + +__git_remotes () { + local expl gitdir remotes + + gitdir=$(_call_program gitdir git rev-parse --git-dir 2>/dev/null) + __git_command_successful || return + + remotes=(${${(f)"$(_call_program remotes git config --get-regexp '"^remote\..*\.url$"')"}//#(#b)remote.(*).url */$match[1]}) + __git_command_successful || return + + # TODO: Should combine the two instead of either or. + if (( $#remotes > 0 )); then + _wanted remotes expl remote compadd $* - $remotes + else + _wanted remotes expl remote _files $* - -W "($gitdir/remotes)" -g "$gitdir/remotes/*" + fi +} + +__git_flow_hotfix_list () +{ + local expl + declare -a hotfixes + + hotfixes=(${${(f)"$(_call_program hotfixes git flow hotfix list 2> /dev/null | tr -d ' |*')"}}) + __git_command_successful || return + + _wanted hotfixes expl 'hotfix' compadd $hotfixes +} + +__git_branch_names () { + local expl + declare -a branch_names + + branch_names=(${${(f)"$(_call_program branchrefs git for-each-ref --format='"%(refname)"' refs/heads 2>/dev/null)"}#refs/heads/}) + __git_command_successful || return + + _wanted branch-names expl branch-name compadd $* - $branch_names +} + +__git_command_successful () { + if (( ${#pipestatus:#0} > 0 )); then + _message 'not a git repository' + return 1 + fi + return 0 +} + +zstyle ':completion:*:*:git:*' user-commands flow:'provide high-level repository operations' diff --git a/oh-my-zsh/.oh-my-zsh/plugins/git-flow/README.md b/oh-my-zsh/.oh-my-zsh/plugins/git-flow/README.md new file mode 100644 index 0000000..5d8049e --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/git-flow/README.md @@ -0,0 +1,32 @@ +# Git-Flow plugin + +This plugin adds completion and aliases for the `git-flow` command. More information +at https://github.com/nvie/gitflow. + +Enable git-flow plugin in your zshrc file: +``` +plugins=(... git-flow) +``` + +## Aliases + +More information about `git-flow` commands: +https://github.com/nvie/gitflow/wiki/Command-Line-Arguments + +| Alias | Command | Description | +|---------|----------------------------|----------------------------------------| +| `gfl` | `git flow` | Git-Flow command | +| `gfli` | `git flow init` | Initialize git-flow repository | +| `gcd` | `git checkout develop` | Check out develop branch | +| `gch` | `git checkout hotfix` | Check out hotfix branch | +| `gcr` | `git checkout release` | Check out release branch | +| `gflf` | `git flow feature` | List existing feature branches | +| `gflh` | `git flow hotfix` | List existing hotfix branches | +| `gflr` | `git flow release` | List existing release branches | +| `gflfs` | `git flow feature start` | Start a new feature: `gflfs ` | +| `gflhs` | `git flow hotfix start` | Start a new hotfix: `gflhs ` | +| `gflrs` | `git flow release start` | Start a new release: `gflrs ` | +| `gflff` | `git flow feature finish` | Finish feature: `gflff ` | +| `gflfp` | `git flow feature publish` | Publish feature: `gflfp ` | +| `gflhf` | `git flow hotfix finish` | Finish hotfix: `gflhf ` | +| `gflrf` | `git flow release finish` | Finish release: `gflrf ` | diff --git a/oh-my-zsh/.oh-my-zsh/plugins/git-flow/git-flow.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/git-flow/git-flow.plugin.zsh new file mode 100644 index 0000000..eab969d --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/git-flow/git-flow.plugin.zsh @@ -0,0 +1,370 @@ +#!zsh +# +# Installation +# ------------ +# +# To achieve git-flow completion nirvana: +# +# 0. Update your zsh's git-completion module to the newest version. +# From here. https://raw.githubusercontent.com/zsh-users/zsh/master/Completion/Unix/Command/_git +# +# 1. Install this file. Either: +# +# a. Place it in your .zshrc: +# +# b. Or, copy it somewhere (e.g. ~/.git-flow-completion.zsh) and put the following line in +# your .zshrc: +# +# source ~/.git-flow-completion.zsh +# +# c. Or, use this file as an oh-my-zsh plugin. +# + +#Alias +alias gfl='git flow' +alias gfli='git flow init' +alias gcd='git checkout develop' +alias gch='git checkout hotfix' +alias gcr='git checkout release' +alias gflf='git flow feature' +alias gflh='git flow hotfix' +alias gflr='git flow release' +alias gflfs='git flow feature start' +alias gflhs='git flow hotfix start' +alias gflrs='git flow release start' +alias gflff='git flow feature finish' +alias gflfp='git flow feature publish' +alias gflhf='git flow hotfix finish' +alias gflrf='git flow release finish' +alias gflfp='git flow feature publish' +alias gflhp='git flow hotfix publish' +alias gflrp='git flow release publish' +alias gflfpll='git flow feature pull' + +_git-flow () +{ + local curcontext="$curcontext" state line + typeset -A opt_args + + _arguments -C \ + ':command:->command' \ + '*::options:->options' + + case $state in + (command) + + local -a subcommands + subcommands=( + 'init:Initialize a new git repo with support for the branching model.' + 'feature:Manage your feature branches.' + 'release:Manage your release branches.' + 'hotfix:Manage your hotfix branches.' + 'support:Manage your support branches.' + 'version:Shows version information.' + ) + _describe -t commands 'git flow' subcommands + ;; + + (options) + case $line[1] in + + (init) + _arguments \ + -f'[Force setting of gitflow branches, even if already configured]' + ;; + + (version) + ;; + + (hotfix) + __git-flow-hotfix + ;; + + (release) + __git-flow-release + ;; + + (feature) + __git-flow-feature + ;; + esac + ;; + esac +} + +__git-flow-release () +{ + local curcontext="$curcontext" state line + typeset -A opt_args + + _arguments -C \ + ':command:->command' \ + '*::options:->options' + + case $state in + (command) + + local -a subcommands + subcommands=( + 'start:Start a new release branch.' + 'finish:Finish a release branch.' + 'list:List all your release branches. (Alias to `git flow release`)' + 'publish: public' + 'track: track' + ) + _describe -t commands 'git flow release' subcommands + _arguments \ + -v'[Verbose (more) output]' + ;; + + (options) + case $line[1] in + + (start) + _arguments \ + -F'[Fetch from origin before performing finish]'\ + ':version:__git_flow_version_list' + ;; + + (finish) + _arguments \ + -F'[Fetch from origin before performing finish]' \ + -s'[Sign the release tag cryptographically]'\ + -u'[Use the given GPG-key for the digital signature (implies -s)]'\ + -m'[Use the given tag message]'\ + -p'[Push to $ORIGIN after performing finish]'\ + -k'[Keep branch after performing finish]'\ + -n"[Don't tag this release]"\ + ':version:__git_flow_version_list' + ;; + + (publish) + _arguments \ + ':version:__git_flow_version_list'\ + ;; + + (track) + _arguments \ + ':version:__git_flow_version_list'\ + ;; + + *) + _arguments \ + -v'[Verbose (more) output]' + ;; + esac + ;; + esac +} + +__git-flow-hotfix () +{ + local curcontext="$curcontext" state line + typeset -A opt_args + + _arguments -C \ + ':command:->command' \ + '*::options:->options' + + case $state in + (command) + + local -a subcommands + subcommands=( + 'start:Start a new hotfix branch.' + 'finish:Finish a hotfix branch.' + 'list:List all your hotfix branches. (Alias to `git flow hotfix`)' + ) + _describe -t commands 'git flow hotfix' subcommands + _arguments \ + -v'[Verbose (more) output]' + ;; + + (options) + case $line[1] in + + (start) + _arguments \ + -F'[Fetch from origin before performing finish]'\ + ':hotfix:__git_flow_version_list'\ + ':branch-name:__git_branch_names' + ;; + + (finish) + _arguments \ + -F'[Fetch from origin before performing finish]' \ + -s'[Sign the release tag cryptographically]'\ + -u'[Use the given GPG-key for the digital signature (implies -s)]'\ + -m'[Use the given tag message]'\ + -p'[Push to $ORIGIN after performing finish]'\ + -k'[Keep branch after performing finish]'\ + -n"[Don't tag this release]"\ + ':hotfix:__git_flow_hotfix_list' + ;; + + *) + _arguments \ + -v'[Verbose (more) output]' + ;; + esac + ;; + esac +} + +__git-flow-feature () +{ + local curcontext="$curcontext" state line + typeset -A opt_args + + _arguments -C \ + ':command:->command' \ + '*::options:->options' + + case $state in + (command) + + local -a subcommands + subcommands=( + 'start:Start a new feature branch.' + 'finish:Finish a feature branch.' + 'list:List all your feature branches. (Alias to `git flow feature`)' + 'publish: publish' + 'track: track' + 'diff: diff' + 'rebase: rebase' + 'checkout: checkout' + 'pull: pull' + ) + _describe -t commands 'git flow feature' subcommands + _arguments \ + -v'[Verbose (more) output]' + ;; + + (options) + case $line[1] in + + (start) + _arguments \ + -F'[Fetch from origin before performing finish]'\ + ':feature:__git_flow_feature_list'\ + ':branch-name:__git_branch_names' + ;; + + (finish) + _arguments \ + -F'[Fetch from origin before performing finish]' \ + -r'[Rebase instead of merge]'\ + -k'[Keep branch after performing finish]'\ + ':feature:__git_flow_feature_list' + ;; + + (publish) + _arguments \ + ':feature:__git_flow_feature_list'\ + ;; + + (track) + _arguments \ + ':feature:__git_flow_feature_list'\ + ;; + + (diff) + _arguments \ + ':branch:__git_flow_feature_list'\ + ;; + + (rebase) + _arguments \ + -i'[Do an interactive rebase]' \ + ':branch:__git_flow_feature_list' + ;; + + (checkout) + _arguments \ + ':branch:__git_flow_feature_list'\ + ;; + + (pull) + _arguments \ + ':remote:__git_remotes'\ + ':branch:__git_flow_feature_list' + ;; + + *) + _arguments \ + -v'[Verbose (more) output]' + ;; + esac + ;; + esac +} + +__git_flow_version_list () +{ + local expl + declare -a versions + + versions=(${${(f)"$(_call_program versions git flow release list 2> /dev/null | tr -d ' |*')"}}) + __git_command_successful || return + + _wanted versions expl 'version' compadd $versions +} + +__git_flow_feature_list () +{ + local expl + declare -a features + + features=(${${(f)"$(_call_program features git flow feature list 2> /dev/null | tr -d ' |*')"}}) + __git_command_successful || return + + _wanted features expl 'feature' compadd $features +} + +__git_remotes () { + local expl gitdir remotes + + gitdir=$(_call_program gitdir git rev-parse --git-dir 2>/dev/null) + __git_command_successful || return + + remotes=(${${(f)"$(_call_program remotes git config --get-regexp '"^remote\..*\.url$"')"}//#(#b)remote.(*).url */$match[1]}) + __git_command_successful || return + + # TODO: Should combine the two instead of either or. + if (( $#remotes > 0 )); then + _wanted remotes expl remote compadd $* - $remotes + else + _wanted remotes expl remote _files $* - -W "($gitdir/remotes)" -g "$gitdir/remotes/*" + fi +} + +__git_flow_hotfix_list () +{ + local expl + declare -a hotfixes + + hotfixes=(${${(f)"$(_call_program hotfixes git flow hotfix list 2> /dev/null | tr -d ' |*')"}}) + __git_command_successful || return + + _wanted hotfixes expl 'hotfix' compadd $hotfixes +} + +__git_branch_names () { + local expl + declare -a branch_names + + branch_names=(${${(f)"$(_call_program branchrefs git for-each-ref --format='"%(refname)"' refs/heads 2>/dev/null)"}#refs/heads/}) + __git_command_successful || return + + _wanted branch-names expl branch-name compadd $* - $branch_names +} + +__git_command_successful () { + if (( ${#pipestatus:#0} > 0 )); then + _message 'not a git repository' + return 1 + fi + return 0 +} + +zstyle ':completion:*:*:git:*' user-commands flow:'description for foo' diff --git a/oh-my-zsh/.oh-my-zsh/plugins/git-hubflow/README.md b/oh-my-zsh/.oh-my-zsh/plugins/git-hubflow/README.md new file mode 100644 index 0000000..dada60d --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/git-hubflow/README.md @@ -0,0 +1,24 @@ +# git-hubflow plugin + +This plugin adds completion for [HubFlow](https://datasift.github.io/gitflow/) (GitFlow for GitHub), as well as some +aliases for common commands. HubFlow is a git extension to make it easy to use GitFlow with GitHub. Based on the +original gitflow extension for git. + +The hubflow tool has to be [installed](https://github.com/datasift/gitflow#installation) separately. + +To use it, add `git-hubflow` to the plugins array in your zshrc file: + +```zsh +plugins=(... git-hubflow) +``` + +## Aliases + +| Alias | Command | Description | +|-------|------------------|------------------------------------------------------------------| +| ghf | `git hf` | Print command overview | +| ghff | `git hf feature` | Manage your feature branches | +| ghfr | `git hf release` | Manage your release branches | +| ghfh | `git hf hotfix` | Manage your hotfix branches | +| ghfs | `git hf support` | Manage your support branches | +| ghfu | `git hf update` | Pull upstream changes down into your master and develop branches | diff --git a/oh-my-zsh/.oh-my-zsh/plugins/git-hubflow/git-hubflow.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/git-hubflow/git-hubflow.plugin.zsh new file mode 100644 index 0000000..05479f7 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/git-hubflow/git-hubflow.plugin.zsh @@ -0,0 +1,333 @@ +alias ghf='git hf' +alias ghff='git hf feature' +alias ghfr='git hf release' +alias ghfh='git hf hotfix' +alias ghfs='git hf support' +alias ghfu='git hf update' + +_git-hf () +{ + local curcontext="$curcontext" state line + typeset -A opt_args + + _arguments -C \ + ':command:->command' \ + '*::options:->options' + + case $state in + (command) + + local -a subcommands + subcommands=( + 'init:Initialize a new git repo with support for the branching model.' + 'feature:Manage your feature branches.' + 'release:Manage your release branches.' + 'hotfix:Manage your hotfix branches.' + 'support:Manage your support branches.' + 'update:Pull upstream changes down into your master and develop branches.' + 'version:Shows version information.' + ) + _describe -t commands 'git hf' subcommands + ;; + + (options) + case $line[1] in + + (init) + _arguments \ + -f'[Force setting of gitflow branches, even if already configured]' + ;; + + (version) + ;; + + (hotfix) + __git-hf-hotfix + ;; + + (release) + __git-hf-release + ;; + + (feature) + __git-hf-feature + ;; + esac + ;; + esac +} + +__git-hf-release () +{ + local curcontext="$curcontext" state line + typeset -A opt_args + + _arguments -C \ + ':command:->command' \ + '*::options:->options' + + case $state in + (command) + + local -a subcommands + subcommands=( + 'start:Start a new release branch.' + 'finish:Finish a release branch.' + 'list:List all your release branches. (Alias to `git hf release`)' + 'cancel:Cancel release' + 'push:Push release to github' + 'pull:Pull release from github' + 'track:Track release' + ) + _describe -t commands 'git hf release' subcommands + _arguments \ + -v'[Verbose (more) output]' + ;; + + (options) + case $line[1] in + + (start) + _arguments \ + -F'[Fetch from origin before performing finish]'\ + ':version:__git_hf_version_list' + ;; + + (finish) + _arguments \ + -F'[Fetch from origin before performing finish]' \ + -s'[Sign the release tag cryptographically]'\ + -u'[Use the given GPG-key for the digital signature (implies -s)]'\ + -m'[Use the given tag message]'\ + -p'[Push to $ORIGIN after performing finish]'\ + -k'[Keep branch after performing finish]'\ + -n"[Don't tag this release]"\ + ':version:__git_hf_version_list' + ;; + + *) + _arguments \ + -v'[Verbose (more) output]' + ;; + esac + ;; + esac +} + +__git-hf-hotfix () +{ + local curcontext="$curcontext" state line + typeset -A opt_args + + _arguments -C \ + ':command:->command' \ + '*::options:->options' + + case $state in + (command) + + local -a subcommands + subcommands=( + 'start:Start a new hotfix branch.' + 'finish:Finish a hotfix branch.' + 'list:List all your hotfix branches. (Alias to `git hf hotfix`)' + 'publish:Publish the hotfix branch.' + 'track:Track the hotfix branch.' + 'pull:Pull the hotfix from github.' + 'push:Push the hotfix to github.' + 'cancel:Cancel the hotfix.' + ) + _describe -t commands 'git hf hotfix' subcommands + _arguments \ + -v'[Verbose (more) output]' + ;; + + (options) + case $line[1] in + + (start) + _arguments \ + -F'[Fetch from origin before performing finish]'\ + ':hotfix:__git_hf_version_list'\ + ':branch-name:__git_branch_names' + ;; + + (finish) + _arguments \ + -F'[Fetch from origin before performing finish]' \ + -s'[Sign the release tag cryptographically]'\ + -u'[Use the given GPG-key for the digital signature (implies -s)]'\ + -m'[Use the given tag message]'\ + -p'[Push to $ORIGIN after performing finish]'\ + -k'[Keep branch after performing finish]'\ + -n"[Don't tag this release]"\ + ':hotfix:__git_hf_hotfix_list' + ;; + + *) + _arguments \ + -v'[Verbose (more) output]' + ;; + esac + ;; + esac +} + +__git-hf-feature () +{ + local curcontext="$curcontext" state line + typeset -A opt_args + + _arguments -C \ + ':command:->command' \ + '*::options:->options' + + case $state in + (command) + + local -a subcommands + subcommands=( + 'list:List all your feature branches. (Alias to `git hf feature`)' + 'start:Start a new feature branch' + 'finish:Finish a feature branch' + 'submit:submit' + 'track:track' + 'diff:Diff' + 'rebase:Rebase feature branch against develop' + 'checkout:Checkout feature' + 'pull:Pull feature branch from github' + 'push:Push feature branch to github' + 'cancel:Cancel feature' + ) + _describe -t commands 'git hf feature' subcommands + _arguments \ + -v'[Verbose (more) output]' + ;; + + (options) + case $line[1] in + + (start) + _arguments \ + -F'[Fetch from origin before performing finish]'\ + ':feature:__git_hf_feature_list'\ + ':branch-name:__git_branch_names' + ;; + + (finish) + _arguments \ + -F'[Fetch from origin before performing finish]' \ + -r'[Rebase instead of merge]'\ + ':feature:__git_hf_feature_list' + ;; + + (publish) + _arguments \ + ':feature:__git_hf_feature_list'\ + ;; + + (track) + _arguments \ + ':feature:__git_hf_feature_list'\ + ;; + + (diff) + _arguments \ + ':branch:__git_branch_names'\ + ;; + + (rebase) + _arguments \ + -i'[Do an interactive rebase]' \ + ':branch:__git_branch_names' + ;; + + (checkout) + _arguments \ + ':branch:__git_hf_feature_list'\ + ;; + + (pull) + _arguments \ + ':remote:__git_remotes'\ + ':branch:__git_branch_names' + ;; + + *) + _arguments \ + -v'[Verbose (more) output]' + ;; + esac + ;; + esac +} + +__git_hf_version_list () +{ + local expl + declare -a versions + + versions=(${${(f)"$(_call_program versions git hf release list 2> /dev/null | tr -d ' |*')"}}) + __git_command_successful || return + + _wanted versions expl 'version' compadd $versions +} + +__git_hf_feature_list () +{ + local expl + declare -a features + + features=(${${(f)"$(_call_program features git hf feature list 2> /dev/null | tr -d ' |*')"}}) + __git_command_successful || return + + _wanted features expl 'feature' compadd $features +} + +__git_remotes () { + local expl gitdir remotes + + gitdir=$(_call_program gitdir git rev-parse --git-dir 2>/dev/null) + __git_command_successful || return + + remotes=(${${(f)"$(_call_program remotes git config --get-regexp '"^remote\..*\.url$"')"}//#(#b)remote.(*).url */$match[1]}) + __git_command_successful || return + + # TODO: Should combine the two instead of either or. + if (( $#remotes > 0 )); then + _wanted remotes expl remote compadd $* - $remotes + else + _wanted remotes expl remote _files $* - -W "($gitdir/remotes)" -g "$gitdir/remotes/*" + fi +} + +__git_hf_hotfix_list () +{ + local expl + declare -a hotfixes + + hotfixes=(${${(f)"$(_call_program hotfixes git hf hotfix list 2> /dev/null | tr -d ' |*')"}}) + __git_command_successful || return + + _wanted hotfixes expl 'hotfix' compadd $hotfixes +} + +__git_branch_names () { + local expl + declare -a branch_names + + branch_names=(${${(f)"$(_call_program branchrefs git for-each-ref --format='"%(refname)"' refs/heads 2>/dev/null)"}#refs/heads/}) + __git_command_successful || return + + _wanted branch-names expl branch-name compadd $* - $branch_names +} + +__git_command_successful () { + if (( ${#pipestatus:#0} > 0 )); then + _message 'not a git repository' + return 1 + fi + return 0 +} + +zstyle ':completion:*:*:git:*' user-commands flow:'description for foo' diff --git a/oh-my-zsh/.oh-my-zsh/plugins/git-prompt/git-prompt.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/git-prompt/git-prompt.plugin.zsh new file mode 100644 index 0000000..2776f29 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/git-prompt/git-prompt.plugin.zsh @@ -0,0 +1,92 @@ +# ZSH Git Prompt Plugin from: +# https://github.com/olivierverdier/zsh-git-prompt + +__GIT_PROMPT_DIR="${0:A:h}" + +## Hook function definitions +function chpwd_update_git_vars() { + update_current_git_vars +} + +function preexec_update_git_vars() { + case "$2" in + git*|hub*|gh*|stg*) + __EXECUTED_GIT_COMMAND=1 + ;; + esac +} + +function precmd_update_git_vars() { + if [ -n "$__EXECUTED_GIT_COMMAND" ] || [ ! -n "$ZSH_THEME_GIT_PROMPT_CACHE" ]; then + update_current_git_vars + unset __EXECUTED_GIT_COMMAND + fi +} + +chpwd_functions+=(chpwd_update_git_vars) +precmd_functions+=(precmd_update_git_vars) +preexec_functions+=(preexec_update_git_vars) + + +## Function definitions +function update_current_git_vars() { + unset __CURRENT_GIT_STATUS + + local gitstatus="$__GIT_PROMPT_DIR/gitstatus.py" + _GIT_STATUS=$(python ${gitstatus} 2>/dev/null) + __CURRENT_GIT_STATUS=("${(@s: :)_GIT_STATUS}") + GIT_BRANCH=$__CURRENT_GIT_STATUS[1] + GIT_AHEAD=$__CURRENT_GIT_STATUS[2] + GIT_BEHIND=$__CURRENT_GIT_STATUS[3] + GIT_STAGED=$__CURRENT_GIT_STATUS[4] + GIT_CONFLICTS=$__CURRENT_GIT_STATUS[5] + GIT_CHANGED=$__CURRENT_GIT_STATUS[6] + GIT_UNTRACKED=$__CURRENT_GIT_STATUS[7] +} + +git_super_status() { + precmd_update_git_vars + if [ -n "$__CURRENT_GIT_STATUS" ]; then + STATUS="$ZSH_THEME_GIT_PROMPT_PREFIX$ZSH_THEME_GIT_PROMPT_BRANCH$GIT_BRANCH%{${reset_color}%}" + if [ "$GIT_BEHIND" -ne "0" ]; then + STATUS="$STATUS$ZSH_THEME_GIT_PROMPT_BEHIND$GIT_BEHIND%{${reset_color}%}" + fi + if [ "$GIT_AHEAD" -ne "0" ]; then + STATUS="$STATUS$ZSH_THEME_GIT_PROMPT_AHEAD$GIT_AHEAD%{${reset_color}%}" + fi + STATUS="$STATUS$ZSH_THEME_GIT_PROMPT_SEPARATOR" + if [ "$GIT_STAGED" -ne "0" ]; then + STATUS="$STATUS$ZSH_THEME_GIT_PROMPT_STAGED$GIT_STAGED%{${reset_color}%}" + fi + if [ "$GIT_CONFLICTS" -ne "0" ]; then + STATUS="$STATUS$ZSH_THEME_GIT_PROMPT_CONFLICTS$GIT_CONFLICTS%{${reset_color}%}" + fi + if [ "$GIT_CHANGED" -ne "0" ]; then + STATUS="$STATUS$ZSH_THEME_GIT_PROMPT_CHANGED$GIT_CHANGED%{${reset_color}%}" + fi + if [ "$GIT_UNTRACKED" -ne "0" ]; then + STATUS="$STATUS$ZSH_THEME_GIT_PROMPT_UNTRACKED%{${reset_color}%}" + fi + if [ "$GIT_CHANGED" -eq "0" ] && [ "$GIT_CONFLICTS" -eq "0" ] && [ "$GIT_STAGED" -eq "0" ] && [ "$GIT_UNTRACKED" -eq "0" ]; then + STATUS="$STATUS$ZSH_THEME_GIT_PROMPT_CLEAN" + fi + STATUS="$STATUS%{${reset_color}%}$ZSH_THEME_GIT_PROMPT_SUFFIX" + echo "$STATUS" + fi +} + +# Default values for the appearance of the prompt. +ZSH_THEME_GIT_PROMPT_PREFIX="(" +ZSH_THEME_GIT_PROMPT_SUFFIX=")" +ZSH_THEME_GIT_PROMPT_SEPARATOR="|" +ZSH_THEME_GIT_PROMPT_BRANCH="%{$fg_bold[magenta]%}" +ZSH_THEME_GIT_PROMPT_STAGED="%{$fg[red]%}%{●%G%}" +ZSH_THEME_GIT_PROMPT_CONFLICTS="%{$fg[red]%}%{✖%G%}" +ZSH_THEME_GIT_PROMPT_CHANGED="%{$fg[blue]%}%{✚%G%}" +ZSH_THEME_GIT_PROMPT_BEHIND="%{↓%G%}" +ZSH_THEME_GIT_PROMPT_AHEAD="%{↑%G%}" +ZSH_THEME_GIT_PROMPT_UNTRACKED="%{…%G%}" +ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg_bold[green]%}%{✔%G%}" + +# Set the prompt. +RPROMPT='$(git_super_status)' diff --git a/oh-my-zsh/.oh-my-zsh/plugins/git-prompt/gitstatus.py b/oh-my-zsh/.oh-my-zsh/plugins/git-prompt/gitstatus.py new file mode 100644 index 0000000..a4d07cd --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/git-prompt/gitstatus.py @@ -0,0 +1,84 @@ +#!/usr/bin/env python +from __future__ import print_function + +import sys +import re +import shlex +from subprocess import Popen, PIPE, check_output + + +def get_tagname_or_hash(): + """return tagname if exists else hash""" + cmd = 'git log -1 --format="%h%d"' + output = check_output(shlex.split(cmd)).decode('utf-8').strip() + hash_, tagname = None, None + # get hash + m = re.search('\(.*\)$', output) + if m: + hash_ = output[:m.start()-1] + # get tagname + m = re.search('tag: .*[,\)]', output) + if m: + tagname = 'tags/' + output[m.start()+len('tag: '): m.end()-1] + + if tagname: + return tagname.replace(' ', '') + elif hash_: + return hash_ + return None + + +# `git status --porcelain --branch` can collect all information +# branch, remote_branch, untracked, staged, changed, conflicts, ahead, behind +po = Popen(['git', 'status', '--porcelain', '--branch'], stdout=PIPE, stderr=PIPE) +stdout, sterr = po.communicate() +if po.returncode != 0: + sys.exit(0) # Not a git repository + +# collect git status information +untracked, staged, changed, conflicts = [], [], [], [] +ahead, behind = 0, 0 +status = [(line[0], line[1], line[2:]) for line in stdout.decode('utf-8').splitlines()] +for st in status: + if st[0] == '#' and st[1] == '#': + if re.search('Initial commit on', st[2]) or re.search('No commits yet on', st[2]): + branch = st[2].split(' ')[-1] + elif re.search('no branch', st[2]): # detached status + branch = get_tagname_or_hash() + elif len(st[2].strip().split('...')) == 1: + branch = st[2].strip() + else: + # current and remote branch info + branch, rest = st[2].strip().split('...') + if len(rest.split(' ')) == 1: + # remote_branch = rest.split(' ')[0] + pass + else: + # ahead or behind + divergence = ' '.join(rest.split(' ')[1:]) + divergence = divergence.lstrip('[').rstrip(']') + for div in divergence.split(', '): + if 'ahead' in div: + ahead = int(div[len('ahead '):].strip()) + elif 'behind' in div: + behind = int(div[len('behind '):].strip()) + elif st[0] == '?' and st[1] == '?': + untracked.append(st) + else: + if st[1] == 'M': + changed.append(st) + if st[0] == 'U': + conflicts.append(st) + elif st[0] != ' ': + staged.append(st) + +out = ' '.join([ + branch, + str(ahead), + str(behind), + str(len(staged)), + str(len(conflicts)), + str(len(changed)), + str(len(untracked)), +]) +print(out, end='') diff --git a/oh-my-zsh/.oh-my-zsh/plugins/git-remote-branch/git-remote-branch.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/git-remote-branch/git-remote-branch.plugin.zsh new file mode 100644 index 0000000..6c5ab8f --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/git-remote-branch/git-remote-branch.plugin.zsh @@ -0,0 +1,19 @@ +_git_remote_branch() { + ref=$(git symbolic-ref HEAD 2> /dev/null) + if [[ -n $ref ]]; then + if (( CURRENT == 2 )); then + # first arg: operation + compadd create publish rename delete track + elif (( CURRENT == 3 )); then + # second arg: remote branch name + remotes=`git remote | tr '\n' '|' | sed "s/\|$//g"` + compadd `git branch -r | grep -v HEAD | sed "s/$remotes\///" | sed "s/ //g"` + elif (( CURRENT == 4 )); then + # third arg: remote name + compadd `git remote` + fi + else; + _files + fi +} +compdef _git_remote_branch grb diff --git a/oh-my-zsh/.oh-my-zsh/plugins/git/README.md b/oh-my-zsh/.oh-my-zsh/plugins/git/README.md new file mode 100644 index 0000000..76da2a8 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/git/README.md @@ -0,0 +1,10 @@ +## git + +**Maintainer:** [@ncanceill](https://github.com/ncanceill) + +This plugin adds many useful aliases and functions. + +### Usage + +See the [wiki](https://github.com/robbyrussell/oh-my-zsh/wiki/Plugin:git) for a list of aliases and functions provided by the plugin. + diff --git a/oh-my-zsh/.oh-my-zsh/plugins/git/git.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/git/git.plugin.zsh new file mode 100644 index 0000000..45a7061 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/git/git.plugin.zsh @@ -0,0 +1,263 @@ +# Query/use custom command for `git`. +zstyle -s ":vcs_info:git:*:-all-" "command" _omz_git_git_cmd +: ${_omz_git_git_cmd:=git} + +# +# Functions +# + +# The name of the current branch +# Back-compatibility wrapper for when this function was defined here in +# the plugin, before being pulled in to core lib/git.zsh as git_current_branch() +# to fix the core -> git plugin dependency. +function current_branch() { + git_current_branch +} +# The list of remotes +function current_repository() { + if ! $_omz_git_git_cmd rev-parse --is-inside-work-tree &> /dev/null; then + return + fi + echo $($_omz_git_git_cmd remote -v | cut -d':' -f 2) +} +# Pretty log messages +function _git_log_prettily(){ + if ! [ -z $1 ]; then + git log --pretty=$1 + fi +} +# Warn if the current branch is a WIP +function work_in_progress() { + if $(git log -n 1 2>/dev/null | grep -q -c "\-\-wip\-\-"); then + echo "WIP!!" + fi +} + +# +# Aliases +# (sorted alphabetically) +# + +alias g='git' + +alias ga='git add' +alias gaa='git add --all' +alias gapa='git add --patch' +alias gau='git add --update' +alias gav='git add --verbose' +alias gap='git apply' + +alias gb='git branch' +alias gba='git branch -a' +alias gbd='git branch -d' +alias gbda='git branch --no-color --merged | command grep -vE "^(\*|\s*(master|develop|dev)\s*$)" | command xargs -n 1 git branch -d' +alias gbD='git branch -D' +alias gbl='git blame -b -w' +alias gbnm='git branch --no-merged' +alias gbr='git branch --remote' +alias gbs='git bisect' +alias gbsb='git bisect bad' +alias gbsg='git bisect good' +alias gbsr='git bisect reset' +alias gbss='git bisect start' + +alias gc='git commit -v' +alias gc!='git commit -v --amend' +alias gcn!='git commit -v --no-edit --amend' +alias gca='git commit -v -a' +alias gca!='git commit -v -a --amend' +alias gcan!='git commit -v -a --no-edit --amend' +alias gcans!='git commit -v -a -s --no-edit --amend' +alias gcam='git commit -a -m' +alias gcsm='git commit -s -m' +alias gcb='git checkout -b' +alias gcf='git config --list' +alias gcl='git clone --recurse-submodules' +alias gclean='git clean -fd' +alias gpristine='git reset --hard && git clean -dfx' +alias gcm='git checkout master' +alias gcd='git checkout develop' +alias gcmsg='git commit -m' +alias gco='git checkout' +alias gcount='git shortlog -sn' +compdef _git gcount +alias gcp='git cherry-pick' +alias gcpa='git cherry-pick --abort' +alias gcpc='git cherry-pick --continue' +alias gcs='git commit -S' + +alias gd='git diff' +alias gdca='git diff --cached' +alias gdcw='git diff --cached --word-diff' +alias gdct='git describe --tags `git rev-list --tags --max-count=1`' +alias gds='git diff --staged' +alias gdt='git diff-tree --no-commit-id --name-only -r' +alias gdw='git diff --word-diff' + +gdv() { git diff -w "$@" | view - } +compdef _git gdv=git-diff + +alias gf='git fetch' +alias gfa='git fetch --all --prune' +alias gfo='git fetch origin' + +function gfg() { git ls-files | grep $@ } +compdef _grep gfg + +alias gg='git gui citool' +alias gga='git gui citool --amend' + +ggf() { + [[ "$#" != 1 ]] && local b="$(git_current_branch)" + git push --force origin "${b:=$1}" +} +ggfl() { +[[ "$#" != 1 ]] && local b="$(git_current_branch)" +git push --force-with-lease origin "${b:=$1}" +} +compdef _git ggf=git-checkout + +ggl() { + if [[ "$#" != 0 ]] && [[ "$#" != 1 ]]; then + git pull origin "${*}" + else + [[ "$#" == 0 ]] && local b="$(git_current_branch)" + git pull origin "${b:=$1}" + fi +} +compdef _git ggl=git-checkout + +ggp() { + if [[ "$#" != 0 ]] && [[ "$#" != 1 ]]; then + git push origin "${*}" + else + [[ "$#" == 0 ]] && local b="$(git_current_branch)" + git push origin "${b:=$1}" + fi +} +compdef _git ggp=git-checkout + +ggpnp() { + if [[ "$#" == 0 ]]; then + ggl && ggp + else + ggl "${*}" && ggp "${*}" + fi +} +compdef _git ggpnp=git-checkout + +ggu() { + [[ "$#" != 1 ]] && local b="$(git_current_branch)" + git pull --rebase origin "${b:=$1}" +} +compdef _git ggu=git-checkout + +alias ggpur='ggu' +compdef _git ggpur=git-checkout + +alias ggpull='git pull origin $(git_current_branch)' +compdef _git ggpull=git-checkout + +alias ggpush='git push origin $(git_current_branch)' +compdef _git ggpush=git-checkout + +alias ggsup='git branch --set-upstream-to=origin/$(git_current_branch)' +alias gpsup='git push --set-upstream origin $(git_current_branch)' + +alias ghh='git help' + +alias gignore='git update-index --assume-unchanged' +alias gignored='git ls-files -v | grep "^[[:lower:]]"' +alias git-svn-dcommit-push='git svn dcommit && git push github master:svntrunk' +compdef _git git-svn-dcommit-push=git + +alias gk='\gitk --all --branches' +compdef _git gk='gitk' +alias gke='\gitk --all $(git log -g --pretty=%h)' +compdef _git gke='gitk' + +alias gl='git pull' +alias glg='git log --stat' +alias glgp='git log --stat -p' +alias glgg='git log --graph' +alias glgga='git log --graph --decorate --all' +alias glgm='git log --graph --max-count=10' +alias glo='git log --oneline --decorate' +alias glol="git log --graph --pretty='%Cred%h%Creset -%C(auto)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset'" +alias glols="git log --graph --pretty='%Cred%h%Creset -%C(auto)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --stat" +alias glod="git log --graph --pretty='%Cred%h%Creset -%C(auto)%d%Creset %s %Cgreen(%ad) %C(bold blue)<%an>%Creset'" +alias glods="git log --graph --pretty='%Cred%h%Creset -%C(auto)%d%Creset %s %Cgreen(%ad) %C(bold blue)<%an>%Creset' --date=short" +alias glola="git log --graph --pretty='%Cred%h%Creset -%C(auto)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --all" +alias glog='git log --oneline --decorate --graph' +alias gloga='git log --oneline --decorate --graph --all' +alias glp="_git_log_prettily" +compdef _git glp=git-log + +alias gm='git merge' +alias gmom='git merge origin/master' +alias gmt='git mergetool --no-prompt' +alias gmtvim='git mergetool --no-prompt --tool=vimdiff' +alias gmum='git merge upstream/master' +alias gma='git merge --abort' + +alias gp='git push' +alias gpd='git push --dry-run' +alias gpf='git push --force-with-lease' +alias gpf!='git push --force' +alias gpoat='git push origin --all && git push origin --tags' +compdef _git gpoat=git-push +alias gpu='git push upstream' +alias gpv='git push -v' + +alias gr='git remote' +alias gra='git remote add' +alias grb='git rebase' +alias grba='git rebase --abort' +alias grbc='git rebase --continue' +alias grbd='git rebase develop' +alias grbi='git rebase -i' +alias grbm='git rebase master' +alias grbs='git rebase --skip' +alias grh='git reset' +alias grhh='git reset --hard' +alias grm='git rm' +alias grmc='git rm --cached' +alias grmv='git remote rename' +alias grrm='git remote remove' +alias grset='git remote set-url' +alias grt='cd $(git rev-parse --show-toplevel || echo ".")' +alias gru='git reset --' +alias grup='git remote update' +alias grv='git remote -v' + +alias gsb='git status -sb' +alias gsd='git svn dcommit' +alias gsh='git show' +alias gsi='git submodule init' +alias gsps='git show --pretty=short --show-signature' +alias gsr='git svn rebase' +alias gss='git status -s' +alias gst='git status' +alias gsta='git stash save' +alias gstaa='git stash apply' +alias gstc='git stash clear' +alias gstd='git stash drop' +alias gstl='git stash list' +alias gstp='git stash pop' +alias gsts='git stash show --text' +alias gstall='git stash --all' +alias gsu='git submodule update' + +alias gts='git tag -s' +alias gtv='git tag | sort -V' + +alias gunignore='git update-index --no-assume-unchanged' +alias gunwip='git log -n 1 | grep -q -c "\-\-wip\-\-" && git reset HEAD~1' +alias gup='git pull --rebase' +alias gupv='git pull --rebase -v' +alias gupa='git pull --rebase --autostash' +alias gupav='git pull --rebase --autostash -v' +alias glum='git pull upstream master' + +alias gwch='git whatchanged -p --abbrev-commit --pretty=medium' +alias gwip='git add -A; git rm $(git ls-files --deleted) 2> /dev/null; git commit --no-verify -m "--wip-- [skip ci]"' diff --git a/oh-my-zsh/.oh-my-zsh/plugins/gitfast/README.md b/oh-my-zsh/.oh-my-zsh/plugins/gitfast/README.md new file mode 100644 index 0000000..c307370 --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/gitfast/README.md @@ -0,0 +1,138 @@ +# Gitfast plugin + +This plugin adds completion for Git, using the zsh completion from git.git folks, which is much faster than the official one from zsh. A lot of zsh-specific features are not supported, like descriptions for every argument, but everything the bash completion has, this one does too (as it is using it behind the scenes). Not only is it faster, it should be more robust, and updated regularly to the latest git upstream version.. + +To use it, add `gitfast` to the plugins array in your zshrc file: + +```zsh +plugins=(... gitfast) +``` + +## Aliases + +| Alias | Command | +| -------------------- | -------------------------------------------------------------------------------------------------------------------------------------- | +| g | `git` | +| ga | `git add` | +| gaa | `git add --all` | +| gapa | `git add --patch` | +| gau | `git add --update` | +| gb | `git branch` | +| gba | `git branch -a` | +| gbd | `git branch -d` | +| gbda | `git branch --no-color --merged | command grep -vE "^(\*|\s*(master|develop|dev)\s*$)" | command xargs -n 1 git branch -d` | +| gbl | `git blame -b -w` | +| gbnm | `git branch --no-merged` | +| gbr | `git branch --remote` | +| gbs | `git bisect` | +| gbsb | `git bisect bad` | +| gbsg | `git bisect good` | +| gbsr | `git bisect reset` | +| gbss | `git bisect start` | +| gc | `git commit -v` | +| gc! | `git commit -v --amend` | +| gca | `git commit -v -a` | +| gca! | `git commit -v -a --amend` | +| gcam | `git commit -a -m` | +| gcan! | `git commit -v -a --no-edit --amend` | +| gcans! | `git commit -v -a -s --no-edit --amend` | +| gcb | `git checkout -b` | +| gcd | `git checkout develop` | +| gcf | `git config --list` | +| gcl | `git clone --recursive` | +| gclean | `git clean -fd` | +| gcm | `git checkout master` | +| gcmsg | `git commit -m` | +| gcn! | `git commit -v --no-edit --amend` | +| gco | `git checkout` | +| gcount | `git shortlog -sn` | +| gcp | `git cherry-pick` | +| gcpa | `git cherry-pick --abort` | +| gcpc | `git cherry-pick --continue` | +| gcs | `git commit -S` | +| gcsm | `git commit -s -m` | +| gd | `git diff` | +| gdca | `git diff --cached` | +| gdct | `` git describe --tags `git rev-list --tags --max-count=1` `` | +| gdt | `git diff-tree --no-commit-id --name-only -r` | +| gdw | `git diff --word-diff` | +| gf | `git fetch` | +| gfa | `git fetch --all --prune` | +| gfo | `git fetch origin` | +| gg | `git gui citool` | +| gga | `git gui citool --amend` | +| ggpull | `git pull origin $(git_current_branch)` | +| ggpur | `ggu` | +| ggpush | `git push origin $(git_current_branch)` | +| ggsup | `git branch --set-upstream-to=origin/$(git_current_branch)` | +| ghh | `git help` | +| gignore | `git update-index --assume-unchanged` | +| gignored | `git ls-files -v | grep "^[[:lower:]]"` | +| git-svn-dcommit-push | `git svn dcommit && git push github master:svntrunk` | +| gk | `\gitk --all --branches` | +| gke | `\gitk --all $(git log -g --pretty=%h)` | +| gl | `git pull` | +| glg | `git log --stat` | +| glgg | `git log --graph` | +| glgga | `git log --graph --decorate --all` | +| glgm | `git log --graph --max-count=10` | +| glgp | `git log --stat -p` | +| glo | `git log --oneline --decorate` | +| glog | `git log --oneline --decorate --graph` | +| gloga | `git log --oneline --decorate --graph --all` | +| glol | `git log --graph --pretty='\''%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset'\'' --abbrev-commit` | +| glola | `git log --graph --pretty='\''%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset'\'' --abbrev-commit --all` | +| glp | `_git_log_prettily` | +| glum | `git pull upstream master` | +| gm | `git merge` | +| gmom | `git merge origin/master` | +| gmt | `git mergetool --no-prompt` | +| gmtvim | `git mergetool --no-prompt --tool=vimdiff` | +| gmum | `git merge upstream/master` | +| gp | `git push` | +| gpd | `git push --dry-run` | +| gpoat | `git push origin --all && git push origin --tags` | +| gpristine | `git reset --hard && git clean -dfx` | +| gpsup | `git push --set-upstream origin $(git_current_branch)` | +| gpu | `git push upstream` | +| gpv | `git push -v` | +| gr | `git remote` | +| gra | `git remote add` | +| grb | `git rebase` | +| grba | `git rebase --abort` | +| grbc | `git rebase --continue` | +| grbi | `git rebase -i` | +| grbm | `git rebase master` | +| grbs | `git rebase --skip` | +| grh | `git reset HEAD` | +| grhh | `git reset HEAD --hard` | +| grmv | `git remote rename` | +| grrm | `git remote remove` | +| grset | `git remote set-url` | +| grt | `cd $(git rev-parse --show-toplevel || echo ".")` | +| gru | `git reset --` | +| grup | `git remote update` | +| grv | `git remote -v` | +| gsb | `git status -sb` | +| gsd | `git svn dcommit` | +| gsi | `git submodule init` | +| gsps | `git show --pretty=short --show-signature` | +| gsr | `git svn rebase` | +| gss | `git status -s` | +| gst | `git status` | +| gsta | `git stash save` | +| gstaa | `git stash apply` | +| gstc | `git stash clear` | +| gstd | `git stash drop` | +| gstl | `git stash list` | +| gstp | `git stash pop` | +| gsts | `git stash show --text` | +| gsu | `git submodule update` | +| gts | `git tag -s` | +| gtv | `git tag | sort -V` | +| gunignore | `git update-index --no-assume-unchanged` | +| gunwip | `git log -n 1 | grep -q -c "\-\-wip\-\-" && git reset HEAD~1` | +| gup | `git pull --rebase` | +| gupv | `git pull --rebase -v` | +| gwch | `git whatchanged -p --abbrev-commit --pretty=medium` | +| gwip | `git add -A; git rm $(git ls-files --deleted) 2> /dev/null; git commit --no-verify -m "--wip-- [skip ci]"` | diff --git a/oh-my-zsh/.oh-my-zsh/plugins/gitfast/_git b/oh-my-zsh/.oh-my-zsh/plugins/gitfast/_git new file mode 100644 index 0000000..6d1b4ec --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/gitfast/_git @@ -0,0 +1,227 @@ +#compdef git gitk + +# zsh completion wrapper for git +# +# Copyright (c) 2012-2013 Felipe Contreras +# +# You need git's bash completion script installed somewhere, by default it +# would be the location bash-completion uses. +# +# If your script is somewhere else, you can configure it on your ~/.zshrc: +# +# zstyle ':completion:*:*:git:*' script ~/.git-completion.sh +# +# The recommended way to install this script is to copy to '~/.zsh/_git', and +# then add the following to your ~/.zshrc file: +# +# fpath=(~/.zsh $fpath) + +complete () +{ + # do nothing + return 0 +} + +zstyle -T ':completion:*:*:git:*' tag-order && \ + zstyle ':completion:*:*:git:*' tag-order 'common-commands' + +zstyle -s ":completion:*:*:git:*" script script +if [ -z "$script" ]; then + local -a locations + local e + locations=( + "$(dirname ${funcsourcetrace[1]%:*})/git-completion.bash" + '/etc/bash_completion.d/git' # fedora, old debian + '/usr/share/bash-completion/completions/git' # arch, ubuntu, new debian + '/usr/share/bash-completion/git' # gentoo + ) + for e in $locations; do + test -f $e && script="$e" && break + done +fi +ZSH_VERSION='' . "$script" + +__gitcomp () +{ + emulate -L zsh + + local cur_="${3-$cur}" + + case "$cur_" in + --*=) + ;; + *) + local c IFS=$' \t\n' + local -a array + for c in ${=1}; do + c="$c${4-}" + case $c in + --*=*|*.) ;; + *) c="$c " ;; + esac + array+=("$c") + done + compset -P '*[=:]' + compadd -Q -S '' -p "${2-}" -a -- array && _ret=0 + ;; + esac +} + +__gitcomp_nl () +{ + emulate -L zsh + + local IFS=$'\n' + compset -P '*[=:]' + compadd -Q -S "${4- }" -p "${2-}" -- ${=1} && _ret=0 +} + +__gitcomp_nl_append () +{ + emulate -L zsh + + local IFS=$'\n' + compadd -Q -S "${4- }" -p "${2-}" -- ${=1} && _ret=0 +} + +__gitcomp_file () +{ + emulate -L zsh + + local IFS=$'\n' + compset -P '*[=:]' + compadd -Q -p "${2-}" -f -- ${=1} && _ret=0 +} + +__git_zsh_bash_func () +{ + emulate -L ksh + + local command=$1 + + local completion_func="_git_${command//-/_}" + declare -f $completion_func >/dev/null && $completion_func && return + + local expansion=$(__git_aliased_command "$command") + if [ -n "$expansion" ]; then + words[1]=$expansion + completion_func="_git_${expansion//-/_}" + declare -f $completion_func >/dev/null && $completion_func + fi +} + +__git_zsh_cmd_common () +{ + local -a list + list=( + add:'add file contents to the index' + bisect:'find by binary search the change that introduced a bug' + branch:'list, create, or delete branches' + checkout:'checkout a branch or paths to the working tree' + clone:'clone a repository into a new directory' + commit:'record changes to the repository' + diff:'show changes between commits, commit and working tree, etc' + fetch:'download objects and refs from another repository' + grep:'print lines matching a pattern' + init:'create an empty Git repository or reinitialize an existing one' + log:'show commit logs' + merge:'join two or more development histories together' + mv:'move or rename a file, a directory, or a symlink' + pull:'fetch from and merge with another repository or a local branch' + push:'update remote refs along with associated objects' + rebase:'forward-port local commits to the updated upstream head' + reset:'reset current HEAD to the specified state' + rm:'remove files from the working tree and from the index' + show:'show various types of objects' + status:'show the working tree status' + tag:'create, list, delete or verify a tag object signed with GPG') + _describe -t common-commands 'common commands' list && _ret=0 +} + +__git_zsh_cmd_alias () +{ + local -a list + list=(${${${(0)"$(git config -z --get-regexp '^alias\.')"}#alias.}%$'\n'*}) + _describe -t alias-commands 'aliases' list $* && _ret=0 +} + +__git_zsh_cmd_all () +{ + local -a list + emulate ksh -c __git_compute_all_commands + list=( ${=__git_all_commands} ) + _describe -t all-commands 'all commands' list && _ret=0 +} + +__git_zsh_main () +{ + local curcontext="$curcontext" state state_descr line + typeset -A opt_args + local -a orig_words + + orig_words=( ${words[@]} ) + + _arguments -C \ + '(-p --paginate --no-pager)'{-p,--paginate}'[pipe all output into ''less'']' \ + '(-p --paginate)--no-pager[do not pipe git output into a pager]' \ + '--git-dir=-[set the path to the repository]: :_directories' \ + '--bare[treat the repository as a bare repository]' \ + '(- :)--version[prints the git suite version]' \ + '--exec-path=-[path to where your core git programs are installed]:: :_directories' \ + '--html-path[print the path where git''s HTML documentation is installed]' \ + '--info-path[print the path where the Info files are installed]' \ + '--man-path[print the manpath (see `man(1)`) for the man pages]' \ + '--work-tree=-[set the path to the working tree]: :_directories' \ + '--namespace=-[set the git namespace]' \ + '--no-replace-objects[do not use replacement refs to replace git objects]' \ + '(- :)--help[prints the synopsis and a list of the most commonly used commands]: :->arg' \ + '(-): :->command' \ + '(-)*:: :->arg' && return + + case $state in + (command) + _alternative \ + 'alias-commands:alias:__git_zsh_cmd_alias' \ + 'common-commands:common:__git_zsh_cmd_common' \ + 'all-commands:all:__git_zsh_cmd_all' && _ret=0 + ;; + (arg) + local command="${words[1]}" __git_dir + + if (( $+opt_args[--bare] )); then + __git_dir='.' + else + __git_dir=${opt_args[--git-dir]} + fi + + (( $+opt_args[--help] )) && command='help' + + words=( ${orig_words[@]} ) + + __git_zsh_bash_func $command + ;; + esac +} + +_git () +{ + local _ret=1 + local cur cword prev + + cur=${words[CURRENT]} + prev=${words[CURRENT-1]} + let cword=CURRENT-1 + + if (( $+functions[__${service}_zsh_main] )); then + __${service}_zsh_main + elif (( $+functions[__${service}_main] )); then + emulate ksh -c __${service}_main + elif (( $+functions[_${service}] )); then + emulate ksh -c _${service} + fi + + let _ret && _default && _ret=0 + return _ret +} + +_git diff --git a/oh-my-zsh/.oh-my-zsh/plugins/gitfast/git-completion.bash b/oh-my-zsh/.oh-my-zsh/plugins/gitfast/git-completion.bash new file mode 100644 index 0000000..8ce6b5c --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/gitfast/git-completion.bash @@ -0,0 +1,2776 @@ +# bash/zsh completion support for core Git. +# +# Copyright (C) 2006,2007 Shawn O. Pearce +# Conceptually based on gitcompletion (http://gitweb.hawaga.org.uk/). +# Distributed under the GNU General Public License, version 2.0. +# +# The contained completion routines provide support for completing: +# +# *) local and remote branch names +# *) local and remote tag names +# *) .git/remotes file names +# *) git 'subcommands' +# *) git email aliases for git-send-email +# *) tree paths within 'ref:path/to/file' expressions +# *) file paths within current working directory and index +# *) common --long-options +# +# To use these routines: +# +# 1) Copy this file to somewhere (e.g. ~/.git-completion.bash). +# 2) Add the following line to your .bashrc/.zshrc: +# source ~/.git-completion.bash +# 3) Consider changing your PS1 to also show the current branch, +# see git-prompt.sh for details. +# +# If you use complex aliases of form '!f() { ... }; f', you can use the null +# command ':' as the first command in the function body to declare the desired +# completion style. For example '!f() { : git commit ; ... }; f' will +# tell the completion to use commit completion. This also works with aliases +# of form "!sh -c '...'". For example, "!sh -c ': git commit ; ... '". + +case "$COMP_WORDBREAKS" in +*:*) : great ;; +*) COMP_WORDBREAKS="$COMP_WORDBREAKS:" +esac + +# __gitdir accepts 0 or 1 arguments (i.e., location) +# returns location of .git repo +__gitdir () +{ + if [ -z "${1-}" ]; then + if [ -n "${__git_dir-}" ]; then + echo "$__git_dir" + elif [ -n "${GIT_DIR-}" ]; then + test -d "${GIT_DIR-}" || return 1 + echo "$GIT_DIR" + elif [ -d .git ]; then + echo .git + else + git rev-parse --git-dir 2>/dev/null + fi + elif [ -d "$1/.git" ]; then + echo "$1/.git" + else + echo "$1" + fi +} + +# The following function is based on code from: +# +# bash_completion - programmable completion functions for bash 3.2+ +# +# Copyright © 2006-2008, Ian Macdonald +# © 2009-2010, Bash Completion Maintainers +# +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2, or (at your option) +# any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software Foundation, +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +# +# The latest version of this software can be obtained here: +# +# http://bash-completion.alioth.debian.org/ +# +# RELEASE: 2.x + +# This function can be used to access a tokenized list of words +# on the command line: +# +# __git_reassemble_comp_words_by_ref '=:' +# if test "${words_[cword_-1]}" = -w +# then +# ... +# fi +# +# The argument should be a collection of characters from the list of +# word completion separators (COMP_WORDBREAKS) to treat as ordinary +# characters. +# +# This is roughly equivalent to going back in time and setting +# COMP_WORDBREAKS to exclude those characters. The intent is to +# make option types like --date= and : easy to +# recognize by treating each shell word as a single token. +# +# It is best not to set COMP_WORDBREAKS directly because the value is +# shared with other completion scripts. By the time the completion +# function gets called, COMP_WORDS has already been populated so local +# changes to COMP_WORDBREAKS have no effect. +# +# Output: words_, cword_, cur_. + +__git_reassemble_comp_words_by_ref() +{ + local exclude i j first + # Which word separators to exclude? + exclude="${1//[^$COMP_WORDBREAKS]}" + cword_=$COMP_CWORD + if [ -z "$exclude" ]; then + words_=("${COMP_WORDS[@]}") + return + fi + # List of word completion separators has shrunk; + # re-assemble words to complete. + for ((i=0, j=0; i < ${#COMP_WORDS[@]}; i++, j++)); do + # Append each nonempty word consisting of just + # word separator characters to the current word. + first=t + while + [ $i -gt 0 ] && + [ -n "${COMP_WORDS[$i]}" ] && + # word consists of excluded word separators + [ "${COMP_WORDS[$i]//[^$exclude]}" = "${COMP_WORDS[$i]}" ] + do + # Attach to the previous token, + # unless the previous token is the command name. + if [ $j -ge 2 ] && [ -n "$first" ]; then + ((j--)) + fi + first= + words_[$j]=${words_[j]}${COMP_WORDS[i]} + if [ $i = $COMP_CWORD ]; then + cword_=$j + fi + if (($i < ${#COMP_WORDS[@]} - 1)); then + ((i++)) + else + # Done. + return + fi + done + words_[$j]=${words_[j]}${COMP_WORDS[i]} + if [ $i = $COMP_CWORD ]; then + cword_=$j + fi + done +} + +if ! type _get_comp_words_by_ref >/dev/null 2>&1; then +_get_comp_words_by_ref () +{ + local exclude cur_ words_ cword_ + if [ "$1" = "-n" ]; then + exclude=$2 + shift 2 + fi + __git_reassemble_comp_words_by_ref "$exclude" + cur_=${words_[cword_]} + while [ $# -gt 0 ]; do + case "$1" in + cur) + cur=$cur_ + ;; + prev) + prev=${words_[$cword_-1]} + ;; + words) + words=("${words_[@]}") + ;; + cword) + cword=$cword_ + ;; + esac + shift + done +} +fi + +__gitcompappend () +{ + local x i=${#COMPREPLY[@]} + for x in $1; do + if [[ "$x" == "$3"* ]]; then + COMPREPLY[i++]="$2$x$4" + fi + done +} + +__gitcompadd () +{ + COMPREPLY=() + __gitcompappend "$@" +} + +# Generates completion reply, appending a space to possible completion words, +# if necessary. +# It accepts 1 to 4 arguments: +# 1: List of possible completion words. +# 2: A prefix to be added to each possible completion word (optional). +# 3: Generate possible completion matches for this word (optional). +# 4: A suffix to be appended to each possible completion word (optional). +__gitcomp () +{ + local cur_="${3-$cur}" + + case "$cur_" in + --*=) + ;; + *) + local c i=0 IFS=$' \t\n' + for c in $1; do + c="$c${4-}" + if [[ $c == "$cur_"* ]]; then + case $c in + --*=*|*.) ;; + *) c="$c " ;; + esac + COMPREPLY[i++]="${2-}$c" + fi + done + ;; + esac +} + +# Variation of __gitcomp_nl () that appends to the existing list of +# completion candidates, COMPREPLY. +__gitcomp_nl_append () +{ + local IFS=$'\n' + __gitcompappend "$1" "${2-}" "${3-$cur}" "${4- }" +} + +# Generates completion reply from newline-separated possible completion words +# by appending a space to all of them. +# It accepts 1 to 4 arguments: +# 1: List of possible completion words, separated by a single newline. +# 2: A prefix to be added to each possible completion word (optional). +# 3: Generate possible completion matches for this word (optional). +# 4: A suffix to be appended to each possible completion word instead of +# the default space (optional). If specified but empty, nothing is +# appended. +__gitcomp_nl () +{ + COMPREPLY=() + __gitcomp_nl_append "$@" +} + +# Generates completion reply with compgen from newline-separated possible +# completion filenames. +# It accepts 1 to 3 arguments: +# 1: List of possible completion filenames, separated by a single newline. +# 2: A directory prefix to be added to each possible completion filename +# (optional). +# 3: Generate possible completion matches for this word (optional). +__gitcomp_file () +{ + local IFS=$'\n' + + # XXX does not work when the directory prefix contains a tilde, + # since tilde expansion is not applied. + # This means that COMPREPLY will be empty and Bash default + # completion will be used. + __gitcompadd "$1" "${2-}" "${3-$cur}" "" + + # use a hack to enable file mode in bash < 4 + compopt -o filenames +o nospace 2>/dev/null || + compgen -f /non-existing-dir/ > /dev/null +} + +# Execute 'git ls-files', unless the --committable option is specified, in +# which case it runs 'git diff-index' to find out the files that can be +# committed. It return paths relative to the directory specified in the first +# argument, and using the options specified in the second argument. +__git_ls_files_helper () +{ + if [ "$2" == "--committable" ]; then + git -C "$1" diff-index --name-only --relative HEAD + else + # NOTE: $2 is not quoted in order to support multiple options + git -C "$1" ls-files --exclude-standard $2 + fi 2>/dev/null +} + + +# __git_index_files accepts 1 or 2 arguments: +# 1: Options to pass to ls-files (required). +# 2: A directory path (optional). +# If provided, only files within the specified directory are listed. +# Sub directories are never recursed. Path must have a trailing +# slash. +__git_index_files () +{ + local dir="$(__gitdir)" root="${2-.}" file + + if [ -d "$dir" ]; then + __git_ls_files_helper "$root" "$1" | + while read -r file; do + case "$file" in + ?*/*) echo "${file%%/*}" ;; + *) echo "$file" ;; + esac + done | sort | uniq + fi +} + +__git_heads () +{ + local dir="$(__gitdir)" + if [ -d "$dir" ]; then + git --git-dir="$dir" for-each-ref --format='%(refname:short)' \ + refs/heads + return + fi +} + +__git_tags () +{ + local dir="$(__gitdir)" + if [ -d "$dir" ]; then + git --git-dir="$dir" for-each-ref --format='%(refname:short)' \ + refs/tags + return + fi +} + +# __git_refs accepts 0, 1 (to pass to __gitdir), or 2 arguments +# presence of 2nd argument means use the guess heuristic employed +# by checkout for tracking branches +__git_refs () +{ + local i hash dir="$(__gitdir "${1-}")" track="${2-}" + local format refs + if [ -d "$dir" ]; then + case "$cur" in + refs|refs/*) + format="refname" + refs="${cur%/*}" + track="" + ;; + *) + for i in HEAD FETCH_HEAD ORIG_HEAD MERGE_HEAD; do + if [ -e "$dir/$i" ]; then echo $i; fi + done + format="refname:short" + refs="refs/tags refs/heads refs/remotes" + ;; + esac + git --git-dir="$dir" for-each-ref --format="%($format)" \ + $refs + if [ -n "$track" ]; then + # employ the heuristic used by git checkout + # Try to find a remote branch that matches the completion word + # but only output if the branch name is unique + local ref entry + git --git-dir="$dir" for-each-ref --shell --format="ref=%(refname:short)" \ + "refs/remotes/" | \ + while read -r entry; do + eval "$entry" + ref="${ref#*/}" + if [[ "$ref" == "$cur"* ]]; then + echo "$ref" + fi + done | sort | uniq -u + fi + return + fi + case "$cur" in + refs|refs/*) + git ls-remote "$dir" "$cur*" 2>/dev/null | \ + while read -r hash i; do + case "$i" in + *^{}) ;; + *) echo "$i" ;; + esac + done + ;; + *) + echo "HEAD" + git for-each-ref --format="%(refname:short)" -- \ + "refs/remotes/$dir/" 2>/dev/null | sed -e "s#^$dir/##" + ;; + esac +} + +# __git_refs2 requires 1 argument (to pass to __git_refs) +__git_refs2 () +{ + local i + for i in $(__git_refs "$1"); do + echo "$i:$i" + done +} + +# __git_refs_remotes requires 1 argument (to pass to ls-remote) +__git_refs_remotes () +{ + local i hash + git ls-remote "$1" 'refs/heads/*' 2>/dev/null | \ + while read -r hash i; do + echo "$i:refs/remotes/$1/${i#refs/heads/}" + done +} + +__git_remotes () +{ + local d="$(__gitdir)" + test -d "$d/remotes" && ls -1 "$d/remotes" + git --git-dir="$d" remote +} + +__git_list_merge_strategies () +{ + git merge -s help 2>&1 | + sed -n -e '/[Aa]vailable strategies are: /,/^$/{ + s/\.$// + s/.*:// + s/^[ ]*// + s/[ ]*$// + p + }' +} + +__git_merge_strategies= +# 'git merge -s help' (and thus detection of the merge strategy +# list) fails, unfortunately, if run outside of any git working +# tree. __git_merge_strategies is set to the empty string in +# that case, and the detection will be repeated the next time it +# is needed. +__git_compute_merge_strategies () +{ + test -n "$__git_merge_strategies" || + __git_merge_strategies=$(__git_list_merge_strategies) +} + +__git_complete_revlist_file () +{ + local pfx ls ref cur_="$cur" + case "$cur_" in + *..?*:*) + return + ;; + ?*:*) + ref="${cur_%%:*}" + cur_="${cur_#*:}" + case "$cur_" in + ?*/*) + pfx="${cur_%/*}" + cur_="${cur_##*/}" + ls="$ref:$pfx" + pfx="$pfx/" + ;; + *) + ls="$ref" + ;; + esac + + case "$COMP_WORDBREAKS" in + *:*) : great ;; + *) pfx="$ref:$pfx" ;; + esac + + __gitcomp_nl "$(git --git-dir="$(__gitdir)" ls-tree "$ls" 2>/dev/null \ + | sed '/^100... blob /{ + s,^.* ,, + s,$, , + } + /^120000 blob /{ + s,^.* ,, + s,$, , + } + /^040000 tree /{ + s,^.* ,, + s,$,/, + } + s/^.* //')" \ + "$pfx" "$cur_" "" + ;; + *...*) + pfx="${cur_%...*}..." + cur_="${cur_#*...}" + __gitcomp_nl "$(__git_refs)" "$pfx" "$cur_" + ;; + *..*) + pfx="${cur_%..*}.." + cur_="${cur_#*..}" + __gitcomp_nl "$(__git_refs)" "$pfx" "$cur_" + ;; + *) + __gitcomp_nl "$(__git_refs)" + ;; + esac +} + + +# __git_complete_index_file requires 1 argument: +# 1: the options to pass to ls-file +# +# The exception is --committable, which finds the files appropriate commit. +__git_complete_index_file () +{ + local pfx="" cur_="$cur" + + case "$cur_" in + ?*/*) + pfx="${cur_%/*}" + cur_="${cur_##*/}" + pfx="${pfx}/" + ;; + esac + + __gitcomp_file "$(__git_index_files "$1" ${pfx:+"$pfx"})" "$pfx" "$cur_" +} + +__git_complete_file () +{ + __git_complete_revlist_file +} + +__git_complete_revlist () +{ + __git_complete_revlist_file +} + +__git_complete_remote_or_refspec () +{ + local cur_="$cur" cmd="${words[1]}" + local i c=2 remote="" pfx="" lhs=1 no_complete_refspec=0 + if [ "$cmd" = "remote" ]; then + ((c++)) + fi + while [ $c -lt $cword ]; do + i="${words[c]}" + case "$i" in + --mirror) [ "$cmd" = "push" ] && no_complete_refspec=1 ;; + --all) + case "$cmd" in + push) no_complete_refspec=1 ;; + fetch) + return + ;; + *) ;; + esac + ;; + -*) ;; + *) remote="$i"; break ;; + esac + ((c++)) + done + if [ -z "$remote" ]; then + __gitcomp_nl "$(__git_remotes)" + return + fi + if [ $no_complete_refspec = 1 ]; then + return + fi + [ "$remote" = "." ] && remote= + case "$cur_" in + *:*) + case "$COMP_WORDBREAKS" in + *:*) : great ;; + *) pfx="${cur_%%:*}:" ;; + esac + cur_="${cur_#*:}" + lhs=0 + ;; + +*) + pfx="+" + cur_="${cur_#+}" + ;; + esac + case "$cmd" in + fetch) + if [ $lhs = 1 ]; then + __gitcomp_nl "$(__git_refs2 "$remote")" "$pfx" "$cur_" + else + __gitcomp_nl "$(__git_refs)" "$pfx" "$cur_" + fi + ;; + pull|remote) + if [ $lhs = 1 ]; then + __gitcomp_nl "$(__git_refs "$remote")" "$pfx" "$cur_" + else + __gitcomp_nl "$(__git_refs)" "$pfx" "$cur_" + fi + ;; + push) + if [ $lhs = 1 ]; then + __gitcomp_nl "$(__git_refs)" "$pfx" "$cur_" + else + __gitcomp_nl "$(__git_refs "$remote")" "$pfx" "$cur_" + fi + ;; + esac +} + +__git_complete_strategy () +{ + __git_compute_merge_strategies + case "$prev" in + -s|--strategy) + __gitcomp "$__git_merge_strategies" + return 0 + esac + case "$cur" in + --strategy=*) + __gitcomp "$__git_merge_strategies" "" "${cur##--strategy=}" + return 0 + ;; + esac + return 1 +} + +__git_commands () { + if test -n "${GIT_TESTING_COMMAND_COMPLETION:-}" + then + printf "%s" "${GIT_TESTING_COMMAND_COMPLETION}" + else + git help -a|egrep '^ [a-zA-Z0-9]' + fi +} + +__git_list_all_commands () +{ + local i IFS=" "$'\n' + for i in $(__git_commands) + do + case $i in + *--*) : helper pattern;; + *) echo $i;; + esac + done +} + +__git_all_commands= +__git_compute_all_commands () +{ + test -n "$__git_all_commands" || + __git_all_commands=$(__git_list_all_commands) +} + +__git_list_porcelain_commands () +{ + local i IFS=" "$'\n' + __git_compute_all_commands + for i in $__git_all_commands + do + case $i in + *--*) : helper pattern;; + applymbox) : ask gittus;; + applypatch) : ask gittus;; + archimport) : import;; + cat-file) : plumbing;; + check-attr) : plumbing;; + check-ignore) : plumbing;; + check-mailmap) : plumbing;; + check-ref-format) : plumbing;; + checkout-index) : plumbing;; + column) : internal helper;; + commit-tree) : plumbing;; + count-objects) : infrequent;; + credential) : credentials;; + credential-*) : credentials helper;; + cvsexportcommit) : export;; + cvsimport) : import;; + cvsserver) : daemon;; + daemon) : daemon;; + diff-files) : plumbing;; + diff-index) : plumbing;; + diff-tree) : plumbing;; + fast-import) : import;; + fast-export) : export;; + fsck-objects) : plumbing;; + fetch-pack) : plumbing;; + fmt-merge-msg) : plumbing;; + for-each-ref) : plumbing;; + hash-object) : plumbing;; + http-*) : transport;; + index-pack) : plumbing;; + init-db) : deprecated;; + local-fetch) : plumbing;; + ls-files) : plumbing;; + ls-remote) : plumbing;; + ls-tree) : plumbing;; + mailinfo) : plumbing;; + mailsplit) : plumbing;; + merge-*) : plumbing;; + mktree) : plumbing;; + mktag) : plumbing;; + pack-objects) : plumbing;; + pack-redundant) : plumbing;; + pack-refs) : plumbing;; + parse-remote) : plumbing;; + patch-id) : plumbing;; + prune) : plumbing;; + prune-packed) : plumbing;; + quiltimport) : import;; + read-tree) : plumbing;; + receive-pack) : plumbing;; + remote-*) : transport;; + rerere) : plumbing;; + rev-list) : plumbing;; + rev-parse) : plumbing;; + runstatus) : plumbing;; + sh-setup) : internal;; + shell) : daemon;; + show-ref) : plumbing;; + send-pack) : plumbing;; + show-index) : plumbing;; + ssh-*) : transport;; + stripspace) : plumbing;; + symbolic-ref) : plumbing;; + unpack-file) : plumbing;; + unpack-objects) : plumbing;; + update-index) : plumbing;; + update-ref) : plumbing;; + update-server-info) : daemon;; + upload-archive) : plumbing;; + upload-pack) : plumbing;; + write-tree) : plumbing;; + var) : infrequent;; + verify-pack) : infrequent;; + verify-tag) : plumbing;; + *) echo $i;; + esac + done +} + +__git_porcelain_commands= +__git_compute_porcelain_commands () +{ + test -n "$__git_porcelain_commands" || + __git_porcelain_commands=$(__git_list_porcelain_commands) +} + +# Lists all set config variables starting with the given section prefix, +# with the prefix removed. +__git_get_config_variables () +{ + local section="$1" i IFS=$'\n' + for i in $(git --git-dir="$(__gitdir)" config --name-only --get-regexp "^$section\..*" 2>/dev/null); do + echo "${i#$section.}" + done +} + +__git_pretty_aliases () +{ + __git_get_config_variables "pretty" +} + +__git_aliases () +{ + __git_get_config_variables "alias" +} + +# __git_aliased_command requires 1 argument +__git_aliased_command () +{ + local word cmdline=$(git --git-dir="$(__gitdir)" \ + config --get "alias.$1") + for word in $cmdline; do + case "$word" in + \!gitk|gitk) + echo "gitk" + return + ;; + \!*) : shell command alias ;; + -*) : option ;; + *=*) : setting env ;; + git) : git itself ;; + \(\)) : skip parens of shell function definition ;; + {) : skip start of shell helper function ;; + :) : skip null command ;; + \'*) : skip opening quote after sh -c ;; + *) + echo "$word" + return + esac + done +} + +# __git_find_on_cmdline requires 1 argument +__git_find_on_cmdline () +{ + local word subcommand c=1 + while [ $c -lt $cword ]; do + word="${words[c]}" + for subcommand in $1; do + if [ "$subcommand" = "$word" ]; then + echo "$subcommand" + return + fi + done + ((c++)) + done +} + +__git_has_doubledash () +{ + local c=1 + while [ $c -lt $cword ]; do + if [ "--" = "${words[c]}" ]; then + return 0 + fi + ((c++)) + done + return 1 +} + +# Try to count non option arguments passed on the command line for the +# specified git command. +# When options are used, it is necessary to use the special -- option to +# tell the implementation were non option arguments begin. +# XXX this can not be improved, since options can appear everywhere, as +# an example: +# git mv x -n y +# +# __git_count_arguments requires 1 argument: the git command executed. +__git_count_arguments () +{ + local word i c=0 + + # Skip "git" (first argument) + for ((i=1; i < ${#words[@]}; i++)); do + word="${words[i]}" + + case "$word" in + --) + # Good; we can assume that the following are only non + # option arguments. + ((c = 0)) + ;; + "$1") + # Skip the specified git command and discard git + # main options + ((c = 0)) + ;; + ?*) + ((c++)) + ;; + esac + done + + printf "%d" $c +} + +__git_whitespacelist="nowarn warn error error-all fix" + +_git_am () +{ + local dir="$(__gitdir)" + if [ -d "$dir"/rebase-apply ]; then + __gitcomp "--skip --continue --resolved --abort" + return + fi + case "$cur" in + --whitespace=*) + __gitcomp "$__git_whitespacelist" "" "${cur##--whitespace=}" + return + ;; + --*) + __gitcomp " + --3way --committer-date-is-author-date --ignore-date + --ignore-whitespace --ignore-space-change + --interactive --keep --no-utf8 --signoff --utf8 + --whitespace= --scissors + " + return + esac +} + +_git_apply () +{ + case "$cur" in + --whitespace=*) + __gitcomp "$__git_whitespacelist" "" "${cur##--whitespace=}" + return + ;; + --*) + __gitcomp " + --stat --numstat --summary --check --index + --cached --index-info --reverse --reject --unidiff-zero + --apply --no-add --exclude= + --ignore-whitespace --ignore-space-change + --whitespace= --inaccurate-eof --verbose + " + return + esac +} + +_git_add () +{ + case "$cur" in + --*) + __gitcomp " + --interactive --refresh --patch --update --dry-run + --ignore-errors --intent-to-add + " + return + esac + + # XXX should we check for --update and --all options ? + __git_complete_index_file "--others --modified --directory --no-empty-directory" +} + +_git_archive () +{ + case "$cur" in + --format=*) + __gitcomp "$(git archive --list)" "" "${cur##--format=}" + return + ;; + --remote=*) + __gitcomp_nl "$(__git_remotes)" "" "${cur##--remote=}" + return + ;; + --*) + __gitcomp " + --format= --list --verbose + --prefix= --remote= --exec= + " + return + ;; + esac + __git_complete_file +} + +_git_bisect () +{ + __git_has_doubledash && return + + local subcommands="start bad good skip reset visualize replay log run" + local subcommand="$(__git_find_on_cmdline "$subcommands")" + if [ -z "$subcommand" ]; then + if [ -f "$(__gitdir)"/BISECT_START ]; then + __gitcomp "$subcommands" + else + __gitcomp "replay start" + fi + return + fi + + case "$subcommand" in + bad|good|reset|skip|start) + __gitcomp_nl "$(__git_refs)" + ;; + *) + ;; + esac +} + +_git_branch () +{ + local i c=1 only_local_ref="n" has_r="n" + + while [ $c -lt $cword ]; do + i="${words[c]}" + case "$i" in + -d|-m) only_local_ref="y" ;; + -r) has_r="y" ;; + esac + ((c++)) + done + + case "$cur" in + --set-upstream-to=*) + __gitcomp_nl "$(__git_refs)" "" "${cur##--set-upstream-to=}" + ;; + --*) + __gitcomp " + --color --no-color --verbose --abbrev= --no-abbrev + --track --no-track --contains --merged --no-merged + --set-upstream-to= --edit-description --list + --unset-upstream + " + ;; + *) + if [ $only_local_ref = "y" -a $has_r = "n" ]; then + __gitcomp_nl "$(__git_heads)" + else + __gitcomp_nl "$(__git_refs)" + fi + ;; + esac +} + +_git_bundle () +{ + local cmd="${words[2]}" + case "$cword" in + 2) + __gitcomp "create list-heads verify unbundle" + ;; + 3) + # looking for a file + ;; + *) + case "$cmd" in + create) + __git_complete_revlist + ;; + esac + ;; + esac +} + +_git_checkout () +{ + __git_has_doubledash && return + + case "$cur" in + --conflict=*) + __gitcomp "diff3 merge" "" "${cur##--conflict=}" + ;; + --*) + __gitcomp " + --quiet --ours --theirs --track --no-track --merge + --conflict= --orphan --patch + " + ;; + *) + # check if --track, --no-track, or --no-guess was specified + # if so, disable DWIM mode + local flags="--track --no-track --no-guess" track=1 + if [ -n "$(__git_find_on_cmdline "$flags")" ]; then + track='' + fi + __gitcomp_nl "$(__git_refs '' $track)" + ;; + esac +} + +_git_cherry () +{ + __gitcomp_nl "$(__git_refs)" +} + +_git_cherry_pick () +{ + local dir="$(__gitdir)" + if [ -f "$dir"/CHERRY_PICK_HEAD ]; then + __gitcomp "--continue --quit --abort" + return + fi + case "$cur" in + --*) + __gitcomp "--edit --no-commit --signoff --strategy= --mainline" + ;; + *) + __gitcomp_nl "$(__git_refs)" + ;; + esac +} + +_git_clean () +{ + case "$cur" in + --*) + __gitcomp "--dry-run --quiet" + return + ;; + esac + + # XXX should we check for -x option ? + __git_complete_index_file "--others --directory" +} + +_git_clone () +{ + case "$cur" in + --*) + __gitcomp " + --local + --no-hardlinks + --shared + --reference + --quiet + --no-checkout + --bare + --mirror + --origin + --upload-pack + --template= + --depth + --single-branch + --branch + " + return + ;; + esac +} + +_git_commit () +{ + case "$prev" in + -c|-C) + __gitcomp_nl "$(__git_refs)" "" "${cur}" + return + ;; + esac + + case "$cur" in + --cleanup=*) + __gitcomp "default scissors strip verbatim whitespace + " "" "${cur##--cleanup=}" + return + ;; + --reuse-message=*|--reedit-message=*|\ + --fixup=*|--squash=*) + __gitcomp_nl "$(__git_refs)" "" "${cur#*=}" + return + ;; + --untracked-files=*) + __gitcomp "all no normal" "" "${cur##--untracked-files=}" + return + ;; + --*) + __gitcomp " + --all --author= --signoff --verify --no-verify + --edit --no-edit + --amend --include --only --interactive + --dry-run --reuse-message= --reedit-message= + --reset-author --file= --message= --template= + --cleanup= --untracked-files --untracked-files= + --verbose --quiet --fixup= --squash= + " + return + esac + + if git rev-parse --verify --quiet HEAD >/dev/null; then + __git_complete_index_file "--committable" + else + # This is the first commit + __git_complete_index_file "--cached" + fi +} + +_git_describe () +{ + case "$cur" in + --*) + __gitcomp " + --all --tags --contains --abbrev= --candidates= + --exact-match --debug --long --match --always + " + return + esac + __gitcomp_nl "$(__git_refs)" +} + +__git_diff_algorithms="myers minimal patience histogram" + +__git_diff_common_options="--stat --numstat --shortstat --summary + --patch-with-stat --name-only --name-status --color + --no-color --color-words --no-renames --check + --full-index --binary --abbrev --diff-filter= + --find-copies-harder + --text --ignore-space-at-eol --ignore-space-change + --ignore-all-space --ignore-blank-lines --exit-code + --quiet --ext-diff --no-ext-diff + --no-prefix --src-prefix= --dst-prefix= + --inter-hunk-context= + --patience --histogram --minimal + --raw --word-diff --word-diff-regex= + --dirstat --dirstat= --dirstat-by-file + --dirstat-by-file= --cumulative + --diff-algorithm= +" + +_git_diff () +{ + __git_has_doubledash && return + + case "$cur" in + --diff-algorithm=*) + __gitcomp "$__git_diff_algorithms" "" "${cur##--diff-algorithm=}" + return + ;; + --*) + __gitcomp "--cached --staged --pickaxe-all --pickaxe-regex + --base --ours --theirs --no-index + $__git_diff_common_options + " + return + ;; + esac + __git_complete_revlist_file +} + +__git_mergetools_common="diffuse diffmerge ecmerge emerge kdiff3 meld opendiff + tkdiff vimdiff gvimdiff xxdiff araxis p4merge bc codecompare +" + +_git_difftool () +{ + __git_has_doubledash && return + + case "$cur" in + --tool=*) + __gitcomp "$__git_mergetools_common kompare" "" "${cur##--tool=}" + return + ;; + --*) + __gitcomp "--cached --staged --pickaxe-all --pickaxe-regex + --base --ours --theirs + --no-renames --diff-filter= --find-copies-harder + --relative --ignore-submodules + --tool=" + return + ;; + esac + __git_complete_revlist_file +} + +__git_fetch_recurse_submodules="yes on-demand no" + +__git_fetch_options=" + --quiet --verbose --append --upload-pack --force --keep --depth= + --tags --no-tags --all --prune --dry-run --recurse-submodules= +" + +_git_fetch () +{ + case "$cur" in + --recurse-submodules=*) + __gitcomp "$__git_fetch_recurse_submodules" "" "${cur##--recurse-submodules=}" + return + ;; + --*) + __gitcomp "$__git_fetch_options" + return + ;; + esac + __git_complete_remote_or_refspec +} + +__git_format_patch_options=" + --stdout --attach --no-attach --thread --thread= --no-thread + --numbered --start-number --numbered-files --keep-subject --signoff + --signature --no-signature --in-reply-to= --cc= --full-index --binary + --not --all --cover-letter --no-prefix --src-prefix= --dst-prefix= + --inline --suffix= --ignore-if-in-upstream --subject-prefix= + --output-directory --reroll-count --to= --quiet --notes +" + +_git_format_patch () +{ + case "$cur" in + --thread=*) + __gitcomp " + deep shallow + " "" "${cur##--thread=}" + return + ;; + --*) + __gitcomp "$__git_format_patch_options" + return + ;; + esac + __git_complete_revlist +} + +_git_fsck () +{ + case "$cur" in + --*) + __gitcomp " + --tags --root --unreachable --cache --no-reflogs --full + --strict --verbose --lost-found + " + return + ;; + esac +} + +_git_gc () +{ + case "$cur" in + --*) + __gitcomp "--prune --aggressive" + return + ;; + esac +} + +_git_gitk () +{ + _gitk +} + +__git_match_ctag() { + awk "/^${1//\//\\/}/ { print \$1 }" "$2" +} + +_git_grep () +{ + __git_has_doubledash && return + + case "$cur" in + --*) + __gitcomp " + --cached + --text --ignore-case --word-regexp --invert-match + --full-name --line-number + --extended-regexp --basic-regexp --fixed-strings + --perl-regexp + --threads + --files-with-matches --name-only + --files-without-match + --max-depth + --count + --and --or --not --all-match + " + return + ;; + esac + + case "$cword,$prev" in + 2,*|*,-*) + if test -r tags; then + __gitcomp_nl "$(__git_match_ctag "$cur" tags)" + return + fi + ;; + esac + + __gitcomp_nl "$(__git_refs)" +} + +_git_help () +{ + case "$cur" in + --*) + __gitcomp "--all --info --man --web" + return + ;; + esac + __git_compute_all_commands + __gitcomp "$__git_all_commands $(__git_aliases) + attributes cli core-tutorial cvs-migration + diffcore gitk glossary hooks ignore modules + namespaces repository-layout tutorial tutorial-2 + workflows + " +} + +_git_init () +{ + case "$cur" in + --shared=*) + __gitcomp " + false true umask group all world everybody + " "" "${cur##--shared=}" + return + ;; + --*) + __gitcomp "--quiet --bare --template= --shared --shared=" + return + ;; + esac +} + +_git_ls_files () +{ + case "$cur" in + --*) + __gitcomp "--cached --deleted --modified --others --ignored + --stage --directory --no-empty-directory --unmerged + --killed --exclude= --exclude-from= + --exclude-per-directory= --exclude-standard + --error-unmatch --with-tree= --full-name + --abbrev --ignored --exclude-per-directory + " + return + ;; + esac + + # XXX ignore options like --modified and always suggest all cached + # files. + __git_complete_index_file "--cached" +} + +_git_ls_remote () +{ + __gitcomp_nl "$(__git_remotes)" +} + +_git_ls_tree () +{ + __git_complete_file +} + +# Options that go well for log, shortlog and gitk +__git_log_common_options=" + --not --all + --branches --tags --remotes + --first-parent --merges --no-merges + --max-count= + --max-age= --since= --after= + --min-age= --until= --before= + --min-parents= --max-parents= + --no-min-parents --no-max-parents +" +# Options that go well for log and gitk (not shortlog) +__git_log_gitk_options=" + --dense --sparse --full-history + --simplify-merges --simplify-by-decoration + --left-right --notes --no-notes +" +# Options that go well for log and shortlog (not gitk) +__git_log_shortlog_options=" + --author= --committer= --grep= + --all-match --invert-grep +" + +__git_log_pretty_formats="oneline short medium full fuller email raw format:" +__git_log_date_formats="relative iso8601 rfc2822 short local default raw" + +_git_log () +{ + __git_has_doubledash && return + + local g="$(git rev-parse --git-dir 2>/dev/null)" + local merge="" + if [ -f "$g/MERGE_HEAD" ]; then + merge="--merge" + fi + case "$cur" in + --pretty=*|--format=*) + __gitcomp "$__git_log_pretty_formats $(__git_pretty_aliases) + " "" "${cur#*=}" + return + ;; + --date=*) + __gitcomp "$__git_log_date_formats" "" "${cur##--date=}" + return + ;; + --decorate=*) + __gitcomp "full short no" "" "${cur##--decorate=}" + return + ;; + --*) + __gitcomp " + $__git_log_common_options + $__git_log_shortlog_options + $__git_log_gitk_options + --root --topo-order --date-order --reverse + --follow --full-diff + --abbrev-commit --abbrev= + --relative-date --date= + --pretty= --format= --oneline + --show-signature + --cherry-pick + --graph + --decorate --decorate= + --walk-reflogs + --parents --children + $merge + $__git_diff_common_options + --pickaxe-all --pickaxe-regex + " + return + ;; + esac + __git_complete_revlist +} + +# Common merge options shared by git-merge(1) and git-pull(1). +__git_merge_options=" + --no-commit --no-stat --log --no-log --squash --strategy + --commit --stat --no-squash --ff --no-ff --ff-only --edit --no-edit + --verify-signatures --no-verify-signatures --gpg-sign + --quiet --verbose --progress --no-progress +" + +_git_merge () +{ + __git_complete_strategy && return + + case "$cur" in + --*) + __gitcomp "$__git_merge_options + --rerere-autoupdate --no-rerere-autoupdate --abort" + return + esac + __gitcomp_nl "$(__git_refs)" +} + +_git_mergetool () +{ + case "$cur" in + --tool=*) + __gitcomp "$__git_mergetools_common tortoisemerge" "" "${cur##--tool=}" + return + ;; + --*) + __gitcomp "--tool=" + return + ;; + esac +} + +_git_merge_base () +{ + case "$cur" in + --*) + __gitcomp "--octopus --independent --is-ancestor --fork-point" + return + ;; + esac + __gitcomp_nl "$(__git_refs)" +} + +_git_mv () +{ + case "$cur" in + --*) + __gitcomp "--dry-run" + return + ;; + esac + + if [ $(__git_count_arguments "mv") -gt 0 ]; then + # We need to show both cached and untracked files (including + # empty directories) since this may not be the last argument. + __git_complete_index_file "--cached --others --directory" + else + __git_complete_index_file "--cached" + fi +} + +_git_name_rev () +{ + __gitcomp "--tags --all --stdin" +} + +_git_notes () +{ + local subcommands='add append copy edit list prune remove show' + local subcommand="$(__git_find_on_cmdline "$subcommands")" + + case "$subcommand,$cur" in + ,--*) + __gitcomp '--ref' + ;; + ,*) + case "$prev" in + --ref) + __gitcomp_nl "$(__git_refs)" + ;; + *) + __gitcomp "$subcommands --ref" + ;; + esac + ;; + add,--reuse-message=*|append,--reuse-message=*|\ + add,--reedit-message=*|append,--reedit-message=*) + __gitcomp_nl "$(__git_refs)" "" "${cur#*=}" + ;; + add,--*|append,--*) + __gitcomp '--file= --message= --reedit-message= + --reuse-message=' + ;; + copy,--*) + __gitcomp '--stdin' + ;; + prune,--*) + __gitcomp '--dry-run --verbose' + ;; + prune,*) + ;; + *) + case "$prev" in + -m|-F) + ;; + *) + __gitcomp_nl "$(__git_refs)" + ;; + esac + ;; + esac +} + +_git_pull () +{ + __git_complete_strategy && return + + case "$cur" in + --recurse-submodules=*) + __gitcomp "$__git_fetch_recurse_submodules" "" "${cur##--recurse-submodules=}" + return + ;; + --*) + __gitcomp " + --rebase --no-rebase + $__git_merge_options + $__git_fetch_options + " + return + ;; + esac + __git_complete_remote_or_refspec +} + +__git_push_recurse_submodules="check on-demand" + +__git_complete_force_with_lease () +{ + local cur_=$1 + + case "$cur_" in + --*=) + ;; + *:*) + __gitcomp_nl "$(__git_refs)" "" "${cur_#*:}" + ;; + *) + __gitcomp_nl "$(__git_refs)" "" "$cur_" + ;; + esac +} + +_git_push () +{ + case "$prev" in + --repo) + __gitcomp_nl "$(__git_remotes)" + return + ;; + --recurse-submodules) + __gitcomp "$__git_push_recurse_submodules" + return + ;; + esac + case "$cur" in + --repo=*) + __gitcomp_nl "$(__git_remotes)" "" "${cur##--repo=}" + return + ;; + --recurse-submodules=*) + __gitcomp "$__git_push_recurse_submodules" "" "${cur##--recurse-submodules=}" + return + ;; + --force-with-lease=*) + __git_complete_force_with_lease "${cur##--force-with-lease=}" + return + ;; + --*) + __gitcomp " + --all --mirror --tags --dry-run --force --verbose + --quiet --prune --delete --follow-tags + --receive-pack= --repo= --set-upstream + --force-with-lease --force-with-lease= --recurse-submodules= + " + return + ;; + esac + __git_complete_remote_or_refspec +} + +_git_rebase () +{ + local dir="$(__gitdir)" + if [ -f "$dir"/rebase-merge/interactive ]; then + __gitcomp "--continue --skip --abort --edit-todo" + return + elif [ -d "$dir"/rebase-apply ] || [ -d "$dir"/rebase-merge ]; then + __gitcomp "--continue --skip --abort" + return + fi + __git_complete_strategy && return + case "$cur" in + --whitespace=*) + __gitcomp "$__git_whitespacelist" "" "${cur##--whitespace=}" + return + ;; + --*) + __gitcomp " + --onto --merge --strategy --interactive + --preserve-merges --stat --no-stat + --committer-date-is-author-date --ignore-date + --ignore-whitespace --whitespace= + --autosquash --no-autosquash + --fork-point --no-fork-point + --autostash --no-autostash + --verify --no-verify + --keep-empty --root --force-rebase --no-ff + --exec + " + + return + esac + __gitcomp_nl "$(__git_refs)" +} + +_git_reflog () +{ + local subcommands="show delete expire" + local subcommand="$(__git_find_on_cmdline "$subcommands")" + + if [ -z "$subcommand" ]; then + __gitcomp "$subcommands" + else + __gitcomp_nl "$(__git_refs)" + fi +} + +__git_send_email_confirm_options="always never auto cc compose" +__git_send_email_suppresscc_options="author self cc bodycc sob cccmd body all" + +_git_send_email () +{ + case "$prev" in + --to|--cc|--bcc|--from) + __gitcomp " + $(git --git-dir="$(__gitdir)" send-email --dump-aliases 2>/dev/null) + " + return + ;; + esac + + case "$cur" in + --confirm=*) + __gitcomp " + $__git_send_email_confirm_options + " "" "${cur##--confirm=}" + return + ;; + --suppress-cc=*) + __gitcomp " + $__git_send_email_suppresscc_options + " "" "${cur##--suppress-cc=}" + + return + ;; + --smtp-encryption=*) + __gitcomp "ssl tls" "" "${cur##--smtp-encryption=}" + return + ;; + --thread=*) + __gitcomp " + deep shallow + " "" "${cur##--thread=}" + return + ;; + --to=*|--cc=*|--bcc=*|--from=*) + __gitcomp " + $(git --git-dir="$(__gitdir)" send-email --dump-aliases 2>/dev/null) + " "" "${cur#--*=}" + return + ;; + --*) + __gitcomp "--annotate --bcc --cc --cc-cmd --chain-reply-to + --compose --confirm= --dry-run --envelope-sender + --from --identity + --in-reply-to --no-chain-reply-to --no-signed-off-by-cc + --no-suppress-from --no-thread --quiet + --signed-off-by-cc --smtp-pass --smtp-server + --smtp-server-port --smtp-encryption= --smtp-user + --subject --suppress-cc= --suppress-from --thread --to + --validate --no-validate + $__git_format_patch_options" + return + ;; + esac + __git_complete_revlist +} + +_git_stage () +{ + _git_add +} + +__git_config_get_set_variables () +{ + local prevword word config_file= c=$cword + while [ $c -gt 1 ]; do + word="${words[c]}" + case "$word" in + --system|--global|--local|--file=*) + config_file="$word" + break + ;; + -f|--file) + config_file="$word $prevword" + break + ;; + esac + prevword=$word + c=$((--c)) + done + + git --git-dir="$(__gitdir)" config $config_file --name-only --list 2>/dev/null +} + +_git_config () +{ + case "$prev" in + branch.*.remote|branch.*.pushremote) + __gitcomp_nl "$(__git_remotes)" + return + ;; + branch.*.merge) + __gitcomp_nl "$(__git_refs)" + return + ;; + branch.*.rebase) + __gitcomp "false true preserve interactive" + return + ;; + remote.pushdefault) + __gitcomp_nl "$(__git_remotes)" + return + ;; + remote.*.fetch) + local remote="${prev#remote.}" + remote="${remote%.fetch}" + if [ -z "$cur" ]; then + __gitcomp_nl "refs/heads/" "" "" "" + return + fi + __gitcomp_nl "$(__git_refs_remotes "$remote")" + return + ;; + remote.*.push) + local remote="${prev#remote.}" + remote="${remote%.push}" + __gitcomp_nl "$(git --git-dir="$(__gitdir)" \ + for-each-ref --format='%(refname):%(refname)' \ + refs/heads)" + return + ;; + pull.twohead|pull.octopus) + __git_compute_merge_strategies + __gitcomp "$__git_merge_strategies" + return + ;; + color.branch|color.diff|color.interactive|\ + color.showbranch|color.status|color.ui) + __gitcomp "always never auto" + return + ;; + color.pager) + __gitcomp "false true" + return + ;; + color.*.*) + __gitcomp " + normal black red green yellow blue magenta cyan white + bold dim ul blink reverse + " + return + ;; + diff.submodule) + __gitcomp "log short" + return + ;; + help.format) + __gitcomp "man info web html" + return + ;; + log.date) + __gitcomp "$__git_log_date_formats" + return + ;; + sendemail.aliasesfiletype) + __gitcomp "mutt mailrc pine elm gnus" + return + ;; + sendemail.confirm) + __gitcomp "$__git_send_email_confirm_options" + return + ;; + sendemail.suppresscc) + __gitcomp "$__git_send_email_suppresscc_options" + return + ;; + sendemail.transferencoding) + __gitcomp "7bit 8bit quoted-printable base64" + return + ;; + --get|--get-all|--unset|--unset-all) + __gitcomp_nl "$(__git_config_get_set_variables)" + return + ;; + *.*) + return + ;; + esac + case "$cur" in + --*) + __gitcomp " + --system --global --local --file= + --list --replace-all + --get --get-all --get-regexp + --add --unset --unset-all + --remove-section --rename-section + --name-only + " + return + ;; + branch.*.*) + local pfx="${cur%.*}." cur_="${cur##*.}" + __gitcomp "remote pushremote merge mergeoptions rebase" "$pfx" "$cur_" + return + ;; + branch.*) + local pfx="${cur%.*}." cur_="${cur#*.}" + __gitcomp_nl "$(__git_heads)" "$pfx" "$cur_" "." + __gitcomp_nl_append $'autosetupmerge\nautosetuprebase\n' "$pfx" "$cur_" + return + ;; + guitool.*.*) + local pfx="${cur%.*}." cur_="${cur##*.}" + __gitcomp " + argprompt cmd confirm needsfile noconsole norescan + prompt revprompt revunmerged title + " "$pfx" "$cur_" + return + ;; + difftool.*.*) + local pfx="${cur%.*}." cur_="${cur##*.}" + __gitcomp "cmd path" "$pfx" "$cur_" + return + ;; + man.*.*) + local pfx="${cur%.*}." cur_="${cur##*.}" + __gitcomp "cmd path" "$pfx" "$cur_" + return + ;; + mergetool.*.*) + local pfx="${cur%.*}." cur_="${cur##*.}" + __gitcomp "cmd path trustExitCode" "$pfx" "$cur_" + return + ;; + pager.*) + local pfx="${cur%.*}." cur_="${cur#*.}" + __git_compute_all_commands + __gitcomp_nl "$__git_all_commands" "$pfx" "$cur_" + return + ;; + remote.*.*) + local pfx="${cur%.*}." cur_="${cur##*.}" + __gitcomp " + url proxy fetch push mirror skipDefaultUpdate + receivepack uploadpack tagopt pushurl + " "$pfx" "$cur_" + return + ;; + remote.*) + local pfx="${cur%.*}." cur_="${cur#*.}" + __gitcomp_nl "$(__git_remotes)" "$pfx" "$cur_" "." + __gitcomp_nl_append "pushdefault" "$pfx" "$cur_" + return + ;; + url.*.*) + local pfx="${cur%.*}." cur_="${cur##*.}" + __gitcomp "insteadOf pushInsteadOf" "$pfx" "$cur_" + return + ;; + esac + __gitcomp " + add.ignoreErrors + advice.commitBeforeMerge + advice.detachedHead + advice.implicitIdentity + advice.pushNonFastForward + advice.resolveConflict + advice.statusHints + alias. + am.keepcr + apply.ignorewhitespace + apply.whitespace + branch.autosetupmerge + branch.autosetuprebase + browser. + clean.requireForce + color.branch + color.branch.current + color.branch.local + color.branch.plain + color.branch.remote + color.decorate.HEAD + color.decorate.branch + color.decorate.remoteBranch + color.decorate.stash + color.decorate.tag + color.diff + color.diff.commit + color.diff.frag + color.diff.func + color.diff.meta + color.diff.new + color.diff.old + color.diff.plain + color.diff.whitespace + color.grep + color.grep.context + color.grep.filename + color.grep.function + color.grep.linenumber + color.grep.match + color.grep.selected + color.grep.separator + color.interactive + color.interactive.error + color.interactive.header + color.interactive.help + color.interactive.prompt + color.pager + color.showbranch + color.status + color.status.added + color.status.changed + color.status.header + color.status.nobranch + color.status.unmerged + color.status.untracked + color.status.updated + color.ui + commit.status + commit.template + core.abbrev + core.askpass + core.attributesfile + core.autocrlf + core.bare + core.bigFileThreshold + core.compression + core.createObject + core.deltaBaseCacheLimit + core.editor + core.eol + core.excludesfile + core.fileMode + core.fsyncobjectfiles + core.gitProxy + core.ignoreStat + core.ignorecase + core.logAllRefUpdates + core.loosecompression + core.notesRef + core.packedGitLimit + core.packedGitWindowSize + core.pager + core.preferSymlinkRefs + core.preloadindex + core.quotepath + core.repositoryFormatVersion + core.safecrlf + core.sharedRepository + core.sparseCheckout + core.symlinks + core.trustctime + core.untrackedCache + core.warnAmbiguousRefs + core.whitespace + core.worktree + diff.autorefreshindex + diff.external + diff.ignoreSubmodules + diff.mnemonicprefix + diff.noprefix + diff.renameLimit + diff.renames + diff.statGraphWidth + diff.submodule + diff.suppressBlankEmpty + diff.tool + diff.wordRegex + diff.algorithm + difftool. + difftool.prompt + fetch.recurseSubmodules + fetch.unpackLimit + format.attach + format.cc + format.coverLetter + format.headers + format.numbered + format.pretty + format.signature + format.signoff + format.subjectprefix + format.suffix + format.thread + format.to + gc. + gc.aggressiveWindow + gc.auto + gc.autopacklimit + gc.packrefs + gc.pruneexpire + gc.reflogexpire + gc.reflogexpireunreachable + gc.rerereresolved + gc.rerereunresolved + gitcvs.allbinary + gitcvs.commitmsgannotation + gitcvs.dbTableNamePrefix + gitcvs.dbdriver + gitcvs.dbname + gitcvs.dbpass + gitcvs.dbuser + gitcvs.enabled + gitcvs.logfile + gitcvs.usecrlfattr + guitool. + gui.blamehistoryctx + gui.commitmsgwidth + gui.copyblamethreshold + gui.diffcontext + gui.encoding + gui.fastcopyblame + gui.matchtrackingbranch + gui.newbranchtemplate + gui.pruneduringfetch + gui.spellingdictionary + gui.trustmtime + help.autocorrect + help.browser + help.format + http.lowSpeedLimit + http.lowSpeedTime + http.maxRequests + http.minSessions + http.noEPSV + http.postBuffer + http.proxy + http.sslCipherList + http.sslVersion + http.sslCAInfo + http.sslCAPath + http.sslCert + http.sslCertPasswordProtected + http.sslKey + http.sslVerify + http.useragent + i18n.commitEncoding + i18n.logOutputEncoding + imap.authMethod + imap.folder + imap.host + imap.pass + imap.port + imap.preformattedHTML + imap.sslverify + imap.tunnel + imap.user + init.templatedir + instaweb.browser + instaweb.httpd + instaweb.local + instaweb.modulepath + instaweb.port + interactive.singlekey + log.date + log.decorate + log.showroot + mailmap.file + man. + man.viewer + merge. + merge.conflictstyle + merge.log + merge.renameLimit + merge.renormalize + merge.stat + merge.tool + merge.verbosity + mergetool. + mergetool.keepBackup + mergetool.keepTemporaries + mergetool.prompt + notes.displayRef + notes.rewrite. + notes.rewrite.amend + notes.rewrite.rebase + notes.rewriteMode + notes.rewriteRef + pack.compression + pack.deltaCacheLimit + pack.deltaCacheSize + pack.depth + pack.indexVersion + pack.packSizeLimit + pack.threads + pack.window + pack.windowMemory + pager. + pretty. + pull.octopus + pull.twohead + push.default + push.followTags + rebase.autosquash + rebase.stat + receive.autogc + receive.denyCurrentBranch + receive.denyDeleteCurrent + receive.denyDeletes + receive.denyNonFastForwards + receive.fsckObjects + receive.unpackLimit + receive.updateserverinfo + remote.pushdefault + remotes. + repack.usedeltabaseoffset + rerere.autoupdate + rerere.enabled + sendemail. + sendemail.aliasesfile + sendemail.aliasfiletype + sendemail.bcc + sendemail.cc + sendemail.cccmd + sendemail.chainreplyto + sendemail.confirm + sendemail.envelopesender + sendemail.from + sendemail.identity + sendemail.multiedit + sendemail.signedoffbycc + sendemail.smtpdomain + sendemail.smtpencryption + sendemail.smtppass + sendemail.smtpserver + sendemail.smtpserveroption + sendemail.smtpserverport + sendemail.smtpuser + sendemail.suppresscc + sendemail.suppressfrom + sendemail.thread + sendemail.to + sendemail.validate + showbranch.default + status.relativePaths + status.showUntrackedFiles + status.submodulesummary + submodule. + tar.umask + transfer.unpackLimit + url. + user.email + user.name + user.signingkey + web.browser + branch. remote. + " +} + +_git_remote () +{ + local subcommands="add rename remove set-head set-branches set-url show prune update" + local subcommand="$(__git_find_on_cmdline "$subcommands")" + if [ -z "$subcommand" ]; then + __gitcomp "$subcommands" + return + fi + + case "$subcommand" in + rename|remove|set-url|show|prune) + __gitcomp_nl "$(__git_remotes)" + ;; + set-head|set-branches) + __git_complete_remote_or_refspec + ;; + update) + __gitcomp "$(__git_get_config_variables "remotes")" + ;; + *) + ;; + esac +} + +_git_replace () +{ + __gitcomp_nl "$(__git_refs)" +} + +_git_reset () +{ + __git_has_doubledash && return + + case "$cur" in + --*) + __gitcomp "--merge --mixed --hard --soft --patch" + return + ;; + esac + __gitcomp_nl "$(__git_refs)" +} + +_git_revert () +{ + local dir="$(__gitdir)" + if [ -f "$dir"/REVERT_HEAD ]; then + __gitcomp "--continue --quit --abort" + return + fi + case "$cur" in + --*) + __gitcomp "--edit --mainline --no-edit --no-commit --signoff" + return + ;; + esac + __gitcomp_nl "$(__git_refs)" +} + +_git_rm () +{ + case "$cur" in + --*) + __gitcomp "--cached --dry-run --ignore-unmatch --quiet" + return + ;; + esac + + __git_complete_index_file "--cached" +} + +_git_shortlog () +{ + __git_has_doubledash && return + + case "$cur" in + --*) + __gitcomp " + $__git_log_common_options + $__git_log_shortlog_options + --numbered --summary + " + return + ;; + esac + __git_complete_revlist +} + +_git_show () +{ + __git_has_doubledash && return + + case "$cur" in + --pretty=*|--format=*) + __gitcomp "$__git_log_pretty_formats $(__git_pretty_aliases) + " "" "${cur#*=}" + return + ;; + --diff-algorithm=*) + __gitcomp "$__git_diff_algorithms" "" "${cur##--diff-algorithm=}" + return + ;; + --*) + __gitcomp "--pretty= --format= --abbrev-commit --oneline + --show-signature + $__git_diff_common_options + " + return + ;; + esac + __git_complete_revlist_file +} + +_git_show_branch () +{ + case "$cur" in + --*) + __gitcomp " + --all --remotes --topo-order --date-order --current --more= + --list --independent --merge-base --no-name + --color --no-color + --sha1-name --sparse --topics --reflog + " + return + ;; + esac + __git_complete_revlist +} + +_git_stash () +{ + local save_opts='--all --keep-index --no-keep-index --quiet --patch --include-untracked' + local subcommands='save list show apply clear drop pop create branch' + local subcommand="$(__git_find_on_cmdline "$subcommands")" + if [ -z "$subcommand" ]; then + case "$cur" in + --*) + __gitcomp "$save_opts" + ;; + *) + if [ -z "$(__git_find_on_cmdline "$save_opts")" ]; then + __gitcomp "$subcommands" + fi + ;; + esac + else + case "$subcommand,$cur" in + save,--*) + __gitcomp "$save_opts" + ;; + apply,--*|pop,--*) + __gitcomp "--index --quiet" + ;; + drop,--*) + __gitcomp "--quiet" + ;; + show,--*|branch,--*) + ;; + branch,*) + if [ $cword -eq 3 ]; then + __gitcomp_nl "$(__git_refs)"; + else + __gitcomp_nl "$(git --git-dir="$(__gitdir)" stash list \ + | sed -n -e 's/:.*//p')" + fi + ;; + show,*|apply,*|drop,*|pop,*) + __gitcomp_nl "$(git --git-dir="$(__gitdir)" stash list \ + | sed -n -e 's/:.*//p')" + ;; + *) + ;; + esac + fi +} + +_git_submodule () +{ + __git_has_doubledash && return + + local subcommands="add status init deinit update summary foreach sync" + if [ -z "$(__git_find_on_cmdline "$subcommands")" ]; then + case "$cur" in + --*) + __gitcomp "--quiet --cached" + ;; + *) + __gitcomp "$subcommands" + ;; + esac + return + fi +} + +_git_svn () +{ + local subcommands=" + init fetch clone rebase dcommit log find-rev + set-tree commit-diff info create-ignore propget + proplist show-ignore show-externals branch tag blame + migrate mkdirs reset gc + " + local subcommand="$(__git_find_on_cmdline "$subcommands")" + if [ -z "$subcommand" ]; then + __gitcomp "$subcommands" + else + local remote_opts="--username= --config-dir= --no-auth-cache" + local fc_opts=" + --follow-parent --authors-file= --repack= + --no-metadata --use-svm-props --use-svnsync-props + --log-window-size= --no-checkout --quiet + --repack-flags --use-log-author --localtime + --ignore-paths= --include-paths= $remote_opts + " + local init_opts=" + --template= --shared= --trunk= --tags= + --branches= --stdlayout --minimize-url + --no-metadata --use-svm-props --use-svnsync-props + --rewrite-root= --prefix= --use-log-author + --add-author-from $remote_opts + " + local cmt_opts=" + --edit --rmdir --find-copies-harder --copy-similarity= + " + + case "$subcommand,$cur" in + fetch,--*) + __gitcomp "--revision= --fetch-all $fc_opts" + ;; + clone,--*) + __gitcomp "--revision= $fc_opts $init_opts" + ;; + init,--*) + __gitcomp "$init_opts" + ;; + dcommit,--*) + __gitcomp " + --merge --strategy= --verbose --dry-run + --fetch-all --no-rebase --commit-url + --revision --interactive $cmt_opts $fc_opts + " + ;; + set-tree,--*) + __gitcomp "--stdin $cmt_opts $fc_opts" + ;; + create-ignore,--*|propget,--*|proplist,--*|show-ignore,--*|\ + show-externals,--*|mkdirs,--*) + __gitcomp "--revision=" + ;; + log,--*) + __gitcomp " + --limit= --revision= --verbose --incremental + --oneline --show-commit --non-recursive + --authors-file= --color + " + ;; + rebase,--*) + __gitcomp " + --merge --verbose --strategy= --local + --fetch-all --dry-run $fc_opts + " + ;; + commit-diff,--*) + __gitcomp "--message= --file= --revision= $cmt_opts" + ;; + info,--*) + __gitcomp "--url" + ;; + branch,--*) + __gitcomp "--dry-run --message --tag" + ;; + tag,--*) + __gitcomp "--dry-run --message" + ;; + blame,--*) + __gitcomp "--git-format" + ;; + migrate,--*) + __gitcomp " + --config-dir= --ignore-paths= --minimize + --no-auth-cache --username= + " + ;; + reset,--*) + __gitcomp "--revision= --parent" + ;; + *) + ;; + esac + fi +} + +_git_tag () +{ + local i c=1 f=0 + while [ $c -lt $cword ]; do + i="${words[c]}" + case "$i" in + -d|-v) + __gitcomp_nl "$(__git_tags)" + return + ;; + -f) + f=1 + ;; + esac + ((c++)) + done + + case "$prev" in + -m|-F) + ;; + -*|tag) + if [ $f = 1 ]; then + __gitcomp_nl "$(__git_tags)" + fi + ;; + *) + __gitcomp_nl "$(__git_refs)" + ;; + esac + + case "$cur" in + --*) + __gitcomp " + --list --delete --verify --annotate --message --file + --sign --cleanup --local-user --force --column --sort + --contains --points-at + " + ;; + esac +} + +_git_whatchanged () +{ + _git_log +} + +__git_main () +{ + local i c=1 command __git_dir + + while [ $c -lt $cword ]; do + i="${words[c]}" + case "$i" in + --git-dir=*) __git_dir="${i#--git-dir=}" ;; + --git-dir) ((c++)) ; __git_dir="${words[c]}" ;; + --bare) __git_dir="." ;; + --help) command="help"; break ;; + -c|--work-tree|--namespace) ((c++)) ;; + -*) ;; + *) command="$i"; break ;; + esac + ((c++)) + done + + if [ -z "$command" ]; then + case "$cur" in + --*) __gitcomp " + --paginate + --no-pager + --git-dir= + --bare + --version + --exec-path + --exec-path= + --html-path + --man-path + --info-path + --work-tree= + --namespace= + --no-replace-objects + --help + " + ;; + *) __git_compute_porcelain_commands + __gitcomp "$__git_porcelain_commands $(__git_aliases)" ;; + esac + return + fi + + local completion_func="_git_${command//-/_}" + declare -f $completion_func >/dev/null && $completion_func && return + + local expansion=$(__git_aliased_command "$command") + if [ -n "$expansion" ]; then + words[1]=$expansion + completion_func="_git_${expansion//-/_}" + declare -f $completion_func >/dev/null && $completion_func + fi +} + +__gitk_main () +{ + __git_has_doubledash && return + + local g="$(__gitdir)" + local merge="" + if [ -f "$g/MERGE_HEAD" ]; then + merge="--merge" + fi + case "$cur" in + --*) + __gitcomp " + $__git_log_common_options + $__git_log_gitk_options + $merge + " + return + ;; + esac + __git_complete_revlist +} + +if [[ -n ${ZSH_VERSION-} ]]; then + echo "WARNING: this script is deprecated, please see git-completion.zsh" 1>&2 + + autoload -U +X compinit && compinit + + __gitcomp () + { + emulate -L zsh + + local cur_="${3-$cur}" + + case "$cur_" in + --*=) + ;; + *) + local c IFS=$' \t\n' + local -a array + for c in ${=1}; do + c="$c${4-}" + case $c in + --*=*|*.) ;; + *) c="$c " ;; + esac + array[${#array[@]}+1]="$c" + done + compset -P '*[=:]' + compadd -Q -S '' -p "${2-}" -a -- array && _ret=0 + ;; + esac + } + + __gitcomp_nl () + { + emulate -L zsh + + local IFS=$'\n' + compset -P '*[=:]' + compadd -Q -S "${4- }" -p "${2-}" -- ${=1} && _ret=0 + } + + __gitcomp_file () + { + emulate -L zsh + + local IFS=$'\n' + compset -P '*[=:]' + compadd -Q -p "${2-}" -f -- ${=1} && _ret=0 + } + + _git () + { + local _ret=1 cur cword prev + cur=${words[CURRENT]} + prev=${words[CURRENT-1]} + let cword=CURRENT-1 + emulate ksh -c __${service}_main + let _ret && _default && _ret=0 + return _ret + } + + compdef _git git gitk + return +fi + +__git_func_wrap () +{ + local cur words cword prev + _get_comp_words_by_ref -n =: cur words cword prev + $1 +} + +# Setup completion for certain functions defined above by setting common +# variables and workarounds. +# This is NOT a public function; use at your own risk. +__git_complete () +{ + local wrapper="__git_wrap${2}" + eval "$wrapper () { __git_func_wrap $2 ; }" + complete -o bashdefault -o default -o nospace -F $wrapper $1 2>/dev/null \ + || complete -o default -o nospace -F $wrapper $1 +} + +# wrapper for backwards compatibility +_git () +{ + __git_wrap__git_main +} + +# wrapper for backwards compatibility +_gitk () +{ + __git_wrap__gitk_main +} + +__git_complete git __git_main +__git_complete gitk __gitk_main + +# The following are necessary only for Cygwin, and only are needed +# when the user has tab-completed the executable name and consequently +# included the '.exe' suffix. +# +if [[ "$OSTYPE" = cygwin* ]]; then +__git_complete git.exe __git_main +fi diff --git a/oh-my-zsh/.oh-my-zsh/plugins/gitfast/git-prompt.sh b/oh-my-zsh/.oh-my-zsh/plugins/gitfast/git-prompt.sh new file mode 100644 index 0000000..0da14ee --- /dev/null +++ b/oh-my-zsh/.oh-my-zsh/plugins/gitfast/git-prompt.sh @@ -0,0 +1,533 @@ +# bash/zsh git prompt support +# +# Copyright (C) 2006,2007 Shawn O. Pearce +# Distributed under the GNU General Public License, version 2.0. +# +# This script allows you to see repository status in your prompt. +# +# To enable: +# +# 1) Copy this file to somewhere (e.g. ~/.git-prompt.sh). +# 2) Add the following line to your .bashrc/.zshrc: +# source ~/.git-prompt.sh +# 3a) Change your PS1 to call __git_ps1 as +# command-substitution: +# Bash: PS1='[\u@\h \W$(__git_ps1 " (%s)")]\$ ' +# ZSH: setopt PROMPT_SUBST ; PS1='[%n@%m %c$(__git_ps1 " (%s)")]\$ ' +# the optional argument will be used as format string. +# 3b) Alternatively, for a slightly faster prompt, __git_ps1 can +# be used for PROMPT_COMMAND in Bash or for precmd() in Zsh +# with two parameters,
 and , which are strings
+#        you would put in $PS1 before and after the status string
+#        generated by the git-prompt machinery.  e.g.
+#        Bash: PROMPT_COMMAND='__git_ps1 "\u@\h:\w" "\\\$ "'
+#          will show username, at-sign, host, colon, cwd, then
+#          various status string, followed by dollar and SP, as
+#          your prompt.
+#        ZSH:  precmd () { __git_ps1 "%n" ":%~$ " "|%s" }
+#          will show username, pipe, then various status string,
+#          followed by colon, cwd, dollar and SP, as your prompt.
+#        Optionally, you can supply a third argument with a printf
+#        format string to finetune the output of the branch status
+#
+# The repository status will be displayed only if you are currently in a
+# git repository. The %s token is the placeholder for the shown status.
+#
+# The prompt status always includes the current branch name.
+#
+# In addition, if you set GIT_PS1_SHOWDIRTYSTATE to a nonempty value,
+# unstaged (*) and staged (+) changes will be shown next to the branch
+# name.  You can configure this per-repository with the
+# bash.showDirtyState variable, which defaults to true once
+# GIT_PS1_SHOWDIRTYSTATE is enabled.
+#
+# You can also see if currently something is stashed, by setting
+# GIT_PS1_SHOWSTASHSTATE to a nonempty value. If something is stashed,
+# then a '$' will be shown next to the branch name.
+#
+# If you would like to see if there're untracked files, then you can set
+# GIT_PS1_SHOWUNTRACKEDFILES to a nonempty value. If there're untracked
+# files, then a '%' will be shown next to the branch name.  You can
+# configure this per-repository with the bash.showUntrackedFiles
+# variable, which defaults to true once GIT_PS1_SHOWUNTRACKEDFILES is
+# enabled.
+#
+# If you would like to see the difference between HEAD and its upstream,
+# set GIT_PS1_SHOWUPSTREAM="auto".  A "<" indicates you are behind, ">"
+# indicates you are ahead, "<>" indicates you have diverged and "="
+# indicates that there is no difference. You can further control
+# behaviour by setting GIT_PS1_SHOWUPSTREAM to a space-separated list
+# of values:
+#
+#     verbose       show number of commits ahead/behind (+/-) upstream
+#     name          if verbose, then also show the upstream abbrev name
+#     legacy        don't use the '--count' option available in recent
+#                   versions of git-rev-list
+#     git           always compare HEAD to @{upstream}
+#     svn           always compare HEAD to your SVN upstream
+#
+# You can change the separator between the branch name and the above
+# state symbols by setting GIT_PS1_STATESEPARATOR. The default separator
+# is SP.
+#
+# By default, __git_ps1 will compare HEAD to your SVN upstream if it can
+# find one, or @{upstream} otherwise.  Once you have set
+# GIT_PS1_SHOWUPSTREAM, you can override it on a per-repository basis by
+# setting the bash.showUpstream config variable.
+#
+# If you would like to see more information about the identity of
+# commits checked out as a detached HEAD, set GIT_PS1_DESCRIBE_STYLE
+# to one of these values:
+#
+#     contains      relative to newer annotated tag (v1.6.3.2~35)
+#     branch        relative to newer tag or branch (master~4)
+#     describe      relative to older annotated tag (v1.6.3.1-13-gdd42c2f)
+#     default       exactly matching tag
+#
+# If you would like a colored hint about the current dirty state, set
+# GIT_PS1_SHOWCOLORHINTS to a nonempty value. The colors are based on
+# the colored output of "git status -sb" and are available only when
+# using __git_ps1 for PROMPT_COMMAND or precmd.
+#
+# If you would like __git_ps1 to do nothing in the case when the current
+# directory is set up to be ignored by git, then set
+# GIT_PS1_HIDE_IF_PWD_IGNORED to a nonempty value. Override this on the
+# repository level by setting bash.hideIfPwdIgnored to "false".
+
+# check whether printf supports -v
+__git_printf_supports_v=
+printf -v __git_printf_supports_v -- '%s' yes >/dev/null 2>&1
+
+# stores the divergence from upstream in $p
+# used by GIT_PS1_SHOWUPSTREAM
+__git_ps1_show_upstream ()
+{
+	local key value
+	local svn_remote svn_url_pattern count n
+	local upstream=git legacy="" verbose="" name=""
+
+	svn_remote=()
+	# get some config options from git-config
+	local output="$(git config -z --get-regexp '^(svn-remote\..*\.url|bash\.showupstream)$' 2>/dev/null | tr '\0\n' '\n ')"
+	while read -r key value; do
+		case "$key" in
+		bash.showupstream)
+			GIT_PS1_SHOWUPSTREAM="$value"
+			if [[ -z "${GIT_PS1_SHOWUPSTREAM}" ]]; then
+				p=""
+				return
+			fi
+			;;
+		svn-remote.*.url)
+			svn_remote[$((${#svn_remote[@]} + 1))]="$value"
+			svn_url_pattern="$svn_url_pattern\\|$value"
+			upstream=svn+git # default upstream is SVN if available, else git
+			;;
+		esac
+	done <<< "$output"
+
+	# parse configuration values
+	for option in ${GIT_PS1_SHOWUPSTREAM}; do
+		case "$option" in
+		git|svn) upstream="$option" ;;
+		verbose) verbose=1 ;;
+		legacy)  legacy=1  ;;
+		name)    name=1 ;;
+		esac
+	done
+
+	# Find our upstream
+	case "$upstream" in
+	git)    upstream="@{upstream}" ;;
+	svn*)
+		# get the upstream from the "git-svn-id: ..." in a commit message
+		# (git-svn uses essentially the same procedure internally)
+		local -a svn_upstream
+		svn_upstream=($(git log --first-parent -1 \
+					--grep="^git-svn-id: \(${svn_url_pattern#??}\)" 2>/dev/null))
+		if [[ 0 -ne ${#svn_upstream[@]} ]]; then
+			svn_upstream=${svn_upstream[${#svn_upstream[@]} - 2]}
+			svn_upstream=${svn_upstream%@*}
+			local n_stop="${#svn_remote[@]}"
+			for ((n=1; n <= n_stop; n++)); do
+				svn_upstream=${svn_upstream#${svn_remote[$n]}}
+			done
+
+			if [[ -z "$svn_upstream" ]]; then
+				# default branch name for checkouts with no layout:
+				upstream=${GIT_SVN_ID:-git-svn}
+			else
+				upstream=${svn_upstream#/}
+			fi
+		elif [[ "svn+git" = "$upstream" ]]; then
+			upstream="@{upstream}"
+		fi
+		;;
+	esac
+
+	# Find how many commits we are ahead/behind our upstream
+	if [[ -z "$legacy" ]]; then
+		count="$(git rev-list --count --left-right \
+				"$upstream"...HEAD 2>/dev/null)"
+	else
+		# produce equivalent output to --count for older versions of git
+		local commits
+		if commits="$(git rev-list --left-right "$upstream"...HEAD 2>/dev/null)"
+		then
+			local commit behind=0 ahead=0
+			for commit in $commits
+			do
+				case "$commit" in
+				"<"*) ((behind++)) ;;
+				*)    ((ahead++))  ;;
+				esac
+			done
+			count="$behind	$ahead"
+		else
+			count=""
+		fi
+	fi
+
+	# calculate the result
+	if [[ -z "$verbose" ]]; then
+		case "$count" in
+		"") # no upstream
+			p="" ;;
+		"0	0") # equal to upstream
+			p="=" ;;
+		"0	"*) # ahead of upstream
+			p=">" ;;
+		*"	0") # behind upstream
+			p="<" ;;
+		*)	    # diverged from upstream
+			p="<>" ;;
+		esac
+	else
+		case "$count" in
+		"") # no upstream
+			p="" ;;
+		"0	0") # equal to upstream
+			p=" u=" ;;
+		"0	"*) # ahead of upstream
+			p=" u+${count#0	}" ;;
+		*"	0") # behind upstream
+			p=" u-${count%	0}" ;;
+		*)	    # diverged from upstream
+			p=" u+${count#*	}-${count%	*}" ;;
+		esac
+		if [[ -n "$count" && -n "$name" ]]; then
+			__git_ps1_upstream_name=$(git rev-parse \
+				--abbrev-ref "$upstream" 2>/dev/null)
+			if [ $pcmode = yes ] && [ $ps1_expanded = yes ]; then
+				p="$p \${__git_ps1_upstream_name}"
+			else
+				p="$p ${__git_ps1_upstream_name}"
+				# not needed anymore; keep user's
+				# environment clean
+				unset __git_ps1_upstream_name
+			fi
+		fi
+	fi
+
+}
+
+# Helper function that is meant to be called from __git_ps1.  It
+# injects color codes into the appropriate gitstring variables used
+# to build a gitstring.
+__git_ps1_colorize_gitstring ()
+{
+	if [[ -n ${ZSH_VERSION-} ]]; then
+		local c_red='%F{red}'
+		local c_green='%F{green}'
+		local c_lblue='%F{blue}'
+		local c_clear='%f'
+	else
+		# Using \[ and \] around colors is necessary to prevent
+		# issues with command line editing/browsing/completion!
+		local c_red='\[\e[31m\]'
+		local c_green='\[\e[32m\]'
+		local c_lblue='\[\e[1;34m\]'
+		local c_clear='\[\e[0m\]'
+	fi
+	local bad_color=$c_red
+	local ok_color=$c_green
+	local flags_color="$c_lblue"
+
+	local branch_color=""
+	if [ $detached = no ]; then
+		branch_color="$ok_color"
+	else
+		branch_color="$bad_color"
+	fi
+	c="$branch_color$c"
+
+	z="$c_clear$z"
+	if [ "$w" = "*" ]; then
+		w="$bad_color$w"
+	fi
+	if [ -n "$i" ]; then
+		i="$ok_color$i"
+	fi
+	if [ -n "$s" ]; then
+		s="$flags_color$s"
+	fi
+	if [ -n "$u" ]; then
+		u="$bad_color$u"
+	fi
+	r="$c_clear$r"
+}
+
+__git_eread ()
+{
+	local f="$1"
+	shift
+	test -r "$f" && read "$@" <"$f"
+}
+
+# __git_ps1 accepts 0 or 1 arguments (i.e., format string)
+# when called from PS1 using command substitution
+# in this mode it prints text to add to bash PS1 prompt (includes branch name)
+#
+# __git_ps1 requires 2 or 3 arguments when called from PROMPT_COMMAND (pc)
+# in that case it _sets_ PS1. The arguments are parts of a PS1 string.
+# when two arguments are given, the first is prepended and the second appended
+# to the state string when assigned to PS1.
+# The optional third parameter will be used as printf format string to further
+# customize the output of the git-status string.
+# In this mode you can request colored hints using GIT_PS1_SHOWCOLORHINTS=true
+__git_ps1 ()
+{
+	# preserve exit status
+	local exit=$?
+	local pcmode=no
+	local detached=no
+	local ps1pc_start='\u@\h:\w '
+	local ps1pc_end='\$ '
+	local printf_format=' (%s)'
+
+	case "$#" in
+		2|3)	pcmode=yes
+			ps1pc_start="$1"
+			ps1pc_end="$2"
+			printf_format="${3:-$printf_format}"
+			# set PS1 to a plain prompt so that we can
+			# simply return early if the prompt should not
+			# be decorated
+			PS1="$ps1pc_start$ps1pc_end"
+		;;
+		0|1)	printf_format="${1:-$printf_format}"
+		;;
+		*)	return $exit
+		;;
+	esac
+
+	# ps1_expanded:  This variable is set to 'yes' if the shell
+	# subjects the value of PS1 to parameter expansion:
+	#
+	#   * bash does unless the promptvars option is disabled
+	#   * zsh does not unless the PROMPT_SUBST option is set
+	#   * POSIX shells always do
+	#
+	# If the shell would expand the contents of PS1 when drawing
+	# the prompt, a raw ref name must not be included in PS1.
+	# This protects the user from arbitrary code execution via
+	# specially crafted ref names.  For example, a ref named
+	# 'refs/heads/$(IFS=_;cmd=sudo_rm_-rf_/;$cmd)' might cause the
+	# shell to execute 'sudo rm -rf /' when the prompt is drawn.
+	#
+	# Instead, the ref name should be placed in a separate global
+	# variable (in the __git_ps1_* namespace to avoid colliding
+	# with the user's environment) and that variable should be
+	# referenced from PS1.  For example:
+	#
+	#     __git_ps1_foo=$(do_something_to_get_ref_name)
+	#     PS1="...stuff...\${__git_ps1_foo}...stuff..."
+	#
+	# If the shell does not expand the contents of PS1, the raw
+	# ref name must be included in PS1.
+	#
+	# The value of this variable is only relevant when in pcmode.
+	#
+	# Assume that the shell follows the POSIX specification and
+	# expands PS1 unless determined otherwise.  (This is more
+	# likely to be correct if the user has a non-bash, non-zsh
+	# shell and safer than the alternative if the assumption is
+	# incorrect.)
+	#
+	local ps1_expanded=yes
+	[ -z "$ZSH_VERSION" ] || [[ -o PROMPT_SUBST ]] || ps1_expanded=no
+	[ -z "$BASH_VERSION" ] || shopt -q promptvars || ps1_expanded=no
+
+	local repo_info rev_parse_exit_code
+	repo_info="$(git rev-parse --git-dir --is-inside-git-dir \
+		--is-bare-repository --is-inside-work-tree \
+		--short HEAD 2>/dev/null)"
+	rev_parse_exit_code="$?"
+
+	if [ -z "$repo_info" ]; then
+		return $exit
+	fi
+
+	local short_sha
+	if [ "$rev_parse_exit_code" = "0" ]; then
+		short_sha="${repo_info##*$'\n'}"
+		repo_info="${repo_info%$'\n'*}"
+	fi
+	local inside_worktree="${repo_info##*$'\n'}"
+	repo_info="${repo_info%$'\n'*}"
+	local bare_repo="${repo_info##*$'\n'}"
+	repo_info="${repo_info%$'\n'*}"
+	local inside_gitdir="${repo_info##*$'\n'}"
+	local g="${repo_info%$'\n'*}"
+
+	if [ "true" = "$inside_worktree" ] &&
+	   [ -n "${GIT_PS1_HIDE_IF_PWD_IGNORED-}" ] &&
+	   [ "$(git config --bool bash.hideIfPwdIgnored)" != "false" ] &&
+	   git check-ignore -q .
+	then
+		return $exit
+	fi
+
+	local r=""
+	local b=""
+	local step=""
+	local total=""
+	if [ -d "$g/rebase-merge" ]; then
+		__git_eread "$g/rebase-merge/head-name" b
+		__git_eread "$g/rebase-merge/msgnum" step
+		__git_eread "$g/rebase-merge/end" total
+		if [ -f "$g/rebase-merge/interactive" ]; then
+			r="|REBASE-i"
+		else
+			r="|REBASE-m"
+		fi
+	else
+		if [ -d "$g/rebase-apply" ]; then
+			__git_eread "$g/rebase-apply/next" step
+			__git_eread "$g/rebase-apply/last" total
+			if [ -f "$g/rebase-apply/rebasing" ]; then
+				__git_eread "$g/rebase-apply/head-name" b
+				r="|REBASE"
+			elif [ -f "$g/rebase-apply/applying" ]; then
+				r="|AM"
+			else
+				r="|AM/REBASE"
+			fi
+		elif [ -f "$g/MERGE_HEAD" ]; then
+			r="|MERGING"
+		elif [ -f "$g/CHERRY_PICK_HEAD" ]; then
+			r="|CHERRY-PICKING"
+		elif [ -f "$g/REVERT_HEAD" ]; then
+			r="|REVERTING"
+		elif [ -f "$g/BISECT_LOG" ]; then
+			r="|BISECTING"
+		fi
+
+		if [ -n "$b" ]; then
+			:
+		elif [ -h "$g/HEAD" ]; then
+			# symlink symbolic ref
+			b="$(git symbolic-ref HEAD 2>/dev/null)"
+		else
+			local head=""
+			if ! __git_eread "$g/HEAD" head; then
+				return $exit
+			fi
+			# is it a symbolic ref?
+			b="${head#ref: }"
+			if [ "$head" = "$b" ]; then
+				detached=yes
+				b="$(
+				case "${GIT_PS1_DESCRIBE_STYLE-}" in
+				(contains)
+					git describe --contains HEAD ;;
+				(branch)
+					git describe --contains --all HEAD ;;
+				(describe)
+					git describe HEAD ;;
+				(* | default)
+					git describe --tags --exact-match HEAD ;;
+				esac 2>/dev/null)" ||
+
+				b="$short_sha..."
+				b="($b)"
+			fi
+		fi
+	fi
+
+	if [ -n "$step" ] && [ -n "$total" ]; then
+		r="$r $step/$total"
+	fi
+
+	local w=""
+	local i=""
+	local s=""
+	local u=""
+	local c=""
+	local p=""
+
+	if [ "true" = "$inside_gitdir" ]; then
+		if [ "true" = "$bare_repo" ]; then
+			c="BARE:"
+		else
+			b="GIT_DIR!"
+		fi
+	elif [ "true" = "$inside_worktree" ]; then
+		if [ -n "${GIT_PS1_SHOWDIRTYSTATE-}" ] &&
+		   [ "$(git config --bool bash.showDirtyState)" != "false" ]
+		then
+			git diff --no-ext-diff --quiet || w="*"
+			git diff --no-ext-diff --cached --quiet || i="+"
+			if [ -z "$short_sha" ] && [ -z "$i" ]; then
+				i="#"
+			fi
+		fi
+		if [ -n "${GIT_PS1_SHOWSTASHSTATE-}" ] &&
+		   git rev-parse --verify --quiet refs/stash >/dev/null
+		then
+			s="$"
+		fi
+
+		if [ -n "${GIT_PS1_SHOWUNTRACKEDFILES-}" ] &&
+		   [ "$(git config --bool bash.showUntrackedFiles)" != "false" ] &&
+		   git ls-files --others --exclude-standard --directory --no-empty-directory --error-unmatch -- ':/*' >/dev/null 2>/dev/null
+		then
+			u="%${ZSH_VERSION+%}"
+		fi
+
+		if [ -n "${GIT_PS1_SHOWUPSTREAM-}" ]; then
+			__git_ps1_show_upstream
+		fi
+	fi
+
+	local z="${GIT_PS1_STATESEPARATOR-" "}"
+
+	# NO color option unless in PROMPT_COMMAND mode or it's Zsh
+	if [ -n "${GIT_PS1_SHOWCOLORHINTS-}" ]; then
+		if [ $pcmode = yes ] || [ -n "${ZSH_VERSION-}" ]; then
+			__git_ps1_colorize_gitstring
+		fi
+	fi
+
+	b=${b##refs/heads/}
+	if [ $pcmode = yes ] && [ $ps1_expanded = yes ]; then
+		__git_ps1_branch_name=$b
+		b="\${__git_ps1_branch_name}"
+	fi
+
+	local f="$w$i$s$u"
+	local gitstring="$c$b${f:+$z$f}$r$p"
+
+	if [ $pcmode = yes ]; then
+		if [ "${__git_printf_supports_v-}" != yes ]; then
+			gitstring=$(printf -- "$printf_format" "$gitstring")
+		else
+			printf -v gitstring -- "$printf_format" "$gitstring"
+		fi
+		PS1="$ps1pc_start$gitstring$ps1pc_end"
+	else
+		printf -- "$printf_format" "$gitstring"
+	fi
+
+	return $exit
+}
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/gitfast/gitfast.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/gitfast/gitfast.plugin.zsh
new file mode 100644
index 0000000..dba1b13
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/gitfast/gitfast.plugin.zsh
@@ -0,0 +1,8 @@
+dir=$(dirname $0)
+source $dir/../git/git.plugin.zsh
+source $dir/git-prompt.sh
+
+function git_prompt_info() {
+  dirty="$(parse_git_dirty)"
+  __git_ps1 "${ZSH_THEME_GIT_PROMPT_PREFIX//\%/%%}%s${dirty//\%/%%}${ZSH_THEME_GIT_PROMPT_SUFFIX//\%/%%}"
+}
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/github/README.md b/oh-my-zsh/.oh-my-zsh/plugins/github/README.md
new file mode 100644
index 0000000..2b66e39
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/github/README.md
@@ -0,0 +1,46 @@
+#  github
+
+This plugin supports working with GitHub from the command line. It provides a few things:
+
+* Sets up the `hub` wrapper and completions for the `git` command if you have `hub` installed.
+* Completion for the `github` Ruby gem.
+* Convenience functions for working with repos and URLs.
+
+###  Functions
+
+* `empty_gh` - Creates a new empty repo (with a `README.md`) and pushes it to GitHub
+* `new_gh` - Initializes an existing directory as a repo and pushes it to GitHub
+* `exist_gh` - Takes an existing repo and pushes it to GitHub
+* `git.io` - Shortens a URL using [git.io](https://git.io)
+
+
+##  Installation
+
+[Hub](https://github.com/github/hub) needs to be installed if you want to use it. On OS X with Homebrew, this can be done with `brew install hub`. The `hub` completion definition needs to be added to your `$FPATH` before initializing OMZ.
+
+The [`github` Ruby gem](https://github.com/defunkt/github-gem) needs to be installed if you want to use it.
+
+###  Configuration
+
+These settings affect `github`'s behavior.
+
+#### Environment variables
+
+* `$GITHUB_USER`
+* `$GITHUB_PASSWORD`
+
+#### Git configuration options
+
+* `github.user` - GitHub username for repo operations
+
+See `man hub` for more details.
+
+###  Homebrew installation note
+
+If you have installed `hub` using Homebrew, its completions may not be on your `$FPATH` if you are using the system `zsh`. Homebrew installs `zsh` completion definitions to `/usr/local/share/zsh/site-functions`, which will be on `$FPATH` for the Homebrew-installed `zsh`, but not for the system `zsh`. If you want it to work with the system `zsh`, add this to your `~/.zshrc` before it sources `oh-my-zsh.sh`.
+
+```zsh
+if (( ! ${fpath[(I)/usr/local/share/zsh/site-functions]} )); then
+  FPATH=/usr/local/share/zsh/site-functions:$FPATH
+fi
+```
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/github/_hub b/oh-my-zsh/.oh-my-zsh/plugins/github/_hub
new file mode 100644
index 0000000..1833a9c
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/github/_hub
@@ -0,0 +1,165 @@
+#compdef hub
+
+# Zsh will source this file when attempting to autoload the "_hub" function,
+# typically on the first attempt to complete the hub command.  We define two new
+# setup helper routines (one for the zsh-distributed version, one for the
+# git-distributed, bash-based version).  Then we redefine the "_hub" function to
+# call "_git" after some other interception.
+#
+# This is pretty fragile, if you think about it.  Any number of implementation
+# changes in the "_git" scripts could cause problems down the road.  It would be
+# better if the stock git completions were just a bit more permissive about how
+# it allowed third-party commands to be added.
+
+(( $+functions[__hub_setup_zsh_fns] )) ||
+__hub_setup_zsh_fns () {
+  (( $+functions[_git-alias] )) ||
+  _git-alias () {
+    _arguments \
+      '-s[output shell script suitable for eval]' \
+      '1::shell:(zsh bash csh)'
+  }
+
+  (( $+functions[_git-browse] )) ||
+  _git-browse () {
+    _arguments \
+      '-u[output the URL]' \
+      '2::subpage:(wiki commits issues)'
+  }
+
+  (( $+functions[_git-compare] )) ||
+  _git-compare () {
+    _arguments \
+      '-u[output the URL]' \
+      ':[start...]end range:'
+  }
+
+  (( $+functions[_git-create] )) ||
+  _git-create () {
+    _arguments \
+      '::name (REPOSITORY or ORGANIZATION/REPOSITORY):' \
+      '-p[make repository private]' \
+      '-d[description]:description' \
+      '-h[home page]:repository home page URL:_urls'
+  }
+
+  (( $+functions[_git-fork] )) ||
+  _git-fork () {
+    _arguments \
+      '--no-remote[do not add a remote for the new fork]'
+  }
+
+  (( $+functions[_git-pull-request] )) ||
+  _git-pull-request () {
+    _arguments \
+      '-f[force (skip check for local commits)]' \
+      '-b[base]:base ("branch", "owner\:branch", "owner/repo\:branch"):' \
+      '-h[head]:head ("branch", "owner\:branch", "owner/repo\:branch"):' \
+      - set1 \
+        '-m[message]' \
+        '-F[file]' \
+        '-a[user]' \
+        '-M[milestone]' \
+        '-l[labels]' \
+      - set2 \
+        '-i[issue]:issue number:' \
+      - set3 \
+        '::issue-url:_urls'
+  }
+
+  # stash the "real" command for later
+  functions[_hub_orig_git_commands]=$functions[_git_commands]
+
+  # Replace it with our own wrapper.
+  declare -f _git_commands >& /dev/null && unfunction _git_commands
+  _git_commands () {
+    local ret=1
+    # call the original routine
+    _call_function ret _hub_orig_git_commands
+
+    # Effectively "append" our hub commands to the behavior of the original
+    # _git_commands function.  Using this wrapper function approach ensures
+    # that we only offer the user the hub subcommands when the user is
+    # actually trying to complete subcommands.
+    hub_commands=(
+      alias:'show shell instructions for wrapping git'
+      pull-request:'open a pull request on GitHub'
+      fork:'fork origin repo on GitHub'
+      create:'create new repo on GitHub for the current project'
+      browse:'browse the project on GitHub'
+      compare:'open GitHub compare view'
+      ci-status:'lookup commit in GitHub Status API'
+      sync:'update local branches from upstream'
+    )
+    _describe -t hub-commands 'hub command' hub_commands && ret=0
+
+    return ret
+  }
+}
+
+(( $+functions[__hub_setup_bash_fns] )) ||
+__hub_setup_bash_fns () {
+  # TODO more bash-style fns needed here to complete subcommand args.  They take
+  # the form "_git_CMD" where "CMD" is something like "pull-request".
+
+  # Duplicate and rename the 'list_all_commands' function
+  eval "$(declare -f __git_list_all_commands | \
+        sed 's/__git_list_all_commands/__git_list_all_commands_without_hub/')"
+
+  # Wrap the 'list_all_commands' function with extra hub commands
+  __git_list_all_commands() {
+    cat <<-EOF
+alias
+pull-request
+fork
+create
+browse
+compare
+ci-status
+sync
+EOF
+    __git_list_all_commands_without_hub
+  }
+
+  # Ensure cached commands are cleared
+  __git_all_commands=""
+}
+
+# redefine _hub to a much smaller function in the steady state
+_hub () {
+  # only attempt to intercept the normal "_git" helper functions once
+  (( $+__hub_func_replacement_done )) ||
+    () {
+      # At this stage in the shell's execution the "_git" function has not yet
+      # been autoloaded, so the "_git_commands" or "__git_list_all_commands"
+      # functions will not be defined.  Call it now (with a bogus no-op service
+      # to prevent premature completion) so that we can wrap them.
+      if declare -f _git >& /dev/null ; then
+        _hub_noop () { __hub_zsh_provided=1 }       # zsh-provided will call this one
+        __hub_noop_main () { __hub_git_provided=1 } # git-provided will call this one
+        local service=hub_noop
+        _git
+        unfunction _hub_noop
+        unfunction __hub_noop_main
+        service=git
+      fi
+
+      if (( $__hub_zsh_provided )) ; then
+        __hub_setup_zsh_fns
+      elif (( $__hub_git_provided )) ; then
+        __hub_setup_bash_fns
+      fi
+
+      __hub_func_replacement_done=1
+    }
+
+  # Now perform the actual completion, allowing the "_git" function to call our
+  # replacement "_git_commands" function as needed.  Both versions expect
+  # service=git or they will call nonexistent routines or end up in an infinite
+  # loop.
+  service=git
+  declare -f _git >& /dev/null && _git
+}
+
+# make sure we actually attempt to complete on the first "tab" from the user
+_hub
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/github/github.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/github/github.plugin.zsh
new file mode 100644
index 0000000..8e4b973
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/github/github.plugin.zsh
@@ -0,0 +1,76 @@
+# Set up hub wrapper for git, if it is available; https://github.com/github/hub
+if (( $+commands[hub] )); then
+  alias git=hub
+fi
+
+# Functions #################################################################
+
+# Based on https://github.com/dbb/githome/blob/master/.config/zsh/functions
+
+# empty_gh 
+#
+# Use this when creating a new repo from scratch.
+# Creates a new repo with a blank README.md in it and pushes it up to GitHub.
+empty_gh() { # [NAME_OF_REPO]
+  emulate -L zsh
+  local repo=$1
+
+  mkdir "$repo"
+  touch "$repo/README.md"
+  new_gh "$repo"
+}
+
+# new_gh [DIRECTORY]
+#
+# Use this when you have a directory that is not yet set up for git.
+# This function will add all non-hidden files to git.
+new_gh() { # [DIRECTORY]
+  emulate -L zsh
+  local repo="$1"
+  cd "$repo" \
+    || return
+
+  git init \
+    || return
+  # add all non-dot files
+  print '.*'"\n"'*~' >> .gitignore
+  git add [^.]* \
+    || return
+  git add -f .gitignore \
+    || return
+  git commit -m 'Initial commit.' \
+    || return
+  hub create \
+    || return
+  git push -u origin master \
+    || return
+}
+
+# exist_gh [DIRECTORY]
+#
+# Use this when you have a git repo that's ready to go and you want to add it
+# to your GitHub.
+exist_gh() { # [DIRECTORY]
+  emulate -L zsh
+  local repo=$1
+  cd "$repo"
+
+  hub create \
+    || return
+  git push -u origin master
+}
+
+# git.io "GitHub URL"
+#
+# Shorten GitHub url, example:
+#   https://github.com/nvogel/dotzsh    >   https://git.io/8nU25w
+# source: https://github.com/nvogel/dotzsh
+# documentation: https://github.com/blog/985-git-io-github-url-shortener
+#
+git.io() {
+  emulate -L zsh
+  curl -i -s https://git.io -F "url=$1" | grep "Location" | cut -f 2 -d " "
+}
+
+# End Functions #############################################################
+
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/gitignore/README.md b/oh-my-zsh/.oh-my-zsh/plugins/gitignore/README.md
new file mode 100644
index 0000000..753dd31
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/gitignore/README.md
@@ -0,0 +1,17 @@
+# gitignore
+
+This plugin enables you the use of [gitignore.io](https://www.gitignore.io/) from the command line. You need an active internet connection.
+
+To use it, add `gitignore` to the plugins array in your zshrc file:
+
+```zsh
+plugins=(... gitignore)
+```
+
+## Plugin commands
+
+* `gi list`: List all the currently supported gitignore.io templates.
+
+* `gi [TEMPLATENAME]`: Show git-ignore output on the command line, e.g. `gi java` to exclude class and package files.
+
+* `gi [TEMPLATENAME] >> .gitignore`: Appending programming language settings to your projects .gitignore.
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/gitignore/gitignore.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/gitignore/gitignore.plugin.zsh
new file mode 100644
index 0000000..15e38d3
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/gitignore/gitignore.plugin.zsh
@@ -0,0 +1,12 @@
+function gi() { curl -fL https://www.gitignore.io/api/${(j:,:)@} }
+
+_gitignoreio_get_command_list() {
+  curl -sfL https://www.gitignore.io/api/list | tr "," "\n"
+}
+
+_gitignoreio () {
+  compset -P '*,'
+  compadd -S '' `_gitignoreio_get_command_list`
+}
+
+compdef _gitignoreio gi
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/glassfish/_asadmin b/oh-my-zsh/.oh-my-zsh/plugins/glassfish/_asadmin
new file mode 100644
index 0000000..a6a7af5
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/glassfish/_asadmin
@@ -0,0 +1,1150 @@
+#compdef asadmin
+#autoload
+
+local -a _1st_arguments
+_1st_arguments=(
+    "add-library:adds one or more library JAR files to GlassFish Server"
+    "add-resources:creates the resources specified in an XML file"
+    "apply-http-lb-changes:applies load balancer configuration changes to the load balancer"
+    "backup-domain:performs a backup on the domain"
+    "change-admin-password:changes the administrator password"
+    "change-master-broker:changes the master broker in a Message Queue cluster providing JMS services for a GlassFish Server cluster."
+    "change-master-password:changes the master password"
+    "collect-log-files:creates a ZIP archive of all available log files"
+    "configure-jms-cluster:configures the Message Queue cluster providing JMS services to a GlassFish Server cluster"
+    "configure-lb-weight:sets load balancing weights for clustered instances"
+    "configure-ldap-for-admin:configures the authentication realm named admin-realm for the given LDAP"
+    "copy-config:copies an existing named configuration to create another configuration"
+    "create-admin-object:adds the administered object with the specified JNDI name for a resource adapter"
+    "create-application-ref:creates a reference to an application"
+    "create-audit-module:adds an audit module"
+    "create-auth-realm:adds the named authentication realm"
+    "create-cluster:creates a GlassFish Server cluster"
+    "create-connector-connection-pool:adds a connection pool with the specified connection pool name"
+    "create-connector-resource:registers the connector resource with the specified JNDI name"
+    "create-connector-security-map:creates a security map for the specified connector connection pool"
+    "create-connector-work-security-map:creates a work security map for the specified resource adapter"
+    "create-custom-resource:creates a custom resource"
+    "create-domain:creates a domain"
+    "create-file-user:creates a new file user"
+    "create-http:sets HTTP parameters for a protocol"
+    "create-http-health-checker:creates a health-checker for a specified load balancer configuration"
+    "create-http-lb:creates a load balancer"
+    "create-http-lb-config:creates a configuration for the load balancer"
+    "create-http-lb-ref:adds an existing cluster or server instance to an existing load balancer configuration or load balancer"
+    "create-http-listener:adds a new HTTP network listener socket"
+    "create-http-redirect:adds a new HTTP redirect"
+    "create-iiop-listener:adds an IIOP listener"
+    "create-instance:creates a GlassFish Server instance"
+    "create-jacc-provider:enables administrators to create a JACC provider that can be used by third-party authorization modules for applications running in GlassFish Server"
+    "create-javamail-resource:creates a JavaMail session resource"
+    "create-jdbc-connection-pool:registers a JDBC connection pool"
+    "create-jdbc-resource:creates a JDBC resource with the specified JNDI name"
+    "create-jms-host:creates a JMS host"
+    "create-jms-resource:creates a JMS resource"
+    "create-jmsdest:creates a JMS physical destination"
+    "create-jndi-resource:registers a JNDI resource"
+    "create-jvm-options:creates options for the Java application launcher"
+    "create-lifecycle-module:creates a lifecycle module"
+    "create-local-instance:creates a GlassFish Server instance on the host where the subcommand is run"
+    "create-message-security-provider:enables administrators to create a message security provider, which specifies how SOAP messages will be secured."
+    "create-network-listener:adds a new network listener socket"
+    "create-node-config:creates a node that is not enabled for remote communication"
+    "create-node-dcom:creates a node that is enabled for com munication over DCOM"
+    "create-node-ssh:creates a node that is enabled for communication over SSH"
+    "create-password-alias:creates a password alias"
+    "create-profiler:creates the profiler element"
+    "create-protocol:adds a new protocol"
+    "create-protocol-filter:adds a new protocol filter"
+    "create-protocol-finder:adds a new protocol finder"
+    "create-resource-adapter-config:creates the configuration information for the connector module"
+    "create-resource-ref:creates a reference to a resource"
+    "create-service:configures the starting of a DAS or a GlassFish Server instance on an unattended boot"
+    "create-ssl:creates and configures the SSL element in the selected HTTP listener, IIOP listener, or IIOP service"
+    "create-system-properties:adds one or more system property elements that can be referenced elsewhere in the configuration."
+    "create-threadpool:adds a thread pool"
+    "create-transport:adds a new transport"
+    "create-virtual-server:creates the named virtual server"
+    "delete-admin-object:removes the administered object with the specified JNDI name."
+    "delete-application-ref:removes a reference to an applica tion"
+    "delete-audit-module:removes the named audit-module"
+    "delete-auth-realm:removes the named authentication realm"
+    "delete-cluster:deletes a GlassFish Server cluster"
+    "delete-config:deletes an existing named configuration"
+    "delete-connector-connection-pool:removes the specified connector connection pool"
+    "delete-connector-resource:removes the connector resource with the specified JNDI name"
+    "delete-connector-security-map:deletes a security map for the specified connector connection pool"
+    "delete-connector-work-security-map:deletes a work security map for the specified resource adapter"
+    "delete-custom-resource:removes a custom resource"
+    "delete-domain:deletes a domain"
+    "delete-file-user:removes the named file user"
+    "delete-http:removes HTTP parameters from a protocol"
+    "delete-http-health-checker:deletes the health-checker for a specified load balancer configuration"
+    "delete-http-lb:deletes a load balancer"
+    "delete-http-lb-config:deletes a load balancer configuration"
+    "delete-http-lb-ref:deletes the cluster or server instance from a load balancer"
+    "delete-http-listener:removes a network listener"
+    "delete-http-redirect:removes an HTTP redirect"
+    "delete-iiop-listener:removes an IIOP listener"
+    "delete-instance:deletes a GlassFish Server instance"
+    "delete-jacc-provider:enables administrators to delete JACC providers defined for a domain"
+    "delete-javamail-resource:removes a JavaMail session resource"
+    "delete-jdbc-connection-pool:removes the specified JDBC connection pool"
+    "delete-jdbc-resource:removes a JDBC resource with the specified JNDI name"
+    "delete-jms-host:removes a JMS host"
+    "delete-jms-resource:removes a JMS resource"
+    "delete-jmsdest:removes a JMS physical destination"
+    "delete-jndi-resource:removes a JNDI resource"
+    "delete-jvm-options:removes one or more options for the Java application launcher"
+    "delete-lifecycle-module:removes the lifecycle module"
+    "delete-local-instance:deletes a GlassFish Server instance on the machine where the subcommand is run"
+    "delete-log-levels:"
+    "delete-message-security-provider:enables administrators to delete a message security provider"
+    "delete-network-listener:removes a network listener"
+    "delete-node-config:deletes a node that is not enabled for remote communication"
+    "delete-node-dcom:deletes a node that is enabled for communication over DCOM"
+    "delete-node-ssh:deletes a node that is enabled for communication over SSH"
+    "delete-password-alias:deletes a password alias"
+    "delete-profiler:removes the profiler element"
+    "delete-protocol:removes a protocol"
+    "delete-protocol-filter:removes a protocol filter"
+    "delete-protocol-finder:removes a protocol finder"
+    "delete-resource-adapter-config:deletes the resource adapter configuration"
+    "delete-resource-ref:removes a reference to a resource"
+    "delete-ssl:deletes the SSL element in the selected HTTP listener, IIOP listener, or IIOP service"
+    "delete-system-property:removes a system property of the domain, configuration, cluster, or server instance, one at a time"
+    "delete-threadpool:removes a thread pool"
+    "delete-transport:removes a transport"
+    "delete-virtual-server:removes a virtual server"
+    "deploy:deploys the specified component"
+    "deploydir:deploys an exploded format of application archive"
+    "environment variable"
+    "disable:disables the component"
+    "disable-http-lb-application:disables an application managed by a load balancer"
+    "disable-http-lb-server:disables a sever or cluster managed by a load balancer"
+    "disable-monitoring:disables monitoring for the server or for specific monitorable modules"
+    "disable-secure-admin:disables secure admin if it is already enabled."
+    "disable-secure-admin-internal-user:Instructs the GlassFish Server DAS and instances to not use the specified admin user to authenticate with each other and to authorize admin operations."
+    "disable-secure-admin-principal:disables the certificate for authorizing access in secure administration."
+    "enable:enables the component"
+    "enable-http-lb-application:enables a previously-disabled application managed by a load balancer"
+    "enable-http-lb-server:enables a previously disabled sever or cluster managed by a load balancer"
+    "enable-monitoring:enables monitoring for the server or for specific monitorable modules"
+    "enable-secure-admin:enables secure admin (if it is not already enabled), optionally changing the alias used for DAS-to-instance admin messages or the alias used for instance-to-DAS admin messages."
+    "enable-secure-admin-internal-user:Instructs the GlassFish Server DAS and instances to use the specified admin user and the password associated with the password alias to authenticate with each other and to authorize admin operations."
+    "enable-secure-admin-principal:Instructs GlassFish Server, when secure admin is enabled, to accept admin requests from clients identified by the specified SSL certificate."
+    "export:marks a variable name for automatic export to the environment of subsequent commands in multimode"
+    "export-http-lb-config:exports the load balancer configuration or load balancer to a file"
+    "export-sync-bundle:exports the configuration data of a cluster or standalone instance to an archive file"
+    "flush-connection-pool:reintializes all connections established in the specified connection pool"
+    "flush-jmsdest:purges messages in a JMS destination."
+    "freeze-transaction-service:freezes the transaction subsystem"
+    "generate-domain-schema:"
+    "generate-jvm-report:shows the JVM machine statistics for a given target instance"
+    "get:gets the values of configurable or monitorable attributes"
+    "get-client-stubs:retrieves the application JAR files needed to launch the application client."
+    "get-health:provides information on the cluster health"
+    "help"
+    "asadmin:utility for performing administrative tasks for Oracle GlassFish Server"
+    "import-sync-bundle:imports the configuration data of a clustered instance or standalone instance from an archive file"
+    "install-node:installs GlassFish Server software on specified SSH-enabled hosts"
+    "install-node-dcom:installs GlassFish Server software on specified DCOM-enabled hosts"
+    "install-node-ssh:installs GlassFish Server software on specified SSH-enabled hosts"
+    "jms-ping:checks if the JMS service is up and running"
+    "list:lists configurable or monitorable elements"
+    "list-admin-objects:gets all the administered objects"
+    "list-application-refs:lists the existing application references"
+    "list-applications:lists deployed applications"
+    "list-audit-modules:gets all audit modules and displays them"
+    "list-auth-realms:lists the authentication realms"
+    "list-backups:lists all backups"
+    "list-clusters:lists existing clusters in a domain"
+    "list-commands:lists available commands"
+    "list-components:lists deployed components"
+    "list-configs:lists named configurations"
+    "list-connector-connection-pools:lists the existing connector connection pools"
+    "list-connector-resources:lists all connector resources"
+    "list-connector-security-maps:lists the security maps belonging to the specified connector connection pool"
+    "list-connector-work-security-maps:lists the work security maps belonging to the specified resource adapter"
+    "list-containers:lists application containers"
+    "list-custom-resources:gets all custom resources"
+    "list-domains:lists the domains in the specified directory"
+    "list-file-groups:lists file groups"
+    "list-file-users:lists the file users"
+    "list-http-lb-configs:lists load balancer configurations"
+    "list-http-lbs:lists load balancers"
+    "list-http-listeners:lists the existing network listeners"
+    "list-iiop-listeners:lists the existing IIOP listeners"
+    "list-instances:lists GlassFish Server instances in a domain"
+    "list-jacc-providers:enables administrators to list JACC providers defined for a domain"
+    "list-javamail-resources:lists the existing JavaMail session resources"
+    "list-jdbc-connection-pools:lists all JDBC connection pools"
+    "list-jdbc-resources:lists all JDBC resources"
+    "list-jms-hosts:lists the existing JMS hosts"
+    "list-jms-resources:lists the JMS resources"
+    "list-jmsdest:lists the existing JMS physical destinations"
+    "list-jndi-entries:browses and queries the JNDI tree"
+    "list-jndi-resources:lists all existing JNDI resources"
+    "list-jvm-options:lists options for the Java application launcher"
+    "list-libraries:lists library JAR files on GlassFish Server"
+    "list-lifecycle-modules:lists the lifecycle modules"
+    "list-log-attributes:lists all logging attributes defined for a specified target in a domain"
+    "list-log-levels:lists the loggers and their log levels"
+    "list-message-security-providers:lists all security message providers for the given message layer"
+    "list-modules:lists GlassFish Server modules"
+    "list-network-listeners:lists the existing network listeners"
+    "list-nodes:lists all GlassFish Server nodes in a domain"
+    "list-nodes-config:lists all GlassFish Server nodes that do not support remote communication in a domain"
+    "list-nodes-dcom:lists all GlassFish Server nodes that support communication over DCOM in a domain"
+    "list-nodes-ssh:lists all GlassFish Server nodes that support communication over SSH in a domain"
+    "list-password-aliases:lists all password aliases"
+    "list-persistence-types:lists registered persistence types for HTTP sessions and SFSB instances"
+    "list-protocol-filters:lists the existing protocol filters"
+    "list-protocol-finders:lists the existing protocol finders"
+    "list-protocols:lists the existing protocols"
+    "list-resource-adapter-configs:lists the names of the current resource adapter configurations"
+    "list-resource-refs:lists existing resource references"
+    "list-secure-admin-internal-users:lists the user names that the GlassFish Server DAS and instances use to authenticate with each other and to authorize admin operations."
+    "list-secure-admin-principals:lists the certificates for which GlassFish Server accepts admin requests from clients."
+    "list-sub-components:lists EJB or servlet components in a deployed module or module of a deployed application"
+    "list-supported-cipher-suites:enables administrators to list the cipher suites that are supported and available to a specified GlassFish Server target"
+    "list-system-properties:lists the system properties of the domain, configuration, cluster, or server instance"
+    "list-threadpools:lists all the thread pools"
+    "list-timers:lists all of the persistent timers owned by server instance(s)"
+    "list-transports:lists the existing transports"
+    "list-virtual-servers:lists the existing virtual servers"
+    "list-web-context-param:lists servlet contextinitialization parameters of a deployed web application or module"
+    "list-web-env-entry:lists environment entries for a deployed web application or module"
+    "login:logs you into a domain"
+    "migrate-timers:moves EJB timers when a clustered instance was stopped or has crashed"
+    "monitor:displays monitoring data for commonly used components and services"
+    "multimode:allows multiple subcommands to be run while preserving environment settings and remaining in the asadmin utility"
+    "ping-connection-pool:tests if a connection pool is usable"
+    "ping-node-dcom:tests if a node that is enabled for communication over DCOM is usable"
+    "ping-node-ssh:tests if a node that is enabled for communication over SSH is usable"
+    "recover-transactions:manually recovers pending transactions"
+    "redeploy:redeploys the specified component"
+    "remove-library:removes one or more library JAR files from GlassFish Server"
+    "restart-domain:restarts the DAS of the specified domain"
+    "restart-instance:restarts a running GlassFish Server instance"
+    "restart-local-instance:restarts a running GlassFish Server instance on the host where the subcommand is run"
+    "restore-domain:restores files from backup"
+    "rollback-transaction:rolls back the named transaction"
+    "rotate-log:rotates the log file"
+    "set:sets the values of configurable attributes"
+    "set-log-attributes:sets the logging attributes for one or more loggers"
+    "set-log-levels:sets the log level for one or more loggers"
+    "set-web-context-param:sets a servlet context initialization parameter of a deployed web application or module"
+    "set-web-env-entry:sets an environment entry for a deployed web application or module"
+    "setup-ssh:sets up an SSH key on specified hosts"
+    "show-component-status:displays the status of the deployed component"
+    "start-cluster:starts a cluster"
+    "start-database:starts the Java DB"
+    "start-domain:starts the DAS of the specified domain"
+    "start-instance:starts a GlassFish Server instance"
+    "start-local-instance:starts a GlassFish Server instance on the host where the subcommand is run"
+    "stop-cluster:stops a GlassFish Server cluster"
+    "stop-database:stops the Java DB"
+    "stop-domain:stops the Domain Administration Server of the specified domain"
+    "stop-instance:stops a running GlassFish Server instance"
+    "stop-local-instance:stops a GlassFish Server instance on the machine where the subcommand is run"
+    "undeploy:removes a deployed component"
+    "unfreeze-transaction-service:resumes all suspended transactions"
+    "uninstall-node:uninstalls GlassFish Server software from specified hosts"
+    "uninstall-node-dcom:uninstalls GlassFish Server software from specified DCOM-enabled hosts"
+    "uninstall-node-ssh:uninstalls GlassFish Server software from specified SSH-enabled hosts"
+    "unset:removes one or more variables from the multimode environment"
+    "unset-web-context-param:unsets a servlet context initialization parameter of a deployed web application or module"
+    "unset-web-env-entry:unsets an environment entry for a deployed web application or module"
+    "update-connector-security-map:modifies a security map for the specified connector connection pool"
+    "update-connector-work-security-map:modifies a work security map for the specified resource adapter"
+    "update-file-user:updates a current file user as specified"
+    "update-node-config:updates the configuration data of anode"
+    "update-node-dcom:updates the configuration data of a node"
+    "update-node-ssh:updates the configuration data of a node"
+    "update-password-alias:updates a password alias"
+    "uptime:returns the length of time that the DAS has been running"
+    "validate-dcom:tests the connection over DCOM to a remote host"
+    "validate-multicast:validates that multicast transport is available for clusters"
+    "verify-domain-xml:verifies the content of the domain.xml file"
+    "version:displays version information forGlassFish Server"
+)
+
+_arguments '*:: :->command'
+
+if (( CURRENT == 1 )); then
+    _describe -t commands "asadmin command" _1st_arguments
+    return
+fi
+
+local -a _command_args
+case "$words[1]" in
+    add-library)
+        _command_args=('*:directory:_files' '--host+:' '--port+:' '--type+:type:(common ext app)')
+        ;;
+    add-resources)
+        _command_args=('*:directory:_files' '--host+:' '--port+:' '--target+:target:_asadmin_targets_cluster_das_domain_standalone_instance')
+        ;;
+    apply-http-lb-changes)
+        _command_args=('--host+:' '--ping+:' '--port+:')
+        ;;
+    backup-domain)
+        _command_args=('--backupconfig+:' '--backupdir+:' '--description+:' '--domaindir+:' '--long+:long:(true false)')
+        ;;
+    change-admin-password)
+        _command_args=('--domain_name+:' '--domaindir+:')
+        ;;
+    change-master-broker)
+        _command_args=('--host+:' '--port+:')
+        ;;
+    change-master-password)
+        _command_args=('--domaindir+:' '--nodedir+:' '--savemasterpassword+:savemasterpassword:(true false)')
+        ;;
+    collect-log-files)
+        _command_args=('--host+:' '--port+:' '--retrieve+:retrieve:(true false)' '--target+:')
+        ;;
+    configure-jms-cluster)
+        _command_args=('--clustertype+:' '--configstoretype+:' '--dburl+:' '--dbuser+:' '--dbvendor+:' '--host+:' '--jmsdbpassword+:' '--messagestoretype+:' '--port+:' '--property+:')
+        ;;
+    configure-lb-weight)
+        _command_args=('--cluster+:cluster:_asadmin_clusters' '--host+:' '--port+:')
+        ;;
+    configure-ldap-for-admin)
+        _command_args=('--basedn+:' '--host+:' '--ldap-group+:' '--port+:' '--target+:target:_asadmin_targets_cluster_config_das_standalone_instance' '--url+:')
+        ;;
+    copy-config)
+        _command_args=('--host+:' '--port+:' '--systemproperties+:')
+        ;;
+    create-admin-object)
+        _command_args=('--classname+:' '--description+:' '--enabled+:enabled:(true false)' '--host+:' '--port+:' '--property+:' '--raname+:' '--restype+:' '--target+:target:_asadmin_targets_cluster_config_das_standalone_instance')
+        ;;
+    create-application-ref)
+        _command_args=('--enabled+:enabled:(true false)' '--host+:' '--lbenabled+:lbenabled:(true false)' '--port+:' '--target+:target:_asadmin_targets_cluster_das_standalone_instance' '--virtualservers+:')
+        ;;
+    create-audit-module)
+        _command_args=('--classname+:' '--host+:' '--port+:' '--property+:' '--target+:target:_asadmin_targets_cluster_config_das_standalone_instance')
+        ;;
+    create-auth-realm)
+        _command_args=('--classname+:' '--host+:' '--port+:' '--property+:' '--target+:target:_asadmin_targets_cluster_config_das_standalone_instance')
+        ;;
+    create-connector-connection-pool)
+        _command_args=('--associatewiththread+:associatewiththread:(true false)' '--connectiondefinition+:' '--creationretryattempts+:' '--creationretryinterval+:' '--description+:' '--failconnection+:failconnection:(true false)' '--host+:' '--idletimeout+:' '--isconnectvalidatereq+:isconnectvalidatereq:(true false)' '--lazyconnectionassociation+:lazyconnectionassociation:(true false)' '--lazyconnectionenlistment+:lazyconnectionenlistment:(true false)' '--leakreclaim+:leakreclaim:(true false)' '--leaktimeout+:' '--matchconnections+:matchconnections:(true false)' '--maxconnectionusagecount+:' '--maxpoolsize+:' '--maxwait+:' '--ping+:ping:(true false)' '--pooling+:pooling:(true false)' '--poolresize+:' '--port+:' '--property+:' '--raname+:' '--steadypoolsize+:' '--target+:' '--transactionsupport+:transactionsupport:(XATransaction LocalTransaction NoTransaction)' '--validateatmostonceperiod+:')
+        ;;
+    create-connector-resource)
+        _command_args=('--description+:' '--enabled+:enabled:(true false)' '--host+:' '--objecttype+:' '--poolname+:' '--port+:' '--property+:' '--target+:target:_asadmin_targets_cluster_das_domain_standalone_instance')
+        ;;
+    create-connector-security-map)
+        _command_args=('--host+:' '--mappedpassword+:' '--mappedusername+:' '--poolname+:' '--port+:' '--principals+:' '--target+:' '--usergroups+:')
+        ;;
+    create-connector-work-security-map)
+        _command_args=('--description+:' '--groupsmap+:' '--host+:' '--port+:' '--principalsmap+:' '--raname+:')
+        ;;
+    create-custom-resource)
+        _command_args=('--description+:' '--enabled+:enabled:(true false)' '--factoryclass+:' '--host+:' '--port+:' '--property+:' '--restype+:' '--target+:target:_asadmin_targets_cluster_das_domain_standalone_instance')
+        ;;
+    create-domain)
+        _command_args=('--adminport+:' '--checkports+:checkports:(true false)' '--domaindir+:' '--domainproperties+:' '--instanceport+:' '--keytooloptions+:' '--nopassword+:nopassword:(true false)' '--portbase+:' '--profile+:' '--savelogin+:savelogin:(true false)' '--savemasterpassword+:savemasterpassword:(true false)' '--template+:' '--usemasterpassword+:usemasterpassword:(true false)')
+        ;;
+    create-file-user)
+        _command_args=('--authrealmname+:' '--groups+:' '--host+:' '--port+:' '--target+:target:_asadmin_targets_cluster_config_das_standalone_instance' '--userpassword+:')
+        ;;
+    create-http)
+        _command_args=('--default-virtual-server+:' '--dns-lookup-enabled+:dns-lookup-enabled:(true false)' '--host+:' '--max-connection+:' '--port+:' '--request-timeout-seconds+:' '--servername+:' '--target+:target:_asadmin_targets_cluster_config_das_standalone_instance' '--timeout-seconds+:' '--xpowered+:xpowered:(true false)')
+        ;;
+    create-http-health-checker)
+        _command_args=('--config+:' '--host+:' '--interval+:' '--port+:' '--timeout+:' '--url+:')
+        ;;
+    create-http-lb)
+        _command_args=('--autoapplyenabled+:autoapplyenabled:(true false)' '--devicehost+:' '--deviceport+:' '--healthcheckerinterval+:' '--healthcheckertimeout+:' '--healthcheckerurl+:' '--host+:' '--httpsrouting+:httpsrouting:(true false)' '--lbenableallapplications+:' '--lbenableallinstances+:' '--lbpolicy+:' '--lbpolicymodule+:' '--lbweight+:' '--monitor+:monitor:(true false)' '--port+:' '--property+:' '--reloadinterval+:' '--responsetimeout+:' '--routecookie+:routecookie:(true false)' '--sslproxyhost+:' '--sslproxyport+:' '--target+:target:_asadmin_targets_cluster_standalone_instance')
+        ;;
+    create-http-lb-ref)
+        _command_args=('--config+:' '--healthcheckerinterval+:' '--healthcheckertimeout+:' '--healthcheckerurl+:' '--host+:' '--lbenableallapplications+:' '--lbenableallinstances+:' '--lbname+:' '--lbpolicy+:' '--lbpolicymodule+:' '--lbweight+:' '--port+:')
+        ;;
+    create-http-listener)
+        _command_args=('--acceptorthreads+:' '--default-virtual-server+:' '--defaultvs+:' '--enabled+:enabled:(true false)' '--host+:' '--listeneraddress+:' '--listenerport+:' '--port+:' '--redirectport+:' '--secure+:secure:(true false)' '--securityenabled+:securityenabled:(true false)' '--servername+:' '--target+:target:_asadmin_targets_cluster_config_das_standalone_instance' '--xpowered+:xpowered:(true false)')
+        ;;
+    create-http-redirect)
+        _command_args=('--host+:' '--port+:' '--redirect-port+:' '--secure-redirect+:' '--target+:target:_asadmin_targets_cluster_config_das_standalone_instance')
+        ;;
+    create-iiop-listener)
+        _command_args=('--enabled+:enabled:(true false)' '--host+:' '--iiopport+:' '--listeneraddress+:' '--port+:' '--property+:' '--securityenabled+:securityenabled:(true false)' '--target+:target:_asadmin_targets_cluster_config_das_standalone_instance')
+        ;;
+    create-instance)
+        _command_args=('--checkports+:checkports:(true false)' '--cluster+:cluster:_asadmin_clusters' '--config+:' '--host+:' '--lbenabled+:lbenabled:(true false)' '--node+:node:_asadmin_nodes' '--port+:' '--portbase+:' '--systemproperties+:' '--terse+:terse:(true false)')
+        ;;
+    create-jacc-provider)
+        _command_args=('--host+:' '--policyconfigfactoryclass+:' '--policyproviderclass+:' '--port+:' '--property+:' '--target+:target:_asadmin_targets_cluster_config_das_standalone_instance')
+        ;;
+    create-javamail-resource)
+        _command_args=('--debug+:debug:(true false)' '--description+:' '--enabled+:enabled:(true false)' '--fromaddress+:' '--host+:' '--mailhost+:' '--mailuser+:' '--port+:' '--property+:' '--storeprotocol+:' '--storeprotocolclass+:' '--target+:target:_asadmin_targets_cluster_das_domain_standalone_instance' '--transprotocol+:' '--transprotocolclass+:')
+        ;;
+    create-jdbc-connection-pool)
+        _command_args=('--allownoncomponentcallers+:allownoncomponentcallers:(true false)' '--associatewiththread+:associatewiththread:(true false)' '--creationretryattempts+:' '--creationretryinterval+:' '--datasourceclassname+:' '--description+:' '--driverclassname+:' '--failconnection+:failconnection:(true false)' '--host+:' '--idletimeout+:' '--initsql+:' '--isconnectvalidatereq+:isconnectvalidatereq:(true false)' '--isisolationguaranteed+:isisolationguaranteed:(true false)' '--isolationlevel+:' '--lazyconnectionassociation+:lazyconnectionassociation:(true false)' '--lazyconnectionenlistment+:lazyconnectionenlistment:(true false)' '--leakreclaim+:leakreclaim:(true false)' '--leaktimeout+:' '--matchconnections+:matchconnections:(true false)' '--maxconnectionusagecount+:' '--maxpoolsize+:' '--maxwait+:' '--nontransactionalconnections+:nontransactionalconnections:(true false)' '--ping+:ping:(true false)' '--pooling+:pooling:(true false)' '--poolresize+:' '--port+:' '--property+:' '--restype+:restype:(javax.sql.DataSource javax.sql.XADataSource javax.sql.ConnectionPoolDataSource java.sql.Driver)' '--sqltracelisteners+:' '--statementcachesize+:' '--statementleakreclaim+:statementleakreclaim:(true false)' '--statementleaktimeout+:' '--statementtimeout+:' '--steadypoolsize+:' '--target+:' '--validateatmostonceperiod+:' '--validationclassname+:' '--validationmethod+:validationmethod:(auto-commit meta-data table custom-validation)' '--validationtable+:' '--wrapjdbcobjects+:wrapjdbcobjects:(true false)')
+        ;;
+    create-jdbc-resource)
+        _command_args=('--connectionpoolid+:' '--description+:' '--enabled+:enabled:(true false)' '--host+:' '--port+:' '--property+:' '--target+:target:_asadmin_targets_cluster_das_domain_standalone_instance')
+        ;;
+    create-jms-host)
+        _command_args=('--host+:' '--mqhost+:' '--mqpassword+:' '--mqport+:' '--mquser+:' '--port+:' '--property+:' '--target+:target:_asadmin_targets_cluster_config_das_standalone_instance')
+        ;;
+    create-jms-resource)
+        _command_args=('--description+:' '--enabled+:enabled:(true false)' '--host+:' '--port+:' '--property+:' '--restype+:' '--target+:target:_asadmin_targets_cluster_das_domain_standalone_instance')
+        ;;
+    create-jmsdest)
+        _command_args=('--desttype+:' '--host+:' '--port+:' '--property+:' '--target+:target:_asadmin_targets_cluster_config_das_standalone_instance')
+        ;;
+    create-jndi-resource)
+        _command_args=('--description+:' '--enabled+:enabled:(true false)' '--factoryclass+:' '--host+:' '--jndilookupname+:' '--port+:' '--property+:' '--restype+:' '--target+:target:_asadmin_targets_cluster_das_domain_standalone_instance')
+        ;;
+    create-jvm-options)
+        _command_args=('--host+:' '--port+:' '--profiler+:profiler:(true false)' '--target+:target:_asadmin_targets_cluster_config_das_standalone_instance')
+        ;;
+    create-lifecycle-module)
+        _command_args=('--classname+:' '--classpath+:' '--description+:' '--enabled+:enabled:(true false)' '--failurefatal+:failurefatal:(true false)' '--host+:' '--loadorder+:' '--port+:' '--property+:' '--target+:target:_asadmin_targets_cluster_das_domain_standalone_instance')
+        ;;
+    create-local-instance)
+        _command_args=('--checkports+:checkports:(true false)' '--cluster+:cluster:_asadmin_clusters' '--config+:' '--lbenabled+:lbenabled:(true false)' '--node+:node:_asadmin_nodes' '--nodedir+:' '--portbase+:' '--savemasterpassword+:savemasterpassword:(true false)' '--systemproperties+:' '--usemasterpassword+:usemasterpassword:(true false)')
+        ;;
+    create-message-security-provider)
+        _command_args=('--classname+:' '--host+:' '--isdefaultprovider+:isdefaultprovider:(true false)' '--layer+:layer:(SOAP HttpServlet)' '--port+:' '--property+:' '--providertype+:providertype:(client server client-server)' '--requestauthrecipient+:' '--requestauthsource+:' '--responseauthrecipient+:' '--responseauthsource+:' '--target+:target:_asadmin_targets_cluster_config_das_standalone_instance')
+        ;;
+    create-network-listener)
+        _command_args=('--address+:' '--enabled+:enabled:(true false)' '--host+:' '--jkenabled+:jkenabled:(true false)' '--listenerport+:' '--port+:' '--protocol+:' '--target+:target:_asadmin_targets_cluster_config_das_standalone_instance' '--threadpool+:' '--transport+:')
+        ;;
+    create-node-config)
+        _command_args=('--host+:' '--installdir+:' '--nodedir+:' '--nodehost+:' '--port+:')
+        ;;
+    create-node-dcom)
+        _command_args=('--archive+:' '--force+:force:(true false)' '--host+:' '--install+:install:(true false)' '--installdir+:' '--nodedir+:' '--nodehost+:' '--port+:' '--windowsdomain+:' '--windowspassword+:' '--windowsuser+:')
+        ;;
+    create-node-ssh)
+        _command_args=('--archive+:' '--force+:force:(true false)' '--host+:' '--install+:install:(true false)' '--installdir+:' '--nodedir+:' '--nodehost+:' '--port+:' '--sshkeyfile+:' '--sshkeypassphrase+:' '--sshpassword+:' '--sshport+:' '--sshuser+:')
+        ;;
+    create-password-alias)
+        _command_args=('--aliaspassword+:' '--host+:' '--port+:')
+        ;;
+    create-profiler)
+        _command_args=('--classpath+:' '--enabled+:enabled:(true false)' '--host+:' '--nativelibrarypath+:' '--port+:' '--property+:' '--target+:target:_asadmin_targets_cluster_config_das_standalone_instance')
+        ;;
+    create-protocol)
+        _command_args=('--host+:' '--port+:' '--securityenabled+:securityenabled:(true false)' '--target+:target:_asadmin_targets_cluster_config_das_standalone_instance')
+        ;;
+    create-protocol-filter)
+        _command_args=('--classname+:' '--host+:' '--port+:' '--protocol+:' '--target+:target:_asadmin_targets_cluster_config_das_standalone_instance')
+        ;;
+    create-protocol-finder)
+        _command_args=('--classname+:' '--host+:' '--port+:' '--protocol+:' '--target+:target:_asadmin_targets_cluster_config_das_standalone_instance' '--targetprotocol+:')
+        ;;
+    create-resource-adapter-config)
+        _command_args=('--host+:' '--objecttype+:' '--port+:' '--property+:' '--target+:' '--threadpoolid+:')
+        ;;
+    create-resource-ref)
+        _command_args=('--enabled+:enabled:(true false)' '--host+:' '--port+:' '--target+:target:_asadmin_targets_cluster_das_standalone_instance')
+        ;;
+    create-service)
+        _command_args=('*:instances:_asadmin_instances' '--domaindir+:domaindir:directory:_files' '--dry-run+:dry-run:(true false)' '--force+:force:(true false)' '--name+:' '--node+:node:_asadmin_nodes' '--nodedir+:' '--serviceproperties+:' '--serviceuser+:')
+        ;;
+    create-ssl)
+        _command_args=('--certname+:' '--clientauthenabled+:clientauthenabled:(true false)' '--host+:' '--port+:' '--ssl2ciphers+:' '--ssl2enabled+:ssl2enabled:(true false)' '--ssl3enabled+:ssl3enabled:(true false)' '--ssl3tlsciphers+:' '--target+:target:_asadmin_targets_cluster_config_das_standalone_instance' '--tlsenabled+:tlsenabled:(true false)' '--tlsrollbackenabled+:tlsrollbackenabled:(true false)' '--type+:type:(network-listener http-listener iiop-listener iiop-service jmx-connector)')
+        ;;
+    create-system-properties)
+        _command_args=('--host+:' '--port+:' '--target+:target:_asadmin_targets_cluster_clustered_instance_config_das_domain_standalone_instance')
+        ;;
+    create-threadpool)
+        _command_args=('--host+:' '--idletimeout+:' '--maxqueuesize+:' '--maxthreadpoolsize+:' '--minthreadpoolsize+:' '--port+:' '--target+:target:_asadmin_targets_cluster_config_das_standalone_instance' '--workqueues+:')
+        ;;
+    create-transport)
+        _command_args=('--acceptorthreads+:' '--buffersizebytes+:' '--bytebuffertype+:' '--classname+:' '--displayconfiguration+:displayconfiguration:(true false)' '--enablesnoop+:enablesnoop:(true false)' '--host+:' '--idlekeytimeoutseconds+:' '--maxconnectionscount+:' '--port+:' '--readtimeoutmillis+:' '--selectionkeyhandler+:' '--selectorpolltimeoutmillis+:' '--target+:target:_asadmin_targets_cluster_config_das_standalone_instance' '--tcpnodelay+:tcpnodelay:(true false)' '--writetimeoutmillis+:')
+        ;;
+    create-virtual-server)
+        _command_args=('--defaultwebmodule+:' '--host+:' '--hosts+:' '--httplisteners+:' '--logfile+:' '--networklisteners+:' '--port+:' '--property+:' '--state+:state:(on off disabled)' '--target+:target:_asadmin_targets_cluster_config_das_standalone_instance')
+        ;;
+    delete-admin-object)
+        _command_args=('--host+:' '--port+:' '--target+:target:_asadmin_targets_cluster_config_das_standalone_instance')
+        ;;
+    delete-application-ref)
+        _command_args=('--cascade+:cascade:(true false)' '--host+:' '--port+:' '--target+:target:_asadmin_targets_cluster_das_standalone_instance')
+        ;;
+    delete-audit-module)
+        _command_args=('--host+:' '--port+:' '--target+:target:_asadmin_targets_cluster_config_das_standalone_instance')
+        ;;
+    delete-auth-realm)
+        _command_args=('--host+:' '--port+:' '--target+:target:_asadmin_targets_cluster_config_das_standalone_instance')
+        ;;
+    delete-config)
+        _command_args=('--host+:' '--port+:')
+        ;;
+    delete-connector-connection-pool)
+        _command_args=('--cascade+:cascade:(true false)' '--host+:' '--port+:' '--target+:')
+        ;;
+    delete-connector-resource)
+        _command_args=('--host+:' '--port+:' '--target+:target:_asadmin_targets_cluster_das_domain_standalone_instance')
+        ;;
+    delete-connector-security-map)
+        _command_args=('--host+:' '--poolname+:' '--port+:' '--target+:')
+        ;;
+    delete-connector-work-security-map)
+        _command_args=('--host+:' '--port+:' '--raname+:')
+        ;;
+    delete-custom-resource)
+        _command_args=('--host+:' '--port+:' '--target+:target:_asadmin_targets_cluster_das_domain_standalone_instance')
+        ;;
+    delete-domain)
+        _command_args=('--domaindir+:')
+        ;;
+    delete-file-user)
+        _command_args=('--authrealmname+:' '--host+:' '--port+:' '--target+:target:_asadmin_targets_cluster_config_das_standalone_instance')
+        ;;
+    delete-http)
+        _command_args=('--host+:' '--port+:' '--target+:target:_asadmin_targets_cluster_config_das_standalone_instance')
+        ;;
+    delete-http-health-checker)
+        _command_args=('--config+:' '--host+:' '--port+:')
+        ;;
+    delete-http-lb-ref)
+        _command_args=('--config+:' '--force+:' '--host+:' '--lbname+:' '--port+:')
+        ;;
+    delete-http-listener)
+        _command_args=('--host+:' '--port+:' '--secure+:' '--target+:target:_asadmin_targets_cluster_config_das_standalone_instance')
+        ;;
+    delete-http-redirect)
+        _command_args=('--host+:' '--port+:' '--target+:target:_asadmin_targets_cluster_config_das_standalone_instance')
+        ;;
+    delete-iiop-listener)
+        _command_args=('--host+:' '--port+:' '--target+:target:_asadmin_targets_cluster_config_das_standalone_instance')
+        ;;
+    delete-instance)
+        _command_args=('*:instances:_asadmin_instances' '--host+:' '--port+:' '--terse+:terse:(true false)')
+        ;;
+    delete-jacc-provider)
+        _command_args=('--host+:' '--port+:' '--target+:target:_asadmin_targets_cluster_config_das_standalone_instance')
+        ;;
+    delete-javamail-resource)
+        _command_args=('--host+:' '--port+:' '--target+:target:_asadmin_targets_cluster_das_domain_standalone_instance')
+        ;;
+    delete-jdbc-connection-pool)
+        _command_args=('--cascade+:cascade:(true false)' '--host+:' '--port+:' '--target+:')
+        ;;
+    delete-jdbc-resource)
+        _command_args=('--host+:' '--port+:' '--target+:target:_asadmin_targets_cluster_das_domain_standalone_instance')
+        ;;
+    delete-jms-host)
+        _command_args=('--host+:' '--port+:' '--target+:target:_asadmin_targets_cluster_config_das_standalone_instance')
+        ;;
+    delete-jms-resource)
+        _command_args=('--host+:' '--port+:' '--target+:target:_asadmin_targets_cluster_das_domain_standalone_instance')
+        ;;
+    delete-jmsdest)
+        _command_args=('--desttype+:' '--host+:' '--port+:' '--target+:target:_asadmin_targets_cluster_config_das_standalone_instance')
+        ;;
+    delete-jndi-resource)
+        _command_args=('--host+:' '--port+:' '--target+:target:_asadmin_targets_cluster_das_domain_standalone_instance')
+        ;;
+    delete-jvm-options)
+        _command_args=('--host+:' '--port+:' '--profiler+:profiler:(true false)' '--target+:target:_asadmin_targets_cluster_config_das_standalone_instance')
+        ;;
+    delete-lifecycle-module)
+        _command_args=('--host+:' '--port+:' '--target+:target:_asadmin_targets_cluster_das_domain_standalone_instance')
+        ;;
+    delete-local-instance)
+        _command_args=('*:instances:_asadmin_instances' '--node+:node:_asadmin_nodes' '--nodedir+:')
+        ;;
+    delete-log-levels)
+        _command_args=('--host+:' '--port+:' '--target+:target:_asadmin_targets_cluster_config_das_standalone_instance')
+        ;;
+    delete-message-security-provider)
+        _command_args=('--host+:' '--layer+:' '--port+:' '--target+:target:_asadmin_targets_cluster_config_das_standalone_instance')
+        ;;
+    delete-network-listener)
+        _command_args=('--host+:' '--port+:' '--target+:target:_asadmin_targets_cluster_config_das_standalone_instance')
+        ;;
+    delete-node-config)
+        _command_args=('*:nodes:_asadmin_nodes_config' '--host+:' '--port+:')
+        ;;
+    delete-node-dcom)
+        _command_args=('*:nodes:_asadmin_nodes_dcom' '--force+:force:(true false)' '--host+:' '--port+:' '--uninstall+:uninstall:(true false)')
+        ;;
+    delete-node-ssh)
+        _command_args=('*:nodes:_asadmin_nodes_ssh' '--force+:force:(true false)' '--host+:' '--port+:' '--uninstall+:uninstall:(true false)')
+        ;;
+    delete-password-alias)
+        _command_args=('--host+:' '--port+:')
+        ;;
+    delete-profiler)
+        _command_args=('--host+:' '--port+:' '--target+:target:_asadmin_targets_cluster_config_das_standalone_instance')
+        ;;
+    delete-protocol)
+        _command_args=('--host+:' '--port+:' '--target+:target:_asadmin_targets_cluster_config_das_standalone_instance')
+        ;;
+    delete-protocol-filter)
+        _command_args=('--host+:' '--port+:' '--protocol+:' '--target+:target:_asadmin_targets_cluster_config_das_standalone_instance')
+        ;;
+    delete-protocol-finder)
+        _command_args=('--host+:' '--port+:' '--protocol+:' '--target+:target:_asadmin_targets_cluster_config_das_standalone_instance')
+        ;;
+    delete-resource-adapter-config)
+        _command_args=('--host+:' '--port+:' '--target+:')
+        ;;
+    delete-resource-ref)
+        _command_args=('--host+:' '--port+:' '--target+:target:_asadmin_targets_cluster_das_standalone_instance')
+        ;;
+    delete-ssl)
+        _command_args=('--host+:' '--port+:' '--target+:target:_asadmin_targets_cluster_config_das_standalone_instance' '--type+:type:(network-listener http-listener iiop-listener iiop-service jmx-connector)')
+        ;;
+    delete-system-property)
+        _command_args=('--host+:' '--port+:' '--target+:target:_asadmin_targets_cluster_clustered_instance_config_das_domain_standalone_instance')
+        ;;
+    delete-threadpool)
+        _command_args=('--host+:' '--port+:' '--target+:target:_asadmin_targets_cluster_config_das_standalone_instance')
+        ;;
+    delete-transport)
+        _command_args=('--host+:' '--port+:' '--target+:target:_asadmin_targets_cluster_config_das_standalone_instance')
+        ;;
+    delete-virtual-server)
+        _command_args=('--host+:' '--port+:' '--target+:target:_asadmin_targets_cluster_config_das_standalone_instance')
+        ;;
+    deploy)
+        _command_args=('*:directory:_files' '--asyncreplication+:asyncreplication:(true false)' '--availabilityenabled+:availabilityenabled:(true false)' '--contextroot+:' '--createtables+:createtables:(true false)' '--dbvendorname+:' '--deploymentplan+:deploymentplan:directory:_files' '--description+:' '--dropandcreatetables+:dropandcreatetables:(true false)' '--enabled+:enabled:(true false)' '--force+:force:(true false)' '--generatermistubs+:generatermistubs:(true false)' '--host+:' '--isredeploy+:isredeploy:(true false)' '--keepfailedstubs+:keepfailedstubs:(true false)' '--keepreposdir+:keepreposdir:(true false)' '--keepstate+:keepstate:(true false)' '--lbenabled+:lbenabled:(true false)' '--libraries+:' '--logreportederrors+:logreportederrors:(true false)' '--name+:' '--port+:' '--precompilejsp+:precompilejsp:(true false)' '--properties+:' '--property+:' '--retrieve+:' '--target+:target:_asadmin_targets_cluster_das_domain_standalone_instance' '--type+:' '--uniquetablenames+:uniquetablenames:(true false)' '--verify+:verify:(true false)' '--virtualservers+:')
+        ;;
+    deploydir)
+        _command_args=('*:directory:_files' '--asyncreplication+:asyncreplication:(true false)' '--availabilityenabled+:availabilityenabled:(true false)' '--contextroot+:' '--createtables+:createtables:(true false)' '--dbvendorname+:' '--deploymentplan+:deploymentplan:directory:_files' '--description+:' '--dropandcreatetables+:dropandcreatetables:(true false)' '--enabled+:enabled:(true false)' '--force+:force:(true false)' '--generatermistubs+:generatermistubs:(true false)' '--host+:' '--isredeploy+:isredeploy:(true false)' '--keepfailedstubs+:keepfailedstubs:(true false)' '--keepreposdir+:keepreposdir:(true false)' '--keepstate+:keepstate:(true false)' '--lbenabled+:lbenabled:(true false)' '--libraries+:' '--logreportederrors+:logreportederrors:(true false)' '--name+:' '--port+:' '--precompilejsp+:precompilejsp:(true false)' '--properties+:' '--property+:' '--retrieve+:' '--target+:target:_asadmin_targets_cluster_das_domain_standalone_instance' '--type+:' '--uniquetablenames+:uniquetablenames:(true false)' '--verify+:verify:(true false)' '--virtualservers+:')
+        ;;
+    disable)
+        _command_args=('--cascade+:cascade:(true false)' '--droptables+:droptables:(true false)' '--host+:' '--isredeploy+:isredeploy:(true false)' '--isundeploy+:isundeploy:(true false)' '--keepreposdir+:keepreposdir:(true false)' '--keepstate+:keepstate:(true false)' '--port+:' '--properties+:' '--target+:target:_asadmin_targets_cluster_clustered_instance_das_domain_standalone_instance')
+        ;;
+    disable-http-lb-application)
+        _command_args=('--host+:' '--name+:' '--port+:' '--timeout+:')
+        ;;
+    disable-http-lb-server)
+        _command_args=('--host+:' '--port+:' '--timeout+:')
+        ;;
+    disable-monitoring)
+        _command_args=('--host+:' '--modules+:' '--port+:' '--target+:target:_asadmin_targets_cluster_config_das_standalone_instance')
+        ;;
+    disable-secure-admin)
+        _command_args=('--host+:' '--port+:')
+        ;;
+    enable)
+        _command_args=('--host+:' '--port+:' '--target+:target:_asadmin_targets_cluster_clustered_instance_das_domain_standalone_instance')
+        ;;
+    enable-http-lb-application)
+        _command_args=('--host+:' '--name+:' '--port+:')
+        ;;
+    enable-http-lb-server)
+        _command_args=('--host+:' '--port+:')
+        ;;
+    enable-monitoring)
+        _command_args=('--dtrace+:dtrace:(true false)' '--host+:' '--mbean+:mbean:(true false)' '--modules+:' '--options+:' '--pid+:' '--port+:' '--target+:target:_asadmin_targets_cluster_config_das_standalone_instance')
+        ;;
+    enable-secure-admin)
+        _command_args=('--adminalias+:' '--host+:' '--instancealias+:' '--port+:')
+        ;;
+    export-http-lb-config)
+        _command_args=('--config+:' '--host+:' '--lbname+:' '--lbtargets+:' '--port+:' '--property+:' '--retrievefile+:retrievefile:(true false)')
+        ;;
+    export-sync-bundle)
+        _command_args=('--host+:' '--port+:' '--retrieve+:retrieve:(true false)' '--target+:')
+        ;;
+    flush-connection-pool)
+        _command_args=('--appname+:' '--host+:' '--modulename+:' '--port+:')
+        ;;
+    flush-jmsdest)
+        _command_args=('--desttype+:' '--host+:' '--port+:' '--target+:target:_asadmin_targets_cluster_config_das_standalone_instance')
+        ;;
+    freeze-transaction-service)
+        _command_args=('--host+:' '--port+:' '--target+:target:_asadmin_targets_cluster_clustered_instance_config_das_standalone_instance')
+        ;;
+    generate-domain-schema)
+        _command_args=('--format+:' '--host+:' '--port+:' '--showdeprecated+:showdeprecated:(true false)' '--showsubclasses+:showsubclasses:(true false)')
+        ;;
+    generate-jvm-report)
+        _command_args=('--host+:' '--port+:' '--target+:target:_asadmin_targets_clustered_instance_das_standalone_instance' '--type+:type:(summary thread class memory log)')
+        ;;
+    get)
+        _command_args=('--host+:' '--monitor+:monitor:(true false)' '--port+:')
+        ;;
+    get-client-stubs)
+        _command_args=('--appname+:' '--host+:' '--port+:')
+        ;;
+    get-health)
+        _command_args=('--host+:' '--port+:')
+        ;;
+    help)
+        _describe -t help-commands "asadmin help command" _1st_arguments
+    ;;
+    import-sync-bundle)
+        _command_args=('--instance+:' '--node+:node:_asadmin_nodes' '--nodedir+:')
+        ;;
+    install-node)
+        _command_args=('--archive+:' '--create+:create:(true false)' '--force+:force:(true false)' '--installdir+:' '--save+:save:(true false)' '--sshkeyfile+:' '--sshport+:' '--sshuser+:')
+        ;;
+    install-node-dcom)
+        _command_args=('--archive+:' '--create+:create:(true false)' '--force+:force:(true false)' '--installdir+:' '--save+:save:(true false)' '--windowsdomain+:' '--windowsuser+:')
+        ;;
+    install-node-ssh)
+        _command_args=('--archive+:' '--create+:create:(true false)' '--force+:force:(true false)' '--installdir+:' '--save+:save:(true false)' '--sshkeyfile+:' '--sshport+:' '--sshuser+:')
+        ;;
+    jms-ping)
+        _command_args=('--host+:' '--port+:' '--target+:target:_asadmin_targets_cluster_clustered_instance_config_das_standalone_instance')
+        ;;
+    list)
+        _command_args=('--host+:' '--monitor+:monitor:(true false)' '--port+:')
+        ;;
+    list-admin-objects)
+        _command_args=('*:targets:_asadmin_targets_cluster_clustered_instance_config_das_standalone_instance' '--host+:' '--port+:')
+        ;;
+    list-application-refs)
+        _command_args=('*:targets:_asadmin_targets_cluster_das_standalone_instance' '--host+:' '--long+:long:(true false)' '--port+:' '--terse+:terse:(true false)')
+        ;;
+    list-applications)
+        _command_args=('*:targets:_asadmin_targets_cluster_das_domain_standalone_instance' '--host+:' '--long+:long:(true false)' '--port+:' '--resources+:resources:(true false)' '--subcomponents+:subcomponents:(true false)' '--terse+:terse:(true false)' '--type+:')
+        ;;
+    list-audit-modules)
+        _command_args=('*:targets:_asadmin_targets_cluster_clustered_instance_config_das_standalone_instance' '--host+:' '--port+:')
+        ;;
+    list-auth-realms)
+        _command_args=('*:targets:_asadmin_targets_cluster_clustered_instance_config_das_standalone_instance' '--host+:' '--port+:')
+        ;;
+    list-backups)
+        _command_args=('--backupconfig+:' '--backupdir+:' '--domaindir+:' '--long+:long:(true false)')
+        ;;
+    list-clusters)
+        _command_args=('--host+:' '--port+:')
+        ;;
+    list-commands)
+        _command_args=('--localonly+:localonly:(true false)' '--remoteonly+:remoteonly:(true false)')
+        ;;
+    list-components)
+        _command_args=('*:targets:_asadmin_targets_cluster_das_domain_standalone_instance' '--host+:' '--long+:long:(true false)' '--port+:' '--resources+:resources:(true false)' '--subcomponents+:subcomponents:(true false)' '--terse+:terse:(true false)' '--type+:')
+        ;;
+    list-configs)
+        _command_args=('*:targets:_asadmin_targets_cluster_clustered_instance_config_das_domain_standalone_instance' '--host+:' '--port+:')
+        ;;
+    list-connector-connection-pools)
+        _command_args=('--host+:' '--port+:')
+        ;;
+    list-connector-resources)
+        _command_args=('*:targets:_asadmin_targets_cluster_clustered_instance_das_domain_standalone_instance' '--host+:' '--port+:')
+        ;;
+    list-connector-security-maps)
+        _command_args=('--host+:' '--long+:long:(true false)' '--port+:' '--securitymap+:' '--target+:target:_asadmin_targets_cluster_clustered_instance_das_domain_standalone_instance')
+        ;;
+    list-connector-work-security-maps)
+        _command_args=('--host+:' '--port+:' '--securitymap+:')
+        ;;
+    list-containers)
+        _command_args=('--host+:' '--port+:')
+        ;;
+    list-custom-resources)
+        _command_args=('*:targets:_asadmin_targets_cluster_clustered_instance_das_domain_standalone_instance' '--host+:' '--port+:' '--target+:target:_asadmin_targets_cluster_clustered_instance_das_domain_standalone_instance')
+        ;;
+    list-descriptors)
+        _command_args=('--host+:' '--port+:')
+        ;;
+    list-domains)
+        _command_args=('--domaindir+:')
+        ;;
+    list-file-groups)
+        _command_args=('--authrealmname+:' '--host+:' '--name+:' '--port+:')
+        ;;
+    list-file-users)
+        _command_args=('*:targets:_asadmin_targets_cluster_clustered_instance_config_das_standalone_instance' '--authrealmname+:' '--host+:' '--port+:')
+        ;;
+    list-http-lb-configs)
+        _command_args=('--host+:' '--port+:')
+        ;;
+    list-http-listeners)
+        _command_args=('*:targets:_asadmin_targets_cluster_config_das_standalone_instance' '--host+:' '--long+:long:(true false)' '--port+:')
+        ;;
+    list-iiop-listeners)
+        _command_args=('*:targets:_asadmin_targets_cluster_clustered_instance_config_das_domain_standalone_instance' '--host+:' '--port+:')
+        ;;
+    list-instances)
+        _command_args=('--host+:' '--long+:long:(true false)' '--nostatus+:nostatus:(true false)' '--port+:' '--standaloneonly+:standaloneonly:(true false)' '--timeoutmsec+:')
+        ;;
+    list-jacc-providers)
+        _command_args=('*:targets:_asadmin_targets_cluster_clustered_instance_config_das_standalone_instance' '--host+:' '--port+:')
+        ;;
+    list-javamail-resources)
+        _command_args=('*:targets:_asadmin_targets_cluster_clustered_instance_das_domain_standalone_instance' '--host+:' '--port+:' '--target+:target:_asadmin_targets_cluster_clustered_instance_das_domain_standalone_instance')
+        ;;
+    list-jdbc-connection-pools)
+        _command_args=('--host+:' '--port+:')
+        ;;
+    list-jdbc-resources)
+        _command_args=('--host+:' '--port+:')
+        ;;
+    list-jms-hosts)
+        _command_args=('--host+:' '--port+:' '--target+:target:_asadmin_targets_cluster_config_das_standalone_instance')
+        ;;
+    list-jms-resources)
+        _command_args=('*:targets:_asadmin_targets_cluster_das_domain_standalone_instance' '--host+:' '--port+:' '--restype+:')
+        ;;
+    list-jmsdest)
+        _command_args=('*:targets:_asadmin_targets_cluster_config_das_standalone_instance' '--desttype+:' '--host+:' '--port+:' '--property+:')
+        ;;
+    list-jndi-entries)
+        _command_args=('*:targets:_asadmin_targets_cluster_clustered_instance_das_domain_standalone_instance' '--context+:' '--host+:' '--port+:')
+        ;;
+    list-jndi-resources)
+        _command_args=('*:targets:_asadmin_targets_cluster_clustered_instance_das_domain_standalone_instance' '--host+:' '--port+:' '--target+:target:_asadmin_targets_cluster_clustered_instance_das_domain_standalone_instance')
+        ;;
+    list-jvm-options)
+        _command_args=('--host+:' '--port+:' '--profiler+:profiler:(true false)' '--target+:target:_asadmin_targets_cluster_config_das_standalone_instance')
+        ;;
+    list-libraries)
+        _command_args=('--host+:' '--port+:' '--type+:type:(common ext app)')
+        ;;
+    list-lifecycle-modules)
+        _command_args=('*:targets:_asadmin_targets_cluster_das_domain_standalone_instance' '--host+:' '--port+:' '--terse+:terse:(true false)')
+        ;;
+    list-log-attributes)
+        _command_args=('*:targets:_asadmin_targets_cluster_clustered_instance_config_das_standalone_instance' '--host+:' '--port+:')
+        ;;
+    list-log-levels)
+        _command_args=('--host+:' '--port+:')
+        ;;
+    list-message-security-providers)
+        _command_args=('*:targets:_asadmin_targets_cluster_clustered_instance_config_das_standalone_instance' '--host+:' '--layer+:layer:(SOAP HttpServlet)' '--port+:')
+        ;;
+    list-modules)
+        _command_args=('--host+:' '--port+:')
+        ;;
+    list-network-listeners)
+        _command_args=('*:targets:_asadmin_targets_cluster_config_das_standalone_instance' '--host+:' '--port+:')
+        ;;
+    list-nodes)
+        _command_args=('--host+:' '--long+:long:(true false)' '--port+:' '--terse+:terse:(true false)')
+        ;;
+    list-nodes-config)
+        _command_args=('--host+:' '--long+:long:(true false)' '--port+:' '--terse+:terse:(true false)')
+        ;;
+    list-nodes-dcom)
+        _command_args=('--host+:' '--long+:long:(true false)' '--port+:' '--terse+:terse:(true false)')
+        ;;
+    list-nodes-ssh)
+        _command_args=('--host+:' '--long+:long:(true false)' '--port+:' '--terse+:terse:(true false)')
+        ;;
+    list-password-aliases)
+        _command_args=('--host+:' '--port+:')
+        ;;
+    list-persistence-types)
+        _command_args=('--host+:' '--port+:' '--type+:')
+        ;;
+    list-protocol-filters)
+        _command_args=('--host+:' '--port+:' '--target+:target:_asadmin_targets_cluster_config_das_standalone_instance')
+        ;;
+    list-protocol-finders)
+        _command_args=('--host+:' '--port+:' '--target+:target:_asadmin_targets_cluster_config_das_standalone_instance')
+        ;;
+    list-protocols)
+        _command_args=('*:targets:_asadmin_targets_cluster_config_das_standalone_instance' '--host+:' '--port+:')
+        ;;
+    list-resource-adapter-configs)
+        _command_args=('--host+:' '--long+:long:(true false)' '--port+:' '--raname+:')
+        ;;
+    list-resource-refs)
+        _command_args=('*:targets:_asadmin_targets_cluster_clustered_instance_das_standalone_instance' '--host+:' '--port+:')
+        ;;
+    list-sub-components)
+        _command_args=('--appname+:' '--host+:' '--port+:' '--resources+:resources:(true false)' '--terse+:terse:(true false)' '--type+:')
+        ;;
+    list-supported-cipher-suites)
+        _command_args=('--host+:' '--port+:')
+        ;;
+    list-system-properties)
+        _command_args=('*:targets:_asadmin_targets_cluster_clustered_instance_config_das_domain_standalone_instance' '--host+:' '--port+:')
+        ;;
+    list-threadpools)
+        _command_args=('--host+:' '--port+:')
+        ;;
+    list-timers)
+        _command_args=('*:targets:_asadmin_targets_cluster_das_standalone_instance' '--host+:' '--port+:')
+        ;;
+    list-transports)
+        _command_args=('*:targets:_asadmin_targets_cluster_config_das_standalone_instance' '--host+:' '--port+:')
+        ;;
+    list-virtual-servers)
+        _command_args=('*:targets:_asadmin_targets_cluster_config_das_standalone_instance' '--host+:' '--port+:' '--target+:target:_asadmin_targets_cluster_config_das_standalone_instance')
+        ;;
+    list-web-context-param)
+        _command_args=('--host+:' '--name+:' '--port+:')
+        ;;
+    list-web-env-entry)
+        _command_args=('--host+:' '--name+:' '--port+:')
+        ;;
+    login)
+        _command_args=('--host+:' '--port+:' '--target+:target:_asadmin_targets_cluster_das_standalone_instance')
+        ;;
+    migrate-timers)
+        _command_args=('--host+:' '--port+:' '--target+:target:_asadmin_targets_clustered_instance_das')
+        ;;
+    monitor)
+        _command_args=('--filename+:filename:directory:_files' '--filter+:' '--interval+:' '--type+:')
+        ;;
+    multimode)
+        _command_args=('--encoding+:' '--file+:file:directory:_files' '--printprompt+:printprompt:(true false)')
+        ;;
+    ping-connection-pool)
+        _command_args=('--appname+:' '--host+:' '--modulename+:' '--port+:' '--target+:')
+        ;;
+    ping-node-dcom)
+        _command_args=('*:nodes:_asadmin_nodes_dcom' '--host+:' '--port+:' '--validate+:validate:(true false)')
+        ;;
+    ping-node-ssh)
+        _command_args=('*:nodes:_asadmin_nodes_ssh' '--host+:' '--port+:' '--validate+:validate:(true false)')
+        ;;
+    recover-transactions)
+        _command_args=('--host+:' '--port+:' '--target+:target:_asadmin_targets_clustered_instance_das_standalone_instance' '--transactionlogdir+:')
+        ;;
+    redeploy)
+        _command_args=('*:directory:_files' '--asyncreplication+:asyncreplication:(true false)' '--availabilityenabled+:availabilityenabled:(true false)' '--contextroot+:' '--createtables+:createtables:(true false)' '--dbvendorname+:' '--deploymentplan+:deploymentplan:directory:_files' '--description+:' '--dropandcreatetables+:dropandcreatetables:(true false)' '--enabled+:enabled:(true false)' '--force+:force:(true false)' '--generatermistubs+:generatermistubs:(true false)' '--host+:' '--isredeploy+:isredeploy:(true false)' '--keepfailedstubs+:keepfailedstubs:(true false)' '--keepreposdir+:keepreposdir:(true false)' '--keepstate+:keepstate:(true false)' '--lbenabled+:lbenabled:(true false)' '--libraries+:' '--logreportederrors+:logreportederrors:(true false)' '--name+:' '--port+:' '--precompilejsp+:precompilejsp:(true false)' '--properties+:' '--property+:' '--retrieve+:' '--target+:target:_asadmin_targets_cluster_das_domain_standalone_instance' '--type+:' '--uniquetablenames+:uniquetablenames:(true false)' '--verify+:verify:(true false)' '--virtualservers+:')
+        ;;
+    remove-library)
+        _command_args=('*:libraries:_asadmin_libraries' '--host+:' '--port+:' '--type+:type:(common ext app)')
+        ;;
+    restart-domain)
+        _command_args=('--debug+:debug:(true false)' '--domaindir+:' '--force+:force:(true false)' '--kill+:kill:(true false)')
+        ;;
+    restart-instance)
+        _command_args=('*:instances:_asadmin_instances' '--debug+:' '--host+:' '--port+:')
+        ;;
+    restart-local-instance)
+        _command_args=('*:instances:_asadmin_instances' '--debug+:debug:(true false)' '--force+:force:(true false)' '--kill+:kill:(true false)' '--node+:node:_asadmin_nodes' '--nodedir+:')
+        ;;
+    restore-domain)
+        _command_args=('--backupconfig+:' '--backupdir+:' '--description+:' '--domaindir+:' '--filename+:' '--force+:force:(true false)' '--long+:long:(true false)')
+        ;;
+    rollback-transaction)
+        _command_args=('--host+:' '--port+:' '--target+:target:_asadmin_targets_clustered_instance_das_standalone_instance' '--transaction_id+:')
+        ;;
+    rotate-log)
+        _command_args=('--host+:' '--port+:' '--target+:target:_asadmin_targets_cluster_clustered_instance_das_standalone_instance')
+        ;;
+    set)
+        _command_args=('--host+:' '--port+:')
+        ;;
+    set-log-attributes)
+        _command_args=('--host+:' '--port+:' '--target+:target:_asadmin_targets_cluster_config_das_standalone_instance')
+        ;;
+    set-log-levels)
+        _command_args=('--host+:' '--port+:' '--target+:target:_asadmin_targets_cluster_config_das_standalone_instance')
+        ;;
+    set-web-context-param)
+        _command_args=('--description+:' '--host+:' '--ignoredescriptoritem+:ignoredescriptoritem:(true false)' '--name+:' '--port+:' '--value+:')
+        ;;
+    set-web-env-entry)
+        _command_args=('--description+:' '--host+:' '--ignoredescriptoritem+:ignoredescriptoritem:(true false)' '--name+:' '--port+:' '--type+:' '--value+:')
+        ;;
+    setup-ssh)
+        _command_args=('--generatekey+:generatekey:(true false)' '--sshkeyfile+:' '--sshport+:' '--sshpublickeyfile+:' '--sshuser+:')
+        ;;
+    show-component-status)
+        _command_args=('--host+:' '--port+:' '--target+:target:_asadmin_targets_cluster_clustered_instance_das_domain_standalone_instance')
+        ;;
+    start-cluster)
+        _command_args=('*:clusters:_asadmin_clusters' '--autohadboverride+:autohadboverride:(true false)' '--host+:' '--port+:' '--verbose+:verbose:(true false)')
+        ;;
+    start-database)
+        _command_args=('--dbhome+:' '--dbhost+:' '--dbport+:' '--jvmoptions+:')
+        ;;
+    start-domain)
+        _command_args=('--debug+:debug:(true false)' '--domaindir+:' '--upgrade+:upgrade:(true false)' '--verbose+:verbose:(true false)')
+        ;;
+    start-instance)
+        _command_args=('*:instances:_asadmin_instances' '--debug+:debug:(true false)' '--host+:' '--port+:' '--setenv+:' '--sync+:sync:(none normal full)' '--terse+:terse:(true false)')
+        ;;
+    start-local-instance)
+        _command_args=('*:instances:_asadmin_instances' '--debug+:debug:(true false)' '--node+:node:_asadmin_nodes' '--nodedir+:' '--sync+:sync:(none normal full)' '--verbose+:verbose:(true false)')
+        ;;
+    stop-cluster)
+        _command_args=('*:clusters:_asadmin_clusters' '--autohadboverride+:autohadboverride:(true false)' '--host+:' '--kill+:kill:(true false)' '--port+:' '--verbose+:verbose:(true false)')
+        ;;
+    stop-database)
+        _command_args=('--dbhost+:' '--dbport+:' '--dbuser+:')
+        ;;
+    stop-domain)
+        _command_args=('--domaindir+:' '--force+:force:(true false)' '--kill+:kill:(true false)')
+        ;;
+    stop-instance)
+        _command_args=('*:instances:_asadmin_instances' '--force+:force:(true false)' '--host+:' '--kill+:kill:(true false)' '--port+:')
+        ;;
+    stop-local-instance)
+        _command_args=('*:instances:_asadmin_instances' '--force+:force:(true false)' '--kill+:kill:(true false)' '--node+:node:_asadmin_nodes' '--nodedir+:')
+        ;;
+    test-upgrade)
+        _command_args=('--host+:' '--port+:')
+        ;;
+    undeploy)
+        _command_args=('*:applications:_asadmin_applications' '--cascade+:cascade:(true false)' '--droptables+:droptables:(true false)' '--host+:' '--isredeploy+:isredeploy:(true false)' '--keepreposdir+:keepreposdir:(true false)' '--keepstate+:keepstate:(true false)' '--port+:' '--properties+:' '--target+:target:_asadmin_targets_cluster_das_domain_standalone_instance')
+        ;;
+    unfreeze-transaction-service)
+        _command_args=('--host+:' '--port+:' '--target+:target:_asadmin_targets_cluster_clustered_instance_config_das_standalone_instance')
+        ;;
+    uninstall-node)
+        _command_args=('--force+:force:(true false)' '--installdir+:' '--sshkeyfile+:' '--sshport+:' '--sshuser+:')
+        ;;
+    uninstall-node-dcom)
+        _command_args=('--force+:force:(true false)' '--installdir+:' '--windowsdomain+:' '--windowsuser+:')
+        ;;
+    uninstall-node-ssh)
+        _command_args=('--force+:force:(true false)' '--installdir+:' '--sshkeyfile+:' '--sshport+:' '--sshuser+:')
+        ;;
+    unset-web-context-param)
+        _command_args=('--host+:' '--name+:' '--port+:')
+        ;;
+    unset-web-env-entry)
+        _command_args=('--host+:' '--name+:' '--port+:')
+        ;;
+    update-connector-security-map)
+        _command_args=('--addprincipals+:' '--addusergroups+:' '--host+:' '--mappedpassword+:' '--mappedusername+:' '--poolname+:' '--port+:' '--removeprincipals+:' '--removeusergroups+:' '--target+:')
+        ;;
+    update-connector-work-security-map)
+        _command_args=('--addgroups+:' '--addprincipals+:' '--host+:' '--port+:' '--raname+:' '--removegroups+:' '--removeprincipals+:')
+        ;;
+    update-file-user)
+        _command_args=('--authrealmname+:' '--groups+:' '--host+:' '--port+:' '--target+:target:_asadmin_targets_cluster_config_das_standalone_instance' '--userpassword+:')
+        ;;
+    update-node-config)
+        _command_args=('*:nodes:_asadmin_nodes_config' '--host+:' '--installdir+:' '--nodedir+:' '--nodehost+:' '--port+:')
+        ;;
+    update-node-dcom)
+        _command_args=('*:nodes:_asadmin_nodes_dcom' '--force+:force:(true false)' '--host+:' '--installdir+:' '--nodedir+:' '--nodehost+:' '--port+:' '--windowsdomain+:' '--windowspassword+:' '--windowsuser+:')
+        ;;
+    update-node-ssh)
+        _command_args=('*:nodes:_asadmin_nodes_ssh' '--force+:force:(true false)' '--host+:' '--installdir+:' '--nodedir+:' '--nodehost+:' '--port+:' '--sshkeyfile+:' '--sshkeypassphrase+:' '--sshpassword+:' '--sshport+:' '--sshuser+:')
+        ;;
+    update-password-alias)
+        _command_args=('--aliaspassword+:' '--host+:' '--port+:')
+        ;;
+    uptime)
+        _command_args=('--host+:' '--milliseconds+:milliseconds:(true false)' '--port+:')
+        ;;
+    validate-dcom)
+        _command_args=('--host+:' '--port+:' '--remotetestdir+:' '--verbose+:verbose:(true false)' '--windowsdomain+:' '--windowspassword+:' '--windowsuser+:')
+        ;;
+    validate-multicast)
+        _command_args=('--bindaddress+:' '--multicastaddress+:' '--multicastport+:' '--sendperiod+:' '--timeout+:' '--timetolive+:' '--verbose+:verbose:(true false)')
+        ;;
+    verify-domain-xml)
+        _command_args=('--domaindir+:')
+        ;;
+    version)
+        _command_args=('--local+:local:(true false)' '--terse+:terse:(true false)' '--verbose+:verbose:(true false)')
+        ;;
+esac
+
+
+_asadmin_applications() {
+    compadd $(command asadmin list-applications --terse | sed 's/\s.*//')
+}
+
+_asadmin_clusters() {
+    compadd $(command asadmin list-clusters --terse | sed 's/\s.*//')
+}
+
+_asadmin_configs() {
+    compadd $(command asadmin list-configs --terse)
+}
+
+_asadmin_instances() {
+    compadd $(command asadmin list-instances --terse --nostatus domain)
+}
+
+_asadmin_instances_standalone() {
+    compadd $(command asadmin list-instances --terse --standaloneonly --nostatus domain)
+}
+
+_asadmin_libraries() {
+    compadd $(command asadmin list-libraries --terse)
+}
+
+_asadmin_nodes() {
+    compadd $(command asadmin list-nodes --terse)
+}
+
+_asadmin_nodes_config() {
+    compadd $(command asadmin list-nodes-config --terse)
+}
+
+_asadmin_nodes_dcom() {
+    compadd $(command asadmin list-nodes-dcom --terse)
+}
+
+_asadmin_nodes_ssh() {
+    compadd $(command asadmin list-nodes-ssh --terse)
+}
+
+_asadmin_targets() {
+    _asadmin_instances
+    _asadmin_clusters
+    _asadmin_configs
+    compadd domain server
+}
+
+_asadmin_targets_cluster_clustered_instance_config_das_domain_standalone_instance() {
+    _asadmin_instances
+    _asadmin_clusters
+    _asadmin_configs
+    compadd domain server
+}
+
+_asadmin_targets_cluster_clustered_instance_config_das_standalone_instance() {
+    _asadmin_instances
+    _asadmin_clusters
+    _asadmin_configs
+    compadd server
+}
+
+_asadmin_targets_cluster_clustered_instance_das_domain_standalone_instance() {
+    _asadmin_instances
+    _asadmin_clusters
+    compadd domain server
+}
+
+_asadmin_targets_cluster_clustered_instance_das_standalone_instance() {
+    _asadmin_instances
+    _asadmin_clusters
+    _asadmin_configs
+    compadd server
+}
+
+_asadmin_targets_cluster_config_das_standalone_instance() {
+    _asadmin_instances_standalone
+    _asadmin_clusters
+    _asadmin_configs
+    compadd server
+}
+
+_asadmin_targets_cluster_das_domain_standalone_instance() {
+    _asadmin_instances_standalone
+    _asadmin_clusters
+    compadd domain server
+}
+
+_asadmin_targets_cluster_das_standalone_instance() {
+    _asadmin_instances_standalone
+    _asadmin_clusters
+    compadd server
+}
+
+_asadmin_targets_clustered_instance_das() {
+    _asadmin_instances
+    compadd server
+}
+
+_asadmin_targets_clustered_instance_das_standalone_instance() {
+    _asadmin_instances
+    compadd server
+}
+
+_asadmin_targets_cluster_standalone_instance() {
+    _asadmin_clusters
+    _asadmin_instances_standalone
+}
+
+
+compadd '--help'
+_arguments \
+    $_command_args \
+    &&  return 0;
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/glassfish/glassfish.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/glassfish/glassfish.plugin.zsh
new file mode 100644
index 0000000..fde2edb
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/glassfish/glassfish.plugin.zsh
@@ -0,0 +1,3 @@
+# if there is a user named 'glassfish' on the system, we'll assume
+# that is the user asadmin should be run as
+# grep -e '^glassfish' /etc/passwd > /dev/null && alias asadmin='sudo -u glassfish asadmin'
\ No newline at end of file
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/globalias/README.md b/oh-my-zsh/.oh-my-zsh/plugins/globalias/README.md
new file mode 100644
index 0000000..0b06410
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/globalias/README.md
@@ -0,0 +1,62 @@
+# Globalias plugin
+
+Expands all glob expressions, subcommands and aliases (including global).
+
+Idea from: https://blog.patshead.com/2012/11/automatically-expaning-zsh-global-aliases---simplified.html.
+
+## Usage
+
+Add `globalias` to the plugins array in your zshrc file:
+
+```zsh
+plugins=(... globalias)
+```
+
+Then just press `SPACE` to trigger the expansion of a command you've written.
+
+If you only want to insert a space without expanding the command line, press
+`CTRL`+`SPACE`.
+
+## Examples
+
+#### Glob expressions
+
+```
+$ touch {1..10}
+# expands to
+$ touch 1 2 3 4 5 6 7 8 9 10
+
+$ ls **/*.json
+# expands to
+$ ls folder/file.json anotherfolder/another.json
+```
+
+#### Subcommands
+
+```
+$ mkdir "`date -R`"
+# expands to
+$ mkdir Tue,\ 04\ Oct\ 2016\ 13:54:03\ +0300
+
+```
+
+#### Aliases
+
+```
+# .zshrc:
+alias -g G="| grep --color=auto -P"
+alias l='ls --color=auto -lah'
+
+$ lG
+# expands to
+$ ls --color=auto -lah | grep --color=auto -P
+```
+
+```
+# .zsrc:
+alias S="sudo systemctl"
+
+$ S
+# expands to:
+$ sudo systemctl
+```
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/globalias/globalias.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/globalias/globalias.plugin.zsh
new file mode 100644
index 0000000..9602a96
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/globalias/globalias.plugin.zsh
@@ -0,0 +1,17 @@
+globalias() {
+   zle _expand_alias
+   zle expand-word
+   zle self-insert
+}
+zle -N globalias
+
+# space expands all aliases, including global
+bindkey -M emacs " " globalias
+bindkey -M viins " " globalias
+
+# control-space to make a normal space
+bindkey -M emacs "^ " magic-space
+bindkey -M viins "^ " magic-space
+
+# normal space during searches
+bindkey -M isearch " " magic-space
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/gnu-utils/gnu-utils.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/gnu-utils/gnu-utils.plugin.zsh
new file mode 100644
index 0000000..b66e25d
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/gnu-utils/gnu-utils.plugin.zsh
@@ -0,0 +1,83 @@
+# ------------------------------------------------------------------------------
+#          FILE:  gnu-utils.plugin.zsh
+#   DESCRIPTION:  oh-my-zsh plugin file.
+#        AUTHOR:  Sorin Ionescu (sorin.ionescu@gmail.com)
+#       VERSION:  1.0.0
+# ------------------------------------------------------------------------------
+
+
+if [[ -x "${commands[gwhoami]}" ]]; then 
+  __gnu_utils() {
+    emulate -L zsh
+    local gcmds
+    local gcmd
+    local cmd
+    local prefix
+
+    # coreutils 
+    gcmds=('g[' 'gbase64' 'gbasename' 'gcat' 'gchcon' 'gchgrp' 'gchmod'
+    'gchown' 'gchroot' 'gcksum' 'gcomm' 'gcp' 'gcsplit' 'gcut' 'gdate'
+    'gdd' 'gdf' 'gdir' 'gdircolors' 'gdirname' 'gdu' 'gecho' 'genv' 'gexpand'
+    'gexpr' 'gfactor' 'gfalse' 'gfmt' 'gfold' 'ggroups' 'ghead' 'ghostid'
+    'gid' 'ginstall' 'gjoin' 'gkill' 'glink' 'gln' 'glogname' 'gls' 'gmd5sum'
+    'gmkdir' 'gmkfifo' 'gmknod' 'gmktemp' 'gmv' 'gnice' 'gnl' 'gnohup' 'gnproc'
+    'god' 'gpaste' 'gpathchk' 'gpinky' 'gpr' 'gprintenv' 'gprintf' 'gptx' 'gpwd'
+    'greadlink' 'grm' 'grmdir' 'gruncon' 'gseq' 'gsha1sum' 'gsha224sum'
+    'gsha256sum' 'gsha384sum' 'gsha512sum' 'gshred' 'gshuf' 'gsleep' 'gsort'
+    'gsplit' 'gstat' 'gstty' 'gsum' 'gsync' 'gtac' 'gtail' 'gtee' 'gtest'
+    'gtimeout' 'gtouch' 'gtr' 'gtrue' 'gtruncate' 'gtsort' 'gtty' 'guname'
+    'gunexpand' 'guniq' 'gunlink' 'guptime' 'gusers' 'gvdir' 'gwc' 'gwho'
+    'gwhoami' 'gyes')
+
+    # findutils
+    gcmds+=('gfind' 'gxargs' 'glocate')
+
+    # Not part of either coreutils or findutils, installed separately.
+    gcmds+=('gsed' 'gtar' 'gtime')
+
+    for gcmd in "${gcmds[@]}"; do
+      #
+      # This method allows for builtin commands to be primary but it's
+      # lost if hash -r or rehash -f is executed. Thus, those two 
+      # functions have to be wrapped.
+      #
+      (( ${+commands[$gcmd]} )) && hash ${gcmd[2,-1]}=${commands[$gcmd]}
+
+      #
+      # This method generates wrapper functions.
+      # It will override shell builtins.
+      #
+      # (( ${+commands[$gcmd]} )) && \
+      # eval "function $gcmd[2,-1]() { \"${prefix}/${gcmd//"["/"\\["}\" \"\$@\"; }"
+
+      #
+      # This method is inflexible since the aliases are at risk of being
+      # overridden resulting in the BSD coreutils being called.
+      #
+      # (( ${+commands[$gcmd]} )) && \
+      # alias "$gcmd[2,-1]"="${prefix}/${gcmd//"["/"\\["}"
+    done
+
+    return 0
+  }
+  __gnu_utils;
+
+  function hash() {
+    if [[ "$*" =~ "-(r|f)" ]]; then
+      builtin hash "$@"
+      __gnu_utils
+    else
+      builtin hash "$@"
+    fi
+  }
+
+  function rehash() {
+    if [[ "$*" =~ "-f" ]]; then
+      builtin rehash "$@"
+      __gnu_utils
+    else
+      builtin rehash "$@"
+    fi
+  }
+fi
+
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/go/README.md b/oh-my-zsh/.oh-my-zsh/plugins/go/README.md
new file mode 100644
index 0000000..6ce6f4e
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/go/README.md
@@ -0,0 +1 @@
+The go plugin is deprecated. Use the [golang plugin](https://github.com/robbyrussell/oh-my-zsh/tree/master/plugins/golang) instead.
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/go/go.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/go/go.plugin.zsh
new file mode 120000
index 0000000..cf943e2
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/go/go.plugin.zsh
@@ -0,0 +1 @@
+../golang/golang.plugin.zsh
\ No newline at end of file
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/golang/README.md b/oh-my-zsh/.oh-my-zsh/plugins/golang/README.md
new file mode 100644
index 0000000..72845b2
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/golang/README.md
@@ -0,0 +1,29 @@
+# Golang plugin
+
+This plugin adds completion for the [Go Programming Language](https://golang.org/),
+as well as some aliases for common Golang commands.
+
+To use it, add `golang` to the plugins array in your zshrc file:
+
+```zsh
+plugins=(... golang)
+```
+
+## Aliases
+
+| Alias   | Command                 | Description                                                   |
+| ------- | ----------------------- | ------------------------------------------------------------- |
+| gob     | `go build`              | Build your code                                               |
+| goc     | `go clean`              | Removes object files from package source directories          |
+| god     | `go doc`                | Prints documentation comments                                 |
+| gof     | `go fmt`                | Gofmt formats (aligns and indents) Go programs.               |
+| gofa    | `go fmt ./...`          | Run go fmt for all packages in current directory, recursively |
+| gog     | `go get`                | Downloads packages and then installs them to $GOPATH          |
+| goi     | `go install`            | Compiles and installs packages to $GOPATH                     |
+| gol     | `go list`               | Lists Go packages                                             |
+| gop     | `cd $GOPATH`            | Takes you to $GOPATH                                          |
+| gopb    | `cd $GOPATH/bin`        | Takes you to $GOPATH/bin                                      |
+| gops    | `cd $GOPATH/src`        | Takes you to $GOPATH/src                                      |
+| gor     | `go run`                | Compiles and runs your code                                   |
+| got     | `go test`               | Runs tests                                                    |
+| gov     | `go vet`                | Vet examines Go source code and reports suspicious constructs |
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/golang/golang.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/golang/golang.plugin.zsh
new file mode 100644
index 0000000..8284ab8
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/golang/golang.plugin.zsh
@@ -0,0 +1,197 @@
+# install in /etc/zsh/zshrc or your personal .zshrc
+
+# gc
+prefixes=(5 6 8)
+for p in $prefixes; do
+	compctl -g "*.${p}" ${p}l
+	compctl -g "*.go" ${p}g
+done
+
+# standard go tools
+compctl -g "*.go" gofmt
+
+# gccgo
+compctl -g "*.go" gccgo
+
+# go tool
+__go_tool_complete() {
+  typeset -a commands build_flags
+  commands+=(
+    'build[compile packages and dependencies]'
+    'clean[remove object files]'
+    'doc[run godoc on package sources]'
+    'env[print Go environment information]'
+    'fix[run go tool fix on packages]'
+    'fmt[run gofmt on package sources]'
+    'generate[generate Go files by processing source]'
+    'get[download and install packages and dependencies]'
+    'help[display help]'
+    'install[compile and install packages and dependencies]'
+    'list[list packages]'
+    'run[compile and run Go program]'
+    'test[test packages]'
+    'tool[run specified go tool]'
+    'version[print Go version]'
+    'vet[run go tool vet on packages]'
+  )
+  if (( CURRENT == 2 )); then
+    # explain go commands
+    _values 'go tool commands' ${commands[@]}
+    return
+  fi
+  build_flags=(
+    '-a[force reinstallation of packages that are already up-to-date]'
+    '-n[print the commands but do not run them]'
+    '-p[number of parallel builds]:number'
+    '-race[enable data race detection]'
+    '-x[print the commands]'
+    '-work[print temporary directory name and keep it]'
+    '-ccflags[flags for 5c/6c/8c]:flags'
+    '-gcflags[flags for 5g/6g/8g]:flags'
+    '-ldflags[flags for 5l/6l/8l]:flags'
+    '-gccgoflags[flags for gccgo]:flags'
+    '-compiler[name of compiler to use]:name'
+    '-installsuffix[suffix to add to package directory]:suffix'
+    '-tags[list of build tags to consider satisfied]:tags'
+  )
+  __go_packages() {
+      local gopaths
+      declare -a gopaths
+      gopaths=("${(s/:/)$(go env GOPATH)}")
+      gopaths+=("$(go env GOROOT)")
+      for p in $gopaths; do
+        _path_files -W "$p/src" -/
+      done
+  }
+  __go_identifiers() {
+      compadd $(godoc -templates $ZSH/plugins/golang/templates ${words[-2]} 2> /dev/null)
+  }
+  case ${words[2]} in
+  doc)
+    _arguments -s -w \
+      "-c[symbol matching honors case (paths not affected)]" \
+      "-cmd[show symbols with package docs even if package is a command]" \
+      "-u[show unexported symbols as well as exported]" \
+      "2:importpaths:__go_packages" \
+      ":next identifiers:__go_identifiers"
+      ;;
+  clean)
+    _arguments -s -w \
+      "-i[remove the corresponding installed archive or binary (what 'go install' would create)]" \
+      "-n[print the remove commands it would execute, but not run them]" \
+      "-r[apply recursively to all the dependencies of the packages named by the import paths]" \
+      "-x[print remove commands as it executes them]" \
+      "*:importpaths:__go_packages"
+      ;;
+  fix|fmt|list|vet)
+      _alternative ':importpaths:__go_packages' ':files:_path_files -g "*.go"'
+      ;;
+  install)
+      _arguments -s -w : ${build_flags[@]} \
+        "-v[show package names]" \
+        '*:importpaths:__go_packages'
+      ;;
+  get)
+      _arguments -s -w : \
+        ${build_flags[@]}
+      ;;
+  build)
+      _arguments -s -w : \
+        ${build_flags[@]} \
+        "-v[show package names]" \
+        "-o[output file]:file:_files" \
+        "*:args:{ _alternative ':importpaths:__go_packages' ':files:_path_files -g \"*.go\"' }"
+      ;;
+  test)
+      _arguments -s -w : \
+        ${build_flags[@]} \
+        "-c[do not run, compile the test binary]" \
+        "-i[do not run, install dependencies]" \
+        "-v[print test output]" \
+        "-x[print the commands]" \
+        "-short[use short mode]" \
+        "-parallel[number of parallel tests]:number" \
+        "-cpu[values of GOMAXPROCS to use]:number list" \
+        "-run[run tests and examples matching regexp]:regexp" \
+        "-bench[run benchmarks matching regexp]:regexp" \
+        "-benchmem[print memory allocation stats]" \
+        "-benchtime[run each benchmark until taking this long]:duration" \
+        "-blockprofile[write goroutine blocking profile to file]:file" \
+        "-blockprofilerate[set sampling rate of goroutine blocking profile]:number" \
+        "-timeout[kill test after that duration]:duration" \
+        "-cpuprofile[write CPU profile to file]:file:_files" \
+        "-memprofile[write heap profile to file]:file:_files" \
+        "-memprofilerate[set heap profiling rate]:number" \
+        "*:args:{ _alternative ':importpaths:__go_packages' ':files:_path_files -g \"*.go\"' }"
+      ;;
+  help)
+      _values "${commands[@]}" \
+        'environment[show Go environment variables available]' \
+        'gopath[GOPATH environment variable]' \
+        'packages[description of package lists]' \
+        'remote[remote import path syntax]' \
+        'testflag[description of testing flags]' \
+        'testfunc[description of testing functions]'
+      ;;
+  run)
+      _arguments -s -w : \
+          ${build_flags[@]} \
+          '*:file:_files -g "*.go"'
+      ;;
+  tool)
+      if (( CURRENT == 3 )); then
+          _values "go tool" $(go tool)
+          return
+      fi
+      case ${words[3]} in
+      [568]g)
+          _arguments -s -w : \
+              '-I[search for packages in DIR]:includes:_path_files -/' \
+              '-L[show full path in file:line prints]' \
+              '-S[print the assembly language]' \
+              '-V[print the compiler version]' \
+              '-e[no limit on number of errors printed]' \
+              '-h[panic on an error]' \
+              '-l[disable inlining]' \
+              '-m[print optimization decisions]' \
+              '-o[file specify output file]:file' \
+              '-p[assumed import path for this code]:importpath' \
+              '-u[disable package unsafe]' \
+              "*:file:_files -g '*.go'"
+          ;;
+      [568]l)
+          local O=${words[3]%l}
+          _arguments -s -w : \
+              '-o[file specify output file]:file' \
+              '-L[search for packages in DIR]:includes:_path_files -/' \
+              "*:file:_files -g '*.[ao$O]'"
+          ;;
+      dist)
+          _values "dist tool" banner bootstrap clean env install version
+          ;;
+      *)
+          # use files by default
+          _files
+          ;;
+      esac
+      ;;
+  esac
+}
+
+compdef __go_tool_complete go
+
+# aliases: go<~>
+alias gob='go build'
+alias goc='go clean'
+alias god='go doc'
+alias gof='go fmt'
+alias gofa='go fmt ./...'
+alias gog='go get'
+alias goi='go install'
+alias gol='go list'
+alias gop='cd $GOPATH'
+alias gopb='cd $GOPATH/bin'
+alias gops='cd $GOPATH/src'
+alias gor='go run'
+alias got='go test'
+alias gov='go vet'
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/golang/templates/package.txt b/oh-my-zsh/.oh-my-zsh/plugins/golang/templates/package.txt
new file mode 100644
index 0000000..2b75cce
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/golang/templates/package.txt
@@ -0,0 +1,29 @@
+{{with .PDoc}}{{/*
+
+Constants 
+---------------------------------------
+
+*/}}{{with .Consts}}{{range .}}{{range .Names}}{{.}} {{end}}{{end}}{{end}}{{/*
+
+Variables
+---------------------------------------
+
+*/}}{{with .Vars}}{{range .}}{{range .Names}}{{.}} {{end}}{{end}}{{end}}{{/*
+
+Functions
+---------------------------------------
+
+*/}}{{with .Funcs}}{{range .}}{{ .Name }} {{end}}{{end}}{{/*
+
+Types
+---------------------------------------
+
+*/}}{{with .Types}}{{range .}}{{ $TypeName := .Name }}{{ $TypeName }} {{/*
+
+*/}}{{range .Methods}}{{ $TypeName }}.{{.Name}} {{end}}{{/*
+
+*/}}{{range .Funcs}}{{.Name}} {{end}}{{/*
+
+*/}}{{range .Consts}}{{range .Names}}{{.}} {{end}}{{end}}{{/*
+
+*/}}{{range .Vars}}{{range .Names}}{{.}} {{end}}{{end}}{{end}}{{end}}{{end}}
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/golang/templates/search.txt b/oh-my-zsh/.oh-my-zsh/plugins/golang/templates/search.txt
new file mode 100644
index 0000000..e69de29
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/gpg-agent/README.md b/oh-my-zsh/.oh-my-zsh/plugins/gpg-agent/README.md
new file mode 100644
index 0000000..a9711f9
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/gpg-agent/README.md
@@ -0,0 +1,8 @@
+# gpg-agent
+
+Enables [GPG's gpg-agent](https://www.gnupg.org/documentation/manuals/gnupg/) if it is not running.
+
+To use it, add gpg-agent to the plugins array of your zshrc file:
+```
+plugins=(... gpg-agent)
+```
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/gpg-agent/gpg-agent.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/gpg-agent/gpg-agent.plugin.zsh
new file mode 100644
index 0000000..3e24c25
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/gpg-agent/gpg-agent.plugin.zsh
@@ -0,0 +1,16 @@
+# Enable gpg-agent if it is not running-
+# --use-standard-socket will work from version 2 upwards
+
+AGENT_SOCK=$(gpgconf --list-dirs | grep agent-socket | cut -d : -f 2)
+
+if [[ ! -S $AGENT_SOCK ]]; then
+  gpg-agent --daemon --use-standard-socket &>/dev/null
+fi
+export GPG_TTY=$TTY
+
+# Set SSH to use gpg-agent if it's enabled
+GNUPGCONFIG="${GNUPGHOME:-"$HOME/.gnupg"}/gpg-agent.conf"
+if [[ -r $GNUPGCONFIG ]] && command grep -q enable-ssh-support "$GNUPGCONFIG"; then
+  export SSH_AUTH_SOCK="$AGENT_SOCK.ssh"
+  unset SSH_AGENT_PID
+fi
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/gradle/README.md b/oh-my-zsh/.oh-my-zsh/plugins/gradle/README.md
new file mode 100644
index 0000000..215503c
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/gradle/README.md
@@ -0,0 +1,23 @@
+## Gradle Plugin
+
+This plugin adds completions and aliases for [Gradle](https://gradle.org/).
+
+To use it, add `gradle` to the plugins array in your zshrc file:
+
+```zsh
+plugins=(... gradle)
+```
+
+## Usage
+
+This plugin creates an alias `gradle` which is used to determine whether the current working directory has a gradlew file. If gradlew is present it will be used otherwise `gradle` is used directly. Gradle tasks can be executed directly without regard for whether it is `gradle` or `gradlew`
+
+Examples:
+```zsh
+gradle test
+gradle build
+```
+
+## Completion
+
+The completion provided for this plugin caches the parsed tasks into a file named `.gradletasknamecache` in the current working directory, so you might want to add that to your `.gitignore` file so that it's not accidentally committed.
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/gradle/_gradle b/oh-my-zsh/.oh-my-zsh/plugins/gradle/_gradle
new file mode 120000
index 0000000..80723f2
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/gradle/_gradle
@@ -0,0 +1 @@
+gradle.plugin.zsh
\ No newline at end of file
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/gradle/_gradlew b/oh-my-zsh/.oh-my-zsh/plugins/gradle/_gradlew
new file mode 120000
index 0000000..80723f2
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/gradle/_gradlew
@@ -0,0 +1 @@
+gradle.plugin.zsh
\ No newline at end of file
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/gradle/gradle.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/gradle/gradle.plugin.zsh
new file mode 100644
index 0000000..8df62c2
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/gradle/gradle.plugin.zsh
@@ -0,0 +1,183 @@
+##############################################################################
+# A descriptive listing of core Gradle commands
+############################################################################
+
+gradle-or-gradlew() {
+	if [ -f ./gradlew ] ; then
+		echo "executing gradlew instead of gradle";
+		./gradlew "$@";
+	else
+		gradle "$@";
+	fi
+}
+
+alias gradle=gradle-or-gradlew;
+
+function _gradle_core_commands() {
+    local ret=1 state
+    _arguments ':subcommand:->subcommand' && ret=0
+
+    case $state in
+      subcommand)
+        subcommands=(
+          "properties:Display all project properties"
+          "tasks:Calculate and display all tasks"
+          "dependencies:Calculate and display all dependencies"
+          "projects:Discover and display all sub-projects"
+          "build:Build the project"
+          "help:Display help"
+        )
+        _describe -t subcommands 'gradle subcommands' subcommands && ret=0
+    esac
+
+    return ret
+}
+
+function _gradle_arguments() {
+    _arguments -C \
+    '-a[Do not rebuild project dependencies]' \
+    '-b[Specifies the build file]' \
+    '-c[Specifies the settings file]' \
+    '-d[Log at the debug level]' \
+    '-g[Specifies the Gradle user home directory]' \
+    '-h[Shows a help message]' \
+    '-i[Set log level to INFO]' \
+    '-m[Runs the build with all task actions disabled]' \
+    '-p[Specifies the start directory for Gradle]' \
+    '-q[Log errors only]' \
+    '-s[Print out the stacktrace also for user exceptions]' \
+    '-t[Continuous mode. Automatically re-run build after changes]' \
+    '-u[Don''t search in parent directories for a settings.gradle file]' \
+    '-v[Prints Gradle version info]' \
+    '-x[Specify a task to be excluded]' \
+    '-D[Set a system property]' \
+    '-I[Specifies an initialization script]' \
+    '-P[Sets a project property of the root project]' \
+    '-S[Print out the full (very verbose) stacktrace]' \
+    '--build-file[Specifies the build file]' \
+    '--configure-on-demand[Only relevant projects are configured]' \
+    '--console[Type of console output to generate (plain, auto, or rich)]' \
+    '--continue[Continues task execution after a task failure]' \
+    '--continuous[Continuous mode. Automatically re-run build after changes]' \
+    '--daemon[Use the Gradle Daemon]' \
+    '--debug[Log at the debug level]' \
+    '--dry-run[Runs the build with all task actions disabled]' \
+    '--exclude-task[Specify a task to be excluded]' \
+    '--full-stacktrace[Print out the full (very verbose) stacktrace]' \
+    '--gradle-user-home[Specifies the Gradle user home directory]' \
+    '--gui[Launches the Gradle GUI app (Deprecated)]' \
+    '--help[Shows a help message]' \
+    '--include-build[Run the build as a composite, including the specified build]' \
+    '--info[Set log level to INFO]' \
+    '--init-script[Specifies an initialization script]' \
+    '--max-workers[Set the maximum number of workers that Gradle may use]' \
+    '--no-daemon[Do not use the Gradle Daemon]' \
+    '--no-rebuild[Do not rebuild project dependencies]' \
+    '--no-search-upwards[Don''t search in parent directories for a settings.gradle file]' \
+    '--offline[Build without accessing network resources]' \
+    '--parallel[Build projects in parallel]' \
+    '--profile[Profile build time and create report]' \
+    '--project-cache-dir[Specifies the project-specific cache directory]' \
+    '--project-dir[Specifies the start directory for Gradle]' \
+    '--project-prop[Sets a project property of the root project]' \
+    '--quiet[Log errors only]' \
+    '--recompile-scripts[Forces scripts to be recompiled, bypassing caching]' \
+    '--refresh-dependencies[Refresh the state of dependencies]' \
+    '--rerun-task[Specifies that any task optimization is ignored]' \
+    '--settings-file[Specifies the settings file]' \
+    '--stacktrace[Print out the stacktrace also for user exceptions]' \
+    '--status[Print Gradle Daemon status]' \
+    '--stop[Stop all Gradle Daemons]' \
+    '--system-prop[Set a system property]' \
+    '--version[Prints Gradle version info]' \
+    '*::command:->command' \
+    && return 0
+}
+
+
+##############################################################################
+# Examine the build.gradle file to see if its timestamp has changed;
+# and if so, regenerate the .gradle_tasks cache file
+############################################################################
+_gradle_does_task_list_need_generating () {
+  [[ ! -f .gradletasknamecache ]] || [[ build.gradle -nt .gradletasknamecache || build.gradle.kts -nt .gradletasknamecache ]]
+}
+
+##############
+# Parse the tasks from `gradle(w) tasks --all` and return them to the calling function.
+# All lines in the output from gradle(w) that are between /^-+$/ and /^\s*$/
+# are considered to be tasks. If and when gradle adds support for listing tasks
+# for programmatic parsing, this method can be deprecated.
+##############
+_gradle_parse_tasks () {
+  lines_might_be_tasks=false
+  task_name_buffer=""
+  while read -r line; do
+    if [[ $line =~ ^-+$ ]]; then
+      lines_might_be_tasks=true
+      # Empty buffer, because it contains items that are not tasks
+      task_name_buffer=""
+    elif [[ $line =~ ^\s*$ ]]; then
+      if [[ "$lines_might_be_tasks" = true ]]; then
+        # If a newline is found, echo the buffer to the calling function
+        while read -r task; do
+          echo $task | awk '/[a-zA-Z0-9:-]+/ {print $1}'
+        done <<< "$task_name_buffer"
+        # Empty buffer, because we are done with the tasks
+        task_name_buffer=""
+      fi
+      lines_might_be_tasks=false
+    elif [[ "$lines_might_be_tasks" = true ]]; then
+      task_name_buffer="${task_name_buffer}\n${line}"
+    fi
+  done <<< "$1"
+}
+
+
+##############
+# Gradle tasks from subprojects are allowed to be executed without specifying
+# the subproject; that task will then be called on all subprojects.
+# gradle(w) tasks --all only lists tasks per subproject, but when autocompleting
+# we often want to be able to run a specific task on all subprojects, e.g.
+# "gradle clean".
+# This function uses the list of tasks from "gradle tasks --all", and for each
+# line grabs everything after the last ":" and combines that output with the original
+# output. The combined list is returned as the result of this function.
+##############
+_gradle_parse_and_extract_tasks () {
+  # All tasks
+  tasks=$(_gradle_parse_tasks "$1")
+  # Task name without sub project(s) prefix
+  simple_tasks=$(echo $tasks | awk 'BEGIN { FS = ":" } { print $NF }')
+  echo "$tasks\n$simple_tasks"
+}
+
+##############################################################################
+# Discover the gradle tasks by running "gradle tasks --all"
+############################################################################
+_gradle_tasks () {
+  if [[ -f build.gradle || -f build.gradle.kts ]]; then
+    _gradle_arguments
+    if _gradle_does_task_list_need_generating; then
+      _gradle_parse_and_extract_tasks "$(gradle tasks --all)" > .gradletasknamecache
+    fi
+    compadd -X "==== Gradle Tasks ====" $(cat .gradletasknamecache)
+  fi
+}
+
+_gradlew_tasks () {
+  if [[ -f build.gradle || -f build.gradle.kts ]]; then
+    _gradle_arguments
+    if _gradle_does_task_list_need_generating; then
+      _gradle_parse_and_extract_tasks "$(./gradlew tasks --all)" > .gradletasknamecache
+    fi
+    compadd -X "==== Gradlew Tasks ====" $(cat .gradletasknamecache)
+  fi
+}
+
+
+##############################################################################
+# Register the completions against the gradle and gradlew commands
+############################################################################
+compdef _gradle_tasks gradle
+compdef _gradlew_tasks gradlew
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/grails/README.md b/oh-my-zsh/.oh-my-zsh/plugins/grails/README.md
new file mode 100644
index 0000000..64b4a9f
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/grails/README.md
@@ -0,0 +1,71 @@
+# Grails plugin
+
+This plugin adds completion for the [Grails 2 CLI](https://grails.github.io/grails2-doc/2.5.x/guide/commandLine.html)
+
+To use it, add `grails` to the plugins array in your zshrc file:
+
+```zsh
+plugins=(... grails)
+```
+
+It looks for scripts in the following paths:
+
+- `$GRAILS_HOME/scripts`
+- `~/.grails/scripts`
+- `./scripts`
+- `./plugins/*/scripts`
+
+## Grails Commands
+- `add-proxy`
+- `alias`
+- `bootstrap`
+- `bug-report`
+- `clean`
+- `clean-all`
+- `clear-proxy`
+- `compile`
+- `console`
+- `create-app`
+- `create-controller`
+- `create-domain-class`
+- `create-filters`
+- `create-integration-test`
+- `create-multi-project-build`
+- `create-plugin`
+- `create-pom`
+- `create-script`
+- `create-service`
+- `create-tag-lib`
+- `create-unit-test`
+- `dependency-report`
+- `doc`
+- `help`
+- `init`
+- `install-app-templates`
+- `install-dependency`
+- `install-plugin`
+- `install-templates`
+- `integrate-with`
+- `interactive`
+- `list-plugin-updates`
+- `list-plugins`
+- `migrate-docs`
+- `package`
+- `package-plugin`
+- `plugin-info`
+- `refresh-dependencies`
+- `remove-proxy`
+- `run-app`
+- `run-script`
+- `run-war`
+- `set-grails-version`
+- `set-proxy`
+- `set-version`
+- `shell`
+- `stats`
+- `stop-app`
+- `test-app`
+- `uninstall-plugin`
+- `url-mappings-report`
+- `war`
+- `wrapper`
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/grails/grails.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/grails/grails.plugin.zsh
new file mode 100644
index 0000000..1177773
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/grails/grails.plugin.zsh
@@ -0,0 +1,60 @@
+_enumerateGrailsScripts() {
+    # Default directoryies
+    directories=($GRAILS_HOME/scripts ~/.grails/scripts ./scripts)
+
+    # Check all of the plugins directories, if they exist
+    if [ -d plugins ]
+    then
+        directories+=(plugins/*/scripts)
+    fi
+    
+    # Enumerate all of the Groovy files
+    files=()
+    for dir in $directories;
+    do
+        if [ -d $dir ]
+        then
+            files+=($dir/[^_]*.groovy)
+        fi
+    done
+    
+    # Don't try to basename ()
+    if [ ${#files} -eq 0 ];
+    then
+        return
+    fi
+    
+    scripts=()
+    for file in $files
+    do
+        # - Strip the path
+        # - Remove all scripts with a leading '_'
+        # - PackagePlugin_.groovy -> PackagePlugin
+        # - PackagePlugin         -> Package-Plugin
+        # - Package-Plugin        -> package-plugin
+        command=$(basename $file                              \
+            | sed -E  -e 's/^_?([^_]+)_?.groovy/\1/'\
+                      -e 's/([a-z])([A-Z])/\1-\2/g' \
+            | tr "[:upper:]" "[:lower:]"            \
+            | sort                                  \
+            | uniq)
+        scripts+=($command)
+    done
+    echo $scripts
+}
+ 
+_grails() {
+    if (( CURRENT == 2 )); then
+        scripts=( $(_enumerateGrailsScripts) )
+        
+        if [ ${#scripts} -ne 0 ];
+        then
+            _multi_parts / scripts
+            return
+        fi
+    fi
+    
+    _files
+}
+ 
+compdef _grails grails
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/grunt/README.md b/oh-my-zsh/.oh-my-zsh/plugins/grunt/README.md
new file mode 100644
index 0000000..a69a9b7
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/grunt/README.md
@@ -0,0 +1,37 @@
+# grunt plugin
+
+This plugin adds completions for [grunt](https://github.com/gruntjs/grunt).
+
+To use it, add `grunt` to the plugins array of your `.zshrc` file:
+```zsh
+plugins=(... grunt)
+```
+
+## Enable caching
+
+If you want to use the cache, set the following in your `.zshrc`:
+```zsh
+zstyle ':completion:*' use-cache yes
+```
+
+## Settings
+
+* Show grunt file path:
+  ```zsh
+  zstyle ':completion::complete:grunt::options:' show_grunt_path yes
+  ```
+* Cache expiration days (default: 7):
+  ```zsh
+  zstyle ':completion::complete:grunt::options:' expire 1
+  ```
+* Not update options cache if target gruntfile is changed.
+  ```zsh
+  zstyle ':completion::complete:grunt::options:' no_update_options yes
+  ```
+
+Note that if you change the zstyle settings, you should delete the cache file and restart zsh.
+
+```zsh
+$ rm ~/.zcompcache/grunt
+$ exec zsh
+```
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/grunt/grunt.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/grunt/grunt.plugin.zsh
new file mode 100644
index 0000000..3f96951
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/grunt/grunt.plugin.zsh
@@ -0,0 +1,255 @@
+#compdef grunt
+#autoload
+# -----------------------------------------------------------------------------
+#  _grunt
+#
+#  Completion script for grunt.
+#   - https://github.com/gruntjs/grunt
+#   - https://github.com/gruntjs/grunt-cli
+#
+# -----------------------------------------------------------------------------
+#
+#  Version     : 0.1.2
+#  Author      : Yonchu 
+#  License     : MIT License
+#  Repository  : https://github.com/yonchu/grunt-zsh-completion
+#  Last Change : 20 Aug 2014.
+#
+#  Copyright (c) 2013 Yonchu.
+#
+# -----------------------------------------------------------------------------
+# USAGE
+# -----
+#
+# Enable caching:
+#
+#   If you want to use the cache, set the followings in your .zshrc:
+#
+#     zstyle ':completion:*' use-cache yes
+#
+#
+# Settings:
+#
+#  - Show grunt file path:
+#      zstyle ':completion::complete:grunt::options:' show_grunt_path yes
+#
+#  - Cache expiration days (default: 7):
+#      zstyle ':completion::complete:grunt::options:' expire 1
+#
+#  - Not update options cache if target gruntfile is changed.
+#      zstyle ':completion::complete:grunt::options:' no_update_options yes
+#
+#  Note that if you change the zstyle settings,
+#  you should delete the cache file and restart zsh.
+#
+#    $ rm ~/.zcompcache/grunt
+#    $ exec zsh
+#
+# -----------------------------------------------------------------------------
+
+function __grunt() {
+    local curcontext="$curcontext" update_policy state
+    local show_grunt_path update_msg gruntfile opts tasks
+
+    # Setup cache-policy.
+    zstyle -s ":completion:${curcontext}:" cache-policy update_policy
+    if [[ -z $update_policy ]]; then
+        zstyle ":completion:${curcontext}:" cache-policy __grunt_caching_policy
+    fi
+
+    # Check show_path option.
+    zstyle -b ":completion:${curcontext}:options:" show_grunt_path show_grunt_path
+
+    # Get current gruntfile.
+    gruntfile=$(__grunt_get_gruntfile)
+
+    # Initialize opts and tasks.
+    opts=()
+    tasks=()
+
+    # Add help options.
+    opts+=('(- 1 *)'{-h,--help}'[Display this help text.]')
+
+    ## Complete without gruntfile.
+    if [[ ! -f $gruntfile ]]; then
+        _arguments "${opts[@]}"
+        return
+    fi
+
+    ## Complete with gruntfile.
+    # Retrieve cache.
+    if ! __grunt_update_cache "$gruntfile"; then
+        update_msg=' (cache updated)'
+    fi
+
+    # Make optioins completion.
+    if [[ ${#__grunt_opts} -gt 0 ]]; then
+        opts+=("${__grunt_opts[@]}")
+    fi
+
+    # Complete arguments.
+    _arguments \
+        "${opts[@]}" \
+        '*: :->tasks' \
+        && return
+
+    case $state in
+        tasks)
+            if [[ $show_grunt_path == 'yes' ]]; then
+                update_msg="$update_msg: ${${gruntfile/#$HOME/~}%/}"
+            fi
+            # Make tasks completion.
+            if [[ ${#__grunt_tasks} -gt 0 ]]; then
+                tasks+=("${__grunt_tasks[@]}")
+                _describe -t grunt-task "$verbose grunt task$update_msg" tasks || return 1
+            fi
+        ;;
+    esac
+
+    return 0
+}
+
+# Cache policy:
+#   The cache file name: grunt
+#   The cache variable name: __grunt_version __grunt_gruntfile __grunt_opts __grunt_tasks
+function __grunt_update_cache() {
+    # TODO
+    local version='0.1.2'
+    local is_updating=0
+    local gruntfile="$1"
+    local grunt_info no_update_options cache_path
+
+    # Check no_update_options option.
+    zstyle -b ":completion:${curcontext}:options:" no_update_options no_update_options
+
+
+    if ! ( ((  $+__grunt_gruntfile )) \
+        && (( $+__grunt_opts )) \
+        && (( $+__grunt_tasks )) ) \
+        && ! _retrieve_cache 'grunt'; then
+        is_updating=1
+    fi
+
+    if [[ $gruntfile != $__grunt_gruntfile ]]; then
+        # Except for --help options.
+        __grunt_gruntfile=$gruntfile
+        if [[ $no_update_options == 'yes' ]]; then
+            if [[ $PREFIX == ${PREFIX#-} ]]; then
+                # Not options completions.
+                is_updating=1
+            elif [[ ${#__grunt_opts} -lt 2 ]]; then
+                is_updating=1
+            else
+                unset __grunt_gruntfile
+            fi
+        else
+            is_updating=1
+        fi
+    else
+        if [[ $PREFIX != ${PREFIX#-} && ${#__grunt_opts} -gt 1 ]]; then
+            unset __grunt_gruntfile
+        fi
+    fi
+
+    if _cache_invalid 'grunt'; then
+        is_updating=1
+    fi
+
+    # Check _grunt version.
+    if [[ $__grunt_version != $version ]]; then
+        is_updating=1
+    fi
+
+    if [[ $is_updating -ne 0 ]]; then
+        # Update caceh.
+        __grunt_version=$version
+        __grunt_gruntfile=$gruntfile
+        is_updating=1
+        grunt_info=$(grunt --help --no-color --gruntfile "$__grunt_gruntfile" 2>/dev/null)
+        __grunt_opts=(${(f)"$(__grunt_get_opts "$grunt_info")"})
+        __grunt_tasks=(${(f)"$(__grunt_get_tasks "$grunt_info")"})
+        _store_cache 'grunt' __grunt_version __grunt_gruntfile __grunt_opts __grunt_tasks
+    fi
+    return $is_updating
+}
+
+function __grunt_get_tasks() {
+    echo -E "$1" \
+        | grep 'Available tasks' -A 100 \
+        | grep '^ ' \
+        | sed -e 's/^[[:blank:]]*//' -e 's/[[:blank:]]*$//' \
+        | sed -e 's/:/\\:/g' \
+        | sed -e 's/  /:/'
+}
+
+function __grunt_get_opts() {
+    local opt_hunk opt_sep opt_num line opt
+    opt_hunk=$(echo -E "$1" \
+        | grep 'Options$' -A 100 \
+        | sed '1 d' \
+        | sed -e 's/[[:blank:]]*$//' \
+    )
+
+    opt_sep=()
+    opt_hunk=(${(f)opt_hunk})
+    opt_num=0
+    for line in "$opt_hunk[@]"; do
+        opt=$(echo -E "$line" | sed -e 's/^[[:blank:]]*//')
+        if [[ $line == $opt ]]; then
+            break
+        fi
+        if [[ $opt != ${opt#-} ]]; then
+            # Start with -
+            (( opt_num++ ))
+            opt=$(echo -E "$opt" | sed 's/^\(\(--[^ ]*\)\(, \(-[^ ]*\)\)*\)  */\2\\t\4\\\t/')
+        fi
+        opt_sep[$opt_num]=("${opt_sep[$opt_num]}${opt}")
+    done
+
+    for line in "$opt_sep[@]"; do
+        opt=(${(s:\t:)line})
+        if [[ ${opt[1]} == '--help' ]]; then
+            continue
+        fi
+        if [[ ${#opt} -eq 2 ]]; then
+            echo -E "(${opt[1]})${opt[1]}[${opt[2]}]"
+        else
+            echo -E "(${opt[1]},${opt[2]})${opt[1]}[${opt[3]}]"
+            echo -E "(${opt[1]},${opt[2]})${opt[2]}[${opt[3]}]"
+        fi
+    done
+}
+
+function __grunt_get_gruntfile() {
+    local gruntfile
+    local curpath="$PWD"
+    while [ "$curpath" ]; do
+        for gruntfile in "$curpath/"{G,g}runtfile.{js,coffee}; do
+            if [[ -e "$gruntfile" ]]; then
+                echo "$gruntfile"
+                return
+            fi
+        done
+        curpath=${curpath%/*}
+    done
+    return 1
+}
+
+function __grunt_caching_policy() {
+    # Returns status zero if the completions cache needs rebuilding.
+
+    # Rebuild if .agignore more recent than cache.
+    if [[ -f $__grunt_gruntfile && $__grunt_gruntfile -nt $1 ]]; then
+        # Invalid cache because gruntfile is old.
+        return 0
+    fi
+
+    local -a oldp
+    local expire
+    zstyle -s ":completion:${curcontext}:options:" expire expire || expire=7
+    # Rebuild if cache is more than $expire days.
+    oldp=( "$1"(Nm+$expire) )
+    (( $#oldp ))
+}
+
+compdef __grunt grunt
\ No newline at end of file
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/gulp/README.md b/oh-my-zsh/.oh-my-zsh/plugins/gulp/README.md
new file mode 100644
index 0000000..4ed2b99
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/gulp/README.md
@@ -0,0 +1,8 @@
+# gulp plugin
+
+This plugin adds autocompletion for your [`gulp`](https://gulpjs.com/) tasks. It grabs all available tasks from the `gulpfile.js` in the current directory.
+
+To use it, add `gulp` to the plugins array of your `.zshrc` file:
+```
+plugins=(... gulp)
+```
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/gulp/gulp.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/gulp/gulp.plugin.zsh
new file mode 100644
index 0000000..2b31051
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/gulp/gulp.plugin.zsh
@@ -0,0 +1,29 @@
+#!/usr/bin/env zsh
+
+#
+# gulp-autocompletion-zsh
+#
+# Autocompletion for your gulp.js tasks
+#
+# Copyright(c) 2014 André König 
+# MIT Licensed
+#
+
+#
+# André König
+# Github: https://github.com/akoenig
+# Twitter: https://twitter.com/caiifr
+#
+
+#
+# Grabs all available tasks from the `gulpfile.js`
+# in the current directory.
+#
+function $$gulp_completion {
+    compls=$(gulp --tasks-simple 2>/dev/null)
+
+    completions=(${=compls})
+    compadd -- $completions
+}
+
+compdef $$gulp_completion gulp
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/hanami/README.md b/oh-my-zsh/.oh-my-zsh/plugins/hanami/README.md
new file mode 100644
index 0000000..3ac8def
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/hanami/README.md
@@ -0,0 +1,32 @@
+# Hanami Plugin #
+This plugin adds convenient ways to work with [Hanami](https://hanamirb.org/) via console.
+It's inspired by Rails plugin, so if you've used it, you'll feel like home.
+
+## Usage ##
+
+For example, type `hc` into your console when you're within Hanami project directory to run
+the application console. Have a look at available shortcuts below. You can read more about
+these commands [on the official website](https://hanamirb.org/guides/command-line/applications/).
+
+## Aliases ##
+
+| Alias | Command                   | Description                                             |
+|-------|---------------------------|---------------------------------------------------------|
+| HED   | HANAMI_ENV=development    | Set environment variable HANAMI_ENV to development      |
+| HEP   | HANAMI_ENV=production     | Set environment variable HANAMI_ENV to production       |
+| HET   | HANAMI_ENV=test           | Set environment variable HANAMI_ENV to test             |
+| hc    | hanami console            | Run application console                                 |
+| hd    | hanami destroy            | Remove specified hanami resource                        |
+| hg    | hanami generate           | Create specified hanami resource                        |
+| hgm   | hanami generate migration | Create migration file                                   |
+| hs    | hanami server             | Launch server with hanami application                   |
+| hsp   | hanami server -p          | Launch server with specified port                       |
+| hr    | hanami routes             | List application routes                                 |
+| hdc   | hanami db create          | Create application database                             |
+| hdd   | hanami db drop            | Delete application database                             |
+| hdp   | hanami db prepare         | Prepare database for the current environment            |
+| hda   | hanami db apply           | Recreates a fresh schema after migrations (destructive) |
+| hdv   | hanami db version         | Print current database version                          |
+| hdrs  | hdd && hdp                | Drop and recreate application database                  |
+| hdtp  | HET hdp                   | Actualize test environment database                     |
+| hrg   | hr | grep            | Grep hanami routes with specified pattern               |
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/hanami/hanami.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/hanami/hanami.plugin.zsh
new file mode 100644
index 0000000..349c42c
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/hanami/hanami.plugin.zsh
@@ -0,0 +1,19 @@
+alias -g HED='HANAMI_ENV=development'
+alias -g HEP='HANAMI_ENV=production'
+alias -g HET='HANAMI_ENV=test'
+
+alias hc='hanami console'
+alias hd='hanami destroy'
+alias hg='hanami generate'
+alias hgm='hanami generate migration'
+alias hs='hanami server'
+alias hsp='hanami server -p'
+alias hr='hanami routes'
+alias hdc='hanami db create'
+alias hdd='hanami db drop'
+alias hdp='hanami db prepare'
+alias hda='hanami db apply'
+alias hdv='hanami db version'
+alias hdrs='hdd && hdp'
+alias hdtp='HET hdp'
+alias hrg='hr | grep'
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/helm/README.md b/oh-my-zsh/.oh-my-zsh/plugins/helm/README.md
new file mode 100644
index 0000000..49844c7
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/helm/README.md
@@ -0,0 +1,9 @@
+# Helm plugin
+
+This plugin adds completion for [Helm](https://helm.sh/), the Kubernetes package manager.
+
+To use it, add `helm` to the plugins array in your zshrc file:
+
+```zsh
+plugins=(... helm)
+```
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/helm/helm.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/helm/helm.plugin.zsh
new file mode 100644
index 0000000..78499c1
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/helm/helm.plugin.zsh
@@ -0,0 +1,7 @@
+# Autocompletion for helm.
+#
+# Copy from kubectl : https://github.com/pstadler
+
+if [ $commands[helm] ]; then
+  source <(helm completion zsh)
+fi
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/heroku/README.md b/oh-my-zsh/.oh-my-zsh/plugins/heroku/README.md
new file mode 100644
index 0000000..2bf92c9
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/heroku/README.md
@@ -0,0 +1,9 @@
+# Heroku
+
+This plugin provides completion for the [Heroku CLI](https://devcenter.heroku.com/articles/heroku-cli).
+
+To use it add heroku to the plugins array in your zshrc file:
+
+```bash
+plugins=(... heroku)
+```
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/heroku/heroku.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/heroku/heroku.plugin.zsh
new file mode 100644
index 0000000..9a99b42
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/heroku/heroku.plugin.zsh
@@ -0,0 +1,9 @@
+HEROKU_AC_CACHE_DIR="$HOME/.cache"
+if [ "$(uname -s)" = "Darwin" ]; then
+  HEROKU_AC_CACHE_DIR="$HOME/Library/Caches"
+fi
+if [ ! -z "$XDG_CACHE_HOME" ]; then
+  HEROKU_AC_CACHE_DIR="$XDG_CACHE_DIR"
+fi
+HEROKU_AC_ZSH_SETUP_PATH=$HEROKU_AC_CACHE_DIR/heroku/autocomplete/zsh_setup
+[ -f $HEROKU_AC_ZSH_SETUP_PATH ] && source $HEROKU_AC_ZSH_SETUP_PATH
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/history-substring-search/README.md b/oh-my-zsh/.oh-my-zsh/plugins/history-substring-search/README.md
new file mode 100644
index 0000000..7fb0fa0
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/history-substring-search/README.md
@@ -0,0 +1,149 @@
+zsh-history-substring-search
+==============================================================================
+
+This is a clean-room implementation of the [Fish shell][1]'s history search
+feature, where you can type in any part of any previously entered command
+and press the UP and DOWN arrow keys to cycle through the matching commands.
+You can also use K and J in VI mode or ^P and ^N in EMACS mode for the same.
+
+[1]: https://fishshell.com
+[2]: https://www.zsh.org/mla/users/2009/msg00818.html
+[3]: https://sourceforge.net/projects/fizsh/
+[4]: https://github.com/robbyrussell/oh-my-zsh/pull/215
+[5]: https://github.com/zsh-users/zsh-history-substring-search
+[6]: https://github.com/zsh-users/zsh-syntax-highlighting
+
+------------------------------------------------------------------------------
+Requirements
+------------------------------------------------------------------------------
+
+* [ZSH](http://zsh.sourceforge.net) 4.3 or newer
+
+------------------------------------------------------------------------------
+Usage
+------------------------------------------------------------------------------
+
+1.  Load this script into your interactive ZSH session:
+
+        % source zsh-history-substring-search.zsh
+
+    If you want to use [zsh-syntax-highlighting][6] along with this script,
+    then make sure that you load it *before* you load this script:
+
+        % source zsh-syntax-highlighting.zsh
+        % source zsh-history-substring-search.zsh
+
+2.  Bind keyboard shortcuts to this script's functions:
+
+        # bind UP and DOWN arrow keys
+        zmodload zsh/terminfo
+        bindkey "$terminfo[kcuu1]" history-substring-search-up
+        bindkey "$terminfo[kcud1]" history-substring-search-down
+
+        # bind UP and DOWN arrow keys (compatibility fallback
+        # for Ubuntu 12.04, Fedora 21, and MacOSX 10.9 users)
+        bindkey '^[[A' history-substring-search-up
+        bindkey '^[[B' history-substring-search-down
+
+        # bind P and N for EMACS mode
+        bindkey -M emacs '^P' history-substring-search-up
+        bindkey -M emacs '^N' history-substring-search-down
+
+        # bind k and j for VI mode
+        bindkey -M vicmd 'k' history-substring-search-up
+        bindkey -M vicmd 'j' history-substring-search-down
+
+3.  Type any part of any previous command and then:
+
+    * Press the UP arrow key to select the nearest command that (1) contains
+      your query and (2) is older than the current command in the command
+      history.
+
+    * Press the DOWN arrow key to select the nearest command that (1)
+      contains your query and (2) is newer than the current command in the
+      command history.
+
+    * Press ^U (the Control and U keys simultaneously) to abort the search.
+
+4.  If a matching command spans more than one line of text, press the LEFT
+    arrow key to move the cursor away from the end of the command, and then:
+
+    * Press the UP arrow key to move the cursor to the line above.  When the
+      cursor reaches the first line of the command, pressing the UP arrow
+      key again will cause this script to perform another search.
+
+    * Press the DOWN arrow key to move the cursor to the line below.  When
+      the cursor reaches the last line of the command, pressing the DOWN
+      arrow key again will cause this script to perform another search.
+
+------------------------------------------------------------------------------
+Configuration
+------------------------------------------------------------------------------
+
+This script defines the following global variables. You may override their
+default values only after having loaded this script into your ZSH session.
+
+* HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_FOUND is a global variable that defines
+  how the query should be highlighted inside a matching command. Its default
+  value causes this script to highlight using bold, white text on a magenta
+  background. See the "Character Highlighting" section in the zshzle(1) man
+  page to learn about the kinds of values you may assign to this variable.
+
+* HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_NOT_FOUND is a global variable that
+  defines how the query should be highlighted when no commands in the
+  history match it. Its default value causes this script to highlight using
+  bold, white text on a red background. See the "Character Highlighting"
+  section in the zshzle(1) man page to learn about the kinds of values you
+  may assign to this variable.
+
+* HISTORY_SUBSTRING_SEARCH_GLOBBING_FLAGS is a global variable that defines
+  how the command history will be searched for your query. Its default value
+  causes this script to perform a case-insensitive search. See the "Globbing
+  Flags" section in the zshexpn(1) man page to learn about the kinds of
+  values you may assign to this variable.
+
+To always receive _unique_ search results, use `setopt HIST_IGNORE_ALL_DUPS`.
+Alternatively, use `setopt HIST_FIND_NO_DUPS` which makes this plugin skip
+duplicate _adjacent_ search results as you cycle through them---however, this
+does not guarantee that search results are unique: if your search results were
+"Dog", "Dog", "HotDog", "Dog", then cycling them gives "Dog", "HotDog", "Dog".
+Notice that the "Dog" search result appeared twice as you cycled through them!
+If you wish to avoid this limitation, then use `setopt HIST_IGNORE_ALL_DUPS`.
+
+------------------------------------------------------------------------------
+History
+------------------------------------------------------------------------------
+
+This script was originally written by [Peter Stephenson][2], who published it
+to the ZSH users mailing list (thereby making it public domain) in September
+2009. It was later revised by Guido van Steen and released under the BSD
+license (see below) as part of [the fizsh project][3] in January 2011.
+
+It was later extracted from fizsh release 1.0.1, refactored heavily, and
+repackaged as both an [oh-my-zsh plugin][4] and as an independently loadable
+[ZSH script][5] by Suraj N. Kurapati in 2011.
+
+It was [further developed][4] by Guido van Steen, Suraj N. Kurapati, Sorin
+Ionescu, and Vincent Guerci in 2011.
+
+------------------------------------------------------------------------------
+Oh My Zsh Distribution Notes
+------------------------------------------------------------------------------
+
+What you are looking at now is Oh My Zsh's repackaging of zsh-history-substring-search
+as an OMZ module inside the Oh My Zsh distribution.
+
+The upstream repo, zsh-users/zsh-history-substring-search, can be found on GitHub at
+https://github.com/zsh-users/zsh-history-substring-search.
+
+This downstream copy was last updated from the following upstream commit:
+
+  SHA:          2c295432175990c1bb4e90bc13f609daa67a25d6
+  Commit date:  2015-09-28 10:47:34 -0700
+
+Everything above this section is a copy of the original upstream's README, so things
+may differ slightly when you're using this inside OMZ. In particular, you do not
+need to set up key bindings for the up and down arrows yourself in `~/.zshrc`; the OMZ
+plugin does that for you. You may still want to set up additional emacs- or vi-specific
+bindings as mentioned above.
+
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/history-substring-search/history-substring-search.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/history-substring-search/history-substring-search.plugin.zsh
new file mode 100644
index 0000000..7883a65
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/history-substring-search/history-substring-search.plugin.zsh
@@ -0,0 +1,26 @@
+# This file integrates the zsh-history-substring-search script into oh-my-zsh.
+
+source "${0:r:r}.zsh"
+
+if test "$CASE_SENSITIVE" = true; then
+  unset HISTORY_SUBSTRING_SEARCH_GLOBBING_FLAGS
+fi
+
+if test "$DISABLE_COLOR" = true; then
+  unset HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_FOUND
+  unset HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_NOT_FOUND
+fi
+
+
+# Bind terminal-specific up and down keys
+# Bind in both emacs and vi modes so it works in both, and is not
+# sensitive to whether this is loaded before or after the vi-mode plugin
+if [[ -n "$terminfo[kcuu1]" ]]; then
+  bindkey -M emacs "$terminfo[kcuu1]" history-substring-search-up
+  bindkey -M viins "$terminfo[kcuu1]" history-substring-search-up
+fi
+if [[ -n "$terminfo[kcud1]" ]]; then
+  bindkey -M emacs "$terminfo[kcud1]" history-substring-search-down
+  bindkey -M viins "$terminfo[kcud1]" history-substring-search-down
+fi
+
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/history-substring-search/history-substring-search.zsh b/oh-my-zsh/.oh-my-zsh/plugins/history-substring-search/history-substring-search.zsh
new file mode 100644
index 0000000..3b8afd3
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/history-substring-search/history-substring-search.zsh
@@ -0,0 +1,585 @@
+#!/usr/bin/env zsh
+##############################################################################
+#
+# Copyright (c) 2009 Peter Stephenson
+# Copyright (c) 2011 Guido van Steen
+# Copyright (c) 2011 Suraj N. Kurapati
+# Copyright (c) 2011 Sorin Ionescu
+# Copyright (c) 2011 Vincent Guerci
+# All rights reserved.
+#
+# Redistribution and use in source and binary forms, with or without
+# modification, are permitted provided that the following conditions are met:
+#
+#  * Redistributions of source code must retain the above copyright
+#    notice, this list of conditions and the following disclaimer.
+#
+#  * Redistributions in binary form must reproduce the above
+#    copyright notice, this list of conditions and the following
+#    disclaimer in the documentation and/or other materials provided
+#    with the distribution.
+#
+#  * Neither the name of the FIZSH nor the names of its contributors
+#    may be used to endorse or promote products derived from this
+#    software without specific prior written permission.
+#
+# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
+# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+# POSSIBILITY OF SUCH DAMAGE.
+#
+##############################################################################
+
+#-----------------------------------------------------------------------------
+# configuration variables
+#-----------------------------------------------------------------------------
+
+HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_FOUND='bg=magenta,fg=white,bold'
+HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_NOT_FOUND='bg=red,fg=white,bold'
+HISTORY_SUBSTRING_SEARCH_GLOBBING_FLAGS='i'
+
+#-----------------------------------------------------------------------------
+# the main ZLE widgets
+#-----------------------------------------------------------------------------
+
+history-substring-search-up() {
+  _history-substring-search-begin
+
+  _history-substring-search-up-history ||
+  _history-substring-search-up-buffer ||
+  _history-substring-search-up-search
+
+  _history-substring-search-end
+}
+
+history-substring-search-down() {
+  _history-substring-search-begin
+
+  _history-substring-search-down-history ||
+  _history-substring-search-down-buffer ||
+  _history-substring-search-down-search
+
+  _history-substring-search-end
+}
+
+zle -N history-substring-search-up
+zle -N history-substring-search-down
+
+#-----------------------------------------------------------------------------
+# implementation details
+#-----------------------------------------------------------------------------
+
+zmodload -F zsh/parameter
+
+#
+# We have to "override" some keys and widgets if the
+# zsh-syntax-highlighting plugin has not been loaded:
+#
+# https://github.com/nicoulaj/zsh-syntax-highlighting
+#
+if [[ $+functions[_zsh_highlight] -eq 0 ]]; then
+  #
+  # Dummy implementation of _zsh_highlight() that
+  # simply removes any existing highlights when the
+  # user inserts printable characters into $BUFFER.
+  #
+  _zsh_highlight() {
+    if [[ $KEYS == [[:print:]] ]]; then
+      region_highlight=()
+    fi
+  }
+
+  #
+  # The following snippet was taken from the zsh-syntax-highlighting project:
+  #
+  # https://github.com/zsh-users/zsh-syntax-highlighting/blob/56b134f5d62ae3d4e66c7f52bd0cc2595f9b305b/zsh-syntax-highlighting.zsh#L126-161
+  #
+  # Copyright (c) 2010-2011 zsh-syntax-highlighting contributors
+  # All rights reserved.
+  #
+  # Redistribution and use in source and binary forms, with or without
+  # modification, are permitted provided that the following conditions are
+  # met:
+  #
+  #  * Redistributions of source code must retain the above copyright
+  #    notice, this list of conditions and the following disclaimer.
+  #
+  #  * Redistributions in binary form must reproduce the above copyright
+  #    notice, this list of conditions and the following disclaimer in the
+  #    documentation and/or other materials provided with the distribution.
+  #
+  #  * Neither the name of the zsh-syntax-highlighting contributors nor the
+  #    names of its contributors may be used to endorse or promote products
+  #    derived from this software without specific prior written permission.
+  #
+  # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
+  # IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
+  # THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+  # PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
+  # CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+  # EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+  # PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+  # PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+  # LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+  # NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+  # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+  #
+  #--------------8<-------------------8<-------------------8<-----------------
+  # Rebind all ZLE widgets to make them invoke _zsh_highlights.
+  _zsh_highlight_bind_widgets()
+  {
+    # Load ZSH module zsh/zleparameter, needed to override user defined widgets.
+    zmodload zsh/zleparameter 2>/dev/null || {
+      echo 'zsh-syntax-highlighting: failed loading zsh/zleparameter.' >&2
+      return 1
+    }
+
+    # Override ZLE widgets to make them invoke _zsh_highlight.
+    local cur_widget
+    for cur_widget in ${${(f)"$(builtin zle -la)"}:#(.*|_*|orig-*|run-help|which-command|beep|yank*)}; do
+      case $widgets[$cur_widget] in
+
+        # Already rebound event: do nothing.
+        user:$cur_widget|user:_zsh_highlight_widget_*);;
+
+        # User defined widget: override and rebind old one with prefix "orig-".
+        user:*) eval "zle -N orig-$cur_widget ${widgets[$cur_widget]#*:}; \
+                      _zsh_highlight_widget_$cur_widget() { builtin zle orig-$cur_widget -- \"\$@\" && _zsh_highlight }; \
+                      zle -N $cur_widget _zsh_highlight_widget_$cur_widget";;
+
+        # Completion widget: override and rebind old one with prefix "orig-".
+        completion:*) eval "zle -C orig-$cur_widget ${${widgets[$cur_widget]#*:}/:/ }; \
+                            _zsh_highlight_widget_$cur_widget() { builtin zle orig-$cur_widget -- \"\$@\" && _zsh_highlight }; \
+                            zle -N $cur_widget _zsh_highlight_widget_$cur_widget";;
+
+        # Builtin widget: override and make it call the builtin ".widget".
+        builtin) eval "_zsh_highlight_widget_$cur_widget() { builtin zle .$cur_widget -- \"\$@\" && _zsh_highlight }; \
+                       zle -N $cur_widget _zsh_highlight_widget_$cur_widget";;
+
+        # Default: unhandled case.
+        *) echo "zsh-syntax-highlighting: unhandled ZLE widget '$cur_widget'" >&2 ;;
+      esac
+    done
+  }
+  #-------------->8------------------->8------------------->8-----------------
+
+  _zsh_highlight_bind_widgets
+fi
+
+_history-substring-search-begin() {
+  setopt localoptions extendedglob
+
+  _history_substring_search_refresh_display=
+  _history_substring_search_query_highlight=
+
+  #
+  # Continue using the previous $_history_substring_search_result by default,
+  # unless the current query was cleared or a new/different query was entered.
+  #
+  if [[ -z $BUFFER || $BUFFER != $_history_substring_search_result ]]; then
+    #
+    # For the purpose of highlighting we will also keep
+    # a version without doubly-escaped meta characters.
+    #
+    _history_substring_search_query=$BUFFER
+
+    #
+    # $BUFFER contains the text that is in the command-line currently.
+    # we put an extra "\\" before meta characters such as "\(" and "\)",
+    # so that they become "\\\(" and "\\\)".
+    #
+    _history_substring_search_query_escaped=${BUFFER//(#m)[\][()|\\*?#<>~^]/\\$MATCH}
+
+    #
+    # Find all occurrences of the search query in the history file.
+    #
+    # (k) returns the "keys" (history index numbers) instead of the values
+    # (Oa) reverses the order, because (R) returns results reversed.
+    #
+    _history_substring_search_matches=(${(kOa)history[(R)(#$HISTORY_SUBSTRING_SEARCH_GLOBBING_FLAGS)*${_history_substring_search_query_escaped}*]})
+
+    #
+    # Define the range of values that $_history_substring_search_match_index
+    # can take: [0, $_history_substring_search_matches_count_plus].
+    #
+    _history_substring_search_matches_count=$#_history_substring_search_matches
+    _history_substring_search_matches_count_plus=$(( _history_substring_search_matches_count + 1 ))
+    _history_substring_search_matches_count_sans=$(( _history_substring_search_matches_count - 1 ))
+
+    #
+    # If $_history_substring_search_match_index is equal to
+    # $_history_substring_search_matches_count_plus, this indicates that we
+    # are beyond the beginning of $_history_substring_search_matches.
+    #
+    # If $_history_substring_search_match_index is equal to 0, this indicates
+    # that we are beyond the end of $_history_substring_search_matches.
+    #
+    # If we have initially pressed "up" we have to initialize
+    # $_history_substring_search_match_index to
+    # $_history_substring_search_matches_count_plus so that it will be
+    # decreased to $_history_substring_search_matches_count.
+    #
+    # If we have initially pressed "down" we have to initialize
+    # $_history_substring_search_match_index to
+    # $_history_substring_search_matches_count so that it will be increased to
+    # $_history_substring_search_matches_count_plus.
+    #
+    if [[ $WIDGET == history-substring-search-down ]]; then
+       _history_substring_search_match_index=$_history_substring_search_matches_count
+    else
+      _history_substring_search_match_index=$_history_substring_search_matches_count_plus
+    fi
+  fi
+}
+
+_history-substring-search-end() {
+  setopt localoptions extendedglob
+
+  _history_substring_search_result=$BUFFER
+
+  # the search was successful so display the result properly by clearing away
+  # existing highlights and moving the cursor to the end of the result buffer
+  if [[ $_history_substring_search_refresh_display -eq 1 ]]; then
+    region_highlight=()
+    CURSOR=${#BUFFER}
+  fi
+
+  # highlight command line using zsh-syntax-highlighting
+  _zsh_highlight
+
+  # highlight the search query inside the command line
+  if [[ -n $_history_substring_search_query_highlight && -n $_history_substring_search_query ]]; then
+    #
+    # The following expression yields a variable $MBEGIN, which
+    # indicates the begin position + 1 of the first occurrence
+    # of _history_substring_search_query_escaped in $BUFFER.
+    #
+    : ${(S)BUFFER##(#m$HISTORY_SUBSTRING_SEARCH_GLOBBING_FLAGS)($_history_substring_search_query##)}
+    local begin=$(( MBEGIN - 1 ))
+    local end=$(( begin + $#_history_substring_search_query ))
+    region_highlight+=("$begin $end $_history_substring_search_query_highlight")
+  fi
+
+  # For debugging purposes:
+  # zle -R "mn: "$_history_substring_search_match_index" m#: "${#_history_substring_search_matches}
+  # read -k -t 200 && zle -U $REPLY
+
+  # Exit successfully from the history-substring-search-* widgets.
+  return 0
+}
+
+_history-substring-search-up-buffer() {
+  #
+  # Check if the UP arrow was pressed to move the cursor within a multi-line
+  # buffer. This amounts to three tests:
+  #
+  # 1. $#buflines -gt 1.
+  #
+  # 2. $CURSOR -ne $#BUFFER.
+  #
+  # 3. Check if we are on the first line of the current multi-line buffer.
+  #    If so, pressing UP would amount to leaving the multi-line buffer.
+  #
+  #    We check this by adding an extra "x" to $LBUFFER, which makes
+  #    sure that xlbuflines is always equal to the number of lines
+  #    until $CURSOR (including the line with the cursor on it).
+  #
+  local buflines XLBUFFER xlbuflines
+  buflines=(${(f)BUFFER})
+  XLBUFFER=$LBUFFER"x"
+  xlbuflines=(${(f)XLBUFFER})
+
+  if [[ $#buflines -gt 1 && $CURSOR -ne $#BUFFER && $#xlbuflines -ne 1 ]]; then
+    zle up-line-or-history
+    return 0
+  fi
+
+  return 1
+}
+
+_history-substring-search-down-buffer() {
+  #
+  # Check if the DOWN arrow was pressed to move the cursor within a multi-line
+  # buffer. This amounts to three tests:
+  #
+  # 1. $#buflines -gt 1.
+  #
+  # 2. $CURSOR -ne $#BUFFER.
+  #
+  # 3. Check if we are on the last line of the current multi-line buffer.
+  #    If so, pressing DOWN would amount to leaving the multi-line buffer.
+  #
+  #    We check this by adding an extra "x" to $RBUFFER, which makes
+  #    sure that xrbuflines is always equal to the number of lines
+  #    from $CURSOR (including the line with the cursor on it).
+  #
+  local buflines XRBUFFER xrbuflines
+  buflines=(${(f)BUFFER})
+  XRBUFFER="x"$RBUFFER
+  xrbuflines=(${(f)XRBUFFER})
+
+  if [[ $#buflines -gt 1 && $CURSOR -ne $#BUFFER && $#xrbuflines -ne 1 ]]; then
+    zle down-line-or-history
+    return 0
+  fi
+
+  return 1
+}
+
+_history-substring-search-up-history() {
+  #
+  # Behave like up in ZSH, except clear the $BUFFER
+  # when beginning of history is reached like in Fish.
+  #
+  if [[ -z $_history_substring_search_query ]]; then
+
+    # we have reached the absolute top of history
+    if [[ $HISTNO -eq 1 ]]; then
+      BUFFER=
+
+    # going up from somewhere below the top of history
+    else
+      zle up-line-or-history
+    fi
+
+    return 0
+  fi
+
+  return 1
+}
+
+_history-substring-search-down-history() {
+  #
+  # Behave like down-history in ZSH, except clear the
+  # $BUFFER when end of history is reached like in Fish.
+  #
+  if [[ -z $_history_substring_search_query ]]; then
+
+    # going down from the absolute top of history
+    if [[ $HISTNO -eq 1 && -z $BUFFER ]]; then
+      BUFFER=${history[1]}
+      _history_substring_search_refresh_display=1
+
+    # going down from somewhere above the bottom of history
+    else
+      zle down-line-or-history
+    fi
+
+    return 0
+  fi
+
+  return 1
+}
+
+_history-substring-search-not-found() {
+  #
+  # Nothing matched the search query, so put it back into the $BUFFER while
+  # highlighting it accordingly so the user can revise it and search again.
+  #
+  _history_substring_search_old_buffer=$BUFFER
+  BUFFER=$_history_substring_search_query
+  _history_substring_search_query_highlight=$HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_NOT_FOUND
+}
+
+_history-substring-search-up-search() {
+  _history_substring_search_refresh_display=1
+
+  #
+  # Highlight matches during history-substring-up-search:
+  #
+  # The following constants have been initialized in
+  # _history-substring-search-up/down-search():
+  #
+  # $_history_substring_search_matches is the current list of matches
+  # $_history_substring_search_matches_count is the current number of matches
+  # $_history_substring_search_matches_count_plus is the current number of matches + 1
+  # $_history_substring_search_matches_count_sans is the current number of matches - 1
+  # $_history_substring_search_match_index is the index of the current match
+  #
+  # The range of values that $_history_substring_search_match_index can take
+  # is: [0, $_history_substring_search_matches_count_plus].  A value of 0
+  # indicates that we are beyond the end of
+  # $_history_substring_search_matches. A value of
+  # $_history_substring_search_matches_count_plus indicates that we are beyond
+  # the beginning of $_history_substring_search_matches.
+  #
+  # In _history-substring-search-up-search() the initial value of
+  # $_history_substring_search_match_index is
+  # $_history_substring_search_matches_count_plus.  This value is set in
+  # _history-substring-search-begin().  _history-substring-search-up-search()
+  # will initially decrease it to $_history_substring_search_matches_count.
+  #
+  if [[ $_history_substring_search_match_index -ge 2 ]]; then
+    #
+    # Highlight the next match:
+    #
+    # 1. Decrease the value of $_history_substring_search_match_index.
+    #
+    # 2. Use $HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_FOUND
+    #    to highlight the current buffer.
+    #
+    (( _history_substring_search_match_index-- ))
+    BUFFER=$history[$_history_substring_search_matches[$_history_substring_search_match_index]]
+    _history_substring_search_query_highlight=$HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_FOUND
+
+  elif [[ $_history_substring_search_match_index -eq 1 ]]; then
+    #
+    # We will move beyond the end of $_history_substring_search_matches:
+    #
+    # 1. Decrease the value of $_history_substring_search_match_index.
+    #
+    # 2. Save the current buffer in $_history_substring_search_old_buffer,
+    #    so that it can be retrieved by
+    #    _history-substring-search-down-search() later.
+    #
+    # 3. Make $BUFFER equal to $_history_substring_search_query.
+    #
+    # 4. Use $HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_NOT_FOUND
+    #    to highlight the current buffer.
+    #
+    (( _history_substring_search_match_index-- ))
+    _history-substring-search-not-found
+
+  elif [[ $_history_substring_search_match_index -eq $_history_substring_search_matches_count_plus ]]; then
+    #
+    # We were beyond the beginning of $_history_substring_search_matches but
+    # UP makes us move back to $_history_substring_search_matches:
+    #
+    # 1. Decrease the value of $_history_substring_search_match_index.
+    #
+    # 2. Restore $BUFFER from $_history_substring_search_old_buffer.
+    #
+    # 3. Use $HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_FOUND
+    #    to highlight the current buffer.
+    #
+    (( _history_substring_search_match_index-- ))
+    BUFFER=$_history_substring_search_old_buffer
+    _history_substring_search_query_highlight=$HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_FOUND
+
+  else
+    #
+    # We are at the beginning of history and there are no further matches.
+    #
+    _history-substring-search-not-found
+    return
+  fi
+
+  #
+  # When HIST_FIND_NO_DUPS is set, meaning that only unique command lines from
+  # history should be matched, make sure the new and old results are different.
+  # But when HIST_IGNORE_ALL_DUPS is set, ZSH already ensures a unique history.
+  #
+  if [[ ! -o HIST_IGNORE_ALL_DUPS && -o HIST_FIND_NO_DUPS && $BUFFER == $_history_substring_search_result ]]; then
+    #
+    # Repeat the current search so that a different (unique) match is found.
+    #
+    _history-substring-search-up-search
+  fi
+}
+
+_history-substring-search-down-search() {
+  _history_substring_search_refresh_display=1
+
+  #
+  # Highlight matches during history-substring-up-search:
+  #
+  # The following constants have been initialized in
+  # _history-substring-search-up/down-search():
+  #
+  # $_history_substring_search_matches is the current list of matches
+  # $_history_substring_search_matches_count is the current number of matches
+  # $_history_substring_search_matches_count_plus is the current number of matches + 1
+  # $_history_substring_search_matches_count_sans is the current number of matches - 1
+  # $_history_substring_search_match_index is the index of the current match
+  #
+  # The range of values that $_history_substring_search_match_index can take
+  # is: [0, $_history_substring_search_matches_count_plus].  A value of 0
+  # indicates that we are beyond the end of
+  # $_history_substring_search_matches. A value of
+  # $_history_substring_search_matches_count_plus indicates that we are beyond
+  # the beginning of $_history_substring_search_matches.
+  #
+  # In _history-substring-search-down-search() the initial value of
+  # $_history_substring_search_match_index is
+  # $_history_substring_search_matches_count.  This value is set in
+  # _history-substring-search-begin().
+  # _history-substring-search-down-search() will initially increase it to
+  # $_history_substring_search_matches_count_plus.
+  #
+  if [[ $_history_substring_search_match_index -le $_history_substring_search_matches_count_sans ]]; then
+    #
+    # Highlight the next match:
+    #
+    # 1. Increase $_history_substring_search_match_index by 1.
+    #
+    # 2. Use $HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_FOUND
+    #    to highlight the current buffer.
+    #
+    (( _history_substring_search_match_index++ ))
+    BUFFER=$history[$_history_substring_search_matches[$_history_substring_search_match_index]]
+    _history_substring_search_query_highlight=$HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_FOUND
+
+  elif [[ $_history_substring_search_match_index -eq $_history_substring_search_matches_count ]]; then
+    #
+    # We will move beyond the beginning of $_history_substring_search_matches:
+    #
+    # 1. Increase $_history_substring_search_match_index by 1.
+    #
+    # 2. Save the current buffer in $_history_substring_search_old_buffer, so
+    #    that it can be retrieved by _history-substring-search-up-search()
+    #    later.
+    #
+    # 3. Make $BUFFER equal to $_history_substring_search_query.
+    #
+    # 4. Use $HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_NOT_FOUND
+    #    to highlight the current buffer.
+    #
+    (( _history_substring_search_match_index++ ))
+    _history-substring-search-not-found
+
+  elif [[ $_history_substring_search_match_index -eq 0 ]]; then
+    #
+    # We were beyond the end of $_history_substring_search_matches but DOWN
+    # makes us move back to the $_history_substring_search_matches:
+    #
+    # 1. Increase $_history_substring_search_match_index by 1.
+    #
+    # 2. Restore $BUFFER from $_history_substring_search_old_buffer.
+    #
+    # 3. Use $HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_FOUND
+    #    to highlight the current buffer.
+    #
+    (( _history_substring_search_match_index++ ))
+    BUFFER=$_history_substring_search_old_buffer
+    _history_substring_search_query_highlight=$HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_FOUND
+
+  else
+    #
+    # We are at the end of history and there are no further matches.
+    #
+    _history-substring-search-not-found
+    return
+  fi
+
+  #
+  # When HIST_FIND_NO_DUPS is set, meaning that only unique command lines from
+  # history should be matched, make sure the new and old results are different.
+  # But when HIST_IGNORE_ALL_DUPS is set, ZSH already ensures a unique history.
+  #
+  if [[ ! -o HIST_IGNORE_ALL_DUPS && -o HIST_FIND_NO_DUPS && $BUFFER == $_history_substring_search_result ]]; then
+    #
+    # Repeat the current search so that a different (unique) match is found.
+    #
+    _history-substring-search-down-search
+  fi
+}
+
+# -*- mode: zsh; sh-indentation: 2; indent-tabs-mode: nil; sh-basic-offset: 2; -*-
+# vim: ft=zsh sw=2 ts=2 et
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/history-substring-search/update-from-upstream.zsh b/oh-my-zsh/.oh-my-zsh/plugins/history-substring-search/update-from-upstream.zsh
new file mode 100755
index 0000000..81e1942
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/history-substring-search/update-from-upstream.zsh
@@ -0,0 +1,129 @@
+#!/usr/bin/env zsh
+#
+# update-from-upstream.zsh
+#
+# This script updates the Oh My Zsh version of the zsh-history-substring-search
+# plugin from the independent upstream repo. This is to be run by OMZ developers
+# when they want to pull in new changes from upstream to OMZ. It is not run
+# during normal use of the plugin.
+#
+# The official upstream repo is zsh-users/zsh-history-substring-search
+# https://github.com/zsh-users/zsh-history-substring-search
+#
+# This is a zsh script, not a function. Call it with `zsh update-from-upstream.zsh`
+# from the command line, running it from within the plugin directory.
+#
+# You can set the environment variable REPO_PATH to point it at an upstream
+# repo you have already prepared. Otherwise, it will do a clean checkout of
+# upstream's HEAD to a temporary local repo and use that.
+
+
+# Just bail on any error so we don't have to do extra checking.
+# This is a developer-use script, so terse output like that should
+# be fine.
+set -e
+
+
+upstream_basename=zsh-history-substring-search
+plugin_basename=history-substring-search
+UPSTREAM_REPO=zsh-users/$upstream_basename
+need_repo_cleanup=false
+upstream_github_url="https://github.com/$UPSTREAM_REPO"
+
+if [[ -z "$UPSTREAM_REPO_PATH" ]]; then
+  # Do a clean checkout
+  my_tempdir=$(mktemp -d -t omz-update-histsubstrsrch)
+  UPSTREAM_REPO_PATH="$my_tempdir/$upstream_basename"
+  git clone "$upstream_github_url" "$UPSTREAM_REPO_PATH"
+  need_repo_cleanup=true
+  print "Checked out upstream repo to $UPSTREAM_REPO_PATH"
+else
+	print "Using existing $upstream_basename repo at $UPSTREAM_REPO_PATH"
+fi
+
+upstream="$UPSTREAM_REPO_PATH"
+
+# Figure out what we're pulling in
+upstream_sha=$(cd $upstream && git rev-parse HEAD)
+upstream_commit_date=$(cd $upstream && git log  -1 --pretty=format:%ci)
+upstream_just_date=${${=upstream_commit_date}[1]}
+print "upstream SHA:         $upstream_sha"
+print "upstream commit time: $upstream_commit_date"
+print "upstream commit date: $upstream_just_date"
+print
+
+# Copy the files over, using the OMZ plugin's names where needed
+cp -v "$upstream"/* .
+mv -v zsh-history-substring-search.zsh $plugin_basename.zsh
+mv -v zsh-history-substring-search.plugin.zsh $plugin_basename.plugin.zsh
+
+if [[ $need_repo_cleanup == true ]]; then
+	print "Removing temporary repo at $my_tempdir"
+	rm -rf "$my_tempdir"
+fi
+
+# Do OMZ-specific edits
+
+print
+print "Updating files with OMZ-specific stuff"
+print
+
+# OMZ binds the keys as part of the plugin loading
+
+cat >> $plugin_basename.plugin.zsh <> README.md < Controls output processing]:options' \
+    '(-s|--style)'{-s,--style}'[Output coloring style]' \
+    '(-p|--print)'{-p,--print}'[String specifying what the output should contain: H(request headers), B(request body), h(response headers), b(response body)]' \
+    '(-v|--verbose)'{-v,--verbose}'[Print the whole request as well as the response. Shortcut for --print=HBbh.]' \
+    '(-h|--headers)'{-h,--headers}'[Print only the response headers. Shortcut for --print=h]' \
+    '(-b|--body)'{-b,--body}'[Print only the response body. Shortcut for --print=b]' \
+    '(-S|--stream)'{-S,--stream}'[Always stream the output by line, i.e., behave like `tail -f'"'"']' \
+    '(-o|--output)'{-o,--output}'[Save output to FILE]:file:_files' \
+    '(-d|--download)'{-d,--download}'[Do not print the response body to stdout. Rather, download it and store it in a file. The filename is guessed unless specified with --output filename. This action is similar to the default behaviour of wget.]' \
+    '(-c|--continue)'{-c,--continue}'[Resume an interrupted download. Note that the --output option needs to be specified as well.]' \
+    '(--session)--session[Create, or reuse and update a session. Within a session, custom headers, auth credential, as well as any cookies sent by the server persist between requests]:file:_files' \
+    '(--session-read-only)--session-read-only[Create or read a session without updating it form the request/response exchange]:file:_files' \
+    '(-a|--auth)'{-a,--auth}'[ If only the username is provided (-a username), HTTPie will prompt for the password]' \
+    '(--auth-type)--auth-type[ The authentication mechanism to be used. Defaults to "basic".]' \
+    '(--proxy)--proxy[ String mapping protocol to the URL of the proxy]' \
+    '(--follow)--follow[Set this flag if full redirects are allowed (e.g. re-POST-ing of data at new Location).]' \
+    '(--verify)--verify[ Set to "no" to skip checking the host'"'"'s SSL certificate. You can also pass the path to a CA_BUNDLE file for private certs. You can also set the REQUESTS_CA_BUNDLE  environment variable. Defaults to "yes".]' \
+    '(--timeout)--timeout[ The connection timeout of the request in seconds. The default value is 30 seconds]' \
+    '(--check-status)--check-status[By default, HTTPie exits with 0 when no network or other fatal errors occur. This flag instructs HTTPie to also check the HTTP status code and exit with an error if the status indicates one.]' \
+    '(--ignore-stdin)--ignore-stdin[Do not attempt to read stdin]' \
+    '(--help)--help[Show this help message and exit]' \
+    '(--traceback)--traceback[Prints exception traceback should one occur]' \
+    '(--debug)--debug[Prints exception traceback should one occur, and also other information that is useful for debugging HTTPie itself and for reporting bugs]' \
+    '1: :->cmds' \
+    '*: :->args' && ret=0
+}
+
+compdef _httpie_completion http
\ No newline at end of file
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/iterm2/README.md b/oh-my-zsh/.oh-my-zsh/plugins/iterm2/README.md
new file mode 100644
index 0000000..50cdebf
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/iterm2/README.md
@@ -0,0 +1,29 @@
+# iTerm2 plugin
+
+This plugin adds a few functions that are useful when using [iTerm2](https://www.iterm2.com/).
+
+To use it, add _iterm2_ to the plugins array of your zshrc file:
+```
+plugins=(... iterm2)
+```
+
+## Plugin commands
+
+* `_iterm2_command `
+  executes an arbitrary iTerm2 command via an escape code sequence.
+  See https://iterm2.com/documentation-escape-codes.html for all supported commands.
+
+* `iterm2_profile `
+  changes the current terminal window's profile (colors, fonts, settings, etc).
+  `profile-name` is the name of another iTerm2 profile. The profile name can contain spaces.
+
+* `iterm2_tab_color   `
+  changes the color of iTerm2's currently active tab.
+  `red`/`green`/`blue` are on the range 0-255.
+
+* `iterm2_tab_color_reset`
+  resets the color of iTerm2's current tab back to default.
+
+## Contributors
+
+- [Aviv Rosenberg](https://github.com/avivrosenberg)
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/iterm2/iterm2.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/iterm2/iterm2.plugin.zsh
new file mode 100644
index 0000000..e4ac72e
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/iterm2/iterm2.plugin.zsh
@@ -0,0 +1,68 @@
+#####################################################
+# iTerm2 plugin for oh-my-zsh                       #
+# Author: Aviv Rosenberg (github.com/avivrosenberg) #
+#####################################################
+
+###
+# This plugin is only relevant if the terminal is iTerm2 on OSX.
+if [[ "$OSTYPE" == darwin* ]] && [[ -n "$ITERM_SESSION_ID" ]] ; then
+
+  ###
+  # Executes an arbitrary iTerm2 command via an escape code sequce.
+  # See https://iterm2.com/documentation-escape-codes.html for all supported commands.
+  # Example: $ _iterm2_command "1337;StealFocus"
+  function _iterm2_command() {
+    local cmd="$1"
+
+    # Escape codes for wrapping commands for iTerm2.
+    local iterm2_prefix="\x1B]"
+    local iterm2_suffix="\x07"
+
+    # If we're in tmux, a special escape code must be prepended/appended so that
+    # the iTerm2 escape code is passed on into iTerm2.
+    if [[ -n $TMUX ]]; then
+      local tmux_prefix="\x1BPtmux;\x1B"
+      local tmux_suffix="\x1B\\"
+    fi
+
+    echo -n "${tmux_prefix}${iterm2_prefix}${cmd}${iterm2_suffix}${tmux_suffix}"
+  }
+
+  ###
+  # iterm2_profile(): Function for changing the current terminal window's
+  # profile (colors, fonts, settings, etc).
+  # To change the current iTerm2 profile, call this function and pass in a name
+  # of another existing iTerm2 profile (name can contain spaces).
+  function iterm2_profile() {
+    # Desired name of profile
+    local profile="$1"
+
+    # iTerm2 command for changing profile
+    local cmd="1337;SetProfile=$profile"
+
+    # send the sequence
+    _iterm2_command "${cmd}"
+
+    # update shell variable
+    ITERM_PROFILE="$profile"
+  }
+
+  ###
+  # iterm2_tab_color(): Changes the color of iTerm2's currently active tab.
+  # Usage: iterm2_tab_color   
+  #        where red/green/blue are on the range 0-255.
+  function iterm2_tab_color() {
+    _iterm2_command "6;1;bg;red;brightness;$1"
+    _iterm2_command "6;1;bg;green;brightness;$2"
+    _iterm2_command "6;1;bg;blue;brightness;$3"
+  }
+
+
+  ###
+  # iterm2_tab_color_reset(): Resets the color of iTerm2's current tab back to
+  # default.
+  function iterm2_tab_color_reset() {
+    _iterm2_command "6;1;bg;*;default"
+  }
+
+fi
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/iwhois/README.md b/oh-my-zsh/.oh-my-zsh/plugins/iwhois/README.md
new file mode 100644
index 0000000..1626b85
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/iwhois/README.md
@@ -0,0 +1,24 @@
+# iwhois
+
+Provides a whois command with a more accurate and up-to-date list of whois servers
+using CNAMES, via [whois.geek.nz](https://github.com/iwantmyname/whois.geek.nz).
+
+To use it, add iwhois to the plugins array of your zshrc file:
+```
+plugins=(... iwhois)
+```
+
+### Usage
+
+The plugin defines the function `iwhois` that takes a domain name as an argument:
+
+```
+$ iwhois github.com
+   Domain Name: GITHUB.COM
+   Registry Domain ID: 1264983250_DOMAIN_COM-VRSN
+   Registrar WHOIS Server: whois.markmonitor.com
+   Registrar URL: http://www.markmonitor.com
+   Updated Date: 2017-06-26T16:02:39Z
+   Creation Date: 2007-10-09T18:20:50Z
+   ...
+```
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/iwhois/iwhois.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/iwhois/iwhois.plugin.zsh
new file mode 100644
index 0000000..22a75ee
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/iwhois/iwhois.plugin.zsh
@@ -0,0 +1,5 @@
+function iwhois() {
+    resolver="whois.geek.nz"
+    tld=`echo ${@: -1} | awk -F "." '{print $NF}'`
+    whois -h ${tld}.${resolver} "$@" ;
+}
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/jake-node/README.md b/oh-my-zsh/.oh-my-zsh/plugins/jake-node/README.md
new file mode 100644
index 0000000..78ca8d8
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/jake-node/README.md
@@ -0,0 +1,9 @@
+# Jake
+
+This plugin provides completion for [Jake](http://jakejs.com/).
+
+To use it add jake-node to the plugins array in your zshrc file.
+
+```bash
+plugins=(... jake-node)
+```
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/jake-node/jake-node.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/jake-node/jake-node.plugin.zsh
new file mode 100644
index 0000000..3b692f8
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/jake-node/jake-node.plugin.zsh
@@ -0,0 +1,14 @@
+#---oh-my-zsh plugin : task Autocomplete for Jake tool---
+# Jake : https://github.com/mde/jake
+# Warning : Jakefile should have the right case : Jakefile or jakefile
+# Tested on : MacOSX 10.7 (Lion), Ubuntu 11.10
+# Author : Alexandre Lacheze (@al3xstrat)
+# Inspiration : https://weblog.rubyonrails.org/2006/3/9/fast-rake-task-completion-for-zsh
+
+function _jake () {
+  if [ -f Jakefile ]||[ -f jakefile ]; then
+    compadd `jake -T | cut -d " " -f 2 | sed -E "s/.\[([0-9]{1,2}(;[0-9]{1,2})?)?[m|K]//g"`
+  fi
+}
+
+compdef _jake jake
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/jenv/README.md b/oh-my-zsh/.oh-my-zsh/plugins/jenv/README.md
new file mode 100644
index 0000000..c043c62
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/jenv/README.md
@@ -0,0 +1,27 @@
+# jenv plugin
+
+[jenv](https://www.jenv.be/) is a Java version manager similiar to [rbenv](https://github.com/rbenv/rbenv)
+and [pyenv](https://github.com/yyuu/pyenv).
+
+This plugin initializes jenv and provides the `jenv_prompt_info` function to add Java
+version information to prompts.
+
+To use, add `jenv` to your plugins array in your zshrc file:
+
+```zsh
+plugins=(... jenv)
+```
+
+## Theme example
+
+You can modify your `$PROMPT` or `$RPROMPT` variables to run `jenv_prompt_info`.
+
+For example:
+```
+PROMPT="%~$ "
+RPROMPT='$(jenv_prompt_info)'
+```
+changes your prompt to:
+```
+~/java/project$ ▋                                       oracle64-1.6.0.39
+```
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/jenv/jenv.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/jenv/jenv.plugin.zsh
new file mode 100644
index 0000000..14c586b
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/jenv/jenv.plugin.zsh
@@ -0,0 +1,30 @@
+jenvdirs=("$HOME/.jenv" "/usr/local/jenv" "/opt/jenv")
+
+FOUND_JENV=0
+for jenvdir in $jenvdirs; do
+    if [[ -d "${jenvdir}/bin" ]]; then
+        FOUND_JENV=1
+        break
+    fi
+done
+
+if [[ $FOUND_JENV -eq 0 ]]; then
+    if (( $+commands[brew] )) && jenvdir="$(brew --prefix jenv)"; then
+        [[ -d "${jenvdir}/bin" ]] && FOUND_JENV=1
+    fi
+fi
+
+if [[ $FOUND_JENV -eq 1 ]]; then
+    export PATH="${jenvdir}/bin:$PATH"
+    eval "$(jenv init - zsh)"
+
+    function jenv_prompt_info() { jenv version-name 2>/dev/null }
+
+    if [[ -d "${jenvdir}/versions" ]]; then
+        export JENV_ROOT=$jenvdir
+    fi
+else
+    function jenv_prompt_info() { echo "system: $(java -version 2>&1 | cut -f 2 -d ' ')" }
+fi
+
+unset jenvdir jenvdirs FOUND_JENV
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/jhbuild/README.md b/oh-my-zsh/.oh-my-zsh/plugins/jhbuild/README.md
new file mode 100644
index 0000000..9105269
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/jhbuild/README.md
@@ -0,0 +1,4 @@
+## JHBuild
+**Maintainer:** [Miguel Vaello](https://github.com/miguxbe)
+
+This plugin adds some jhbuild aliases and increase the completion function provided by zsh.
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/jhbuild/jhbuild.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/jhbuild/jhbuild.plugin.zsh
new file mode 100644
index 0000000..fed1bc9
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/jhbuild/jhbuild.plugin.zsh
@@ -0,0 +1,28 @@
+# Aliases
+#
+alias jh='jhbuild'
+# Build
+alias jhb='jhbuild build'
+alias jhbo='jhbuild buildone'
+# Checks
+alias jhckb='jhbuild checkbranches'
+alias jhckm='jhbuild checkmodulesets'
+# Info & list
+alias jhi='jhbuild info'
+alias jhl='jhbuild list'
+# Clean
+alias jhc='jhbuild clean'
+alias jhco='jhbuild cleanone'
+# Run
+alias jhr='jhbuild run'
+# Depends
+alias jhrd='jhbuild rdepends'
+alias jhsd='jhbuild sysdeps'
+# Update
+alias jhu='jhbuild update'
+alias jhuo='jhbuild updateone'
+# Uninstall
+alias jhun='jhbuild uninstall'
+
+
+
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/jira/README.md b/oh-my-zsh/.oh-my-zsh/plugins/jira/README.md
new file mode 100644
index 0000000..a934ae6
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/jira/README.md
@@ -0,0 +1,65 @@
+#  Jira plugin  #
+
+CLI support for JIRA interaction
+
+##  Description  ##
+
+This plugin provides command line tools for interacting with Atlassian's [JIRA](https://www.atlassian.com/software/jira) bug tracking software.
+
+The interaction is all done through the web. No local installation of JIRA is necessary.
+
+In this document, "JIRA" refers to the JIRA issue tracking server, and `jira` refers to the command this plugin supplies.
+
+##  Usage  ##
+
+This plugin supplies one command, `jira`, through which all its features are exposed. Most forms of this command open a JIRA page in your web browser.
+
+```
+jira            # performs the default action
+
+jira new        # opens a new issue
+jira dashboard  # opens your JIRA dashboard
+jira reported [username]  # queries for issues reported by a user
+jira assigned [username]  # queries for issues assigned to a user
+jira branch     # opens an existing issue matching the current branch name
+jira ABC-123    # opens an existing issue
+jira ABC-123 m  # opens an existing issue for adding a comment
+```
+
+#### Debugging usage  ####
+
+These calling forms are for developers' use, and may change at any time.
+
+```
+jira dumpconfig   # displays the effective configuration
+```
+
+##  Setup  ##
+
+The URL for your JIRA instance is set by `$JIRA_URL` or a `.jira_url` file.
+
+Add a `.jira-url` file in the base of your project. You can also set `$JIRA_URL` in your `~/.zshrc` or put a `.jira-url` in your home directory. A `.jira-url` in the current directory takes precedence, so you can make per-project customizations.
+
+The same goes with `.jira-prefix` and `$JIRA_PREFIX`. These control the prefix added to all issue IDs, which differentiates projects within a JIRA instance.
+
+For example:
+
+```
+cd to/my/project
+echo "https://jira.atlassian.com" >> .jira-url
+```
+
+(Note: The current implementation only looks in the current directory for `.jira-url` and `.jira-prefix`, not up the path, so if you are in a subdirectory of your project, it will fall back to your default JIRA URL. This will probably change in the future though.)
+
+###  Variables  ###
+
+* `$JIRA_URL` - Your JIRA instance's URL
+* `$JIRA_NAME` - Your JIRA username; used as the default user for `assigned`/`reported` searches
+* `$JIRA_PREFIX` - Prefix added to issue ID arguments
+* `$JIRA_RAPID_BOARD` - Set to `true` if you use Rapid Board
+* `$JIRA_DEFAULT_ACTION` - Action to do when `jira` is called with no arguments; defaults to "new"
+
+
+### Browser ###
+
+Your default web browser, as determined by how `open_command` handles `http://` URLs, is used for interacting with the JIRA instance. If you change your system's URL handler associations, it will change the browser that `jira` uses.
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/jira/_jira b/oh-my-zsh/.oh-my-zsh/plugins/jira/_jira
new file mode 100644
index 0000000..d646142
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/jira/_jira
@@ -0,0 +1,23 @@
+#compdef jira
+#autoload
+
+local -a _1st_arguments
+_1st_arguments=(
+  'new:create a new issue'
+  'dashboard:open the dashboard'
+  'reported:search for issues reported by a user'
+  'assigned:search for issues assigned to a user'
+  'branch:open the issue named after the git branch of the current directory'
+  'dumpconfig:display effective jira configuration'
+)
+
+_arguments -C \
+  ':command:->command' \
+  '*::options:->options'
+
+case $state in
+  (command)
+    _describe -t commands "jira subcommand" _1st_arguments
+    return
+   ;;
+esac
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/jira/jira.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/jira/jira.plugin.zsh
new file mode 100644
index 0000000..052481a
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/jira/jira.plugin.zsh
@@ -0,0 +1,119 @@
+# CLI support for JIRA interaction
+#
+# See README.md for details
+
+function jira() {
+  emulate -L zsh
+  local action jira_url jira_prefix
+  if [[ -n "$1" ]]; then
+    action=$1
+  elif [[ -f .jira-default-action ]]; then
+    action=$(cat .jira-default-action)
+  elif [[ -f ~/.jira-default-action ]]; then
+    action=$(cat ~/.jira-default-action)
+  elif [[ -n "${JIRA_DEFAULT_ACTION}" ]]; then
+    action=${JIRA_DEFAULT_ACTION}
+  else
+    action="new"
+  fi
+
+  if [[ -f .jira-url ]]; then
+    jira_url=$(cat .jira-url)
+  elif [[ -f ~/.jira-url ]]; then
+    jira_url=$(cat ~/.jira-url)
+  elif [[ -n "${JIRA_URL}" ]]; then
+    jira_url=${JIRA_URL}
+  else
+    _jira_url_help
+    return 1
+  fi
+
+  if [[ -f .jira-prefix ]]; then
+    jira_prefix=$(cat .jira-prefix)
+  elif [[ -f ~/.jira-prefix ]]; then
+    jira_prefix=$(cat ~/.jira-prefix)
+  elif [[ -n "${JIRA_PREFIX}" ]]; then
+    jira_prefix=${JIRA_PREFIX}
+  else
+    jira_prefix=""
+  fi
+
+
+  if [[ $action == "new" ]]; then
+    echo "Opening new issue"
+    open_command "${jira_url}/secure/CreateIssue!default.jspa"
+  elif [[ "$action" == "assigned" || "$action" == "reported" ]]; then
+    _jira_query $@
+  elif [[ "$action" == "dashboard" ]]; then
+    echo "Opening dashboard"
+    if [[ "$JIRA_RAPID_BOARD" == "true" ]]; then
+      open_command "${jira_url}/secure/RapidBoard.jspa"
+    else
+      open_command "${jira_url}/secure/Dashboard.jspa"
+    fi
+  elif [[ "$action" == "dumpconfig" ]]; then
+    echo "JIRA_URL=$jira_url"
+    echo "JIRA_PREFIX=$jira_prefix"
+    echo "JIRA_NAME=$JIRA_NAME"
+    echo "JIRA_RAPID_BOARD=$JIRA_RAPID_BOARD"
+    echo "JIRA_DEFAULT_ACTION=$JIRA_DEFAULT_ACTION"
+  else
+    # Anything that doesn't match a special action is considered an issue name
+    # but `branch` is a special case that will parse the current git branch
+    if [[ "$action" == "branch" ]]; then
+      local issue_arg=$(git rev-parse --abbrev-ref HEAD)
+      local issue="${jira_prefix}${issue_arg}"
+    else
+      local issue_arg=$action
+      local issue="${jira_prefix}${issue_arg}"
+    fi
+    local url_fragment=''
+    if [[ "$2" == "m" ]]; then
+      url_fragment="#add-comment"
+      echo "Add comment to issue #$issue"
+    else
+      echo "Opening issue #$issue"
+    fi
+    if [[ "$JIRA_RAPID_BOARD" == "true" ]]; then
+      open_command "${jira_url}/issues/${issue}${url_fragment}"
+    else
+      open_command "${jira_url}/browse/${issue}${url_fragment}"
+    fi
+  fi
+}
+
+function _jira_url_help() {
+  cat << EOF
+error: JIRA URL is not specified anywhere.
+
+Valid options, in order of precedence:
+  .jira-url file
+  \$HOME/.jira-url file
+  \$JIRA_URL environment variable
+EOF
+}
+
+function _jira_query() {
+  emulate -L zsh
+  local verb="$1"
+  local jira_name lookup preposition query
+  if [[ "${verb}" == "reported" ]]; then
+    lookup=reporter
+    preposition=by
+  elif [[ "${verb}" == "assigned" ]]; then
+    lookup=assignee
+    preposition=to
+  else
+    echo "error: not a valid lookup: $verb" >&2
+    return 1
+  fi
+  jira_name=${2:=$JIRA_NAME}
+  if [[ -z $jira_name ]]; then
+    echo "error: JIRA_NAME not specified" >&2
+    return 1
+  fi
+
+  echo "Browsing issues ${verb} ${preposition} ${jira_name}"
+  query="${lookup}+%3D+%22${jira_name}%22+AND+resolution+%3D+unresolved+ORDER+BY+priority+DESC%2C+created+ASC"
+  open_command "${jira_url}/secure/IssueNavigator.jspa?reset=true&jqlQuery=${query}"
+}
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/jruby/jruby.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/jruby/jruby.plugin.zsh
new file mode 100644
index 0000000..bb7975b
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/jruby/jruby.plugin.zsh
@@ -0,0 +1,4 @@
+# Aliases
+alias jrspec='jruby --debug -S rspec --debug'
+alias jprofile='jruby --profile.api -S rspec'
+alias jexec='jruby -S'
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/jsontools/README.md b/oh-my-zsh/.oh-my-zsh/plugins/jsontools/README.md
new file mode 100644
index 0000000..4faf58b
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/jsontools/README.md
@@ -0,0 +1,42 @@
+# jsontools
+
+Handy command line tools for dealing with json data.
+
+## Tools
+
+- **pp_json** - pretty prints json
+- **is_json** - returns true if valid json; false otherwise
+- **urlencode_json** - returns a url encoded string for the given json 
+- **urldecode_json** - returns decoded json for the given url encoded string
+
+## Usage
+Usage is simple...just take your json data and pipe it into the appropriate jsontool.
+```sh
+ | 
+```
+## Examples
+
+##### pp_json
+
+```sh
+# curl json data and pretty print the results
+curl https://coderwall.com/bobwilliams.json | pp_json
+```
+
+##### is_json
+```sh
+# pretty print the contents of an existing json file
+less data.json | is_json
+```
+
+##### urlencode_json
+```sh
+# json data directly from the command line
+echo '{"b":2, "a":1}' | urlencode_json
+```
+
+##### urldecode_json
+```sh
+# url encoded string to decode
+echo '%7B%22b%22:2,%20%22a%22:1%7D%0A' | urldecode_json
+```
\ No newline at end of file
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/jsontools/jsontools.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/jsontools/jsontools.plugin.zsh
new file mode 100644
index 0000000..20d5eb1
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/jsontools/jsontools.plugin.zsh
@@ -0,0 +1,39 @@
+# JSON Tools
+# Adds command line aliases useful for dealing with JSON
+
+if [[ $(whence $JSONTOOLS_METHOD) = "" ]]; then
+	JSONTOOLS_METHOD=""
+fi
+
+if [[ $(whence node) != "" && ( "x$JSONTOOLS_METHOD" = "x"  || "x$JSONTOOLS_METHOD" = "xnode" ) ]]; then
+	alias pp_json='xargs -0 node -e "console.log(JSON.stringify(JSON.parse(process.argv[1]), null, 4));"'
+	alias is_json='xargs -0 node -e "try {json = JSON.parse(process.argv[1]);} catch (e) { console.log(false); json = null; } if(json) { console.log(true); }"'
+	alias urlencode_json='xargs -0 node -e "console.log(encodeURIComponent(process.argv[1]))"'
+	alias urldecode_json='xargs -0 node -e "console.log(decodeURIComponent(process.argv[1]))"'
+elif [[ $(whence python) != "" && ( "x$JSONTOOLS_METHOD" = "x" || "x$JSONTOOLS_METHOD" = "xpython" ) ]]; then
+	alias pp_json='python -mjson.tool'
+	alias is_json='python -c "
+import json, sys;
+try: 
+	json.loads(sys.stdin.read())
+except ValueError, e: 
+	print False
+else:
+	print True
+sys.exit(0)"'
+	alias urlencode_json='python -c "
+import urllib, json, sys;
+print urllib.quote_plus(sys.stdin.read())
+sys.exit(0)"'
+	alias urldecode_json='python -c "
+import urllib, json, sys;
+print urllib.unquote_plus(sys.stdin.read())
+sys.exit(0)"'
+elif [[ $(whence ruby) != "" && ( "x$JSONTOOLS_METHOD" = "x" || "x$JSONTOOLS_METHOD" = "xruby" ) ]]; then
+	alias pp_json='ruby -e "require \"json\"; require \"yaml\"; puts JSON.parse(STDIN.read).to_yaml"'
+	alias is_json='ruby -e "require \"json\"; begin; JSON.parse(STDIN.read); puts true; rescue Exception => e; puts false; end"'
+	alias urlencode_json='ruby -e "require \"uri\"; puts URI.escape(STDIN.read)"'
+	alias urldecode_json='ruby -e "require \"uri\"; puts URI.unescape(STDIN.read)"'
+fi
+
+unset JSONTOOLS_METHOD
\ No newline at end of file
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/jump/README.md b/oh-my-zsh/.oh-my-zsh/plugins/jump/README.md
new file mode 100644
index 0000000..ed64152
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/jump/README.md
@@ -0,0 +1,19 @@
+# Jump plugin
+
+This plugin allows to easily jump around the file system by manually adding marks.
+Those marks are stored as symbolic links in the directory `$MARKPATH` (default `$HOME/.marks`)
+
+To use it, add `jump` to the plugins array in your zshrc file:
+
+```zsh
+plugins=(... jump)
+```
+
+## Commands
+
+| Command              | Description                                                                                     |
+|----------------------|-------------------------------------------------------------------------------------------------|
+| `jump `   | Jump to the given mark                                                                          |
+| `mark [mark-name]`   | Create a mark with the given name or with the name of the current directory if none is provided |
+| `unmark ` | Remove the given mark                                                                           |
+| `marks`              | List the existing marks and the directories they point to                                       |
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/jump/jump.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/jump/jump.plugin.zsh
new file mode 100644
index 0000000..a19a860
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/jump/jump.plugin.zsh
@@ -0,0 +1,57 @@
+# Easily jump around the file system by manually adding marks
+# marks are stored as symbolic links in the directory $MARKPATH (default $HOME/.marks)
+#
+# jump FOO: jump to a mark named FOO
+# mark FOO: create a mark named FOO
+# unmark FOO: delete a mark
+# marks: lists all marks
+#
+export MARKPATH=$HOME/.marks
+
+jump() {
+	cd -P "$MARKPATH/$1" 2>/dev/null || {echo "No such mark: $1"; return 1}
+}
+
+mark() {
+	if [[ ( $# == 0 ) || ( "$1" == "." ) ]]; then
+		MARK=$(basename "$PWD")
+	else
+		MARK="$1"
+	fi
+	if read -q \?"Mark $PWD as ${MARK}? (y/n) "; then
+		mkdir -p "$MARKPATH"; ln -sfn "$PWD" "$MARKPATH/$MARK"
+	fi
+}
+
+unmark() {
+	rm -i "$MARKPATH/$1"
+}
+
+marks() {
+	for link in $MARKPATH/*(@); do
+		local markname="$fg[cyan]${link:t}$reset_color"
+		local markpath="$fg[blue]$(readlink $link)$reset_color"
+		printf "%s\t" $markname
+		printf -- "-> %s \t\n" $markpath
+	done
+}
+
+_completemarks() {
+	if [[ $(ls "${MARKPATH}" | wc -l) -gt 1 ]]; then
+		reply=($(ls $MARKPATH/**/*(-) | grep : | sed -E 's/(.*)\/([_a-zA-Z0-9\.\-]*):$/\2/g'))
+	else
+		if readlink -e "${MARKPATH}"/* &>/dev/null; then
+			reply=($(ls "${MARKPATH}"))
+		fi
+	fi
+}
+compctl -K _completemarks jump
+compctl -K _completemarks unmark
+
+_mark_expansion() {
+	setopt extendedglob
+	autoload -U modify-current-argument
+	modify-current-argument '$(readlink "$MARKPATH/$ARG")'
+}
+zle -N _mark_expansion
+bindkey "^g" _mark_expansion
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/kate/README.md b/oh-my-zsh/.oh-my-zsh/plugins/kate/README.md
new file mode 100644
index 0000000..aa2eaa3
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/kate/README.md
@@ -0,0 +1,20 @@
+# Kate plugin
+
+This plugin adds aliases for the [Kate editor](https://kate-editor.org).
+
+To use it, add kate to the plugins array of your zshrc file:
+```
+plugins=(... kate)
+```
+
+## Aliases
+
+| Alias | Command                | Description         |
+|-------|------------------------|---------------------|
+| kate  | `kate >/dev/null 2>&1` | Start kate silently |
+
+## Functions
+
+| Function   | Description                              |
+|------------|------------------------------------------|
+| `kt ` | Change to directory and start kate there |
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/kate/kate.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/kate/kate.plugin.zsh
new file mode 100644
index 0000000..eb16522
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/kate/kate.plugin.zsh
@@ -0,0 +1,9 @@
+
+# Kate
+# Start kate always silent
+alias kate='kate >/dev/null 2>&1'
+
+function kt () {
+  cd $1
+  kate $1
+}
\ No newline at end of file
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/kitchen/README.md b/oh-my-zsh/.oh-my-zsh/plugins/kitchen/README.md
new file mode 100644
index 0000000..89a6d70
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/kitchen/README.md
@@ -0,0 +1,9 @@
+# kitchen plugin
+
+This plugin adds completion support for the [Test Kitchen](https://kitchen.ci).
+
+To use it, add `kitchen` to the plugins array in your zshrc file:
+
+```zsh
+plugins=(... kitchen)
+```
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/kitchen/_kitchen b/oh-my-zsh/.oh-my-zsh/plugins/kitchen/_kitchen
new file mode 100644
index 0000000..29a3125
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/kitchen/_kitchen
@@ -0,0 +1,85 @@
+#compdef kitchen
+# ------------------------------------------------------------------------------
+# Copyright (c) 2014 Github zsh-users - https://github.com/zsh-users
+# All rights reserved.
+#
+# Redistribution and use in source and binary forms, with or without
+# modification, are permitted provided that the following conditions are met:
+#     * Redistributions of source code must retain the above copyright
+#       notice, this list of conditions and the following disclaimer.
+#     * Redistributions in binary form must reproduce the above copyright
+#       notice, this list of conditions and the following disclaimer in the
+#       documentation and/or other materials provided with the distribution.
+#     * Neither the name of the zsh-users nor the
+#       names of its contributors may be used to endorse or promote products
+#       derived from this software without specific prior written permission.
+#
+# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
+# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+# DISCLAIMED. IN NO EVENT SHALL ZSH-USERS BE LIABLE FOR ANY
+# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
+# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+# ------------------------------------------------------------------------------
+# Description
+# -----------
+#
+#  Completion script for Test Kitchen (https://kitchen.ci/).
+#
+# ------------------------------------------------------------------------------
+# Authors
+# -------
+#
+#  * Peter Eisentraut (https://github.com/petere)
+#
+# ------------------------------------------------------------------------------
+
+
+_kitchen() {
+  local curcontext="$curcontext" state line
+  typeset -A opt_args
+
+  _arguments '1: :->cmds'\
+             '2: :->args'
+
+  case $state in
+    cmds)
+      _kitchen_commands
+      ;;
+    args)
+      case $line[1] in
+        converge|create|destroy|diagnose|list|setup|test|verify)
+          compadd 'all'
+          _kitchen_instances
+          ;;
+        login)
+          _kitchen_instances
+          ;;
+      esac
+      ;;
+  esac
+}
+
+_kitchen_commands() {
+  local commands
+
+  commands=("${(@f)$(_call_program commands $service help | sed -n 's/^  kitchen \([[:alpha:]]*\) [ [].*# \(.*\)$/\1:\2/p')}")
+  _describe -t commands 'kitchen commands' commands
+}
+
+_kitchen_instances() {
+  if [[ $_kitchen_instances_cache_dir != $PWD ]]; then
+    unset _kitchen_instances_cache
+  fi
+  if [[ ${+_kitchen_instances_cache} -eq 0 ]]; then
+    _kitchen_instances_cache=(${(f)"$(_call_program instances $service list -b 2>/dev/null)"})
+    _kitchen_instances_cache_dir=$PWD
+  fi
+  _wanted instances expl 'instance' compadd -a _kitchen_instances_cache
+}
+
+_kitchen "$@"
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/knife/_knife b/oh-my-zsh/.oh-my-zsh/plugins/knife/_knife
new file mode 100644
index 0000000..0d61ff1
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/knife/_knife
@@ -0,0 +1,241 @@
+#compdef knife
+
+# You can override the path to knife.rb and your cookbooks by setting
+# KNIFE_CONF_PATH=/path/to/my/.chef/knife.rb
+# KNIFE_COOKBOOK_PATH=/path/to/my/chef/cookbooks
+# If you want your local cookbooks path to be calculated relative to where you are then 
+# set the below option
+# KNIFE_RELATIVE_PATH=true 
+# Read around where these are used for more detail.
+
+# These flags should be available everywhere according to man knife
+knife_general_flags=( --help --server-url --key --config --editor --format --log_level --logfile --no-editor --user --print-after --version --yes )
+
+# knife has a very special syntax, some example calls are:
+# knife status
+# knife cookbook list
+# knife role show ROLENAME
+# knife data bag show DATABAGNAME
+# knife role show ROLENAME --attribute ATTRIBUTENAME
+# knife cookbook show COOKBOOKNAME COOKBOOKVERSION recipes
+
+# The -Q switch in compadd allow for completions of things like "data bag" without having to go through two rounds of completion and avoids zsh inserting a \ for escaping spaces
+_knife() {
+  local curcontext="$curcontext" state line
+  typeset -A opt_args
+  cloudproviders=(bluebox ec2 rackspace slicehost terremark)
+  _arguments \
+    '1: :->knifecmd'\
+    '2: :->knifesubcmd'\
+    '3: :->knifesubcmd2' \
+    '4: :->knifesubcmd3' \
+    '5: :->knifesubcmd4' \
+    '6: :->knifesubcmd5'
+  
+  case $state in
+  knifecmd)
+    compadd -Q "$@" bootstrap client configure cookbook "cookbook site" "data bag" diff exec environment index node recipe role search ssh status upload vault windows $cloudproviders
+  ;;
+  knifesubcmd)
+    case $words[2] in
+    (bluebox|ec2|rackspace|slicehost|terremark)
+      compadd "$@" server images
+    ;;
+    client)
+      compadd -Q "$@" "bulk delete" list create show delete edit reregister
+    ;;
+    configure)
+      compadd "$@" client
+    ;;
+    cookbook)
+      compadd -Q "$@" test list create download delete "metadata from" show "bulk delete" metadata upload
+    ;;
+    diff)
+      _arguments '*:file or directory:_files -g "*"'
+    ;;
+    environment)
+      compadd -Q "$@" list create delete edit show "from file"
+    ;;
+    node)
+     compadd -Q "$@" "from file" create show edit delete list run_list "bulk delete"
+    ;;
+    recipe)
+     compadd "$@" list
+    ;;
+    role)
+      compadd -Q "$@" "bulk delete" create delete edit "from file" list show
+    ;; 
+    upload)
+     _arguments '*:file or directory:_files -g "*"'
+    ;;
+    vault)
+      compadd -Q "$@" create decrypt delete edit remove "rotate all keys" "rotate keys" show update
+    ;;
+    windows)
+      compadd "$@" bootstrap
+    ;;
+    *)
+    _arguments '2:Subsubcommands:($(_knife_options1))'
+    esac
+   ;;
+   knifesubcmd2)
+    case $words[3] in
+     server)
+      compadd "$@" list create delete
+    ;;
+     images)
+      compadd "$@" list
+    ;;
+     site)
+      compadd "$@" vendor show share search download list unshare
+    ;;
+     (show|delete|edit)
+     _arguments '3:Subsubcommands:($(_chef_$words[2]s_remote))'
+    ;;
+    (upload|test)
+     _arguments '3:Subsubcommands:($(_chef_$words[2]s_local) --all)'
+    ;;
+    list)
+     compadd -a "$@" knife_general_flags
+    ;;
+    bag)
+      compadd -Q "$@" show edit list "from file" create delete
+    ;;
+    *)
+      _arguments '3:Subsubcommands:($(_knife_options2))'
+    esac
+   ;;
+   knifesubcmd3)
+     case $words[3] in
+      show)
+       case $words[2] in
+       cookbook)
+          versioncomp=1
+          _arguments '4:Cookbookversions:($(_cookbook_versions) latest)'
+       ;;
+       (node|client|role)
+         compadd "$@" --attribute
+       esac
+     esac
+     case $words[4] in
+     (show|edit)
+     _arguments '4:Subsubsubcommands:($(_chef_$words[2]_$words[3]s_remote))'
+    ;;
+     file)
+      case $words[2] in
+      environment)
+        _arguments '*:files:_path_files -g "*.(rb|json)" -W "$(_chef_root)/environments"'
+      ;;
+      node)
+        _arguments '*:files:_path_files -g "*.(rb|json)" -W "$(_chef_root)/nodes"'
+      ;;
+      role)
+        _arguments '*:files:_path_files -g "*.(rb|json)" -W "$(_chef_root)/roles"'
+      ;;
+      *)
+        _arguments '*:Subsubcommands:($(_knife_options3))'
+      esac 
+    ;;
+      list)
+     compadd -a "$@" knife_general_flags
+    ;;
+        *)
+       _arguments '*:Subsubcommands:($(_knife_options3))'
+    esac
+    ;;
+    knifesubcmd4)
+      if (( versioncomp > 0 )); then
+        compadd "$@" attributes definitions files libraries providers recipes resources templates
+      else
+      case $words[5] in 
+        file)
+          _arguments '*:directory:_path_files -/ -W "$(_chef_root)/data_bags" -qS \ '
+        ;;
+        *) _arguments '*:Subsubcommands:($(_knife_options2))'
+      esac
+      fi
+    ;; 
+    knifesubcmd5) 
+      case $words[5] in 
+        file) 
+          _arguments '*:files:_path_files -g "*.json" -W "$(_chef_root)/data_bags/$words[6]"'
+        ;;
+        *) 
+          _arguments '*:Subsubcommands:($(_knife_options3))'
+      esac
+   esac
+}
+
+# Helper functions to provide the argument completion for several depths of commands
+_knife_options1() {
+ ( for line in $( knife $words[2] --help | grep -v "^knife" ); do echo $line | grep "\-\-"; done )
+}
+
+_knife_options2() {
+ ( for line in $( knife $words[2] $words[3] --help | grep -v "^knife" ); do echo $line | grep "\-\-"; done )
+}
+
+_knife_options3() {
+ ( for line in $( knife $words[2] $words[3] $words[4] --help | grep -v "^knife" ); do echo $line | grep "\-\-"; done )
+}
+
+# The chef_x_remote functions use knife to get a list of objects of type x on the server
+_chef_roles_remote() {
+ (knife role list --format json | grep \" | awk '{print $1}' | awk -F"," '{print $1}' | awk -F"\"" '{print $2}')
+}
+
+_chef_clients_remote() {
+ (knife client list --format json | grep \" | awk '{print $1}' | awk -F"," '{print $1}' | awk -F"\"" '{print $2}')
+}
+
+_chef_nodes_remote() {
+ (knife node list --format json | grep \" | awk '{print $1}' | awk -F"," '{print $1}' | awk -F"\"" '{print $2}')
+}
+
+_chef_cookbooks_remote() {
+ (knife cookbook list --format json | grep \" | awk '{print $1}' | awk -F"," '{print $1}' | awk -F"\"" '{print $2}')
+}
+
+_chef_sitecookbooks_remote() {
+ (knife cookbook site list --format json | grep \" | awk '{print $1}' | awk -F"," '{print $1}' | awk -F"\"" '{print $2}')
+}
+
+_chef_data_bags_remote() {
+ (knife data bag list --format json | grep \" | awk '{print $1}' | awk -F"," '{print $1}' | awk -F"\"" '{print $2}')
+}
+
+_chef_environments_remote() {
+  (knife environment list | awk '{print $1}')
+}
+
+# The chef_x_local functions use the knife config to find the paths of relevant objects x to be uploaded to the server
+_chef_cookbooks_local() {
+  if [ $KNIFE_RELATIVE_PATH ]; then 
+    local cookbook_path="$(_chef_root)/cookbooks"
+  else 
+    local knife_rb=${KNIFE_CONF_PATH:-${HOME}/.chef/knife.rb}
+    if [ -f ./.chef/knife.rb ]; then
+      knife_rb="./.chef/knife.rb"
+    fi
+    local cookbook_path=${KNIFE_COOKBOOK_PATH:-$(grep cookbook_path $knife_rb | awk 'BEGIN {FS = "[" }; {print $2}' | sed 's/\,//g' | sed "s/'//g" | sed 's/\(.*\)]/\1/' )}
+  fi
+  (for i in $cookbook_path; do ls $i; done)
+}
+
+# This function extracts the available cookbook versions on the chef server
+_cookbook_versions() {
+  (knife cookbook show $words[4] | grep -v $words[4] | grep -v -E '\]|\[|\{|\}' | sed 's/ //g' | sed 's/"//g')
+}
+
+# Searches up from current directory to find the closest folder that has a .chef folder 
+# Useful for the knife upload/from file commands 
+_chef_root () {
+  directory="$PWD"
+  while [ $directory != '/' ]
+  do
+    test -e "$directory/.chef" && echo "$directory" && return
+    directory="${directory:h}"
+  done
+}
+
+_knife "$@"
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/knife_ssh/knife_ssh.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/knife_ssh/knife_ssh.plugin.zsh
new file mode 100644
index 0000000..7fdd42a
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/knife_ssh/knife_ssh.plugin.zsh
@@ -0,0 +1,18 @@
+function knife_ssh() {
+  grep -q $1 ~/.knife_comp~ 2> /dev/null || rm -f ~/.knife_comp~;
+  ssh $(knife node show $1 | awk '/IP:/{print $2}')
+}
+
+_knife_ssh() {
+  if hash knife 2>/dev/null; then
+    if [[ ! -f ~/.knife_comp~ ]]; then
+      echo "\nGenerating ~/.knife_comp~..." >/dev/stderr
+      knife node list > ~/.knife_comp~
+    fi
+    compadd $(<~/.knife_comp~)
+  else
+    echo "Could not find knife" > /dev/stderr;
+  fi
+}
+
+compdef _knife_ssh knife_ssh
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/kops/README.md b/oh-my-zsh/.oh-my-zsh/plugins/kops/README.md
new file mode 100644
index 0000000..5d9b5f8
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/kops/README.md
@@ -0,0 +1,12 @@
+# kops
+
+This plugin provides completion for [kops](https://github.com/kubernetes/kops) (Kubernetes Operations),
+the command line interface to get a production grade Kubernetes cluster up and running.
+
+To use it, add `kops` to the plugins array in your zshrc file.
+
+```
+plugins=(... kops)
+```
+
+**Author:** [@nmrony](https://github.com/nmrony)
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/kops/kops.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/kops/kops.plugin.zsh
new file mode 100644
index 0000000..0c38ce2
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/kops/kops.plugin.zsh
@@ -0,0 +1,3 @@
+if [ $commands[kops] ]; then
+  source <(kops completion zsh)
+fi
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/kube-ps1/README.md b/oh-my-zsh/.oh-my-zsh/plugins/kube-ps1/README.md
new file mode 100644
index 0000000..fcb73cd
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/kube-ps1/README.md
@@ -0,0 +1,81 @@
+# Kubernetes prompt for zsh
+
+A Kubernetes zsh prompt that displays the current cluster cluster
+and the namespace.
+
+Inspired by several tools used to simplify usage of kubectl
+
+NOTE: If you are not using zsh, check out [kube-ps1](https://github.com/jonmosco/kube-ps1)
+designed for bash as well as zsh.
+
+## Requirements
+
+The default prompt assumes you have the kubectl command line utility installed.  It
+can be obtained here:
+
+[Install and Set up kubectl](https://kubernetes.io/docs/tasks/tools/install-kubectl/)
+
+If using this with OpenShift, the oc tool needs installed.  It can be obtained from here:
+
+[OC Client Tools](https://www.openshift.org/download.html)
+
+## Helper utilities
+
+There are several great tools that make using kubectl very enjoyable.
+
+[kubectx and kubenx](https://github.com/ahmetb/kubectx) are great for
+fast switching between clusters and namespaces.
+
+## Prompt Structure
+
+The prompt layout is:
+
+```
+(|:)
+```
+
+## Enabling
+
+In order to use kube-ps1 with Oh My Zsh, you'll need to enable them in the
+.zshrc file. You'll find the zshrc file in your $HOME directory. Open it with
+your favorite text editor and you'll see a spot to list all the plugins you
+want to load.
+
+```shell
+vim $HOME/.zshrc
+```
+
+Add kube-ps1 to the list of enabled plugins:
+
+```shell
+plugins=(
+  git
+  kube-ps1
+)
+```
+
+## Colors
+
+Blue was used as the prefix to match the Kubernetes color as closely as
+possible. Red was chosen as the cluster name to stand out, and cyan
+for the namespace.  These can of course be changed.
+
+## Customization
+
+The default settings can be overridden in ~/.zshrc
+
+| Variable | Default | Meaning |
+| :------- | :-----: | ------- |
+| `KUBE_PS1_BINARY` | `kubectl` | Default Kubernetes binary |
+| `KUBE_PS1_PREFIX` | `(` | Prompt opening character  |
+| `KUBE_PS1_SYMBOL_ENABLE` | `true ` | Display the prompt Symbol. If set to `false`, this will also disable `KUBE_PS1_SEPARATOR` |
+| `KUBE_PS1_SYMBOL_DEFAULT` | `⎈ ` | Default prompt symbol. Unicode `\u2388` |
+| `KUBE_PS1_SYMBOL_USE_IMG` | `false` | ☸️  ,  Unicode `\u2638` as the prompt symbol |
+| `KUBE_PS1_NS_ENABLE` | `true` | Display the namespace. If set to `false`, this will also disable `KUBE_PS1_DIVIDER` |
+| `KUBE_PS1_SEPERATOR` | `\|` | Separator between symbol and cluster name |
+| `KUBE_PS1_DIVIDER` | `:` | Separator between cluster and namespace |
+| `KUBE_PS1_SUFFIX` | `)` | Prompt closing character |
+
+## Contributors
+
+Jared Yanovich
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/kube-ps1/kube-ps1.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/kube-ps1/kube-ps1.plugin.zsh
new file mode 100644
index 0000000..df7277a
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/kube-ps1/kube-ps1.plugin.zsh
@@ -0,0 +1,147 @@
+#!/bin/zsh
+
+# Kubernetes prompt helper for bash/zsh
+# ported to oh-my-zsh
+# Displays current context and namespace
+
+# Copyright 2018 Jon Mosco
+#
+#  Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#     https://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+# Debug
+[[ -n $DEBUG ]] && set -x
+
+setopt PROMPT_SUBST
+autoload -U add-zsh-hook
+add-zsh-hook precmd _kube_ps1_update_cache
+zmodload zsh/stat
+zmodload zsh/datetime
+
+# Default values for the prompt
+# Override these values in ~/.zshrc
+KUBE_PS1_BINARY="${KUBE_PS1_BINARY:-kubectl}"
+KUBE_PS1_SYMBOL_ENABLE="${KUBE_PS1_SYMBOL_ENABLE:-true}"
+KUBE_PS1_SYMBOL_DEFAULT="${KUBE_PS1_SYMBOL_DEFAULT:-\u2388 }"
+KUBE_PS1_SYMBOL_USE_IMG="${KUBE_PS1_SYMBOL_USE_IMG:-false}"
+KUBE_PS1_NS_ENABLE="${KUBE_PS1_NS_ENABLE:-true}"
+KUBE_PS1_SEPARATOR="${KUBE_PS1_SEPARATOR-|}"
+KUBE_PS1_DIVIDER="${KUBE_PS1_DIVIDER-:}"
+KUBE_PS1_PREFIX="${KUBE_PS1_PREFIX-(}"
+KUBE_PS1_SUFFIX="${KUBE_PS1_SUFFIX-)}"
+KUBE_PS1_LAST_TIME=0
+
+_kube_ps1_binary_check() {
+  command -v "$1" >/dev/null
+}
+
+_kube_ps1_symbol() {
+  [[ "${KUBE_PS1_SYMBOL_ENABLE}" == false ]] && return
+
+  KUBE_PS1_SYMBOL="${KUBE_PS1_SYMBOL_DEFAULT}"
+  KUBE_PS1_SYMBOL_IMG="\u2638 "
+
+  if [[ "${KUBE_PS1_SYMBOL_USE_IMG}" == true ]]; then
+    KUBE_PS1_SYMBOL="${KUBE_PS1_SYMBOL_IMG}"
+  fi
+
+  echo "${KUBE_PS1_SYMBOL}"
+}
+
+_kube_ps1_split() {
+  type setopt >/dev/null 2>&1 && setopt SH_WORD_SPLIT
+  local IFS=$1
+  echo $2
+}
+
+_kube_ps1_file_newer_than() {
+  local mtime
+  local file=$1
+  local check_time=$2
+
+  zmodload -e "zsh/stat"
+  if [[ "$?" -eq 0 ]]; then
+    mtime=$(stat +mtime "${file}")
+  elif stat -c "%s" /dev/null &> /dev/null; then
+    # GNU stat
+    mtime=$(stat -c %Y "${file}")
+  else
+    # BSD stat
+    mtime=$(stat -f %m "$file")
+  fi
+
+  [[ "${mtime}" -gt "${check_time}" ]]
+}
+
+_kube_ps1_update_cache() {
+  KUBECONFIG="${KUBECONFIG:=$HOME/.kube/config}"
+  if ! _kube_ps1_binary_check "${KUBE_PS1_BINARY}"; then
+    # No ability to fetch context/namespace; display N/A.
+    KUBE_PS1_CONTEXT="BINARY-N/A"
+    KUBE_PS1_NAMESPACE="N/A"
+    return
+  fi
+
+  if [[ "${KUBECONFIG}" != "${KUBE_PS1_KUBECONFIG_CACHE}" ]]; then
+    # User changed KUBECONFIG; unconditionally refetch.
+    KUBE_PS1_KUBECONFIG_CACHE=${KUBECONFIG}
+    _kube_ps1_get_context_ns
+    return
+  fi
+
+  # kubectl will read the environment variable $KUBECONFIG
+  # otherwise set it to ~/.kube/config
+  local conf
+  for conf in $(_kube_ps1_split : "${KUBECONFIG:-${HOME}/.kube/config}"); do
+    [[ -r "${conf}" ]] || continue
+    if _kube_ps1_file_newer_than "${conf}" "${KUBE_PS1_LAST_TIME}"; then
+      _kube_ps1_get_context_ns
+      return
+    fi
+  done
+}
+
+_kube_ps1_get_context_ns() {
+
+  # Set the command time
+  KUBE_PS1_LAST_TIME=$EPOCHSECONDS
+
+  KUBE_PS1_CONTEXT="$(${KUBE_PS1_BINARY} config current-context 2>/dev/null)"
+  if [[ -z "${KUBE_PS1_CONTEXT}" ]]; then
+    KUBE_PS1_CONTEXT="N/A"
+    KUBE_PS1_NAMESPACE="N/A"
+    return
+  elif [[ "${KUBE_PS1_NS_ENABLE}" == true ]]; then
+    KUBE_PS1_NAMESPACE="$(${KUBE_PS1_BINARY} config view --minify --output 'jsonpath={..namespace}' 2>/dev/null)"
+    # Set namespace to 'default' if it is not defined
+    KUBE_PS1_NAMESPACE="${KUBE_PS1_NAMESPACE:-default}"
+  fi
+}
+
+# Build our prompt
+kube_ps1 () {
+  local reset_color="%f"
+  local blue="%F{blue}"
+  local red="%F{red}"
+  local cyan="%F{cyan}"
+
+  KUBE_PS1="${reset_color}$KUBE_PS1_PREFIX"
+  KUBE_PS1+="${blue}$(_kube_ps1_symbol)"
+  KUBE_PS1+="${reset_color}$KUBE_PS1_SEPERATOR"
+  KUBE_PS1+="${red}$KUBE_PS1_CONTEXT${reset_color}"
+  KUBE_PS1+="$KUBE_PS1_DIVIDER"
+  KUBE_PS1+="${cyan}$KUBE_PS1_NAMESPACE${reset_color}"
+  KUBE_PS1+="$KUBE_PS1_SUFFIX"
+
+  echo "${KUBE_PS1}"
+
+}
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/kubectl/README.md b/oh-my-zsh/.oh-my-zsh/plugins/kubectl/README.md
new file mode 100644
index 0000000..a93a933
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/kubectl/README.md
@@ -0,0 +1,88 @@
+# Kubectl plugin
+
+This plugin adds completion for the [Kubernetes cluster manager](https://kubernetes.io/docs/reference/kubectl/kubectl/),
+as well as some aliases for common kubectl commands.
+
+To use it, add `kubectl` to the plugins array in your zshrc file:
+
+```zsh
+plugins=(... kubectl)
+```
+
+## Aliases
+
+| Alias   | Command                             | Description                                                                                      |
+|:--------|:------------------------------------|:-------------------------------------------------------------------------------------------------|
+| k       | `kubectl`                           | The kubectl command                                                                              |
+| kaf     | `kubectl apply -f`                  | Apply a YML file                                                                                 |
+| keti    | `kubectl exec -ti`                  | Drop into an interactive terminal on a container                                                 |
+|         |                                     | **Manage configuration quickly to switch contexts between local, dev and staging**               |
+| kcuc    | `kubectl config use-context`        | Set the current-context in a kubeconfig file                                                     |
+| kcsc    | `kubectl config set-context`        | Set a context entry in kubeconfig                                                                |
+| kcdc    | `kubectl config delete-context`     | Delete the specified context from the kubeconfig                                                 |
+| kccc    | `kubectl config current-context`    | Display the current-context                                                                      |
+|         |                                     | **General aliases**                                                                              |
+| kdel    | `kubectl delete`                    | Delete resources by filenames, stdin, resources and names, or by resources and label selector    |
+| kdelf   | `kubectl delete -f`                 | Delete a pod using the type and name specified in -f argument                                    |
+|         |                                     | **Pod management**                                                                               |
+| kgp     | `kubectl get pods`                  | List all pods in ps output format                                                                |
+| kgpw    | `kgp --watch`                       | After listing/getting the requested object, watch for changes                                    |
+| kgpwide | `kgp -o wide`                       | Output in plain-text format with any additional information. For pods, the node name is included |
+| kep     | `kubectl edit pods`                 | Edit pods from the default editor                                                                |
+| kdp     | `kubectl describe pods`             | Describe all pods                                                                                |
+| kdelp   | `kubectl delete pods`               | Delete all pods matching passed arguments                                                        |
+| kgpl    | `kgp -l`                            | Get pod by label. Example: `kgpl "app=myapp" -n myns`                                            |
+|         |                                     | **Service management**                                                                           |
+| kgs     | `kubectl get svc`                   | List all services in ps output format                                                            |
+| kgsw    | `kgs --watch`                       | After listing all services, watch for changes                                                    |
+| kgswide | `kgs -o wide`                       | After listing all services, output in plain-text format with any additional information          |
+| kes     | `kubectl edit svc`                  | Edit services(svc) from the default editor                                                       |
+| kds     | `kubectl describe svc`              | Describe all services in detail                                                                  |
+| kdels   | `kubectl delete svc`                | Delete all services matching passed argument                                                     |
+|         |                                     | **Ingress management**                                                                           |
+| kgi     | `kubectl get ingress`               | List ingress resources in ps output format                                                       |
+| kei     | `kubectl edit ingress`              | Edit ingress resource from the default editor                                                    |
+| kdi     | `kubectl describe ingress`          | Describe ingress resource in detail                                                              |
+| kdeli   | `kubectl delete ingress`            | Delete ingress resources matching passed argument                                                |
+|         |                                     | **Namespace management**                                                                         |
+| kgns    | `kubectl get namespaces`            | List the current namespaces in a cluster                                                         |
+| kens    | `kubectl edit namespace`            | Edit namespace resource from the default editor                                                  |
+| kdns    | `kubectl describe namespace`        | Describe namespace resource in detail                                                            |
+| kdelns  | `kubectl delete namespace`          | Delete the namespace. WARNING! This deletes everything in the namespace                          |
+|         |                                     | **ConfigMap management**                                                                         |
+| kgcm    | `kubectl get configmaps`            | List the configmaps in ps output format                                                          |
+| kecm    | `kubectl edit configmap`            | Edit configmap resource from the default editor                                                  |
+| kdcm    | `kubectl describe configmap`        | Describe configmap resource in detail                                                            |
+| kdelcm  | `kubectl delete configmap`          | Delete the configmap                                                                             |
+|         |                                     | **Secret management**                                                                            |
+| kgsec   | `kubectl get secret`                | Get secret for decoding                                                                          |
+| kdsec   | `kubectl describe secret`           | Describe secret resource in detail                                                               |
+| kdelsec | `kubectl delete secret`             | Delete the secret                                                                                |
+|         |                                     | **Deployment management**                                                                        |
+| kgd     | `kubectl get deployment`            | Get the deployment                                                                               |
+| kgdw    | `kgd --watch`                       | After getting the deployment, watch for changes                                                  |
+| kgdwide | `kgd -o wide`                       | After getting the deployment, output in plain-text format with any additional information        |
+| ked     | `kubectl edit deployment`           | Edit deployment resource from the default editor                                                 |
+| kdd     | `kubectl describe deployment`       | Describe deployment resource in detail                                                           |
+| kdeld   | `kubectl delete deployment`         | Delete the deployment                                                                            |
+| ksd     | `kubectl scale deployment`          | Scale a deployment                                                                               |
+| krsd    | `kubectl rollout status deployment` | Check the rollout status of a deployment                                                         |
+|         |                                     | **Rollout management**                                                                           |
+| kgrs    | `kubectl get rs`                    | To see the ReplicaSet `rs` created by the deployment                                             |
+| krh     | `kubectl rollout history`           | Check the revisions of this deployment                                                           |
+| kru     | `kubectl rollout undo`              | Rollback to the previous revision                                                                |
+|         |                                     | **Port forwarding**                                                                              |
+| kpf     | `kubectl port-forward`              | Forward one or more local ports to a pod                                                         |
+|         |                                     | **Tools for accessing all information**                                                          |
+| kga     | `kubectl get all`                   | List all resources in ps format                                                                  |
+| kgaa    | `kubectl get all --all-namespaces`  | List the requested object(s) across all namespaces                                               |
+|         |                                     | **Logs**                                                                                         |
+| kl      | `kubectl logs`                      | Print the logs for a container or resource                                                       |
+| klf     | `kubectl logs -f`                   | Stream the logs for a container or resource (follow)                                             |
+|         |                                     | **File copy**                                                                                    |
+| kcp     | `kubectl cp`                        | Copy files and directories to and from containers                                                |
+|         |                                     | **Node management**                                                                              |
+| kgno    | `kubectl get nodes`                 | List the nodes in ps output format                                                               |
+| keno    | `kubectl edit node`                 | Edit nodes resource from the default editor                                                      |
+| kdno    | `kubectl describe node`             | Describe node resource in detail                                                                 |
+| kdelno  | `kubectl delete node`               | Delete the node                                                                                  |
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/kubectl/kubectl.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/kubectl/kubectl.plugin.zsh
new file mode 100644
index 0000000..4cfe3f4
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/kubectl/kubectl.plugin.zsh
@@ -0,0 +1,107 @@
+if (( $+commands[kubectl] )); then
+    __KUBECTL_COMPLETION_FILE="${ZSH_CACHE_DIR}/kubectl_completion"
+
+    if [[ ! -f $__KUBECTL_COMPLETION_FILE ]]; then
+        kubectl completion zsh >! $__KUBECTL_COMPLETION_FILE
+    fi
+
+    [[ -f $__KUBECTL_COMPLETION_FILE ]] && source $__KUBECTL_COMPLETION_FILE
+
+    unset __KUBECTL_COMPLETION_FILE
+fi
+
+# This command is used a LOT both below and in daily life
+alias k=kubectl
+
+# Apply a YML file
+alias kaf='kubectl apply -f'
+
+# Drop into an interactive terminal on a container
+alias keti='kubectl exec -ti'
+
+# Manage configuration quickly to switch contexts between local, dev ad staging.
+alias kcuc='kubectl config use-context'
+alias kcsc='kubectl config set-context'
+alias kcdc='kubectl config delete-context'
+alias kccc='kubectl config current-context'
+
+# General aliases
+alias kdel='kubectl delete'
+alias kdelf='kubectl delete -f'
+
+# Pod management.
+alias kgp='kubectl get pods'
+alias kgpw='kgp --watch'
+alias kgpwide='kgp -o wide'
+alias kep='kubectl edit pods'
+alias kdp='kubectl describe pods'
+alias kdelp='kubectl delete pods'
+
+# get pod by label: kgpl "app=myapp" -n myns
+alias kgpl='kgp -l'
+
+# Service management.
+alias kgs='kubectl get svc'
+alias kgsw='kgs --watch'
+alias kgswide='kgs -o wide'
+alias kes='kubectl edit svc'
+alias kds='kubectl describe svc'
+alias kdels='kubectl delete svc'
+
+# Ingress management
+alias kgi='kubectl get ingress'
+alias kei='kubectl edit ingress'
+alias kdi='kubectl describe ingress'
+alias kdeli='kubectl delete ingress'
+
+# Namespace management
+alias kgns='kubectl get namespaces'
+alias kens='kubectl edit namespace'
+alias kdns='kubectl describe namespace'
+alias kdelns='kubectl delete namespace'
+
+# ConfigMap management
+alias kgcm='kubectl get configmaps'
+alias kecm='kubectl edit configmap'
+alias kdcm='kubectl describe configmap'
+alias kdelcm='kubectl delete configmap'
+
+# Secret management
+alias kgsec='kubectl get secret'
+alias kdsec='kubectl describe secret'
+alias kdelsec='kubectl delete secret'
+
+# Deployment management.
+alias kgd='kubectl get deployment'
+alias kgdw='kgd --watch'
+alias kgdwide='kgd -o wide'
+alias ked='kubectl edit deployment'
+alias kdd='kubectl describe deployment'
+alias kdeld='kubectl delete deployment'
+alias ksd='kubectl scale deployment'
+alias krsd='kubectl rollout status deployment'
+
+# Rollout management.
+alias kgrs='kubectl get rs'
+alias krh='kubectl rollout history'
+alias kru='kubectl rollout undo'
+
+# Port forwarding
+alias kpf="kubectl port-forward"
+
+# Tools for accessing all information
+alias kga='kubectl get all'
+alias kgaa='kubectl get all --all-namespaces'
+
+# Logs
+alias kl='kubectl logs'
+alias klf='kubectl logs -f'
+
+# File copy
+alias kcp='kubectl cp'
+
+# Node Management
+alias kgno='kubectl get nodes'
+alias keno='kubectl edit node'
+alias kdno='kubectl describe node'
+alias kdelno='kubectl delete node'
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/laravel/README.md b/oh-my-zsh/.oh-my-zsh/plugins/laravel/README.md
new file mode 100644
index 0000000..067c1e9
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/laravel/README.md
@@ -0,0 +1,19 @@
+# Laravel plugin
+
+This plugin adds aliases and autocompletion for Laravel [Artisan](https://laravel.com/docs/artisan) and [Bob](http://daylerees.github.io/laravel-bob/) command-line interfaces.
+
+**NOTE:** completion might not work for recent Laravel versions since it hasn't been updated since 2012.
+In that case, check out plugins `laravel4` and `laravel5`.
+
+To use it, add `laravel` to the plugins array in your zshrc file:
+
+```zsh
+plugins=(... laravel)
+```
+
+## Aliases
+
+| Alias     | Command                  | Description          |
+|-----------|--------------------------|----------------------|
+| artisan   | `php artisan`            | Main Artisan command |
+| bob       | `php artisan bob::build` | Main Bob command     |
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/laravel/_artisan b/oh-my-zsh/.oh-my-zsh/plugins/laravel/_artisan
new file mode 100644
index 0000000..8637514
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/laravel/_artisan
@@ -0,0 +1,40 @@
+#compdef artisan
+
+# Laravel autocompletion
+# Author: John Hamelink 
+#
+# This plugin does the following:
+#  - Adds aliases and autocompletion for artisan
+#  - Adds aliases and autocompletion for bob
+
+local curcontext="$curcontext" state line _opts _bundles ret=1
+_arguments -C \
+    '1: :->cmds' \
+    '*:: :->args' && ret=0
+
+case $state in
+    cmds)
+
+    _values "Artisan command" \
+        'session\:install[Create a session table]' \
+        'migrate[Manage Migrations]' \
+        'test[Run a test]' \
+        'route\:\:call[Call a route in the CLI]' \
+        'key\:\:generate[Generate a key]'
+        ret=0
+        ;;
+    args)
+        case $line[1] in
+            migrate)
+                _values \
+                    'install[Create the Laravel migration table' \
+                    'make[Create a migration]' \
+                    'rollback[Roll back to the last migration operation]' \
+                    'reset[Roll back all migrations that have ever run]'
+                ret=0
+                ;;
+        esac
+        ;;
+esac
+
+return ret
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/laravel/laravel.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/laravel/laravel.plugin.zsh
new file mode 100644
index 0000000..ed932ee
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/laravel/laravel.plugin.zsh
@@ -0,0 +1,3 @@
+#!zsh
+alias artisan='php artisan'
+alias bob='php artisan bob::build'
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/laravel4/README.md b/oh-my-zsh/.oh-my-zsh/plugins/laravel4/README.md
new file mode 100644
index 0000000..c945601
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/laravel4/README.md
@@ -0,0 +1,18 @@
+# Laravel 4 plugin
+
+This plugin adds some aliases for common [Laravel 4](https://laravel.com/docs/4.2) commands.
+
+To use it, add `laravel4` to the plugins array in your zshrc file:
+
+```zsh
+plugins=(... laravel4)
+```
+
+## Aliases
+
+| Alias | Command                                   | Description                                     |
+|-----------|-------------------------------------------|-------------------------------------------------------------|
+| la4       | `php artisan`                             | Main Artisan command                        |
+| la4dump   | `php artisan dump-autoload`               | Regenerate framework autoload files         |
+| la4cache  | `php artisan cache:clear`                 | Flush the application cache                 |
+| la4routes | `php artisan routes`                      | List all registered routes                  |
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/laravel4/laravel4.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/laravel4/laravel4.plugin.zsh
new file mode 100644
index 0000000..0edc849
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/laravel4/laravel4.plugin.zsh
@@ -0,0 +1,20 @@
+# Laravel4 basic command completion
+_laravel4_get_command_list () {
+	php artisan --no-ansi | sed "1,/Available commands/d" | awk '/^ +[a-z]+/ { print $1 }'
+}
+
+_laravel4 () {
+  if [ -f artisan ]; then
+    compadd `_laravel4_get_command_list`
+  fi
+}
+
+compdef _laravel4 artisan
+compdef _laravel4 la4
+
+#Alias
+alias la4='php artisan'
+
+alias la4dump='php artisan dump-autoload'
+alias la4cache='php artisan cache:clear'
+alias la4routes='php artisan routes'
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/laravel5/README.md b/oh-my-zsh/.oh-my-zsh/plugins/laravel5/README.md
new file mode 100644
index 0000000..933342a
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/laravel5/README.md
@@ -0,0 +1,18 @@
+# Laravel 5 plugin
+
+This plugin adds some aliases for common [Laravel 5](https://laravel.com/docs) commands.
+
+To use it, add `laravel5` to the plugins array in your zshrc file:
+
+```zsh
+plugins=(... laravel5)
+```
+
+## Aliases
+
+| Alias     | Command                      | Description                                        |
+|-----------|------------------------------|----------------------------------------------------|
+| la5       | `php artisan`                | Main Artisan command                               |
+| la5cache  | `php artisan cache:clear`    | Flush the application cache                        |
+| la5routes | `php artisan route:list`     | List all registered routes                         |
+| la5vendor | `php artisan vendor:publish` | Publish any publishable assets from vendor package |
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/laravel5/laravel5.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/laravel5/laravel5.plugin.zsh
new file mode 100644
index 0000000..487a074
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/laravel5/laravel5.plugin.zsh
@@ -0,0 +1,20 @@
+# Laravel5 basic command completion
+_laravel5_get_command_list () {
+	php artisan --raw --no-ansi list | sed "s/[[:space:]].*//g"
+}
+
+_laravel5 () {
+  if [ -f artisan ]; then
+    compadd `_laravel5_get_command_list`
+  fi
+}
+
+compdef _laravel5 artisan
+compdef _laravel5 la5
+
+#Alias
+alias la5='php artisan'
+
+alias la5cache='php artisan cache:clear'
+alias la5routes='php artisan route:list'
+alias la5vendor='php artisan vendor:publish'
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/last-working-dir/README.md b/oh-my-zsh/.oh-my-zsh/plugins/last-working-dir/README.md
new file mode 100644
index 0000000..4cc4aca
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/last-working-dir/README.md
@@ -0,0 +1,9 @@
+# last-working-dir plugin
+
+Keeps track of the last used working directory and automatically jumps into it
+for new shells, unless:
+
+- The plugin is already loaded.
+- The current `$PWD` is not `$HOME`.
+
+Adds `lwd` function to jump to the last working directory.
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/last-working-dir/last-working-dir.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/last-working-dir/last-working-dir.plugin.zsh
new file mode 100644
index 0000000..53bb19e
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/last-working-dir/last-working-dir.plugin.zsh
@@ -0,0 +1,25 @@
+# Flag indicating if we've previously jumped to last directory
+typeset -g ZSH_LAST_WORKING_DIRECTORY
+
+# Updates the last directory once directory is changed
+chpwd_functions+=(chpwd_last_working_dir)
+chpwd_last_working_dir() {
+	if [ "$ZSH_SUBSHELL" = 0 ]; then
+		local cache_file="$ZSH_CACHE_DIR/last-working-dir"
+		pwd >| "$cache_file"
+	fi
+}
+
+# Changes directory to the last working directory
+lwd() {
+	local cache_file="$ZSH_CACHE_DIR/last-working-dir"
+	[[ -r "$cache_file" ]] && cd "$(cat "$cache_file")"
+}
+
+# Jump to last directory automatically unless:
+# - this isn't the first time the plugin is loaded
+# - it's not in $HOME directory
+[[ -n "$ZSH_LAST_WORKING_DIRECTORY" ]] && return
+[[ "$PWD" != "$HOME" ]] && return
+
+lwd 2>/dev/null && ZSH_LAST_WORKING_DIRECTORY=1 || true
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/lein/_lein b/oh-my-zsh/.oh-my-zsh/plugins/lein/_lein
new file mode 100644
index 0000000..9d022e9
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/lein/_lein
@@ -0,0 +1,69 @@
+#compdef lein
+
+# Lein ZSH completion function
+# Drop this somewhere in your $fpath (like /usr/share/zsh/site-functions)
+# and rename it _lein
+
+_lein() {
+  if (( CURRENT > 2 )); then
+    # shift words so _arguments doesn't have to be concerned with second command
+    (( CURRENT-- ))
+    shift words
+    # use _call_function here in case it doesn't exist
+    _call_function 1 _lein_${words[1]}
+  else
+    _values "lein command" \
+      "change[Rewrite project.clj by applying a function.]" \
+      "check[Check syntax and warn on reflection.]" \
+      "classpath[Print the classpath of the current project.]" \
+      "clean[Remove all files from project's target-path.]" \
+      "compile[Compile Clojure source into .class files.]" \
+      "deploy[Build and deploy jar to remote repository.]" \
+      "deps[Download all dependencies.]" \
+      "do[Higher-order task to perform other tasks in succession.]" \
+      "help[Display a list of tasks or help for a given task.]" \
+      "install[Install the current project to the local repository.]" \
+      "jar[Package up all the project's files into a jar file.]" \
+      "javac[Compile Java source files.]" \
+      "new[Generate project scaffolding based on a template.]" \
+      "plugin[DEPRECATED. Please use the :user profile instead.]" \
+      "pom[Write a pom.xml file to disk for Maven interoperability.]" \
+      "release[Perform :release-tasks.]" \
+      "repl[Start a repl session either with the current project or standalone.]" \
+      "retest[Run only the test namespaces which failed last time around.]" \
+      "run[Run a -main function with optional command-line arguments.]" \
+      "search[Search remote maven repositories for matching jars.]" \
+      "show-profiles[List all available profiles or display one if given an argument.]" \
+      "test[Run the project's tests.]" \
+      "trampoline[Run a task without nesting the project's JVM inside Leiningen's.]" \
+      "uberjar[Package up the project files and dependencies into a jar file.]" \
+      "update-in[Perform arbitrary transformations on your project map.]" \
+      "upgrade[Upgrade Leiningen to specified version or latest stable.]" \
+      "vcs[Interact with the version control system.]" \
+      "version[Print version for Leiningen and the current JVM.]" \
+      "with-profile[Apply the given task with the profile(s) specified.]"
+  fi
+}
+
+_lein_plugin() {
+  _values "lein plugin commands" \
+    "install[Download, package, and install plugin jarfile into ~/.lein/plugins]" \
+    "uninstall[Delete the plugin jarfile: \[GROUP/\]ARTIFACT-ID VERSION]"
+}
+
+
+_lein_namespaces() {
+  if [ -f "./project.clj" -a -d "$1" ]; then
+    _values "lein valid namespaces" \
+      $(find "$1" -type f -name "*.clj" -exec awk '/^\(ns */ {gsub("\\)", "", $2); print $2}' '{}' '+')
+  fi
+}
+
+
+_lein_run() {
+  _lein_namespaces "src/"
+}
+
+_lein_test() {
+  _lein_namespaces "test/"
+}
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/lighthouse/lighthouse.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/lighthouse/lighthouse.plugin.zsh
new file mode 100644
index 0000000..4a47b60
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/lighthouse/lighthouse.plugin.zsh
@@ -0,0 +1,16 @@
+# To use: add a .lighthouse file into your directory with the URL to the
+# individual project. For example:
+# https://rails.lighthouseapp.com/projects/8994
+# Example usage: https://screencast.com/t/ZDgwNDUwNT
+open_lighthouse_ticket () {
+  if [ ! -f .lighthouse-url ]; then
+    echo "There is no .lighthouse-url file in the current directory..."
+    return 0;
+  else
+    lighthouse_url=$(cat .lighthouse-url);
+    echo "Opening ticket #$1";
+    open_command "$lighthouse_url/tickets/$1";
+  fi
+}
+
+alias lho='open_lighthouse_ticket'
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/lol/README.md b/oh-my-zsh/.oh-my-zsh/plugins/lol/README.md
new file mode 100644
index 0000000..b0e54f5
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/lol/README.md
@@ -0,0 +1,83 @@
+# lol
+
+Plugin for adding catspeak aliases, because why not
+
+## Enabling the plugin
+
+1. Open your `.zshrc` file and add `lol` in the plugins section:
+
+   ```zsh
+   plugins=(
+       # all your enabled plugins
+       lol
+   )
+   ```
+
+2. Reload the source file or restart your Terminal session:
+
+   ```console
+   $ source ~/.zshrc
+   $
+   ```
+
+## Aliases
+
+| Alias        | Command                                                          |
+| ------------ | ---------------------------------------------------------------- |
+| `:3`         | `echo`                                                           |
+| `alwayz`     | `tail -f`                                                        |
+| `bringz`     | `git pull`                                                       |
+| `btw`        | `nice`                                                           |
+| `byes`       | `exit`                                                           |
+| `chicken`    | `git add`                                                        |
+| `cya`        | `reboot`                                                         |
+| `donotwant`  | `rm`                                                             |
+| `dowant`     | `cp`                                                             |
+| `gimmeh`     | `touch`                                                          |
+| `gtfo`       | `mv`                                                             |
+| `hackzor`    | `git init`                                                       |
+| `hai`        | `cd`                                                             |
+| `icanhas`    | `mkdir`                                                          |
+| `ihasbucket` | `df -h`                                                          |
+| `iminurbase` | `finger`                                                         |
+| `inur`       | `locate`                                                         |
+| `invisible`  | `cat`                                                            |
+| `iz`         | `ls`                                                             |
+| `kthxbai`    | `halt`                                                           |
+| `letcat`     | `git checkout`                                                   |
+| `moar`       | `more`                                                           |
+| `nomnom`     | `killall`                                                        |
+| `nomz`       | `ps aux`                                                         |
+| `nowai`      | `chmod`                                                          |
+| `oanward`    | `git commit -m`                                                  |
+| `obtw`       | `nohup`                                                          |
+| `onoz`       | `cat /var/log/errors.log`                                        |
+| `ooanward`   | `git commit -am`                                                 |
+| `plz`        | `pwd`                                                            |
+| `pwned`      | `ssh`                                                            |
+| `rtfm`       | `man`                                                            |
+| `rulz`       | `git push`                                                       |
+| `tldr`       | `less`                                                           |
+| `violenz`    | `git rebase`                                                     |
+| `visible`    | `echo`                                                           |
+| `wtf`        | `dmesg`                                                          |
+| `yolo`       | `git commit -m "$(curl -s https://whatthecommit.com/index.txt)"` |
+
+## Usage Examples
+
+```sh
+# mkdir new-directory
+icanhas new-directory
+
+# killall firefox
+nomnom firefox
+
+# chmod u=r,go= some.file
+nowai u=r,go= some.file
+
+# ssh root@catserver.org
+pwned root@catserver.org
+
+# git commit -m "$(curl -s https://whatthecommit.com/index.txt)"
+yolo
+```
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/lol/lol.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/lol/lol.plugin.zsh
new file mode 100644
index 0000000..585f96e
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/lol/lol.plugin.zsh
@@ -0,0 +1,51 @@
+# LOL!!1
+# Source: https://aur.archlinux.org/packages/lolbash/lolbash/lolbash.sh
+
+alias wtf='dmesg'
+alias onoz='cat /var/log/errors.log'
+alias rtfm='man'
+
+alias :3='echo'
+alias visible='echo'
+alias invisible='cat'
+alias moar='more'
+alias tldr='less'
+alias alwayz='tail -f'
+
+alias icanhas='mkdir'
+alias gimmeh='touch'
+alias donotwant='rm'
+alias dowant='cp'
+alias gtfo='mv'
+alias nowai='chmod'
+
+alias hai='cd'
+alias iz='ls'
+alias plz='pwd'
+alias ihasbucket='df -h'
+
+alias inur='locate'
+alias iminurbase='finger'
+
+alias btw='nice'
+alias obtw='nohup'
+
+alias nomz='ps aux'
+alias nomnom='killall'
+
+alias byes='exit'
+alias cya='reboot'
+alias kthxbai='halt'
+
+alias pwned='ssh'
+
+alias hackzor='git init'
+alias rulz='git push'
+alias bringz='git pull'
+alias chicken='git add'
+alias oanward='git commit -m'
+alias ooanward='git commit -am'
+alias yolo='git commit -m "$(curl -s https://whatthecommit.com/index.txt)"'
+alias letcat='git checkout'
+alias violenz='git rebase'
+
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/macports/README.md b/oh-my-zsh/.oh-my-zsh/plugins/macports/README.md
new file mode 100644
index 0000000..ded823f
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/macports/README.md
@@ -0,0 +1,21 @@
+# Macports plugin
+
+This plugin adds completion for the package manager [Macports](https://macports.com/),
+as well as some aliases for common Macports commands.
+
+To use it, add `macports` to the plugins array in your zshrc file:
+
+```zsh
+plugins=(... macports)
+```
+
+## Aliases
+
+| Alias | Command                            | Description                                                  |
+|-------|------------------------------------|--------------------------------------------------------------|
+| pc    | `sudo port clean --all installed`  | Clean up intermediate installation files for installed ports |
+| pi    | `sudo port install`                | Install package given as argument                            |
+| psu   | `sudo port selfupdate`             | Update ports tree with MacPorts repository                   |
+| puni  | `sudo port uninstall inactive`     | Uninstall inactive ports                                     |
+| puo   | `sudo port upgrade outdated`       | Upgrade ports with newer versions available                  |
+| pup   | `psu && puo`                       | Update ports tree, then upgrade ports to newest versions     |
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/macports/_port b/oh-my-zsh/.oh-my-zsh/plugins/macports/_port
new file mode 100644
index 0000000..06d7fb4
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/macports/_port
@@ -0,0 +1,89 @@
+#compdef port
+
+local subcmds 
+
+# we cache the list of ports
+# we shall use some cache policy to avoid problems with new ports
+if (( ! $+portlist )); then
+	portlist=($(port echo all; echo "all current active inactive installed uninstalled outdated"))
+fi
+
+subcmds=(
+'activate'
+'archive'
+'build'
+'cat'
+'clean'
+'configure'
+'contents'
+'deactivate'
+'dependents'
+'deps'
+'destroot'
+'dir'
+'distcheck'
+'distclean'
+'dmg'
+'echo'
+'edit'
+'extract'
+'fetch'
+'file'
+'help'
+'info'
+'install' 
+'installed' 
+'list'
+'livecheck'
+'location'
+'mpkg'
+'outdated'
+'patch'
+'pkg'
+'provides'
+'rpmpackage'
+'search'
+'selfupdate'
+'sync'
+'test'
+'unarchive'
+'uninstall'
+'upgrade' 
+'variants'
+'version'
+)
+
+_arguments -C \
+'-v[verbose mode (generate verbose messages)]' \
+'-d[debug mode (generate debugging messages)]' \
+'-q[quiet mode (suppress messages)]' \
+'-D[specify portdir]' \
+'-k[keep mode (do not autoclean after install)]' \
+'-n[dont follow dependencies in upgrade (only for upgrading)]' \
+'-a[upgrade all installed ports (only for upgrading)]' \
+'-u[uninstall non-active ports when upgrading and uninstalling]' \
+'-f[force mode (ignore state file)]' \
+'-s[source-only mode]' \
+'-b[binary-only mode]' \
+'-o[honor state files older than Portfile]' \
+'*::command:->command' \
+&& return 0
+
+case $state in
+	command)
+	if ((CURRENT == 1)); then
+		state=subcommands
+	else
+		state=portname
+	fi
+	;;
+esac
+
+case $state in
+	subcommands)
+	_describe -t commands 'port commands' subcmds
+	;;
+	portname)
+	_describe -t commands 'available ports' portlist
+	;;
+esac
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/macports/macports.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/macports/macports.plugin.zsh
new file mode 100644
index 0000000..d1fde30
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/macports/macports.plugin.zsh
@@ -0,0 +1,6 @@
+alias pc="sudo port clean --all installed"
+alias pi="sudo port install"
+alias psu="sudo port selfupdate"
+alias puni="sudo port uninstall inactive"
+alias puo="sudo port upgrade outdated"
+alias pup="psu && puo"
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/magic-enter/Readme.md b/oh-my-zsh/.oh-my-zsh/plugins/magic-enter/Readme.md
new file mode 100644
index 0000000..b401ab4
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/magic-enter/Readme.md
@@ -0,0 +1,14 @@
+## Magic Enter
+
+**Maintainer:** [@dufferzafar](https://github.com/dufferzafar)
+
+Makes your enter key magical, by binding commonly used commands to it.
+
+You can set the commands to be run in your .zshrc, before the line containing plugins!
+
+```bash
+MAGIC_ENTER_GIT_COMMAND='git status -u .'
+MAGIC_ENTER_OTHER_COMMAND='ls -lh .'
+
+plugins=(magic-enter)
+```
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/magic-enter/magic-enter.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/magic-enter/magic-enter.plugin.zsh
new file mode 100644
index 0000000..8e18596
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/magic-enter/magic-enter.plugin.zsh
@@ -0,0 +1,24 @@
+# Bind quick stuff to enter!
+#
+# Pressing enter in a git directory runs `git status`
+# in other directories `ls`
+magic-enter () {
+
+  # If commands are not already set, use the defaults
+  [ -z "$MAGIC_ENTER_GIT_COMMAND" ] && MAGIC_ENTER_GIT_COMMAND="git status -u ."
+  [ -z "$MAGIC_ENTER_OTHER_COMMAND" ] && MAGIC_ENTER_OTHER_COMMAND="ls -lh ."
+
+  if [[ -z $BUFFER ]]; then
+    echo ""
+    if git rev-parse --is-inside-work-tree &>/dev/null; then
+      eval "$MAGIC_ENTER_GIT_COMMAND"
+    else
+      eval "$MAGIC_ENTER_OTHER_COMMAND"
+    fi
+    zle redisplay
+  else
+    zle accept-line
+  fi
+}
+zle -N magic-enter
+bindkey "^M" magic-enter
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/man/README.md b/oh-my-zsh/.oh-my-zsh/plugins/man/README.md
new file mode 100644
index 0000000..4601252
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/man/README.md
@@ -0,0 +1,13 @@
+# Man plugin
+
+This plugin adds a shortcut to insert man before the previous command.
+
+To use it, add `man` to the plugins array in your zshrc file:
+
+```zsh
+plugins=(... man)
+```
+# Keyboard Shortcuts
+| Shortcut                          | Description                                                            |
+|-----------------------------------|------------------------------------------------------------------------|
+| Esc + man              | add man before the previous command to see the manual for this command |
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/man/man.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/man/man.plugin.zsh
new file mode 100644
index 0000000..94aa491
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/man/man.plugin.zsh
@@ -0,0 +1,27 @@
+# ------------------------------------------------------------------------------
+# Author
+# ------
+#
+# * Jerry Ling
+#
+# ------------------------------------------------------------------------------
+# Usage
+# -----
+#
+# man will be inserted before the command
+#
+# ------------------------------------------------------------------------------
+
+man-command-line() {
+    [[ -z $BUFFER ]] && zle up-history
+    [[ $BUFFER != man\ * ]] && LBUFFER="man $LBUFFER"
+}
+zle -N man-command-line
+# Defined shortcut keys: [Esc]man
+bindkey "\e"man man-command-line
+
+
+# ------------------------------------------------------------------------------
+# Also, you might want to use man-preview included in 'osx' plugin
+# just substitute "man" in the function with "man-preview" after you included OS X in
+# the .zshrc
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/marked2/README.md b/oh-my-zsh/.oh-my-zsh/plugins/marked2/README.md
new file mode 100644
index 0000000..101343a
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/marked2/README.md
@@ -0,0 +1,13 @@
+## marked2
+
+Plugin for Marked 2, a previewer for Markdown files on Mac OS X 
+
+### Requirements
+
+ * [Marked 2](http://marked2app.com)
+
+### Usage
+
+ * If `marked` is called without an argument, open Marked
+
+ * If `marked` is passed a file, open it in Marked
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/marked2/marked2.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/marked2/marked2.plugin.zsh
new file mode 100644
index 0000000..56863ad
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/marked2/marked2.plugin.zsh
@@ -0,0 +1,12 @@
+#
+# If marked is called without an argument, open Marked
+# If marked is passed a file, open it in Marked
+#
+function marked() {
+    if [ "$1" ]
+    then
+        open -a "marked 2.app" "$1"
+    else
+        open -a "marked 2.app"
+    fi
+}
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/mercurial/README.md b/oh-my-zsh/.oh-my-zsh/plugins/mercurial/README.md
new file mode 100644
index 0000000..f42212d
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/mercurial/README.md
@@ -0,0 +1,60 @@
+# Mercurial plugin
+### Usage
+Update .zshrc:
+
+1. Add name to the list of plugins, e.g. `plugins=(... mercurial ...)`
+   (that is pretty obvious).
+2. Switch to a theme which uses `hg_prompt_info`.
+
+   Or, customize the `$PROMPT` variable of your current theme to contain current folder mercurial repo info. This can be done by putting a custom version of the theme in `$ZSH_CUSTOM` or by changing `$PROMPT` in `.zshrc` after loading the theme.
+
+   The `robbyrussell` theme is used by default, so you need to modify `$PROMPT` var by adding `$(hg_prompt_info)` after `$(git_prompt_info)`, so it looks like this:
+
+   ```zsh
+   PROMPT='${ret_status}%{$fg_bold[green]%}%p %{$fg[cyan]%}%c %{$fg_bold[blue]%}$(git_prompt_info)$(hg_prompt_info)%{$fg_bold[blue]%} % %{$reset_color%}'
+   ```
+
+3. Initialize additional vars used in plugin. So in short put next in **.zshrc**:
+
+   ```
+   ZSH_THEME_HG_PROMPT_PREFIX="%{$fg_bold[magenta]%}hg:(%{$fg[red]%}"
+   ZSH_THEME_HG_PROMPT_SUFFIX="%{$reset_color%}"
+   ZSH_THEME_HG_PROMPT_DIRTY="%{$fg[magenta]%}) %{$fg[yellow]%}✗%{$reset_color%}"
+   ZSH_THEME_HG_PROMPT_CLEAN="%{$fg[magenta]%})"
+   ```
+
+### What's inside?
+#### Adds handy aliases:
+###### general
+* `hgc` - `hg commit`
+* `hgb` - `hg branch`
+* `hgba` - `hg branches`
+* `hgbk` - `hg bookmarks`
+* `hgco` - `hg checkout`
+* `hgd`  - `hg diff`
+* `hged` - `hg diffmerge`
+
+###### pull and update
+* `hgi` - `hg incoming`
+* `hgl` - `hg pull -u`
+* `hglr` - `hg pull --rebase`
+* `hgo` - `hg outgoing`
+* `hgp` - `hg push`
+* `hgs` - `hg status`
+* `hgsl` - `hg log --limit 20 --template "{node|short} | {date|isodatesec} | {author|user}: {desc|strip|firstline}\n"`
+
+###### this is the 'git commit --amend' equivalent
+* `hgca` - `hg qimport -r tip ; hg qrefresh -e ; hg qfinish tip`
+
+###### list unresolved files (since hg does not list unmerged files in the status command)
+* `hgun` - `hg resolve --list`
+
+#### Displays repo branch and directory status in prompt
+This is the same as git plugin does.
+
+**Note**: Additional changes to **.zshrc**, or using a theme designed to use `hg_prompt_info`, are required in order for this to work.
+
+### Mantainers
+[ptrv](https://github.com/ptrv) - original creator
+
+[oshybystyi](https://github.com/oshybystyi) - created this README and know how most of code works
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/mercurial/mercurial.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/mercurial/mercurial.plugin.zsh
new file mode 100644
index 0000000..58bc571
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/mercurial/mercurial.plugin.zsh
@@ -0,0 +1,66 @@
+# Mercurial
+alias hga='hg add'
+alias hgc='hg commit'
+alias hgb='hg branch'
+alias hgba='hg branches'
+alias hgbk='hg bookmarks'
+alias hgco='hg checkout'
+alias hgd='hg diff'
+alias hged='hg diffmerge'
+# pull and update
+alias hgi='hg incoming'
+alias hgl='hg pull -u'
+alias hglr='hg pull --rebase'
+alias hgo='hg outgoing'
+alias hgp='hg push'
+alias hgs='hg status'
+alias hgsl='hg log --limit 20 --template "{node|short} | {date|isodatesec} | {author|user}: {desc|strip|firstline}\n" '
+alias hgca='hg commit --amend'
+# list unresolved files (since hg does not list unmerged files in the status command)
+alias hgun='hg resolve --list'
+
+function in_hg() {
+  if [[ -d .hg ]] || $(hg summary > /dev/null 2>&1); then
+    echo 1
+  fi
+}
+
+function hg_get_branch_name() {
+  if [ $(in_hg) ]; then
+    echo $(hg branch)
+  fi
+}
+
+function hg_prompt_info {
+  if [ $(in_hg) ]; then
+    _DISPLAY=$(hg_get_branch_name)
+    echo "$ZSH_PROMPT_BASE_COLOR$ZSH_THEME_HG_PROMPT_PREFIX\
+$ZSH_THEME_REPO_NAME_COLOR$_DISPLAY$ZSH_PROMPT_BASE_COLOR$ZSH_PROMPT_BASE_COLOR$(hg_dirty)$ZSH_THEME_HG_PROMPT_SUFFIX$ZSH_PROMPT_BASE_COLOR"
+    unset _DISPLAY
+  fi
+}
+
+function hg_dirty_choose {
+  if [ $(in_hg) ]; then
+    hg status 2> /dev/null | command grep -Eq '^\s*[ACDIM!?L]'
+    if [ $pipestatus[-1] -eq 0 ]; then
+      # Grep exits with 0 when "One or more lines were selected", return "dirty".
+      echo $1
+    else
+      # Otherwise, no lines were found, or an error occurred. Return clean.
+      echo $2
+    fi
+  fi
+}
+
+function hg_dirty {
+  hg_dirty_choose $ZSH_THEME_HG_PROMPT_DIRTY $ZSH_THEME_HG_PROMPT_CLEAN
+}
+
+function hgic() {
+    hg incoming "$@" | grep "changeset" | wc -l
+}
+
+function hgoc() {
+    hg outgoing "$@" | grep "changeset" | wc -l
+}
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/meteor/README.md b/oh-my-zsh/.oh-my-zsh/plugins/meteor/README.md
new file mode 100644
index 0000000..4bee87f
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/meteor/README.md
@@ -0,0 +1,45 @@
+## Introduction
+
+The [meteor plugin](https://github.com/robbyrussell/oh-my-zsh/tree/master/plugins/meteor) provides many
+[useful aliases](#aliases) as well as completion for the `meteor` command.
+
+Enable it by adding `meteor` to the plugins array in your zshrc file:
+```zsh
+plugins=(... meteor)
+```
+
+## Aliases
+
+| Alias   | Command                    | Description                                                      |
+|---------|----------------------------|------------------------------------------------------------------|
+| `ma`    | `meteor add`               | Add a package to this project                                    |
+| `map`   | `meteor add-platform`      | Add a platform to this project                                   |
+| `mad`   | `meteor admin`             | Administrative commands                                          |
+| `mau`   | `meteor authorized`        | View or change authorized users and organizations for a site     |
+| `mb`    | `meteor build`             | Build this project for all platforms                             |
+| `mcl`   | `meteor claim`             | Claim a site deployed with an old Meteor version                 |
+| `mca`   | `meteor configure-android` | Run the Android configuration tool from Meteor's ADK environment |
+| `mc`    | `meteor create`            | Create a new project                                             |
+| `mdb`   | `meteor debug`             | Run the project, but suspend the server process for debugging    |
+| `mde`   | `meteor deploy`            | Deploy this project to Meteor                                    |
+| `mis`   | `meteor install-sdk`       | Installs SDKs for a platform                                     |
+| `ml`    | `meteor list`              | List the packages explicitly used by your project                |
+| `mlp`   | `meteor list-platforms`    | List the platforms added to your project                         |
+| `mls`   | `meteor list-sites`        | List sites for which you are authorized                          |
+| `mli`   | `meteor login`             | Log in to your Meteor developer account                          |
+| `mlo`   | `meteor logout`            | Log out of your Meteor developer account                         |
+| `mlog`  | `meteor logs`              | Show logs for specified site                                     |
+| `mm`    | `meteor mongo`             | Connect to the Mongo database for the specified site             |
+| `mp`    | `meteor publish`           | Publish a new version of a package to the package server         |
+| `mpa`   | `meteor publish-for-arch`  | Builds an already-published package for a new platform           |
+| `mpr`   | `meteor publish-release`   | Publish a new meteor release to the package server               |
+| `mr`    | `meteor remove`            | Remove a package from this project                               |
+| `mrp`   | `meteor remove-platform`   | Remove a platform from this project                              |
+| `mre`   | `meteor reset`             | Reset the project state. Erases the local database               |
+| `m`     | `meteor run`               | **[default]** Run this project in local development mode         |
+| `ms`    | `meteor search`            | Search through the package server database                       |
+| `msh`   | `meteor shell`             | Launch a Node REPL for interactively evaluating server-side code |
+| `msw`   | `meteor show`              | Show detailed information about a release or package             |
+| `mt`    | `meteor test-packages`     | Test one or more packages                                        |
+| `mu`    | `meteor update`            | Upgrade this project's dependencies to their latest versions     |
+| `mw`    | `meteor whoami`            | Prints the username of your Meteor developer account             |
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/meteor/_meteor b/oh-my-zsh/.oh-my-zsh/plugins/meteor/_meteor
new file mode 100644
index 0000000..6a15c4b
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/meteor/_meteor
@@ -0,0 +1,67 @@
+#compdef meteor
+#autoload
+
+# Meteor Autocomplete plugin for Oh-My-Zsh, based on homebrew completion
+# Original author: Dimitri JORGE (https://github.com/jorge-d)
+
+_meteor_all_packages() {
+  packages=(`meteor list | cut -d" " -f1`)
+}
+_meteor_installed_packages() {
+  installed_packages=(`meteor list --using`)
+}
+
+local -a _1st_arguments
+_1st_arguments=(
+  "add-platform:Add a platform to this project."
+  "add:Add a package to this project."
+  "admin:Administrative commands."
+  "authorized:View or change authorized users and organizations for a site."
+  "build:Build this project for all platforms."
+  "claim:Claim a site deployed with an old Meteor version."
+  "configure-android:Run the Android configuration tool from Meteor's ADK environment."
+  "create:Create a new project."
+  "debug:Run the project, but suspend the server process for debugging."
+  "deploy:Deploy this project to Meteor."
+  "install-sdk:Installs SDKs for a platform."
+  "lint:Build this project and run the linters printing all errors and warnings."
+  "list-platforms:List the platforms added to your project."
+  "list-sites:List sites for which you are authorized."
+  "list:List the packages explicitly used by your project."
+  "login:Log in to your Meteor developer account."
+  "logout:Log out of your Meteor developer account."
+  "logs:Show logs for specified site."
+  "mongo:Connect to the Mongo database for the specified site."
+  "publish-for-arch:Builds an already-published package for a new platform."
+  "publish-release:Publish a new meteor release to the package server."
+  "publish:Publish a new version of a package to the package server."
+  "remove-platform:Remove a platform from this project."
+  "remove:Remove a package from this project."
+  "reset:Reset the project state. Erases the local database."
+  "run:[default] Run this project in local development mode."
+  "search:Search through the package server database."
+  "shell:Launch a Node REPL for interactively evaluating server-side code."
+  "show:Show detailed information about a release or package."
+  "test-packages:Test one or more packages."
+  "update:Upgrade this project's dependencies to their latest versions."
+  "whoami:Prints the username of your Meteor developer account."
+)
+
+local expl
+local -a packages installed_packages
+
+if (( CURRENT == 2 )); then
+  _describe -t commands "meteor subcommand" _1st_arguments
+  return
+fi
+
+case "$words[2]" in
+    help)
+      _describe -t commands "meteor subcommand" _1st_arguments ;;
+    remove)
+      _meteor_installed_packages
+      _wanted installed_packages expl 'installed packages' compadd -a installed_packages ;;
+    add)
+      _meteor_all_packages
+      _wanted packages expl 'all packages' compadd -a packages ;;
+esac
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/meteor/meteor.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/meteor/meteor.plugin.zsh
new file mode 100644
index 0000000..db55e36
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/meteor/meteor.plugin.zsh
@@ -0,0 +1,33 @@
+# Aliases in alphabetical order
+
+alias ma='meteor add'                  # Add a package to this project.
+alias map='meteor add-platform'        # Add a platform to this project.
+alias mad='meteor admin'               # Administrative commands.
+alias mau='meteor authorized'          # View or change authorized users and organizations for a site.
+alias mb='meteor build'                # Build this project for all platforms.
+alias mcl='meteor claim'               # Claim a site deployed with an old Meteor version.
+alias mca='meteor configure-android'   # Run the Android configuration tool from Meteor's ADK environment.
+alias mc='meteor create'               # Create a new project.
+alias mdb='meteor debug'               # Run the project, but suspend the server process for debugging.
+alias mde='meteor deploy'              # Deploy this project to Meteor.
+alias mis='meteor install-sdk'         # Installs SDKs for a platform.
+alias ml='meteor list'                 # List the packages explicitly used by your project.
+alias mlp='meteor list-platforms'      # List the platforms added to your project.
+alias mls='meteor list-sites'          # List sites for which you are authorized.
+alias mli='meteor login'               # Log in to your Meteor developer account.
+alias mlo='meteor logout'              # Log out of your Meteor developer account.
+alias mlog='meteor logs'               # Show logs for specified site.
+alias mm='meteor mongo'                # Connect to the Mongo database for the specified site.
+alias mp='meteor publish'              # Publish a new version of a package to the package server.
+alias mpa='meteor publish-for-arch'    # Builds an already-published package for a new platform.
+alias mpr='meteor publish-release'     # Publish a new meteor release to the package server.
+alias mr='meteor remove'               # Remove a package from this project.
+alias mrp='meteor remove-platform'     # Remove a platform from this project.
+alias mre='meteor reset'               # Reset the project state. Erases the local database.
+alias m='meteor run'                   # [default] Run this project in local development mode.
+alias ms='meteor search'               # Search through the package server database.
+alias msh='meteor shell'               # Launch a Node REPL for interactively evaluating server-side code.
+alias msw='meteor show'                # Show detailed information about a release or package.
+alias mt='meteor test-packages'        # Test one or more packages.
+alias mu='meteor update'               # Upgrade this project's dependencies to their latest versions.
+alias mw='meteor whoami'               # Prints the username of your Meteor developer account.
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/minikube/README.md b/oh-my-zsh/.oh-my-zsh/plugins/minikube/README.md
new file mode 100644
index 0000000..eb2dd9b
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/minikube/README.md
@@ -0,0 +1,9 @@
+# minikube
+
+This plugin provides completion for [minikube](https://github.com/kubernetes/minikube).
+
+To use it, add `minikube` to the plugins array in your zshrc file.
+
+```
+plugins=(... minikube)
+```
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/minikube/minikube.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/minikube/minikube.plugin.zsh
new file mode 100644
index 0000000..d8ebe79
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/minikube/minikube.plugin.zsh
@@ -0,0 +1,6 @@
+# Autocompletion for Minikube.
+#
+
+if [ $commands[minikube] ]; then
+  source <(minikube completion zsh)
+fi
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/mix-fast/README.md b/oh-my-zsh/.oh-my-zsh/plugins/mix-fast/README.md
new file mode 100644
index 0000000..644f124
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/mix-fast/README.md
@@ -0,0 +1,28 @@
+# mix-fast
+
+Fast mix autocompletion plugin.
+
+This script caches the output for later usage and significantly speeds it up.
+It generates a .mix_tasks cache file for current project. Currently if you want
+to update cache you should remove .mix_tasks file
+
+Inspired by and based on rake-fast zsh plugin.
+
+This is entirely based on [this pull request by Ullrich Schäfer](https://github.com/robb/.dotfiles/pull/10/), which is inspired by [this Ruby on Rails trick from 2006](https://weblog.rubyonrails.org/2006/3/9/fast-rake-task-completion-for-zsh/).
+
+
+## Installation
+
+Just add the plugin to your `.zshrc`:
+
+```bash
+plugins=(foo bar mix-fast)
+```
+
+You might consider adding `.mix_tasks` to your [global .gitignore](https://help.github.com/articles/ignoring-files#global-gitignore)
+
+## Usage
+
+`mix`, then press tab
+
+Currently maintained by [styx](https://github.com/styx/)
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/mix-fast/mix-fast.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/mix-fast/mix-fast.plugin.zsh
new file mode 100644
index 0000000..e27e30d
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/mix-fast/mix-fast.plugin.zsh
@@ -0,0 +1,29 @@
+_mix_refresh () {
+  if [ -f .mix_tasks ]; then
+    rm .mix_tasks
+  fi
+  echo "Generating .mix_tasks..." > /dev/stderr
+  _mix_generate
+  cat .mix_tasks
+}
+
+_mix_does_task_list_need_generating () {
+  [ ! -f .mix_tasks ];
+}
+
+_mix_generate () {
+  mix help | grep -v 'iex -S' | tail -n +2 | cut -d " " -f 2 > .mix_tasks
+}
+
+_mix () {
+  if [ -f mix.exs ]; then
+    if _mix_does_task_list_need_generating; then
+      echo "\nGenerating .mix_tasks..." > /dev/stderr
+      _mix_generate
+    fi
+    compadd `cat .mix_tasks`
+  fi
+}
+
+compdef _mix mix
+alias mix_refresh='_mix_refresh'
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/mix/README.md b/oh-my-zsh/.oh-my-zsh/plugins/mix/README.md
new file mode 100644
index 0000000..878f370
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/mix/README.md
@@ -0,0 +1,19 @@
+# Mix plugin
+
+This plugin adds completions for the [Elixir's Mix build tool](https://hexdocs.pm/mix/Mix.html).
+
+To use it, add `mix` to the plugins array in your zshrc file:
+
+```zsh
+plugins=(... mix)
+```
+## Supported Task Types
+
+| Task Type               | Documentation                                            |
+|-------------------------|----------------------------------------------------------|
+| Elixir                  | [Elixir Lang](https://elixir-lang.org/)                  |
+| Phoenix v1.2.1 and below| [Phoenix](https://hexdocs.pm/phoenix/1.2.1/Phoenix.html) |
+| Phoenix v1.3.0 and above| [Phoenix](https://hexdocs.pm/phoenix/Phoenix.html)       |
+| Ecto                    | [Ecto](https://hexdocs.pm/ecto/Ecto.html)                |
+| Hex                     | [Hex](https://hex.pm/)                                   |
+| Nerves                  | [Nerves](https://nerves-project.org/)                    |
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/mix/_mix b/oh-my-zsh/.oh-my-zsh/plugins/mix/_mix
new file mode 100644
index 0000000..61fa1cf
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/mix/_mix
@@ -0,0 +1,128 @@
+#compdef mix
+#autoload
+
+# Elixir mix zsh completion
+
+local -a _1st_arguments
+_1st_arguments=(
+    'app.start:Start all registered apps'
+    'archive:List all archives'
+    'archive.build:Archive this project into a .ez file'
+    'archive.install:Install an archive locally'
+    'archive.uninstall:Uninstall archives'
+    'clean:Delete generated application files'
+    'cmd:Executes the given command'
+    'compile:Compile source files'
+    'compile.protocols:Consolidates all protocols in all paths'
+    'deps:List dependencies and their status'
+    "deps.clean:Remove the given dependencies' files"
+    'deps.compile:Compile dependencies'
+    'deps.get:Get all out of date dependencies'
+    'deps.unlock:Unlock the given dependencies'
+    'deps.update:Update the given dependencies'
+    'do:Executes the tasks separated by comma'
+    'ecto.create:Create Ecto database'
+    'ecto.drop:Drop the storage for the given repository'
+    'ecto.dump:Dumps the current environment’s database structure'
+    'ecto.gen.migration:Generates a migration'
+    'ecto.gen.repo:Generates a new repository'
+    'ecto.load:Loads the current environment’s database structure'
+    'ecto.migrate:Runs Ecto migration'
+    'ecto.migrations:Displays the up / down migration status'
+    'ecto.rollback:Reverts applied migrations'
+    'escript.build:Builds an escript for the project'
+    'firmware:Nerves - Build a firmware image for the selected target platform'
+    'firmware.burn:Nerves - Writes the generated firmware image to an attached SDCard or file'
+    'firmware.image:Nerves - Create a firmware image file that can be copied byte-for-byte'
+    'help:Print help information for tasks'
+    'hex:Print hex help information'
+    'hex.config:Read or update hex config'
+    'hex.docs:Publish docs for package'
+    'hex.info:Print hex information'
+    'hex.key:Hex API key tasks'
+    'hex.outdated:Shows outdated hex deps for the current project'
+    'hex.owner:Hex package ownership tasks'
+    'hex.publish:Publish a new package version'
+    'hex.search:Search for package names'
+    'hex.user:Hex user tasks'
+    'loadconfig:Loads and persists the given configuration'
+    'local:List local tasks'
+    'local.hex:Install hex locally'
+    'local.phoenix:Updates Phoenix locally'
+    'local.phx:Updates the Phoenix project generator locally'
+    'local.rebar:Install rebar locally'
+    'nerves.artifact:Create an artifact for a specified Nerves package'
+    'nerves.artifact.get:Nerves get artifacts'
+    'nerves.info:Prints Nerves system information'
+    'nerves.new:Create a new Nerves application'
+    'nerves.release.init:Prepare a new Nerves project for use with releases'
+    'new:Create a new Elixir project'
+    'phoenix.digest:Digests and compress static files'
+    'phoenix.gen.channel:Generates a Phoenix channel'
+    'phoenix.gen.html:Generates controller, model and views for an HTML based resource'
+    'phoenix.gen.json:Generates a controller and model for a JSON based resource'
+    'phoenix.gen.model:Generates an Ecto model'
+    'phoenix.gen.secret:Generates a secret'
+    'phoenix.new:Creates a new Phoenix v1.2.1 application'
+    'phoenix.routes:Prints all routes'
+    'phoenix.server:Starts applications and their servers'
+    'phx.digest:Digests and compresses static files'
+    'phx.digest.clean:Removes old versions of static assets.'
+    'phx.gen.channel:Generates a Phoenix channel'
+    'phx.gen.context:Generates a context with functions around an Ecto schema'
+    'phx.gen.embedded:Generates an embedded Ecto schema file'
+    'phx.gen.html:Generates controller, views, and context for an HTML resource'
+    'phx.gen.json:Generates controller, views, and context for a JSON resource'
+    'phx.gen.presence:Generates a Presence tracker'
+    'phx.gen.schema:Generates an Ecto schema and migration file'
+    'phx.gen.secret:Generates a secret'
+    'phx.new:Creates a new Phoenix v1.3.0 application'
+    'phx.new.ecto:Creates a new Ecto project within an umbrella project'
+    'phx.new.web:Creates a new Phoenix web project within an umbrella project'
+    'phx.routes:Prints all routes'
+    'phx.server:Starts applications and their servers'
+    'run:Run the given file or expression'
+    "test:Run a project's tests"
+    '--help:Describe available tasks'
+    '--version:Prints the Elixir version information'
+)
+
+__task_list ()
+{
+    local expl
+    declare -a tasks
+
+    tasks=(app.start archive archive.build archive.install archive.uninstall clean cmd compile compile.protocols deps deps.clean deps.compile deps.get deps.unlock deps.update do escript.build help hex hex.config hex.docs hex.info hex.key hex.outdated hex.owner hex.publish hex.search hex.user loadconfig local local.hex local.rebar new phoenix.digest phoenix.gen.channel phoenix.gen.html phoenix.gen.json phoenix.gen.model phoenix.gen.secret phoenix.new phoenix.routes phoenix.server phx.digest phx.digest.clean phx.gen.channel phx.gen.context phx.gen.embedded phx.gen.html phx.gen.json phx.gen.presence phx.gen.schema phx.gen.secret phx.new phx.new.ecto phx.new.web phx.routes phx.server run test)
+
+    _wanted tasks expl 'help' compadd $tasks
+}
+
+local expl
+
+local curcontext="$curcontext" state line
+typeset -A opt_args
+
+_arguments -C \
+    ':command:->command' \
+    '*::options:->options'
+
+case $state in
+  (command)
+      _describe -t commands "mix subcommand" _1st_arguments
+      return
+  ;;
+
+  (options)
+    case $line[1] in
+      (help)
+         _arguments ':feature:__task_list'
+         ;;
+      (test)
+         _files
+         ;;
+      (run)
+         _files
+         ;;
+    esac
+  ;;
+esac
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/mosh/README.md b/oh-my-zsh/.oh-my-zsh/plugins/mosh/README.md
new file mode 100644
index 0000000..4bbecf4
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/mosh/README.md
@@ -0,0 +1,9 @@
+# Mosh Plugin
+
+This plugin allows SSH tab completion for [mosh](https://mosh.org/) hostnames.
+
+To use it, add `mosh` to the plugins array in your zshrc file:
+
+```
+plugins=(... mosh)
+```
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/mosh/mosh.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/mosh/mosh.plugin.zsh
new file mode 100644
index 0000000..ea36b7e
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/mosh/mosh.plugin.zsh
@@ -0,0 +1,2 @@
+# Allow SSH tab completion for mosh hostnames
+compdef mosh=ssh
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/mvn/README.md b/oh-my-zsh/.oh-my-zsh/plugins/mvn/README.md
new file mode 100644
index 0000000..986ac84
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/mvn/README.md
@@ -0,0 +1,34 @@
+## Introduction
+
+The [mvn plugin](https://github.com/robbyrussell/oh-my-zsh/tree/master/plugins/mvn) provides many
+[useful aliases](#aliases) as well as completion for the `mvn` command.
+
+Enable it by adding `mvn` to the plugins array in your zshrc file:
+```zsh
+plugins=(... mvn)
+```
+
+## Aliases
+
+| Alias                | Command                                         |
+|:---------------------|:------------------------------------------------|
+| `mvncie`             | `mvn clean install eclipse:eclipse`             |
+| `mvnci`              | `mvn clean install`                             |
+| `mvncist`            | `mvn clean install -DskipTests`                 |
+| `mvncisto`           | `mvn clean install -DskipTests --offline`       |
+| `mvne`               | `mvn eclipse:eclipse`                           |
+| `mvncv`              | `mvn clean verify`                              |
+| `mvnd`               | `mvn deploy`                                    |
+| `mvnp`               | `mvn package`                                   |
+| `mvnc`               | `mvn clean`                                     |
+| `mvncom`             | `mvn compile`                                   |
+| `mvnct`              | `mvn clean test`                                |
+| `mvnt`               | `mvn test`                                      |
+| `mvnag`              | `mvn archetype:generate`                        |
+| `mvn-updates`        | `mvn versions:display-dependency-updates`       |
+| `mvntc7`             | `mvn tomcat7:run`                               |
+| `mvnjetty`           | `mvn jetty:run`                                 |
+| `mvndt`              | `mvn dependency:tree`                           |
+| `mvns`               | `mvn site`                                      |
+| `mvnsrc`             | `mvn dependency:sources`                        |
+| `mvndocs`            | `mvn dependency:resolve -Dclassifier=javadoc`   |
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/mvn/mvn.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/mvn/mvn.plugin.zsh
new file mode 100644
index 0000000..f367fec
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/mvn/mvn.plugin.zsh
@@ -0,0 +1,292 @@
+# mvn-color based on https://gist.github.com/1027800
+BOLD=$(tput bold)
+UNDERLINE_ON=$(tput smul)
+UNDERLINE_OFF=$(tput rmul)
+TEXT_BLACK=$(tput setaf 0)
+TEXT_RED=$(tput setaf 1)
+TEXT_GREEN=$(tput setaf 2)
+TEXT_YELLOW=$(tput setaf 3)
+TEXT_BLUE=$(tput setaf 4)
+TEXT_MAGENTA=$(tput setaf 5)
+TEXT_CYAN=$(tput setaf 6)
+TEXT_WHITE=$(tput setaf 7)
+BACKGROUND_BLACK=$(tput setab 0)
+BACKGROUND_RED=$(tput setab 1)
+BACKGROUND_GREEN=$(tput setab 2)
+BACKGROUND_YELLOW=$(tput setab 3)
+BACKGROUND_BLUE=$(tput setab 4)
+BACKGROUND_MAGENTA=$(tput setab 5)
+BACKGROUND_CYAN=$(tput setab 6)
+BACKGROUND_WHITE=$(tput setab 7)
+RESET_FORMATTING=$(tput sgr0)
+
+# if found an executable ./mvnw file execute it otherwise execute orignal mvn
+mvn-or-mvnw() {
+	if [ -x ./mvnw ] ; then
+		echo "executing mvnw instead of mvn"		
+		./mvnw "$@";
+	else
+		mvn "$@";
+	fi
+}
+
+# Wrapper function for Maven's mvn command.
+mvn-color() {
+  (
+  # Filter mvn output using sed. Before filtering set the locale to C, so invalid characters won't break some sed implementations
+  unset LANG
+  LC_CTYPE=C mvn "$@" | sed -e "s/\(\[INFO\]\)\(.*\)/${TEXT_BLUE}${BOLD}\1${RESET_FORMATTING}\2/g" \
+               -e "s/\(\[INFO\]\ BUILD SUCCESSFUL\)/${BOLD}${TEXT_GREEN}\1${RESET_FORMATTING}/g" \
+               -e "s/\(\[WARNING\]\)\(.*\)/${BOLD}${TEXT_YELLOW}\1${RESET_FORMATTING}\2/g" \
+               -e "s/\(\[ERROR\]\)\(.*\)/${BOLD}${TEXT_RED}\1${RESET_FORMATTING}\2/g" \
+               -e "s/Tests run: \([^,]*\), Failures: \([^,]*\), Errors: \([^,]*\), Skipped: \([^,]*\)/${BOLD}${TEXT_GREEN}Tests run: \1${RESET_FORMATTING}, Failures: ${BOLD}${TEXT_RED}\2${RESET_FORMATTING}, Errors: ${BOLD}${TEXT_RED}\3${RESET_FORMATTING}, Skipped: ${BOLD}${TEXT_YELLOW}\4${RESET_FORMATTING}/g"
+ 
+  # Make sure formatting is reset
+  echo -ne "${RESET_FORMATTING}"
+    )
+}
+
+# Override the mvn command with the colorized one.
+#alias mvn="mvn-color"
+
+# either use orignal mvn oder the mvn wrapper
+alias mvn="mvn-or-mvnw"
+
+# aliases
+alias mvncie='mvn clean install eclipse:eclipse'
+alias mvnci='mvn clean install'
+alias mvncist='mvn clean install -DskipTests'
+alias mvncisto='mvn clean install -DskipTests --offline'
+alias mvne='mvn eclipse:eclipse'
+alias mvnce='mvn clean eclipse:clean eclipse:eclipse'
+alias mvncv='mvn clean verify'
+alias mvnd='mvn deploy'
+alias mvnp='mvn package'
+alias mvnc='mvn clean'
+alias mvncom='mvn compile'
+alias mvnct='mvn clean test'
+alias mvnt='mvn test'
+alias mvnag='mvn archetype:generate'
+alias mvn-updates='mvn versions:display-dependency-updates'
+alias mvntc7='mvn tomcat7:run' 
+alias mvntc='mvn tomcat:run'
+alias mvnjetty='mvn jetty:run'
+alias mvnboot='mvn spring-boot:run'
+alias mvndt='mvn dependency:tree'
+alias mvns='mvn site'
+alias mvnsrc='mvn dependency:sources'
+alias mvndocs='mvn dependency:resolve -Dclassifier=javadoc'
+
+
+function listMavenCompletions { 
+    reply=(
+        # common lifecycle
+        clean process-resources compile process-test-resources test-compile test integration-test package verify install deploy site
+
+        # common plugins
+        deploy failsafe install site surefire checkstyle javadoc jxr pmd ant antrun archetype assembly dependency enforcer gpg help release repository source eclipse idea jetty cargo jboss tomcat tomcat6 tomcat7 exec versions war ear ejb android scm buildnumber nexus repository sonar license hibernate3 liquibase flyway gwt
+
+        # deploy
+        deploy:deploy-file
+        # failsafe
+        failsafe:integration-test failsafe:verify
+        # install
+        install:install-file install:help
+        # site
+        site:site site:deploy site:run site:stage site:stage-deploy site:attach-descriptor site:jar site:effective-site
+        # surefire
+        surefire:test
+
+        # checkstyle
+        checkstyle:checkstyle checkstyle:check checkstyle:checkstyle-aggregate
+        # javadoc
+        javadoc:javadoc javadoc:test-javadoc javadoc:javadoc-no-fork javadoc:test-javadoc-no-fork javadoc:aggregate javadoc:test-aggregate javadoc:jar javadoc:test-jar javadoc:aggregate-jar javadoc:test-aggregate-jar javadoc:fix javadoc:test-fix javadoc:resource-bundle javadoc:test-resource-bundle
+        # jxr
+        jxr:jxr jxr:aggregate jxr:test-jxr jxr:test-aggregate
+        # pmd
+        pmd:pmd pmd:cpd pmd:check pmd:cpd-check
+
+        # ant
+        ant:ant ant:clean
+        # antrun
+        antrun:run
+        # archetype
+        archetype:generate archetype:create-from-project archetype:crawl
+        # assembly
+        assembly:single assembly:assembly
+        # dependency
+        dependency:analyze dependency:analyze-dep-mgt dependency:analyze-only dependency:analyze-report dependency:analyze-duplicate dependency:build-classpath dependency:copy dependency:copy-dependencies dependency:display-ancestors dependency:get dependency:go-offline dependency:list dependency:list-repositories dependency:properties dependency:purge-local-repository dependency:resolve dependency:resolve-plugins dependency:sources dependency:tree dependency:unpack dependency:unpack-dependencies
+        # enforcer
+        enforcer:enforce enforcer:display-info
+        # gpg
+        gpg:sign gpg:sign-and-deploy-file
+        # help
+        help:active-profiles help:all-profiles help:describe help:effective-pom help:effective-settings help:evaluate help:expressions help:system
+        # release
+        release:clean release:prepare release:prepare-with-pom release:rollback release:perform release:stage release:branch release:update-versions
+        # jgitflow
+        jgitflow:feature-start jgitflow:feature-finish jgitflow:release-start jgitflow:release-finish jgitflow:hotfix-start jgitflow:hotfix-finish jgitflow:build-number
+        # repository
+        repository:bundle-create repository:bundle-pack
+        # source
+        source:aggregate source:jar source:jar-no-fork source:test-jar source:test-jar-no-fork
+
+        # eclipse
+        eclipse:clean eclipse:eclipse
+        # idea
+        idea:clean idea:idea
+
+        # jetty
+        jetty:run jetty:run-exploded
+        # cargo
+        cargo:start cargo:run cargo:stop cargo:deploy cargo:undeploy cargo:help
+        # jboss
+        jboss:start jboss:stop jboss:deploy jboss:undeploy jboss:redeploy
+        # tomcat
+        tomcat:start tomcat:stop tomcat:deploy tomcat:undeploy tomcat:redeploy
+        # tomcat6
+        tomcat6:run tomcat6:run-war tomcat6:run-war-only tomcat6:stop tomcat6:deploy tomcat6:undeploy
+        # tomcat7
+        tomcat7:run tomcat7:run-war tomcat7:run-war-only tomcat7:deploy
+        # tomee
+        tomee:run tomee:run-war tomee:run-war-only tomee:stop tomee:deploy tomee:undeploy	
+        # spring-boot
+        spring-boot:run spring-boot:repackage
+        # exec
+        exec:exec exec:java
+        # versions
+        versions:display-dependency-updates versions:display-plugin-updates versions:display-property-updates versions:update-parent versions:update-properties versions:update-child-modules versions:lock-snapshots versions:unlock-snapshots versions:resolve-ranges versions:set versions:use-releases versions:use-next-releases versions:use-latest-releases versions:use-next-snapshots versions:use-latest-snapshots versions:use-next-versions versions:use-latest-versions versions:commit versions:revert
+        # scm
+        scm:add scm:bootstrap scm:branch scm:changelog scm:check-local-modification scm:checkin scm:checkout scm:diff scm:edit scm:export scm:list scm:remove scm:status scm:tag scm:unedit scm:update scm:update-subprojects scm:validate
+        # buildnumber
+        buildnumber:create buildnumber:create-timestamp buildnumber:help buildnumber:hgchangeset
+
+        # war
+        war:war war:exploded war:inplace war:manifest
+        # ear
+        ear:ear ear:generate-application-xml
+        # ejb
+        ejb:ejb
+        # android
+        android:apk android:apklib android:deploy android:deploy-dependencies android:dex android:emulator-start android:emulator-stop android:emulator-stop-all android:generate-sources android:help android:instrument android:manifest-update android:pull android:push android:redeploy android:run android:undeploy android:unpack android:version-update android:zipalign android:devices
+        # nexus
+        nexus:staging-list nexus:staging-close nexus:staging-drop nexus:staging-release nexus:staging-build-promotion nexus:staging-profiles-list nexus:settings-download
+        # repository
+        repository:bundle-create repository:bundle-pack repository:help
+
+        # sonar
+        sonar:sonar
+        # license
+        license:format license:check
+        # hibernate3
+        hibernate3:hbm2ddl hibernate3:help
+        # liquibase
+        liquibase:changelogSync liquibase:changelogSyncSQL liquibase:clearCheckSums liquibase:dbDoc liquibase:diff liquibase:dropAll liquibase:help liquibase:migrate liquibase:listLocks liquibase:migrateSQL liquibase:releaseLocks liquibase:rollback liquibase:rollbackSQL liquibase:status liquibase:tag liquibase:update liquibase:updateSQL liquibase:updateTestingRollback
+        # flyway
+        flyway:clean flyway:history flyway:init flyway:migrate flyway:status flyway:validate
+        # gwt
+        gwt:browser gwt:clean gwt:compile gwt:compile-report gwt:css gwt:debug gwt:eclipse gwt:eclipseTest gwt:generateAsync gwt:help gwt:i18n gwt:mergewebxml gwt:resources gwt:run gwt:sdkInstall gwt:source-jar gwt:soyc gwt:test
+        # asciidoctor
+        asciidoctor:process-asciidoc asciidoctor:auto-refresh asciidoctor:http asciidoctor:zip
+        # compiler
+        compiler:compile compiler:testCompile
+        # resources
+        resources:resources resources:testResources resources:copy-resources
+        # verifier
+        verifier:verify
+        # jar
+        jar:jar jar:test-jar
+        # rar
+        rar:rar
+        # acr
+        acr:acr
+        # shade
+        shade:shade
+        # changelog
+        changelog:changelog changelog:dev-activity changelog:file-activity
+        # changes
+        changes:announcement-mail changes:announcement-generate changes:changes-check changes:changes-validate changes:changes-report changes:jira-report changes:trac-report changes:github-report
+        # doap
+        doap:generate
+        # docck
+        docck:check
+        # jdeps
+        jdeps:jdkinternals jdeps:test-jdkinternals
+        # linkcheck
+        linkcheck:linkcheck
+        # project-info-reports
+        project-info-reports:cim project-info-reports:dependencies project-info-reports:dependency-convergence project-info-reports:dependency-info project-info-reports:dependency-management project-info-reports:distribution-management project-info-reports:help project-info-reports:index project-info-reports:issue-tracking project-info-reports:license project-info-reports:mailing-list project-info-reports:modules project-info-reports:plugin-management project-info-reports:plugins project-info-reports:project-team project-info-reports:scm project-info-reports:summary
+        # surefire-report
+        surefire-report:failsafe-report-only surefire-report:report surefire-report:report-only
+        # invoker
+        invoker:install invoker:integration-test invoker:verify invoker:run
+        # jarsigner
+        jarsigner:sign jarsigner:verify
+        # patch
+        patch:apply
+        # pdf
+        pdf:pdf
+        # plugin
+        plugin:descriptor plugin:report plugin:updateRegistry plugin:addPluginArtifactMetadata plugin:helpmojo
+        # remote-resources
+        remote-resources:bundle remote-resources:process
+        # scm-publish
+        scm-publish:help scm-publish:publish-scm scm-publish:scmpublish
+        # stage
+        stage:copy
+        # toolchain
+        toolchain:toolchain
+        
+        # options
+        "-Dmaven.test.skip=true" -DskipTests -DskipITs -Dmaven.surefire.debug -DenableCiProfile "-Dpmd.skip=true" "-Dcheckstyle.skip=true" "-Dtycho.mode=maven" "-Dmaven.test.failure.ignore=true" "-DgroupId=" "-DartifactId=" "-Dversion=" "-Dpackaging=jar" "-Dfile="
+
+        # arguments
+        -am --also-make
+        -amd --also-make-dependents-am
+        -B --batch-mode
+        -b --builder
+        -C --strict-checksums
+        -c --lax-checksums
+        -cpu --check-plugin-updates
+        -D --define
+        -e --errors
+        -emp --encrypt-master-password
+        -ep --encrypt-password
+        -f --file
+        -fae --fail-at-end
+        -ff --fail-fast
+        -fn --fail-never
+        -gs --global-settings
+        -gt --global-toolchains
+        -h --help
+        -l --log-file
+        -llr --legacy-local-repository
+        -N --non-recursive
+        -npr --no-plugin-registry
+        -npu --no-plugin-updates
+        -nsu --no-snapshot-updates
+        -o --offline
+        -P --activate-profiles
+        -pl --projects
+        -q --quiet
+        -rf --resume-from
+        -s --settings
+        -t --toolchains
+        -T --threads
+        -U --update-snapshots
+        -up --update-plugins
+        -v --version
+        -V --show-version
+        -X --debug
+
+        cli:execute cli:execute-phase 
+        archetype:generate generate-sources 
+        cobertura:cobertura
+        -Dtest=$(if [ -d ./src/test/java ] ; then find ./src/test/java -type f -name '*.java' | grep -v svn | sed 's?.*/\([^/]*\)\..*?-Dtest=\1?' ; fi)
+        -Dit.test=$(if [ -d ./src/test/java ] ; then find ./src/test/java -type f -name '*.java' | grep -v svn | sed 's?.*/\([^/]*\)\..*?-Dit.test=\1?' ; fi)
+    ); 
+}
+
+compctl -K listMavenCompletions mvn
+compctl -K listMavenCompletions mvn-or-mvnw
+
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/mysql-macports/mysql-macports.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/mysql-macports/mysql-macports.plugin.zsh
new file mode 100644
index 0000000..c39563f
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/mysql-macports/mysql-macports.plugin.zsh
@@ -0,0 +1,8 @@
+# commands to control local mysql-server installation
+# paths are for osx installation via macports
+
+alias mysqlstart='sudo /opt/local/share/mysql5/mysql/mysql.server start'
+alias mysqlstop='sudo /opt/local/share/mysql5/mysql/mysql.server stop'
+alias mysqlrestart='sudo /opt/local/share/mysql5/mysql/mysql.server restart'
+
+alias mysqlstatus='mysqladmin5 -u root -p ping'
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/n98-magerun/n98-magerun.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/n98-magerun/n98-magerun.plugin.zsh
new file mode 100644
index 0000000..bfcf27b
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/n98-magerun/n98-magerun.plugin.zsh
@@ -0,0 +1,34 @@
+# ------------------------------------------------------------------------------
+# FILE: n98-magerun.plugin.zsh
+# DESCRIPTION: oh-my-zsh n98-magerun plugin file. Adapted from composer plugin 
+# AUTHOR: Andrew Dwyer (andrewrdwyer at gmail dot com)
+# VERSION: 1.0.0
+# ------------------------------------------------------------------------------
+
+# n98-magerun basic command completion
+_n98_magerun_get_command_list () {
+  $_comp_command1 --no-ansi | sed "1,/Available commands/d" | awk '/^ +[a-z\-:]+/ { print $1 }'
+}
+
+
+_n98_magerun () {
+  _arguments '1: :->command' '*:optional arg:_files'
+
+  case $state in
+    command)
+      compadd $(_n98_magerun_get_command_list)
+      ;;
+    *)
+  esac
+}
+
+compdef _n98_magerun n98-magerun.phar
+compdef _n98_magerun n98-magerun
+
+# Aliases
+alias n98='n98-magerun.phar'
+alias mage='n98-magerun.phar'
+alias magefl='n98-magerun.phar cache:flush'
+
+# Install n98-magerun into the current directory
+alias mage-get='wget https://raw.github.com/netz98/n98-magerun/master/n98-magerun.phar'
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/nanoc/README.md b/oh-my-zsh/.oh-my-zsh/plugins/nanoc/README.md
new file mode 100644
index 0000000..d5d437d
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/nanoc/README.md
@@ -0,0 +1,20 @@
+# Nanoc plugin
+
+This plugin adds some aliases and autocompletion for common [Nanoc](https://nanoc.ws) commands.
+
+To use it, add `nanoc` to the plugins array in your zshrc file:
+
+```zsh
+plugins=(... nanoc)
+```
+
+## Aliases
+
+| Alias | Command               | Description                                                                       |
+|-------|-----------------------|-----------------------------------------------------------------------------------|
+| n     | `nanoc`               | Main Nanoc command                                                                |
+| nco   | `nanoc compile`       | Compile all items of the current site                                             |
+| ncs   | `nanoc create-site`   | Create a new site at the given path. The site will use the filesystem data source |
+| nd    | `nanoc deploy`        | Deploy the compiled site to the destination (specified with `--target`)           |
+| np    | `nanoc prune`         | Remove files not managed by Nanoc from the output directory                       |
+| nv    | `nanoc view`          | Start the static web server (on port 3000 and all IP addresses, unless specified) |
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/nanoc/_nanoc b/oh-my-zsh/.oh-my-zsh/plugins/nanoc/_nanoc
new file mode 100644
index 0000000..a6a4792
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/nanoc/_nanoc
@@ -0,0 +1,92 @@
+#compdef nanoc
+#autoload
+
+# requires the 'nanoc' gem to be installed
+
+local -a _1st_arguments
+_1st_arguments=(
+  'check:run issue checks'
+  'compile:compile items of this site'
+  'create-site:create a site'
+  'deploy:deploy the compiled site'
+  'help:show help'
+  'prune:remove files not managed by nanoc from the output directory'
+  'shell:open a shell on the Nanoc environment'
+  'show-data:show data in this site'
+  'show-plugins:show all available plugins'
+  'show-rules:describe the rules for each item'
+  'view:start the web server that serves static files'
+)
+
+local expl
+local -a pkgs installed_pkgs
+
+_arguments \
+  '(--color)--color[enable color]' \
+  '(--debug)--debug[enable debugging]' \
+  '(--env)--env[set environment]' \
+  '(--help)--help[show the help message and quit]' \
+  '(--no-color)--no-color[disable color]' \
+  '(--verbose)--verbose[make output more detailed]' \
+  '(--version)--version[show version information and quit]' \
+  '(--warn)--warn[enable warnings]' \
+  '*:: :->subcmds' && return 0
+
+case "$state" in
+  subcmds)
+    case $words[1] in
+      check)
+        _arguments \
+          '(--preprocess)--preprocess[run preprocessor]'
+      ;;
+
+      compile)
+        _arguments \
+          '(--diff)--diff[generate diff]'
+      ;;
+
+      compile)
+        _arguments \
+          '(--diff)--diff[generate diff]'
+      ;;
+
+      create-site)
+        _arguments \
+          '(--force)--force[force creation of new site]'
+      ;;
+
+      deploy)
+        _arguments \
+          '(--target)--target[specify the location to deploy to (default: `default`)]' \
+          '(--no-check)--no-check[do not run the issue checks marked for deployment]' \
+          '(--list)--list[list available locations to deploy to]' \
+          '(--list-deployers)--list-deployers[list available deployers]' \
+          '(--dry-run)--dry-run[show what would be deployed]'
+      ;;
+
+      prune)
+        _arguments \
+          '(--yes)--yes[confirm deletion]' \
+          '(--dry-run)--dry-run[print files to be deleted instead of actually deleting them]'
+      ;;
+
+      shell)
+        _arguments \
+          '(--preprocess)--preprocess[run preprocessor]'
+      ;;
+
+      view)
+        _arguments \
+          '(--handler)--handler[specify the handler to use (webrick/mongrel/...)]' \
+          '(--host)--host[specify the host to listen on (default: 127.0.0.1)]' \
+          '(--port)--port[specify the port to listen on (default: 3000]' \
+          '(--live-reload)--live-reload[reload on changes]'
+      ;;
+    esac
+  ;;
+esac
+
+if (( CURRENT == 1 )); then
+  _describe -t commands "nanoc subcommand" _1st_arguments
+  return
+fi
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/nanoc/nanoc.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/nanoc/nanoc.plugin.zsh
new file mode 100644
index 0000000..05272ed
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/nanoc/nanoc.plugin.zsh
@@ -0,0 +1,6 @@
+alias n='nanoc'
+alias nco='nanoc compile'
+alias ncs='nanoc create-site'
+alias nd='nanoc deploy'
+alias np='nanoc prune'
+alias nv='nanoc view'
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/ng/README.md b/oh-my-zsh/.oh-my-zsh/plugins/ng/README.md
new file mode 100644
index 0000000..86ad640
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/ng/README.md
@@ -0,0 +1,37 @@
+## NG Plugin
+
+This [ng plugin](https://github.com/robbyrussell/oh-my-zsh/tree/master/plugins/ng)
+ adds completion support for Angular's CLI (named ng).
+
+Ng is hosted on [ng home](https://github.com/catull/angular-cli)
+
+It is used to generate Angular 2 app "stubs", build those apps, configure them,
+test them, lint them etc.
+
+Ahem, "stubs" is not what Angular engineers refer to the items ng can generate
+for you.
+
+"Stubs" can be any one of:
+- class
+- component
+- directive
+- enum
+- module
+- pipe
+- route
+- service
+
+At the moment, `ng completion` creates a very rough completion for Zsh and
+Bash.
+
+It is missing most of the options and a few arguments.
+In future, this plugin may be shortened to simply being
+
+```zsh
+eval `ng completion`
+```
+
+There is hope this materialises in the 21st century.
+
+### CONTRIBUTOR
+ - Carlo Dapor ([catull](https://github.com/catull))
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/ng/ng.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/ng/ng.plugin.zsh
new file mode 100644
index 0000000..b802bf6
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/ng/ng.plugin.zsh
@@ -0,0 +1,81 @@
+
+ng_opts='addon asset-sizes b build completion d destroy doc e2e g generate get github-pages:deploy gh-pages:deploy h help i init install lint make-this-awesome new s serve server set t test update v version -h --help'
+
+_ng_completion () {
+  local words cword opts
+  read -Ac words
+  read -cn cword
+  let cword-=1
+
+  case $words[cword] in
+    addon )
+      opts='-b --blueprint -d -dir --directory --dry-run -sb --skip-bower -sg --skip-git -sn --skip-npm -v --verbose'
+      ;;
+
+    asset-sizes )
+      opts='-o --output-path'
+      ;;
+
+    b | build )
+      opts='--environment --output-path --suppress-sizes --target --watch --watcher -dev -e -prod'
+      ;;
+
+    d | destroy )
+      opts='--dry-run --verbose --pod --classic --dummy --in-repo --in-repo-addon -d -v -p -c -dum -id -ir'
+      ;;
+
+    g | generate )
+      opts='class component directive enum module pipe route service --generate -d --dry-run --verbose -v --pod -p --classic -c --dummy -dum -id --in-repo --in-repo-addon -ir'
+      ;;
+
+    gh-pages:deploy | github-pages:deploy )
+      opts='--environment --gh-token --gh-username --skip-build --user-page --message'
+      ;;
+
+    h | help | -h | --help)
+      opts='--json --verbose -v'
+      ;;
+
+    init )
+      opts='--blueprint --dry-run --link-cli --mobile --name --prefix --skip-bower --skip-npm --source-dir --style --verbose -b -d -lc -n -p -sb -sd -sn -v'
+      ;;
+
+    new )
+      opts='--blueprint --directory --dry-run --link-cli --mobile --prefix --skip-bower --skip-git --skip-npm --source-dir --style --verbose -b -d -dir -lc -p -sb -sd -sg -sn -v'
+      ;;
+
+    s | serve | server )
+      opts='--environment --host --insecure-proxy --inspr --live-reload --live-reload-base-url --live-reload-host --live-reload-live-css --live-reload-port --output-path --port --proxy --ssl --ssl-cert --ssl-key --target --watcher -H -dev -e -lr -lrbu -lrh -lrp -op -out -p -pr -prod -pxy -t -w'
+      ;;
+
+    set )
+      opts='--global -g'
+      ;;
+
+    t | test )
+      opts='--browsers --colors --config-file --environment --filter --host --launch --log-level --module --path --port --query --reporter --server --silent --test-page --test-port --watch -H -c -cf -e -f -m -r -s -tp -w'
+      ;;
+      
+    update )
+      opts='--all --dryRun --force --from --migrate-only --next --registry --to -d'
+      ;;
+
+    v | version )
+      opts='--verbose'
+      ;;
+
+    ng )
+      opts=$ng_opts
+      ;;
+
+    * )
+      opts=''
+      ;;
+  esac
+
+  setopt shwordsplit
+  reply=($opts)
+  unset shwordsplit
+}
+
+compctl -K _ng_completion ng
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/nmap/README.md b/oh-my-zsh/.oh-my-zsh/plugins/nmap/README.md
new file mode 100644
index 0000000..5cd6462
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/nmap/README.md
@@ -0,0 +1,37 @@
+# Nmap aliases plugin
+
+Adds some useful aliases for nmap similar to the profiles in zenmap.
+
+Nmap options are:
+ * -sS - TCP SYN scan
+ * -v - verbose
+ * -T1 - timing of scan. Options are paranoid (0), sneaky (1), polite (2), normal (3), aggressive (4), and insane (5)
+ * -sF - FIN scan (can sneak through non-stateful firewalls)
+ * -PE - ICMP echo discovery probe
+ * -PP - timestamp discovery probe
+ * -PY - SCTP init ping
+ * -g - use given number as source port
+ * -A - enable OS detection, version detection, script scanning, and traceroute (aggressive)
+ * -O - enable OS detection
+ * -sA - TCP ACK scan
+ * -F - fast scan
+ * --script=vulscan - also access vulnerabilities in target
+
+## Aliases explained
+
+ * nmap_open_ports - Scan for open ports on target
+ * nmap_list_interfaces - List all network interfaces on host where the command runs
+ * nmap_slow - Slow scan that avoids to spam the targets logs
+ * nmap_fin - Scan to see if hosts are up with TCP FIN scan
+ * nmap_full - Aggressive full scan that scans all ports, tries to determine OS and service versions
+ * nmap_check_for_firewall - TCP ACK scan to check for firewall existence
+ * nmap_ping_through_firewall - Host discovery with SYN and ACK probes instead of just pings to avoid firewall
+   restrictions
+ * nmap_fast - Fast scan of the top 300 popular ports
+ * nmap_detect_versions - Detects versions of services and OS, runs on all ports
+ * nmap_check_for_vulns - Uses vulscan script to check target services for vulnerabilities
+ * nmap_full_udp - Same as full but via UDP
+ * nmap_traceroute - Try to traceroute using the most common ports
+ * nmap_full_with_scripts - Same as nmap_full but also runs all the scripts
+ * nmap_web_safe_osscan - Little "safer" scan for OS version  as connecting to only HTTP and HTTPS ports doesn't look so attacking.
+
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/nmap/nmap.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/nmap/nmap.plugin.zsh
new file mode 100644
index 0000000..8c691bd
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/nmap/nmap.plugin.zsh
@@ -0,0 +1,32 @@
+# Some useful nmap aliases for scan modes
+
+# Nmap options are:
+#  -sS - TCP SYN scan
+#  -v - verbose
+#  -T1 - timing of scan. Options are paranoid (0), sneaky (1), polite (2), normal (3), aggressive (4), and insane (5)
+#  -sF - FIN scan (can sneak through non-stateful firewalls)
+#  -PE - ICMP echo discovery probe
+#  -PP - timestamp discovery probe
+#  -PY - SCTP init ping
+#  -g - use given number as source port
+#  -A - enable OS detection, version detection, script scanning, and traceroute (aggressive)
+#  -O - enable OS detection
+#  -sA - TCP ACK scan
+#  -F - fast scan
+#  --script=vuln - also access vulnerabilities in target
+
+alias nmap_open_ports="nmap --open"
+alias nmap_list_interfaces="nmap --iflist"
+alias nmap_slow="sudo nmap -sS -v -T1"
+alias nmap_fin="sudo nmap -sF -v"
+alias nmap_full="sudo nmap -sS -T4 -PE -PP -PS80,443 -PY -g 53 -A -p1-65535 -v"
+alias nmap_check_for_firewall="sudo nmap -sA -p1-65535 -v -T4"
+alias nmap_ping_through_firewall="nmap -PS -PA"
+alias nmap_fast="nmap -F -T5 --version-light --top-ports 300"
+alias nmap_detect_versions="sudo nmap -sV -p1-65535 -O --osscan-guess -T4 -Pn"
+alias nmap_check_for_vulns="nmap --script=vuln"
+alias nmap_full_udp="sudo nmap -sS -sU -T4 -A -v -PE -PS22,25,80 -PA21,23,80,443,3389 "
+alias nmap_traceroute="sudo nmap -sP -PE -PS22,25,80 -PA21,23,80,3389 -PU -PO --traceroute "
+alias nmap_full_with_scripts="sudo nmap -sS -sU -T4 -A -v -PE -PP -PS21,22,23,25,80,113,31339 -PA80,113,443,10042 -PO --script all " 
+alias nmap_web_safe_osscan="sudo nmap -p 80,443 -O -v --osscan-guess --fuzzy "
+
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/node/README.md b/oh-my-zsh/.oh-my-zsh/plugins/node/README.md
new file mode 100644
index 0000000..c392dc0
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/node/README.md
@@ -0,0 +1,16 @@
+# node plugin
+
+To use it, add `node` to the plugins array of your zshrc file:
+```zsh
+plugins=(... node)
+```
+
+This plugin adds `node-docs` function that open specific section in [Node.js](https://nodejs.org) documentation (depending on the installed version).
+For example:
+
+```zsh
+# Opens https://nodejs.org/docs/latest-v10.x/api/fs.html
+$ node-docs fs
+# Opens https://nodejs.org/docs/latest-v10.x/api/path.html
+$ node-docs path 
+```
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/node/node.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/node/node.plugin.zsh
new file mode 100644
index 0000000..e196662
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/node/node.plugin.zsh
@@ -0,0 +1,6 @@
+# Open the node api for your current version to the optional section.
+# TODO: Make the section part easier to use.
+function node-docs {
+  local section=${1:-all}
+  open_command "https://nodejs.org/docs/$(node --version)/api/$section.html"
+}
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/nomad/README.md b/oh-my-zsh/.oh-my-zsh/plugins/nomad/README.md
new file mode 100644
index 0000000..04b3616
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/nomad/README.md
@@ -0,0 +1,15 @@
+# Nomad
+
+The `nomad` plugin provides a simple autocompletion for [Nomad](https://nomadproject.io/), a tool from Hashicorp for easily deploy applications at any scale.
+
+## Usage
+
+1. Enable the `nomad` plugin:
+
+   ```zsh
+   plugins=(... nomad)
+   ```
+
+2.  Install [Nomad](https://nomadproject.io/)
+
+3.  Type `nomad` into your prompt and hit `TAB` to see available completion options.
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/nomad/_nomad b/oh-my-zsh/.oh-my-zsh/plugins/nomad/_nomad
new file mode 100644
index 0000000..1c935a0
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/nomad/_nomad
@@ -0,0 +1,153 @@
+#compdef nomad
+
+local -a _nomad_cmds
+_nomad_cmds=(
+  'agent:Runs a Nomad agent'
+  'agent-info:Display status information about the local agent'
+  'alloc-status:Display allocation status information and metadata'
+  'client-config:View or modify client configuration details'
+  'eval-status:Display evaluation status and placement failure reasons'
+  'fs:Inspect the contents of an allocation directory'
+  'init:Create an example job file'
+  'inspect:Inspect a submitted job'
+  'logs:Streams the logs of a task.'
+  'node-drain:Toggle drain mode on a given node'
+  'node-status:Display status information about nodes'
+  'plan:Dry-run a job update to determine its effects'
+  'run:Run a new job or update an existing'
+  'server-force-leave:Force a server into the left state'
+  'server-join:Join server nodes together'
+  'server-members:Display a list of known servers and their'
+  'status:Display status information about jobs'
+  'stop:Stop a running job'
+  'validate:Checks if a given job specification is valid'
+  'version:Prints the Nomad version'
+)
+
+__allocstatus() {
+  _arguments \
+    '-address=[(addr) The address of the Nomad server. Overrides the NOMAD_ADDR environment variable if set. Default = http://127.0.0.1:4646]' \
+    '-region=[(region) The region of the Nomad servers to forward commands to. Overrides the NOMAD_REGION environment variable if set. Defaults to the Agent s local region.]' \
+    '-no-color[Disables colored command output.]' \
+    '-short[Display short output. Shows only the most recent task event.]' \
+    '-stats[Display detailed resource usage statistics.]' \
+    '-verbose[Show full information.]' \
+    '-json[Output the allocation in its JSON format.]' \
+    '-t[Format and display allocation using a Go template.]'
+}
+
+__evalstatus() {
+  _arguments \
+    '-address=[(addr) The address of the Nomad server. Overrides the NOMAD_ADDR environment variable if set. Default = http://127.0.0.1:4646]' \
+    '-region=[(region) The region of the Nomad servers to forward commands to. Overrides the NOMAD_REGION environment variable if set. Defaults to the Agent s local region.]' \
+    '-no-color[Disables colored command output.]' \
+    '-monitor[Monitor an outstanding evaluation.]' \
+    '-verbose[Show full information.]' \
+    '-json[Output the allocation in its JSON format.]' \
+    '-t[Format and display allocation using a Go template.]'
+}
+
+__inspect() {
+  _arguments \
+    '-address=[(addr) The address of the Nomad server. Overrides the NOMAD_ADDR environment variable if set. Default = http://127.0.0.1:4646]' \
+    '-region=[(region) The region of the Nomad servers to forward commands to. Overrides the NOMAD_REGION environment variable if set. Defaults to the Agent s local region.]' \
+    '-no-color[Disables colored command output.]' \
+    '-json[Output the allocation in its JSON format.]' \
+    '-t[Format and display allocation using a Go template.]'
+}
+
+__logs() {
+  _arguments \
+    '-address=[(addr) The address of the Nomad server. Overrides the NOMAD_ADDR environment variable if set. Default = http://127.0.0.1:4646]' \
+    '-region=[(region) The region of the Nomad servers to forward commands to. Overrides the NOMAD_REGION environment variable if set. Defaults to the Agent s local region.]' \
+    '-no-color[Disables colored command output.]' \
+    '-stderr[ Display stderr logs.]' \
+    '-job[ Use a random allocation from the specified job ID.]' \
+    '-verbose[Show full information.]' \
+    '-f[Causes the output to not stop when the end of the logs are reached, but rather to wait for additional output.]' \
+    '-tail[Show the logs contents with offsets relative to the end of the logs. If no offset is given, -n is defaulted to 10.]' \
+    '-n[Sets the tail location in best-efforted number of lines relative to the end of the logs.]' \
+    '-c[Sets the tail location in number of bytes relative to the end of the logs.]'
+}
+
+__nodestatus() {
+  _arguments \
+    '-address=[(addr) The address of the Nomad server. Overrides the NOMAD_ADDR environment variable if set. Default = http://127.0.0.1:4646]' \
+    '-region=[(region) The region of the Nomad servers to forward commands to. Overrides the NOMAD_REGION environment variable if set. Defaults to the Agent s local region.]' \
+    '-no-color[Disables colored command output.]' \
+    '-self[Query the status of the local node.]' \
+    '-allocs[ Display a count of running allocations for each node.]' \
+    '-short[Display short output. Shows only the most recent task event.]' \
+    '-stats[Display detailed resource usage statistics.]' \
+    '-verbose[Show full information.]' \
+    '-json[Output the allocation in its JSON format.]' \
+    '-t[Format and display allocation using a Go template.]'
+}
+
+__plan() {
+  _arguments \
+    '-address=[(addr) The address of the Nomad server. Overrides the NOMAD_ADDR environment variable if set. Default = http://127.0.0.1:4646]' \
+    '-region=[(region) The region of the Nomad servers to forward commands to. Overrides the NOMAD_REGION environment variable if set. Defaults to the Agent s local region.]' \
+    '-no-color[Disables colored command output.]' \
+    '-diff[Determines whether the diff between the remote job and planned job is shown. Defaults to true.]' 
+}
+
+__run() {
+  _arguments \
+    '-address=[(addr) The address of the Nomad server. Overrides the NOMAD_ADDR environment variable if set. Default = http://127.0.0.1:4646]' \
+    '-region=[(region) The region of the Nomad servers to forward commands to. Overrides the NOMAD_REGION environment variable if set. Defaults to the Agent s local region.]' \
+    '-no-color[Disables colored command output.]' \
+    '-check-index[If set, the job is only registered or updated if the the passed job modify index matches the server side version. If a check-index value of zero is passed, the job is only registered if it does not yet exist. If a non-zero value is passed, it ensures that the job is being updated from a known state. The use of this flag is most common in conjunction with plan command.]' \
+    '-detach[Return immediately instead of entering monitor mode. After job submission, the evaluation ID will be printed to the screen, which can be used to examine the evaluation using the eval-status command.]' \
+    '-output[Output the JSON that would be submitted to the HTTP API without submitting the job.]' \
+    '-verbose[Show full information.]'
+}
+
+__status() {
+  _arguments \
+    '-address=[(addr) The address of the Nomad server. Overrides the NOMAD_ADDR environment variable if set. Default = http://127.0.0.1:4646]' \
+    '-region=[(region) The region of the Nomad servers to forward commands to. Overrides the NOMAD_REGION environment variable if set. Defaults to the Agent s local region.]' \
+    '-no-color[Disables colored command output.]' \
+    '-short[Display short output. Shows only the most recent task event.]' \
+    '-evals[Display the evaluations associated with the job.]' \
+    '-verbose[Show full information.]'
+}
+
+__stop() {
+  _arguments \
+    '-address=[(addr) The address of the Nomad server. Overrides the NOMAD_ADDR environment variable if set. Default = http://127.0.0.1:4646]' \
+    '-region=[(region) The region of the Nomad servers to forward commands to. Overrides the NOMAD_REGION environment variable if set. Defaults to the Agent s local region.]' \
+    '-no-color[Disables colored command output.]' \
+    '-detach[Return immediately instead of entering monitor mode. After the deregister command is submitted, a new evaluation ID is printed to the screen, which can be used to examine the evaluation using the eval-status command.]' \
+    '-yes[Automatic yes to prompts.]' \
+    '-verbose[Show full information.]'
+}
+
+_arguments '*:: :->command'
+
+if (( CURRENT == 1 )); then
+  _describe -t commands "nomad command" _nomad_cmds
+  return
+fi
+
+local -a _command_args
+case "$words[1]" in
+  alloc-status)
+    __allocstatus ;;
+  eval-status)
+    __evalstatus ;;
+  inspect)
+    __inspect ;;
+  logs)
+    __logs ;;
+  node-status)
+    __nodestatus ;;
+  plan)
+    __plan ;;
+  run)
+    __run ;;
+  status)
+    __status ;;
+  stop)
+    __stop ;;
+esac
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/npm/README.md b/oh-my-zsh/.oh-my-zsh/plugins/npm/README.md
new file mode 100644
index 0000000..202e2b0
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/npm/README.md
@@ -0,0 +1,26 @@
+## npm plugin
+
+The npm plugin provides completion as well as adding many useful aliases.
+
+To use it, add npm to the plugins array of your zshrc file:
+```
+plugins=(... npm)
+```
+
+## Aliases
+
+| Alias   | Command                      | Descripton                                                      |
+|:------  |:-----------------------------|:----------------------------------------------------------------|
+| `npmg`  | `npm i -g`                   | Install dependencies globally                                   |
+| `npmS`  | `npm i -S`                   | Install and save to dependencies in your package.json           |
+| `npmD`  | `npm i -D`                   | Install and save to dev-dependencies in your package.json       |
+| `npmE`  | `PATH="$(npm bin)":"$PATH"`  | Run command from node_modules folder based on current directory |
+| `npmO`  | `npm outdated`               | Check which npm modules are outdated                            |
+| `npmV`  | `npm -v`                     | Check package versions                                          |
+| `npmL`  | `npm list`                   | List installed packages                                         |
+| `npmL0` | `npm ls --depth=0`           | List top-level installed packages                               |
+| `npmst` | `npm start`                  | Run npm start                                                   |
+| `npmt`  | `npm test`                   | Run npm test                                                    |
+| `npmR`  | `npm run`                    | Run npm scripts                                                 |
+| `npmP`  | `npm publish`                | Run npm publish                                                 |
+| `npmI`  | `npm init`                   | Run npm init                                                    |
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/npm/npm.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/npm/npm.plugin.zsh
new file mode 100644
index 0000000..f62174a
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/npm/npm.plugin.zsh
@@ -0,0 +1,57 @@
+(( $+commands[npm] )) && {
+    __NPM_COMPLETION_FILE="${ZSH_CACHE_DIR:-$ZSH/cache}/npm_completion"
+
+    if [[ ! -f $__NPM_COMPLETION_FILE ]]; then
+        npm completion >! $__NPM_COMPLETION_FILE 2>/dev/null
+        [[ $? -ne 0 ]] && rm -f $__NPM_COMPLETION_FILE
+    fi
+
+    [[ -f $__NPM_COMPLETION_FILE ]] && source $__NPM_COMPLETION_FILE
+
+    unset __NPM_COMPLETION_FILE
+}
+
+# Install dependencies globally
+alias npmg="npm i -g "
+
+# npm package names are lowercase
+# Thus, we've used camelCase for the following aliases:
+
+# Install and save to dependencies in your package.json
+# npms is used by https://www.npmjs.com/package/npms
+alias npmS="npm i -S "
+
+# Install and save to dev-dependencies in your package.json
+# npmd is used by https://github.com/dominictarr/npmd
+alias npmD="npm i -D "
+
+# Execute command from node_modules folder based on current directory
+# i.e npmE gulp
+alias npmE='PATH="$(npm bin)":"$PATH"'
+
+# Check which npm modules are outdated
+alias npmO="npm outdated"
+
+# Check package versions
+alias npmV="npm -v"
+
+# List packages
+alias npmL="npm list"
+
+# List top-level installed packages
+alias npmL0="npm ls --depth=0"
+
+# Run npm start
+alias npmst="npm start"
+
+# Run npm test
+alias npmt="npm test"
+
+# Run npm scripts
+alias npmR="npm run"
+
+# Run npm publish 
+alias npmP="npm publish"
+
+# Run npm init
+alias npmI="npm init"
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/npx/README.md b/oh-my-zsh/.oh-my-zsh/plugins/npx/README.md
new file mode 100644
index 0000000..1c05293
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/npx/README.md
@@ -0,0 +1,31 @@
+# NPX Plugin
+> npx(1) -- execute npm package binaries. ([more info](https://github.com/zkat/npx))
+
+This plugin automatically registers npx command-not-found handler if `npx` exists in your `$PATH`.
+
+## Setup
+
+- Add plugin to `~/.zshrc`
+
+```bash
+plugins=(.... npx)
+```
+
+- Globally install npx binary (npx will be auto installed with recent versions of Node.js)
+```bash
+sudo npm install -g npx
+```
+
+## Note
+
+The shell auto-fallback doesn't auto-install plain packages. In order to get it to install something, you need to add `@`:
+
+```
+➜  jasmine@latest # or just `jasmine@`
+npx: installed 13 in 1.896s
+Randomized with seed 54385
+Started
+```
+
+It does it this way so folks using the fallback don't accidentally try to install regular typoes.
+
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/npx/npx.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/npx/npx.plugin.zsh
new file mode 100644
index 0000000..32bb673
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/npx/npx.plugin.zsh
@@ -0,0 +1,7 @@
+# NPX Plugin
+# https://www.npmjs.com/package/npx
+# Maintainer: Pooya Parsa 
+
+(( $+commands[npx] )) && {
+ source <(npx --shell-auto-fallback zsh)
+}
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/nvm/README.md b/oh-my-zsh/.oh-my-zsh/plugins/nvm/README.md
new file mode 100644
index 0000000..079cf00
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/nvm/README.md
@@ -0,0 +1,9 @@
+# nvm plugin
+
+This plugin adds autocompletions for [nvm](https://github.com/creationix/nvm) — a Node.js version manager.
+It also automatically sources nvm, so you don't need to do it manually in your `.zshrc`.
+
+To use it, add `nvm` to the plugins array of your zshrc file:
+```zsh
+plugins=(... nvm)
+```
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/nvm/_nvm b/oh-my-zsh/.oh-my-zsh/plugins/nvm/_nvm
new file mode 100644
index 0000000..1eec48b
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/nvm/_nvm
@@ -0,0 +1,33 @@
+#compdef nvm
+#autoload
+
+[[ -f "$NVM_DIR/nvm.sh" ]] || return 0
+
+local -a _1st_arguments
+_1st_arguments=(
+  'help:show help'
+  '--version:print out the latest released version of nvm'
+  'install:download and install a version in '
+  'uninstall:uninstall a version'
+  'use:modify PATH to use . Uses .nvmrc if available'
+  'exec:run  on . Uses .nvmrc if available'
+  'run:run `node` on  with  as arguments. Uses .nvmrc if available'
+  'current:list installed versions'
+  'ls:list installed versions or versions matching a given description'
+  'version:resolve the given description to a single local version'
+  'version-remote:resolve the given description to a single remote version'
+  'ls-remote:list remote versions available for install'
+  'deactivate:undo effects of `nvm` on current shell'
+  'alias:show or set aliases'
+  'unalias:deletes an alias'
+  'reinstall-packages:reinstall global `npm` packages contained in  to current version'
+  'unload:unload `nvm` from shell'
+  'which:display path to installed node version. Uses .nvmrc if available'
+)
+
+_arguments -C '*:: :->subcmds' && return 0
+
+if (( CURRENT == 1 )); then
+  _describe -t commands "nvm subcommand" _1st_arguments
+  return
+fi
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/nvm/nvm.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/nvm/nvm.plugin.zsh
new file mode 100644
index 0000000..9dde3a2
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/nvm/nvm.plugin.zsh
@@ -0,0 +1,5 @@
+# Set NVM_DIR if it isn't already defined
+[[ -z "$NVM_DIR" ]] && export NVM_DIR="$HOME/.nvm"
+
+# Load nvm if it exists
+[[ -f "$NVM_DIR/nvm.sh" ]] && source "$NVM_DIR/nvm.sh"
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/nyan/README.md b/oh-my-zsh/.oh-my-zsh/plugins/nyan/README.md
new file mode 100644
index 0000000..5929418
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/nyan/README.md
@@ -0,0 +1,5 @@
+# Nyan plugin
+
+This plugin adds a command to display [Nyan Cat](https://en.wikipedia.org/wiki/Nyan_Cat) right inside your terminal.
+
+**Plugin is deprecated**. Check [official repo](https://github.com/klange/nyancat) for more information.
\ No newline at end of file
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/nyan/nyan.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/nyan/nyan.plugin.zsh
new file mode 100644
index 0000000..c21c784
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/nyan/nyan.plugin.zsh
@@ -0,0 +1,10 @@
+print -Pn '%F{yellow}'
+cat >&2 <<-EOD
+	nyan plugin:
+	The nyancat server used by this plugin was shut down due to increased
+	bandwidth costs, so the nyan plugin no longer works. You can get the
+	same functionality in some distributions by installing the nyancat package,
+	or you can compile it yourself.
+	See https://github.com/klange/nyancat for more information.
+EOD
+print -Pn '%f'
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/oc/oc.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/oc/oc.plugin.zsh
new file mode 100644
index 0000000..b968c4b
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/oc/oc.plugin.zsh
@@ -0,0 +1,7 @@
+# Autocompletion for oc, the command line interface for OpenShift
+#
+# Author: https://github.com/kevinkirkup
+
+if [ $commands[oc] ]; then
+  source <(oc completion zsh)
+fi
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/osx/README.md b/oh-my-zsh/.oh-my-zsh/plugins/osx/README.md
new file mode 100644
index 0000000..3559dee
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/osx/README.md
@@ -0,0 +1,61 @@
+# OSX plugin
+
+## Description
+
+This plugin provides a few utilities to make it more enjoyable on OSX.
+
+To start using it, add the `osx` plugin to your plugins array in `~/.zshrc`:
+
+```zsh
+plugins=(... osx)
+```
+
+Original author: [Sorin Ionescu](https://github.com/sorin-ionescu)
+
+## Acknowledgements
+
+This application makes use of the following third party scripts:
+
+[shpotify](https://github.com/hnarayanan/shpotify)
+
+Copyright (c) 2012–2017 [Harish Narayanan](https://harishnarayanan.org/).
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+"Software"), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject to
+the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+
+## Commands
+
+| Command         | Description                                         |
+| :-------------- | :-------------------------------------------------- |
+| `tab`           | Open the current directory in a new tab             |
+| `split_tab`     | Split the current terminal tab horizontally         |
+| `vsplit_tab`    | Split the current terminal tab vertically           |
+| `ofd`           | Open the current directory in a Finder window       |
+| `pfd`           | Return the path of the frontmost Finder window      |
+| `pfs`           | Return the current Finder selection                 |
+| `cdf`           | `cd` to the current Finder directory                |
+| `pushdf`        | `pushd` to the current Finder directory             |
+| `quick-look`    | Quick-Look a specified file                         |
+| `man-preview`   | Open a specified man page in Preview app            |
+| `showfiles`     | Show hidden files                                   |
+| `hidefiles`     | Hide the hidden files                               |
+| `itunes`        | Control iTunes. Use `itunes -h` for usage details   |
+| `spotify`       | Control Spotify and search by artist, album, track… |
+| `rmdsstore`     | Remove .DS\_Store files recursively in a directory  |
diff --git a/oh-my-zsh/.oh-my-zsh/plugins/osx/osx.plugin.zsh b/oh-my-zsh/.oh-my-zsh/plugins/osx/osx.plugin.zsh
new file mode 100644
index 0000000..6a4b6ee
--- /dev/null
+++ b/oh-my-zsh/.oh-my-zsh/plugins/osx/osx.plugin.zsh
@@ -0,0 +1,289 @@
+# Open the current directory in a Finder window
+alias ofd='open_command $PWD'
+
+function _omz_osx_get_frontmost_app() {
+  local the_app=$(
+    osascript 2>/dev/null < 0 )) && command="${command}; $*"
+
+  local the_app=$(_omz_osx_get_frontmost_app)
+
+  if [[ "$the_app" == 'Terminal' ]]; then
+    # Discarding stdout to quash "tab N of window id XXX" output
+    osascript >/dev/null < 0 )) && command="${command}; $*"
+
+  local the_app=$(_omz_osx_get_frontmost_app)
+
+  if [[ "$the_app" == 'iTerm' ]]; then
+    osascript <&2
+    false
+
+  fi
+}
+
+function split_tab() {
+  local command="cd \\\"$PWD\\\"; clear"
+  (( $# > 0 )) && command="${command}; $*"
+
+  local the_app=$(_omz_osx_get_frontmost_app)
+
+  if [[ "$the_app" == 'iTerm' ]]; then
+    osascript 2>/dev/null <&2
+    false
+
+  fi
+}
+
+function pfd() {
+  osascript 2>/dev/null </dev/null < 0 )) && qlmanage -p $* &>/dev/null &
+}
+
+function man-preview() {
+  man -t "$@" | open -f -a Preview
+}
+compdef _man man-preview
+
+function vncviewer() {
+  open vnc://$@
+}
+
+# iTunes control function
+function itunes() {
+	local opt=$1
+	local playlist=$2
+	shift
+	case "$opt" in
+		launch|play|pause|stop|rewind|resume|quit)
+			;;
+		mute)
+			opt="set mute to true"
+			;;
+		unmute)
+			opt="set mute to false"
+			;;
+		next|previous)
+			opt="$opt track"
+			;;
+		vol)
+			opt="set sound volume to $1" #$1 Due to the shift
+			;;
+		playlist)
+		# Inspired by: https://gist.github.com/nakajijapan/ac8b45371064ae98ea7f
+if [[ ! -z "$playlist" ]]; then
+                    		osascript -e 'tell application "iTunes"' -e "set new_playlist to \"$playlist\" as string" -e "play playlist new_playlist" -e "end tell" 2>/dev/null;
+				if [[ $? -eq 0 ]]; then
+					opt="play"
+				else
+					opt="stop"
+				fi
+                  else
+                    opt="set allPlaylists to (get name of every playlist)"
+                  fi
+                ;;
+		playing|status)
+			local state=`osascript -e 'tell application "iTunes" to player state as string'`
+			if [[ "$state" = "playing" ]]; then
+				currenttrack=`osascript -e 'tell application "iTunes" to name of current track as string'`
+				currentartist=`osascript -e 'tell application "iTunes" to artist of current track as string'`
+				echo -E "Listening to $fg[yellow]$currenttrack$reset_color by $fg[yellow]$currentartist$reset_color";
+			else
+				echo "iTunes is" $state;
+			fi
+			return 0
+			;;
+		shuf|shuff|shuffle)
+			# The shuffle property of current playlist can't be changed in iTunes 12,
+			# so this workaround uses AppleScript to simulate user input instead.
+			# Defaults to toggling when no options are given.
+			# The toggle option depends on the shuffle button being visible in the Now playing area.
+			# On and off use the menu bar items.
+			local state=$1
+
+			if [[ -n "$state" && ! "$state" =~ "^(on|off|toggle)$" ]]
+			then
+				print "Usage: itunes shuffle [on|off|toggle]. Invalid option."
+				return 1
+			fi
+
+			case "$state" in
+				on|off)
+					# Inspired by: https://stackoverflow.com/a/14675583
+					osascript 1>/dev/null 2>&1 <<-EOF
+					tell application "System Events" to perform action "AXPress" of (menu item "${state}" of menu "Shuffle" of menu item "Shuffle" of menu "Controls" of menu bar item "Controls" of menu bar 1 of application process "iTunes" )
+EOF
+					return 0
+					;;
+				toggle|*)
+					osascript 1>/dev/null 2>&1 <<-EOF
+					tell application "System Events" to perform action "AXPress" of (button 2 of process "iTunes"'s window "iTunes"'s scroll area 1)
+EOF
+					return 0
+					;;
+			esac
+			;;
+		""|-h|--help)
+			echo "Usage: itunes